aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog4
-rw-r--r--src/algebra/boolean.spad.pamphlet20
-rw-r--r--src/algebra/strap/BOOLEAN.lsp88
-rw-r--r--src/share/algebra/browse.daase1132
-rw-r--r--src/share/algebra/category.daase208
-rw-r--r--src/share/algebra/compress.daase1322
-rw-r--r--src/share/algebra/interp.daase7974
-rw-r--r--src/share/algebra/operation.daase25635
8 files changed, 18195 insertions, 18188 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 249c4ed6..8e415f5f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2009-02-03 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
+ * algebra/boolean.spad.pamphlet (Boolean): Tidy.
+
2009-02-02 Gabriel Dos Reis <gdr@cs.tamu.edu>
* algebra/domain.spad.pamphlet (FunctionDescriptor): New.
diff --git a/src/algebra/boolean.spad.pamphlet b/src/algebra/boolean.spad.pamphlet
index 75b5b325..b4ecb100 100644
--- a/src/algebra/boolean.spad.pamphlet
+++ b/src/algebra/boolean.spad.pamphlet
@@ -375,20 +375,18 @@ Boolean(): Join(OrderedFinite, Logic, PropositionalLogic, ConvertibleTo InputFor
test: % -> %
++ test(b) returns b and is provided for compatibility with the new compiler.
== add
- nt: % -> %
-
test a == a
- nt b == (b => false; true)
+ nt(a: %): % == NOT(a)$Lisp
true == 'T pretend %
false == NIL$Lisp
sample() == true
- not b == NOT(b)$Lisp
+ not b == nt b
_~ b == (b => false; true)
_and(a, b) == AND(a,b)$Lisp
- _/_\(a, b) == (a => b; false)
+ _/_\(a, b) == AND(a,b)$Lisp
_or(a, b) == OR(a,b)$Lisp
- _\_/(a, b) == (a => true; b)
+ _\_/(a, b) == OR(a,b)$Lisp
xor(a, b) == (a => nt b; b)
nor(a, b) == (a => false; nt b)
nand(a, b) == (a => nt b; true)
@@ -409,12 +407,14 @@ Boolean(): Join(OrderedFinite, Logic, PropositionalLogic, ConvertibleTo InputFor
true
convert(x:%):InputForm ==
- x => convert("true"::Symbol)
- convert("false"::Symbol)
+ convert
+ x => 'true
+ 'false
coerce(x:%):OutputForm ==
- x => message "true"
- message "false"
+ outputForm
+ x => 'true
+ 'false
@
diff --git a/src/algebra/strap/BOOLEAN.lsp b/src/algebra/strap/BOOLEAN.lsp
index 882c8a74..93546360 100644
--- a/src/algebra/strap/BOOLEAN.lsp
+++ b/src/algebra/strap/BOOLEAN.lsp
@@ -9,6 +9,8 @@
(DECLAIM (FTYPE (FUNCTION (|%Boolean| |%Shell|) |%Boolean|)
|BOOLEAN;nt|))
+(PUT '|BOOLEAN;nt| '|SPADreplace| 'NOT)
+
(DECLAIM (FTYPE (FUNCTION (|%Shell|) |%Boolean|) |BOOLEAN;true;$;3|))
(PUT '|BOOLEAN;true;$;3| '|SPADreplace| '(XLAM NIL 'T))
@@ -33,6 +35,8 @@
(DECLAIM (FTYPE (FUNCTION (|%Boolean| |%Boolean| |%Shell|) |%Boolean|)
|BOOLEAN;/\\;3$;8|))
+(PUT '|BOOLEAN;/\\;3$;8| '|SPADreplace| 'AND)
+
(DECLAIM (FTYPE (FUNCTION (|%Boolean| |%Boolean| |%Shell|) |%Boolean|)
|BOOLEAN;or;3$;9|))
@@ -41,6 +45,8 @@
(DECLAIM (FTYPE (FUNCTION (|%Boolean| |%Boolean| |%Shell|) |%Boolean|)
|BOOLEAN;\\/;3$;10|))
+(PUT '|BOOLEAN;\\/;3$;10| '|SPADreplace| 'OR)
+
(DECLAIM (FTYPE (FUNCTION (|%Boolean| |%Boolean| |%Shell|) |%Boolean|)
|BOOLEAN;xor;3$;11|))
@@ -87,7 +93,7 @@
(DEFUN |BOOLEAN;test;2$;1| (|a| $) (DECLARE (IGNORE $)) |a|)
-(DEFUN |BOOLEAN;nt| (|b| $) (COND (|b| 'NIL) ('T 'T)))
+(DEFUN |BOOLEAN;nt| (|a| $) (DECLARE (IGNORE $)) (NOT |a|))
(DEFUN |BOOLEAN;true;$;3| ($) (DECLARE (IGNORE $)) 'T)
@@ -101,22 +107,26 @@
(DECLARE (IGNORE $))
(AND |a| |b|))
-(DEFUN |BOOLEAN;/\\;3$;8| (|a| |b| $) (COND (|a| |b|) ('T 'NIL)))
+(DEFUN |BOOLEAN;/\\;3$;8| (|a| |b| $)
+ (DECLARE (IGNORE $))
+ (AND |a| |b|))
(DEFUN |BOOLEAN;or;3$;9| (|a| |b| $)
(DECLARE (IGNORE $))
(OR |a| |b|))
-(DEFUN |BOOLEAN;\\/;3$;10| (|a| |b| $) (COND (|a| 'T) ('T |b|)))
+(DEFUN |BOOLEAN;\\/;3$;10| (|a| |b| $)
+ (DECLARE (IGNORE $))
+ (OR |a| |b|))
(DEFUN |BOOLEAN;xor;3$;11| (|a| |b| $)
- (COND (|a| (|BOOLEAN;nt| |b| $)) ('T |b|)))
+ (COND (|a| (NOT |b|)) ('T |b|)))
(DEFUN |BOOLEAN;nor;3$;12| (|a| |b| $)
- (COND (|a| 'NIL) ('T (|BOOLEAN;nt| |b| $))))
+ (COND (|a| 'NIL) ('T (NOT |b|))))
(DEFUN |BOOLEAN;nand;3$;13| (|a| |b| $)
- (COND (|a| (|BOOLEAN;nt| |b| $)) ('T 'T)))
+ (COND (|a| (NOT |b|)) ('T 'T)))
(DEFUN |BOOLEAN;=;3$;14| (|a| |b| $)
(DECLARE (IGNORE $))
@@ -128,8 +138,7 @@
(DECLARE (IGNORE $))
(EQ |a| |b|))
-(DEFUN |BOOLEAN;<;3$;17| (|a| |b| $)
- (COND (|b| (|BOOLEAN;nt| |a| $)) ('T 'NIL)))
+(DEFUN |BOOLEAN;<;3$;17| (|a| |b| $) (COND (|b| (NOT |a|)) ('T 'NIL)))
(DEFUN |BOOLEAN;size;Nni;18| ($) (DECLARE (IGNORE $)) 2)
@@ -142,17 +151,10 @@
(COND ((SPADCALL (|random|) (|getShellEntry| $ 26)) 'NIL) ('T 'T)))
(DEFUN |BOOLEAN;convert;$If;22| (|x| $)
- (COND
- (|x| (SPADCALL (SPADCALL "true" (|getShellEntry| $ 33))
- (|getShellEntry| $ 35)))
- ('T
- (SPADCALL (SPADCALL "false" (|getShellEntry| $ 33))
- (|getShellEntry| $ 35)))))
+ (SPADCALL (COND (|x| '|true|) ('T '|false|)) (|getShellEntry| $ 33)))
(DEFUN |BOOLEAN;coerce;$Of;23| (|x| $)
- (COND
- (|x| (SPADCALL "true" (|getShellEntry| $ 38)))
- ('T (SPADCALL "false" (|getShellEntry| $ 38)))))
+ (SPADCALL (COND (|x| '|true|) ('T '|false|)) (|getShellEntry| $ 36)))
(DEFUN |Boolean| ()
(PROG ()
@@ -176,7 +178,7 @@
(RETURN
(PROGN
(LETT |dv$| '(|Boolean|) . #0=(|Boolean|))
- (LETT $ (|newShell| 41) . #0#)
+ (LETT $ (|newShell| 40) . #0#)
(|setShellEntry| $ 0 |dv$|)
(|setShellEntry| $ 3
(LETT |pv$| (|buildPredVector| 0 0 NIL) . #0#))
@@ -198,16 +200,16 @@
|BOOLEAN;<;3$;17| (|NonNegativeInteger|)
|BOOLEAN;size;Nni;18| (|Integer|) (0 . |even?|)
(|PositiveInteger|) |BOOLEAN;index;Pi$;19|
- |BOOLEAN;lookup;$Pi;20| |BOOLEAN;random;$;21| (|String|)
- (|Symbol|) (5 . |coerce|) (|InputForm|) (10 . |convert|)
- |BOOLEAN;convert;$If;22| (|OutputForm|) (15 . |message|)
- |BOOLEAN;coerce;$Of;23| (|SingleInteger|))
- '#(~= 20 ~ 26 |xor| 31 |true| 37 |test| 41 |size| 46 |random|
- 50 |or| 54 |not| 60 |nor| 65 |nand| 71 |min| 77 |max| 87
- |lookup| 97 |latex| 102 |index| 107 |implies| 112 |hash|
- 118 |false| 123 |equiv| 127 |convert| 133 |coerce| 138
- |and| 143 |\\/| 149 >= 155 > 161 = 167 <= 173 < 179 |/\\|
- 185)
+ |BOOLEAN;lookup;$Pi;20| |BOOLEAN;random;$;21| (|Symbol|)
+ (|InputForm|) (5 . |convert|) |BOOLEAN;convert;$If;22|
+ (|OutputForm|) (10 . |outputForm|) |BOOLEAN;coerce;$Of;23|
+ (|String|) (|SingleInteger|))
+ '#(~= 15 ~ 21 |xor| 26 |true| 32 |test| 36 |size| 41 |random|
+ 45 |or| 49 |not| 55 |nor| 60 |nand| 66 |min| 72 |max| 82
+ |lookup| 92 |latex| 97 |index| 102 |implies| 107 |hash|
+ 113 |false| 118 |equiv| 122 |convert| 128 |coerce| 133
+ |and| 138 |\\/| 144 >= 150 > 156 = 162 <= 168 < 174 |/\\|
+ 180)
'NIL
(CONS (|makeByteWordVec2| 1 '(0 0 0 0 0 0 0 0 0))
(CONS '#(NIL |OrderedSet&| NIL NIL |Logic&|
@@ -215,21 +217,21 @@
(CONS '#((|OrderedFinite|) (|OrderedSet|)
(|PropositionalLogic|) (|Finite|)
(|Logic|) (|SetCategory|)
- (|ConvertibleTo| 34) (|BasicType|)
- (|CoercibleTo| 37))
- (|makeByteWordVec2| 40
- '(1 25 18 0 26 1 32 0 31 33 1 34 0 32
- 35 1 37 0 31 38 2 0 18 0 0 1 1 0 0 0
- 10 2 0 0 0 0 15 0 0 0 7 1 0 0 0 6 0 0
- 23 24 0 0 0 30 2 0 0 0 0 13 1 0 0 0 9
- 2 0 0 0 0 16 2 0 0 0 0 17 0 0 0 1 2 0
- 0 0 0 1 0 0 0 1 2 0 0 0 0 1 1 0 27 0
- 29 1 0 31 0 1 1 0 0 27 28 2 0 0 0 0
- 20 1 0 40 0 1 0 0 0 8 2 0 0 0 0 21 1
- 0 34 0 36 1 0 37 0 39 2 0 0 0 0 11 2
- 0 0 0 0 14 2 0 18 0 0 1 2 0 18 0 0 1
- 2 0 18 0 0 19 2 0 18 0 0 1 2 0 18 0 0
- 22 2 0 0 0 0 12)))))
+ (|ConvertibleTo| 32) (|BasicType|)
+ (|CoercibleTo| 35))
+ (|makeByteWordVec2| 39
+ '(1 25 18 0 26 1 32 0 31 33 1 35 0 31
+ 36 2 0 18 0 0 1 1 0 0 0 10 2 0 0 0 0
+ 15 0 0 0 7 1 0 0 0 6 0 0 23 24 0 0 0
+ 30 2 0 0 0 0 13 1 0 0 0 9 2 0 0 0 0
+ 16 2 0 0 0 0 17 0 0 0 1 2 0 0 0 0 1 0
+ 0 0 1 2 0 0 0 0 1 1 0 27 0 29 1 0 38
+ 0 1 1 0 0 27 28 2 0 0 0 0 20 1 0 39 0
+ 1 0 0 0 8 2 0 0 0 0 21 1 0 32 0 34 1
+ 0 35 0 37 2 0 0 0 0 11 2 0 0 0 0 14 2
+ 0 18 0 0 1 2 0 18 0 0 1 2 0 18 0 0 19
+ 2 0 18 0 0 1 2 0 18 0 0 22 2 0 0 0 0
+ 12)))))
'|lookupComplete|))
(MAKEPROP '|Boolean| 'NILADIC T)
diff --git a/src/share/algebra/browse.daase b/src/share/algebra/browse.daase
index d717bbcd..958715a9 100644
--- a/src/share/algebra/browse.daase
+++ b/src/share/algebra/browse.daase
@@ -1,12 +1,12 @@
-(2281924 . 3442535947)
+(2282336 . 3442698064)
(-18 A S)
((|constructor| (NIL "One-dimensional-array aggregates serves as models for one-dimensional arrays. Categorically,{} these aggregates are finite linear aggregates with the \\spadatt{shallowlyMutable} property,{} that is,{} any component of the array may be changed without affecting the identity of the overall array. Array data structures are typically represented by a fixed area in storage and therefore cannot efficiently grow or shrink on demand as can list structures (see however \\spadtype{FlexibleArray} for a data structure which is a cross between a list and an array). Iteration over,{} and access to,{} elements of arrays is extremely fast (and often can be optimized to open-code). Insertion and deletion however is generally slow since an entirely new data structure must be created for the result.")))
NIL
NIL
(-19 S)
((|constructor| (NIL "One-dimensional-array aggregates serves as models for one-dimensional arrays. Categorically,{} these aggregates are finite linear aggregates with the \\spadatt{shallowlyMutable} property,{} that is,{} any component of the array may be changed without affecting the identity of the overall array. Array data structures are typically represented by a fixed area in storage and therefore cannot efficiently grow or shrink on demand as can list structures (see however \\spadtype{FlexibleArray} for a data structure which is a cross between a list and an array). Iteration over,{} and access to,{} elements of arrays is extremely fast (and often can be optimized to open-code). Insertion and deletion however is generally slow since an entirely new data structure must be created for the result.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
NIL
(-20 S)
((|constructor| (NIL "The class of abelian groups,{} \\spadignore{i.e.} additive monoids where each element has an additive inverse. \\blankline")) (* (($ (|Integer|) $) "\\spad{n*x} is the product of \\spad{x} by the integer \\spad{n}.")) (- (($ $ $) "\\spad{x-y} is the difference of \\spad{x} and \\spad{y} \\spadignore{i.e.} \\spad{x + (-y)}.") (($ $) "\\spad{-x} is the additive inverse of \\spad{x}.")))
@@ -38,7 +38,7 @@ NIL
NIL
(-27)
((|constructor| (NIL "Model for algebraically closed fields.")) (|zerosOf| (((|List| $) (|SparseUnivariatePolynomial| $) (|Symbol|)) "\\spad{zerosOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible,{} and otherwise as implicit algebraic quantities which display as \\spad{'yi}. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) (|SparseUnivariatePolynomial| $)) "\\spad{zerosOf(p)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible,{} and otherwise as implicit algebraic quantities. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) (|Polynomial| $)) "\\spad{zerosOf(p)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible. Otherwise they are implicit algebraic quantities. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|zeroOf| (($ (|SparseUnivariatePolynomial| $) (|Symbol|)) "\\spad{zeroOf(p,{} y)} returns \\spad{y} such that \\spad{p(y) = 0}; if possible,{} \\spad{y} is expressed in terms of radicals. Otherwise it is an implicit algebraic quantity which displays as \\spad{'y}.") (($ (|SparseUnivariatePolynomial| $)) "\\spad{zeroOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}; if possible,{} \\spad{y} is expressed in terms of radicals. Otherwise it is an implicit algebraic quantity.") (($ (|Polynomial| $)) "\\spad{zeroOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. If possible,{} \\spad{y} is expressed in terms of radicals. Otherwise it is an implicit algebraic quantity. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|rootsOf| (((|List| $) (|SparseUnivariatePolynomial| $) (|Symbol|)) "\\spad{rootsOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}; The returned roots display as \\spad{'y1},{}...,{}\\spad{'yn}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) (|SparseUnivariatePolynomial| $)) "\\spad{rootsOf(p)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) (|Polynomial| $)) "\\spad{rootsOf(p)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|rootOf| (($ (|SparseUnivariatePolynomial| $) (|Symbol|)) "\\spad{rootOf(p,{} y)} returns \\spad{y} such that \\spad{p(y) = 0}. The object returned displays as \\spad{'y}.") (($ (|SparseUnivariatePolynomial| $)) "\\spad{rootOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}.") (($ (|Polynomial| $)) "\\spad{rootOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. Error: if \\spad{p} has more than one variable \\spad{y}.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-28 S R)
((|constructor| (NIL "Model for algebraically closed function spaces.")) (|zerosOf| (((|List| $) $ (|Symbol|)) "\\spad{zerosOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible,{} and otherwise as implicit algebraic quantities which display as \\spad{'yi}. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) $) "\\spad{zerosOf(p)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable.")) (|zeroOf| (($ $ (|Symbol|)) "\\spad{zeroOf(p,{} y)} returns \\spad{y} such that \\spad{p(y) = 0}. The value \\spad{y} is expressed in terms of radicals if possible,{}and otherwise as an implicit algebraic quantity which displays as \\spad{'y}.") (($ $) "\\spad{zeroOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. The value \\spad{y} is expressed in terms of radicals if possible,{}and otherwise as an implicit algebraic quantity. Error: if \\spad{p} has more than one variable.")) (|rootsOf| (((|List| $) $ (|Symbol|)) "\\spad{rootsOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}; The returned roots display as \\spad{'y1},{}...,{}\\spad{'yn}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) $) "\\spad{rootsOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}; Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|rootOf| (($ $ (|Symbol|)) "\\spad{rootOf(p,{}y)} returns \\spad{y} such that \\spad{p(y) = 0}. The object returned displays as \\spad{'y}.") (($ $) "\\spad{rootOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. Error: if \\spad{p} has more than one variable \\spad{y}.")))
@@ -46,7 +46,7 @@ NIL
NIL
(-29 R)
((|constructor| (NIL "Model for algebraically closed function spaces.")) (|zerosOf| (((|List| $) $ (|Symbol|)) "\\spad{zerosOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible,{} and otherwise as implicit algebraic quantities which display as \\spad{'yi}. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) $) "\\spad{zerosOf(p)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}. The \\spad{yi}\\spad{'s} are expressed in radicals if possible. The returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable.")) (|zeroOf| (($ $ (|Symbol|)) "\\spad{zeroOf(p,{} y)} returns \\spad{y} such that \\spad{p(y) = 0}. The value \\spad{y} is expressed in terms of radicals if possible,{}and otherwise as an implicit algebraic quantity which displays as \\spad{'y}.") (($ $) "\\spad{zeroOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. The value \\spad{y} is expressed in terms of radicals if possible,{}and otherwise as an implicit algebraic quantity. Error: if \\spad{p} has more than one variable.")) (|rootsOf| (((|List| $) $ (|Symbol|)) "\\spad{rootsOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}; The returned roots display as \\spad{'y1},{}...,{}\\spad{'yn}. Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values.") (((|List| $) $) "\\spad{rootsOf(p,{} y)} returns \\spad{[y1,{}...,{}yn]} such that \\spad{p(\\spad{yi}) = 0}; Note: the returned symbols \\spad{y1},{}...,{}\\spad{yn} are bound in the interpreter to respective root values. Error: if \\spad{p} has more than one variable \\spad{y}.")) (|rootOf| (($ $ (|Symbol|)) "\\spad{rootOf(p,{}y)} returns \\spad{y} such that \\spad{p(y) = 0}. The object returned displays as \\spad{'y}.") (($ $) "\\spad{rootOf(p)} returns \\spad{y} such that \\spad{p(y) = 0}. Error: if \\spad{p} has more than one variable \\spad{y}.")))
-((-4399 . T) (-4397 . T) (-4396 . T) ((-4404 "*") . T) (-4395 . T) (-4400 . T) (-4394 . T))
+((-4400 . T) (-4398 . T) (-4397 . T) ((-4405 "*") . T) (-4396 . T) (-4401 . T) (-4395 . T))
NIL
(-30)
((|constructor| (NIL "\\indented{1}{Plot a NON-SINGULAR plane algebraic curve \\spad{p}(\\spad{x},{}\\spad{y}) = 0.} Author: Clifton \\spad{J}. Williamson Date Created: Fall 1988 Date Last Updated: 27 April 1990 Keywords: algebraic curve,{} non-singular,{} plot Examples: References:")) (|refine| (($ $ (|DoubleFloat|)) "\\spad{refine(p,{}x)} \\undocumented{}")) (|makeSketch| (($ (|Polynomial| (|Integer|)) (|Symbol|) (|Symbol|) (|Segment| (|Fraction| (|Integer|))) (|Segment| (|Fraction| (|Integer|)))) "\\spad{makeSketch(p,{}x,{}y,{}a..b,{}c..d)} creates an ACPLOT of the curve \\spad{p = 0} in the region {\\em a <= x <= b,{} c <= y <= d}. More specifically,{} 'makeSketch' plots a non-singular algebraic curve \\spad{p = 0} in an rectangular region {\\em xMin <= x <= xMax},{} {\\em yMin <= y <= yMax}. The user inputs \\spad{makeSketch(p,{}x,{}y,{}xMin..xMax,{}yMin..yMax)}. Here \\spad{p} is a polynomial in the variables \\spad{x} and \\spad{y} with integer coefficients (\\spad{p} belongs to the domain \\spad{Polynomial Integer}). The case where \\spad{p} is a polynomial in only one of the variables is allowed. The variables \\spad{x} and \\spad{y} are input to specify the the coordinate axes. The horizontal axis is the \\spad{x}-axis and the vertical axis is the \\spad{y}-axis. The rational numbers xMin,{}...,{}yMax specify the boundaries of the region in which the curve is to be plotted.")))
@@ -56,14 +56,14 @@ NIL
((|constructor| (NIL "This domain represents the syntax for an add-expression.")) (|body| (((|SpadAst|) $) "base(\\spad{d}) returns the actual body of the add-domain expression \\spad{`d'}.")) (|base| (((|SpadAst|) $) "\\spad{base(d)} returns the base domain(\\spad{s}) of the add-domain expression.")))
NIL
NIL
-(-32 R -3197)
+(-32 R -3196)
((|constructor| (NIL "This package provides algebraic functions over an integral domain.")) (|iroot| ((|#2| |#1| (|Integer|)) "\\spad{iroot(p,{} n)} should be a non-exported function.")) (|definingPolynomial| ((|#2| |#2|) "\\spad{definingPolynomial(f)} returns the defining polynomial of \\spad{f} as an element of \\spad{F}. Error: if \\spad{f} is not a kernel.")) (|minPoly| (((|SparseUnivariatePolynomial| |#2|) (|Kernel| |#2|)) "\\spad{minPoly(k)} returns the defining polynomial of \\spad{k}.")) (** ((|#2| |#2| (|Fraction| (|Integer|))) "\\spad{x ** q} is \\spad{x} raised to the rational power \\spad{q}.")) (|droot| (((|OutputForm|) (|List| |#2|)) "\\spad{droot(l)} should be a non-exported function.")) (|inrootof| ((|#2| (|SparseUnivariatePolynomial| |#2|) |#2|) "\\spad{inrootof(p,{} x)} should be a non-exported function.")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} is \\spad{true} if \\spad{op} is an algebraic operator,{} that is,{} an \\spad{n}th root or implicit algebraic operator.")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(op)} returns a copy of \\spad{op} with the domain-dependent properties appropriate for \\spad{F}. Error: if \\spad{op} is not an algebraic operator,{} that is,{} an \\spad{n}th root or implicit algebraic operator.")) (|rootOf| ((|#2| (|SparseUnivariatePolynomial| |#2|) (|Symbol|)) "\\spad{rootOf(p,{} y)} returns \\spad{y} such that \\spad{p(y) = 0}. The object returned displays as \\spad{'y}.")))
NIL
((|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))))
(-33 S)
((|constructor| (NIL "The notion of aggregate serves to model any data structure aggregate,{} designating any collection of objects,{} with heterogenous or homogeneous members,{} with a finite or infinite number of members,{} explicitly or implicitly represented. An aggregate can in principle represent everything from a string of characters to abstract sets such as \"the set of \\spad{x} satisfying relation {\\em r(x)}\" An attribute \\spadatt{finiteAggregate} is used to assert that a domain has a finite number of elements.")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\# u} returns the number of items in \\spad{u}.")) (|sample| (($) "\\spad{sample yields} a value of type \\%")) (|size?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{size?(u,{}n)} tests if \\spad{u} has exactly \\spad{n} elements.")) (|more?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{more?(u,{}n)} tests if \\spad{u} has greater than \\spad{n} elements.")) (|less?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{less?(u,{}n)} tests if \\spad{u} has less than \\spad{n} elements.")) (|empty?| (((|Boolean|) $) "\\spad{empty?(u)} tests if \\spad{u} has 0 elements.")) (|empty| (($) "\\spad{empty()}\\$\\spad{D} creates an aggregate of type \\spad{D} with 0 elements. Note: The {\\em \\$D} can be dropped if understood by context,{} \\spadignore{e.g.} \\axiom{u: \\spad{D} \\spad{:=} empty()}.")) (|copy| (($ $) "\\spad{copy(u)} returns a top-level (non-recursive) copy of \\spad{u}. Note: for collections,{} \\axiom{copy(\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u}]}.")) (|eq?| (((|Boolean|) $ $) "\\spad{eq?(u,{}v)} tests if \\spad{u} and \\spad{v} are same objects.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4402)))
+((|HasAttribute| |#1| (QUOTE -4403)))
(-34)
((|constructor| (NIL "The notion of aggregate serves to model any data structure aggregate,{} designating any collection of objects,{} with heterogenous or homogeneous members,{} with a finite or infinite number of members,{} explicitly or implicitly represented. An aggregate can in principle represent everything from a string of characters to abstract sets such as \"the set of \\spad{x} satisfying relation {\\em r(x)}\" An attribute \\spadatt{finiteAggregate} is used to assert that a domain has a finite number of elements.")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\# u} returns the number of items in \\spad{u}.")) (|sample| (($) "\\spad{sample yields} a value of type \\%")) (|size?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{size?(u,{}n)} tests if \\spad{u} has exactly \\spad{n} elements.")) (|more?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{more?(u,{}n)} tests if \\spad{u} has greater than \\spad{n} elements.")) (|less?| (((|Boolean|) $ (|NonNegativeInteger|)) "\\spad{less?(u,{}n)} tests if \\spad{u} has less than \\spad{n} elements.")) (|empty?| (((|Boolean|) $) "\\spad{empty?(u)} tests if \\spad{u} has 0 elements.")) (|empty| (($) "\\spad{empty()}\\$\\spad{D} creates an aggregate of type \\spad{D} with 0 elements. Note: The {\\em \\$D} can be dropped if understood by context,{} \\spadignore{e.g.} \\axiom{u: \\spad{D} \\spad{:=} empty()}.")) (|copy| (($ $) "\\spad{copy(u)} returns a top-level (non-recursive) copy of \\spad{u}. Note: for collections,{} \\axiom{copy(\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u}]}.")) (|eq?| (((|Boolean|) $ $) "\\spad{eq?(u,{}v)} tests if \\spad{u} and \\spad{v} are same objects.")))
NIL
@@ -74,7 +74,7 @@ NIL
NIL
(-36 |Key| |Entry|)
((|constructor| (NIL "An association list is a list of key entry pairs which may be viewed as a table. It is a poor mans version of a table: searching for a key is a linear operation.")) (|assoc| (((|Union| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)) "failed") |#1| $) "\\spad{assoc(k,{}u)} returns the element \\spad{x} in association list \\spad{u} stored with key \\spad{k},{} or \"failed\" if \\spad{u} has no key \\spad{k}.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
NIL
(-37 S R)
((|constructor| (NIL "The category of associative algebras (modules which are themselves rings). \\blankline")))
@@ -82,17 +82,17 @@ NIL
NIL
(-38 R)
((|constructor| (NIL "The category of associative algebras (modules which are themselves rings). \\blankline")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-39 UP)
((|constructor| (NIL "Factorization of univariate polynomials with coefficients in \\spadtype{AlgebraicNumber}.")) (|doublyTransitive?| (((|Boolean|) |#1|) "\\spad{doublyTransitive?(p)} is \\spad{true} if \\spad{p} is irreducible over over the field \\spad{K} generated by its coefficients,{} and if \\spad{p(X) / (X - a)} is irreducible over \\spad{K(a)} where \\spad{p(a) = 0}.")) (|split| (((|Factored| |#1|) |#1|) "\\spad{split(p)} returns a prime factorisation of \\spad{p} over its splitting field.")) (|factor| (((|Factored| |#1|) |#1|) "\\spad{factor(p)} returns a prime factorisation of \\spad{p} over the field generated by its coefficients.") (((|Factored| |#1|) |#1| (|List| (|AlgebraicNumber|))) "\\spad{factor(p,{} [a1,{}...,{}an])} returns a prime factorisation of \\spad{p} over the field generated by its coefficients and a1,{}...,{}an.")))
NIL
NIL
-(-40 -3197 UP UPUP -3518)
+(-40 -3196 UP UPUP -2685)
((|constructor| (NIL "Function field defined by \\spad{f}(\\spad{x},{} \\spad{y}) = 0.")) (|knownInfBasis| (((|Void|) (|NonNegativeInteger|)) "\\spad{knownInfBasis(n)} \\undocumented{}")))
-((-4395 |has| (-406 |#2|) (-362)) (-4400 |has| (-406 |#2|) (-362)) (-4394 |has| (-406 |#2|) (-362)) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 |has| (-406 |#2|) (-362)) (-4401 |has| (-406 |#2|) (-362)) (-4395 |has| (-406 |#2|) (-362)) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| (-406 |#2|) (QUOTE (-144))) (|HasCategory| (-406 |#2|) (QUOTE (-146))) (|HasCategory| (-406 |#2|) (QUOTE (-348))) (-4037 (|HasCategory| (-406 |#2|) (QUOTE (-362))) (|HasCategory| (-406 |#2|) (QUOTE (-348)))) (|HasCategory| (-406 |#2|) (QUOTE (-362))) (|HasCategory| (-406 |#2|) (QUOTE (-367))) (-4037 (-12 (|HasCategory| (-406 |#2|) (QUOTE (-232))) (|HasCategory| (-406 |#2|) (QUOTE (-362)))) (|HasCategory| (-406 |#2|) (QUOTE (-348)))) (-4037 (-12 (|HasCategory| (-406 |#2|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-406 |#2|) (QUOTE (-362)))) (-12 (|HasCategory| (-406 |#2|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-406 |#2|) (QUOTE (-348))))) (|HasCategory| (-406 |#2|) (LIST (QUOTE -635) (QUOTE (-562)))) (-4037 (|HasCategory| (-406 |#2|) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-406 |#2|) (QUOTE (-362)))) (|HasCategory| (-406 |#2|) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-406 |#2|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-367))) (-12 (|HasCategory| (-406 |#2|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-406 |#2|) (QUOTE (-362)))) (-12 (|HasCategory| (-406 |#2|) (QUOTE (-232))) (|HasCategory| (-406 |#2|) (QUOTE (-362)))))
-(-41 R -3197)
+(-41 R -3196)
((|constructor| (NIL "AlgebraicManipulations provides functions to simplify and expand expressions involving algebraic operators.")) (|rootKerSimp| ((|#2| (|BasicOperator|) |#2| (|NonNegativeInteger|)) "\\spad{rootKerSimp(op,{}f,{}n)} should be local but conditional.")) (|rootSimp| ((|#2| |#2|) "\\spad{rootSimp(f)} transforms every radical of the form \\spad{(a * b**(q*n+r))**(1/n)} appearing in \\spad{f} into \\spad{b**q * (a * b**r)**(1/n)}. This transformation is not in general valid for all complex numbers \\spad{b}.")) (|rootProduct| ((|#2| |#2|) "\\spad{rootProduct(f)} combines every product of the form \\spad{(a**(1/n))**m * (a**(1/s))**t} into a single power of a root of \\spad{a},{} and transforms every radical power of the form \\spad{(a**(1/n))**m} into a simpler form.")) (|rootPower| ((|#2| |#2|) "\\spad{rootPower(f)} transforms every radical power of the form \\spad{(a**(1/n))**m} into a simpler form if \\spad{m} and \\spad{n} have a common factor.")) (|ratPoly| (((|SparseUnivariatePolynomial| |#2|) |#2|) "\\spad{ratPoly(f)} returns a polynomial \\spad{p} such that \\spad{p} has no algebraic coefficients,{} and \\spad{p(f) = 0}.")) (|ratDenom| ((|#2| |#2| (|List| (|Kernel| |#2|))) "\\spad{ratDenom(f,{} [a1,{}...,{}an])} removes the \\spad{ai}\\spad{'s} which are algebraic from the denominators in \\spad{f}.") ((|#2| |#2| (|List| |#2|)) "\\spad{ratDenom(f,{} [a1,{}...,{}an])} removes the \\spad{ai}\\spad{'s} which are algebraic kernels from the denominators in \\spad{f}.") ((|#2| |#2| |#2|) "\\spad{ratDenom(f,{} a)} removes \\spad{a} from the denominators in \\spad{f} if \\spad{a} is an algebraic kernel.") ((|#2| |#2|) "\\spad{ratDenom(f)} rationalizes the denominators appearing in \\spad{f} by moving all the algebraic quantities into the numerators.")) (|rootSplit| ((|#2| |#2|) "\\spad{rootSplit(f)} transforms every radical of the form \\spad{(a/b)**(1/n)} appearing in \\spad{f} into \\spad{a**(1/n) / b**(1/n)}. This transformation is not in general valid for all complex numbers \\spad{a} and \\spad{b}.")) (|coerce| (($ (|SparseMultivariatePolynomial| |#1| (|Kernel| $))) "\\spad{coerce(x)} \\undocumented")) (|denom| (((|SparseMultivariatePolynomial| |#1| (|Kernel| $)) $) "\\spad{denom(x)} \\undocumented")) (|numer| (((|SparseMultivariatePolynomial| |#1| (|Kernel| $)) $) "\\spad{numer(x)} \\undocumented")))
NIL
((-12 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -429) (|devaluate| |#1|)))))
@@ -106,23 +106,23 @@ NIL
((|HasCategory| |#1| (QUOTE (-306))))
(-44 R |n| |ls| |gamma|)
((|constructor| (NIL "AlgebraGivenByStructuralConstants implements finite rank algebras over a commutative ring,{} given by the structural constants \\spad{gamma} with respect to a fixed basis \\spad{[a1,{}..,{}an]},{} where \\spad{gamma} is an \\spad{n}-vector of \\spad{n} by \\spad{n} matrices \\spad{[(gammaijk) for k in 1..rank()]} defined by \\spad{\\spad{ai} * aj = gammaij1 * a1 + ... + gammaijn * an}. The symbols for the fixed basis have to be given as a list of symbols.")) (|coerce| (($ (|Vector| |#1|)) "\\spad{coerce(v)} converts a vector to a member of the algebra by forming a linear combination with the basis element. Note: the vector is assumed to have length equal to the dimension of the algebra.")))
-((-4399 |has| |#1| (-554)) (-4397 . T) (-4396 . T))
+((-4400 |has| |#1| (-554)) (-4398 . T) (-4397 . T))
((|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554))))
(-45 |Key| |Entry|)
((|constructor| (NIL "\\spadtype{AssociationList} implements association lists. These may be viewed as lists of pairs where the first part is a key and the second is the stored value. For example,{} the key might be a string with a persons employee identification number and the value might be a record with personnel data.")))
-((-4402 . T) (-4403 . T))
-((-4037 (-12 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-845))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2694) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2694) (|devaluate| |#2|))))))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-845))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-845))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2694) (|devaluate| |#2|)))))))
+((-4403 . T) (-4404 . T))
+((-4037 (-12 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-845))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2693) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2693) (|devaluate| |#2|))))))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-845))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-845))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2693) (|devaluate| |#2|)))))))
(-46 S R E)
((|constructor| (NIL "Abelian monoid ring elements (not necessarily of finite support) of this ring are of the form formal SUM (r_i * e_i) where the r_i are coefficents and the e_i,{} elements of the ordered abelian monoid,{} are thought of as exponents or monomials. The monomials commute with each other,{} and with the coefficients (which themselves may or may not be commutative). See \\spadtype{FiniteAbelianMonoidRing} for the case of finite support a useful common model for polynomials and power series. Conceptually at least,{} only the non-zero terms are ever operated on.")) (/ (($ $ |#2|) "\\spad{p/c} divides \\spad{p} by the coefficient \\spad{c}.")) (|coefficient| ((|#2| $ |#3|) "\\spad{coefficient(p,{}e)} extracts the coefficient of the monomial with exponent \\spad{e} from polynomial \\spad{p},{} or returns zero if exponent is not present.")) (|reductum| (($ $) "\\spad{reductum(u)} returns \\spad{u} minus its leading monomial returns zero if handed the zero element.")) (|monomial| (($ |#2| |#3|) "\\spad{monomial(r,{}e)} makes a term from a coefficient \\spad{r} and an exponent \\spad{e}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(p)} tests if \\spad{p} is a single monomial.")) (|map| (($ (|Mapping| |#2| |#2|) $) "\\spad{map(fn,{}u)} maps function \\spad{fn} onto the coefficients of the non-zero monomials of \\spad{u}.")) (|degree| ((|#3| $) "\\spad{degree(p)} returns the maximum of the exponents of the terms of \\spad{p}.")) (|leadingMonomial| (($ $) "\\spad{leadingMonomial(p)} returns the monomial of \\spad{p} with the highest degree.")) (|leadingCoefficient| ((|#2| $) "\\spad{leadingCoefficient(p)} returns the coefficient highest degree term of \\spad{p}.")))
NIL
((|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362))))
(-47 R E)
((|constructor| (NIL "Abelian monoid ring elements (not necessarily of finite support) of this ring are of the form formal SUM (r_i * e_i) where the r_i are coefficents and the e_i,{} elements of the ordered abelian monoid,{} are thought of as exponents or monomials. The monomials commute with each other,{} and with the coefficients (which themselves may or may not be commutative). See \\spadtype{FiniteAbelianMonoidRing} for the case of finite support a useful common model for polynomials and power series. Conceptually at least,{} only the non-zero terms are ever operated on.")) (/ (($ $ |#1|) "\\spad{p/c} divides \\spad{p} by the coefficient \\spad{c}.")) (|coefficient| ((|#1| $ |#2|) "\\spad{coefficient(p,{}e)} extracts the coefficient of the monomial with exponent \\spad{e} from polynomial \\spad{p},{} or returns zero if exponent is not present.")) (|reductum| (($ $) "\\spad{reductum(u)} returns \\spad{u} minus its leading monomial returns zero if handed the zero element.")) (|monomial| (($ |#1| |#2|) "\\spad{monomial(r,{}e)} makes a term from a coefficient \\spad{r} and an exponent \\spad{e}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(p)} tests if \\spad{p} is a single monomial.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,{}u)} maps function \\spad{fn} onto the coefficients of the non-zero monomials of \\spad{u}.")) (|degree| ((|#2| $) "\\spad{degree(p)} returns the maximum of the exponents of the terms of \\spad{p}.")) (|leadingMonomial| (($ $) "\\spad{leadingMonomial(p)} returns the monomial of \\spad{p} with the highest degree.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(p)} returns the coefficient highest degree term of \\spad{p}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-48)
((|constructor| (NIL "Algebraic closure of the rational numbers,{} with mathematical =")) (|norm| (($ $ (|List| (|Kernel| $))) "\\spad{norm(f,{}l)} computes the norm of the algebraic number \\spad{f} with respect to the extension generated by kernels \\spad{l}") (($ $ (|Kernel| $)) "\\spad{norm(f,{}k)} computes the norm of the algebraic number \\spad{f} with respect to the extension generated by kernel \\spad{k}") (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|List| (|Kernel| $))) "\\spad{norm(p,{}l)} computes the norm of the polynomial \\spad{p} with respect to the extension generated by kernels \\spad{l}") (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|Kernel| $)) "\\spad{norm(p,{}k)} computes the norm of the polynomial \\spad{p} with respect to the extension generated by kernel \\spad{k}")) (|reduce| (($ $) "\\spad{reduce(f)} simplifies all the unreduced algebraic numbers present in \\spad{f} by applying their defining relations.")) (|denom| (((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $)) $) "\\spad{denom(f)} returns the denominator of \\spad{f} viewed as a polynomial in the kernels over \\spad{Z}.")) (|numer| (((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $)) $) "\\spad{numer(f)} returns the numerator of \\spad{f} viewed as a polynomial in the kernels over \\spad{Z}.")) (|coerce| (($ (|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $))) "\\spad{coerce(p)} returns \\spad{p} viewed as an algebraic number.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| $ (QUOTE (-1044))) (|HasCategory| $ (LIST (QUOTE -1033) (QUOTE (-562)))))
(-49)
((|constructor| (NIL "This domain implements anonymous functions")) (|body| (((|Syntax|) $) "\\spad{body(f)} returns the body of the unnamed function \\spad{`f'}.")) (|parameters| (((|List| (|Symbol|)) $) "\\spad{parameters(f)} returns the list of parameters bound by \\spad{`f'}.")))
@@ -130,7 +130,7 @@ NIL
NIL
(-50 R |lVar|)
((|constructor| (NIL "The domain of antisymmetric polynomials.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,{}p)} changes each coefficient of \\spad{p} by the application of \\spad{f}.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(p)} returns the homogeneous degree of \\spad{p}.")) (|retractable?| (((|Boolean|) $) "\\spad{retractable?(p)} tests if \\spad{p} is a 0-form,{} \\spadignore{i.e.} if degree(\\spad{p}) = 0.")) (|homogeneous?| (((|Boolean|) $) "\\spad{homogeneous?(p)} tests if all of the terms of \\spad{p} have the same degree.")) (|exp| (($ (|List| (|Integer|))) "\\spad{exp([i1,{}...in])} returns \\spad{u_1\\^{i_1} ... u_n\\^{i_n}}")) (|generator| (($ (|NonNegativeInteger|)) "\\spad{generator(n)} returns the \\spad{n}th multiplicative generator,{} a basis term.")) (|coefficient| ((|#1| $ $) "\\spad{coefficient(p,{}u)} returns the coefficient of the term in \\spad{p} containing the basis term \\spad{u} if such a term exists,{} and 0 otherwise. Error: if the second argument \\spad{u} is not a basis element.")) (|reductum| (($ $) "\\spad{reductum(p)},{} where \\spad{p} is an antisymmetric polynomial,{} returns \\spad{p} minus the leading term of \\spad{p} if \\spad{p} has at least two terms,{} and 0 otherwise.")) (|leadingBasisTerm| (($ $) "\\spad{leadingBasisTerm(p)} returns the leading basis term of antisymmetric polynomial \\spad{p}.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(p)} returns the leading coefficient of antisymmetric polynomial \\spad{p}.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-51 S)
((|constructor| (NIL "\\spadtype{AnyFunctions1} implements several utility functions for working with \\spadtype{Any}. These functions are used to go back and forth between objects of \\spadtype{Any} and objects of other types.")) (|retract| ((|#1| (|Any|)) "\\spad{retract(a)} tries to convert \\spad{a} into an object of type \\spad{S}. If possible,{} it returns the object. Error: if no such retraction is possible.")) (|retractable?| (((|Boolean|) (|Any|)) "\\spad{retractable?(a)} tests if \\spad{a} can be converted into an object of type \\spad{S}.")) (|retractIfCan| (((|Union| |#1| "failed") (|Any|)) "\\spad{retractIfCan(a)} tries change \\spad{a} into an object of type \\spad{S}. If it can,{} then such an object is returned. Otherwise,{} \"failed\" is returned.")) (|coerce| (((|Any|) |#1|) "\\spad{coerce(s)} creates an object of \\spadtype{Any} from the object \\spad{s} of type \\spad{S}.")))
@@ -144,7 +144,7 @@ NIL
((|constructor| (NIL "\\spad{ApplyUnivariateSkewPolynomial} (internal) allows univariate skew polynomials to be applied to appropriate modules.")) (|apply| ((|#2| |#3| (|Mapping| |#2| |#2|) |#2|) "\\spad{apply(p,{} f,{} m)} returns \\spad{p(m)} where the action is given by \\spad{x m = f(m)}. \\spad{f} must be an \\spad{R}-pseudo linear map on \\spad{M}.")))
NIL
NIL
-(-54 |Base| R -3197)
+(-54 |Base| R -3196)
((|constructor| (NIL "This package apply rewrite rules to expressions,{} calling the pattern matcher.")) (|localUnquote| ((|#3| |#3| (|List| (|Symbol|))) "\\spad{localUnquote(f,{}ls)} is a local function.")) (|applyRules| ((|#3| (|List| (|RewriteRule| |#1| |#2| |#3|)) |#3| (|PositiveInteger|)) "\\spad{applyRules([r1,{}...,{}rn],{} expr,{} n)} applies the rules \\spad{r1},{}...,{}\\spad{rn} to \\spad{f} a most \\spad{n} times.") ((|#3| (|List| (|RewriteRule| |#1| |#2| |#3|)) |#3|) "\\spad{applyRules([r1,{}...,{}rn],{} expr)} applies the rules \\spad{r1},{}...,{}\\spad{rn} to \\spad{f} an unlimited number of times,{} \\spadignore{i.e.} until none of \\spad{r1},{}...,{}\\spad{rn} is applicable to the expression.")))
NIL
NIL
@@ -158,7 +158,7 @@ NIL
NIL
(-57 R |Row| |Col|)
((|constructor| (NIL "\\indented{1}{TwoDimensionalArrayCategory is a general array category which} allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and columns returned as objects of type Col. The index of the 'first' row may be obtained by calling the function 'minRowIndex'. The index of the 'first' column may be obtained by calling the function 'minColIndex'. The index of the first element of a 'Row' is the same as the index of the first column in an array and vice versa.")) (|map!| (($ (|Mapping| |#1| |#1|) $) "\\spad{map!(f,{}a)} assign \\spad{a(i,{}j)} to \\spad{f(a(i,{}j))} for all \\spad{i,{} j}")) (|map| (($ (|Mapping| |#1| |#1| |#1|) $ $ |#1|) "\\spad{map(f,{}a,{}b,{}r)} returns \\spad{c},{} where \\spad{c(i,{}j) = f(a(i,{}j),{}b(i,{}j))} when both \\spad{a(i,{}j)} and \\spad{b(i,{}j)} exist; else \\spad{c(i,{}j) = f(r,{} b(i,{}j))} when \\spad{a(i,{}j)} does not exist; else \\spad{c(i,{}j) = f(a(i,{}j),{}r)} when \\spad{b(i,{}j)} does not exist; otherwise \\spad{c(i,{}j) = f(r,{}r)}.") (($ (|Mapping| |#1| |#1| |#1|) $ $) "\\spad{map(f,{}a,{}b)} returns \\spad{c},{} where \\spad{c(i,{}j) = f(a(i,{}j),{}b(i,{}j))} for all \\spad{i,{} j}") (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,{}a)} returns \\spad{b},{} where \\spad{b(i,{}j) = f(a(i,{}j))} for all \\spad{i,{} j}")) (|setColumn!| (($ $ (|Integer|) |#3|) "\\spad{setColumn!(m,{}j,{}v)} sets to \\spad{j}th column of \\spad{m} to \\spad{v}")) (|setRow!| (($ $ (|Integer|) |#2|) "\\spad{setRow!(m,{}i,{}v)} sets to \\spad{i}th row of \\spad{m} to \\spad{v}")) (|qsetelt!| ((|#1| $ (|Integer|) (|Integer|) |#1|) "\\spad{qsetelt!(m,{}i,{}j,{}r)} sets the element in the \\spad{i}th row and \\spad{j}th column of \\spad{m} to \\spad{r} NO error check to determine if indices are in proper ranges")) (|setelt| ((|#1| $ (|Integer|) (|Integer|) |#1|) "\\spad{setelt(m,{}i,{}j,{}r)} sets the element in the \\spad{i}th row and \\spad{j}th column of \\spad{m} to \\spad{r} error check to determine if indices are in proper ranges")) (|parts| (((|List| |#1|) $) "\\spad{parts(m)} returns a list of the elements of \\spad{m} in row major order")) (|column| ((|#3| $ (|Integer|)) "\\spad{column(m,{}j)} returns the \\spad{j}th column of \\spad{m} error check to determine if index is in proper ranges")) (|row| ((|#2| $ (|Integer|)) "\\spad{row(m,{}i)} returns the \\spad{i}th row of \\spad{m} error check to determine if index is in proper ranges")) (|qelt| ((|#1| $ (|Integer|) (|Integer|)) "\\spad{qelt(m,{}i,{}j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the array \\spad{m} NO error check to determine if indices are in proper ranges")) (|elt| ((|#1| $ (|Integer|) (|Integer|) |#1|) "\\spad{elt(m,{}i,{}j,{}r)} returns the element in the \\spad{i}th row and \\spad{j}th column of the array \\spad{m},{} if \\spad{m} has an \\spad{i}th row and a \\spad{j}th column,{} and returns \\spad{r} otherwise") ((|#1| $ (|Integer|) (|Integer|)) "\\spad{elt(m,{}i,{}j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the array \\spad{m} error check to determine if indices are in proper ranges")) (|ncols| (((|NonNegativeInteger|) $) "\\spad{ncols(m)} returns the number of columns in the array \\spad{m}")) (|nrows| (((|NonNegativeInteger|) $) "\\spad{nrows(m)} returns the number of rows in the array \\spad{m}")) (|maxColIndex| (((|Integer|) $) "\\spad{maxColIndex(m)} returns the index of the 'last' column of the array \\spad{m}")) (|minColIndex| (((|Integer|) $) "\\spad{minColIndex(m)} returns the index of the 'first' column of the array \\spad{m}")) (|maxRowIndex| (((|Integer|) $) "\\spad{maxRowIndex(m)} returns the index of the 'last' row of the array \\spad{m}")) (|minRowIndex| (((|Integer|) $) "\\spad{minRowIndex(m)} returns the index of the 'first' row of the array \\spad{m}")) (|fill!| (($ $ |#1|) "\\spad{fill!(m,{}r)} fills \\spad{m} with \\spad{r}\\spad{'s}")) (|new| (($ (|NonNegativeInteger|) (|NonNegativeInteger|) |#1|) "\\spad{new(m,{}n,{}r)} is an \\spad{m}-by-\\spad{n} array all of whose entries are \\spad{r}")) (|finiteAggregate| ((|attribute|) "two-dimensional arrays are finite")) (|shallowlyMutable| ((|attribute|) "one may destructively alter arrays")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
NIL
(-58 A B)
((|constructor| (NIL "\\indented{1}{This package provides tools for operating on one-dimensional arrays} with unary and binary functions involving different underlying types")) (|map| (((|OneDimensionalArray| |#2|) (|Mapping| |#2| |#1|) (|OneDimensionalArray| |#1|)) "\\spad{map(f,{}a)} applies function \\spad{f} to each member of one-dimensional array \\spad{a} resulting in a new one-dimensional array over a possibly different underlying domain.")) (|reduce| ((|#2| (|Mapping| |#2| |#1| |#2|) (|OneDimensionalArray| |#1|) |#2|) "\\spad{reduce(f,{}a,{}r)} applies function \\spad{f} to each successive element of the one-dimensional array \\spad{a} and an accumulant initialized to \\spad{r}. For example,{} \\spad{reduce(_+\\$Integer,{}[1,{}2,{}3],{}0)} does \\spad{3+(2+(1+0))}. Note: third argument \\spad{r} may be regarded as the identity element for the function \\spad{f}.")) (|scan| (((|OneDimensionalArray| |#2|) (|Mapping| |#2| |#1| |#2|) (|OneDimensionalArray| |#1|) |#2|) "\\spad{scan(f,{}a,{}r)} successively applies \\spad{reduce(f,{}x,{}r)} to more and more leading sub-arrays \\spad{x} of one-dimensional array \\spad{a}. More precisely,{} if \\spad{a} is \\spad{[a1,{}a2,{}...]},{} then \\spad{scan(f,{}a,{}r)} returns \\spad{[reduce(f,{}[a1],{}r),{}reduce(f,{}[a1,{}a2],{}r),{}...]}.")))
@@ -166,65 +166,65 @@ NIL
NIL
(-59 S)
((|constructor| (NIL "This is the domain of 1-based one dimensional arrays")) (|oneDimensionalArray| (($ (|NonNegativeInteger|) |#1|) "\\spad{oneDimensionalArray(n,{}s)} creates an array from \\spad{n} copies of element \\spad{s}") (($ (|List| |#1|)) "\\spad{oneDimensionalArray(l)} creates an array from a list of elements \\spad{l}")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
(-60 R)
((|constructor| (NIL "\\indented{1}{A TwoDimensionalArray is a two dimensional array with} 1-based indexing for both rows and columns.")) (|shallowlyMutable| ((|attribute|) "One may destructively alter TwoDimensionalArray\\spad{'s}.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
-(-61 -3254)
+(-61 -3253)
((|constructor| (NIL "\\spadtype{ASP10} produces Fortran for Type 10 ASPs,{} needed for NAG routine \\axiomOpFrom{d02kef}{d02Package}. This ASP computes the values of a set of functions,{} for example:\\begin{verbatim} SUBROUTINE COEFFN(P,Q,DQDL,X,ELAM,JINT) DOUBLE PRECISION ELAM,P,Q,X,DQDL INTEGER JINT P=1.0D0 Q=((-1.0D0*X**3)+ELAM*X*X-2.0D0)/(X*X) DQDL=1.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-62 -3254)
+(-62 -3253)
((|constructor| (NIL "\\spadtype{Asp12} produces Fortran for Type 12 ASPs,{} needed for NAG routine \\axiomOpFrom{d02kef}{d02Package} etc.,{} for example:\\begin{verbatim} SUBROUTINE MONIT (MAXIT,IFLAG,ELAM,FINFO) DOUBLE PRECISION ELAM,FINFO(15) INTEGER MAXIT,IFLAG IF(MAXIT.EQ.-1)THEN PRINT*,\"Output from Monit\" ENDIF PRINT*,MAXIT,IFLAG,ELAM,(FINFO(I),I=1,4) RETURN END\\end{verbatim}")) (|outputAsFortran| (((|Void|)) "\\spad{outputAsFortran()} generates the default code for \\spadtype{ASP12}.")))
NIL
NIL
-(-63 -3254)
+(-63 -3253)
((|constructor| (NIL "\\spadtype{Asp19} produces Fortran for Type 19 ASPs,{} evaluating a set of functions and their jacobian at a given point,{} for example:\\begin{verbatim} SUBROUTINE LSFUN2(M,N,XC,FVECC,FJACC,LJC) DOUBLE PRECISION FVECC(M),FJACC(LJC,N),XC(N) INTEGER M,N,LJC INTEGER I,J DO 25003 I=1,LJC DO 25004 J=1,N FJACC(I,J)=0.0D025004 CONTINUE25003 CONTINUE FVECC(1)=((XC(1)-0.14D0)*XC(3)+(15.0D0*XC(1)-2.1D0)*XC(2)+1.0D0)/( &XC(3)+15.0D0*XC(2)) FVECC(2)=((XC(1)-0.18D0)*XC(3)+(7.0D0*XC(1)-1.26D0)*XC(2)+1.0D0)/( &XC(3)+7.0D0*XC(2)) FVECC(3)=((XC(1)-0.22D0)*XC(3)+(4.333333333333333D0*XC(1)-0.953333 &3333333333D0)*XC(2)+1.0D0)/(XC(3)+4.333333333333333D0*XC(2)) FVECC(4)=((XC(1)-0.25D0)*XC(3)+(3.0D0*XC(1)-0.75D0)*XC(2)+1.0D0)/( &XC(3)+3.0D0*XC(2)) FVECC(5)=((XC(1)-0.29D0)*XC(3)+(2.2D0*XC(1)-0.6379999999999999D0)* &XC(2)+1.0D0)/(XC(3)+2.2D0*XC(2)) FVECC(6)=((XC(1)-0.32D0)*XC(3)+(1.666666666666667D0*XC(1)-0.533333 &3333333333D0)*XC(2)+1.0D0)/(XC(3)+1.666666666666667D0*XC(2)) FVECC(7)=((XC(1)-0.35D0)*XC(3)+(1.285714285714286D0*XC(1)-0.45D0)* &XC(2)+1.0D0)/(XC(3)+1.285714285714286D0*XC(2)) FVECC(8)=((XC(1)-0.39D0)*XC(3)+(XC(1)-0.39D0)*XC(2)+1.0D0)/(XC(3)+ &XC(2)) FVECC(9)=((XC(1)-0.37D0)*XC(3)+(XC(1)-0.37D0)*XC(2)+1.285714285714 &286D0)/(XC(3)+XC(2)) FVECC(10)=((XC(1)-0.58D0)*XC(3)+(XC(1)-0.58D0)*XC(2)+1.66666666666 &6667D0)/(XC(3)+XC(2)) FVECC(11)=((XC(1)-0.73D0)*XC(3)+(XC(1)-0.73D0)*XC(2)+2.2D0)/(XC(3) &+XC(2)) FVECC(12)=((XC(1)-0.96D0)*XC(3)+(XC(1)-0.96D0)*XC(2)+3.0D0)/(XC(3) &+XC(2)) FVECC(13)=((XC(1)-1.34D0)*XC(3)+(XC(1)-1.34D0)*XC(2)+4.33333333333 &3333D0)/(XC(3)+XC(2)) FVECC(14)=((XC(1)-2.1D0)*XC(3)+(XC(1)-2.1D0)*XC(2)+7.0D0)/(XC(3)+X &C(2)) FVECC(15)=((XC(1)-4.39D0)*XC(3)+(XC(1)-4.39D0)*XC(2)+15.0D0)/(XC(3 &)+XC(2)) FJACC(1,1)=1.0D0 FJACC(1,2)=-15.0D0/(XC(3)**2+30.0D0*XC(2)*XC(3)+225.0D0*XC(2)**2) FJACC(1,3)=-1.0D0/(XC(3)**2+30.0D0*XC(2)*XC(3)+225.0D0*XC(2)**2) FJACC(2,1)=1.0D0 FJACC(2,2)=-7.0D0/(XC(3)**2+14.0D0*XC(2)*XC(3)+49.0D0*XC(2)**2) FJACC(2,3)=-1.0D0/(XC(3)**2+14.0D0*XC(2)*XC(3)+49.0D0*XC(2)**2) FJACC(3,1)=1.0D0 FJACC(3,2)=((-0.1110223024625157D-15*XC(3))-4.333333333333333D0)/( &XC(3)**2+8.666666666666666D0*XC(2)*XC(3)+18.77777777777778D0*XC(2) &**2) FJACC(3,3)=(0.1110223024625157D-15*XC(2)-1.0D0)/(XC(3)**2+8.666666 &666666666D0*XC(2)*XC(3)+18.77777777777778D0*XC(2)**2) FJACC(4,1)=1.0D0 FJACC(4,2)=-3.0D0/(XC(3)**2+6.0D0*XC(2)*XC(3)+9.0D0*XC(2)**2) FJACC(4,3)=-1.0D0/(XC(3)**2+6.0D0*XC(2)*XC(3)+9.0D0*XC(2)**2) FJACC(5,1)=1.0D0 FJACC(5,2)=((-0.1110223024625157D-15*XC(3))-2.2D0)/(XC(3)**2+4.399 &999999999999D0*XC(2)*XC(3)+4.839999999999998D0*XC(2)**2) FJACC(5,3)=(0.1110223024625157D-15*XC(2)-1.0D0)/(XC(3)**2+4.399999 &999999999D0*XC(2)*XC(3)+4.839999999999998D0*XC(2)**2) FJACC(6,1)=1.0D0 FJACC(6,2)=((-0.2220446049250313D-15*XC(3))-1.666666666666667D0)/( &XC(3)**2+3.333333333333333D0*XC(2)*XC(3)+2.777777777777777D0*XC(2) &**2) FJACC(6,3)=(0.2220446049250313D-15*XC(2)-1.0D0)/(XC(3)**2+3.333333 &333333333D0*XC(2)*XC(3)+2.777777777777777D0*XC(2)**2) FJACC(7,1)=1.0D0 FJACC(7,2)=((-0.5551115123125783D-16*XC(3))-1.285714285714286D0)/( &XC(3)**2+2.571428571428571D0*XC(2)*XC(3)+1.653061224489796D0*XC(2) &**2) FJACC(7,3)=(0.5551115123125783D-16*XC(2)-1.0D0)/(XC(3)**2+2.571428 &571428571D0*XC(2)*XC(3)+1.653061224489796D0*XC(2)**2) FJACC(8,1)=1.0D0 FJACC(8,2)=-1.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(8,3)=-1.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(9,1)=1.0D0 FJACC(9,2)=-1.285714285714286D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)* &*2) FJACC(9,3)=-1.285714285714286D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)* &*2) FJACC(10,1)=1.0D0 FJACC(10,2)=-1.666666666666667D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2) &**2) FJACC(10,3)=-1.666666666666667D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2) &**2) FJACC(11,1)=1.0D0 FJACC(11,2)=-2.2D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(11,3)=-2.2D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(12,1)=1.0D0 FJACC(12,2)=-3.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(12,3)=-3.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(13,1)=1.0D0 FJACC(13,2)=-4.333333333333333D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2) &**2) FJACC(13,3)=-4.333333333333333D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2) &**2) FJACC(14,1)=1.0D0 FJACC(14,2)=-7.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(14,3)=-7.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(15,1)=1.0D0 FJACC(15,2)=-15.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) FJACC(15,3)=-15.0D0/(XC(3)**2+2.0D0*XC(2)*XC(3)+XC(2)**2) RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE XC)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-64 -3254)
+(-64 -3253)
((|constructor| (NIL "\\spadtype{Asp1} produces Fortran for Type 1 ASPs,{} needed for various NAG routines. Type 1 ASPs take a univariate expression (in the symbol \\spad{X}) and turn it into a Fortran Function like the following:\\begin{verbatim} DOUBLE PRECISION FUNCTION F(X) DOUBLE PRECISION X F=DSIN(X) RETURN END\\end{verbatim}")) (|coerce| (($ (|FortranExpression| (|construct| (QUOTE X)) (|construct|) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
-(-65 -3254)
+(-65 -3253)
((|constructor| (NIL "\\spadtype{Asp20} produces Fortran for Type 20 ASPs,{} for example:\\begin{verbatim} SUBROUTINE QPHESS(N,NROWH,NCOLH,JTHCOL,HESS,X,HX) DOUBLE PRECISION HX(N),X(N),HESS(NROWH,NCOLH) INTEGER JTHCOL,N,NROWH,NCOLH HX(1)=2.0D0*X(1) HX(2)=2.0D0*X(2) HX(3)=2.0D0*X(4)+2.0D0*X(3) HX(4)=2.0D0*X(4)+2.0D0*X(3) HX(5)=2.0D0*X(5) HX(6)=(-2.0D0*X(7))+(-2.0D0*X(6)) HX(7)=(-2.0D0*X(7))+(-2.0D0*X(6)) RETURN END\\end{verbatim}")))
NIL
NIL
-(-66 -3254)
+(-66 -3253)
((|constructor| (NIL "\\spadtype{Asp24} produces Fortran for Type 24 ASPs which evaluate a multivariate function at a point (needed for NAG routine \\axiomOpFrom{e04jaf}{e04Package}),{} for example:\\begin{verbatim} SUBROUTINE FUNCT1(N,XC,FC) DOUBLE PRECISION FC,XC(N) INTEGER N FC=10.0D0*XC(4)**4+(-40.0D0*XC(1)*XC(4)**3)+(60.0D0*XC(1)**2+5 &.0D0)*XC(4)**2+((-10.0D0*XC(3))+(-40.0D0*XC(1)**3))*XC(4)+16.0D0*X &C(3)**4+(-32.0D0*XC(2)*XC(3)**3)+(24.0D0*XC(2)**2+5.0D0)*XC(3)**2+ &(-8.0D0*XC(2)**3*XC(3))+XC(2)**4+100.0D0*XC(2)**2+20.0D0*XC(1)*XC( &2)+10.0D0*XC(1)**4+XC(1)**2 RETURN END\\end{verbatim}")) (|coerce| (($ (|FortranExpression| (|construct|) (|construct| (QUOTE XC)) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
-(-67 -3254)
+(-67 -3253)
((|constructor| (NIL "\\spadtype{Asp27} produces Fortran for Type 27 ASPs,{} needed for NAG routine \\axiomOpFrom{f02fjf}{f02Package} ,{}for example:\\begin{verbatim} FUNCTION DOT(IFLAG,N,Z,W,RWORK,LRWORK,IWORK,LIWORK) DOUBLE PRECISION W(N),Z(N),RWORK(LRWORK) INTEGER N,LIWORK,IFLAG,LRWORK,IWORK(LIWORK) DOT=(W(16)+(-0.5D0*W(15)))*Z(16)+((-0.5D0*W(16))+W(15)+(-0.5D0*W(1 &4)))*Z(15)+((-0.5D0*W(15))+W(14)+(-0.5D0*W(13)))*Z(14)+((-0.5D0*W( &14))+W(13)+(-0.5D0*W(12)))*Z(13)+((-0.5D0*W(13))+W(12)+(-0.5D0*W(1 &1)))*Z(12)+((-0.5D0*W(12))+W(11)+(-0.5D0*W(10)))*Z(11)+((-0.5D0*W( &11))+W(10)+(-0.5D0*W(9)))*Z(10)+((-0.5D0*W(10))+W(9)+(-0.5D0*W(8)) &)*Z(9)+((-0.5D0*W(9))+W(8)+(-0.5D0*W(7)))*Z(8)+((-0.5D0*W(8))+W(7) &+(-0.5D0*W(6)))*Z(7)+((-0.5D0*W(7))+W(6)+(-0.5D0*W(5)))*Z(6)+((-0. &5D0*W(6))+W(5)+(-0.5D0*W(4)))*Z(5)+((-0.5D0*W(5))+W(4)+(-0.5D0*W(3 &)))*Z(4)+((-0.5D0*W(4))+W(3)+(-0.5D0*W(2)))*Z(3)+((-0.5D0*W(3))+W( &2)+(-0.5D0*W(1)))*Z(2)+((-0.5D0*W(2))+W(1))*Z(1) RETURN END\\end{verbatim}")))
NIL
NIL
-(-68 -3254)
+(-68 -3253)
((|constructor| (NIL "\\spadtype{Asp28} produces Fortran for Type 28 ASPs,{} used in NAG routine \\axiomOpFrom{f02fjf}{f02Package},{} for example:\\begin{verbatim} SUBROUTINE IMAGE(IFLAG,N,Z,W,RWORK,LRWORK,IWORK,LIWORK) DOUBLE PRECISION Z(N),W(N),IWORK(LRWORK),RWORK(LRWORK) INTEGER N,LIWORK,IFLAG,LRWORK W(1)=0.01707454969713436D0*Z(16)+0.001747395874954051D0*Z(15)+0.00 &2106973900813502D0*Z(14)+0.002957434991769087D0*Z(13)+(-0.00700554 &0882865317D0*Z(12))+(-0.01219194009813166D0*Z(11))+0.0037230647365 &3087D0*Z(10)+0.04932374658377151D0*Z(9)+(-0.03586220812223305D0*Z( &8))+(-0.04723268012114625D0*Z(7))+(-0.02434652144032987D0*Z(6))+0. &2264766947290192D0*Z(5)+(-0.1385343580686922D0*Z(4))+(-0.116530050 &8238904D0*Z(3))+(-0.2803531651057233D0*Z(2))+1.019463911841327D0*Z &(1) W(2)=0.0227345011107737D0*Z(16)+0.008812321197398072D0*Z(15)+0.010 &94012210519586D0*Z(14)+(-0.01764072463999744D0*Z(13))+(-0.01357136 &72105995D0*Z(12))+0.00157466157362272D0*Z(11)+0.05258889186338282D &0*Z(10)+(-0.01981532388243379D0*Z(9))+(-0.06095390688679697D0*Z(8) &)+(-0.04153119955569051D0*Z(7))+0.2176561076571465D0*Z(6)+(-0.0532 &5555586632358D0*Z(5))+(-0.1688977368984641D0*Z(4))+(-0.32440166056 &67343D0*Z(3))+0.9128222941872173D0*Z(2)+(-0.2419652703415429D0*Z(1 &)) W(3)=0.03371198197190302D0*Z(16)+0.02021603150122265D0*Z(15)+(-0.0 &06607305534689702D0*Z(14))+(-0.03032392238968179D0*Z(13))+0.002033 &305231024948D0*Z(12)+0.05375944956767728D0*Z(11)+(-0.0163213312502 &9967D0*Z(10))+(-0.05483186562035512D0*Z(9))+(-0.04901428822579872D &0*Z(8))+0.2091097927887612D0*Z(7)+(-0.05760560341383113D0*Z(6))+(- &0.1236679206156403D0*Z(5))+(-0.3523683853026259D0*Z(4))+0.88929961 &32269974D0*Z(3)+(-0.2995429545781457D0*Z(2))+(-0.02986582812574917 &D0*Z(1)) W(4)=0.05141563713660119D0*Z(16)+0.005239165960779299D0*Z(15)+(-0. &01623427735779699D0*Z(14))+(-0.01965809746040371D0*Z(13))+0.054688 &97337339577D0*Z(12)+(-0.014224695935687D0*Z(11))+(-0.0505181779315 &6355D0*Z(10))+(-0.04353074206076491D0*Z(9))+0.2012230497530726D0*Z &(8)+(-0.06630874514535952D0*Z(7))+(-0.1280829963720053D0*Z(6))+(-0 &.305169742604165D0*Z(5))+0.8600427128450191D0*Z(4)+(-0.32415033802 &68184D0*Z(3))+(-0.09033531980693314D0*Z(2))+0.09089205517109111D0* &Z(1) W(5)=0.04556369767776375D0*Z(16)+(-0.001822737697581869D0*Z(15))+( &-0.002512226501941856D0*Z(14))+0.02947046460707379D0*Z(13)+(-0.014 &45079632086177D0*Z(12))+(-0.05034242196614937D0*Z(11))+(-0.0376966 &3291725935D0*Z(10))+0.2171103102175198D0*Z(9)+(-0.0824949256021352 &4D0*Z(8))+(-0.1473995209288945D0*Z(7))+(-0.315042193418466D0*Z(6)) &+0.9591623347824002D0*Z(5)+(-0.3852396953763045D0*Z(4))+(-0.141718 &5427288274D0*Z(3))+(-0.03423495461011043D0*Z(2))+0.319820917706851 &6D0*Z(1) W(6)=0.04015147277405744D0*Z(16)+0.01328585741341559D0*Z(15)+0.048 &26082005465965D0*Z(14)+(-0.04319641116207706D0*Z(13))+(-0.04931323 &319055762D0*Z(12))+(-0.03526886317505474D0*Z(11))+0.22295383396730 &01D0*Z(10)+(-0.07375317649315155D0*Z(9))+(-0.1589391311991561D0*Z( &8))+(-0.328001910890377D0*Z(7))+0.952576555482747D0*Z(6)+(-0.31583 &09975786731D0*Z(5))+(-0.1846882042225383D0*Z(4))+(-0.0703762046700 &4427D0*Z(3))+0.2311852964327382D0*Z(2)+0.04254083491825025D0*Z(1) W(7)=0.06069778964023718D0*Z(16)+0.06681263884671322D0*Z(15)+(-0.0 &2113506688615768D0*Z(14))+(-0.083996867458326D0*Z(13))+(-0.0329843 &8523869648D0*Z(12))+0.2276878326327734D0*Z(11)+(-0.067356038933017 &95D0*Z(10))+(-0.1559813965382218D0*Z(9))+(-0.3363262957694705D0*Z( &8))+0.9442791158560948D0*Z(7)+(-0.3199955249404657D0*Z(6))+(-0.136 &2463839920727D0*Z(5))+(-0.1006185171570586D0*Z(4))+0.2057504515015 &423D0*Z(3)+(-0.02065879269286707D0*Z(2))+0.03160990266745513D0*Z(1 &) W(8)=0.126386868896738D0*Z(16)+0.002563370039476418D0*Z(15)+(-0.05 &581757739455641D0*Z(14))+(-0.07777893205900685D0*Z(13))+0.23117338 &45834199D0*Z(12)+(-0.06031581134427592D0*Z(11))+(-0.14805474755869 &52D0*Z(10))+(-0.3364014128402243D0*Z(9))+0.9364014128402244D0*Z(8) &+(-0.3269452524413048D0*Z(7))+(-0.1396841886557241D0*Z(6))+(-0.056 &1733845834199D0*Z(5))+0.1777789320590069D0*Z(4)+(-0.04418242260544 &359D0*Z(3))+(-0.02756337003947642D0*Z(2))+0.07361313110326199D0*Z( &1) W(9)=0.07361313110326199D0*Z(16)+(-0.02756337003947642D0*Z(15))+(- &0.04418242260544359D0*Z(14))+0.1777789320590069D0*Z(13)+(-0.056173 &3845834199D0*Z(12))+(-0.1396841886557241D0*Z(11))+(-0.326945252441 &3048D0*Z(10))+0.9364014128402244D0*Z(9)+(-0.3364014128402243D0*Z(8 &))+(-0.1480547475586952D0*Z(7))+(-0.06031581134427592D0*Z(6))+0.23 &11733845834199D0*Z(5)+(-0.07777893205900685D0*Z(4))+(-0.0558175773 &9455641D0*Z(3))+0.002563370039476418D0*Z(2)+0.126386868896738D0*Z( &1) W(10)=0.03160990266745513D0*Z(16)+(-0.02065879269286707D0*Z(15))+0 &.2057504515015423D0*Z(14)+(-0.1006185171570586D0*Z(13))+(-0.136246 &3839920727D0*Z(12))+(-0.3199955249404657D0*Z(11))+0.94427911585609 &48D0*Z(10)+(-0.3363262957694705D0*Z(9))+(-0.1559813965382218D0*Z(8 &))+(-0.06735603893301795D0*Z(7))+0.2276878326327734D0*Z(6)+(-0.032 &98438523869648D0*Z(5))+(-0.083996867458326D0*Z(4))+(-0.02113506688 &615768D0*Z(3))+0.06681263884671322D0*Z(2)+0.06069778964023718D0*Z( &1) W(11)=0.04254083491825025D0*Z(16)+0.2311852964327382D0*Z(15)+(-0.0 &7037620467004427D0*Z(14))+(-0.1846882042225383D0*Z(13))+(-0.315830 &9975786731D0*Z(12))+0.952576555482747D0*Z(11)+(-0.328001910890377D &0*Z(10))+(-0.1589391311991561D0*Z(9))+(-0.07375317649315155D0*Z(8) &)+0.2229538339673001D0*Z(7)+(-0.03526886317505474D0*Z(6))+(-0.0493 &1323319055762D0*Z(5))+(-0.04319641116207706D0*Z(4))+0.048260820054 &65965D0*Z(3)+0.01328585741341559D0*Z(2)+0.04015147277405744D0*Z(1) W(12)=0.3198209177068516D0*Z(16)+(-0.03423495461011043D0*Z(15))+(- &0.1417185427288274D0*Z(14))+(-0.3852396953763045D0*Z(13))+0.959162 &3347824002D0*Z(12)+(-0.315042193418466D0*Z(11))+(-0.14739952092889 &45D0*Z(10))+(-0.08249492560213524D0*Z(9))+0.2171103102175198D0*Z(8 &)+(-0.03769663291725935D0*Z(7))+(-0.05034242196614937D0*Z(6))+(-0. &01445079632086177D0*Z(5))+0.02947046460707379D0*Z(4)+(-0.002512226 &501941856D0*Z(3))+(-0.001822737697581869D0*Z(2))+0.045563697677763 &75D0*Z(1) W(13)=0.09089205517109111D0*Z(16)+(-0.09033531980693314D0*Z(15))+( &-0.3241503380268184D0*Z(14))+0.8600427128450191D0*Z(13)+(-0.305169 &742604165D0*Z(12))+(-0.1280829963720053D0*Z(11))+(-0.0663087451453 &5952D0*Z(10))+0.2012230497530726D0*Z(9)+(-0.04353074206076491D0*Z( &8))+(-0.05051817793156355D0*Z(7))+(-0.014224695935687D0*Z(6))+0.05 &468897337339577D0*Z(5)+(-0.01965809746040371D0*Z(4))+(-0.016234277 &35779699D0*Z(3))+0.005239165960779299D0*Z(2)+0.05141563713660119D0 &*Z(1) W(14)=(-0.02986582812574917D0*Z(16))+(-0.2995429545781457D0*Z(15)) &+0.8892996132269974D0*Z(14)+(-0.3523683853026259D0*Z(13))+(-0.1236 &679206156403D0*Z(12))+(-0.05760560341383113D0*Z(11))+0.20910979278 &87612D0*Z(10)+(-0.04901428822579872D0*Z(9))+(-0.05483186562035512D &0*Z(8))+(-0.01632133125029967D0*Z(7))+0.05375944956767728D0*Z(6)+0 &.002033305231024948D0*Z(5)+(-0.03032392238968179D0*Z(4))+(-0.00660 &7305534689702D0*Z(3))+0.02021603150122265D0*Z(2)+0.033711981971903 &02D0*Z(1) W(15)=(-0.2419652703415429D0*Z(16))+0.9128222941872173D0*Z(15)+(-0 &.3244016605667343D0*Z(14))+(-0.1688977368984641D0*Z(13))+(-0.05325 &555586632358D0*Z(12))+0.2176561076571465D0*Z(11)+(-0.0415311995556 &9051D0*Z(10))+(-0.06095390688679697D0*Z(9))+(-0.01981532388243379D &0*Z(8))+0.05258889186338282D0*Z(7)+0.00157466157362272D0*Z(6)+(-0. &0135713672105995D0*Z(5))+(-0.01764072463999744D0*Z(4))+0.010940122 &10519586D0*Z(3)+0.008812321197398072D0*Z(2)+0.0227345011107737D0*Z &(1) W(16)=1.019463911841327D0*Z(16)+(-0.2803531651057233D0*Z(15))+(-0. &1165300508238904D0*Z(14))+(-0.1385343580686922D0*Z(13))+0.22647669 &47290192D0*Z(12)+(-0.02434652144032987D0*Z(11))+(-0.04723268012114 &625D0*Z(10))+(-0.03586220812223305D0*Z(9))+0.04932374658377151D0*Z &(8)+0.00372306473653087D0*Z(7)+(-0.01219194009813166D0*Z(6))+(-0.0 &07005540882865317D0*Z(5))+0.002957434991769087D0*Z(4)+0.0021069739 &00813502D0*Z(3)+0.001747395874954051D0*Z(2)+0.01707454969713436D0* &Z(1) RETURN END\\end{verbatim}")))
NIL
NIL
-(-69 -3254)
+(-69 -3253)
((|constructor| (NIL "\\spadtype{Asp29} produces Fortran for Type 29 ASPs,{} needed for NAG routine \\axiomOpFrom{f02fjf}{f02Package},{} for example:\\begin{verbatim} SUBROUTINE MONIT(ISTATE,NEXTIT,NEVALS,NEVECS,K,F,D) DOUBLE PRECISION D(K),F(K) INTEGER K,NEXTIT,NEVALS,NVECS,ISTATE CALL F02FJZ(ISTATE,NEXTIT,NEVALS,NEVECS,K,F,D) RETURN END\\end{verbatim}")) (|outputAsFortran| (((|Void|)) "\\spad{outputAsFortran()} generates the default code for \\spadtype{ASP29}.")))
NIL
NIL
-(-70 -3254)
+(-70 -3253)
((|constructor| (NIL "\\spadtype{Asp30} produces Fortran for Type 30 ASPs,{} needed for NAG routine \\axiomOpFrom{f04qaf}{f04Package},{} for example:\\begin{verbatim} SUBROUTINE APROD(MODE,M,N,X,Y,RWORK,LRWORK,IWORK,LIWORK) DOUBLE PRECISION X(N),Y(M),RWORK(LRWORK) INTEGER M,N,LIWORK,IFAIL,LRWORK,IWORK(LIWORK),MODE DOUBLE PRECISION A(5,5) EXTERNAL F06PAF A(1,1)=1.0D0 A(1,2)=0.0D0 A(1,3)=0.0D0 A(1,4)=-1.0D0 A(1,5)=0.0D0 A(2,1)=0.0D0 A(2,2)=1.0D0 A(2,3)=0.0D0 A(2,4)=0.0D0 A(2,5)=-1.0D0 A(3,1)=0.0D0 A(3,2)=0.0D0 A(3,3)=1.0D0 A(3,4)=-1.0D0 A(3,5)=0.0D0 A(4,1)=-1.0D0 A(4,2)=0.0D0 A(4,3)=-1.0D0 A(4,4)=4.0D0 A(4,5)=-1.0D0 A(5,1)=0.0D0 A(5,2)=-1.0D0 A(5,3)=0.0D0 A(5,4)=-1.0D0 A(5,5)=4.0D0 IF(MODE.EQ.1)THEN CALL F06PAF('N',M,N,1.0D0,A,M,X,1,1.0D0,Y,1) ELSEIF(MODE.EQ.2)THEN CALL F06PAF('T',M,N,1.0D0,A,M,Y,1,1.0D0,X,1) ENDIF RETURN END\\end{verbatim}")))
NIL
NIL
-(-71 -3254)
+(-71 -3253)
((|constructor| (NIL "\\spadtype{Asp31} produces Fortran for Type 31 ASPs,{} needed for NAG routine \\axiomOpFrom{d02ejf}{d02Package},{} for example:\\begin{verbatim} SUBROUTINE PEDERV(X,Y,PW) DOUBLE PRECISION X,Y(*) DOUBLE PRECISION PW(3,3) PW(1,1)=-0.03999999999999999D0 PW(1,2)=10000.0D0*Y(3) PW(1,3)=10000.0D0*Y(2) PW(2,1)=0.03999999999999999D0 PW(2,2)=(-10000.0D0*Y(3))+(-60000000.0D0*Y(2)) PW(2,3)=-10000.0D0*Y(2) PW(3,1)=0.0D0 PW(3,2)=60000000.0D0*Y(2) PW(3,3)=0.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE X)) (|construct| (QUOTE Y)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-72 -3254)
+(-72 -3253)
((|constructor| (NIL "\\spadtype{Asp33} produces Fortran for Type 33 ASPs,{} needed for NAG routine \\axiomOpFrom{d02kef}{d02Package}. The code is a dummy ASP:\\begin{verbatim} SUBROUTINE REPORT(X,V,JINT) DOUBLE PRECISION V(3),X INTEGER JINT RETURN END\\end{verbatim}")) (|outputAsFortran| (((|Void|)) "\\spad{outputAsFortran()} generates the default code for \\spadtype{ASP33}.")))
NIL
NIL
-(-73 -3254)
+(-73 -3253)
((|constructor| (NIL "\\spadtype{Asp34} produces Fortran for Type 34 ASPs,{} needed for NAG routine \\axiomOpFrom{f04mbf}{f04Package},{} for example:\\begin{verbatim} SUBROUTINE MSOLVE(IFLAG,N,X,Y,RWORK,LRWORK,IWORK,LIWORK) DOUBLE PRECISION RWORK(LRWORK),X(N),Y(N) INTEGER I,J,N,LIWORK,IFLAG,LRWORK,IWORK(LIWORK) DOUBLE PRECISION W1(3),W2(3),MS(3,3) IFLAG=-1 MS(1,1)=2.0D0 MS(1,2)=1.0D0 MS(1,3)=0.0D0 MS(2,1)=1.0D0 MS(2,2)=2.0D0 MS(2,3)=1.0D0 MS(3,1)=0.0D0 MS(3,2)=1.0D0 MS(3,3)=2.0D0 CALL F04ASF(MS,N,X,N,Y,W1,W2,IFLAG) IFLAG=-IFLAG RETURN END\\end{verbatim}")))
NIL
NIL
-(-74 -3254)
+(-74 -3253)
((|constructor| (NIL "\\spadtype{Asp35} produces Fortran for Type 35 ASPs,{} needed for NAG routines \\axiomOpFrom{c05pbf}{c05Package},{} \\axiomOpFrom{c05pcf}{c05Package},{} for example:\\begin{verbatim} SUBROUTINE FCN(N,X,FVEC,FJAC,LDFJAC,IFLAG) DOUBLE PRECISION X(N),FVEC(N),FJAC(LDFJAC,N) INTEGER LDFJAC,N,IFLAG IF(IFLAG.EQ.1)THEN FVEC(1)=(-1.0D0*X(2))+X(1) FVEC(2)=(-1.0D0*X(3))+2.0D0*X(2) FVEC(3)=3.0D0*X(3) ELSEIF(IFLAG.EQ.2)THEN FJAC(1,1)=1.0D0 FJAC(1,2)=-1.0D0 FJAC(1,3)=0.0D0 FJAC(2,1)=0.0D0 FJAC(2,2)=2.0D0 FJAC(2,3)=-1.0D0 FJAC(3,1)=0.0D0 FJAC(3,2)=0.0D0 FJAC(3,3)=3.0D0 ENDIF END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
@@ -236,55 +236,55 @@ NIL
((|constructor| (NIL "\\spadtype{Asp42} produces Fortran for Type 42 ASPs,{} needed for NAG routines \\axiomOpFrom{d02raf}{d02Package} and \\axiomOpFrom{d02saf}{d02Package} in particular. These ASPs are in fact three Fortran routines which return a vector of functions,{} and their derivatives \\spad{wrt} \\spad{Y}(\\spad{i}) and also a continuation parameter EPS,{} for example:\\begin{verbatim} SUBROUTINE G(EPS,YA,YB,BC,N) DOUBLE PRECISION EPS,YA(N),YB(N),BC(N) INTEGER N BC(1)=YA(1) BC(2)=YA(2) BC(3)=YB(2)-1.0D0 RETURN END SUBROUTINE JACOBG(EPS,YA,YB,AJ,BJ,N) DOUBLE PRECISION EPS,YA(N),AJ(N,N),BJ(N,N),YB(N) INTEGER N AJ(1,1)=1.0D0 AJ(1,2)=0.0D0 AJ(1,3)=0.0D0 AJ(2,1)=0.0D0 AJ(2,2)=1.0D0 AJ(2,3)=0.0D0 AJ(3,1)=0.0D0 AJ(3,2)=0.0D0 AJ(3,3)=0.0D0 BJ(1,1)=0.0D0 BJ(1,2)=0.0D0 BJ(1,3)=0.0D0 BJ(2,1)=0.0D0 BJ(2,2)=0.0D0 BJ(2,3)=0.0D0 BJ(3,1)=0.0D0 BJ(3,2)=1.0D0 BJ(3,3)=0.0D0 RETURN END SUBROUTINE JACGEP(EPS,YA,YB,BCEP,N) DOUBLE PRECISION EPS,YA(N),YB(N),BCEP(N) INTEGER N BCEP(1)=0.0D0 BCEP(2)=0.0D0 BCEP(3)=0.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE EPS)) (|construct| (QUOTE YA) (QUOTE YB)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-77 -3254)
+(-77 -3253)
((|constructor| (NIL "\\spadtype{Asp49} produces Fortran for Type 49 ASPs,{} needed for NAG routines \\axiomOpFrom{e04dgf}{e04Package},{} \\axiomOpFrom{e04ucf}{e04Package},{} for example:\\begin{verbatim} SUBROUTINE OBJFUN(MODE,N,X,OBJF,OBJGRD,NSTATE,IUSER,USER) DOUBLE PRECISION X(N),OBJF,OBJGRD(N),USER(*) INTEGER N,IUSER(*),MODE,NSTATE OBJF=X(4)*X(9)+((-1.0D0*X(5))+X(3))*X(8)+((-1.0D0*X(3))+X(1))*X(7) &+(-1.0D0*X(2)*X(6)) OBJGRD(1)=X(7) OBJGRD(2)=-1.0D0*X(6) OBJGRD(3)=X(8)+(-1.0D0*X(7)) OBJGRD(4)=X(9) OBJGRD(5)=-1.0D0*X(8) OBJGRD(6)=-1.0D0*X(2) OBJGRD(7)=(-1.0D0*X(3))+X(1) OBJGRD(8)=(-1.0D0*X(5))+X(3) OBJGRD(9)=X(4) RETURN END\\end{verbatim}")) (|coerce| (($ (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
-(-78 -3254)
+(-78 -3253)
((|constructor| (NIL "\\spadtype{Asp4} produces Fortran for Type 4 ASPs,{} which take an expression in \\spad{X}(1) .. \\spad{X}(NDIM) and produce a real function of the form:\\begin{verbatim} DOUBLE PRECISION FUNCTION FUNCTN(NDIM,X) DOUBLE PRECISION X(NDIM) INTEGER NDIM FUNCTN=(4.0D0*X(1)*X(3)**2*DEXP(2.0D0*X(1)*X(3)))/(X(4)**2+(2.0D0* &X(2)+2.0D0)*X(4)+X(2)**2+2.0D0*X(2)+1.0D0) RETURN END\\end{verbatim}")) (|coerce| (($ (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
-(-79 -3254)
+(-79 -3253)
((|constructor| (NIL "\\spadtype{Asp50} produces Fortran for Type 50 ASPs,{} needed for NAG routine \\axiomOpFrom{e04fdf}{e04Package},{} for example:\\begin{verbatim} SUBROUTINE LSFUN1(M,N,XC,FVECC) DOUBLE PRECISION FVECC(M),XC(N) INTEGER I,M,N FVECC(1)=((XC(1)-2.4D0)*XC(3)+(15.0D0*XC(1)-36.0D0)*XC(2)+1.0D0)/( &XC(3)+15.0D0*XC(2)) FVECC(2)=((XC(1)-2.8D0)*XC(3)+(7.0D0*XC(1)-19.6D0)*XC(2)+1.0D0)/(X &C(3)+7.0D0*XC(2)) FVECC(3)=((XC(1)-3.2D0)*XC(3)+(4.333333333333333D0*XC(1)-13.866666 &66666667D0)*XC(2)+1.0D0)/(XC(3)+4.333333333333333D0*XC(2)) FVECC(4)=((XC(1)-3.5D0)*XC(3)+(3.0D0*XC(1)-10.5D0)*XC(2)+1.0D0)/(X &C(3)+3.0D0*XC(2)) FVECC(5)=((XC(1)-3.9D0)*XC(3)+(2.2D0*XC(1)-8.579999999999998D0)*XC &(2)+1.0D0)/(XC(3)+2.2D0*XC(2)) FVECC(6)=((XC(1)-4.199999999999999D0)*XC(3)+(1.666666666666667D0*X &C(1)-7.0D0)*XC(2)+1.0D0)/(XC(3)+1.666666666666667D0*XC(2)) FVECC(7)=((XC(1)-4.5D0)*XC(3)+(1.285714285714286D0*XC(1)-5.7857142 &85714286D0)*XC(2)+1.0D0)/(XC(3)+1.285714285714286D0*XC(2)) FVECC(8)=((XC(1)-4.899999999999999D0)*XC(3)+(XC(1)-4.8999999999999 &99D0)*XC(2)+1.0D0)/(XC(3)+XC(2)) FVECC(9)=((XC(1)-4.699999999999999D0)*XC(3)+(XC(1)-4.6999999999999 &99D0)*XC(2)+1.285714285714286D0)/(XC(3)+XC(2)) FVECC(10)=((XC(1)-6.8D0)*XC(3)+(XC(1)-6.8D0)*XC(2)+1.6666666666666 &67D0)/(XC(3)+XC(2)) FVECC(11)=((XC(1)-8.299999999999999D0)*XC(3)+(XC(1)-8.299999999999 &999D0)*XC(2)+2.2D0)/(XC(3)+XC(2)) FVECC(12)=((XC(1)-10.6D0)*XC(3)+(XC(1)-10.6D0)*XC(2)+3.0D0)/(XC(3) &+XC(2)) FVECC(13)=((XC(1)-1.34D0)*XC(3)+(XC(1)-1.34D0)*XC(2)+4.33333333333 &3333D0)/(XC(3)+XC(2)) FVECC(14)=((XC(1)-2.1D0)*XC(3)+(XC(1)-2.1D0)*XC(2)+7.0D0)/(XC(3)+X &C(2)) FVECC(15)=((XC(1)-4.39D0)*XC(3)+(XC(1)-4.39D0)*XC(2)+15.0D0)/(XC(3 &)+XC(2)) END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE XC)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-80 -3254)
+(-80 -3253)
((|constructor| (NIL "\\spadtype{Asp55} produces Fortran for Type 55 ASPs,{} needed for NAG routines \\axiomOpFrom{e04dgf}{e04Package} and \\axiomOpFrom{e04ucf}{e04Package},{} for example:\\begin{verbatim} SUBROUTINE CONFUN(MODE,NCNLN,N,NROWJ,NEEDC,X,C,CJAC,NSTATE,IUSER &,USER) DOUBLE PRECISION C(NCNLN),X(N),CJAC(NROWJ,N),USER(*) INTEGER N,IUSER(*),NEEDC(NCNLN),NROWJ,MODE,NCNLN,NSTATE IF(NEEDC(1).GT.0)THEN C(1)=X(6)**2+X(1)**2 CJAC(1,1)=2.0D0*X(1) CJAC(1,2)=0.0D0 CJAC(1,3)=0.0D0 CJAC(1,4)=0.0D0 CJAC(1,5)=0.0D0 CJAC(1,6)=2.0D0*X(6) ENDIF IF(NEEDC(2).GT.0)THEN C(2)=X(2)**2+(-2.0D0*X(1)*X(2))+X(1)**2 CJAC(2,1)=(-2.0D0*X(2))+2.0D0*X(1) CJAC(2,2)=2.0D0*X(2)+(-2.0D0*X(1)) CJAC(2,3)=0.0D0 CJAC(2,4)=0.0D0 CJAC(2,5)=0.0D0 CJAC(2,6)=0.0D0 ENDIF IF(NEEDC(3).GT.0)THEN C(3)=X(3)**2+(-2.0D0*X(1)*X(3))+X(2)**2+X(1)**2 CJAC(3,1)=(-2.0D0*X(3))+2.0D0*X(1) CJAC(3,2)=2.0D0*X(2) CJAC(3,3)=2.0D0*X(3)+(-2.0D0*X(1)) CJAC(3,4)=0.0D0 CJAC(3,5)=0.0D0 CJAC(3,6)=0.0D0 ENDIF RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct|) (|construct| (QUOTE X)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-81 -3254)
+(-81 -3253)
((|constructor| (NIL "\\spadtype{Asp6} produces Fortran for Type 6 ASPs,{} needed for NAG routines \\axiomOpFrom{c05nbf}{c05Package},{} \\axiomOpFrom{c05ncf}{c05Package}. These represent vectors of functions of \\spad{X}(\\spad{i}) and look like:\\begin{verbatim} SUBROUTINE FCN(N,X,FVEC,IFLAG) DOUBLE PRECISION X(N),FVEC(N) INTEGER N,IFLAG FVEC(1)=(-2.0D0*X(2))+(-2.0D0*X(1)**2)+3.0D0*X(1)+1.0D0 FVEC(2)=(-2.0D0*X(3))+(-2.0D0*X(2)**2)+3.0D0*X(2)+(-1.0D0*X(1))+1. &0D0 FVEC(3)=(-2.0D0*X(4))+(-2.0D0*X(3)**2)+3.0D0*X(3)+(-1.0D0*X(2))+1. &0D0 FVEC(4)=(-2.0D0*X(5))+(-2.0D0*X(4)**2)+3.0D0*X(4)+(-1.0D0*X(3))+1. &0D0 FVEC(5)=(-2.0D0*X(6))+(-2.0D0*X(5)**2)+3.0D0*X(5)+(-1.0D0*X(4))+1. &0D0 FVEC(6)=(-2.0D0*X(7))+(-2.0D0*X(6)**2)+3.0D0*X(6)+(-1.0D0*X(5))+1. &0D0 FVEC(7)=(-2.0D0*X(8))+(-2.0D0*X(7)**2)+3.0D0*X(7)+(-1.0D0*X(6))+1. &0D0 FVEC(8)=(-2.0D0*X(9))+(-2.0D0*X(8)**2)+3.0D0*X(8)+(-1.0D0*X(7))+1. &0D0 FVEC(9)=(-2.0D0*X(9)**2)+3.0D0*X(9)+(-1.0D0*X(8))+1.0D0 RETURN END\\end{verbatim}")))
NIL
NIL
-(-82 -3254)
+(-82 -3253)
((|constructor| (NIL "\\spadtype{Asp73} produces Fortran for Type 73 ASPs,{} needed for NAG routine \\axiomOpFrom{d03eef}{d03Package},{} for example:\\begin{verbatim} SUBROUTINE PDEF(X,Y,ALPHA,BETA,GAMMA,DELTA,EPSOLN,PHI,PSI) DOUBLE PRECISION ALPHA,EPSOLN,PHI,X,Y,BETA,DELTA,GAMMA,PSI ALPHA=DSIN(X) BETA=Y GAMMA=X*Y DELTA=DCOS(X)*DSIN(Y) EPSOLN=Y+X PHI=X PSI=Y RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE X) (QUOTE Y)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-83 -3254)
+(-83 -3253)
((|constructor| (NIL "\\spadtype{Asp74} produces Fortran for Type 74 ASPs,{} needed for NAG routine \\axiomOpFrom{d03eef}{d03Package},{} for example:\\begin{verbatim} SUBROUTINE BNDY(X,Y,A,B,C,IBND) DOUBLE PRECISION A,B,C,X,Y INTEGER IBND IF(IBND.EQ.0)THEN A=0.0D0 B=1.0D0 C=-1.0D0*DSIN(X) ELSEIF(IBND.EQ.1)THEN A=1.0D0 B=0.0D0 C=DSIN(X)*DSIN(Y) ELSEIF(IBND.EQ.2)THEN A=1.0D0 B=0.0D0 C=DSIN(X)*DSIN(Y) ELSEIF(IBND.EQ.3)THEN A=0.0D0 B=1.0D0 C=-1.0D0*DSIN(Y) ENDIF END\\end{verbatim}")) (|coerce| (($ (|Matrix| (|FortranExpression| (|construct| (QUOTE X) (QUOTE Y)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-84 -3254)
+(-84 -3253)
((|constructor| (NIL "\\spadtype{Asp77} produces Fortran for Type 77 ASPs,{} needed for NAG routine \\axiomOpFrom{d02gbf}{d02Package},{} for example:\\begin{verbatim} SUBROUTINE FCNF(X,F) DOUBLE PRECISION X DOUBLE PRECISION F(2,2) F(1,1)=0.0D0 F(1,2)=1.0D0 F(2,1)=0.0D0 F(2,2)=-10.0D0 RETURN END\\end{verbatim}")) (|coerce| (($ (|Matrix| (|FortranExpression| (|construct| (QUOTE X)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-85 -3254)
+(-85 -3253)
((|constructor| (NIL "\\spadtype{Asp78} produces Fortran for Type 78 ASPs,{} needed for NAG routine \\axiomOpFrom{d02gbf}{d02Package},{} for example:\\begin{verbatim} SUBROUTINE FCNG(X,G) DOUBLE PRECISION G(*),X G(1)=0.0D0 G(2)=0.0D0 END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE X)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-86 -3254)
+(-86 -3253)
((|constructor| (NIL "\\spadtype{Asp7} produces Fortran for Type 7 ASPs,{} needed for NAG routines \\axiomOpFrom{d02bbf}{d02Package},{} \\axiomOpFrom{d02gaf}{d02Package}. These represent a vector of functions of the scalar \\spad{X} and the array \\spad{Z},{} and look like:\\begin{verbatim} SUBROUTINE FCN(X,Z,F) DOUBLE PRECISION F(*),X,Z(*) F(1)=DTAN(Z(3)) F(2)=((-0.03199999999999999D0*DCOS(Z(3))*DTAN(Z(3)))+(-0.02D0*Z(2) &**2))/(Z(2)*DCOS(Z(3))) F(3)=-0.03199999999999999D0/(X*Z(2)**2) RETURN END\\end{verbatim}")) (|coerce| (($ (|Vector| (|FortranExpression| (|construct| (QUOTE X)) (|construct| (QUOTE Y)) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-87 -3254)
+(-87 -3253)
((|constructor| (NIL "\\spadtype{Asp80} produces Fortran for Type 80 ASPs,{} needed for NAG routine \\axiomOpFrom{d02kef}{d02Package},{} for example:\\begin{verbatim} SUBROUTINE BDYVAL(XL,XR,ELAM,YL,YR) DOUBLE PRECISION ELAM,XL,YL(3),XR,YR(3) YL(1)=XL YL(2)=2.0D0 YR(1)=1.0D0 YR(2)=-1.0D0*DSQRT(XR+(-1.0D0*ELAM)) RETURN END\\end{verbatim}")) (|coerce| (($ (|Matrix| (|FortranExpression| (|construct| (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (|construct|) (|MachineFloat|)))) "\\spad{coerce(f)} takes objects from the appropriate instantiation of \\spadtype{FortranExpression} and turns them into an ASP.")))
NIL
NIL
-(-88 -3254)
+(-88 -3253)
((|constructor| (NIL "\\spadtype{Asp8} produces Fortran for Type 8 ASPs,{} needed for NAG routine \\axiomOpFrom{d02bbf}{d02Package}. This ASP prints intermediate values of the computed solution of an ODE and might look like:\\begin{verbatim} SUBROUTINE OUTPUT(XSOL,Y,COUNT,M,N,RESULT,FORWRD) DOUBLE PRECISION Y(N),RESULT(M,N),XSOL INTEGER M,N,COUNT LOGICAL FORWRD DOUBLE PRECISION X02ALF,POINTS(8) EXTERNAL X02ALF INTEGER I POINTS(1)=1.0D0 POINTS(2)=2.0D0 POINTS(3)=3.0D0 POINTS(4)=4.0D0 POINTS(5)=5.0D0 POINTS(6)=6.0D0 POINTS(7)=7.0D0 POINTS(8)=8.0D0 COUNT=COUNT+1 DO 25001 I=1,N RESULT(COUNT,I)=Y(I)25001 CONTINUE IF(COUNT.EQ.M)THEN IF(FORWRD)THEN XSOL=X02ALF() ELSE XSOL=-X02ALF() ENDIF ELSE XSOL=POINTS(COUNT) ENDIF END\\end{verbatim}")))
NIL
NIL
-(-89 -3254)
+(-89 -3253)
((|constructor| (NIL "\\spadtype{Asp9} produces Fortran for Type 9 ASPs,{} needed for NAG routines \\axiomOpFrom{d02bhf}{d02Package},{} \\axiomOpFrom{d02cjf}{d02Package},{} \\axiomOpFrom{d02ejf}{d02Package}. These ASPs represent a function of a scalar \\spad{X} and a vector \\spad{Y},{} for example:\\begin{verbatim} DOUBLE PRECISION FUNCTION G(X,Y) DOUBLE PRECISION X,Y(*) G=X+Y(1) RETURN END\\end{verbatim} If the user provides a constant value for \\spad{G},{} then extra information is added via COMMON blocks used by certain routines. This specifies that the value returned by \\spad{G} in this case is to be ignored.")) (|coerce| (($ (|FortranExpression| (|construct| (QUOTE X)) (|construct| (QUOTE Y)) (|MachineFloat|))) "\\spad{coerce(f)} takes an object from the appropriate instantiation of \\spadtype{FortranExpression} and turns it into an ASP.")))
NIL
NIL
@@ -294,7 +294,7 @@ NIL
((|HasCategory| |#1| (QUOTE (-362))))
(-91 S)
((|constructor| (NIL "A stack represented as a flexible array.")) (|arrayStack| (($ (|List| |#1|)) "\\spad{arrayStack([x,{}y,{}...,{}z])} creates an array stack with first (top) element \\spad{x},{} second element \\spad{y},{}...,{}and last element \\spad{z}.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-92 S)
((|constructor| (NIL "This is the category of Spad abstract syntax trees.")))
@@ -318,15 +318,15 @@ NIL
NIL
(-97)
((|constructor| (NIL "\\axiomType{AttributeButtons} implements a database and associated adjustment mechanisms for a set of attributes. \\blankline For ODEs these attributes are \"stiffness\",{} \"stability\" (\\spadignore{i.e.} how much affect the cosine or sine component of the solution has on the stability of the result),{} \"accuracy\" and \"expense\" (\\spadignore{i.e.} how expensive is the evaluation of the ODE). All these have bearing on the cost of calculating the solution given that reducing the step-length to achieve greater accuracy requires considerable number of evaluations and calculations. \\blankline The effect of each of these attributes can be altered by increasing or decreasing the button value. \\blankline For Integration there is a button for increasing and decreasing the preset number of function evaluations for each method. This is automatically used by ANNA when a method fails due to insufficient workspace or where the limit of function evaluations has been reached before the required accuracy is achieved. \\blankline")) (|setButtonValue| (((|Float|) (|String|) (|String|) (|Float|)) "\\axiom{setButtonValue(attributeName,{}routineName,{}\\spad{n})} sets the value of the button of attribute \\spad{attributeName} to routine \\spad{routineName} to \\spad{n}. \\spad{n} must be in the range [0..1]. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".") (((|Float|) (|String|) (|Float|)) "\\axiom{setButtonValue(attributeName,{}\\spad{n})} sets the value of all buttons of attribute \\spad{attributeName} to \\spad{n}. \\spad{n} must be in the range [0..1]. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".")) (|setAttributeButtonStep| (((|Float|) (|Float|)) "\\axiom{setAttributeButtonStep(\\spad{n})} sets the value of the steps for increasing and decreasing the button values. \\axiom{\\spad{n}} must be greater than 0 and less than 1. The preset value is 0.5.")) (|resetAttributeButtons| (((|Void|)) "\\axiom{resetAttributeButtons()} resets the Attribute buttons to a neutral level.")) (|getButtonValue| (((|Float|) (|String|) (|String|)) "\\axiom{getButtonValue(routineName,{}attributeName)} returns the current value for the effect of the attribute \\axiom{attributeName} with routine \\axiom{routineName}. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".")) (|decrease| (((|Float|) (|String|)) "\\axiom{decrease(attributeName)} decreases the value for the effect of the attribute \\axiom{attributeName} with all routines. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".") (((|Float|) (|String|) (|String|)) "\\axiom{decrease(routineName,{}attributeName)} decreases the value for the effect of the attribute \\axiom{attributeName} with routine \\axiom{routineName}. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".")) (|increase| (((|Float|) (|String|)) "\\axiom{increase(attributeName)} increases the value for the effect of the attribute \\axiom{attributeName} with all routines. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".") (((|Float|) (|String|) (|String|)) "\\axiom{increase(routineName,{}attributeName)} increases the value for the effect of the attribute \\axiom{attributeName} with routine \\axiom{routineName}. \\blankline \\axiom{attributeName} should be one of the values \"stiffness\",{} \"stability\",{} \"accuracy\",{} \"expense\" or \"functionEvaluations\".")))
-((-4402 . T))
+((-4403 . T))
NIL
(-98)
((|constructor| (NIL "This category exports the attributes in the AXIOM Library")) (|canonical| ((|attribute|) "\\spad{canonical} is \\spad{true} if and only if distinct elements have distinct data structures. For example,{} a domain of mathematical objects which has the \\spad{canonical} attribute means that two objects are mathematically equal if and only if their data structures are equal.")) (|multiplicativeValuation| ((|attribute|) "\\spad{multiplicativeValuation} implies \\spad{euclideanSize(a*b)=euclideanSize(a)*euclideanSize(b)}.")) (|additiveValuation| ((|attribute|) "\\spad{additiveValuation} implies \\spad{euclideanSize(a*b)=euclideanSize(a)+euclideanSize(b)}.")) (|noetherian| ((|attribute|) "\\spad{noetherian} is \\spad{true} if all of its ideals are finitely generated.")) (|central| ((|attribute|) "\\spad{central} is \\spad{true} if,{} given an algebra over a ring \\spad{R},{} the image of \\spad{R} is the center of the algebra,{} \\spadignore{i.e.} the set of members of the algebra which commute with all others is precisely the image of \\spad{R} in the algebra.")) (|partiallyOrderedSet| ((|attribute|) "\\spad{partiallyOrderedSet} is \\spad{true} if a set with \\spadop{<} which is transitive,{} but \\spad{not(a < b or a = b)} does not necessarily imply \\spad{b<a}.")) (|arbitraryPrecision| ((|attribute|) "\\spad{arbitraryPrecision} means the user can set the precision for subsequent calculations.")) (|canonicalsClosed| ((|attribute|) "\\spad{canonicalsClosed} is \\spad{true} if \\spad{unitCanonical(a)*unitCanonical(b) = unitCanonical(a*b)}.")) (|canonicalUnitNormal| ((|attribute|) "\\spad{canonicalUnitNormal} is \\spad{true} if we can choose a canonical representative for each class of associate elements,{} that is \\spad{associates?(a,{}b)} returns \\spad{true} if and only if \\spad{unitCanonical(a) = unitCanonical(b)}.")) (|noZeroDivisors| ((|attribute|) "\\spad{noZeroDivisors} is \\spad{true} if \\spad{x * y \\~~= 0} implies both \\spad{x} and \\spad{y} are non-zero.")) (|rightUnitary| ((|attribute|) "\\spad{rightUnitary} is \\spad{true} if \\spad{x * 1 = x} for all \\spad{x}.")) (|leftUnitary| ((|attribute|) "\\spad{leftUnitary} is \\spad{true} if \\spad{1 * x = x} for all \\spad{x}.")) (|unitsKnown| ((|attribute|) "\\spad{unitsKnown} is \\spad{true} if a monoid (a multiplicative semigroup with a 1) has \\spad{unitsKnown} means that the operation \\spadfun{recip} can only return \"failed\" if its argument is not a unit.")) (|shallowlyMutable| ((|attribute|) "\\spad{shallowlyMutable} is \\spad{true} if its values have immediate components that are updateable (mutable). Note: the properties of any component domain are irrevelant to the \\spad{shallowlyMutable} proper.")) (|commutative| ((|attribute| "*") "\\spad{commutative(\"*\")} is \\spad{true} if it has an operation \\spad{\"*\": (D,{}D) -> D} which is commutative.")) (|finiteAggregate| ((|attribute|) "\\spad{finiteAggregate} is \\spad{true} if it is an aggregate with a finite number of elements.")))
-((-4402 . T) ((-4404 "*") . T) (-4403 . T) (-4399 . T) (-4397 . T) (-4396 . T) (-4395 . T) (-4400 . T) (-4394 . T) (-4393 . T) (-4392 . T) (-4391 . T) (-4390 . T) (-4398 . T) (-4401 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4389 . T))
+((-4403 . T) ((-4405 "*") . T) (-4404 . T) (-4400 . T) (-4398 . T) (-4397 . T) (-4396 . T) (-4401 . T) (-4395 . T) (-4394 . T) (-4393 . T) (-4392 . T) (-4391 . T) (-4399 . T) (-4402 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4390 . T))
NIL
(-99 R)
((|constructor| (NIL "Automorphism \\spad{R} is the multiplicative group of automorphisms of \\spad{R}.")) (|morphism| (($ (|Mapping| |#1| |#1| (|Integer|))) "\\spad{morphism(f)} returns the morphism given by \\spad{f^n(x) = f(x,{}n)}.") (($ (|Mapping| |#1| |#1|) (|Mapping| |#1| |#1|)) "\\spad{morphism(f,{} g)} returns the invertible morphism given by \\spad{f},{} where \\spad{g} is the inverse of \\spad{f}..") (($ (|Mapping| |#1| |#1|)) "\\spad{morphism(f)} returns the non-invertible morphism given by \\spad{f}.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-100 R UP)
((|constructor| (NIL "This package provides balanced factorisations of polynomials.")) (|balancedFactorisation| (((|Factored| |#2|) |#2| (|List| |#2|)) "\\spad{balancedFactorisation(a,{} [b1,{}...,{}bn])} returns a factorisation \\spad{a = p1^e1 ... pm^em} such that each \\spad{pi} is balanced with respect to \\spad{[b1,{}...,{}bm]}.") (((|Factored| |#2|) |#2| |#2|) "\\spad{balancedFactorisation(a,{} b)} returns a factorisation \\spad{a = p1^e1 ... pm^em} such that each \\spad{\\spad{pi}} is balanced with respect to \\spad{b}.")))
@@ -342,15 +342,15 @@ NIL
NIL
(-103 S)
((|constructor| (NIL "\\spadtype{BalancedBinaryTree(S)} is the domain of balanced binary trees (bbtree). A balanced binary tree of \\spad{2**k} leaves,{} for some \\spad{k > 0},{} is symmetric,{} that is,{} the left and right subtree of each interior node have identical shape. In general,{} the left and right subtree of a given node can differ by at most leaf node.")) (|mapDown!| (($ $ |#1| (|Mapping| (|List| |#1|) |#1| |#1| |#1|)) "\\spad{mapDown!(t,{}p,{}f)} returns \\spad{t} after traversing \\spad{t} in \"preorder\" (node then left then right) fashion replacing the successive interior nodes as follows. Let \\spad{l} and \\spad{r} denote the left and right subtrees of \\spad{t}. The root value \\spad{x} of \\spad{t} is replaced by \\spad{p}. Then \\spad{f}(value \\spad{l},{} value \\spad{r},{} \\spad{p}),{} where \\spad{l} and \\spad{r} denote the left and right subtrees of \\spad{t},{} is evaluated producing two values \\spad{pl} and \\spad{pr}. Then \\spad{mapDown!(l,{}pl,{}f)} and \\spad{mapDown!(l,{}pr,{}f)} are evaluated.") (($ $ |#1| (|Mapping| |#1| |#1| |#1|)) "\\spad{mapDown!(t,{}p,{}f)} returns \\spad{t} after traversing \\spad{t} in \"preorder\" (node then left then right) fashion replacing the successive interior nodes as follows. The root value \\spad{x} is replaced by \\spad{q} \\spad{:=} \\spad{f}(\\spad{p},{}\\spad{x}). The mapDown!(\\spad{l},{}\\spad{q},{}\\spad{f}) and mapDown!(\\spad{r},{}\\spad{q},{}\\spad{f}) are evaluated for the left and right subtrees \\spad{l} and \\spad{r} of \\spad{t}.")) (|mapUp!| (($ $ $ (|Mapping| |#1| |#1| |#1| |#1| |#1|)) "\\spad{mapUp!(t,{}t1,{}f)} traverses \\spad{t} in an \"endorder\" (left then right then node) fashion returning \\spad{t} with the value at each successive interior node of \\spad{t} replaced by \\spad{f}(\\spad{l},{}\\spad{r},{}\\spad{l1},{}\\spad{r1}) where \\spad{l} and \\spad{r} are the values at the immediate left and right nodes. Values \\spad{l1} and \\spad{r1} are values at the corresponding nodes of a balanced binary tree \\spad{t1},{} of identical shape at \\spad{t}.") ((|#1| $ (|Mapping| |#1| |#1| |#1|)) "\\spad{mapUp!(t,{}f)} traverses balanced binary tree \\spad{t} in an \"endorder\" (left then right then node) fashion returning \\spad{t} with the value at each successive interior node of \\spad{t} replaced by \\spad{f}(\\spad{l},{}\\spad{r}) where \\spad{l} and \\spad{r} are the values at the immediate left and right nodes.")) (|setleaves!| (($ $ (|List| |#1|)) "\\spad{setleaves!(t,{} ls)} sets the leaves of \\spad{t} in left-to-right order to the elements of \\spad{ls}.")) (|balancedBinaryTree| (($ (|NonNegativeInteger|) |#1|) "\\spad{balancedBinaryTree(n,{} s)} creates a balanced binary tree with \\spad{n} nodes each with value \\spad{s}.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-104 R UP M |Row| |Col|)
((|constructor| (NIL "\\spadtype{BezoutMatrix} contains functions for computing resultants and discriminants using Bezout matrices.")) (|bezoutDiscriminant| ((|#1| |#2|) "\\spad{bezoutDiscriminant(p)} computes the discriminant of a polynomial \\spad{p} by computing the determinant of a Bezout matrix.")) (|bezoutResultant| ((|#1| |#2| |#2|) "\\spad{bezoutResultant(p,{}q)} computes the resultant of the two polynomials \\spad{p} and \\spad{q} by computing the determinant of a Bezout matrix.")) (|bezoutMatrix| ((|#3| |#2| |#2|) "\\spad{bezoutMatrix(p,{}q)} returns the Bezout matrix for the two polynomials \\spad{p} and \\spad{q}.")) (|sylvesterMatrix| ((|#3| |#2| |#2|) "\\spad{sylvesterMatrix(p,{}q)} returns the Sylvester matrix for the two polynomials \\spad{p} and \\spad{q}.")))
NIL
-((|HasAttribute| |#1| (QUOTE (-4404 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4405 "*"))))
(-105)
((|bfEntry| (((|Record| (|:| |zeros| (|Stream| (|DoubleFloat|))) (|:| |ones| (|Stream| (|DoubleFloat|))) (|:| |singularities| (|Stream| (|DoubleFloat|)))) (|Symbol|)) "\\spad{bfEntry(k)} returns the entry in the \\axiomType{BasicFunctions} table corresponding to \\spad{k}")) (|bfKeys| (((|List| (|Symbol|))) "\\spad{bfKeys()} returns the names of each function in the \\axiomType{BasicFunctions} table")))
-((-4402 . T))
+((-4403 . T))
NIL
(-106 A S)
((|constructor| (NIL "A bag aggregate is an aggregate for which one can insert and extract objects,{} and where the order in which objects are inserted determines the order of extraction. Examples of bags are stacks,{} queues,{} and dequeues.")) (|inspect| ((|#2| $) "\\spad{inspect(u)} returns an (random) element from a bag.")) (|insert!| (($ |#2| $) "\\spad{insert!(x,{}u)} inserts item \\spad{x} into bag \\spad{u}.")) (|extract!| ((|#2| $) "\\spad{extract!(u)} destructively removes a (random) item from bag \\spad{u}.")) (|bag| (($ (|List| |#2|)) "\\spad{bag([x,{}y,{}...,{}z])} creates a bag with elements \\spad{x},{}\\spad{y},{}...,{}\\spad{z}.")) (|shallowlyMutable| ((|attribute|) "shallowlyMutable means that elements of bags may be destructively changed.")))
@@ -358,11 +358,11 @@ NIL
NIL
(-107 S)
((|constructor| (NIL "A bag aggregate is an aggregate for which one can insert and extract objects,{} and where the order in which objects are inserted determines the order of extraction. Examples of bags are stacks,{} queues,{} and dequeues.")) (|inspect| ((|#1| $) "\\spad{inspect(u)} returns an (random) element from a bag.")) (|insert!| (($ |#1| $) "\\spad{insert!(x,{}u)} inserts item \\spad{x} into bag \\spad{u}.")) (|extract!| ((|#1| $) "\\spad{extract!(u)} destructively removes a (random) item from bag \\spad{u}.")) (|bag| (($ (|List| |#1|)) "\\spad{bag([x,{}y,{}...,{}z])} creates a bag with elements \\spad{x},{}\\spad{y},{}...,{}\\spad{z}.")) (|shallowlyMutable| ((|attribute|) "shallowlyMutable means that elements of bags may be destructively changed.")))
-((-4403 . T))
+((-4404 . T))
NIL
(-108)
((|constructor| (NIL "This domain allows rational numbers to be presented as repeating binary expansions.")) (|binary| (($ (|Fraction| (|Integer|))) "\\spad{binary(r)} converts a rational number to a binary expansion.")) (|fractionPart| (((|Fraction| (|Integer|)) $) "\\spad{fractionPart(b)} returns the fractional part of a binary expansion.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| (-562) (QUOTE (-904))) (|HasCategory| (-562) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| (-562) (QUOTE (-144))) (|HasCategory| (-562) (QUOTE (-146))) (|HasCategory| (-562) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-562) (QUOTE (-1017))) (|HasCategory| (-562) (QUOTE (-815))) (-4037 (|HasCategory| (-562) (QUOTE (-815))) (|HasCategory| (-562) (QUOTE (-845)))) (|HasCategory| (-562) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| (-562) (QUOTE (-1143))) (|HasCategory| (-562) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| (-562) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| (-562) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| (-562) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| (-562) (QUOTE (-232))) (|HasCategory| (-562) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-562) (LIST (QUOTE -513) (QUOTE (-1168)) (QUOTE (-562)))) (|HasCategory| (-562) (LIST (QUOTE -308) (QUOTE (-562)))) (|HasCategory| (-562) (LIST (QUOTE -285) (QUOTE (-562)) (QUOTE (-562)))) (|HasCategory| (-562) (QUOTE (-306))) (|HasCategory| (-562) (QUOTE (-544))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| (-562) (LIST (QUOTE -635) (QUOTE (-562)))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-562) (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-562) (QUOTE (-904)))) (|HasCategory| (-562) (QUOTE (-144)))))
(-109)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 18,{} 2008. A `Binding' is a name asosciated with a collection of properties.")) (|binding| (($ (|Symbol|) (|List| (|Property|))) "\\spad{binding(n,{}props)} constructs a binding with name \\spad{`n'} and property list `props'.")) (|properties| (((|List| (|Property|)) $) "\\spad{properties(b)} returns the properties associated with binding \\spad{b}.")) (|name| (((|Symbol|) $) "\\spad{name(b)} returns the name of binding \\spad{b}")))
@@ -370,11 +370,11 @@ NIL
NIL
(-110)
((|constructor| (NIL "\\spadtype{Bits} provides logical functions for Indexed Bits.")) (|bits| (($ (|NonNegativeInteger|) (|Boolean|)) "\\spad{bits(n,{}b)} creates bits with \\spad{n} values of \\spad{b}")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-12 (|HasCategory| (-112) (QUOTE (-1092))) (|HasCategory| (-112) (LIST (QUOTE -308) (QUOTE (-112))))) (|HasCategory| (-112) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-112) (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| (-112) (QUOTE (-1092))) (|HasCategory| (-112) (LIST (QUOTE -609) (QUOTE (-857)))))
(-111 R S)
((|constructor| (NIL "A \\spadtype{BiModule} is both a left and right module with respect to potentially different rings. \\blankline")) (|rightUnitary| ((|attribute|) "\\spad{x * 1 = x}")) (|leftUnitary| ((|attribute|) "\\spad{1 * x = x}")))
-((-4397 . T) (-4396 . T))
+((-4398 . T) (-4397 . T))
NIL
(-112)
((|constructor| (NIL "\\indented{1}{\\spadtype{Boolean} is the elementary logic with 2 values:} \\spad{true} and \\spad{false}")) (|test| (($ $) "\\spad{test(b)} returns \\spad{b} and is provided for compatibility with the new compiler.")) (|nor| (($ $ $) "\\spad{nor(a,{}b)} returns the logical negation of \\spad{a} or \\spad{b}.")) (|nand| (($ $ $) "\\spad{nand(a,{}b)} returns the logical negation of \\spad{a} and \\spad{b}.")) (|xor| (($ $ $) "\\spad{xor(a,{}b)} returns the logical exclusive {\\em or} of Boolean \\spad{a} and \\spad{b}.")) (|false| (($) "\\spad{false} is a logical constant.")) (|true| (($) "\\spad{true} is a logical constant.")))
@@ -388,22 +388,22 @@ NIL
((|constructor| (NIL "A basic operator is an object that can be applied to a list of arguments from a set,{} the result being a kernel over that set.")) (|setProperties| (($ $ (|AssociationList| (|String|) (|None|))) "\\spad{setProperties(op,{} l)} sets the property list of \\spad{op} to \\spad{l}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|setProperty| (($ $ (|String|) (|None|)) "\\spad{setProperty(op,{} s,{} v)} attaches property \\spad{s} to \\spad{op},{} and sets its value to \\spad{v}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|property| (((|Union| (|None|) "failed") $ (|String|)) "\\spad{property(op,{} s)} returns the value of property \\spad{s} if it is attached to \\spad{op},{} and \"failed\" otherwise.")) (|deleteProperty!| (($ $ (|String|)) "\\spad{deleteProperty!(op,{} s)} unattaches property \\spad{s} from \\spad{op}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|assert| (($ $ (|String|)) "\\spad{assert(op,{} s)} attaches property \\spad{s} to \\spad{op}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|has?| (((|Boolean|) $ (|String|)) "\\spad{has?(op,{} s)} tests if property \\spad{s} is attached to \\spad{op}.")) (|is?| (((|Boolean|) $ (|Symbol|)) "\\spad{is?(op,{} s)} tests if the name of \\spad{op} is \\spad{s}.")) (|input| (((|Union| (|Mapping| (|InputForm|) (|List| (|InputForm|))) "failed") $) "\\spad{input(op)} returns the \"\\%input\" property of \\spad{op} if it has one attached,{} \"failed\" otherwise.") (($ $ (|Mapping| (|InputForm|) (|List| (|InputForm|)))) "\\spad{input(op,{} foo)} attaches foo as the \"\\%input\" property of \\spad{op}. If \\spad{op} has a \"\\%input\" property \\spad{f},{} then \\spad{op(a1,{}...,{}an)} gets converted to InputForm as \\spad{f(a1,{}...,{}an)}.")) (|display| (($ $ (|Mapping| (|OutputForm|) (|OutputForm|))) "\\spad{display(op,{} foo)} attaches foo as the \"\\%display\" property of \\spad{op}. If \\spad{op} has a \"\\%display\" property \\spad{f},{} then \\spad{op(a)} gets converted to OutputForm as \\spad{f(a)}. Argument \\spad{op} must be unary.") (($ $ (|Mapping| (|OutputForm|) (|List| (|OutputForm|)))) "\\spad{display(op,{} foo)} attaches foo as the \"\\%display\" property of \\spad{op}. If \\spad{op} has a \"\\%display\" property \\spad{f},{} then \\spad{op(a1,{}...,{}an)} gets converted to OutputForm as \\spad{f(a1,{}...,{}an)}.") (((|Union| (|Mapping| (|OutputForm|) (|List| (|OutputForm|))) "failed") $) "\\spad{display(op)} returns the \"\\%display\" property of \\spad{op} if it has one attached,{} and \"failed\" otherwise.")) (|comparison| (($ $ (|Mapping| (|Boolean|) $ $)) "\\spad{comparison(op,{} foo?)} attaches foo? as the \"\\%less?\" property to \\spad{op}. If op1 and op2 have the same name,{} and one of them has a \"\\%less?\" property \\spad{f},{} then \\spad{f(op1,{} op2)} is called to decide whether \\spad{op1 < op2}.")) (|equality| (($ $ (|Mapping| (|Boolean|) $ $)) "\\spad{equality(op,{} foo?)} attaches foo? as the \"\\%equal?\" property to \\spad{op}. If op1 and op2 have the same name,{} and one of them has an \"\\%equal?\" property \\spad{f},{} then \\spad{f(op1,{} op2)} is called to decide whether op1 and op2 should be considered equal.")) (|weight| (($ $ (|NonNegativeInteger|)) "\\spad{weight(op,{} n)} attaches the weight \\spad{n} to \\spad{op}.") (((|NonNegativeInteger|) $) "\\spad{weight(op)} returns the weight attached to \\spad{op}.")) (|nary?| (((|Boolean|) $) "\\spad{nary?(op)} tests if \\spad{op} has arbitrary arity.")) (|unary?| (((|Boolean|) $) "\\spad{unary?(op)} tests if \\spad{op} is unary.")) (|nullary?| (((|Boolean|) $) "\\spad{nullary?(op)} tests if \\spad{op} is nullary.")) (|arity| (((|Union| (|NonNegativeInteger|) "failed") $) "\\spad{arity(op)} returns \\spad{n} if \\spad{op} is \\spad{n}-ary,{} and \"failed\" if \\spad{op} has arbitrary arity.")) (|operator| (($ (|Symbol|) (|NonNegativeInteger|)) "\\spad{operator(f,{} n)} makes \\spad{f} into an \\spad{n}-ary operator.") (($ (|Symbol|)) "\\spad{operator(f)} makes \\spad{f} into an operator with arbitrary arity.")) (|copy| (($ $) "\\spad{copy(op)} returns a copy of \\spad{op}.")) (|properties| (((|AssociationList| (|String|) (|None|)) $) "\\spad{properties(op)} returns the list of all the properties currently attached to \\spad{op}.")) (|name| (((|Symbol|) $) "\\spad{name(op)} returns the name of \\spad{op}.")))
NIL
NIL
-(-115 -3197 UP)
+(-115 -3196 UP)
((|constructor| (NIL "\\spadtype{BoundIntegerRoots} provides functions to find lower bounds on the integer roots of a polynomial.")) (|integerBound| (((|Integer|) |#2|) "\\spad{integerBound(p)} returns a lower bound on the negative integer roots of \\spad{p},{} and 0 if \\spad{p} has no negative integer roots.")))
NIL
NIL
(-116 |p|)
((|constructor| (NIL "Stream-based implementation of \\spad{Zp:} \\spad{p}-adic numbers are represented as sum(\\spad{i} = 0..,{} a[\\spad{i}] * p^i),{} where the a[\\spad{i}] lie in -(\\spad{p} - 1)\\spad{/2},{}...,{}(\\spad{p} - 1)\\spad{/2}.")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-117 |p|)
((|constructor| (NIL "Stream-based implementation of \\spad{Qp:} numbers are represented as sum(\\spad{i} = \\spad{k}..,{} a[\\spad{i}] * p^i),{} where the a[\\spad{i}] lie in -(\\spad{p} - 1)\\spad{/2},{}...,{}(\\spad{p} - 1)\\spad{/2}.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| (-116 |#1|) (QUOTE (-904))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| (-116 |#1|) (QUOTE (-144))) (|HasCategory| (-116 |#1|) (QUOTE (-146))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-116 |#1|) (QUOTE (-1017))) (|HasCategory| (-116 |#1|) (QUOTE (-815))) (-4037 (|HasCategory| (-116 |#1|) (QUOTE (-815))) (|HasCategory| (-116 |#1|) (QUOTE (-845)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| (-116 |#1|) (QUOTE (-1143))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| (-116 |#1|) (QUOTE (-232))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -513) (QUOTE (-1168)) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -308) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -285) (LIST (QUOTE -116) (|devaluate| |#1|)) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (QUOTE (-306))) (|HasCategory| (-116 |#1|) (QUOTE (-544))) (|HasCategory| (-116 |#1|) (QUOTE (-845))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-116 |#1|) (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-116 |#1|) (QUOTE (-904)))) (|HasCategory| (-116 |#1|) (QUOTE (-144)))))
(-118 A S)
((|constructor| (NIL "A binary-recursive aggregate has 0,{} 1 or 2 children and serves as a model for a binary tree or a doubly-linked aggregate structure")) (|setright!| (($ $ $) "\\spad{setright!(a,{}x)} sets the right child of \\spad{t} to be \\spad{x}.")) (|setleft!| (($ $ $) "\\spad{setleft!(a,{}b)} sets the left child of \\axiom{a} to be \\spad{b}.")) (|setelt| (($ $ "right" $) "\\spad{setelt(a,{}\"right\",{}b)} (also written \\axiom{\\spad{b} . right \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setright!(a,{}\\spad{b})}.") (($ $ "left" $) "\\spad{setelt(a,{}\"left\",{}b)} (also written \\axiom{a . left \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setleft!(a,{}\\spad{b})}.")) (|right| (($ $) "\\spad{right(a)} returns the right child.")) (|elt| (($ $ "right") "\\spad{elt(a,{}\"right\")} (also written: \\axiom{a . right}) is equivalent to \\axiom{right(a)}.") (($ $ "left") "\\spad{elt(u,{}\"left\")} (also written: \\axiom{a . left}) is equivalent to \\axiom{left(a)}.")) (|left| (($ $) "\\spad{left(u)} returns the left child.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4403)))
+((|HasAttribute| |#1| (QUOTE -4404)))
(-119 S)
((|constructor| (NIL "A binary-recursive aggregate has 0,{} 1 or 2 children and serves as a model for a binary tree or a doubly-linked aggregate structure")) (|setright!| (($ $ $) "\\spad{setright!(a,{}x)} sets the right child of \\spad{t} to be \\spad{x}.")) (|setleft!| (($ $ $) "\\spad{setleft!(a,{}b)} sets the left child of \\axiom{a} to be \\spad{b}.")) (|setelt| (($ $ "right" $) "\\spad{setelt(a,{}\"right\",{}b)} (also written \\axiom{\\spad{b} . right \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setright!(a,{}\\spad{b})}.") (($ $ "left" $) "\\spad{setelt(a,{}\"left\",{}b)} (also written \\axiom{a . left \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setleft!(a,{}\\spad{b})}.")) (|right| (($ $) "\\spad{right(a)} returns the right child.")) (|elt| (($ $ "right") "\\spad{elt(a,{}\"right\")} (also written: \\axiom{a . right}) is equivalent to \\axiom{right(a)}.") (($ $ "left") "\\spad{elt(u,{}\"left\")} (also written: \\axiom{a . left}) is equivalent to \\axiom{left(a)}.")) (|left| (($ $) "\\spad{left(u)} returns the left child.")))
NIL
@@ -414,7 +414,7 @@ NIL
NIL
(-121 S)
((|constructor| (NIL "BinarySearchTree(\\spad{S}) is the domain of a binary trees where elements are ordered across the tree. A binary search tree is either empty or has a value which is an \\spad{S},{} and a right and left which are both BinaryTree(\\spad{S}) Elements are ordered across the tree.")) (|split| (((|Record| (|:| |less| $) (|:| |greater| $)) |#1| $) "\\spad{split(x,{}b)} splits binary tree \\spad{b} into two trees,{} one with elements greater than \\spad{x},{} the other with elements less than \\spad{x}.")) (|insertRoot!| (($ |#1| $) "\\spad{insertRoot!(x,{}b)} inserts element \\spad{x} as a root of binary search tree \\spad{b}.")) (|insert!| (($ |#1| $) "\\spad{insert!(x,{}b)} inserts element \\spad{x} as leaves into binary search tree \\spad{b}.")) (|binarySearchTree| (($ (|List| |#1|)) "\\spad{binarySearchTree(l)} \\undocumented")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-122 S)
((|constructor| (NIL "The bit aggregate category models aggregates representing large quantities of Boolean data.")) (|xor| (($ $ $) "\\spad{xor(a,{}b)} returns the logical {\\em exclusive-or} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|or| (($ $ $) "\\spad{a or b} returns the logical {\\em or} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|and| (($ $ $) "\\spad{a and b} returns the logical {\\em and} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|nor| (($ $ $) "\\spad{nor(a,{}b)} returns the logical {\\em nor} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|nand| (($ $ $) "\\spad{nand(a,{}b)} returns the logical {\\em nand} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|not| (($ $) "\\spad{not(b)} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")))
@@ -422,7 +422,7 @@ NIL
NIL
(-123)
((|constructor| (NIL "The bit aggregate category models aggregates representing large quantities of Boolean data.")) (|xor| (($ $ $) "\\spad{xor(a,{}b)} returns the logical {\\em exclusive-or} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|or| (($ $ $) "\\spad{a or b} returns the logical {\\em or} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|and| (($ $ $) "\\spad{a and b} returns the logical {\\em and} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|nor| (($ $ $) "\\spad{nor(a,{}b)} returns the logical {\\em nor} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|nand| (($ $ $) "\\spad{nand(a,{}b)} returns the logical {\\em nand} of bit aggregates \\axiom{a} and \\axiom{\\spad{b}}.")) (|not| (($ $) "\\spad{not(b)} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
NIL
(-124 A S)
((|constructor| (NIL "\\spadtype{BinaryTreeCategory(S)} is the category of binary trees: a tree which is either empty or else is a \\spadfun{node} consisting of a value and a \\spadfun{left} and \\spadfun{right},{} both binary trees.")) (|node| (($ $ |#2| $) "\\spad{node(left,{}v,{}right)} creates a binary tree with value \\spad{v},{} a binary tree \\spad{left},{} and a binary tree \\spad{right}.")) (|finiteAggregate| ((|attribute|) "Binary trees have a finite number of components")) (|shallowlyMutable| ((|attribute|) "Binary trees have updateable components")))
@@ -430,19 +430,19 @@ NIL
NIL
(-125 S)
((|constructor| (NIL "\\spadtype{BinaryTreeCategory(S)} is the category of binary trees: a tree which is either empty or else is a \\spadfun{node} consisting of a value and a \\spadfun{left} and \\spadfun{right},{} both binary trees.")) (|node| (($ $ |#1| $) "\\spad{node(left,{}v,{}right)} creates a binary tree with value \\spad{v},{} a binary tree \\spad{left},{} and a binary tree \\spad{right}.")) (|finiteAggregate| ((|attribute|) "Binary trees have a finite number of components")) (|shallowlyMutable| ((|attribute|) "Binary trees have updateable components")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
NIL
(-126 S)
((|constructor| (NIL "\\spadtype{BinaryTournament(S)} is the domain of binary trees where elements are ordered down the tree. A binary search tree is either empty or is a node containing a \\spadfun{value} of type \\spad{S},{} and a \\spadfun{right} and a \\spadfun{left} which are both \\spadtype{BinaryTree(S)}")) (|insert!| (($ |#1| $) "\\spad{insert!(x,{}b)} inserts element \\spad{x} as leaves into binary tournament \\spad{b}.")) (|binaryTournament| (($ (|List| |#1|)) "\\spad{binaryTournament(ls)} creates a binary tournament with the elements of \\spad{ls} as values at the nodes.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-127 S)
((|constructor| (NIL "\\spadtype{BinaryTree(S)} is the domain of all binary trees. A binary tree over \\spad{S} is either empty or has a \\spadfun{value} which is an \\spad{S} and a \\spadfun{right} and \\spadfun{left} which are both binary trees.")) (|binaryTree| (($ $ |#1| $) "\\spad{binaryTree(l,{}v,{}r)} creates a binary tree with value \\spad{v} with left subtree \\spad{l} and right subtree \\spad{r}.") (($ |#1|) "\\spad{binaryTree(v)} is an non-empty binary tree with value \\spad{v},{} and left and right empty.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-128)
((|constructor| (NIL "ByteBuffer provides datatype for buffers of bytes. This domain differs from PrimitiveArray Byte in that it is not as rigid as PrimitiveArray Byte. That is,{} the typical use of ByteBuffer is to pre-allocate a vector of Byte of some capacity \\spad{`n'}. The array can then store up to \\spad{`n'} bytes. The actual interesting bytes count (the length of the buffer) is therefore different from the capacity. The length is no more than the capacity,{} but it can be set dynamically as needed. This functionality is used for example when reading bytes from input/output devices where we use buffers to transfer data in and out of the system. Note: a value of type ByteBuffer is 0-based indexed,{} as opposed \\indented{6}{Vector,{} but not unlike PrimitiveArray Byte.}")) (|setLength!| (((|NonNegativeInteger|) $ (|NonNegativeInteger|)) "\\spad{setLength!(buf,{}n)} sets the number of active bytes in the `buf'. Error if \\spad{`n'} is more than the capacity.")) (|capacity| (((|NonNegativeInteger|) $) "\\spad{capacity(buf)} returns the pre-allocated maximum size of `buf'.")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\#buf} returns the number of active elements in the buffer.")) (|byteBuffer| (($ (|NonNegativeInteger|)) "\\spad{byteBuffer(n)} creates a buffer of capacity \\spad{n},{} and length 0.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| (-129) (QUOTE (-845))) (|HasCategory| (-129) (LIST (QUOTE -308) (QUOTE (-129))))) (-12 (|HasCategory| (-129) (QUOTE (-1092))) (|HasCategory| (-129) (LIST (QUOTE -308) (QUOTE (-129)))))) (-4037 (-12 (|HasCategory| (-129) (QUOTE (-1092))) (|HasCategory| (-129) (LIST (QUOTE -308) (QUOTE (-129))))) (|HasCategory| (-129) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-129) (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| (-129) (QUOTE (-845))) (|HasCategory| (-129) (QUOTE (-1092)))) (|HasCategory| (-129) (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| (-129) (QUOTE (-1092))) (|HasCategory| (-129) (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| (-129) (QUOTE (-1092))) (|HasCategory| (-129) (LIST (QUOTE -308) (QUOTE (-129))))))
(-129)
((|constructor| (NIL "Byte is the datatype of 8-bit sized unsigned integer values.")) (|sample| (($) "\\spad{sample()} returns a sample datum of type Byte.")) (|bitior| (($ $ $) "bitor(\\spad{x},{}\\spad{y}) returns the bitwise `inclusive or' of \\spad{`x'} and \\spad{`y'}.")) (|bitand| (($ $ $) "\\spad{bitand(x,{}y)} returns the bitwise `and' of \\spad{`x'} and \\spad{`y'}.")) (|byte| (($ (|NonNegativeInteger|)) "\\spad{byte(x)} injects the unsigned integer value \\spad{`v'} into the Byte algebra. \\spad{`v'} must be non-negative and less than 256.")))
@@ -462,13 +462,13 @@ NIL
NIL
(-133)
((|constructor| (NIL "Members of the domain CardinalNumber are values indicating the cardinality of sets,{} both finite and infinite. Arithmetic operations are defined on cardinal numbers as follows. \\blankline If \\spad{x = \\#X} and \\spad{y = \\#Y} then \\indented{2}{\\spad{x+y\\space{2}= \\#(X+Y)}\\space{3}\\tab{30}disjoint union} \\indented{2}{\\spad{x-y\\space{2}= \\#(X-Y)}\\space{3}\\tab{30}relative complement} \\indented{2}{\\spad{x*y\\space{2}= \\#(X*Y)}\\space{3}\\tab{30}cartesian product} \\indented{2}{\\spad{x**y = \\#(X**Y)}\\space{2}\\tab{30}\\spad{X**Y = \\{g| g:Y->X\\}}} \\blankline The non-negative integers have a natural construction as cardinals \\indented{2}{\\spad{0 = \\#\\{\\}},{} \\spad{1 = \\{0\\}},{} \\spad{2 = \\{0,{} 1\\}},{} ...,{} \\spad{n = \\{i| 0 <= i < n\\}}.} \\blankline That \\spad{0} acts as a zero for the multiplication of cardinals is equivalent to the axiom of choice. \\blankline The generalized continuum hypothesis asserts \\center{\\spad{2**Aleph i = Aleph(i+1)}} and is independent of the axioms of set theory [Goedel 1940]. \\blankline Three commonly encountered cardinal numbers are \\indented{3}{\\spad{a = \\#Z}\\space{7}\\tab{30}countable infinity} \\indented{3}{\\spad{c = \\#R}\\space{7}\\tab{30}the continuum} \\indented{3}{\\spad{f = \\#\\{g| g:[0,{}1]->R\\}}} \\blankline In this domain,{} these values are obtained using \\indented{3}{\\spad{a := Aleph 0},{} \\spad{c := 2**a},{} \\spad{f := 2**c}.} \\blankline")) (|generalizedContinuumHypothesisAssumed| (((|Boolean|) (|Boolean|)) "\\spad{generalizedContinuumHypothesisAssumed(bool)} is used to dictate whether the hypothesis is to be assumed.")) (|generalizedContinuumHypothesisAssumed?| (((|Boolean|)) "\\spad{generalizedContinuumHypothesisAssumed?()} tests if the hypothesis is currently assumed.")) (|countable?| (((|Boolean|) $) "\\spad{countable?(\\spad{a})} determines whether \\spad{a} is a countable cardinal,{} \\spadignore{i.e.} an integer or \\spad{Aleph 0}.")) (|finite?| (((|Boolean|) $) "\\spad{finite?(\\spad{a})} determines whether \\spad{a} is a finite cardinal,{} \\spadignore{i.e.} an integer.")) (|Aleph| (($ (|NonNegativeInteger|)) "\\spad{Aleph(n)} provides the named (infinite) cardinal number.")) (** (($ $ $) "\\spad{x**y} returns \\spad{\\#(X**Y)} where \\spad{X**Y} is defined \\indented{1}{as \\spad{\\{g| g:Y->X\\}}.}")) (- (((|Union| $ "failed") $ $) "\\spad{x - y} returns an element \\spad{z} such that \\spad{z+y=x} or \"failed\" if no such element exists.")) (|commutative| ((|attribute| "*") "a domain \\spad{D} has \\spad{commutative(\"*\")} if it has an operation \\spad{\"*\": (D,{}D) -> D} which is commutative.")))
-(((-4404 "*") . T))
+(((-4405 "*") . T))
NIL
-(-134 |minix| -2241 S T$)
+(-134 |minix| -2240 S T$)
((|constructor| (NIL "This package provides functions to enable conversion of tensors given conversion of the components.")) (|map| (((|CartesianTensor| |#1| |#2| |#4|) (|Mapping| |#4| |#3|) (|CartesianTensor| |#1| |#2| |#3|)) "\\spad{map(f,{}ts)} does a componentwise conversion of the tensor \\spad{ts} to a tensor with components of type \\spad{T}.")) (|reshape| (((|CartesianTensor| |#1| |#2| |#4|) (|List| |#4|) (|CartesianTensor| |#1| |#2| |#3|)) "\\spad{reshape(lt,{}ts)} organizes the list of components \\spad{lt} into a tensor with the same shape as \\spad{ts}.")))
NIL
NIL
-(-135 |minix| -2241 R)
+(-135 |minix| -2240 R)
((|constructor| (NIL "CartesianTensor(minix,{}dim,{}\\spad{R}) provides Cartesian tensors with components belonging to a commutative ring \\spad{R}. These tensors can have any number of indices. Each index takes values from \\spad{minix} to \\spad{minix + dim - 1}.")) (|sample| (($) "\\spad{sample()} returns an object of type \\%.")) (|unravel| (($ (|List| |#3|)) "\\spad{unravel(t)} produces a tensor from a list of components such that \\indented{2}{\\spad{unravel(ravel(t)) = t}.}")) (|ravel| (((|List| |#3|) $) "\\spad{ravel(t)} produces a list of components from a tensor such that \\indented{2}{\\spad{unravel(ravel(t)) = t}.}")) (|leviCivitaSymbol| (($) "\\spad{leviCivitaSymbol()} is the rank \\spad{dim} tensor defined by \\spad{leviCivitaSymbol()(i1,{}...idim) = +1/0/-1} if \\spad{i1,{}...,{}idim} is an even/is nota /is an odd permutation of \\spad{minix,{}...,{}minix+dim-1}.")) (|kroneckerDelta| (($) "\\spad{kroneckerDelta()} is the rank 2 tensor defined by \\indented{3}{\\spad{kroneckerDelta()(i,{}j)}} \\indented{6}{\\spad{= 1\\space{2}if i = j}} \\indented{6}{\\spad{= 0 if\\space{2}i \\~= j}}")) (|reindex| (($ $ (|List| (|Integer|))) "\\spad{reindex(t,{}[i1,{}...,{}idim])} permutes the indices of \\spad{t}. For example,{} if \\spad{r = reindex(t,{} [4,{}1,{}2,{}3])} for a rank 4 tensor \\spad{t},{} then \\spad{r} is the rank for tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = t(l,{}i,{}j,{}k)}.}")) (|transpose| (($ $ (|Integer|) (|Integer|)) "\\spad{transpose(t,{}i,{}j)} exchanges the \\spad{i}\\spad{-}th and \\spad{j}\\spad{-}th indices of \\spad{t}. For example,{} if \\spad{r = transpose(t,{}2,{}3)} for a rank 4 tensor \\spad{t},{} then \\spad{r} is the rank 4 tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = t(i,{}k,{}j,{}l)}.}") (($ $) "\\spad{transpose(t)} exchanges the first and last indices of \\spad{t}. For example,{} if \\spad{r = transpose(t)} for a rank 4 tensor \\spad{t},{} then \\spad{r} is the rank 4 tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = t(l,{}j,{}k,{}i)}.}")) (|contract| (($ $ (|Integer|) (|Integer|)) "\\spad{contract(t,{}i,{}j)} is the contraction of tensor \\spad{t} which sums along the \\spad{i}\\spad{-}th and \\spad{j}\\spad{-}th indices. For example,{} if \\spad{r = contract(t,{}1,{}3)} for a rank 4 tensor \\spad{t},{} then \\spad{r} is the rank 2 \\spad{(= 4 - 2)} tensor given by \\indented{4}{\\spad{r(i,{}j) = sum(h=1..dim,{}t(h,{}i,{}h,{}j))}.}") (($ $ (|Integer|) $ (|Integer|)) "\\spad{contract(t,{}i,{}s,{}j)} is the inner product of tenors \\spad{s} and \\spad{t} which sums along the \\spad{k1}\\spad{-}th index of \\spad{t} and the \\spad{k2}\\spad{-}th index of \\spad{s}. For example,{} if \\spad{r = contract(s,{}2,{}t,{}1)} for rank 3 tensors rank 3 tensors \\spad{s} and \\spad{t},{} then \\spad{r} is the rank 4 \\spad{(= 3 + 3 - 2)} tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = sum(h=1..dim,{}s(i,{}h,{}j)*t(h,{}k,{}l))}.}")) (* (($ $ $) "\\spad{s*t} is the inner product of the tensors \\spad{s} and \\spad{t} which contracts the last index of \\spad{s} with the first index of \\spad{t},{} \\spadignore{i.e.} \\indented{4}{\\spad{t*s = contract(t,{}rank t,{} s,{} 1)}} \\indented{4}{\\spad{t*s = sum(k=1..N,{} t[i1,{}..,{}iN,{}k]*s[k,{}j1,{}..,{}jM])}} This is compatible with the use of \\spad{M*v} to denote the matrix-vector inner product.")) (|product| (($ $ $) "\\spad{product(s,{}t)} is the outer product of the tensors \\spad{s} and \\spad{t}. For example,{} if \\spad{r = product(s,{}t)} for rank 2 tensors \\spad{s} and \\spad{t},{} then \\spad{r} is a rank 4 tensor given by \\indented{4}{\\spad{r(i,{}j,{}k,{}l) = s(i,{}j)*t(k,{}l)}.}")) (|elt| ((|#3| $ (|List| (|Integer|))) "\\spad{elt(t,{}[i1,{}...,{}iN])} gives a component of a rank \\spad{N} tensor.") ((|#3| $ (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{elt(t,{}i,{}j,{}k,{}l)} gives a component of a rank 4 tensor.") ((|#3| $ (|Integer|) (|Integer|) (|Integer|)) "\\spad{elt(t,{}i,{}j,{}k)} gives a component of a rank 3 tensor.") ((|#3| $ (|Integer|) (|Integer|)) "\\spad{elt(t,{}i,{}j)} gives a component of a rank 2 tensor.") ((|#3| $ (|Integer|)) "\\spad{elt(t,{}i)} gives a component of a rank 1 tensor.") ((|#3| $) "\\spad{elt(t)} gives the component of a rank 0 tensor.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(t)} returns the tensorial rank of \\spad{t} (that is,{} the number of indices). This is the same as the graded module degree.")) (|coerce| (($ (|List| $)) "\\spad{coerce([t_1,{}...,{}t_dim])} allows tensors to be constructed using lists.") (($ (|List| |#3|)) "\\spad{coerce([r_1,{}...,{}r_dim])} allows tensors to be constructed using lists.") (($ (|SquareMatrix| |#2| |#3|)) "\\spad{coerce(m)} views a matrix as a rank 2 tensor.") (($ (|DirectProduct| |#2| |#3|)) "\\spad{coerce(v)} views a vector as a rank 1 tensor.")))
NIL
NIL
@@ -490,7 +490,7 @@ NIL
NIL
(-140)
((|constructor| (NIL "This domain allows classes of characters to be defined and manipulated efficiently.")) (|alphanumeric| (($) "\\spad{alphanumeric()} returns the class of all characters for which \\spadfunFrom{alphanumeric?}{Character} is \\spad{true}.")) (|alphabetic| (($) "\\spad{alphabetic()} returns the class of all characters for which \\spadfunFrom{alphabetic?}{Character} is \\spad{true}.")) (|lowerCase| (($) "\\spad{lowerCase()} returns the class of all characters for which \\spadfunFrom{lowerCase?}{Character} is \\spad{true}.")) (|upperCase| (($) "\\spad{upperCase()} returns the class of all characters for which \\spadfunFrom{upperCase?}{Character} is \\spad{true}.")) (|hexDigit| (($) "\\spad{hexDigit()} returns the class of all characters for which \\spadfunFrom{hexDigit?}{Character} is \\spad{true}.")) (|digit| (($) "\\spad{digit()} returns the class of all characters for which \\spadfunFrom{digit?}{Character} is \\spad{true}.")) (|charClass| (($ (|List| (|Character|))) "\\spad{charClass(l)} creates a character class which contains exactly the characters given in the list \\spad{l}.") (($ (|String|)) "\\spad{charClass(s)} creates a character class which contains exactly the characters given in the string \\spad{s}.")))
-((-4402 . T) (-4392 . T) (-4403 . T))
+((-4403 . T) (-4393 . T) (-4404 . T))
((-4037 (-12 (|HasCategory| (-143) (QUOTE (-367))) (|HasCategory| (-143) (LIST (QUOTE -308) (QUOTE (-143))))) (-12 (|HasCategory| (-143) (QUOTE (-1092))) (|HasCategory| (-143) (LIST (QUOTE -308) (QUOTE (-143)))))) (|HasCategory| (-143) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-143) (QUOTE (-367))) (|HasCategory| (-143) (QUOTE (-845))) (|HasCategory| (-143) (QUOTE (-1092))) (|HasCategory| (-143) (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| (-143) (QUOTE (-1092))) (|HasCategory| (-143) (LIST (QUOTE -308) (QUOTE (-143))))))
(-141 R Q A)
((|constructor| (NIL "CommonDenominator provides functions to compute the common denominator of a finite linear aggregate of elements of the quotient field of an integral domain.")) (|splitDenominator| (((|Record| (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) "\\spad{splitDenominator([q1,{}...,{}qn])} returns \\spad{[[p1,{}...,{}pn],{} d]} such that \\spad{\\spad{qi} = pi/d} and \\spad{d} is a common denominator for the \\spad{qi}\\spad{'s}.")) (|clearDenominator| ((|#3| |#3|) "\\spad{clearDenominator([q1,{}...,{}qn])} returns \\spad{[p1,{}...,{}pn]} such that \\spad{\\spad{qi} = pi/d} where \\spad{d} is a common denominator for the \\spad{qi}\\spad{'s}.")) (|commonDenominator| ((|#1| |#3|) "\\spad{commonDenominator([q1,{}...,{}qn])} returns a common denominator \\spad{d} for \\spad{q1},{}...,{}\\spad{qn}.")))
@@ -506,7 +506,7 @@ NIL
NIL
(-144)
((|constructor| (NIL "Rings of Characteristic Non Zero")) (|charthRoot| (((|Union| $ "failed") $) "\\spad{charthRoot(x)} returns the \\spad{p}th root of \\spad{x} where \\spad{p} is the characteristic of the ring.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-145 R)
((|constructor| (NIL "This package provides a characteristicPolynomial function for any matrix over a commutative ring.")) (|characteristicPolynomial| ((|#1| (|Matrix| |#1|) |#1|) "\\spad{characteristicPolynomial(m,{}r)} computes the characteristic polynomial of the matrix \\spad{m} evaluated at the point \\spad{r}. In particular,{} if \\spad{r} is the polynomial \\spad{'x},{} then it returns the characteristic polynomial expressed as a polynomial in \\spad{'x}.")))
@@ -514,9 +514,9 @@ NIL
NIL
(-146)
((|constructor| (NIL "Rings of Characteristic Zero.")))
-((-4399 . T))
+((-4400 . T))
NIL
-(-147 -3197 UP UPUP)
+(-147 -3196 UP UPUP)
((|constructor| (NIL "Tools to send a point to infinity on an algebraic curve.")) (|chvar| (((|Record| (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (|Fraction| |#2|)) (|:| |c2| (|Fraction| |#2|)) (|:| |deg| (|NonNegativeInteger|))) |#3| |#3|) "\\spad{chvar(f(x,{}y),{} p(x,{}y))} returns \\spad{[g(z,{}t),{} q(z,{}t),{} c1(z),{} c2(z),{} n]} such that under the change of variable \\spad{x = c1(z)},{} \\spad{y = t * c2(z)},{} one gets \\spad{f(x,{}y) = g(z,{}t)}. The algebraic relation between \\spad{x} and \\spad{y} is \\spad{p(x,{} y) = 0}. The algebraic relation between \\spad{z} and \\spad{t} is \\spad{q(z,{} t) = 0}.")) (|eval| ((|#3| |#3| (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{eval(p(x,{}y),{} f(x),{} g(x))} returns \\spad{p(f(x),{} y * g(x))}.")) (|goodPoint| ((|#1| |#3| |#3|) "\\spad{goodPoint(p,{} q)} returns an integer a such that a is neither a pole of \\spad{p(x,{}y)} nor a branch point of \\spad{q(x,{}y) = 0}.")) (|rootPoly| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| (|Fraction| |#2|)) (|:| |radicand| |#2|)) (|Fraction| |#2|) (|NonNegativeInteger|)) "\\spad{rootPoly(g,{} n)} returns \\spad{[m,{} c,{} P]} such that \\spad{c * g ** (1/n) = P ** (1/m)} thus if \\spad{y**n = g},{} then \\spad{z**m = P} where \\spad{z = c * y}.")) (|radPoly| (((|Union| (|Record| (|:| |radicand| (|Fraction| |#2|)) (|:| |deg| (|NonNegativeInteger|))) "failed") |#3|) "\\spad{radPoly(p(x,{} y))} returns \\spad{[c(x),{} n]} if \\spad{p} is of the form \\spad{y**n - c(x)},{} \"failed\" otherwise.")) (|mkIntegral| (((|Record| (|:| |coef| (|Fraction| |#2|)) (|:| |poly| |#3|)) |#3|) "\\spad{mkIntegral(p(x,{}y))} returns \\spad{[c(x),{} q(x,{}z)]} such that \\spad{z = c * y} is integral. The algebraic relation between \\spad{x} and \\spad{y} is \\spad{p(x,{} y) = 0}. The algebraic relation between \\spad{x} and \\spad{z} is \\spad{q(x,{} z) = 0}.")))
NIL
NIL
@@ -527,14 +527,14 @@ NIL
(-149 A S)
((|constructor| (NIL "A collection is a homogeneous aggregate which can built from list of members. The operation used to build the aggregate is generically named \\spadfun{construct}. However,{} each collection provides its own special function with the same name as the data type,{} except with an initial lower case letter,{} \\spadignore{e.g.} \\spadfun{list} for \\spadtype{List},{} \\spadfun{flexibleArray} for \\spadtype{FlexibleArray},{} and so on.")) (|removeDuplicates| (($ $) "\\spad{removeDuplicates(u)} returns a copy of \\spad{u} with all duplicates removed.")) (|select| (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{select(p,{}u)} returns a copy of \\spad{u} containing only those elements such \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. Note: \\axiom{select(\\spad{p},{}\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u} | \\spad{p}(\\spad{x})]}.")) (|remove| (($ |#2| $) "\\spad{remove(x,{}u)} returns a copy of \\spad{u} with all elements \\axiom{\\spad{y} = \\spad{x}} removed. Note: \\axiom{remove(\\spad{y},{}\\spad{c}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{c} | \\spad{x} \\spad{~=} \\spad{y}]}.") (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{remove(p,{}u)} returns a copy of \\spad{u} removing all elements \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. Note: \\axiom{remove(\\spad{p},{}\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u} | not \\spad{p}(\\spad{x})]}.")) (|reduce| ((|#2| (|Mapping| |#2| |#2| |#2|) $ |#2| |#2|) "\\spad{reduce(f,{}u,{}x,{}z)} reduces the binary operation \\spad{f} across \\spad{u},{} stopping when an \"absorbing element\" \\spad{z} is encountered. As for \\axiom{reduce(\\spad{f},{}\\spad{u},{}\\spad{x})},{} \\spad{x} is the identity operation of \\spad{f}. Same as \\axiom{reduce(\\spad{f},{}\\spad{u},{}\\spad{x})} when \\spad{u} contains no element \\spad{z}. Thus the third argument \\spad{x} is returned when \\spad{u} is empty.") ((|#2| (|Mapping| |#2| |#2| |#2|) $ |#2|) "\\spad{reduce(f,{}u,{}x)} reduces the binary operation \\spad{f} across \\spad{u},{} where \\spad{x} is the identity operation of \\spad{f}. Same as \\axiom{reduce(\\spad{f},{}\\spad{u})} if \\spad{u} has 2 or more elements. Returns \\axiom{\\spad{f}(\\spad{x},{}\\spad{y})} if \\spad{u} has one element \\spad{y},{} \\spad{x} if \\spad{u} is empty. For example,{} \\axiom{reduce(+,{}\\spad{u},{}0)} returns the sum of the elements of \\spad{u}.") ((|#2| (|Mapping| |#2| |#2| |#2|) $) "\\spad{reduce(f,{}u)} reduces the binary operation \\spad{f} across \\spad{u}. For example,{} if \\spad{u} is \\axiom{[\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]} then \\axiom{reduce(\\spad{f},{}\\spad{u})} returns \\axiom{\\spad{f}(..\\spad{f}(\\spad{f}(\\spad{x},{}\\spad{y}),{}...),{}\\spad{z})}. Note: if \\spad{u} has one element \\spad{x},{} \\axiom{reduce(\\spad{f},{}\\spad{u})} returns \\spad{x}. Error: if \\spad{u} is empty.")) (|find| (((|Union| |#2| "failed") (|Mapping| (|Boolean|) |#2|) $) "\\spad{find(p,{}u)} returns the first \\spad{x} in \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true},{} and \"failed\" otherwise.")) (|construct| (($ (|List| |#2|)) "\\axiom{construct(\\spad{x},{}\\spad{y},{}...,{}\\spad{z})} returns the collection of elements \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}} ordered as given. Equivalently written as \\axiom{[\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]\\$\\spad{D}},{} where \\spad{D} is the domain. \\spad{D} may be omitted for those of type List.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasAttribute| |#1| (QUOTE -4402)))
+((|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasAttribute| |#1| (QUOTE -4403)))
(-150 S)
((|constructor| (NIL "A collection is a homogeneous aggregate which can built from list of members. The operation used to build the aggregate is generically named \\spadfun{construct}. However,{} each collection provides its own special function with the same name as the data type,{} except with an initial lower case letter,{} \\spadignore{e.g.} \\spadfun{list} for \\spadtype{List},{} \\spadfun{flexibleArray} for \\spadtype{FlexibleArray},{} and so on.")) (|removeDuplicates| (($ $) "\\spad{removeDuplicates(u)} returns a copy of \\spad{u} with all duplicates removed.")) (|select| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{select(p,{}u)} returns a copy of \\spad{u} containing only those elements such \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. Note: \\axiom{select(\\spad{p},{}\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u} | \\spad{p}(\\spad{x})]}.")) (|remove| (($ |#1| $) "\\spad{remove(x,{}u)} returns a copy of \\spad{u} with all elements \\axiom{\\spad{y} = \\spad{x}} removed. Note: \\axiom{remove(\\spad{y},{}\\spad{c}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{c} | \\spad{x} \\spad{~=} \\spad{y}]}.") (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{remove(p,{}u)} returns a copy of \\spad{u} removing all elements \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. Note: \\axiom{remove(\\spad{p},{}\\spad{u}) \\spad{==} [\\spad{x} for \\spad{x} in \\spad{u} | not \\spad{p}(\\spad{x})]}.")) (|reduce| ((|#1| (|Mapping| |#1| |#1| |#1|) $ |#1| |#1|) "\\spad{reduce(f,{}u,{}x,{}z)} reduces the binary operation \\spad{f} across \\spad{u},{} stopping when an \"absorbing element\" \\spad{z} is encountered. As for \\axiom{reduce(\\spad{f},{}\\spad{u},{}\\spad{x})},{} \\spad{x} is the identity operation of \\spad{f}. Same as \\axiom{reduce(\\spad{f},{}\\spad{u},{}\\spad{x})} when \\spad{u} contains no element \\spad{z}. Thus the third argument \\spad{x} is returned when \\spad{u} is empty.") ((|#1| (|Mapping| |#1| |#1| |#1|) $ |#1|) "\\spad{reduce(f,{}u,{}x)} reduces the binary operation \\spad{f} across \\spad{u},{} where \\spad{x} is the identity operation of \\spad{f}. Same as \\axiom{reduce(\\spad{f},{}\\spad{u})} if \\spad{u} has 2 or more elements. Returns \\axiom{\\spad{f}(\\spad{x},{}\\spad{y})} if \\spad{u} has one element \\spad{y},{} \\spad{x} if \\spad{u} is empty. For example,{} \\axiom{reduce(+,{}\\spad{u},{}0)} returns the sum of the elements of \\spad{u}.") ((|#1| (|Mapping| |#1| |#1| |#1|) $) "\\spad{reduce(f,{}u)} reduces the binary operation \\spad{f} across \\spad{u}. For example,{} if \\spad{u} is \\axiom{[\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]} then \\axiom{reduce(\\spad{f},{}\\spad{u})} returns \\axiom{\\spad{f}(..\\spad{f}(\\spad{f}(\\spad{x},{}\\spad{y}),{}...),{}\\spad{z})}. Note: if \\spad{u} has one element \\spad{x},{} \\axiom{reduce(\\spad{f},{}\\spad{u})} returns \\spad{x}. Error: if \\spad{u} is empty.")) (|find| (((|Union| |#1| "failed") (|Mapping| (|Boolean|) |#1|) $) "\\spad{find(p,{}u)} returns the first \\spad{x} in \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true},{} and \"failed\" otherwise.")) (|construct| (($ (|List| |#1|)) "\\axiom{construct(\\spad{x},{}\\spad{y},{}...,{}\\spad{z})} returns the collection of elements \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}} ordered as given. Equivalently written as \\axiom{[\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]\\$\\spad{D}},{} where \\spad{D} is the domain. \\spad{D} may be omitted for those of type List.")))
NIL
NIL
(-151 |n| K Q)
((|constructor| (NIL "CliffordAlgebra(\\spad{n},{} \\spad{K},{} \\spad{Q}) defines a vector space of dimension \\spad{2**n} over \\spad{K},{} given a quadratic form \\spad{Q} on \\spad{K**n}. \\blankline If \\spad{e[i]},{} \\spad{1<=i<=n} is a basis for \\spad{K**n} then \\indented{3}{1,{} \\spad{e[i]} (\\spad{1<=i<=n}),{} \\spad{e[i1]*e[i2]}} (\\spad{1<=i1<i2<=n}),{}...,{}\\spad{e[1]*e[2]*..*e[n]} is a basis for the Clifford Algebra. \\blankline The algebra is defined by the relations \\indented{3}{\\spad{e[i]*e[j] = -e[j]*e[i]}\\space{2}(\\spad{i \\~~= j}),{}} \\indented{3}{\\spad{e[i]*e[i] = Q(e[i])}} \\blankline Examples of Clifford Algebras are: gaussians,{} quaternions,{} exterior algebras and spin algebras.")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} computes the multiplicative inverse of \\spad{x} or \"failed\" if \\spad{x} is not invertible.")) (|coefficient| ((|#2| $ (|List| (|PositiveInteger|))) "\\spad{coefficient(x,{}[i1,{}i2,{}...,{}iN])} extracts the coefficient of \\spad{e(i1)*e(i2)*...*e(iN)} in \\spad{x}.")) (|monomial| (($ |#2| (|List| (|PositiveInteger|))) "\\spad{monomial(c,{}[i1,{}i2,{}...,{}iN])} produces the value given by \\spad{c*e(i1)*e(i2)*...*e(iN)}.")) (|e| (($ (|PositiveInteger|)) "\\spad{e(n)} produces the appropriate unit element.")))
-((-4397 . T) (-4396 . T) (-4399 . T))
+((-4398 . T) (-4397 . T) (-4400 . T))
NIL
(-152)
((|constructor| (NIL "\\indented{1}{The purpose of this package is to provide reasonable plots of} functions with singularities.")) (|clipWithRanges| (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|List| (|List| (|Point| (|DoubleFloat|)))) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{clipWithRanges(pointLists,{}xMin,{}xMax,{}yMin,{}yMax)} performs clipping on a list of lists of points,{} \\spad{pointLists}. Clipping is done within the specified ranges of \\spad{xMin},{} \\spad{xMax} and \\spad{yMin},{} \\spad{yMax}. This function is used internally by the \\fakeAxiomFun{iClipParametric} subroutine in this package.")) (|clipParametric| (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|Plot|) (|Fraction| (|Integer|)) (|Fraction| (|Integer|))) "\\spad{clipParametric(p,{}frac,{}sc)} performs two-dimensional clipping on a plot,{} \\spad{p},{} from the domain \\spadtype{Plot} for the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)}; the fraction parameter is specified by \\spad{frac} and the scale parameter is specified by \\spad{sc} for use in the \\fakeAxiomFun{iClipParametric} subroutine,{} which is called by this function.") (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|Plot|)) "\\spad{clipParametric(p)} performs two-dimensional clipping on a plot,{} \\spad{p},{} from the domain \\spadtype{Plot} for the parametric curve \\spad{x = f(t)},{} \\spad{y = g(t)}; the default parameters \\spad{1/2} for the fraction and \\spad{5/1} for the scale are used in the \\fakeAxiomFun{iClipParametric} subroutine,{} which is called by this function.")) (|clip| (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{clip(ll)} performs two-dimensional clipping on a list of lists of points,{} \\spad{ll}; the default parameters \\spad{1/2} for the fraction and \\spad{5/1} for the scale are used in the \\fakeAxiomFun{iClipParametric} subroutine,{} which is called by this function.") (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|List| (|Point| (|DoubleFloat|)))) "\\spad{clip(l)} performs two-dimensional clipping on a curve \\spad{l},{} which is a list of points; the default parameters \\spad{1/2} for the fraction and \\spad{5/1} for the scale are used in the \\fakeAxiomFun{iClipParametric} subroutine,{} which is called by this function.") (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|Plot|) (|Fraction| (|Integer|)) (|Fraction| (|Integer|))) "\\spad{clip(p,{}frac,{}sc)} performs two-dimensional clipping on a plot,{} \\spad{p},{} from the domain \\spadtype{Plot} for the graph of one variable \\spad{y = f(x)}; the fraction parameter is specified by \\spad{frac} and the scale parameter is specified by \\spad{sc} for use in the \\spadfun{clip} function.") (((|Record| (|:| |brans| (|List| (|List| (|Point| (|DoubleFloat|))))) (|:| |xValues| (|Segment| (|DoubleFloat|))) (|:| |yValues| (|Segment| (|DoubleFloat|)))) (|Plot|)) "\\spad{clip(p)} performs two-dimensional clipping on a plot,{} \\spad{p},{} from the domain \\spadtype{Plot} for the graph of one variable,{} \\spad{y = f(x)}; the default parameters \\spad{1/4} for the fraction and \\spad{5/1} for the scale are used in the \\spadfun{clip} function.")))
@@ -556,7 +556,7 @@ NIL
((|constructor| (NIL "Color() specifies a domain of 27 colors provided in the \\Language{} system (the colors mix additively).")) (|color| (($ (|Integer|)) "\\spad{color(i)} returns a color of the indicated hue \\spad{i}.")) (|numberOfHues| (((|PositiveInteger|)) "\\spad{numberOfHues()} returns the number of total hues,{} set in totalHues.")) (|hue| (((|Integer|) $) "\\spad{hue(c)} returns the hue index of the indicated color \\spad{c}.")) (|blue| (($) "\\spad{blue()} returns the position of the blue hue from total hues.")) (|green| (($) "\\spad{green()} returns the position of the green hue from total hues.")) (|yellow| (($) "\\spad{yellow()} returns the position of the yellow hue from total hues.")) (|red| (($) "\\spad{red()} returns the position of the red hue from total hues.")) (+ (($ $ $) "\\spad{c1 + c2} additively mixes the two colors \\spad{c1} and \\spad{c2}.")) (* (($ (|DoubleFloat|) $) "\\spad{s * c},{} returns the color \\spad{c},{} whose weighted shade has been scaled by \\spad{s}.") (($ (|PositiveInteger|) $) "\\spad{s * c},{} returns the color \\spad{c},{} whose weighted shade has been scaled by \\spad{s}.")))
NIL
NIL
-(-157 R -3197)
+(-157 R -3196)
((|constructor| (NIL "Provides combinatorial functions over an integral domain.")) (|ipow| ((|#2| (|List| |#2|)) "\\spad{ipow(l)} should be local but conditional.")) (|iidprod| ((|#2| (|List| |#2|)) "\\spad{iidprod(l)} should be local but conditional.")) (|iidsum| ((|#2| (|List| |#2|)) "\\spad{iidsum(l)} should be local but conditional.")) (|iipow| ((|#2| (|List| |#2|)) "\\spad{iipow(l)} should be local but conditional.")) (|iiperm| ((|#2| (|List| |#2|)) "\\spad{iiperm(l)} should be local but conditional.")) (|iibinom| ((|#2| (|List| |#2|)) "\\spad{iibinom(l)} should be local but conditional.")) (|iifact| ((|#2| |#2|) "\\spad{iifact(x)} should be local but conditional.")) (|product| ((|#2| |#2| (|SegmentBinding| |#2|)) "\\spad{product(f(n),{} n = a..b)} returns \\spad{f}(a) * ... * \\spad{f}(\\spad{b}) as a formal product.") ((|#2| |#2| (|Symbol|)) "\\spad{product(f(n),{} n)} returns the formal product \\spad{P}(\\spad{n}) which verifies \\spad{P}(\\spad{n+1})\\spad{/P}(\\spad{n}) = \\spad{f}(\\spad{n}).")) (|summation| ((|#2| |#2| (|SegmentBinding| |#2|)) "\\spad{summation(f(n),{} n = a..b)} returns \\spad{f}(a) + ... + \\spad{f}(\\spad{b}) as a formal sum.") ((|#2| |#2| (|Symbol|)) "\\spad{summation(f(n),{} n)} returns the formal sum \\spad{S}(\\spad{n}) which verifies \\spad{S}(\\spad{n+1}) - \\spad{S}(\\spad{n}) = \\spad{f}(\\spad{n}).")) (|factorials| ((|#2| |#2| (|Symbol|)) "\\spad{factorials(f,{} x)} rewrites the permutations and binomials in \\spad{f} involving \\spad{x} in terms of factorials.") ((|#2| |#2|) "\\spad{factorials(f)} rewrites the permutations and binomials in \\spad{f} in terms of factorials.")) (|factorial| ((|#2| |#2|) "\\spad{factorial(n)} returns the factorial of \\spad{n},{} \\spadignore{i.e.} \\spad{n!}.")) (|permutation| ((|#2| |#2| |#2|) "\\spad{permutation(n,{} r)} returns the number of permutations of \\spad{n} objects taken \\spad{r} at a time,{} \\spadignore{i.e.} \\spad{n!/}(\\spad{n}-\\spad{r})!.")) (|binomial| ((|#2| |#2| |#2|) "\\spad{binomial(n,{} r)} returns the number of subsets of \\spad{r} objects taken among \\spad{n} objects,{} \\spadignore{i.e.} \\spad{n!/}(\\spad{r!} * (\\spad{n}-\\spad{r})!).")) (** ((|#2| |#2| |#2|) "\\spad{a ** b} is the formal exponential a**b.")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(op)} returns a copy of \\spad{op} with the domain-dependent properties appropriate for \\spad{F}; error if \\spad{op} is not a combinatorial operator.")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} is \\spad{true} if \\spad{op} is a combinatorial operator.")))
NIL
NIL
@@ -587,10 +587,10 @@ NIL
(-164 S R)
((|constructor| (NIL "This category represents the extension of a ring by a square root of \\spad{-1}.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(x)} returns \\spad{x} as a rational number,{} or \"failed\" if \\spad{x} is not a rational number.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(x)} returns \\spad{x} as a rational number. Error: if \\spad{x} is not a rational number.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(x)} tests if \\spad{x} is a rational number.")) (|polarCoordinates| (((|Record| (|:| |r| |#2|) (|:| |phi| |#2|)) $) "\\spad{polarCoordinates(x)} returns (\\spad{r},{} phi) such that \\spad{x} = \\spad{r} * exp(\\%\\spad{i} * phi).")) (|argument| ((|#2| $) "\\spad{argument(x)} returns the angle made by (0,{}1) and (0,{}\\spad{x}).")) (|abs| (($ $) "\\spad{abs(x)} returns the absolute value of \\spad{x} = sqrt(norm(\\spad{x})).")) (|exquo| (((|Union| $ "failed") $ |#2|) "\\spad{exquo(x,{} r)} returns the exact quotient of \\spad{x} by \\spad{r},{} or \"failed\" if \\spad{r} does not divide \\spad{x} exactly.")) (|norm| ((|#2| $) "\\spad{norm(x)} returns \\spad{x} * conjugate(\\spad{x})")) (|real| ((|#2| $) "\\spad{real(x)} returns real part of \\spad{x}.")) (|imag| ((|#2| $) "\\spad{imag(x)} returns imaginary part of \\spad{x}.")) (|complex| (($ |#2| |#2|) "\\spad{complex(x,{}y)} constructs \\spad{x} + \\%i*y.")) (|conjugate| (($ $) "\\spad{conjugate(x + \\%i y)} returns \\spad{x} - \\%\\spad{i} \\spad{y}.")) (|imaginary| (($) "\\spad{imaginary()} = sqrt(\\spad{-1}) = \\%\\spad{i}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-904))) (|HasCategory| |#2| (QUOTE (-544))) (|HasCategory| |#2| (QUOTE (-997))) (|HasCategory| |#2| (QUOTE (-1192))) (|HasCategory| |#2| (QUOTE (-1053))) (|HasCategory| |#2| (QUOTE (-1017))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (QUOTE (-362))) (|HasAttribute| |#2| (QUOTE -4398)) (|HasAttribute| |#2| (QUOTE -4401)) (|HasCategory| |#2| (QUOTE (-306))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-845))))
+((|HasCategory| |#2| (QUOTE (-904))) (|HasCategory| |#2| (QUOTE (-544))) (|HasCategory| |#2| (QUOTE (-997))) (|HasCategory| |#2| (QUOTE (-1192))) (|HasCategory| |#2| (QUOTE (-1053))) (|HasCategory| |#2| (QUOTE (-1017))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (QUOTE (-362))) (|HasAttribute| |#2| (QUOTE -4399)) (|HasAttribute| |#2| (QUOTE -4402)) (|HasCategory| |#2| (QUOTE (-306))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-845))))
(-165 R)
((|constructor| (NIL "This category represents the extension of a ring by a square root of \\spad{-1}.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(x)} returns \\spad{x} as a rational number,{} or \"failed\" if \\spad{x} is not a rational number.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(x)} returns \\spad{x} as a rational number. Error: if \\spad{x} is not a rational number.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(x)} tests if \\spad{x} is a rational number.")) (|polarCoordinates| (((|Record| (|:| |r| |#1|) (|:| |phi| |#1|)) $) "\\spad{polarCoordinates(x)} returns (\\spad{r},{} phi) such that \\spad{x} = \\spad{r} * exp(\\%\\spad{i} * phi).")) (|argument| ((|#1| $) "\\spad{argument(x)} returns the angle made by (0,{}1) and (0,{}\\spad{x}).")) (|abs| (($ $) "\\spad{abs(x)} returns the absolute value of \\spad{x} = sqrt(norm(\\spad{x})).")) (|exquo| (((|Union| $ "failed") $ |#1|) "\\spad{exquo(x,{} r)} returns the exact quotient of \\spad{x} by \\spad{r},{} or \"failed\" if \\spad{r} does not divide \\spad{x} exactly.")) (|norm| ((|#1| $) "\\spad{norm(x)} returns \\spad{x} * conjugate(\\spad{x})")) (|real| ((|#1| $) "\\spad{real(x)} returns real part of \\spad{x}.")) (|imag| ((|#1| $) "\\spad{imag(x)} returns imaginary part of \\spad{x}.")) (|complex| (($ |#1| |#1|) "\\spad{complex(x,{}y)} constructs \\spad{x} + \\%i*y.")) (|conjugate| (($ $) "\\spad{conjugate(x + \\%i y)} returns \\spad{x} - \\%\\spad{i} \\spad{y}.")) (|imaginary| (($) "\\spad{imaginary()} = sqrt(\\spad{-1}) = \\%\\spad{i}.")))
-((-4395 -4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4398 |has| |#1| (-6 -4398)) (-4401 |has| |#1| (-6 -4401)) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 -4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4399 |has| |#1| (-6 -4399)) (-4402 |has| |#1| (-6 -4402)) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-166 RR PR)
((|constructor| (NIL "\\indented{1}{Author:} Date Created: Date Last Updated: Basic Functions: Related Constructors: Complex,{} UnivariatePolynomial Also See: AMS Classifications: Keywords: complex,{} polynomial factorization,{} factor References:")) (|factor| (((|Factored| |#2|) |#2|) "\\spad{factor(p)} factorizes the polynomial \\spad{p} with complex coefficients.")))
@@ -602,8 +602,8 @@ NIL
NIL
(-168 R)
((|constructor| (NIL "\\spadtype {Complex(R)} creates the domain of elements of the form \\spad{a + b * i} where \\spad{a} and \\spad{b} come from the ring \\spad{R},{} and \\spad{i} is a new element such that \\spad{i**2 = -1}.")))
-((-4395 -4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4398 |has| |#1| (-6 -4398)) (-4401 |has| |#1| (-6 -4401)) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-348))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-348)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-367))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-348)))) (|HasCategory| |#1| (QUOTE (-232))) (-12 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-367)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-823)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-845)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-1017)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-1192)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-362))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-904))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-904)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-904))))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (QUOTE (-997))) (|HasCategory| |#1| (QUOTE (-1192)))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (QUOTE (-1017))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-348)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1053))) (-12 (|HasCategory| |#1| (QUOTE (-1053))) (|HasCategory| |#1| (QUOTE (-1192)))) (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-232))) (-12 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasAttribute| |#1| (QUOTE -4398)) (|HasAttribute| |#1| (QUOTE -4401)) (-12 (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168))))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-348)))))
+((-4396 -4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4399 |has| |#1| (-6 -4399)) (-4402 |has| |#1| (-6 -4402)) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-348))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-348)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-367))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-348)))) (|HasCategory| |#1| (QUOTE (-232))) (-12 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-348)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-367)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-823)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-845)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-1017)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-1192)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-362))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-904))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-904)))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-904))))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (QUOTE (-997))) (|HasCategory| |#1| (QUOTE (-1192)))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (QUOTE (-1017))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-348)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| |#1| (QUOTE (-1053))) (-12 (|HasCategory| |#1| (QUOTE (-1053))) (|HasCategory| |#1| (QUOTE (-1192)))) (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-232))) (-12 (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasAttribute| |#1| (QUOTE -4399)) (|HasAttribute| |#1| (QUOTE -4402)) (-12 (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168))))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-348)))))
(-169 R S CS)
((|constructor| (NIL "This package supports converting complex expressions to patterns")) (|convert| (((|Pattern| |#1|) |#3|) "\\spad{convert(cs)} converts the complex expression \\spad{cs} to a pattern")))
NIL
@@ -614,7 +614,7 @@ NIL
NIL
(-171)
((|constructor| (NIL "The category of commutative rings with unity,{} \\spadignore{i.e.} rings where \\spadop{*} is commutative,{} and which have a multiplicative identity. element.")) (|commutative| ((|attribute| "*") "multiplication is commutative.")))
-(((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-172)
((|constructor| (NIL "This category is the root of the I/O conduits.")) (|close!| (($ $) "\\spad{close!(c)} closes the conduit \\spad{c},{} changing its state to one that is invalid for future read or write operations.")))
@@ -622,7 +622,7 @@ NIL
NIL
(-173 R)
((|constructor| (NIL "\\spadtype{ContinuedFraction} implements general \\indented{1}{continued fractions.\\space{2}This version is not restricted to simple,{}} \\indented{1}{finite fractions and uses the \\spadtype{Stream} as a} \\indented{1}{representation.\\space{2}The arithmetic functions assume that the} \\indented{1}{approximants alternate below/above the convergence point.} \\indented{1}{This is enforced by ensuring the partial numerators and partial} \\indented{1}{denominators are greater than 0 in the Euclidean domain view of \\spad{R}} \\indented{1}{(\\spadignore{i.e.} \\spad{sizeLess?(0,{} x)}).}")) (|complete| (($ $) "\\spad{complete(x)} causes all entries in \\spadvar{\\spad{x}} to be computed. Normally entries are only computed as needed. If \\spadvar{\\spad{x}} is an infinite continued fraction,{} a user-initiated interrupt is necessary to stop the computation.")) (|extend| (($ $ (|Integer|)) "\\spad{extend(x,{}n)} causes the first \\spadvar{\\spad{n}} entries in the continued fraction \\spadvar{\\spad{x}} to be computed. Normally entries are only computed as needed.")) (|denominators| (((|Stream| |#1|) $) "\\spad{denominators(x)} returns the stream of denominators of the approximants of the continued fraction \\spadvar{\\spad{x}}. If the continued fraction is finite,{} then the stream will be finite.")) (|numerators| (((|Stream| |#1|) $) "\\spad{numerators(x)} returns the stream of numerators of the approximants of the continued fraction \\spadvar{\\spad{x}}. If the continued fraction is finite,{} then the stream will be finite.")) (|convergents| (((|Stream| (|Fraction| |#1|)) $) "\\spad{convergents(x)} returns the stream of the convergents of the continued fraction \\spadvar{\\spad{x}}. If the continued fraction is finite,{} then the stream will be finite.")) (|approximants| (((|Stream| (|Fraction| |#1|)) $) "\\spad{approximants(x)} returns the stream of approximants of the continued fraction \\spadvar{\\spad{x}}. If the continued fraction is finite,{} then the stream will be infinite and periodic with period 1.")) (|reducedForm| (($ $) "\\spad{reducedForm(x)} puts the continued fraction \\spadvar{\\spad{x}} in reduced form,{} \\spadignore{i.e.} the function returns an equivalent continued fraction of the form \\spad{continuedFraction(b0,{}[1,{}1,{}1,{}...],{}[b1,{}b2,{}b3,{}...])}.")) (|wholePart| ((|#1| $) "\\spad{wholePart(x)} extracts the whole part of \\spadvar{\\spad{x}}. That is,{} if \\spad{x = continuedFraction(b0,{} [a1,{}a2,{}a3,{}...],{} [b1,{}b2,{}b3,{}...])},{} then \\spad{wholePart(x) = b0}.")) (|partialQuotients| (((|Stream| |#1|) $) "\\spad{partialQuotients(x)} extracts the partial quotients in \\spadvar{\\spad{x}}. That is,{} if \\spad{x = continuedFraction(b0,{} [a1,{}a2,{}a3,{}...],{} [b1,{}b2,{}b3,{}...])},{} then \\spad{partialQuotients(x) = [b0,{}b1,{}b2,{}b3,{}...]}.")) (|partialDenominators| (((|Stream| |#1|) $) "\\spad{partialDenominators(x)} extracts the denominators in \\spadvar{\\spad{x}}. That is,{} if \\spad{x = continuedFraction(b0,{} [a1,{}a2,{}a3,{}...],{} [b1,{}b2,{}b3,{}...])},{} then \\spad{partialDenominators(x) = [b1,{}b2,{}b3,{}...]}.")) (|partialNumerators| (((|Stream| |#1|) $) "\\spad{partialNumerators(x)} extracts the numerators in \\spadvar{\\spad{x}}. That is,{} if \\spad{x = continuedFraction(b0,{} [a1,{}a2,{}a3,{}...],{} [b1,{}b2,{}b3,{}...])},{} then \\spad{partialNumerators(x) = [a1,{}a2,{}a3,{}...]}.")) (|reducedContinuedFraction| (($ |#1| (|Stream| |#1|)) "\\spad{reducedContinuedFraction(b0,{}b)} constructs a continued fraction in the following way: if \\spad{b = [b1,{}b2,{}...]} then the result is the continued fraction \\spad{b0 + 1/(b1 + 1/(b2 + ...))}. That is,{} the result is the same as \\spad{continuedFraction(b0,{}[1,{}1,{}1,{}...],{}[b1,{}b2,{}b3,{}...])}.")) (|continuedFraction| (($ |#1| (|Stream| |#1|) (|Stream| |#1|)) "\\spad{continuedFraction(b0,{}a,{}b)} constructs a continued fraction in the following way: if \\spad{a = [a1,{}a2,{}...]} and \\spad{b = [b1,{}b2,{}...]} then the result is the continued fraction \\spad{b0 + a1/(b1 + a2/(b2 + ...))}.") (($ (|Fraction| |#1|)) "\\spad{continuedFraction(r)} converts the fraction \\spadvar{\\spad{r}} with components of type \\spad{R} to a continued fraction over \\spad{R}.")))
-(((-4404 "*") . T) (-4395 . T) (-4400 . T) (-4394 . T) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") . T) (-4396 . T) (-4401 . T) (-4395 . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-174)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 18,{} 2008. A `Contour' a list of bindings making up a `virtual scope'.")) (|findBinding| (((|Union| (|Binding|) "failed") (|Symbol|) $) "\\spad{findBinding(c,{}n)} returns the first binding associated with \\spad{`n'}. Otherwise `failed'.")) (|push| (($ (|Binding|) $) "\\spad{push(c,{}b)} augments the contour with binding \\spad{`b'}.")) (|bindings| (((|List| (|Binding|)) $) "\\spad{bindings(c)} returns the list of bindings in countour \\spad{c}.")))
@@ -661,11 +661,11 @@ NIL
NIL
NIL
(-183 S)
-((|constructor| (NIL "This category declares basic operations on all constructors.")) (|dualSignature| (((|List| (|Boolean|)) $) "\\spad{dualSignature(c)} returns a list \\spad{l} of Boolean values with the following meaning: \\indented{2}{\\spad{l}.(i+1) holds when the constructor takes a domain object} \\indented{10}{as the `i'th argument.\\space{2}Otherwise the argument} \\indented{10}{must be a non-domain object.}")) (|kind| (((|ConstructorKind|) $) "\\spad{kind(ctor)} returns the kind of the constructor `ctor'.")))
+((|constructor| (NIL "This category declares basic operations on all constructors.")) (|operations| (((|List| (|OverloadSet|)) $) "\\spad{operations(c)} returns the list of all operator exported by instantiations of constructor \\spad{c}. The operators are partitioned into overload sets.")) (|dualSignature| (((|List| (|Boolean|)) $) "\\spad{dualSignature(c)} returns a list \\spad{l} of Boolean values with the following meaning: \\indented{2}{\\spad{l}.(i+1) holds when the constructor takes a domain object} \\indented{10}{as the `i'th argument.\\space{2}Otherwise the argument} \\indented{10}{must be a non-domain object.}")) (|kind| (((|ConstructorKind|) $) "\\spad{kind(ctor)} returns the kind of the constructor `ctor'.")))
NIL
NIL
(-184)
-((|constructor| (NIL "This category declares basic operations on all constructors.")) (|dualSignature| (((|List| (|Boolean|)) $) "\\spad{dualSignature(c)} returns a list \\spad{l} of Boolean values with the following meaning: \\indented{2}{\\spad{l}.(i+1) holds when the constructor takes a domain object} \\indented{10}{as the `i'th argument.\\space{2}Otherwise the argument} \\indented{10}{must be a non-domain object.}")) (|kind| (((|ConstructorKind|) $) "\\spad{kind(ctor)} returns the kind of the constructor `ctor'.")))
+((|constructor| (NIL "This category declares basic operations on all constructors.")) (|operations| (((|List| (|OverloadSet|)) $) "\\spad{operations(c)} returns the list of all operator exported by instantiations of constructor \\spad{c}. The operators are partitioned into overload sets.")) (|dualSignature| (((|List| (|Boolean|)) $) "\\spad{dualSignature(c)} returns a list \\spad{l} of Boolean values with the following meaning: \\indented{2}{\\spad{l}.(i+1) holds when the constructor takes a domain object} \\indented{10}{as the `i'th argument.\\space{2}Otherwise the argument} \\indented{10}{must be a non-domain object.}")) (|kind| (((|ConstructorKind|) $) "\\spad{kind(ctor)} returns the kind of the constructor `ctor'.")))
NIL
NIL
(-185)
@@ -676,7 +676,7 @@ NIL
((|constructor| (NIL "This domain provides implementations for constructors.")) (|findConstructor| (((|Maybe| $) (|Symbol|)) "\\spad{findConstructor(s)} attempts to find a constructor named \\spad{s}. If successful,{} returns that constructor; otherwise,{} returns \\spad{nothing}.")))
NIL
NIL
-(-187 R -3197)
+(-187 R -3196)
((|constructor| (NIL "\\spadtype{ComplexTrigonometricManipulations} provides function that compute the real and imaginary parts of complex functions.")) (|complexForm| (((|Complex| (|Expression| |#1|)) |#2|) "\\spad{complexForm(f)} returns \\spad{[real f,{} imag f]}.")) (|trigs| ((|#2| |#2|) "\\spad{trigs(f)} rewrites all the complex logs and exponentials appearing in \\spad{f} in terms of trigonometric functions.")) (|real?| (((|Boolean|) |#2|) "\\spad{real?(f)} returns \\spad{true} if \\spad{f = real f}.")) (|imag| (((|Expression| |#1|) |#2|) "\\spad{imag(f)} returns the imaginary part of \\spad{f} where \\spad{f} is a complex function.")) (|real| (((|Expression| |#1|) |#2|) "\\spad{real(f)} returns the real part of \\spad{f} where \\spad{f} is a complex function.")) (|complexElementary| ((|#2| |#2| (|Symbol|)) "\\spad{complexElementary(f,{} x)} rewrites the kernels of \\spad{f} involving \\spad{x} in terms of the 2 fundamental complex transcendental elementary functions: \\spad{log,{} exp}.") ((|#2| |#2|) "\\spad{complexElementary(f)} rewrites \\spad{f} in terms of the 2 fundamental complex transcendental elementary functions: \\spad{log,{} exp}.")) (|complexNormalize| ((|#2| |#2| (|Symbol|)) "\\spad{complexNormalize(f,{} x)} rewrites \\spad{f} using the least possible number of complex independent kernels involving \\spad{x}.") ((|#2| |#2|) "\\spad{complexNormalize(f)} rewrites \\spad{f} using the least possible number of complex independent kernels.")))
NIL
NIL
@@ -784,23 +784,23 @@ NIL
((|constructor| (NIL "\\indented{1}{This domain implements a simple view of a database whose fields are} indexed by symbols")) (- (($ $ $) "\\spad{db1-db2} returns the difference of databases \\spad{db1} and \\spad{db2} \\spadignore{i.e.} consisting of elements in \\spad{db1} but not in \\spad{db2}")) (+ (($ $ $) "\\spad{db1+db2} returns the merge of databases \\spad{db1} and \\spad{db2}")) (|fullDisplay| (((|Void|) $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{fullDisplay(db,{}start,{}end )} prints full details of entries in the range \\axiom{\\spad{start}..end} in \\axiom{\\spad{db}}.") (((|Void|) $) "\\spad{fullDisplay(db)} prints full details of each entry in \\axiom{\\spad{db}}.") (((|Void|) $) "\\spad{fullDisplay(x)} displays \\spad{x} in detail")) (|display| (((|Void|) $) "\\spad{display(db)} prints a summary line for each entry in \\axiom{\\spad{db}}.") (((|Void|) $) "\\spad{display(x)} displays \\spad{x} in some form")) (|elt| (((|DataList| (|String|)) $ (|Symbol|)) "\\spad{elt(db,{}s)} returns the \\axiom{\\spad{s}} field of each element of \\axiom{\\spad{db}}.") (($ $ (|QueryEquation|)) "\\spad{elt(db,{}q)} returns all elements of \\axiom{\\spad{db}} which satisfy \\axiom{\\spad{q}}.") (((|String|) $ (|Symbol|)) "\\spad{elt(x,{}s)} returns an element of \\spad{x} indexed by \\spad{s}")))
NIL
NIL
-(-214 -3197 UP UPUP R)
+(-214 -3196 UP UPUP R)
((|constructor| (NIL "This package provides functions for computing the residues of a function on an algebraic curve.")) (|doubleResultant| ((|#2| |#4| (|Mapping| |#2| |#2|)) "\\spad{doubleResultant(f,{} ')} returns \\spad{p}(\\spad{x}) whose roots are rational multiples of the residues of \\spad{f} at all its finite poles. Argument ' is the derivation to use.")))
NIL
NIL
-(-215 -3197 FP)
+(-215 -3196 FP)
((|constructor| (NIL "Package for the factorization of a univariate polynomial with coefficients in a finite field. The algorithm used is the \"distinct degree\" algorithm of Cantor-Zassenhaus,{} modified to use trace instead of the norm and a table for computing Frobenius as suggested by Naudin and Quitte .")) (|irreducible?| (((|Boolean|) |#2|) "\\spad{irreducible?(p)} tests whether the polynomial \\spad{p} is irreducible.")) (|tracePowMod| ((|#2| |#2| (|NonNegativeInteger|) |#2|) "\\spad{tracePowMod(u,{}k,{}v)} produces the sum of \\spad{u**(q**i)} for \\spad{i} running and \\spad{q=} size \\spad{F}")) (|trace2PowMod| ((|#2| |#2| (|NonNegativeInteger|) |#2|) "\\spad{trace2PowMod(u,{}k,{}v)} produces the sum of \\spad{u**(2**i)} for \\spad{i} running from 1 to \\spad{k} all computed modulo the polynomial \\spad{v}.")) (|exptMod| ((|#2| |#2| (|NonNegativeInteger|) |#2|) "\\spad{exptMod(u,{}k,{}v)} raises the polynomial \\spad{u} to the \\spad{k}th power modulo the polynomial \\spad{v}.")) (|separateFactors| (((|List| |#2|) (|List| (|Record| (|:| |deg| (|NonNegativeInteger|)) (|:| |prod| |#2|)))) "\\spad{separateFactors(lfact)} takes the list produced by \\spadfunFrom{separateDegrees}{DistinctDegreeFactorization} and produces the complete list of factors.")) (|separateDegrees| (((|List| (|Record| (|:| |deg| (|NonNegativeInteger|)) (|:| |prod| |#2|))) |#2|) "\\spad{separateDegrees(p)} splits the square free polynomial \\spad{p} into factors each of which is a product of irreducibles of the same degree.")) (|distdfact| (((|Record| (|:| |cont| |#1|) (|:| |factors| (|List| (|Record| (|:| |irr| |#2|) (|:| |pow| (|Integer|)))))) |#2| (|Boolean|)) "\\spad{distdfact(p,{}sqfrflag)} produces the complete factorization of the polynomial \\spad{p} returning an internal data structure. If argument \\spad{sqfrflag} is \\spad{true},{} the polynomial is assumed square free.")) (|factorSquareFree| (((|Factored| |#2|) |#2|) "\\spad{factorSquareFree(p)} produces the complete factorization of the square free polynomial \\spad{p}.")) (|factor| (((|Factored| |#2|) |#2|) "\\spad{factor(p)} produces the complete factorization of the polynomial \\spad{p}.")))
NIL
NIL
(-216)
((|constructor| (NIL "This domain allows rational numbers to be presented as repeating decimal expansions.")) (|decimal| (($ (|Fraction| (|Integer|))) "\\spad{decimal(r)} converts a rational number to a decimal expansion.")) (|fractionPart| (((|Fraction| (|Integer|)) $) "\\spad{fractionPart(d)} returns the fractional part of a decimal expansion.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| (-562) (QUOTE (-904))) (|HasCategory| (-562) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| (-562) (QUOTE (-144))) (|HasCategory| (-562) (QUOTE (-146))) (|HasCategory| (-562) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-562) (QUOTE (-1017))) (|HasCategory| (-562) (QUOTE (-815))) (-4037 (|HasCategory| (-562) (QUOTE (-815))) (|HasCategory| (-562) (QUOTE (-845)))) (|HasCategory| (-562) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| (-562) (QUOTE (-1143))) (|HasCategory| (-562) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| (-562) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| (-562) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| (-562) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| (-562) (QUOTE (-232))) (|HasCategory| (-562) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-562) (LIST (QUOTE -513) (QUOTE (-1168)) (QUOTE (-562)))) (|HasCategory| (-562) (LIST (QUOTE -308) (QUOTE (-562)))) (|HasCategory| (-562) (LIST (QUOTE -285) (QUOTE (-562)) (QUOTE (-562)))) (|HasCategory| (-562) (QUOTE (-306))) (|HasCategory| (-562) (QUOTE (-544))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| (-562) (LIST (QUOTE -635) (QUOTE (-562)))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-562) (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-562) (QUOTE (-904)))) (|HasCategory| (-562) (QUOTE (-144)))))
(-217)
((|constructor| (NIL "This domain represents the syntax of a definition.")) (|body| (((|SpadAst|) $) "\\spad{body(d)} returns the right hand side of the definition \\spad{`d'}.")) (|signature| (((|Signature|) $) "\\spad{signature(d)} returns the signature of the operation being defined. Note that this list may be partial in that it contains only the types actually specified in the definition.")) (|head| (((|HeadAst|) $) "\\spad{head(d)} returns the head of the definition \\spad{`d'}. This is a list of identifiers starting with the name of the operation followed by the name of the parameters,{} if any.")))
NIL
NIL
-(-218 R -3197)
+(-218 R -3196)
((|constructor| (NIL "\\spadtype{ElementaryFunctionDefiniteIntegration} provides functions to compute definite integrals of elementary functions.")) (|innerint| (((|Union| (|:| |f1| (|OrderedCompletion| |#2|)) (|:| |f2| (|List| (|OrderedCompletion| |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (|Symbol|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|) (|Boolean|)) "\\spad{innerint(f,{} x,{} a,{} b,{} ignore?)} should be local but conditional")) (|integrate| (((|Union| (|:| |f1| (|OrderedCompletion| |#2|)) (|:| |f2| (|List| (|OrderedCompletion| |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (|SegmentBinding| (|OrderedCompletion| |#2|)) (|String|)) "\\spad{integrate(f,{} x = a..b,{} \"noPole\")} returns the integral of \\spad{f(x)dx} from a to \\spad{b}. If it is not possible to check whether \\spad{f} has a pole for \\spad{x} between a and \\spad{b} (because of parameters),{} then this function will assume that \\spad{f} has no such pole. Error: if \\spad{f} has a pole for \\spad{x} between a and \\spad{b} or if the last argument is not \"noPole\".") (((|Union| (|:| |f1| (|OrderedCompletion| |#2|)) (|:| |f2| (|List| (|OrderedCompletion| |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (|SegmentBinding| (|OrderedCompletion| |#2|))) "\\spad{integrate(f,{} x = a..b)} returns the integral of \\spad{f(x)dx} from a to \\spad{b}. Error: if \\spad{f} has a pole for \\spad{x} between a and \\spad{b}.")))
NIL
NIL
@@ -814,19 +814,19 @@ NIL
NIL
(-221 S)
((|constructor| (NIL "Linked list implementation of a Dequeue")) (|dequeue| (($ (|List| |#1|)) "\\spad{dequeue([x,{}y,{}...,{}z])} creates a dequeue with first (top or front) element \\spad{x},{} second element \\spad{y},{}...,{}and last (bottom or back) element \\spad{z}.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-222 |CoefRing| |listIndVar|)
((|constructor| (NIL "The deRham complex of Euclidean space,{} that is,{} the class of differential forms of arbitary degree over a coefficient ring. See Flanders,{} Harley,{} Differential Forms,{} With Applications to the Physical Sciences,{} New York,{} Academic Press,{} 1963.")) (|exteriorDifferential| (($ $) "\\spad{exteriorDifferential(df)} returns the exterior derivative (gradient,{} curl,{} divergence,{} ...) of the differential form \\spad{df}.")) (|totalDifferential| (($ (|Expression| |#1|)) "\\spad{totalDifferential(x)} returns the total differential (gradient) form for element \\spad{x}.")) (|map| (($ (|Mapping| (|Expression| |#1|) (|Expression| |#1|)) $) "\\spad{map(f,{}df)} replaces each coefficient \\spad{x} of differential form \\spad{df} by \\spad{f(x)}.")) (|degree| (((|Integer|) $) "\\spad{degree(df)} returns the homogeneous degree of differential form \\spad{df}.")) (|retractable?| (((|Boolean|) $) "\\spad{retractable?(df)} tests if differential form \\spad{df} is a 0-form,{} \\spadignore{i.e.} if degree(\\spad{df}) = 0.")) (|homogeneous?| (((|Boolean|) $) "\\spad{homogeneous?(df)} tests if all of the terms of differential form \\spad{df} have the same degree.")) (|generator| (($ (|NonNegativeInteger|)) "\\spad{generator(n)} returns the \\spad{n}th basis term for a differential form.")) (|coefficient| (((|Expression| |#1|) $ $) "\\spad{coefficient(df,{}u)},{} where \\spad{df} is a differential form,{} returns the coefficient of \\spad{df} containing the basis term \\spad{u} if such a term exists,{} and 0 otherwise.")) (|reductum| (($ $) "\\spad{reductum(df)},{} where \\spad{df} is a differential form,{} returns \\spad{df} minus the leading term of \\spad{df} if \\spad{df} has two or more terms,{} and 0 otherwise.")) (|leadingBasisTerm| (($ $) "\\spad{leadingBasisTerm(df)} returns the leading basis term of differential form \\spad{df}.")) (|leadingCoefficient| (((|Expression| |#1|) $) "\\spad{leadingCoefficient(df)} returns the leading coefficient of differential form \\spad{df}.")))
-((-4399 . T))
+((-4400 . T))
NIL
-(-223 R -3197)
+(-223 R -3196)
((|constructor| (NIL "\\spadtype{DefiniteIntegrationTools} provides common tools used by the definite integration of both rational and elementary functions.")) (|checkForZero| (((|Union| (|Boolean|) "failed") (|SparseUnivariatePolynomial| |#2|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|) (|Boolean|)) "\\spad{checkForZero(p,{} a,{} b,{} incl?)} is \\spad{true} if \\spad{p} has a zero between a and \\spad{b},{} \\spad{false} otherwise,{} \"failed\" if this cannot be determined. Check for a and \\spad{b} inclusive if incl? is \\spad{true},{} exclusive otherwise.") (((|Union| (|Boolean|) "failed") (|Polynomial| |#1|) (|Symbol|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|) (|Boolean|)) "\\spad{checkForZero(p,{} x,{} a,{} b,{} incl?)} is \\spad{true} if \\spad{p} has a zero for \\spad{x} between a and \\spad{b},{} \\spad{false} otherwise,{} \"failed\" if this cannot be determined. Check for a and \\spad{b} inclusive if incl? is \\spad{true},{} exclusive otherwise.")) (|computeInt| (((|Union| (|OrderedCompletion| |#2|) "failed") (|Kernel| |#2|) |#2| (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|) (|Boolean|)) "\\spad{computeInt(x,{} g,{} a,{} b,{} eval?)} returns the integral of \\spad{f} for \\spad{x} between a and \\spad{b},{} assuming that \\spad{g} is an indefinite integral of \\spad{f} and \\spad{f} has no pole between a and \\spad{b}. If \\spad{eval?} is \\spad{true},{} then \\spad{g} can be evaluated safely at \\spad{a} and \\spad{b},{} provided that they are finite values. Otherwise,{} limits must be computed.")) (|ignore?| (((|Boolean|) (|String|)) "\\spad{ignore?(s)} is \\spad{true} if \\spad{s} is the string that tells the integrator to assume that the function has no pole in the integration interval.")))
NIL
NIL
(-224)
((|constructor| (NIL "\\indented{1}{\\spadtype{DoubleFloat} is intended to make accessible} hardware floating point arithmetic in \\Language{},{} either native double precision,{} or IEEE. On most machines,{} there will be hardware support for the arithmetic operations: \\spadfunFrom{+}{DoubleFloat},{} \\spadfunFrom{*}{DoubleFloat},{} \\spadfunFrom{/}{DoubleFloat} and possibly also the \\spadfunFrom{sqrt}{DoubleFloat} operation. The operations \\spadfunFrom{exp}{DoubleFloat},{} \\spadfunFrom{log}{DoubleFloat},{} \\spadfunFrom{sin}{DoubleFloat},{} \\spadfunFrom{cos}{DoubleFloat},{} \\spadfunFrom{atan}{DoubleFloat} are normally coded in software based on minimax polynomial/rational approximations. Note that under Lisp/VM,{} \\spadfunFrom{atan}{DoubleFloat} is not available at this time. Some general comments about the accuracy of the operations: the operations \\spadfunFrom{+}{DoubleFloat},{} \\spadfunFrom{*}{DoubleFloat},{} \\spadfunFrom{/}{DoubleFloat} and \\spadfunFrom{sqrt}{DoubleFloat} are expected to be fully accurate. The operations \\spadfunFrom{exp}{DoubleFloat},{} \\spadfunFrom{log}{DoubleFloat},{} \\spadfunFrom{sin}{DoubleFloat},{} \\spadfunFrom{cos}{DoubleFloat} and \\spadfunFrom{atan}{DoubleFloat} are not expected to be fully accurate. In particular,{} \\spadfunFrom{sin}{DoubleFloat} and \\spadfunFrom{cos}{DoubleFloat} will lose all precision for large arguments. \\blankline The \\spadtype{Float} domain provides an alternative to the \\spad{DoubleFloat} domain. It provides an arbitrary precision model of floating point arithmetic. This means that accuracy problems like those above are eliminated by increasing the working precision where necessary. \\spadtype{Float} provides some special functions such as \\spadfunFrom{erf}{DoubleFloat},{} the error function in addition to the elementary functions. The disadvantage of \\spadtype{Float} is that it is much more expensive than small floats when the latter can be used.")) (|rationalApproximation| (((|Fraction| (|Integer|)) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{rationalApproximation(f,{} n,{} b)} computes a rational approximation \\spad{r} to \\spad{f} with relative error \\spad{< b**(-n)} (that is,{} \\spad{|(r-f)/f| < b**(-n)}).") (((|Fraction| (|Integer|)) $ (|NonNegativeInteger|)) "\\spad{rationalApproximation(f,{} n)} computes a rational approximation \\spad{r} to \\spad{f} with relative error \\spad{< 10**(-n)}.")) (|Beta| (($ $ $) "\\spad{Beta(x,{}y)} is \\spad{Gamma(x) * Gamma(y)/Gamma(x+y)}.")) (|Gamma| (($ $) "\\spad{Gamma(x)} is the Euler Gamma function.")) (|atan| (($ $ $) "\\spad{atan(x,{}y)} computes the arc tangent from \\spad{x} with phase \\spad{y}.")) (|log10| (($ $) "\\spad{log10(x)} computes the logarithm with base 10 for \\spad{x}.")) (|log2| (($ $) "\\spad{log2(x)} computes the logarithm with base 2 for \\spad{x}.")) (|exp1| (($) "\\spad{exp1()} returns the natural log base \\spad{2.718281828...}.")) (** (($ $ $) "\\spad{x ** y} returns the \\spad{y}th power of \\spad{x} (equal to \\spad{exp(y log x)}).")) (/ (($ $ (|Integer|)) "\\spad{x / i} computes the division from \\spad{x} by an integer \\spad{i}.")))
-((-1406 . T) (-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-1406 . T) (-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-225)
((|constructor| (NIL "This package provides special functions for double precision real and complex floating point.")) (|hypergeometric0F1| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{hypergeometric0F1(c,{}z)} is the hypergeometric function \\spad{0F1(; c; z)}.") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{hypergeometric0F1(c,{}z)} is the hypergeometric function \\spad{0F1(; c; z)}.")) (|airyBi| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{airyBi(x)} is the Airy function \\spad{\\spad{Bi}(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{\\spad{Bi}''(x) - x * \\spad{Bi}(x) = 0}.}") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{airyBi(x)} is the Airy function \\spad{\\spad{Bi}(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{\\spad{Bi}''(x) - x * \\spad{Bi}(x) = 0}.}")) (|airyAi| (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{airyAi(x)} is the Airy function \\spad{\\spad{Ai}(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{\\spad{Ai}''(x) - x * \\spad{Ai}(x) = 0}.}") (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{airyAi(x)} is the Airy function \\spad{\\spad{Ai}(x)}. This function satisfies the differential equation: \\indented{2}{\\spad{\\spad{Ai}''(x) - x * \\spad{Ai}(x) = 0}.}")) (|besselK| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{besselK(v,{}x)} is the modified Bessel function of the first kind,{} \\spad{K(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) - (x^2+v^2)w(x) = 0}.} Note: The default implmentation uses the relation \\indented{2}{\\spad{K(v,{}x) = \\%pi/2*(I(-v,{}x) - I(v,{}x))/sin(v*\\%\\spad{pi})}} so is not valid for integer values of \\spad{v}.") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{besselK(v,{}x)} is the modified Bessel function of the first kind,{} \\spad{K(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) - (x^2+v^2)w(x) = 0}.} Note: The default implmentation uses the relation \\indented{2}{\\spad{K(v,{}x) = \\%pi/2*(I(-v,{}x) - I(v,{}x))/sin(v*\\%\\spad{pi})}.} so is not valid for integer values of \\spad{v}.")) (|besselI| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{besselI(v,{}x)} is the modified Bessel function of the first kind,{} \\spad{I(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) - (x^2+v^2)w(x) = 0}.}") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{besselI(v,{}x)} is the modified Bessel function of the first kind,{} \\spad{I(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) - (x^2+v^2)w(x) = 0}.}")) (|besselY| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{besselY(v,{}x)} is the Bessel function of the second kind,{} \\spad{Y(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) + (x^2-v^2)w(x) = 0}.} Note: The default implmentation uses the relation \\indented{2}{\\spad{Y(v,{}x) = (J(v,{}x) cos(v*\\%\\spad{pi}) - J(-v,{}x))/sin(v*\\%\\spad{pi})}} so is not valid for integer values of \\spad{v}.") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{besselY(v,{}x)} is the Bessel function of the second kind,{} \\spad{Y(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) + (x^2-v^2)w(x) = 0}.} Note: The default implmentation uses the relation \\indented{2}{\\spad{Y(v,{}x) = (J(v,{}x) cos(v*\\%\\spad{pi}) - J(-v,{}x))/sin(v*\\%\\spad{pi})}} so is not valid for integer values of \\spad{v}.")) (|besselJ| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{besselJ(v,{}x)} is the Bessel function of the first kind,{} \\spad{J(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) + (x^2-v^2)w(x) = 0}.}") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{besselJ(v,{}x)} is the Bessel function of the first kind,{} \\spad{J(v,{}x)}. This function satisfies the differential equation: \\indented{2}{\\spad{x^2 w''(x) + x w'(x) + (x^2-v^2)w(x) = 0}.}")) (|polygamma| (((|Complex| (|DoubleFloat|)) (|NonNegativeInteger|) (|Complex| (|DoubleFloat|))) "\\spad{polygamma(n,{} x)} is the \\spad{n}-th derivative of \\spad{digamma(x)}.") (((|DoubleFloat|) (|NonNegativeInteger|) (|DoubleFloat|)) "\\spad{polygamma(n,{} x)} is the \\spad{n}-th derivative of \\spad{digamma(x)}.")) (|digamma| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{digamma(x)} is the function,{} \\spad{psi(x)},{} defined by \\indented{2}{\\spad{psi(x) = Gamma'(x)/Gamma(x)}.}") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{digamma(x)} is the function,{} \\spad{psi(x)},{} defined by \\indented{2}{\\spad{psi(x) = Gamma'(x)/Gamma(x)}.}")) (|logGamma| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{logGamma(x)} is the natural log of \\spad{Gamma(x)}. This can often be computed even if \\spad{Gamma(x)} cannot.") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{logGamma(x)} is the natural log of \\spad{Gamma(x)}. This can often be computed even if \\spad{Gamma(x)} cannot.")) (|Beta| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{Beta(x,{} y)} is the Euler beta function,{} \\spad{B(x,{}y)},{} defined by \\indented{2}{\\spad{Beta(x,{}y) = integrate(t^(x-1)*(1-t)^(y-1),{} t=0..1)}.} This is related to \\spad{Gamma(x)} by \\indented{2}{\\spad{Beta(x,{}y) = Gamma(x)*Gamma(y) / Gamma(x + y)}.}") (((|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "\\spad{Beta(x,{} y)} is the Euler beta function,{} \\spad{B(x,{}y)},{} defined by \\indented{2}{\\spad{Beta(x,{}y) = integrate(t^(x-1)*(1-t)^(y-1),{} t=0..1)}.} This is related to \\spad{Gamma(x)} by \\indented{2}{\\spad{Beta(x,{}y) = Gamma(x)*Gamma(y) / Gamma(x + y)}.}")) (|Gamma| (((|Complex| (|DoubleFloat|)) (|Complex| (|DoubleFloat|))) "\\spad{Gamma(x)} is the Euler gamma function,{} \\spad{Gamma(x)},{} defined by \\indented{2}{\\spad{Gamma(x) = integrate(t^(x-1)*exp(-t),{} t=0..\\%infinity)}.}") (((|DoubleFloat|) (|DoubleFloat|)) "\\spad{Gamma(x)} is the Euler gamma function,{} \\spad{Gamma(x)},{} defined by \\indented{2}{\\spad{Gamma(x) = integrate(t^(x-1)*exp(-t),{} t=0..\\%infinity)}.}")))
@@ -834,15 +834,15 @@ NIL
NIL
(-226 R)
((|constructor| (NIL "\\indented{1}{A Denavit-Hartenberg Matrix is a 4x4 Matrix of the form:} \\indented{1}{\\spad{nx ox ax px}} \\indented{1}{\\spad{ny oy ay py}} \\indented{1}{\\spad{nz oz az pz}} \\indented{2}{\\spad{0\\space{2}0\\space{2}0\\space{2}1}} (\\spad{n},{} \\spad{o},{} and a are the direction cosines)")) (|translate| (($ |#1| |#1| |#1|) "\\spad{translate(X,{}Y,{}Z)} returns a dhmatrix for translation by \\spad{X},{} \\spad{Y},{} and \\spad{Z}")) (|scale| (($ |#1| |#1| |#1|) "\\spad{scale(sx,{}sy,{}sz)} returns a dhmatrix for scaling in the \\spad{X},{} \\spad{Y} and \\spad{Z} directions")) (|rotatez| (($ |#1|) "\\spad{rotatez(r)} returns a dhmatrix for rotation about axis \\spad{Z} for \\spad{r} degrees")) (|rotatey| (($ |#1|) "\\spad{rotatey(r)} returns a dhmatrix for rotation about axis \\spad{Y} for \\spad{r} degrees")) (|rotatex| (($ |#1|) "\\spad{rotatex(r)} returns a dhmatrix for rotation about axis \\spad{X} for \\spad{r} degrees")) (|identity| (($) "\\spad{identity()} create the identity dhmatrix")) (* (((|Point| |#1|) $ (|Point| |#1|)) "\\spad{t*p} applies the dhmatrix \\spad{t} to point \\spad{p}")))
-((-4402 . T) (-4403 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-554))) (|HasAttribute| |#1| (QUOTE (-4404 "*"))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
+((-4403 . T) (-4404 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-554))) (|HasAttribute| |#1| (QUOTE (-4405 "*"))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-227 A S)
((|constructor| (NIL "A dictionary is an aggregate in which entries can be inserted,{} searched for and removed. Duplicates are thrown away on insertion. This category models the usual notion of dictionary which involves large amounts of data where copying is impractical. Principal operations are thus destructive (non-copying) ones.")))
NIL
NIL
(-228 S)
((|constructor| (NIL "A dictionary is an aggregate in which entries can be inserted,{} searched for and removed. Duplicates are thrown away on insertion. This category models the usual notion of dictionary which involves large amounts of data where copying is impractical. Principal operations are thus destructive (non-copying) ones.")))
-((-4403 . T))
+((-4404 . T))
NIL
(-229 S R)
((|constructor| (NIL "Differential extensions of a ring \\spad{R}. Given a differentiation on \\spad{R},{} extend it to a differentiation on \\%.")) (D (($ $ (|Mapping| |#2| |#2|) (|NonNegativeInteger|)) "\\spad{D(x,{} deriv,{} n)} differentiate \\spad{x} \\spad{n} times using a derivation which extends \\spad{deriv} on \\spad{R}.") (($ $ (|Mapping| |#2| |#2|)) "\\spad{D(x,{} deriv)} differentiates \\spad{x} extending the derivation deriv on \\spad{R}.")) (|differentiate| (($ $ (|Mapping| |#2| |#2|) (|NonNegativeInteger|)) "\\spad{differentiate(x,{} deriv,{} n)} differentiate \\spad{x} \\spad{n} times using a derivation which extends \\spad{deriv} on \\spad{R}.") (($ $ (|Mapping| |#2| |#2|)) "\\spad{differentiate(x,{} deriv)} differentiates \\spad{x} extending the derivation deriv on \\spad{R}.")))
@@ -850,7 +850,7 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-232))))
(-230 R)
((|constructor| (NIL "Differential extensions of a ring \\spad{R}. Given a differentiation on \\spad{R},{} extend it to a differentiation on \\%.")) (D (($ $ (|Mapping| |#1| |#1|) (|NonNegativeInteger|)) "\\spad{D(x,{} deriv,{} n)} differentiate \\spad{x} \\spad{n} times using a derivation which extends \\spad{deriv} on \\spad{R}.") (($ $ (|Mapping| |#1| |#1|)) "\\spad{D(x,{} deriv)} differentiates \\spad{x} extending the derivation deriv on \\spad{R}.")) (|differentiate| (($ $ (|Mapping| |#1| |#1|) (|NonNegativeInteger|)) "\\spad{differentiate(x,{} deriv,{} n)} differentiate \\spad{x} \\spad{n} times using a derivation which extends \\spad{deriv} on \\spad{R}.") (($ $ (|Mapping| |#1| |#1|)) "\\spad{differentiate(x,{} deriv)} differentiates \\spad{x} extending the derivation deriv on \\spad{R}.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-231 S)
((|constructor| (NIL "An ordinary differential ring,{} that is,{} a ring with an operation \\spadfun{differentiate}. \\blankline")) (D (($ $ (|NonNegativeInteger|)) "\\spad{D(x,{} n)} returns the \\spad{n}-th derivative of \\spad{x}.") (($ $) "\\spad{D(x)} returns the derivative of \\spad{x}. This function is a simple differential operator where no variable needs to be specified.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(x,{} n)} returns the \\spad{n}-th derivative of \\spad{x}.") (($ $) "\\spad{differentiate(x)} returns the derivative of \\spad{x}. This function is a simple differential operator where no variable needs to be specified.")))
@@ -858,36 +858,36 @@ NIL
NIL
(-232)
((|constructor| (NIL "An ordinary differential ring,{} that is,{} a ring with an operation \\spadfun{differentiate}. \\blankline")) (D (($ $ (|NonNegativeInteger|)) "\\spad{D(x,{} n)} returns the \\spad{n}-th derivative of \\spad{x}.") (($ $) "\\spad{D(x)} returns the derivative of \\spad{x}. This function is a simple differential operator where no variable needs to be specified.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(x,{} n)} returns the \\spad{n}-th derivative of \\spad{x}.") (($ $) "\\spad{differentiate(x)} returns the derivative of \\spad{x}. This function is a simple differential operator where no variable needs to be specified.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-233 A S)
((|constructor| (NIL "This category is a collection of operations common to both categories \\spadtype{Dictionary} and \\spadtype{MultiDictionary}")) (|select!| (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{select!(p,{}d)} destructively changes dictionary \\spad{d} by removing all entries \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is not \\spad{true}.")) (|remove!| (($ (|Mapping| (|Boolean|) |#2|) $) "\\spad{remove!(p,{}d)} destructively changes dictionary \\spad{d} by removeing all entries \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}.") (($ |#2| $) "\\spad{remove!(x,{}d)} destructively changes dictionary \\spad{d} by removing all entries \\spad{y} such that \\axiom{\\spad{y} = \\spad{x}}.")) (|dictionary| (($ (|List| |#2|)) "\\spad{dictionary([x,{}y,{}...,{}z])} creates a dictionary consisting of entries \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}}.") (($) "\\spad{dictionary()}\\$\\spad{D} creates an empty dictionary of type \\spad{D}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4402)))
+((|HasAttribute| |#1| (QUOTE -4403)))
(-234 S)
((|constructor| (NIL "This category is a collection of operations common to both categories \\spadtype{Dictionary} and \\spadtype{MultiDictionary}")) (|select!| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{select!(p,{}d)} destructively changes dictionary \\spad{d} by removing all entries \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is not \\spad{true}.")) (|remove!| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{remove!(p,{}d)} destructively changes dictionary \\spad{d} by removeing all entries \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}.") (($ |#1| $) "\\spad{remove!(x,{}d)} destructively changes dictionary \\spad{d} by removing all entries \\spad{y} such that \\axiom{\\spad{y} = \\spad{x}}.")) (|dictionary| (($ (|List| |#1|)) "\\spad{dictionary([x,{}y,{}...,{}z])} creates a dictionary consisting of entries \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}}.") (($) "\\spad{dictionary()}\\$\\spad{D} creates an empty dictionary of type \\spad{D}.")))
-((-4403 . T))
+((-4404 . T))
NIL
(-235)
((|constructor| (NIL "any solution of a homogeneous linear Diophantine equation can be represented as a sum of minimal solutions,{} which form a \"basis\" (a minimal solution cannot be represented as a nontrivial sum of solutions) in the case of an inhomogeneous linear Diophantine equation,{} each solution is the sum of a inhomogeneous solution and any number of homogeneous solutions therefore,{} it suffices to compute two sets: \\indented{3}{1. all minimal inhomogeneous solutions} \\indented{3}{2. all minimal homogeneous solutions} the algorithm implemented is a completion procedure,{} which enumerates all solutions in a recursive depth-first-search it can be seen as finding monotone paths in a graph for more details see Reference")) (|dioSolve| (((|Record| (|:| |varOrder| (|List| (|Symbol|))) (|:| |inhom| (|Union| (|List| (|Vector| (|NonNegativeInteger|))) "failed")) (|:| |hom| (|List| (|Vector| (|NonNegativeInteger|))))) (|Equation| (|Polynomial| (|Integer|)))) "\\spad{dioSolve(u)} computes a basis of all minimal solutions for linear homogeneous Diophantine equation \\spad{u},{} then all minimal solutions of inhomogeneous equation")))
NIL
NIL
-(-236 S -2241 R)
+(-236 S -2240 R)
((|constructor| (NIL "\\indented{2}{This category represents a finite cartesian product of a given type.} Many categorical properties are preserved under this construction.")) (* (($ $ |#3|) "\\spad{y * r} multiplies each component of the vector \\spad{y} by the element \\spad{r}.") (($ |#3| $) "\\spad{r * y} multiplies the element \\spad{r} times each component of the vector \\spad{y}.")) (|dot| ((|#3| $ $) "\\spad{dot(x,{}y)} computes the inner product of the vectors \\spad{x} and \\spad{y}.")) (|unitVector| (($ (|PositiveInteger|)) "\\spad{unitVector(n)} produces a vector with 1 in position \\spad{n} and zero elsewhere.")) (|directProduct| (($ (|Vector| |#3|)) "\\spad{directProduct(v)} converts the vector \\spad{v} to become a direct product. Error: if the length of \\spad{v} is different from dim.")) (|finiteAggregate| ((|attribute|) "attribute to indicate an aggregate of finite size")))
NIL
-((|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (QUOTE (-843))) (|HasAttribute| |#3| (QUOTE -4399)) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (QUOTE (-1092))))
-(-237 -2241 R)
+((|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (QUOTE (-843))) (|HasAttribute| |#3| (QUOTE -4400)) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (QUOTE (-1092))))
+(-237 -2240 R)
((|constructor| (NIL "\\indented{2}{This category represents a finite cartesian product of a given type.} Many categorical properties are preserved under this construction.")) (* (($ $ |#2|) "\\spad{y * r} multiplies each component of the vector \\spad{y} by the element \\spad{r}.") (($ |#2| $) "\\spad{r * y} multiplies the element \\spad{r} times each component of the vector \\spad{y}.")) (|dot| ((|#2| $ $) "\\spad{dot(x,{}y)} computes the inner product of the vectors \\spad{x} and \\spad{y}.")) (|unitVector| (($ (|PositiveInteger|)) "\\spad{unitVector(n)} produces a vector with 1 in position \\spad{n} and zero elsewhere.")) (|directProduct| (($ (|Vector| |#2|)) "\\spad{directProduct(v)} converts the vector \\spad{v} to become a direct product. Error: if the length of \\spad{v} is different from dim.")) (|finiteAggregate| ((|attribute|) "attribute to indicate an aggregate of finite size")))
-((-4396 |has| |#2| (-1044)) (-4397 |has| |#2| (-1044)) (-4399 |has| |#2| (-6 -4399)) ((-4404 "*") |has| |#2| (-171)) (-4402 . T))
+((-4397 |has| |#2| (-1044)) (-4398 |has| |#2| (-1044)) (-4400 |has| |#2| (-6 -4400)) ((-4405 "*") |has| |#2| (-171)) (-4403 . T))
NIL
-(-238 -2241 A B)
+(-238 -2240 A B)
((|constructor| (NIL "\\indented{2}{This package provides operations which all take as arguments} direct products of elements of some type \\spad{A} and functions from \\spad{A} to another type \\spad{B}. The operations all iterate over their vector argument and either return a value of type \\spad{B} or a direct product over \\spad{B}.")) (|map| (((|DirectProduct| |#1| |#3|) (|Mapping| |#3| |#2|) (|DirectProduct| |#1| |#2|)) "\\spad{map(f,{} v)} applies the function \\spad{f} to every element of the vector \\spad{v} producing a new vector containing the values.")) (|reduce| ((|#3| (|Mapping| |#3| |#2| |#3|) (|DirectProduct| |#1| |#2|) |#3|) "\\spad{reduce(func,{}vec,{}ident)} combines the elements in \\spad{vec} using the binary function \\spad{func}. Argument \\spad{ident} is returned if the vector is empty.")) (|scan| (((|DirectProduct| |#1| |#3|) (|Mapping| |#3| |#2| |#3|) (|DirectProduct| |#1| |#2|) |#3|) "\\spad{scan(func,{}vec,{}ident)} creates a new vector whose elements are the result of applying reduce to the binary function \\spad{func},{} increasing initial subsequences of the vector \\spad{vec},{} and the element \\spad{ident}.")))
NIL
NIL
-(-239 -2241 R)
+(-239 -2240 R)
((|constructor| (NIL "\\indented{2}{This type represents the finite direct or cartesian product of an} underlying component type. This contrasts with simple vectors in that the members can be viewed as having constant length. Thus many categorical properties can by lifted from the underlying component type. Component extraction operations are provided but no updating operations. Thus new direct product elements can either be created by converting vector elements using the \\spadfun{directProduct} function or by taking appropriate linear combinations of basis vectors provided by the \\spad{unitVector} operation.")))
-((-4396 |has| |#2| (-1044)) (-4397 |has| |#2| (-1044)) (-4399 |has| |#2| (-6 -4399)) ((-4404 "*") |has| |#2| (-171)) (-4402 . T))
-((-4037 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092)))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (QUOTE (-362))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362)))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-788))) (-4037 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-843)))) (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-1044)))) (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-171)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-232)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-367)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-721)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-788)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-843)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1044))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| (-562) (QUOTE (-845))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-4037 (|HasCategory| |#2| (QUOTE (-1044))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092)))) (|HasAttribute| |#2| (QUOTE -4399)) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))))
+((-4397 |has| |#2| (-1044)) (-4398 |has| |#2| (-1044)) (-4400 |has| |#2| (-6 -4400)) ((-4405 "*") |has| |#2| (-171)) (-4403 . T))
+((-4037 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092)))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (QUOTE (-362))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362)))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-788))) (-4037 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-843)))) (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-1044)))) (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-171)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-232)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-367)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-721)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-788)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-843)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1044))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| (-562) (QUOTE (-845))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-4037 (|HasCategory| |#2| (QUOTE (-1044))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092)))) (|HasAttribute| |#2| (QUOTE -4400)) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))))
(-240)
((|constructor| (NIL "DisplayPackage allows one to print strings in a nice manner,{} including highlighting substrings.")) (|sayLength| (((|Integer|) (|List| (|String|))) "\\spad{sayLength(l)} returns the length of a list of strings \\spad{l} as an integer.") (((|Integer|) (|String|)) "\\spad{sayLength(s)} returns the length of a string \\spad{s} as an integer.")) (|say| (((|Void|) (|List| (|String|))) "\\spad{say(l)} sends a list of strings \\spad{l} to output.") (((|Void|) (|String|)) "\\spad{say(s)} sends a string \\spad{s} to output.")) (|center| (((|List| (|String|)) (|List| (|String|)) (|Integer|) (|String|)) "\\spad{center(l,{}i,{}s)} takes a list of strings \\spad{l},{} and centers them within a list of strings which is \\spad{i} characters long,{} in which the remaining spaces are filled with strings composed of as many repetitions as possible of the last string parameter \\spad{s}.") (((|String|) (|String|) (|Integer|) (|String|)) "\\spad{center(s,{}i,{}s)} takes the first string \\spad{s},{} and centers it within a string of length \\spad{i},{} in which the other elements of the string are composed of as many replications as possible of the second indicated string,{} \\spad{s} which must have a length greater than that of an empty string.")) (|copies| (((|String|) (|Integer|) (|String|)) "\\spad{copies(i,{}s)} will take a string \\spad{s} and create a new string composed of \\spad{i} copies of \\spad{s}.")) (|newLine| (((|String|)) "\\spad{newLine()} sends a new line command to output.")) (|bright| (((|List| (|String|)) (|List| (|String|))) "\\spad{bright(l)} sets the font property of a list of strings,{} \\spad{l},{} to bold-face type.") (((|List| (|String|)) (|String|)) "\\spad{bright(s)} sets the font property of the string \\spad{s} to bold-face type.")))
NIL
@@ -898,7 +898,7 @@ NIL
NIL
(-242)
((|constructor| (NIL "A division ring (sometimes called a skew field),{} \\spadignore{i.e.} a not necessarily commutative ring where all non-zero elements have multiplicative inverses.")) (|inv| (($ $) "\\spad{inv x} returns the multiplicative inverse of \\spad{x}. Error: if \\spad{x} is 0.")) (** (($ $ (|Integer|)) "\\spad{x**n} returns \\spad{x} raised to the integer power \\spad{n}.")))
-((-4395 . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-243 S)
((|constructor| (NIL "A doubly-linked aggregate serves as a model for a doubly-linked list,{} that is,{} a list which can has links to both next and previous nodes and thus can be efficiently traversed in both directions.")) (|setnext!| (($ $ $) "\\spad{setnext!(u,{}v)} destructively sets the next node of doubly-linked aggregate \\spad{u} to \\spad{v},{} returning \\spad{v}.")) (|setprevious!| (($ $ $) "\\spad{setprevious!(u,{}v)} destructively sets the previous node of doubly-linked aggregate \\spad{u} to \\spad{v},{} returning \\spad{v}.")) (|concat!| (($ $ $) "\\spad{concat!(u,{}v)} destructively concatenates doubly-linked aggregate \\spad{v} to the end of doubly-linked aggregate \\spad{u}.")) (|next| (($ $) "\\spad{next(l)} returns the doubly-linked aggregate beginning with its next element. Error: if \\spad{l} has no next element. Note: \\axiom{next(\\spad{l}) = rest(\\spad{l})} and \\axiom{previous(next(\\spad{l})) = \\spad{l}}.")) (|previous| (($ $) "\\spad{previous(l)} returns the doubly-link list beginning with its previous element. Error: if \\spad{l} has no previous element. Note: \\axiom{next(previous(\\spad{l})) = \\spad{l}}.")) (|tail| (($ $) "\\spad{tail(l)} returns the doubly-linked aggregate \\spad{l} starting at its second element. Error: if \\spad{l} is empty.")) (|head| (($ $) "\\spad{head(l)} returns the first element of a doubly-linked aggregate \\spad{l}. Error: if \\spad{l} is empty.")) (|last| ((|#1| $) "\\spad{last(l)} returns the last element of a doubly-linked aggregate \\spad{l}. Error: if \\spad{l} is empty.")))
@@ -906,7 +906,7 @@ NIL
NIL
(-244 S)
((|constructor| (NIL "This domain provides some nice functions on lists")) (|elt| (((|NonNegativeInteger|) $ "count") "\\axiom{\\spad{l}.\"count\"} returns the number of elements in \\axiom{\\spad{l}}.") (($ $ "sort") "\\axiom{\\spad{l}.sort} returns \\axiom{\\spad{l}} with elements sorted. Note: \\axiom{\\spad{l}.sort = sort(\\spad{l})}") (($ $ "unique") "\\axiom{\\spad{l}.unique} returns \\axiom{\\spad{l}} with duplicates removed. Note: \\axiom{\\spad{l}.unique = removeDuplicates(\\spad{l})}.")) (|datalist| (($ (|List| |#1|)) "\\spad{datalist(l)} creates a datalist from \\spad{l}")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
(-245 M)
((|constructor| (NIL "DiscreteLogarithmPackage implements help functions for discrete logarithms in monoids using small cyclic groups.")) (|shanksDiscLogAlgorithm| (((|Union| (|NonNegativeInteger|) "failed") |#1| |#1| (|NonNegativeInteger|)) "\\spad{shanksDiscLogAlgorithm(b,{}a,{}p)} computes \\spad{s} with \\spad{b**s = a} for assuming that \\spad{a} and \\spad{b} are elements in a 'small' cyclic group of order \\spad{p} by Shank\\spad{'s} algorithm. Note: this is a subroutine of the function \\spadfun{discreteLog}.")) (** ((|#1| |#1| (|Integer|)) "\\spad{x ** n} returns \\spad{x} raised to the integer power \\spad{n}")))
@@ -914,8 +914,8 @@ NIL
NIL
(-246 |vl| R)
((|constructor| (NIL "\\indented{2}{This type supports distributed multivariate polynomials} whose variables are from a user specified list of symbols. The coefficient ring may be non commutative,{} but the variables are assumed to commute. The term ordering is lexicographic specified by the variable list parameter with the most significant variable first in the list.")) (|reorder| (($ $ (|List| (|Integer|))) "\\spad{reorder(p,{} perm)} applies the permutation perm to the variables in a polynomial and returns the new correctly ordered polynomial")))
-(((-4404 "*") |has| |#2| (-171)) (-4395 |has| |#2| (-554)) (-4400 |has| |#2| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#2| (QUOTE (-904))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-554)))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362))) (|HasAttribute| |#2| (QUOTE -4400)) (|HasCategory| |#2| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-144)))))
+(((-4405 "*") |has| |#2| (-171)) (-4396 |has| |#2| (-554)) (-4401 |has| |#2| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#2| (QUOTE (-904))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-554)))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362))) (|HasAttribute| |#2| (QUOTE -4401)) (|HasCategory| |#2| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-144)))))
(-247)
((|showSummary| (((|Void|) $) "\\spad{showSummary(d)} prints out implementation detail information of domain \\spad{`d'}.")) (|reflect| (($ (|ConstructorCall|)) "\\spad{reflect cc} returns the domain object designated by the ConstructorCall syntax `cc'. The constructor implied by `cc' must be known to the system since it is instantiated.")) (|reify| (((|ConstructorCall|) $) "\\spad{reify(d)} returns the abstract syntax for the domain \\spad{`x'}.")) (|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Create: October 18,{} 2007. Date Last Updated: December 20,{} 2008. Basic Operations: coerce,{} reify Related Constructors: Type,{} Syntax,{} OutputForm Also See: Type,{} ConstructorCall") (((|DomainConstructor|) $) "\\spad{constructor(d)} returns the domain constructor that is instantiated to the domain object \\spad{`d'}.")))
NIL
@@ -926,23 +926,23 @@ NIL
NIL
(-249 |n| R M S)
((|constructor| (NIL "This constructor provides a direct product type with a left matrix-module view.")))
-((-4399 -4037 (-2246 (|has| |#4| (-1044)) (|has| |#4| (-232))) (-2246 (|has| |#4| (-1044)) (|has| |#4| (-895 (-1168)))) (|has| |#4| (-6 -4399)) (-2246 (|has| |#4| (-1044)) (|has| |#4| (-635 (-562))))) (-4396 |has| |#4| (-1044)) (-4397 |has| |#4| (-1044)) ((-4404 "*") |has| |#4| (-171)) (-4402 . T))
-((-4037 (-12 (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-362))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-367))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-721))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-788))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-843))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#4| (QUOTE (-362))) (-4037 (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (QUOTE (-362))) (|HasCategory| |#4| (QUOTE (-1044)))) (-4037 (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (QUOTE (-362)))) (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (QUOTE (-788))) (-4037 (|HasCategory| |#4| (QUOTE (-788))) (|HasCategory| |#4| (QUOTE (-843)))) (|HasCategory| |#4| (QUOTE (-843))) (|HasCategory| |#4| (QUOTE (-721))) (|HasCategory| |#4| (QUOTE (-171))) (-4037 (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (QUOTE (-1044)))) (|HasCategory| |#4| (QUOTE (-367))) (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (QUOTE (-1044)))) (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-171)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-232)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-362)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-367)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-721)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-788)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-843)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-1044)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-1092))))) (-4037 (-12 (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-362))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-367))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-721))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-788))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-843))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-1044))) (-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-362))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-367))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-721))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-788))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-843))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| (-562) (QUOTE (-845))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (QUOTE (-1044)))) (-4037 (-12 (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (QUOTE (-1044)))) (|HasCategory| |#4| (QUOTE (-721))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-4037 (|HasCategory| |#4| (QUOTE (-1044))) (-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-1092)))) (-4037 (|HasAttribute| |#4| (QUOTE -4399)) (-12 (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (QUOTE (-1044)))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#4| (QUOTE (-130))) (|HasCategory| |#4| (QUOTE (-25))) (|HasCategory| |#4| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))))
+((-4400 -4037 (-2245 (|has| |#4| (-1044)) (|has| |#4| (-232))) (-2245 (|has| |#4| (-1044)) (|has| |#4| (-895 (-1168)))) (|has| |#4| (-6 -4400)) (-2245 (|has| |#4| (-1044)) (|has| |#4| (-635 (-562))))) (-4397 |has| |#4| (-1044)) (-4398 |has| |#4| (-1044)) ((-4405 "*") |has| |#4| (-171)) (-4403 . T))
+((-4037 (-12 (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-362))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-367))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-721))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-788))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-843))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#4| (QUOTE (-362))) (-4037 (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (QUOTE (-362))) (|HasCategory| |#4| (QUOTE (-1044)))) (-4037 (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (QUOTE (-362)))) (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (QUOTE (-788))) (-4037 (|HasCategory| |#4| (QUOTE (-788))) (|HasCategory| |#4| (QUOTE (-843)))) (|HasCategory| |#4| (QUOTE (-843))) (|HasCategory| |#4| (QUOTE (-721))) (|HasCategory| |#4| (QUOTE (-171))) (-4037 (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (QUOTE (-1044)))) (|HasCategory| |#4| (QUOTE (-367))) (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (QUOTE (-1044)))) (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-171)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-232)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-362)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-367)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-721)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-788)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-843)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-1044)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-1092))))) (-4037 (-12 (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-362))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-367))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-721))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-788))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-843))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-1044))) (-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-171))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-362))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-367))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-721))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-788))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-843))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| (-562) (QUOTE (-845))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (QUOTE (-1044)))) (-4037 (-12 (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (QUOTE (-1044)))) (|HasCategory| |#4| (QUOTE (-721))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562))))) (-4037 (|HasCategory| |#4| (QUOTE (-1044))) (-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (QUOTE (-1092)))) (-4037 (|HasAttribute| |#4| (QUOTE -4400)) (-12 (|HasCategory| |#4| (QUOTE (-232))) (|HasCategory| |#4| (QUOTE (-1044)))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#4| (QUOTE (-1044))) (|HasCategory| |#4| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#4| (QUOTE (-130))) (|HasCategory| |#4| (QUOTE (-25))) (|HasCategory| |#4| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))))
(-250 |n| R S)
((|constructor| (NIL "This constructor provides a direct product of \\spad{R}-modules with an \\spad{R}-module view.")))
-((-4399 -4037 (-2246 (|has| |#3| (-1044)) (|has| |#3| (-232))) (-2246 (|has| |#3| (-1044)) (|has| |#3| (-895 (-1168)))) (|has| |#3| (-6 -4399)) (-2246 (|has| |#3| (-1044)) (|has| |#3| (-635 (-562))))) (-4396 |has| |#3| (-1044)) (-4397 |has| |#3| (-1044)) ((-4404 "*") |has| |#3| (-171)) (-4402 . T))
-((-4037 (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#3| (QUOTE (-362))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-1044)))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-362)))) (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (QUOTE (-788))) (-4037 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (QUOTE (-843)))) (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (QUOTE (-171))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-1044)))) (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-171)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-232)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-362)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-367)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-721)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-788)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-843)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1044)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1092))))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1044))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| (-562) (QUOTE (-845))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (-4037 (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (|HasCategory| |#3| (QUOTE (-721))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-4037 (|HasCategory| |#3| (QUOTE (-1044))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1092)))) (-4037 (|HasAttribute| |#3| (QUOTE -4399)) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))))
+((-4400 -4037 (-2245 (|has| |#3| (-1044)) (|has| |#3| (-232))) (-2245 (|has| |#3| (-1044)) (|has| |#3| (-895 (-1168)))) (|has| |#3| (-6 -4400)) (-2245 (|has| |#3| (-1044)) (|has| |#3| (-635 (-562))))) (-4397 |has| |#3| (-1044)) (-4398 |has| |#3| (-1044)) ((-4405 "*") |has| |#3| (-171)) (-4403 . T))
+((-4037 (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#3| (QUOTE (-362))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-1044)))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-362)))) (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (QUOTE (-788))) (-4037 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (QUOTE (-843)))) (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (QUOTE (-171))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-1044)))) (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-171)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-232)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-362)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-367)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-721)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-788)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-843)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1044)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1092))))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1044))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| (-562) (QUOTE (-845))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (-4037 (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (|HasCategory| |#3| (QUOTE (-721))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-4037 (|HasCategory| |#3| (QUOTE (-1044))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1092)))) (-4037 (|HasAttribute| |#3| (QUOTE -4400)) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))))
(-251 A R S V E)
((|constructor| (NIL "\\spadtype{DifferentialPolynomialCategory} is a category constructor specifying basic functions in an ordinary differential polynomial ring with a given ordered set of differential indeterminates. In addition,{} it implements defaults for the basic functions. The functions \\spadfun{order} and \\spadfun{weight} are extended from the set of derivatives of differential indeterminates to the set of differential polynomials. Other operations provided on differential polynomials are \\spadfun{leader},{} \\spadfun{initial},{} \\spadfun{separant},{} \\spadfun{differentialVariables},{} and \\spadfun{isobaric?}. Furthermore,{} if the ground ring is a differential ring,{} then evaluation (substitution of differential indeterminates by elements of the ground ring or by differential polynomials) is provided by \\spadfun{eval}. A convenient way of referencing derivatives is provided by the functions \\spadfun{makeVariable}. \\blankline To construct a domain using this constructor,{} one needs to provide a ground ring \\spad{R},{} an ordered set \\spad{S} of differential indeterminates,{} a ranking \\spad{V} on the set of derivatives of the differential indeterminates,{} and a set \\spad{E} of exponents in bijection with the set of differential monomials in the given differential indeterminates. \\blankline")) (|separant| (($ $) "\\spad{separant(p)} returns the partial derivative of the differential polynomial \\spad{p} with respect to its leader.")) (|initial| (($ $) "\\spad{initial(p)} returns the leading coefficient when the differential polynomial \\spad{p} is written as a univariate polynomial in its leader.")) (|leader| ((|#4| $) "\\spad{leader(p)} returns the derivative of the highest rank appearing in the differential polynomial \\spad{p} Note: an error occurs if \\spad{p} is in the ground ring.")) (|isobaric?| (((|Boolean|) $) "\\spad{isobaric?(p)} returns \\spad{true} if every differential monomial appearing in the differential polynomial \\spad{p} has same weight,{} and returns \\spad{false} otherwise.")) (|weight| (((|NonNegativeInteger|) $ |#3|) "\\spad{weight(p,{} s)} returns the maximum weight of all differential monomials appearing in the differential polynomial \\spad{p} when \\spad{p} is viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.") (((|NonNegativeInteger|) $) "\\spad{weight(p)} returns the maximum weight of all differential monomials appearing in the differential polynomial \\spad{p}.")) (|weights| (((|List| (|NonNegativeInteger|)) $ |#3|) "\\spad{weights(p,{} s)} returns a list of weights of differential monomials appearing in the differential polynomial \\spad{p} when \\spad{p} is viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.") (((|List| (|NonNegativeInteger|)) $) "\\spad{weights(p)} returns a list of weights of differential monomials appearing in differential polynomial \\spad{p}.")) (|degree| (((|NonNegativeInteger|) $ |#3|) "\\spad{degree(p,{} s)} returns the maximum degree of the differential polynomial \\spad{p} viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(p)} returns the order of the differential polynomial \\spad{p},{} which is the maximum number of differentiations of a differential indeterminate,{} among all those appearing in \\spad{p}.") (((|NonNegativeInteger|) $ |#3|) "\\spad{order(p,{}s)} returns the order of the differential polynomial \\spad{p} in differential indeterminate \\spad{s}.")) (|differentialVariables| (((|List| |#3|) $) "\\spad{differentialVariables(p)} returns a list of differential indeterminates occurring in a differential polynomial \\spad{p}.")) (|makeVariable| (((|Mapping| $ (|NonNegativeInteger|)) $) "\\spad{makeVariable(p)} views \\spad{p} as an element of a differential ring,{} in such a way that the \\spad{n}-th derivative of \\spad{p} may be simply referenced as \\spad{z}.\\spad{n} where \\spad{z} \\spad{:=} makeVariable(\\spad{p}). Note: In the interpreter,{} \\spad{z} is given as an internal map,{} which may be ignored.") (((|Mapping| $ (|NonNegativeInteger|)) |#3|) "\\spad{makeVariable(s)} views \\spad{s} as a differential indeterminate,{} in such a way that the \\spad{n}-th derivative of \\spad{s} may be simply referenced as \\spad{z}.\\spad{n} where \\spad{z} :=makeVariable(\\spad{s}). Note: In the interpreter,{} \\spad{z} is given as an internal map,{} which may be ignored.")))
NIL
((|HasCategory| |#2| (QUOTE (-232))))
(-252 R S V E)
((|constructor| (NIL "\\spadtype{DifferentialPolynomialCategory} is a category constructor specifying basic functions in an ordinary differential polynomial ring with a given ordered set of differential indeterminates. In addition,{} it implements defaults for the basic functions. The functions \\spadfun{order} and \\spadfun{weight} are extended from the set of derivatives of differential indeterminates to the set of differential polynomials. Other operations provided on differential polynomials are \\spadfun{leader},{} \\spadfun{initial},{} \\spadfun{separant},{} \\spadfun{differentialVariables},{} and \\spadfun{isobaric?}. Furthermore,{} if the ground ring is a differential ring,{} then evaluation (substitution of differential indeterminates by elements of the ground ring or by differential polynomials) is provided by \\spadfun{eval}. A convenient way of referencing derivatives is provided by the functions \\spadfun{makeVariable}. \\blankline To construct a domain using this constructor,{} one needs to provide a ground ring \\spad{R},{} an ordered set \\spad{S} of differential indeterminates,{} a ranking \\spad{V} on the set of derivatives of the differential indeterminates,{} and a set \\spad{E} of exponents in bijection with the set of differential monomials in the given differential indeterminates. \\blankline")) (|separant| (($ $) "\\spad{separant(p)} returns the partial derivative of the differential polynomial \\spad{p} with respect to its leader.")) (|initial| (($ $) "\\spad{initial(p)} returns the leading coefficient when the differential polynomial \\spad{p} is written as a univariate polynomial in its leader.")) (|leader| ((|#3| $) "\\spad{leader(p)} returns the derivative of the highest rank appearing in the differential polynomial \\spad{p} Note: an error occurs if \\spad{p} is in the ground ring.")) (|isobaric?| (((|Boolean|) $) "\\spad{isobaric?(p)} returns \\spad{true} if every differential monomial appearing in the differential polynomial \\spad{p} has same weight,{} and returns \\spad{false} otherwise.")) (|weight| (((|NonNegativeInteger|) $ |#2|) "\\spad{weight(p,{} s)} returns the maximum weight of all differential monomials appearing in the differential polynomial \\spad{p} when \\spad{p} is viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.") (((|NonNegativeInteger|) $) "\\spad{weight(p)} returns the maximum weight of all differential monomials appearing in the differential polynomial \\spad{p}.")) (|weights| (((|List| (|NonNegativeInteger|)) $ |#2|) "\\spad{weights(p,{} s)} returns a list of weights of differential monomials appearing in the differential polynomial \\spad{p} when \\spad{p} is viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.") (((|List| (|NonNegativeInteger|)) $) "\\spad{weights(p)} returns a list of weights of differential monomials appearing in differential polynomial \\spad{p}.")) (|degree| (((|NonNegativeInteger|) $ |#2|) "\\spad{degree(p,{} s)} returns the maximum degree of the differential polynomial \\spad{p} viewed as a differential polynomial in the differential indeterminate \\spad{s} alone.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(p)} returns the order of the differential polynomial \\spad{p},{} which is the maximum number of differentiations of a differential indeterminate,{} among all those appearing in \\spad{p}.") (((|NonNegativeInteger|) $ |#2|) "\\spad{order(p,{}s)} returns the order of the differential polynomial \\spad{p} in differential indeterminate \\spad{s}.")) (|differentialVariables| (((|List| |#2|) $) "\\spad{differentialVariables(p)} returns a list of differential indeterminates occurring in a differential polynomial \\spad{p}.")) (|makeVariable| (((|Mapping| $ (|NonNegativeInteger|)) $) "\\spad{makeVariable(p)} views \\spad{p} as an element of a differential ring,{} in such a way that the \\spad{n}-th derivative of \\spad{p} may be simply referenced as \\spad{z}.\\spad{n} where \\spad{z} \\spad{:=} makeVariable(\\spad{p}). Note: In the interpreter,{} \\spad{z} is given as an internal map,{} which may be ignored.") (((|Mapping| $ (|NonNegativeInteger|)) |#2|) "\\spad{makeVariable(s)} views \\spad{s} as a differential indeterminate,{} in such a way that the \\spad{n}-th derivative of \\spad{s} may be simply referenced as \\spad{z}.\\spad{n} where \\spad{z} :=makeVariable(\\spad{s}). Note: In the interpreter,{} \\spad{z} is given as an internal map,{} which may be ignored.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
NIL
(-253 S)
((|constructor| (NIL "A dequeue is a doubly ended stack,{} that is,{} a bag where first items inserted are the first items extracted,{} at either the front or the back end of the data structure.")) (|reverse!| (($ $) "\\spad{reverse!(d)} destructively replaces \\spad{d} by its reverse dequeue,{} \\spadignore{i.e.} the top (front) element is now the bottom (back) element,{} and so on.")) (|extractBottom!| ((|#1| $) "\\spad{extractBottom!(d)} destructively extracts the bottom (back) element from the dequeue \\spad{d}. Error: if \\spad{d} is empty.")) (|extractTop!| ((|#1| $) "\\spad{extractTop!(d)} destructively extracts the top (front) element from the dequeue \\spad{d}. Error: if \\spad{d} is empty.")) (|insertBottom!| ((|#1| |#1| $) "\\spad{insertBottom!(x,{}d)} destructively inserts \\spad{x} into the dequeue \\spad{d} at the bottom (back) of the dequeue.")) (|insertTop!| ((|#1| |#1| $) "\\spad{insertTop!(x,{}d)} destructively inserts \\spad{x} into the dequeue \\spad{d},{} that is,{} at the top (front) of the dequeue. The element previously at the top of the dequeue becomes the second in the dequeue,{} and so on.")) (|bottom!| ((|#1| $) "\\spad{bottom!(d)} returns the element at the bottom (back) of the dequeue.")) (|top!| ((|#1| $) "\\spad{top!(d)} returns the element at the top (front) of the dequeue.")) (|height| (((|NonNegativeInteger|) $) "\\spad{height(d)} returns the number of elements in dequeue \\spad{d}. Note: \\axiom{height(\\spad{d}) = \\# \\spad{d}}.")) (|dequeue| (($ (|List| |#1|)) "\\spad{dequeue([x,{}y,{}...,{}z])} creates a dequeue with first (top or front) element \\spad{x},{} second element \\spad{y},{}...,{}and last (bottom or back) element \\spad{z}.") (($) "\\spad{dequeue()}\\$\\spad{D} creates an empty dequeue of type \\spad{D}.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
NIL
(-254)
((|constructor| (NIL "TopLevelDrawFunctionsForCompiledFunctions provides top level functions for drawing graphics of expressions.")) (|recolor| (((|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) "\\spad{recolor()},{} uninteresting to top level user; exported in order to compile package.")) (|makeObject| (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSurface| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{makeObject(surface(f,{}g,{}h),{}a..b,{}c..d,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{x = f(u,{}v)},{} \\spad{y = g(u,{}v)},{} \\spad{z = h(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}.") (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSurface| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(surface(f,{}g,{}h),{}a..b,{}c..d,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{x = f(u,{}v)},{} \\spad{y = g(u,{}v)},{} \\spad{z = h(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{makeObject(f,{}a..b,{}c..d,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{f(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(f,{}a..b,{}c..d,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric surface \\spad{f(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}; The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{makeObject(f,{}a..b,{}c..d)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of \\spad{z = f(x,{}y)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{y} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(f,{}a..b,{}c..d,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of \\spad{z = f(x,{}y)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{y} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)},{} and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|Float|))) "\\spad{makeObject(sp,{}curve(f,{}g,{}h),{}a..b)} returns the space \\spad{sp} of the domain \\spadtype{ThreeSpace} with the addition of the graph of the parametric curve \\spad{x = f(t),{} y = g(t),{} z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}.") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(curve(f,{}g,{}h),{}a..b,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric curve \\spad{x = f(t),{} y = g(t),{} z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSpaceCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|))) "\\spad{makeObject(sp,{}curve(f,{}g,{}h),{}a..b)} returns the space \\spad{sp} of the domain \\spadtype{ThreeSpace} with the addition of the graph of the parametric curve \\spad{x = f(t),{} y = g(t),{} z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}.") (((|ThreeSpace| (|DoubleFloat|)) (|ParametricSpaceCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{makeObject(curve(f,{}g,{}h),{}a..b,{}l)} returns a space of the domain \\spadtype{ThreeSpace} which contains the graph of the parametric curve \\spad{x = f(t),{} y = g(t),{} z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}; The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.")) (|draw| (((|ThreeDimensionalViewport|) (|ParametricSurface| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{draw(surface(f,{}g,{}h),{}a..b,{}c..d)} draws the graph of the parametric surface \\spad{x = f(u,{}v)},{} \\spad{y = g(u,{}v)},{} \\spad{z = h(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}.") (((|ThreeDimensionalViewport|) (|ParametricSurface| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(surface(f,{}g,{}h),{}a..b,{}c..d)} draws the graph of the parametric surface \\spad{x = f(u,{}v)},{} \\spad{y = g(u,{}v)},{} \\spad{z = h(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}; The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{draw(f,{}a..b,{}c..d)} draws the graph of the parametric surface \\spad{f(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)} The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f,{}a..b,{}c..d)} draws the graph of the parametric surface \\spad{f(u,{}v)} as \\spad{u} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{v} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|))) "\\spad{draw(f,{}a..b,{}c..d)} draws the graph of \\spad{z = f(x,{}y)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{y} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}.") (((|ThreeDimensionalViewport|) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f,{}a..b,{}c..d,{}l)} draws the graph of \\spad{z = f(x,{}y)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)} and \\spad{y} ranges from \\spad{min(c,{}d)} to \\spad{max(c,{}d)}. and the options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|Float|))) "\\spad{draw(f,{}a..b,{}l)} draws the graph of the parametric curve \\spad{f} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}.") (((|ThreeDimensionalViewport|) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f,{}a..b,{}l)} draws the graph of the parametric curve \\spad{f} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|ThreeDimensionalViewport|) (|ParametricSpaceCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|))) "\\spad{draw(curve(f,{}g,{}h),{}a..b,{}l)} draws the graph of the parametric curve \\spad{x = f(t),{} y = g(t),{} z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}.") (((|ThreeDimensionalViewport|) (|ParametricSpaceCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(curve(f,{}g,{}h),{}a..b,{}l)} draws the graph of the parametric curve \\spad{x = f(t),{} y = g(t),{} z = h(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|TwoDimensionalViewport|) (|ParametricPlaneCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|))) "\\spad{draw(curve(f,{}g),{}a..b)} draws the graph of the parametric curve \\spad{x = f(t),{} y = g(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}.") (((|TwoDimensionalViewport|) (|ParametricPlaneCurve| (|Mapping| (|DoubleFloat|) (|DoubleFloat|))) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(curve(f,{}g),{}a..b,{}l)} draws the graph of the parametric curve \\spad{x = f(t),{} y = g(t)} as \\spad{t} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.") (((|TwoDimensionalViewport|) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|))) "\\spad{draw(f,{}a..b)} draws the graph of \\spad{y = f(x)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}.") (((|TwoDimensionalViewport|) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|Float|)) (|List| (|DrawOption|))) "\\spad{draw(f,{}a..b,{}l)} draws the graph of \\spad{y = f(x)} as \\spad{x} ranges from \\spad{min(a,{}b)} to \\spad{max(a,{}b)}. The options contained in the list \\spad{l} of the domain \\spad{DrawOption} are applied.")))
@@ -982,8 +982,8 @@ NIL
NIL
(-263 R S V)
((|constructor| (NIL "\\spadtype{DifferentialSparseMultivariatePolynomial} implements an ordinary differential polynomial ring by combining a domain belonging to the category \\spadtype{DifferentialVariableCategory} with the domain \\spadtype{SparseMultivariatePolynomial}. \\blankline")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-904))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#3| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#3| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#3| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#3| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasAttribute| |#1| (QUOTE -4400)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-904))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#3| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#3| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#3| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#3| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasAttribute| |#1| (QUOTE -4401)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
(-264 A S)
((|constructor| (NIL "\\spadtype{DifferentialVariableCategory} constructs the set of derivatives of a given set of (ordinary) differential indeterminates. If \\spad{x},{}...,{}\\spad{y} is an ordered set of differential indeterminates,{} and the prime notation is used for differentiation,{} then the set of derivatives (including zero-th order) of the differential indeterminates is \\spad{x},{}\\spad{x'},{}\\spad{x''},{}...,{} \\spad{y},{}\\spad{y'},{}\\spad{y''},{}... (Note: in the interpreter,{} the \\spad{n}-th derivative of \\spad{y} is displayed as \\spad{y} with a subscript \\spad{n}.) This set is viewed as a set of algebraic indeterminates,{} totally ordered in a way compatible with differentiation and the given order on the differential indeterminates. Such a total order is called a ranking of the differential indeterminates. \\blankline A domain in this category is needed to construct a differential polynomial domain. Differential polynomials are ordered by a ranking on the derivatives,{} and by an order (extending the ranking) on on the set of differential monomials. One may thus associate a domain in this category with a ranking of the differential indeterminates,{} just as one associates a domain in the category \\spadtype{OrderedAbelianMonoidSup} with an ordering of the set of monomials in a set of algebraic indeterminates. The ranking is specified through the binary relation \\spadfun{<}. For example,{} one may define one derivative to be less than another by lexicographically comparing first the \\spadfun{order},{} then the given order of the differential indeterminates appearing in the derivatives. This is the default implementation. \\blankline The notion of weight generalizes that of degree. A polynomial domain may be made into a graded ring if a weight function is given on the set of indeterminates,{} Very often,{} a grading is the first step in ordering the set of monomials. For differential polynomial domains,{} this constructor provides a function \\spadfun{weight},{} which allows the assignment of a non-negative number to each derivative of a differential indeterminate. For example,{} one may define the weight of a derivative to be simply its \\spadfun{order} (this is the default assignment). This weight function can then be extended to the set of all differential polynomials,{} providing a graded ring structure.")) (|coerce| (($ |#2|) "\\spad{coerce(s)} returns \\spad{s},{} viewed as the zero-th order derivative of \\spad{s}.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(v,{} n)} returns the \\spad{n}-th derivative of \\spad{v}.") (($ $) "\\spad{differentiate(v)} returns the derivative of \\spad{v}.")) (|weight| (((|NonNegativeInteger|) $) "\\spad{weight(v)} returns the weight of the derivative \\spad{v}.")) (|variable| ((|#2| $) "\\spad{variable(v)} returns \\spad{s} if \\spad{v} is any derivative of the differential indeterminate \\spad{s}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(v)} returns \\spad{n} if \\spad{v} is the \\spad{n}-th derivative of any differential indeterminate.")) (|makeVariable| (($ |#2| (|NonNegativeInteger|)) "\\spad{makeVariable(s,{} n)} returns the \\spad{n}-th derivative of a differential indeterminate \\spad{s} as an algebraic indeterminate.")))
NIL
@@ -1028,11 +1028,11 @@ NIL
((|constructor| (NIL "A domain used in the construction of the exterior algebra on a set \\spad{X} over a ring \\spad{R}. This domain represents the set of all ordered subsets of the set \\spad{X},{} assumed to be in correspondance with {1,{}2,{}3,{} ...}. The ordered subsets are themselves ordered lexicographically and are in bijective correspondance with an ordered basis of the exterior algebra. In this domain we are dealing strictly with the exponents of basis elements which can only be 0 or 1. \\blankline The multiplicative identity element of the exterior algebra corresponds to the empty subset of \\spad{X}. A coerce from List Integer to an ordered basis element is provided to allow the convenient input of expressions. Another exported function forgets the ordered structure and simply returns the list corresponding to an ordered subset.")) (|Nul| (($ (|NonNegativeInteger|)) "\\spad{Nul()} gives the basis element 1 for the algebra generated by \\spad{n} generators.")) (|exponents| (((|List| (|Integer|)) $) "\\spad{exponents(x)} converts a domain element into a list of zeros and ones corresponding to the exponents in the basis element that \\spad{x} represents.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(x)} gives the numbers of 1\\spad{'s} in \\spad{x},{} \\spadignore{i.e.} the number of non-zero exponents in the basis element that \\spad{x} represents.")) (|coerce| (($ (|List| (|Integer|))) "\\spad{coerce(l)} converts a list of 0\\spad{'s} and 1\\spad{'s} into a basis element,{} where 1 (respectively 0) designates that the variable of the corresponding index of \\spad{l} is (respectively,{} is not) present. Error: if an element of \\spad{l} is not 0 or 1.")))
NIL
NIL
-(-275 R -3197)
+(-275 R -3196)
((|constructor| (NIL "Provides elementary functions over an integral domain.")) (|localReal?| (((|Boolean|) |#2|) "\\spad{localReal?(x)} should be local but conditional")) (|specialTrigs| (((|Union| |#2| "failed") |#2| (|List| (|Record| (|:| |func| |#2|) (|:| |pole| (|Boolean|))))) "\\spad{specialTrigs(x,{}l)} should be local but conditional")) (|iiacsch| ((|#2| |#2|) "\\spad{iiacsch(x)} should be local but conditional")) (|iiasech| ((|#2| |#2|) "\\spad{iiasech(x)} should be local but conditional")) (|iiacoth| ((|#2| |#2|) "\\spad{iiacoth(x)} should be local but conditional")) (|iiatanh| ((|#2| |#2|) "\\spad{iiatanh(x)} should be local but conditional")) (|iiacosh| ((|#2| |#2|) "\\spad{iiacosh(x)} should be local but conditional")) (|iiasinh| ((|#2| |#2|) "\\spad{iiasinh(x)} should be local but conditional")) (|iicsch| ((|#2| |#2|) "\\spad{iicsch(x)} should be local but conditional")) (|iisech| ((|#2| |#2|) "\\spad{iisech(x)} should be local but conditional")) (|iicoth| ((|#2| |#2|) "\\spad{iicoth(x)} should be local but conditional")) (|iitanh| ((|#2| |#2|) "\\spad{iitanh(x)} should be local but conditional")) (|iicosh| ((|#2| |#2|) "\\spad{iicosh(x)} should be local but conditional")) (|iisinh| ((|#2| |#2|) "\\spad{iisinh(x)} should be local but conditional")) (|iiacsc| ((|#2| |#2|) "\\spad{iiacsc(x)} should be local but conditional")) (|iiasec| ((|#2| |#2|) "\\spad{iiasec(x)} should be local but conditional")) (|iiacot| ((|#2| |#2|) "\\spad{iiacot(x)} should be local but conditional")) (|iiatan| ((|#2| |#2|) "\\spad{iiatan(x)} should be local but conditional")) (|iiacos| ((|#2| |#2|) "\\spad{iiacos(x)} should be local but conditional")) (|iiasin| ((|#2| |#2|) "\\spad{iiasin(x)} should be local but conditional")) (|iicsc| ((|#2| |#2|) "\\spad{iicsc(x)} should be local but conditional")) (|iisec| ((|#2| |#2|) "\\spad{iisec(x)} should be local but conditional")) (|iicot| ((|#2| |#2|) "\\spad{iicot(x)} should be local but conditional")) (|iitan| ((|#2| |#2|) "\\spad{iitan(x)} should be local but conditional")) (|iicos| ((|#2| |#2|) "\\spad{iicos(x)} should be local but conditional")) (|iisin| ((|#2| |#2|) "\\spad{iisin(x)} should be local but conditional")) (|iilog| ((|#2| |#2|) "\\spad{iilog(x)} should be local but conditional")) (|iiexp| ((|#2| |#2|) "\\spad{iiexp(x)} should be local but conditional")) (|iisqrt3| ((|#2|) "\\spad{iisqrt3()} should be local but conditional")) (|iisqrt2| ((|#2|) "\\spad{iisqrt2()} should be local but conditional")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(p)} returns an elementary operator with the same symbol as \\spad{p}")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(p)} returns \\spad{true} if operator \\spad{p} is elementary")) (|pi| ((|#2|) "\\spad{\\spad{pi}()} returns the \\spad{pi} operator")) (|acsch| ((|#2| |#2|) "\\spad{acsch(x)} applies the inverse hyperbolic cosecant operator to \\spad{x}")) (|asech| ((|#2| |#2|) "\\spad{asech(x)} applies the inverse hyperbolic secant operator to \\spad{x}")) (|acoth| ((|#2| |#2|) "\\spad{acoth(x)} applies the inverse hyperbolic cotangent operator to \\spad{x}")) (|atanh| ((|#2| |#2|) "\\spad{atanh(x)} applies the inverse hyperbolic tangent operator to \\spad{x}")) (|acosh| ((|#2| |#2|) "\\spad{acosh(x)} applies the inverse hyperbolic cosine operator to \\spad{x}")) (|asinh| ((|#2| |#2|) "\\spad{asinh(x)} applies the inverse hyperbolic sine operator to \\spad{x}")) (|csch| ((|#2| |#2|) "\\spad{csch(x)} applies the hyperbolic cosecant operator to \\spad{x}")) (|sech| ((|#2| |#2|) "\\spad{sech(x)} applies the hyperbolic secant operator to \\spad{x}")) (|coth| ((|#2| |#2|) "\\spad{coth(x)} applies the hyperbolic cotangent operator to \\spad{x}")) (|tanh| ((|#2| |#2|) "\\spad{tanh(x)} applies the hyperbolic tangent operator to \\spad{x}")) (|cosh| ((|#2| |#2|) "\\spad{cosh(x)} applies the hyperbolic cosine operator to \\spad{x}")) (|sinh| ((|#2| |#2|) "\\spad{sinh(x)} applies the hyperbolic sine operator to \\spad{x}")) (|acsc| ((|#2| |#2|) "\\spad{acsc(x)} applies the inverse cosecant operator to \\spad{x}")) (|asec| ((|#2| |#2|) "\\spad{asec(x)} applies the inverse secant operator to \\spad{x}")) (|acot| ((|#2| |#2|) "\\spad{acot(x)} applies the inverse cotangent operator to \\spad{x}")) (|atan| ((|#2| |#2|) "\\spad{atan(x)} applies the inverse tangent operator to \\spad{x}")) (|acos| ((|#2| |#2|) "\\spad{acos(x)} applies the inverse cosine operator to \\spad{x}")) (|asin| ((|#2| |#2|) "\\spad{asin(x)} applies the inverse sine operator to \\spad{x}")) (|csc| ((|#2| |#2|) "\\spad{csc(x)} applies the cosecant operator to \\spad{x}")) (|sec| ((|#2| |#2|) "\\spad{sec(x)} applies the secant operator to \\spad{x}")) (|cot| ((|#2| |#2|) "\\spad{cot(x)} applies the cotangent operator to \\spad{x}")) (|tan| ((|#2| |#2|) "\\spad{tan(x)} applies the tangent operator to \\spad{x}")) (|cos| ((|#2| |#2|) "\\spad{cos(x)} applies the cosine operator to \\spad{x}")) (|sin| ((|#2| |#2|) "\\spad{sin(x)} applies the sine operator to \\spad{x}")) (|log| ((|#2| |#2|) "\\spad{log(x)} applies the logarithm operator to \\spad{x}")) (|exp| ((|#2| |#2|) "\\spad{exp(x)} applies the exponential operator to \\spad{x}")))
NIL
NIL
-(-276 R -3197)
+(-276 R -3196)
((|constructor| (NIL "ElementaryFunctionStructurePackage provides functions to test the algebraic independence of various elementary functions,{} using the Risch structure theorem (real and complex versions). It also provides transformations on elementary functions which are not considered simplifications.")) (|tanQ| ((|#2| (|Fraction| (|Integer|)) |#2|) "\\spad{tanQ(q,{}a)} is a local function with a conditional implementation.")) (|rootNormalize| ((|#2| |#2| (|Kernel| |#2|)) "\\spad{rootNormalize(f,{} k)} returns \\spad{f} rewriting either \\spad{k} which must be an \\spad{n}th-root in terms of radicals already in \\spad{f},{} or some radicals in \\spad{f} in terms of \\spad{k}.")) (|validExponential| (((|Union| |#2| "failed") (|List| (|Kernel| |#2|)) |#2| (|Symbol|)) "\\spad{validExponential([k1,{}...,{}kn],{}f,{}x)} returns \\spad{g} if \\spad{exp(f)=g} and \\spad{g} involves only \\spad{k1...kn},{} and \"failed\" otherwise.")) (|realElementary| ((|#2| |#2| (|Symbol|)) "\\spad{realElementary(f,{}x)} rewrites the kernels of \\spad{f} involving \\spad{x} in terms of the 4 fundamental real transcendental elementary functions: \\spad{log,{} exp,{} tan,{} atan}.") ((|#2| |#2|) "\\spad{realElementary(f)} rewrites \\spad{f} in terms of the 4 fundamental real transcendental elementary functions: \\spad{log,{} exp,{} tan,{} atan}.")) (|rischNormalize| (((|Record| (|:| |func| |#2|) (|:| |kers| (|List| (|Kernel| |#2|))) (|:| |vals| (|List| |#2|))) |#2| (|Symbol|)) "\\spad{rischNormalize(f,{} x)} returns \\spad{[g,{} [k1,{}...,{}kn],{} [h1,{}...,{}hn]]} such that \\spad{g = normalize(f,{} x)} and each \\spad{\\spad{ki}} was rewritten as \\spad{\\spad{hi}} during the normalization.")) (|normalize| ((|#2| |#2| (|Symbol|)) "\\spad{normalize(f,{} x)} rewrites \\spad{f} using the least possible number of real algebraically independent kernels involving \\spad{x}.") ((|#2| |#2|) "\\spad{normalize(f)} rewrites \\spad{f} using the least possible number of real algebraically independent kernels.")))
NIL
NIL
@@ -1054,7 +1054,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))))
(-281 S)
((|constructor| (NIL "An extensible aggregate is one which allows insertion and deletion of entries. These aggregates are models of lists and streams which are represented by linked structures so as to make insertion,{} deletion,{} and concatenation efficient. However,{} access to elements of these extensible aggregates is generally slow since access is made from the end. See \\spadtype{FlexibleArray} for an exception.")) (|removeDuplicates!| (($ $) "\\spad{removeDuplicates!(u)} destructively removes duplicates from \\spad{u}.")) (|select!| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{select!(p,{}u)} destructively changes \\spad{u} by keeping only values \\spad{x} such that \\axiom{\\spad{p}(\\spad{x})}.")) (|merge!| (($ $ $) "\\spad{merge!(u,{}v)} destructively merges \\spad{u} and \\spad{v} in ascending order.") (($ (|Mapping| (|Boolean|) |#1| |#1|) $ $) "\\spad{merge!(p,{}u,{}v)} destructively merges \\spad{u} and \\spad{v} using predicate \\spad{p}.")) (|insert!| (($ $ $ (|Integer|)) "\\spad{insert!(v,{}u,{}i)} destructively inserts aggregate \\spad{v} into \\spad{u} at position \\spad{i}.") (($ |#1| $ (|Integer|)) "\\spad{insert!(x,{}u,{}i)} destructively inserts \\spad{x} into \\spad{u} at position \\spad{i}.")) (|remove!| (($ |#1| $) "\\spad{remove!(x,{}u)} destructively removes all values \\spad{x} from \\spad{u}.") (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{remove!(p,{}u)} destructively removes all elements \\spad{x} of \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}.")) (|delete!| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{delete!(u,{}i..j)} destructively deletes elements \\spad{u}.\\spad{i} through \\spad{u}.\\spad{j}.") (($ $ (|Integer|)) "\\spad{delete!(u,{}i)} destructively deletes the \\axiom{\\spad{i}}th element of \\spad{u}.")) (|concat!| (($ $ $) "\\spad{concat!(u,{}v)} destructively appends \\spad{v} to the end of \\spad{u}. \\spad{v} is unchanged") (($ $ |#1|) "\\spad{concat!(u,{}x)} destructively adds element \\spad{x} to the end of \\spad{u}.")))
-((-4403 . T))
+((-4404 . T))
NIL
(-282 S)
((|constructor| (NIL "Category for the elementary functions.")) (** (($ $ $) "\\spad{x**y} returns \\spad{x} to the power \\spad{y}.")) (|exp| (($ $) "\\spad{exp(x)} returns \\%\\spad{e} to the power \\spad{x}.")) (|log| (($ $) "\\spad{log(x)} returns the natural logarithm of \\spad{x}.")))
@@ -1075,18 +1075,18 @@ NIL
(-286 S |Dom| |Im|)
((|constructor| (NIL "An eltable aggregate is one which can be viewed as a function. For example,{} the list \\axiom{[1,{}7,{}4]} can applied to 0,{}1,{} and 2 respectively will return the integers 1,{}7,{} and 4; thus this list may be viewed as mapping 0 to 1,{} 1 to 7 and 2 to 4. In general,{} an aggregate can map members of a domain {\\em Dom} to an image domain {\\em Im}.")) (|qsetelt!| ((|#3| $ |#2| |#3|) "\\spad{qsetelt!(u,{}x,{}y)} sets the image of \\axiom{\\spad{x}} to be \\axiom{\\spad{y}} under \\axiom{\\spad{u}},{} without checking that \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}}. If such a check is required use the function \\axiom{setelt}.")) (|setelt| ((|#3| $ |#2| |#3|) "\\spad{setelt(u,{}x,{}y)} sets the image of \\spad{x} to be \\spad{y} under \\spad{u},{} assuming \\spad{x} is in the domain of \\spad{u}. Error: if \\spad{x} is not in the domain of \\spad{u}.")) (|qelt| ((|#3| $ |#2|) "\\spad{qelt(u,{} x)} applies \\axiom{\\spad{u}} to \\axiom{\\spad{x}} without checking whether \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}}. If \\axiom{\\spad{x}} is not in the domain of \\axiom{\\spad{u}} a memory-access violation may occur. If a check on whether \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}} is required,{} use the function \\axiom{elt}.")) (|elt| ((|#3| $ |#2| |#3|) "\\spad{elt(u,{} x,{} y)} applies \\spad{u} to \\spad{x} if \\spad{x} is in the domain of \\spad{u},{} and returns \\spad{y} otherwise. For example,{} if \\spad{u} is a polynomial in \\axiom{\\spad{x}} over the rationals,{} \\axiom{elt(\\spad{u},{}\\spad{n},{}0)} may define the coefficient of \\axiom{\\spad{x}} to the power \\spad{n},{} returning 0 when \\spad{n} is out of range.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4403)))
+((|HasAttribute| |#1| (QUOTE -4404)))
(-287 |Dom| |Im|)
((|constructor| (NIL "An eltable aggregate is one which can be viewed as a function. For example,{} the list \\axiom{[1,{}7,{}4]} can applied to 0,{}1,{} and 2 respectively will return the integers 1,{}7,{} and 4; thus this list may be viewed as mapping 0 to 1,{} 1 to 7 and 2 to 4. In general,{} an aggregate can map members of a domain {\\em Dom} to an image domain {\\em Im}.")) (|qsetelt!| ((|#2| $ |#1| |#2|) "\\spad{qsetelt!(u,{}x,{}y)} sets the image of \\axiom{\\spad{x}} to be \\axiom{\\spad{y}} under \\axiom{\\spad{u}},{} without checking that \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}}. If such a check is required use the function \\axiom{setelt}.")) (|setelt| ((|#2| $ |#1| |#2|) "\\spad{setelt(u,{}x,{}y)} sets the image of \\spad{x} to be \\spad{y} under \\spad{u},{} assuming \\spad{x} is in the domain of \\spad{u}. Error: if \\spad{x} is not in the domain of \\spad{u}.")) (|qelt| ((|#2| $ |#1|) "\\spad{qelt(u,{} x)} applies \\axiom{\\spad{u}} to \\axiom{\\spad{x}} without checking whether \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}}. If \\axiom{\\spad{x}} is not in the domain of \\axiom{\\spad{u}} a memory-access violation may occur. If a check on whether \\axiom{\\spad{x}} is in the domain of \\axiom{\\spad{u}} is required,{} use the function \\axiom{elt}.")) (|elt| ((|#2| $ |#1| |#2|) "\\spad{elt(u,{} x,{} y)} applies \\spad{u} to \\spad{x} if \\spad{x} is in the domain of \\spad{u},{} and returns \\spad{y} otherwise. For example,{} if \\spad{u} is a polynomial in \\axiom{\\spad{x}} over the rationals,{} \\axiom{elt(\\spad{u},{}\\spad{n},{}0)} may define the coefficient of \\axiom{\\spad{x}} to the power \\spad{n},{} returning 0 when \\spad{n} is out of range.")))
NIL
NIL
-(-288 S R |Mod| -2925 -1610 |exactQuo|)
+(-288 S R |Mod| -3834 -4103 |exactQuo|)
((|constructor| (NIL "These domains are used for the factorization and gcds of univariate polynomials over the integers in order to work modulo different primes. See \\spadtype{ModularRing},{} \\spadtype{ModularField}")) (|elt| ((|#2| $ |#2|) "\\spad{elt(x,{}r)} or \\spad{x}.\\spad{r} \\undocumented")) (|inv| (($ $) "\\spad{inv(x)} \\undocumented")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} \\undocumented")) (|exQuo| (((|Union| $ "failed") $ $) "\\spad{exQuo(x,{}y)} \\undocumented")) (|reduce| (($ |#2| |#3|) "\\spad{reduce(r,{}m)} \\undocumented")) (|coerce| ((|#2| $) "\\spad{coerce(x)} \\undocumented")) (|modulus| ((|#3| $) "\\spad{modulus(x)} \\undocumented")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-289)
((|constructor| (NIL "Entire Rings (non-commutative Integral Domains),{} \\spadignore{i.e.} a ring not necessarily commutative which has no zero divisors. \\blankline")) (|noZeroDivisors| ((|attribute|) "if a product is zero then one of the factors must be zero.")))
-((-4395 . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-290)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 19,{} 2008. An `Environment' is a stack of scope.")) (|categoryFrame| (($) "the current category environment in the interpreter.")) (|currentEnv| (($) "the current normal environment in effect.")) (|setProperties!| (($ (|Symbol|) (|List| (|Property|)) $) "setBinding!(\\spad{n},{}props,{}\\spad{e}) set the list of properties of \\spad{`n'} to `props' in `e'.")) (|getProperties| (((|Union| (|List| (|Property|)) "failed") (|Symbol|) $) "getBinding(\\spad{n},{}\\spad{e}) returns the list of properties of \\spad{`n'} in \\spad{e}; otherwise `failed'.")) (|setProperty!| (($ (|Symbol|) (|Symbol|) (|SExpression|) $) "\\spad{setProperty!(n,{}p,{}v,{}e)} binds the property `(\\spad{p},{}\\spad{v})' to \\spad{`n'} in the topmost scope of `e'.")) (|getProperty| (((|Union| (|SExpression|) "failed") (|Symbol|) (|Symbol|) $) "\\spad{getProperty(n,{}p,{}e)} returns the value of property with name \\spad{`p'} for the symbol \\spad{`n'} in environment `e'. Otherwise,{} `failed'.")) (|scopes| (((|List| (|Scope|)) $) "\\spad{scopes(e)} returns the stack of scopes in environment \\spad{e}.")) (|empty| (($) "\\spad{empty()} constructs an empty environment")))
@@ -1102,21 +1102,21 @@ NIL
NIL
(-293 S)
((|constructor| (NIL "Equations as mathematical objects. All properties of the basis domain,{} \\spadignore{e.g.} being an abelian group are carried over the equation domain,{} by performing the structural operations on the left and on the right hand side.")) (|subst| (($ $ $) "\\spad{subst(eq1,{}eq2)} substitutes \\spad{eq2} into both sides of \\spad{eq1} the \\spad{lhs} of \\spad{eq2} should be a kernel")) (|inv| (($ $) "\\spad{inv(x)} returns the multiplicative inverse of \\spad{x}.")) (/ (($ $ $) "\\spad{e1/e2} produces a new equation by dividing the left and right hand sides of equations e1 and e2.")) (|factorAndSplit| (((|List| $) $) "\\spad{factorAndSplit(eq)} make the right hand side 0 and factors the new left hand side. Each factor is equated to 0 and put into the resulting list without repetitions.")) (|rightOne| (((|Union| $ "failed") $) "\\spad{rightOne(eq)} divides by the right hand side.") (((|Union| $ "failed") $) "\\spad{rightOne(eq)} divides by the right hand side,{} if possible.")) (|leftOne| (((|Union| $ "failed") $) "\\spad{leftOne(eq)} divides by the left hand side.") (((|Union| $ "failed") $) "\\spad{leftOne(eq)} divides by the left hand side,{} if possible.")) (* (($ $ |#1|) "\\spad{eqn*x} produces a new equation by multiplying both sides of equation eqn by \\spad{x}.") (($ |#1| $) "\\spad{x*eqn} produces a new equation by multiplying both sides of equation eqn by \\spad{x}.")) (- (($ $ |#1|) "\\spad{eqn-x} produces a new equation by subtracting \\spad{x} from both sides of equation eqn.") (($ |#1| $) "\\spad{x-eqn} produces a new equation by subtracting both sides of equation eqn from \\spad{x}.")) (|rightZero| (($ $) "\\spad{rightZero(eq)} subtracts the right hand side.")) (|leftZero| (($ $) "\\spad{leftZero(eq)} subtracts the left hand side.")) (+ (($ $ |#1|) "\\spad{eqn+x} produces a new equation by adding \\spad{x} to both sides of equation eqn.") (($ |#1| $) "\\spad{x+eqn} produces a new equation by adding \\spad{x} to both sides of equation eqn.")) (|eval| (($ $ (|List| $)) "\\spad{eval(eqn,{} [x1=v1,{} ... xn=vn])} replaces \\spad{xi} by \\spad{vi} in equation \\spad{eqn}.") (($ $ $) "\\spad{eval(eqn,{} x=f)} replaces \\spad{x} by \\spad{f} in equation \\spad{eqn}.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,{}eqn)} constructs a new equation by applying \\spad{f} to both sides of \\spad{eqn}.")) (|rhs| ((|#1| $) "\\spad{rhs(eqn)} returns the right hand side of equation \\spad{eqn}.")) (|lhs| ((|#1| $) "\\spad{lhs(eqn)} returns the left hand side of equation \\spad{eqn}.")) (|swap| (($ $) "\\spad{swap(eq)} interchanges left and right hand side of equation \\spad{eq}.")) (|equation| (($ |#1| |#1|) "\\spad{equation(a,{}b)} creates an equation.")) (= (($ |#1| |#1|) "\\spad{a=b} creates an equation.")))
-((-4399 -4037 (|has| |#1| (-1044)) (|has| |#1| (-472))) (-4396 |has| |#1| (-1044)) (-4397 |has| |#1| (-1044)))
+((-4400 -4037 (|has| |#1| (-1044)) (|has| |#1| (-472))) (-4397 |has| |#1| (-1044)) (-4398 |has| |#1| (-1044)))
((|HasCategory| |#1| (QUOTE (-362))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-1044)))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-1044))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-1044)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-1044)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-1044)))) (-4037 (|HasCategory| |#1| (QUOTE (-472))) (|HasCategory| |#1| (QUOTE (-721)))) (|HasCategory| |#1| (QUOTE (-472))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-472))) (|HasCategory| |#1| (QUOTE (-721))) (|HasCategory| |#1| (QUOTE (-1044))) (|HasCategory| |#1| (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-1092)))) (-4037 (|HasCategory| |#1| (QUOTE (-472))) (|HasCategory| |#1| (QUOTE (-721))) (|HasCategory| |#1| (QUOTE (-1104)))) (|HasCategory| |#1| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-301))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-472)))) (-4037 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-721)))) (-4037 (|HasCategory| |#1| (QUOTE (-472))) (|HasCategory| |#1| (QUOTE (-1044)))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-721))) (|HasCategory| |#1| (QUOTE (-171))))
(-294 |Key| |Entry|)
((|constructor| (NIL "This domain provides tables where the keys are compared using \\spadfun{eq?}. Thus keys are considered equal only if they are the same instance of a structure.")))
-((-4402 . T) (-4403 . T))
-((-12 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2694) (|devaluate| |#2|)))))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))))
+((-4403 . T) (-4404 . T))
+((-12 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2693) (|devaluate| |#2|)))))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))))
(-295)
((|constructor| (NIL "ErrorFunctions implements error functions callable from the system interpreter. Typically,{} these functions would be called in user functions. The simple forms of the functions take one argument which is either a string (an error message) or a list of strings which all together make up a message. The list can contain formatting codes (see below). The more sophisticated versions takes two arguments where the first argument is the name of the function from which the error was invoked and the second argument is either a string or a list of strings,{} as above. When you use the one argument version in an interpreter function,{} the system will automatically insert the name of the function as the new first argument. Thus in the user interpreter function \\indented{2}{\\spad{f x == if x < 0 then error \"negative argument\" else x}} the call to error will actually be of the form \\indented{2}{\\spad{error(\"f\",{}\"negative argument\")}} because the interpreter will have created a new first argument. \\blankline Formatting codes: error messages may contain the following formatting codes (they should either start or end a string or else have blanks around them): \\indented{3}{\\spad{\\%l}\\space{6}start a new line} \\indented{3}{\\spad{\\%b}\\space{6}start printing in a bold font (where available)} \\indented{3}{\\spad{\\%d}\\space{6}stop\\space{2}printing in a bold font (where available)} \\indented{3}{\\spad{ \\%ceon}\\space{2}start centering message lines} \\indented{3}{\\spad{\\%ceoff}\\space{2}stop\\space{2}centering message lines} \\indented{3}{\\spad{\\%rjon}\\space{3}start displaying lines \"ragged left\"} \\indented{3}{\\spad{\\%rjoff}\\space{2}stop\\space{2}displaying lines \"ragged left\"} \\indented{3}{\\spad{\\%i}\\space{6}indent\\space{3}following lines 3 additional spaces} \\indented{3}{\\spad{\\%u}\\space{6}unindent following lines 3 additional spaces} \\indented{3}{\\spad{\\%xN}\\space{5}insert \\spad{N} blanks (eg,{} \\spad{\\%x10} inserts 10 blanks)} \\blankline")) (|error| (((|Exit|) (|String|) (|List| (|String|))) "\\spad{error(nam,{}lmsg)} displays error messages \\spad{lmsg} preceded by a message containing the name \\spad{nam} of the function in which the error is contained.") (((|Exit|) (|String|) (|String|)) "\\spad{error(nam,{}msg)} displays error message \\spad{msg} preceded by a message containing the name \\spad{nam} of the function in which the error is contained.") (((|Exit|) (|List| (|String|))) "\\spad{error(lmsg)} displays error message \\spad{lmsg} and terminates.") (((|Exit|) (|String|)) "\\spad{error(msg)} displays error message \\spad{msg} and terminates.")))
NIL
NIL
-(-296 -3197 S)
+(-296 -3196 S)
((|constructor| (NIL "This package allows a map from any expression space into any object to be lifted to a kernel over the expression set,{} using a given property of the operator of the kernel.")) (|map| ((|#2| (|Mapping| |#2| |#1|) (|String|) (|Kernel| |#1|)) "\\spad{map(f,{} p,{} k)} uses the property \\spad{p} of the operator of \\spad{k},{} in order to lift \\spad{f} and apply it to \\spad{k}.")))
NIL
NIL
-(-297 E -3197)
+(-297 E -3196)
((|constructor| (NIL "This package allows a mapping \\spad{E} \\spad{->} \\spad{F} to be lifted to a kernel over \\spad{E}; This lifting can fail if the operator of the kernel cannot be applied in \\spad{F}; Do not use this package with \\spad{E} = \\spad{F},{} since this may drop some properties of the operators.")) (|map| ((|#2| (|Mapping| |#2| |#1|) (|Kernel| |#1|)) "\\spad{map(f,{} k)} returns \\spad{g = op(f(a1),{}...,{}f(an))} where \\spad{k = op(a1,{}...,{}an)}.")))
NIL
NIL
@@ -1154,7 +1154,7 @@ NIL
NIL
(-306)
((|constructor| (NIL "A constructive euclidean domain,{} \\spadignore{i.e.} one can divide producing a quotient and a remainder where the remainder is either zero or is smaller (\\spadfun{euclideanSize}) than the divisor. \\blankline Conditional attributes: \\indented{2}{multiplicativeValuation\\tab{25}\\spad{Size(a*b)=Size(a)*Size(b)}} \\indented{2}{additiveValuation\\tab{25}\\spad{Size(a*b)=Size(a)+Size(b)}}")) (|multiEuclidean| (((|Union| (|List| $) "failed") (|List| $) $) "\\spad{multiEuclidean([f1,{}...,{}fn],{}z)} returns a list of coefficients \\spad{[a1,{} ...,{} an]} such that \\spad{ z / prod \\spad{fi} = sum aj/fj}. If no such list of coefficients exists,{} \"failed\" is returned.")) (|extendedEuclidean| (((|Union| (|Record| (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) "\\spad{extendedEuclidean(x,{}y,{}z)} either returns a record rec where \\spad{rec.coef1*x+rec.coef2*y=z} or returns \"failed\" if \\spad{z} cannot be expressed as a linear combination of \\spad{x} and \\spad{y}.") (((|Record| (|:| |coef1| $) (|:| |coef2| $) (|:| |generator| $)) $ $) "\\spad{extendedEuclidean(x,{}y)} returns a record rec where \\spad{rec.coef1*x+rec.coef2*y = rec.generator} and rec.generator is a \\spad{gcd} of \\spad{x} and \\spad{y}. The \\spad{gcd} is unique only up to associates if \\spadatt{canonicalUnitNormal} is not asserted. \\spadfun{principalIdeal} provides a version of this operation which accepts an arbitrary length list of arguments.")) (|rem| (($ $ $) "\\spad{x rem y} is the same as \\spad{divide(x,{}y).remainder}. See \\spadfunFrom{divide}{EuclideanDomain}.")) (|quo| (($ $ $) "\\spad{x quo y} is the same as \\spad{divide(x,{}y).quotient}. See \\spadfunFrom{divide}{EuclideanDomain}.")) (|divide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{divide(x,{}y)} divides \\spad{x} by \\spad{y} producing a record containing a \\spad{quotient} and \\spad{remainder},{} where the remainder is smaller (see \\spadfunFrom{sizeLess?}{EuclideanDomain}) than the divisor \\spad{y}.")) (|euclideanSize| (((|NonNegativeInteger|) $) "\\spad{euclideanSize(x)} returns the euclidean size of the element \\spad{x}. Error: if \\spad{x} is zero.")) (|sizeLess?| (((|Boolean|) $ $) "\\spad{sizeLess?(x,{}y)} tests whether \\spad{x} is strictly smaller than \\spad{y} with respect to the \\spadfunFrom{euclideanSize}{EuclideanDomain}.")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-307 S R)
((|constructor| (NIL "This category provides \\spadfun{eval} operations. A domain may belong to this category if it is possible to make ``evaluation\\spad{''} substitutions.")) (|eval| (($ $ (|List| (|Equation| |#2|))) "\\spad{eval(f,{} [x1 = v1,{}...,{}xn = vn])} replaces \\spad{xi} by \\spad{vi} in \\spad{f}.") (($ $ (|Equation| |#2|)) "\\spad{eval(f,{}x = v)} replaces \\spad{x} by \\spad{v} in \\spad{f}.")))
@@ -1164,7 +1164,7 @@ NIL
((|constructor| (NIL "This category provides \\spadfun{eval} operations. A domain may belong to this category if it is possible to make ``evaluation\\spad{''} substitutions.")) (|eval| (($ $ (|List| (|Equation| |#1|))) "\\spad{eval(f,{} [x1 = v1,{}...,{}xn = vn])} replaces \\spad{xi} by \\spad{vi} in \\spad{f}.") (($ $ (|Equation| |#1|)) "\\spad{eval(f,{}x = v)} replaces \\spad{x} by \\spad{v} in \\spad{f}.")))
NIL
NIL
-(-309 -3197)
+(-309 -3196)
((|constructor| (NIL "This package is to be used in conjuction with \\indented{12}{the CycleIndicators package. It provides an evaluation} \\indented{12}{function for SymmetricPolynomials.}")) (|eval| ((|#1| (|Mapping| |#1| (|Integer|)) (|SymmetricPolynomial| (|Fraction| (|Integer|)))) "\\spad{eval(f,{}s)} evaluates the cycle index \\spad{s} by applying \\indented{1}{the function \\spad{f} to each integer in a monomial partition,{}} \\indented{1}{forms their product and sums the results over all monomials.}")))
NIL
NIL
@@ -1178,7 +1178,7 @@ NIL
NIL
(-312 R FE |var| |cen|)
((|constructor| (NIL "UnivariatePuiseuxSeriesWithExponentialSingularity is a domain used to represent essential singularities of functions. Objects in this domain are quotients of sums,{} where each term in the sum is a univariate Puiseux series times the exponential of a univariate Puiseux series.")) (|coerce| (($ (|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) "\\spad{coerce(f)} converts a \\spadtype{UnivariatePuiseuxSeries} to an \\spadtype{ExponentialExpansion}.")) (|limitPlus| (((|Union| (|OrderedCompletion| |#2|) "failed") $) "\\spad{limitPlus(f(var))} returns \\spad{limit(var -> a+,{}f(var))}.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-904))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-144))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-146))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-1017))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-815))) (-4037 (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-815))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-845)))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-1143))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-232))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (LIST (QUOTE -513) (QUOTE (-1168)) (LIST (QUOTE -1242) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (LIST (QUOTE -308) (LIST (QUOTE -1242) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (LIST (QUOTE -285) (LIST (QUOTE -1242) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)) (LIST (QUOTE -1242) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-306))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-544))) (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-845))) (-12 (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-904))) (|HasCategory| $ (QUOTE (-144)))) (-4037 (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-144))) (-12 (|HasCategory| (-1242 |#1| |#2| |#3| |#4|) (QUOTE (-904))) (|HasCategory| $ (QUOTE (-144))))))
(-313 R S)
((|constructor| (NIL "Lifting of maps to Expressions. Date Created: 16 Jan 1989 Date Last Updated: 22 Jan 1990")) (|map| (((|Expression| |#2|) (|Mapping| |#2| |#1|) (|Expression| |#1|)) "\\spad{map(f,{} e)} applies \\spad{f} to all the constants appearing in \\spad{e}.")))
@@ -1190,9 +1190,9 @@ NIL
NIL
(-315 R)
((|constructor| (NIL "Expressions involving symbolic functions.")) (|squareFreePolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{squareFreePolynomial(p)} \\undocumented{}")) (|factorPolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{factorPolynomial(p)} \\undocumented{}")) (|simplifyPower| (($ $ (|Integer|)) "simplifyPower?(\\spad{f},{}\\spad{n}) \\undocumented{}")) (|number?| (((|Boolean|) $) "\\spad{number?(f)} tests if \\spad{f} is rational")) (|reduce| (($ $) "\\spad{reduce(f)} simplifies all the unreduced algebraic quantities present in \\spad{f} by applying their defining relations.")))
-((-4399 -4037 (-2246 (|has| |#1| (-1044)) (|has| |#1| (-635 (-562)))) (-12 (|has| |#1| (-554)) (-4037 (-2246 (|has| |#1| (-1044)) (|has| |#1| (-635 (-562)))) (|has| |#1| (-1044)) (|has| |#1| (-472)))) (|has| |#1| (-1044)) (|has| |#1| (-472))) (-4397 |has| |#1| (-171)) (-4396 |has| |#1| (-171)) ((-4404 "*") |has| |#1| (-554)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-554)) (-4394 |has| |#1| (-554)))
+((-4400 -4037 (-2245 (|has| |#1| (-1044)) (|has| |#1| (-635 (-562)))) (-12 (|has| |#1| (-554)) (-4037 (-2245 (|has| |#1| (-1044)) (|has| |#1| (-635 (-562)))) (|has| |#1| (-1044)) (|has| |#1| (-472)))) (|has| |#1| (-1044)) (|has| |#1| (-472))) (-4398 |has| |#1| (-171)) (-4397 |has| |#1| (-171)) ((-4405 "*") |has| |#1| (-554)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-554)) (-4395 |has| |#1| (-554)))
((-4037 (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| |#1| (QUOTE (-554))) (-4037 (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-1044)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-1044))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (QUOTE (-472))) (|HasCategory| |#1| (QUOTE (-1104)))) (|HasCategory| |#1| (QUOTE (-472))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-1044))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562))))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-1044)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-1044)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-1044)))) (-12 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-472))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (QUOTE (-1044))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1044))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-1104)))) (-4037 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-1044))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))))) (-4037 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1044))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-1104)))) (-4037 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1044))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))))) (-4037 (|HasCategory| |#1| (QUOTE (-472))) (|HasCategory| |#1| (QUOTE (-1044)))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-1104))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| $ (QUOTE (-1044))) (|HasCategory| $ (LIST (QUOTE -1033) (QUOTE (-562)))))
-(-316 R -3197)
+(-316 R -3196)
((|constructor| (NIL "Taylor series solutions of explicit ODE\\spad{'s}.")) (|seriesSolve| (((|Any|) |#2| (|BasicOperator|) (|Equation| |#2|) (|List| |#2|)) "\\spad{seriesSolve(eq,{} y,{} x = a,{} [b0,{}...,{}bn])} is equivalent to \\spad{seriesSolve(eq = 0,{} y,{} x = a,{} [b0,{}...,{}b(n-1)])}.") (((|Any|) |#2| (|BasicOperator|) (|Equation| |#2|) (|Equation| |#2|)) "\\spad{seriesSolve(eq,{} y,{} x = a,{} y a = b)} is equivalent to \\spad{seriesSolve(eq=0,{} y,{} x=a,{} y a = b)}.") (((|Any|) |#2| (|BasicOperator|) (|Equation| |#2|) |#2|) "\\spad{seriesSolve(eq,{} y,{} x = a,{} b)} is equivalent to \\spad{seriesSolve(eq = 0,{} y,{} x = a,{} y a = b)}.") (((|Any|) (|Equation| |#2|) (|BasicOperator|) (|Equation| |#2|) |#2|) "\\spad{seriesSolve(eq,{}y,{} x=a,{} b)} is equivalent to \\spad{seriesSolve(eq,{} y,{} x=a,{} y a = b)}.") (((|Any|) (|List| |#2|) (|List| (|BasicOperator|)) (|Equation| |#2|) (|List| (|Equation| |#2|))) "\\spad{seriesSolve([eq1,{}...,{}eqn],{} [y1,{}...,{}yn],{} x = a,{}[y1 a = b1,{}...,{} yn a = bn])} is equivalent to \\spad{seriesSolve([eq1=0,{}...,{}eqn=0],{} [y1,{}...,{}yn],{} x = a,{} [y1 a = b1,{}...,{} yn a = bn])}.") (((|Any|) (|List| |#2|) (|List| (|BasicOperator|)) (|Equation| |#2|) (|List| |#2|)) "\\spad{seriesSolve([eq1,{}...,{}eqn],{} [y1,{}...,{}yn],{} x=a,{} [b1,{}...,{}bn])} is equivalent to \\spad{seriesSolve([eq1=0,{}...,{}eqn=0],{} [y1,{}...,{}yn],{} x=a,{} [b1,{}...,{}bn])}.") (((|Any|) (|List| (|Equation| |#2|)) (|List| (|BasicOperator|)) (|Equation| |#2|) (|List| |#2|)) "\\spad{seriesSolve([eq1,{}...,{}eqn],{} [y1,{}...,{}yn],{} x=a,{} [b1,{}...,{}bn])} is equivalent to \\spad{seriesSolve([eq1,{}...,{}eqn],{} [y1,{}...,{}yn],{} x = a,{} [y1 a = b1,{}...,{} yn a = bn])}.") (((|Any|) (|List| (|Equation| |#2|)) (|List| (|BasicOperator|)) (|Equation| |#2|) (|List| (|Equation| |#2|))) "\\spad{seriesSolve([eq1,{}...,{}eqn],{}[y1,{}...,{}yn],{}x = a,{}[y1 a = b1,{}...,{}yn a = bn])} returns a taylor series solution of \\spad{[eq1,{}...,{}eqn]} around \\spad{x = a} with initial conditions \\spad{\\spad{yi}(a) = \\spad{bi}}. Note: eqi must be of the form \\spad{\\spad{fi}(x,{} y1 x,{} y2 x,{}...,{} yn x) y1'(x) + \\spad{gi}(x,{} y1 x,{} y2 x,{}...,{} yn x) = h(x,{} y1 x,{} y2 x,{}...,{} yn x)}.") (((|Any|) (|Equation| |#2|) (|BasicOperator|) (|Equation| |#2|) (|List| |#2|)) "\\spad{seriesSolve(eq,{}y,{}x=a,{}[b0,{}...,{}b(n-1)])} returns a Taylor series solution of \\spad{eq} around \\spad{x = a} with initial conditions \\spad{y(a) = b0},{} \\spad{y'(a) = b1},{} \\spad{y''(a) = b2},{} ...,{}\\spad{y(n-1)(a) = b(n-1)} \\spad{eq} must be of the form \\spad{f(x,{} y x,{} y'(x),{}...,{} y(n-1)(x)) y(n)(x) + g(x,{}y x,{}y'(x),{}...,{}y(n-1)(x)) = h(x,{}y x,{} y'(x),{}...,{} y(n-1)(x))}.") (((|Any|) (|Equation| |#2|) (|BasicOperator|) (|Equation| |#2|) (|Equation| |#2|)) "\\spad{seriesSolve(eq,{}y,{}x=a,{} y a = b)} returns a Taylor series solution of \\spad{eq} around \\spad{x} = a with initial condition \\spad{y(a) = b}. Note: \\spad{eq} must be of the form \\spad{f(x,{} y x) y'(x) + g(x,{} y x) = h(x,{} y x)}.")))
NIL
NIL
@@ -1202,8 +1202,8 @@ NIL
NIL
(-318 FE |var| |cen|)
((|constructor| (NIL "ExponentialOfUnivariatePuiseuxSeries is a domain used to represent essential singularities of functions. An object in this domain is a function of the form \\spad{exp(f(x))},{} where \\spad{f(x)} is a Puiseux series with no terms of non-negative degree. Objects are ordered according to order of singularity,{} with functions which tend more rapidly to zero or infinity considered to be larger. Thus,{} if \\spad{order(f(x)) < order(g(x))},{} \\spadignore{i.e.} the first non-zero term of \\spad{f(x)} has lower degree than the first non-zero term of \\spad{g(x)},{} then \\spad{exp(f(x)) > exp(g(x))}. If \\spad{order(f(x)) = order(g(x))},{} then the ordering is essentially random. This domain is used in computing limits involving functions with essential singularities.")) (|exponentialOrder| (((|Fraction| (|Integer|)) $) "\\spad{exponentialOrder(exp(c * x **(-n) + ...))} returns \\spad{-n}. exponentialOrder(0) returns \\spad{0}.")) (|exponent| (((|UnivariatePuiseuxSeries| |#1| |#2| |#3|) $) "\\spad{exponent(exp(f(x)))} returns \\spad{f(x)}")) (|exponential| (($ (|UnivariatePuiseuxSeries| |#1| |#2| |#3|)) "\\spad{exponential(f(x))} returns \\spad{exp(f(x))}. Note: the function does NOT check that \\spad{f(x)} has no non-negative terms.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|)))) (|HasCategory| (-406 (-562)) (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasSignature| |#1| (LIST (QUOTE -4054) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -2667) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1402) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|)))) (|HasCategory| (-406 (-562)) (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasSignature| |#1| (LIST (QUOTE -4053) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -3081) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1401) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))))
(-319 M)
((|constructor| (NIL "computes various functions on factored arguments.")) (|log| (((|List| (|Record| (|:| |coef| (|NonNegativeInteger|)) (|:| |logand| |#1|))) (|Factored| |#1|)) "\\spad{log(f)} returns \\spad{[(a1,{}b1),{}...,{}(am,{}bm)]} such that the logarithm of \\spad{f} is equal to \\spad{a1*log(b1) + ... + am*log(bm)}.")) (|nthRoot| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#1|) (|:| |radicand| (|List| |#1|))) (|Factored| |#1|) (|NonNegativeInteger|)) "\\spad{nthRoot(f,{} n)} returns \\spad{(p,{} r,{} [r1,{}...,{}rm])} such that the \\spad{n}th-root of \\spad{f} is equal to \\spad{r * \\spad{p}th-root(r1 * ... * rm)},{} where \\spad{r1},{}...,{}\\spad{rm} are distinct factors of \\spad{f},{} each of which has an exponent smaller than \\spad{p} in \\spad{f}.")))
NIL
@@ -1214,7 +1214,7 @@ NIL
NIL
(-321 S)
((|constructor| (NIL "The free abelian group on a set \\spad{S} is the monoid of finite sums of the form \\spad{reduce(+,{}[\\spad{ni} * \\spad{si}])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are integers. The operation is commutative.")))
-((-4397 . T) (-4396 . T))
+((-4398 . T) (-4397 . T))
((|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-787))))
(-322 S E)
((|constructor| (NIL "A free abelian monoid on a set \\spad{S} is the monoid of finite sums of the form \\spad{reduce(+,{}[\\spad{ni} * \\spad{si}])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are in a given abelian monoid. The operation is commutative.")) (|highCommonTerms| (($ $ $) "\\spad{highCommonTerms(e1 a1 + ... + en an,{} f1 b1 + ... + fm bm)} returns \\indented{2}{\\spad{reduce(+,{}[max(\\spad{ei},{} \\spad{fi}) \\spad{ci}])}} where \\spad{ci} ranges in the intersection of \\spad{{a1,{}...,{}an}} and \\spad{{b1,{}...,{}bm}}.")) (|mapGen| (($ (|Mapping| |#1| |#1|) $) "\\spad{mapGen(f,{} e1 a1 +...+ en an)} returns \\spad{e1 f(a1) +...+ en f(an)}.")) (|mapCoef| (($ (|Mapping| |#2| |#2|) $) "\\spad{mapCoef(f,{} e1 a1 +...+ en an)} returns \\spad{f(e1) a1 +...+ f(en) an}.")) (|coefficient| ((|#2| |#1| $) "\\spad{coefficient(s,{} e1 a1 + ... + en an)} returns \\spad{ei} such that \\spad{ai} = \\spad{s},{} or 0 if \\spad{s} is not one of the \\spad{ai}\\spad{'s}.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(x,{} n)} returns the factor of the n^th term of \\spad{x}.")) (|nthCoef| ((|#2| $ (|Integer|)) "\\spad{nthCoef(x,{} n)} returns the coefficient of the n^th term of \\spad{x}.")) (|terms| (((|List| (|Record| (|:| |gen| |#1|) (|:| |exp| |#2|))) $) "\\spad{terms(e1 a1 + ... + en an)} returns \\spad{[[a1,{} e1],{}...,{}[an,{} en]]}.")) (|size| (((|NonNegativeInteger|) $) "\\spad{size(x)} returns the number of terms in \\spad{x}. mapGen(\\spad{f},{} a1\\spad{\\^}e1 ... an\\spad{\\^}en) returns \\spad{f(a1)\\^e1 ... f(an)\\^en}.")) (* (($ |#2| |#1|) "\\spad{e * s} returns \\spad{e} times \\spad{s}.")) (+ (($ |#1| $) "\\spad{s + x} returns the sum of \\spad{s} and \\spad{x}.")))
@@ -1230,19 +1230,19 @@ NIL
((|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))))
(-325 R E)
((|constructor| (NIL "This category is similar to AbelianMonoidRing,{} except that the sum is assumed to be finite. It is a useful model for polynomials,{} but is somewhat more general.")) (|primitivePart| (($ $) "\\spad{primitivePart(p)} returns the unit normalized form of polynomial \\spad{p} divided by the content of \\spad{p}.")) (|content| ((|#1| $) "\\spad{content(p)} gives the \\spad{gcd} of the coefficients of polynomial \\spad{p}.")) (|exquo| (((|Union| $ "failed") $ |#1|) "\\spad{exquo(p,{}r)} returns the exact quotient of polynomial \\spad{p} by \\spad{r},{} or \"failed\" if none exists.")) (|binomThmExpt| (($ $ $ (|NonNegativeInteger|)) "\\spad{binomThmExpt(p,{}q,{}n)} returns \\spad{(x+y)^n} by means of the binomial theorem trick.")) (|pomopo!| (($ $ |#1| |#2| $) "\\spad{pomopo!(p1,{}r,{}e,{}p2)} returns \\spad{p1 + monomial(e,{}r) * p2} and may use \\spad{p1} as workspace. The constaant \\spad{r} is assumed to be nonzero.")) (|mapExponents| (($ (|Mapping| |#2| |#2|) $) "\\spad{mapExponents(fn,{}u)} maps function \\spad{fn} onto the exponents of the non-zero monomials of polynomial \\spad{u}.")) (|minimumDegree| ((|#2| $) "\\spad{minimumDegree(p)} gives the least exponent of a non-zero term of polynomial \\spad{p}. Error: if applied to 0.")) (|numberOfMonomials| (((|NonNegativeInteger|) $) "\\spad{numberOfMonomials(p)} gives the number of non-zero monomials in polynomial \\spad{p}.")) (|coefficients| (((|List| |#1|) $) "\\spad{coefficients(p)} gives the list of non-zero coefficients of polynomial \\spad{p}.")) (|ground| ((|#1| $) "\\spad{ground(p)} retracts polynomial \\spad{p} to the coefficient ring.")) (|ground?| (((|Boolean|) $) "\\spad{ground?(p)} tests if polynomial \\spad{p} is a member of the coefficient ring.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-326 S)
((|constructor| (NIL "\\indented{1}{A FlexibleArray is the notion of an array intended to allow for growth} at the end only. Hence the following efficient operations \\indented{2}{\\spad{append(x,{}a)} meaning append item \\spad{x} at the end of the array \\spad{a}} \\indented{2}{\\spad{delete(a,{}n)} meaning delete the last item from the array \\spad{a}} Flexible arrays support the other operations inherited from \\spadtype{ExtensibleLinearAggregate}. However,{} these are not efficient. Flexible arrays combine the \\spad{O(1)} access time property of arrays with growing and shrinking at the end in \\spad{O(1)} (average) time. This is done by using an ordinary array which may have zero or more empty slots at the end. When the array becomes full it is copied into a new larger (50\\% larger) array. Conversely,{} when the array becomes less than 1/2 full,{} it is copied into a smaller array. Flexible arrays provide for an efficient implementation of many data structures in particular heaps,{} stacks and sets.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
-(-327 S -3197)
+(-327 S -3196)
((|constructor| (NIL "FiniteAlgebraicExtensionField {\\em F} is the category of fields which are finite algebraic extensions of the field {\\em F}. If {\\em F} is finite then any finite algebraic extension of {\\em F} is finite,{} too. Let {\\em K} be a finite algebraic extension of the finite field {\\em F}. The exponentiation of elements of {\\em K} defines a \\spad{Z}-module structure on the multiplicative group of {\\em K}. The additive group of {\\em K} becomes a module over the ring of polynomials over {\\em F} via the operation \\spadfun{linearAssociatedExp}(a:K,{}f:SparseUnivariatePolynomial \\spad{F}) which is linear over {\\em F},{} \\spadignore{i.e.} for elements {\\em a} from {\\em K},{} {\\em c,{}d} from {\\em F} and {\\em f,{}g} univariate polynomials over {\\em F} we have \\spadfun{linearAssociatedExp}(a,{}cf+dg) equals {\\em c} times \\spadfun{linearAssociatedExp}(a,{}\\spad{f}) plus {\\em d} times \\spadfun{linearAssociatedExp}(a,{}\\spad{g}). Therefore \\spadfun{linearAssociatedExp} is defined completely by its action on monomials from {\\em F[X]}: \\spadfun{linearAssociatedExp}(a,{}monomial(1,{}\\spad{k})\\spad{\\$}SUP(\\spad{F})) is defined to be \\spadfun{Frobenius}(a,{}\\spad{k}) which is {\\em a**(q**k)} where {\\em q=size()\\$F}. The operations order and discreteLog associated with the multiplicative exponentiation have additive analogues associated to the operation \\spadfun{linearAssociatedExp}. These are the functions \\spadfun{linearAssociatedOrder} and \\spadfun{linearAssociatedLog},{} respectively.")) (|linearAssociatedLog| (((|Union| (|SparseUnivariatePolynomial| |#2|) "failed") $ $) "\\spad{linearAssociatedLog(b,{}a)} returns a polynomial {\\em g},{} such that the \\spadfun{linearAssociatedExp}(\\spad{b},{}\\spad{g}) equals {\\em a}. If there is no such polynomial {\\em g},{} then \\spadfun{linearAssociatedLog} fails.") (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{linearAssociatedLog(a)} returns a polynomial {\\em g},{} such that \\spadfun{linearAssociatedExp}(normalElement(),{}\\spad{g}) equals {\\em a}.")) (|linearAssociatedOrder| (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{linearAssociatedOrder(a)} retruns the monic polynomial {\\em g} of least degree,{} such that \\spadfun{linearAssociatedExp}(a,{}\\spad{g}) is 0.")) (|linearAssociatedExp| (($ $ (|SparseUnivariatePolynomial| |#2|)) "\\spad{linearAssociatedExp(a,{}f)} is linear over {\\em F},{} \\spadignore{i.e.} for elements {\\em a} from {\\em \\$},{} {\\em c,{}d} form {\\em F} and {\\em f,{}g} univariate polynomials over {\\em F} we have \\spadfun{linearAssociatedExp}(a,{}cf+dg) equals {\\em c} times \\spadfun{linearAssociatedExp}(a,{}\\spad{f}) plus {\\em d} times \\spadfun{linearAssociatedExp}(a,{}\\spad{g}). Therefore \\spadfun{linearAssociatedExp} is defined completely by its action on monomials from {\\em F[X]}: \\spadfun{linearAssociatedExp}(a,{}monomial(1,{}\\spad{k})\\spad{\\$}SUP(\\spad{F})) is defined to be \\spadfun{Frobenius}(a,{}\\spad{k}) which is {\\em a**(q**k)},{} where {\\em q=size()\\$F}.")) (|generator| (($) "\\spad{generator()} returns a root of the defining polynomial. This element generates the field as an algebra over the ground field.")) (|normal?| (((|Boolean|) $) "\\spad{normal?(a)} tests whether the element \\spad{a} is normal over the ground field \\spad{F},{} \\spadignore{i.e.} \\spad{a**(q**i),{} 0 <= i <= extensionDegree()-1} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. Implementation according to Lidl/Niederreiter: Theorem 2.39.")) (|normalElement| (($) "\\spad{normalElement()} returns a element,{} normal over the ground field \\spad{F},{} \\spadignore{i.e.} \\spad{a**(q**i),{} 0 <= i < extensionDegree()} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. At the first call,{} the element is computed by \\spadfunFrom{createNormalElement}{FiniteAlgebraicExtensionField} then cached in a global variable. On subsequent calls,{} the element is retrieved by referencing the global variable.")) (|createNormalElement| (($) "\\spad{createNormalElement()} computes a normal element over the ground field \\spad{F},{} that is,{} \\spad{a**(q**i),{} 0 <= i < extensionDegree()} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. Reference: Such an element exists Lidl/Niederreiter: Theorem 2.35.")) (|trace| (($ $ (|PositiveInteger|)) "\\spad{trace(a,{}d)} computes the trace of \\spad{a} with respect to the field of extension degree \\spad{d} over the ground field of size \\spad{q}. Error: if \\spad{d} does not divide the extension degree of \\spad{a}. Note: \\spad{trace(a,{}d) = reduce(+,{}[a**(q**(d*i)) for i in 0..n/d])}.") ((|#2| $) "\\spad{trace(a)} computes the trace of \\spad{a} with respect to the field considered as an algebra with 1 over the ground field \\spad{F}.")) (|norm| (($ $ (|PositiveInteger|)) "\\spad{norm(a,{}d)} computes the norm of \\spad{a} with respect to the field of extension degree \\spad{d} over the ground field of size. Error: if \\spad{d} does not divide the extension degree of \\spad{a}. Note: norm(a,{}\\spad{d}) = reduce(*,{}[a**(\\spad{q**}(d*i)) for \\spad{i} in 0..\\spad{n/d}])") ((|#2| $) "\\spad{norm(a)} computes the norm of \\spad{a} with respect to the field considered as an algebra with 1 over the ground field \\spad{F}.")) (|degree| (((|PositiveInteger|) $) "\\spad{degree(a)} returns the degree of the minimal polynomial of an element \\spad{a} over the ground field \\spad{F}.")) (|extensionDegree| (((|PositiveInteger|)) "\\spad{extensionDegree()} returns the degree of field extension.")) (|definingPolynomial| (((|SparseUnivariatePolynomial| |#2|)) "\\spad{definingPolynomial()} returns the polynomial used to define the field extension.")) (|minimalPolynomial| (((|SparseUnivariatePolynomial| $) $ (|PositiveInteger|)) "\\spad{minimalPolynomial(x,{}n)} computes the minimal polynomial of \\spad{x} over the field of extension degree \\spad{n} over the ground field \\spad{F}.") (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{minimalPolynomial(a)} returns the minimal polynomial of an element \\spad{a} over the ground field \\spad{F}.")) (|represents| (($ (|Vector| |#2|)) "\\spad{represents([a1,{}..,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed basis.")) (|coordinates| (((|Matrix| |#2|) (|Vector| $)) "\\spad{coordinates([v1,{}...,{}vm])} returns the coordinates of the \\spad{vi}\\spad{'s} with to the fixed basis. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#2|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{F}-vectorspace basis.")) (|basis| (((|Vector| $) (|PositiveInteger|)) "\\spad{basis(n)} returns a fixed basis of a subfield of \\spad{\\$} as \\spad{F}-vectorspace.") (((|Vector| $)) "\\spad{basis()} returns a fixed basis of \\spad{\\$} as \\spad{F}-vectorspace.")))
NIL
((|HasCategory| |#2| (QUOTE (-367))))
-(-328 -3197)
+(-328 -3196)
((|constructor| (NIL "FiniteAlgebraicExtensionField {\\em F} is the category of fields which are finite algebraic extensions of the field {\\em F}. If {\\em F} is finite then any finite algebraic extension of {\\em F} is finite,{} too. Let {\\em K} be a finite algebraic extension of the finite field {\\em F}. The exponentiation of elements of {\\em K} defines a \\spad{Z}-module structure on the multiplicative group of {\\em K}. The additive group of {\\em K} becomes a module over the ring of polynomials over {\\em F} via the operation \\spadfun{linearAssociatedExp}(a:K,{}f:SparseUnivariatePolynomial \\spad{F}) which is linear over {\\em F},{} \\spadignore{i.e.} for elements {\\em a} from {\\em K},{} {\\em c,{}d} from {\\em F} and {\\em f,{}g} univariate polynomials over {\\em F} we have \\spadfun{linearAssociatedExp}(a,{}cf+dg) equals {\\em c} times \\spadfun{linearAssociatedExp}(a,{}\\spad{f}) plus {\\em d} times \\spadfun{linearAssociatedExp}(a,{}\\spad{g}). Therefore \\spadfun{linearAssociatedExp} is defined completely by its action on monomials from {\\em F[X]}: \\spadfun{linearAssociatedExp}(a,{}monomial(1,{}\\spad{k})\\spad{\\$}SUP(\\spad{F})) is defined to be \\spadfun{Frobenius}(a,{}\\spad{k}) which is {\\em a**(q**k)} where {\\em q=size()\\$F}. The operations order and discreteLog associated with the multiplicative exponentiation have additive analogues associated to the operation \\spadfun{linearAssociatedExp}. These are the functions \\spadfun{linearAssociatedOrder} and \\spadfun{linearAssociatedLog},{} respectively.")) (|linearAssociatedLog| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") $ $) "\\spad{linearAssociatedLog(b,{}a)} returns a polynomial {\\em g},{} such that the \\spadfun{linearAssociatedExp}(\\spad{b},{}\\spad{g}) equals {\\em a}. If there is no such polynomial {\\em g},{} then \\spadfun{linearAssociatedLog} fails.") (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{linearAssociatedLog(a)} returns a polynomial {\\em g},{} such that \\spadfun{linearAssociatedExp}(normalElement(),{}\\spad{g}) equals {\\em a}.")) (|linearAssociatedOrder| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{linearAssociatedOrder(a)} retruns the monic polynomial {\\em g} of least degree,{} such that \\spadfun{linearAssociatedExp}(a,{}\\spad{g}) is 0.")) (|linearAssociatedExp| (($ $ (|SparseUnivariatePolynomial| |#1|)) "\\spad{linearAssociatedExp(a,{}f)} is linear over {\\em F},{} \\spadignore{i.e.} for elements {\\em a} from {\\em \\$},{} {\\em c,{}d} form {\\em F} and {\\em f,{}g} univariate polynomials over {\\em F} we have \\spadfun{linearAssociatedExp}(a,{}cf+dg) equals {\\em c} times \\spadfun{linearAssociatedExp}(a,{}\\spad{f}) plus {\\em d} times \\spadfun{linearAssociatedExp}(a,{}\\spad{g}). Therefore \\spadfun{linearAssociatedExp} is defined completely by its action on monomials from {\\em F[X]}: \\spadfun{linearAssociatedExp}(a,{}monomial(1,{}\\spad{k})\\spad{\\$}SUP(\\spad{F})) is defined to be \\spadfun{Frobenius}(a,{}\\spad{k}) which is {\\em a**(q**k)},{} where {\\em q=size()\\$F}.")) (|generator| (($) "\\spad{generator()} returns a root of the defining polynomial. This element generates the field as an algebra over the ground field.")) (|normal?| (((|Boolean|) $) "\\spad{normal?(a)} tests whether the element \\spad{a} is normal over the ground field \\spad{F},{} \\spadignore{i.e.} \\spad{a**(q**i),{} 0 <= i <= extensionDegree()-1} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. Implementation according to Lidl/Niederreiter: Theorem 2.39.")) (|normalElement| (($) "\\spad{normalElement()} returns a element,{} normal over the ground field \\spad{F},{} \\spadignore{i.e.} \\spad{a**(q**i),{} 0 <= i < extensionDegree()} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. At the first call,{} the element is computed by \\spadfunFrom{createNormalElement}{FiniteAlgebraicExtensionField} then cached in a global variable. On subsequent calls,{} the element is retrieved by referencing the global variable.")) (|createNormalElement| (($) "\\spad{createNormalElement()} computes a normal element over the ground field \\spad{F},{} that is,{} \\spad{a**(q**i),{} 0 <= i < extensionDegree()} is an \\spad{F}-basis,{} where \\spad{q = size()\\$F}. Reference: Such an element exists Lidl/Niederreiter: Theorem 2.35.")) (|trace| (($ $ (|PositiveInteger|)) "\\spad{trace(a,{}d)} computes the trace of \\spad{a} with respect to the field of extension degree \\spad{d} over the ground field of size \\spad{q}. Error: if \\spad{d} does not divide the extension degree of \\spad{a}. Note: \\spad{trace(a,{}d) = reduce(+,{}[a**(q**(d*i)) for i in 0..n/d])}.") ((|#1| $) "\\spad{trace(a)} computes the trace of \\spad{a} with respect to the field considered as an algebra with 1 over the ground field \\spad{F}.")) (|norm| (($ $ (|PositiveInteger|)) "\\spad{norm(a,{}d)} computes the norm of \\spad{a} with respect to the field of extension degree \\spad{d} over the ground field of size. Error: if \\spad{d} does not divide the extension degree of \\spad{a}. Note: norm(a,{}\\spad{d}) = reduce(*,{}[a**(\\spad{q**}(d*i)) for \\spad{i} in 0..\\spad{n/d}])") ((|#1| $) "\\spad{norm(a)} computes the norm of \\spad{a} with respect to the field considered as an algebra with 1 over the ground field \\spad{F}.")) (|degree| (((|PositiveInteger|) $) "\\spad{degree(a)} returns the degree of the minimal polynomial of an element \\spad{a} over the ground field \\spad{F}.")) (|extensionDegree| (((|PositiveInteger|)) "\\spad{extensionDegree()} returns the degree of field extension.")) (|definingPolynomial| (((|SparseUnivariatePolynomial| |#1|)) "\\spad{definingPolynomial()} returns the polynomial used to define the field extension.")) (|minimalPolynomial| (((|SparseUnivariatePolynomial| $) $ (|PositiveInteger|)) "\\spad{minimalPolynomial(x,{}n)} computes the minimal polynomial of \\spad{x} over the field of extension degree \\spad{n} over the ground field \\spad{F}.") (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{minimalPolynomial(a)} returns the minimal polynomial of an element \\spad{a} over the ground field \\spad{F}.")) (|represents| (($ (|Vector| |#1|)) "\\spad{represents([a1,{}..,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed basis.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $)) "\\spad{coordinates([v1,{}...,{}vm])} returns the coordinates of the \\spad{vi}\\spad{'s} with to the fixed basis. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#1|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{F}-vectorspace basis.")) (|basis| (((|Vector| $) (|PositiveInteger|)) "\\spad{basis(n)} returns a fixed basis of a subfield of \\spad{\\$} as \\spad{F}-vectorspace.") (((|Vector| $)) "\\spad{basis()} returns a fixed basis of \\spad{\\$} as \\spad{F}-vectorspace.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-329)
((|constructor| (NIL "This domain builds representations of program code segments for use with the FortranProgram domain.")) (|setLabelValue| (((|SingleInteger|) (|SingleInteger|)) "\\spad{setLabelValue(i)} resets the counter which produces labels to \\spad{i}")) (|getCode| (((|SExpression|) $) "\\spad{getCode(f)} returns a Lisp list of strings representing \\spad{f} in Fortran notation. This is used by the FortranProgram domain.")) (|printCode| (((|Void|) $) "\\spad{printCode(f)} prints out \\spad{f} in FORTRAN notation.")) (|code| (((|Union| (|:| |nullBranch| "null") (|:| |assignmentBranch| (|Record| (|:| |var| (|Symbol|)) (|:| |arrayIndex| (|List| (|Polynomial| (|Integer|)))) (|:| |rand| (|Record| (|:| |ints2Floats?| (|Boolean|)) (|:| |expr| (|OutputForm|)))))) (|:| |arrayAssignmentBranch| (|Record| (|:| |var| (|Symbol|)) (|:| |rand| (|OutputForm|)) (|:| |ints2Floats?| (|Boolean|)))) (|:| |conditionalBranch| (|Record| (|:| |switch| (|Switch|)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (|Record| (|:| |empty?| (|Boolean|)) (|:| |value| (|Record| (|:| |ints2Floats?| (|Boolean|)) (|:| |expr| (|OutputForm|)))))) (|:| |blockBranch| (|List| $)) (|:| |commentBranch| (|List| (|String|))) (|:| |callBranch| (|String|)) (|:| |forBranch| (|Record| (|:| |range| (|SegmentBinding| (|Polynomial| (|Integer|)))) (|:| |span| (|Polynomial| (|Integer|))) (|:| |body| $))) (|:| |labelBranch| (|SingleInteger|)) (|:| |loopBranch| (|Record| (|:| |switch| (|Switch|)) (|:| |body| $))) (|:| |commonBranch| (|Record| (|:| |name| (|Symbol|)) (|:| |contents| (|List| (|Symbol|))))) (|:| |printBranch| (|List| (|OutputForm|)))) $) "\\spad{code(f)} returns the internal representation of the object represented by \\spad{f}.")) (|operation| (((|Union| (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $) "\\spad{operation(f)} returns the name of the operation represented by \\spad{f}.")) (|common| (($ (|Symbol|) (|List| (|Symbol|))) "\\spad{common(name,{}contents)} creates a representation a named common block.")) (|printStatement| (($ (|List| (|OutputForm|))) "\\spad{printStatement(l)} creates a representation of a PRINT statement.")) (|save| (($) "\\spad{save()} creates a representation of a SAVE statement.")) (|stop| (($) "\\spad{stop()} creates a representation of a STOP statement.")) (|block| (($ (|List| $)) "\\spad{block(l)} creates a representation of the statements in \\spad{l} as a block.")) (|assign| (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|Complex| (|Float|)))) "\\spad{assign(x,{}l,{}y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|Float|))) "\\spad{assign(x,{}l,{}y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|Integer|))) "\\spad{assign(x,{}l,{}y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|Vector| (|Expression| (|Complex| (|Float|))))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|Expression| (|Float|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|Expression| (|Integer|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|Complex| (|Float|))))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|Float|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|Integer|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|Complex| (|Float|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|Float|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|Integer|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|MachineComplex|))) "\\spad{assign(x,{}l,{}y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|MachineFloat|))) "\\spad{assign(x,{}l,{}y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|List| (|Polynomial| (|Integer|))) (|Expression| (|MachineInteger|))) "\\spad{assign(x,{}l,{}y)} creates a representation of the assignment of \\spad{y} to the \\spad{l}\\spad{'}th element of array \\spad{x} (\\spad{l} is a list of indices).") (($ (|Symbol|) (|Vector| (|Expression| (|MachineComplex|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|Expression| (|MachineFloat|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|Expression| (|MachineInteger|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|MachineComplex|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|MachineFloat|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|Expression| (|MachineInteger|)))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|MachineComplex|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|MachineFloat|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Vector| (|MachineInteger|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|MachineComplex|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|MachineFloat|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Matrix| (|MachineInteger|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|MachineComplex|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|MachineFloat|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|Expression| (|MachineInteger|))) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.") (($ (|Symbol|) (|String|)) "\\spad{assign(x,{}y)} creates a representation of the FORTRAN expression x=y.")) (|cond| (($ (|Switch|) $ $) "\\spad{cond(s,{}e,{}f)} creates a representation of the FORTRAN expression IF (\\spad{s}) THEN \\spad{e} ELSE \\spad{f}.") (($ (|Switch|) $) "\\spad{cond(s,{}e)} creates a representation of the FORTRAN expression IF (\\spad{s}) THEN \\spad{e}.")) (|returns| (($ (|Expression| (|Complex| (|Float|)))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|Integer|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|Float|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|MachineComplex|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|MachineInteger|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($ (|Expression| (|MachineFloat|))) "\\spad{returns(e)} creates a representation of a FORTRAN RETURN statement with a returned value.") (($) "\\spad{returns()} creates a representation of a FORTRAN RETURN statement.")) (|call| (($ (|String|)) "\\spad{call(s)} creates a representation of a FORTRAN CALL statement")) (|comment| (($ (|List| (|String|))) "\\spad{comment(s)} creates a representation of the Strings \\spad{s} as a multi-line FORTRAN comment.") (($ (|String|)) "\\spad{comment(s)} creates a representation of the String \\spad{s} as a single FORTRAN comment.")) (|continue| (($ (|SingleInteger|)) "\\spad{continue(l)} creates a representation of a FORTRAN CONTINUE labelled with \\spad{l}")) (|goto| (($ (|SingleInteger|)) "\\spad{goto(l)} creates a representation of a FORTRAN GOTO statement")) (|repeatUntilLoop| (($ (|Switch|) $) "\\spad{repeatUntilLoop(s,{}c)} creates a repeat ... until loop in FORTRAN.")) (|whileLoop| (($ (|Switch|) $) "\\spad{whileLoop(s,{}c)} creates a while loop in FORTRAN.")) (|forLoop| (($ (|SegmentBinding| (|Polynomial| (|Integer|))) (|Polynomial| (|Integer|)) $) "\\spad{forLoop(i=1..10,{}n,{}c)} creates a representation of a FORTRAN DO loop with \\spad{i} ranging over the values 1 to 10 by \\spad{n}.") (($ (|SegmentBinding| (|Polynomial| (|Integer|))) $) "\\spad{forLoop(i=1..10,{}c)} creates a representation of a FORTRAN DO loop with \\spad{i} ranging over the values 1 to 10.")))
@@ -1260,15 +1260,15 @@ NIL
((|constructor| (NIL "\\indented{1}{Lift a map to finite divisors.} Author: Manuel Bronstein Date Created: 1988 Date Last Updated: 19 May 1993")) (|map| (((|FiniteDivisor| |#5| |#6| |#7| |#8|) (|Mapping| |#5| |#1|) (|FiniteDivisor| |#1| |#2| |#3| |#4|)) "\\spad{map(f,{}d)} \\undocumented{}")))
NIL
NIL
-(-333 S -3197 UP UPUP R)
+(-333 S -3196 UP UPUP R)
((|constructor| (NIL "This category describes finite rational divisors on a curve,{} that is finite formal sums SUM(\\spad{n} * \\spad{P}) where the \\spad{n}\\spad{'s} are integers and the \\spad{P}\\spad{'s} are finite rational points on the curve.")) (|generator| (((|Union| |#5| "failed") $) "\\spad{generator(d)} returns \\spad{f} if \\spad{(f) = d},{} \"failed\" if \\spad{d} is not principal.")) (|principal?| (((|Boolean|) $) "\\spad{principal?(D)} tests if the argument is the divisor of a function.")) (|reduce| (($ $) "\\spad{reduce(D)} converts \\spad{D} to some reduced form (the reduced forms can be differents in different implementations).")) (|decompose| (((|Record| (|:| |id| (|FractionalIdeal| |#3| (|Fraction| |#3|) |#4| |#5|)) (|:| |principalPart| |#5|)) $) "\\spad{decompose(d)} returns \\spad{[id,{} f]} where \\spad{d = (id) + div(f)}.")) (|divisor| (($ |#5| |#3| |#3| |#3| |#2|) "\\spad{divisor(h,{} d,{} d',{} g,{} r)} returns the sum of all the finite points where \\spad{h/d} has residue \\spad{r}. \\spad{h} must be integral. \\spad{d} must be squarefree. \\spad{d'} is some derivative of \\spad{d} (not necessarily dd/dx). \\spad{g = gcd(d,{}discriminant)} contains the ramified zeros of \\spad{d}") (($ |#2| |#2| (|Integer|)) "\\spad{divisor(a,{} b,{} n)} makes the divisor \\spad{nP} where \\spad{P:} \\spad{(x = a,{} y = b)}. \\spad{P} is allowed to be singular if \\spad{n} is a multiple of the rank.") (($ |#2| |#2|) "\\spad{divisor(a,{} b)} makes the divisor \\spad{P:} \\spad{(x = a,{} y = b)}. Error: if \\spad{P} is singular.") (($ |#5|) "\\spad{divisor(g)} returns the divisor of the function \\spad{g}.") (($ (|FractionalIdeal| |#3| (|Fraction| |#3|) |#4| |#5|)) "\\spad{divisor(I)} makes a divisor \\spad{D} from an ideal \\spad{I}.")) (|ideal| (((|FractionalIdeal| |#3| (|Fraction| |#3|) |#4| |#5|) $) "\\spad{ideal(D)} returns the ideal corresponding to a divisor \\spad{D}.")))
NIL
NIL
-(-334 -3197 UP UPUP R)
+(-334 -3196 UP UPUP R)
((|constructor| (NIL "This category describes finite rational divisors on a curve,{} that is finite formal sums SUM(\\spad{n} * \\spad{P}) where the \\spad{n}\\spad{'s} are integers and the \\spad{P}\\spad{'s} are finite rational points on the curve.")) (|generator| (((|Union| |#4| "failed") $) "\\spad{generator(d)} returns \\spad{f} if \\spad{(f) = d},{} \"failed\" if \\spad{d} is not principal.")) (|principal?| (((|Boolean|) $) "\\spad{principal?(D)} tests if the argument is the divisor of a function.")) (|reduce| (($ $) "\\spad{reduce(D)} converts \\spad{D} to some reduced form (the reduced forms can be differents in different implementations).")) (|decompose| (((|Record| (|:| |id| (|FractionalIdeal| |#2| (|Fraction| |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) "\\spad{decompose(d)} returns \\spad{[id,{} f]} where \\spad{d = (id) + div(f)}.")) (|divisor| (($ |#4| |#2| |#2| |#2| |#1|) "\\spad{divisor(h,{} d,{} d',{} g,{} r)} returns the sum of all the finite points where \\spad{h/d} has residue \\spad{r}. \\spad{h} must be integral. \\spad{d} must be squarefree. \\spad{d'} is some derivative of \\spad{d} (not necessarily dd/dx). \\spad{g = gcd(d,{}discriminant)} contains the ramified zeros of \\spad{d}") (($ |#1| |#1| (|Integer|)) "\\spad{divisor(a,{} b,{} n)} makes the divisor \\spad{nP} where \\spad{P:} \\spad{(x = a,{} y = b)}. \\spad{P} is allowed to be singular if \\spad{n} is a multiple of the rank.") (($ |#1| |#1|) "\\spad{divisor(a,{} b)} makes the divisor \\spad{P:} \\spad{(x = a,{} y = b)}. Error: if \\spad{P} is singular.") (($ |#4|) "\\spad{divisor(g)} returns the divisor of the function \\spad{g}.") (($ (|FractionalIdeal| |#2| (|Fraction| |#2|) |#3| |#4|)) "\\spad{divisor(I)} makes a divisor \\spad{D} from an ideal \\spad{I}.")) (|ideal| (((|FractionalIdeal| |#2| (|Fraction| |#2|) |#3| |#4|) $) "\\spad{ideal(D)} returns the ideal corresponding to a divisor \\spad{D}.")))
NIL
NIL
-(-335 -3197 UP UPUP R)
+(-335 -3196 UP UPUP R)
((|constructor| (NIL "This domains implements finite rational divisors on a curve,{} that is finite formal sums SUM(\\spad{n} * \\spad{P}) where the \\spad{n}\\spad{'s} are integers and the \\spad{P}\\spad{'s} are finite rational points on the curve.")) (|lSpaceBasis| (((|Vector| |#4|) $) "\\spad{lSpaceBasis(d)} returns a basis for \\spad{L(d) = {f | (f) >= -d}} as a module over \\spad{K[x]}.")) (|finiteBasis| (((|Vector| |#4|) $) "\\spad{finiteBasis(d)} returns a basis for \\spad{d} as a module over {\\em K[x]}.")))
NIL
NIL
@@ -1282,31 +1282,31 @@ NIL
NIL
(-338 |basicSymbols| |subscriptedSymbols| R)
((|constructor| (NIL "A domain of expressions involving functions which can be translated into standard Fortran-77,{} with some extra extensions from the NAG Fortran Library.")) (|useNagFunctions| (((|Boolean|) (|Boolean|)) "\\spad{useNagFunctions(v)} sets the flag which controls whether NAG functions \\indented{1}{are being used for mathematical and machine constants.\\space{2}The previous} \\indented{1}{value is returned.}") (((|Boolean|)) "\\spad{useNagFunctions()} indicates whether NAG functions are being used \\indented{1}{for mathematical and machine constants.}")) (|variables| (((|List| (|Symbol|)) $) "\\spad{variables(e)} return a list of all the variables in \\spad{e}.")) (|pi| (($) "\\spad{\\spad{pi}(x)} represents the NAG Library function X01AAF which returns \\indented{1}{an approximation to the value of \\spad{pi}}")) (|tanh| (($ $) "\\spad{tanh(x)} represents the Fortran intrinsic function TANH")) (|cosh| (($ $) "\\spad{cosh(x)} represents the Fortran intrinsic function COSH")) (|sinh| (($ $) "\\spad{sinh(x)} represents the Fortran intrinsic function SINH")) (|atan| (($ $) "\\spad{atan(x)} represents the Fortran intrinsic function ATAN")) (|acos| (($ $) "\\spad{acos(x)} represents the Fortran intrinsic function ACOS")) (|asin| (($ $) "\\spad{asin(x)} represents the Fortran intrinsic function ASIN")) (|tan| (($ $) "\\spad{tan(x)} represents the Fortran intrinsic function TAN")) (|cos| (($ $) "\\spad{cos(x)} represents the Fortran intrinsic function COS")) (|sin| (($ $) "\\spad{sin(x)} represents the Fortran intrinsic function SIN")) (|log10| (($ $) "\\spad{log10(x)} represents the Fortran intrinsic function LOG10")) (|log| (($ $) "\\spad{log(x)} represents the Fortran intrinsic function LOG")) (|exp| (($ $) "\\spad{exp(x)} represents the Fortran intrinsic function EXP")) (|sqrt| (($ $) "\\spad{sqrt(x)} represents the Fortran intrinsic function SQRT")) (|abs| (($ $) "\\spad{abs(x)} represents the Fortran intrinsic function ABS")) (|coerce| (((|Expression| |#3|) $) "\\spad{coerce(x)} \\undocumented{}")) (|retractIfCan| (((|Union| $ "failed") (|Polynomial| (|Float|))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Fraction| (|Polynomial| (|Float|)))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Expression| (|Float|))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Fraction| (|Polynomial| (|Integer|)))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Expression| (|Integer|))) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Symbol|)) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a FortranExpression \\indented{1}{checking that it is one of the given basic symbols} \\indented{1}{or subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (((|Union| $ "failed") (|Expression| |#3|)) "\\spad{retractIfCan(e)} takes \\spad{e} and tries to transform it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}")) (|retract| (($ (|Polynomial| (|Float|))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Fraction| (|Polynomial| (|Float|)))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Expression| (|Float|))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Polynomial| (|Integer|))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Fraction| (|Polynomial| (|Integer|)))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Expression| (|Integer|))) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Symbol|)) "\\spad{retract(e)} takes \\spad{e} and transforms it into a FortranExpression \\indented{1}{checking that it is one of the given basic symbols} \\indented{1}{or subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}") (($ (|Expression| |#3|)) "\\spad{retract(e)} takes \\spad{e} and transforms it into a \\indented{1}{FortranExpression checking that it contains no non-Fortran} \\indented{1}{functions,{} and that it only contains the given basic symbols} \\indented{1}{and subscripted symbols which correspond to scalar and array} \\indented{1}{parameters respectively.}")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-378)))) (|HasCategory| $ (QUOTE (-1044))) (|HasCategory| $ (LIST (QUOTE -1033) (QUOTE (-562)))))
(-339 R1 UP1 UPUP1 F1 R2 UP2 UPUP2 F2)
((|constructor| (NIL "Lifts a map from rings to function fields over them.")) (|map| ((|#8| (|Mapping| |#5| |#1|) |#4|) "\\spad{map(f,{} p)} lifts \\spad{f} to \\spad{F1} and applies it to \\spad{p}.")))
NIL
NIL
-(-340 S -3197 UP UPUP)
+(-340 S -3196 UP UPUP)
((|constructor| (NIL "This category is a model for the function field of a plane algebraic curve.")) (|rationalPoints| (((|List| (|List| |#2|))) "\\spad{rationalPoints()} returns the list of all the affine rational points.")) (|nonSingularModel| (((|List| (|Polynomial| |#2|)) (|Symbol|)) "\\spad{nonSingularModel(u)} returns the equations in u1,{}...,{}un of an affine non-singular model for the curve.")) (|algSplitSimple| (((|Record| (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (|Mapping| |#3| |#3|)) "\\spad{algSplitSimple(f,{} D)} returns \\spad{[h,{}d,{}d',{}g]} such that \\spad{f=h/d},{} \\spad{h} is integral at all the normal places \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} \\spad{d' = Dd},{} \\spad{g = gcd(d,{} discriminant())} and \\spad{D} is the derivation to use. \\spad{f} must have at most simple finite poles.")) (|hyperelliptic| (((|Union| |#3| "failed")) "\\spad{hyperelliptic()} returns \\spad{p(x)} if the curve is the hyperelliptic defined by \\spad{y**2 = p(x)},{} \"failed\" otherwise.")) (|elliptic| (((|Union| |#3| "failed")) "\\spad{elliptic()} returns \\spad{p(x)} if the curve is the elliptic defined by \\spad{y**2 = p(x)},{} \"failed\" otherwise.")) (|elt| ((|#2| $ |#2| |#2|) "\\spad{elt(f,{}a,{}b)} or \\spad{f}(a,{} \\spad{b}) returns the value of \\spad{f} at the point \\spad{(x = a,{} y = b)} if it is not singular.")) (|primitivePart| (($ $) "\\spad{primitivePart(f)} removes the content of the denominator and the common content of the numerator of \\spad{f}.")) (|differentiate| (($ $ (|Mapping| |#3| |#3|)) "\\spad{differentiate(x,{} d)} extends the derivation \\spad{d} from UP to \\$ and applies it to \\spad{x}.")) (|integralDerivationMatrix| (((|Record| (|:| |num| (|Matrix| |#3|)) (|:| |den| |#3|)) (|Mapping| |#3| |#3|)) "\\spad{integralDerivationMatrix(d)} extends the derivation \\spad{d} from UP to \\$ and returns (\\spad{M},{} \\spad{Q}) such that the i^th row of \\spad{M} divided by \\spad{Q} form the coordinates of \\spad{d(\\spad{wi})} with respect to \\spad{(w1,{}...,{}wn)} where \\spad{(w1,{}...,{}wn)} is the integral basis returned by integralBasis().")) (|integralRepresents| (($ (|Vector| |#3|) |#3|) "\\spad{integralRepresents([A1,{}...,{}An],{} D)} returns \\spad{(A1 w1+...+An wn)/D} where \\spad{(w1,{}...,{}wn)} is the integral basis of \\spad{integralBasis()}.")) (|integralCoordinates| (((|Record| (|:| |num| (|Vector| |#3|)) (|:| |den| |#3|)) $) "\\spad{integralCoordinates(f)} returns \\spad{[[A1,{}...,{}An],{} D]} such that \\spad{f = (A1 w1 +...+ An wn) / D} where \\spad{(w1,{}...,{}wn)} is the integral basis returned by \\spad{integralBasis()}.")) (|represents| (($ (|Vector| |#3|) |#3|) "\\spad{represents([A0,{}...,{}A(n-1)],{}D)} returns \\spad{(A0 + A1 y +...+ A(n-1)*y**(n-1))/D}.")) (|yCoordinates| (((|Record| (|:| |num| (|Vector| |#3|)) (|:| |den| |#3|)) $) "\\spad{yCoordinates(f)} returns \\spad{[[A1,{}...,{}An],{} D]} such that \\spad{f = (A1 + A2 y +...+ An y**(n-1)) / D}.")) (|inverseIntegralMatrixAtInfinity| (((|Matrix| (|Fraction| |#3|))) "\\spad{inverseIntegralMatrixAtInfinity()} returns \\spad{M} such that \\spad{M (v1,{}...,{}vn) = (1,{} y,{} ...,{} y**(n-1))} where \\spad{(v1,{}...,{}vn)} is the local integral basis at infinity returned by \\spad{infIntBasis()}.")) (|integralMatrixAtInfinity| (((|Matrix| (|Fraction| |#3|))) "\\spad{integralMatrixAtInfinity()} returns \\spad{M} such that \\spad{(v1,{}...,{}vn) = M (1,{} y,{} ...,{} y**(n-1))} where \\spad{(v1,{}...,{}vn)} is the local integral basis at infinity returned by \\spad{infIntBasis()}.")) (|inverseIntegralMatrix| (((|Matrix| (|Fraction| |#3|))) "\\spad{inverseIntegralMatrix()} returns \\spad{M} such that \\spad{M (w1,{}...,{}wn) = (1,{} y,{} ...,{} y**(n-1))} where \\spad{(w1,{}...,{}wn)} is the integral basis of \\spadfunFrom{integralBasis}{FunctionFieldCategory}.")) (|integralMatrix| (((|Matrix| (|Fraction| |#3|))) "\\spad{integralMatrix()} returns \\spad{M} such that \\spad{(w1,{}...,{}wn) = M (1,{} y,{} ...,{} y**(n-1))},{} where \\spad{(w1,{}...,{}wn)} is the integral basis of \\spadfunFrom{integralBasis}{FunctionFieldCategory}.")) (|reduceBasisAtInfinity| (((|Vector| $) (|Vector| $)) "\\spad{reduceBasisAtInfinity(b1,{}...,{}bn)} returns \\spad{(x**i * bj)} for all \\spad{i},{}\\spad{j} such that \\spad{x**i*bj} is locally integral at infinity.")) (|normalizeAtInfinity| (((|Vector| $) (|Vector| $)) "\\spad{normalizeAtInfinity(v)} makes \\spad{v} normal at infinity.")) (|complementaryBasis| (((|Vector| $) (|Vector| $)) "\\spad{complementaryBasis(b1,{}...,{}bn)} returns the complementary basis \\spad{(b1',{}...,{}bn')} of \\spad{(b1,{}...,{}bn)}.")) (|integral?| (((|Boolean|) $ |#3|) "\\spad{integral?(f,{} p)} tests whether \\spad{f} is locally integral at \\spad{p(x) = 0}.") (((|Boolean|) $ |#2|) "\\spad{integral?(f,{} a)} tests whether \\spad{f} is locally integral at \\spad{x = a}.") (((|Boolean|) $) "\\spad{integral?()} tests if \\spad{f} is integral over \\spad{k[x]}.")) (|integralAtInfinity?| (((|Boolean|) $) "\\spad{integralAtInfinity?()} tests if \\spad{f} is locally integral at infinity.")) (|integralBasisAtInfinity| (((|Vector| $)) "\\spad{integralBasisAtInfinity()} returns the local integral basis at infinity.")) (|integralBasis| (((|Vector| $)) "\\spad{integralBasis()} returns the integral basis for the curve.")) (|ramified?| (((|Boolean|) |#3|) "\\spad{ramified?(p)} tests whether \\spad{p(x) = 0} is ramified.") (((|Boolean|) |#2|) "\\spad{ramified?(a)} tests whether \\spad{x = a} is ramified.")) (|ramifiedAtInfinity?| (((|Boolean|)) "\\spad{ramifiedAtInfinity?()} tests if infinity is ramified.")) (|singular?| (((|Boolean|) |#3|) "\\spad{singular?(p)} tests whether \\spad{p(x) = 0} is singular.") (((|Boolean|) |#2|) "\\spad{singular?(a)} tests whether \\spad{x = a} is singular.")) (|singularAtInfinity?| (((|Boolean|)) "\\spad{singularAtInfinity?()} tests if there is a singularity at infinity.")) (|branchPoint?| (((|Boolean|) |#3|) "\\spad{branchPoint?(p)} tests whether \\spad{p(x) = 0} is a branch point.") (((|Boolean|) |#2|) "\\spad{branchPoint?(a)} tests whether \\spad{x = a} is a branch point.")) (|branchPointAtInfinity?| (((|Boolean|)) "\\spad{branchPointAtInfinity?()} tests if there is a branch point at infinity.")) (|rationalPoint?| (((|Boolean|) |#2| |#2|) "\\spad{rationalPoint?(a,{} b)} tests if \\spad{(x=a,{}y=b)} is on the curve.")) (|absolutelyIrreducible?| (((|Boolean|)) "\\spad{absolutelyIrreducible?()} tests if the curve absolutely irreducible?")) (|genus| (((|NonNegativeInteger|)) "\\spad{genus()} returns the genus of one absolutely irreducible component")) (|numberOfComponents| (((|NonNegativeInteger|)) "\\spad{numberOfComponents()} returns the number of absolutely irreducible components.")))
NIL
((|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (QUOTE (-362))))
-(-341 -3197 UP UPUP)
+(-341 -3196 UP UPUP)
((|constructor| (NIL "This category is a model for the function field of a plane algebraic curve.")) (|rationalPoints| (((|List| (|List| |#1|))) "\\spad{rationalPoints()} returns the list of all the affine rational points.")) (|nonSingularModel| (((|List| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{nonSingularModel(u)} returns the equations in u1,{}...,{}un of an affine non-singular model for the curve.")) (|algSplitSimple| (((|Record| (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (|Mapping| |#2| |#2|)) "\\spad{algSplitSimple(f,{} D)} returns \\spad{[h,{}d,{}d',{}g]} such that \\spad{f=h/d},{} \\spad{h} is integral at all the normal places \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} \\spad{d' = Dd},{} \\spad{g = gcd(d,{} discriminant())} and \\spad{D} is the derivation to use. \\spad{f} must have at most simple finite poles.")) (|hyperelliptic| (((|Union| |#2| "failed")) "\\spad{hyperelliptic()} returns \\spad{p(x)} if the curve is the hyperelliptic defined by \\spad{y**2 = p(x)},{} \"failed\" otherwise.")) (|elliptic| (((|Union| |#2| "failed")) "\\spad{elliptic()} returns \\spad{p(x)} if the curve is the elliptic defined by \\spad{y**2 = p(x)},{} \"failed\" otherwise.")) (|elt| ((|#1| $ |#1| |#1|) "\\spad{elt(f,{}a,{}b)} or \\spad{f}(a,{} \\spad{b}) returns the value of \\spad{f} at the point \\spad{(x = a,{} y = b)} if it is not singular.")) (|primitivePart| (($ $) "\\spad{primitivePart(f)} removes the content of the denominator and the common content of the numerator of \\spad{f}.")) (|differentiate| (($ $ (|Mapping| |#2| |#2|)) "\\spad{differentiate(x,{} d)} extends the derivation \\spad{d} from UP to \\$ and applies it to \\spad{x}.")) (|integralDerivationMatrix| (((|Record| (|:| |num| (|Matrix| |#2|)) (|:| |den| |#2|)) (|Mapping| |#2| |#2|)) "\\spad{integralDerivationMatrix(d)} extends the derivation \\spad{d} from UP to \\$ and returns (\\spad{M},{} \\spad{Q}) such that the i^th row of \\spad{M} divided by \\spad{Q} form the coordinates of \\spad{d(\\spad{wi})} with respect to \\spad{(w1,{}...,{}wn)} where \\spad{(w1,{}...,{}wn)} is the integral basis returned by integralBasis().")) (|integralRepresents| (($ (|Vector| |#2|) |#2|) "\\spad{integralRepresents([A1,{}...,{}An],{} D)} returns \\spad{(A1 w1+...+An wn)/D} where \\spad{(w1,{}...,{}wn)} is the integral basis of \\spad{integralBasis()}.")) (|integralCoordinates| (((|Record| (|:| |num| (|Vector| |#2|)) (|:| |den| |#2|)) $) "\\spad{integralCoordinates(f)} returns \\spad{[[A1,{}...,{}An],{} D]} such that \\spad{f = (A1 w1 +...+ An wn) / D} where \\spad{(w1,{}...,{}wn)} is the integral basis returned by \\spad{integralBasis()}.")) (|represents| (($ (|Vector| |#2|) |#2|) "\\spad{represents([A0,{}...,{}A(n-1)],{}D)} returns \\spad{(A0 + A1 y +...+ A(n-1)*y**(n-1))/D}.")) (|yCoordinates| (((|Record| (|:| |num| (|Vector| |#2|)) (|:| |den| |#2|)) $) "\\spad{yCoordinates(f)} returns \\spad{[[A1,{}...,{}An],{} D]} such that \\spad{f = (A1 + A2 y +...+ An y**(n-1)) / D}.")) (|inverseIntegralMatrixAtInfinity| (((|Matrix| (|Fraction| |#2|))) "\\spad{inverseIntegralMatrixAtInfinity()} returns \\spad{M} such that \\spad{M (v1,{}...,{}vn) = (1,{} y,{} ...,{} y**(n-1))} where \\spad{(v1,{}...,{}vn)} is the local integral basis at infinity returned by \\spad{infIntBasis()}.")) (|integralMatrixAtInfinity| (((|Matrix| (|Fraction| |#2|))) "\\spad{integralMatrixAtInfinity()} returns \\spad{M} such that \\spad{(v1,{}...,{}vn) = M (1,{} y,{} ...,{} y**(n-1))} where \\spad{(v1,{}...,{}vn)} is the local integral basis at infinity returned by \\spad{infIntBasis()}.")) (|inverseIntegralMatrix| (((|Matrix| (|Fraction| |#2|))) "\\spad{inverseIntegralMatrix()} returns \\spad{M} such that \\spad{M (w1,{}...,{}wn) = (1,{} y,{} ...,{} y**(n-1))} where \\spad{(w1,{}...,{}wn)} is the integral basis of \\spadfunFrom{integralBasis}{FunctionFieldCategory}.")) (|integralMatrix| (((|Matrix| (|Fraction| |#2|))) "\\spad{integralMatrix()} returns \\spad{M} such that \\spad{(w1,{}...,{}wn) = M (1,{} y,{} ...,{} y**(n-1))},{} where \\spad{(w1,{}...,{}wn)} is the integral basis of \\spadfunFrom{integralBasis}{FunctionFieldCategory}.")) (|reduceBasisAtInfinity| (((|Vector| $) (|Vector| $)) "\\spad{reduceBasisAtInfinity(b1,{}...,{}bn)} returns \\spad{(x**i * bj)} for all \\spad{i},{}\\spad{j} such that \\spad{x**i*bj} is locally integral at infinity.")) (|normalizeAtInfinity| (((|Vector| $) (|Vector| $)) "\\spad{normalizeAtInfinity(v)} makes \\spad{v} normal at infinity.")) (|complementaryBasis| (((|Vector| $) (|Vector| $)) "\\spad{complementaryBasis(b1,{}...,{}bn)} returns the complementary basis \\spad{(b1',{}...,{}bn')} of \\spad{(b1,{}...,{}bn)}.")) (|integral?| (((|Boolean|) $ |#2|) "\\spad{integral?(f,{} p)} tests whether \\spad{f} is locally integral at \\spad{p(x) = 0}.") (((|Boolean|) $ |#1|) "\\spad{integral?(f,{} a)} tests whether \\spad{f} is locally integral at \\spad{x = a}.") (((|Boolean|) $) "\\spad{integral?()} tests if \\spad{f} is integral over \\spad{k[x]}.")) (|integralAtInfinity?| (((|Boolean|) $) "\\spad{integralAtInfinity?()} tests if \\spad{f} is locally integral at infinity.")) (|integralBasisAtInfinity| (((|Vector| $)) "\\spad{integralBasisAtInfinity()} returns the local integral basis at infinity.")) (|integralBasis| (((|Vector| $)) "\\spad{integralBasis()} returns the integral basis for the curve.")) (|ramified?| (((|Boolean|) |#2|) "\\spad{ramified?(p)} tests whether \\spad{p(x) = 0} is ramified.") (((|Boolean|) |#1|) "\\spad{ramified?(a)} tests whether \\spad{x = a} is ramified.")) (|ramifiedAtInfinity?| (((|Boolean|)) "\\spad{ramifiedAtInfinity?()} tests if infinity is ramified.")) (|singular?| (((|Boolean|) |#2|) "\\spad{singular?(p)} tests whether \\spad{p(x) = 0} is singular.") (((|Boolean|) |#1|) "\\spad{singular?(a)} tests whether \\spad{x = a} is singular.")) (|singularAtInfinity?| (((|Boolean|)) "\\spad{singularAtInfinity?()} tests if there is a singularity at infinity.")) (|branchPoint?| (((|Boolean|) |#2|) "\\spad{branchPoint?(p)} tests whether \\spad{p(x) = 0} is a branch point.") (((|Boolean|) |#1|) "\\spad{branchPoint?(a)} tests whether \\spad{x = a} is a branch point.")) (|branchPointAtInfinity?| (((|Boolean|)) "\\spad{branchPointAtInfinity?()} tests if there is a branch point at infinity.")) (|rationalPoint?| (((|Boolean|) |#1| |#1|) "\\spad{rationalPoint?(a,{} b)} tests if \\spad{(x=a,{}y=b)} is on the curve.")) (|absolutelyIrreducible?| (((|Boolean|)) "\\spad{absolutelyIrreducible?()} tests if the curve absolutely irreducible?")) (|genus| (((|NonNegativeInteger|)) "\\spad{genus()} returns the genus of one absolutely irreducible component")) (|numberOfComponents| (((|NonNegativeInteger|)) "\\spad{numberOfComponents()} returns the number of absolutely irreducible components.")))
-((-4395 |has| (-406 |#2|) (-362)) (-4400 |has| (-406 |#2|) (-362)) (-4394 |has| (-406 |#2|) (-362)) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 |has| (-406 |#2|) (-362)) (-4401 |has| (-406 |#2|) (-362)) (-4395 |has| (-406 |#2|) (-362)) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-342 |p| |extdeg|)
((|constructor| (NIL "FiniteFieldCyclicGroup(\\spad{p},{}\\spad{n}) implements a finite field extension of degee \\spad{n} over the prime field with \\spad{p} elements. Its elements are represented by powers of a primitive element,{} \\spadignore{i.e.} a generator of the multiplicative (cyclic) group. As primitive element we choose the root of the extension polynomial,{} which is created by {\\em createPrimitivePoly} from \\spadtype{FiniteFieldPolynomialPackage}. The Zech logarithms are stored in a table of size half of the field size,{} and use \\spadtype{SingleInteger} for representing field elements,{} hence,{} there are restrictions on the size of the field.")) (|getZechTable| (((|PrimitiveArray| (|SingleInteger|))) "\\spad{getZechTable()} returns the zech logarithm table of the field. This table is used to perform additions in the field quickly.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((-4037 (|HasCategory| (-905 |#1|) (QUOTE (-144))) (|HasCategory| (-905 |#1|) (QUOTE (-367)))) (|HasCategory| (-905 |#1|) (QUOTE (-146))) (|HasCategory| (-905 |#1|) (QUOTE (-367))) (|HasCategory| (-905 |#1|) (QUOTE (-144))))
(-343 GF |defpol|)
((|constructor| (NIL "FiniteFieldCyclicGroupExtensionByPolynomial(\\spad{GF},{}defpol) implements a finite extension field of the ground field {\\em GF}. Its elements are represented by powers of a primitive element,{} \\spadignore{i.e.} a generator of the multiplicative (cyclic) group. As primitive element we choose the root of the extension polynomial {\\em defpol},{} which MUST be primitive (user responsibility). Zech logarithms are stored in a table of size half of the field size,{} and use \\spadtype{SingleInteger} for representing field elements,{} hence,{} there are restrictions on the size of the field.")) (|getZechTable| (((|PrimitiveArray| (|SingleInteger|))) "\\spad{getZechTable()} returns the zech logarithm table of the field it is used to perform additions in the field quickly.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((-4037 (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-367)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (QUOTE (-144))))
(-344 GF |extdeg|)
((|constructor| (NIL "FiniteFieldCyclicGroupExtension(\\spad{GF},{}\\spad{n}) implements a extension of degree \\spad{n} over the ground field {\\em GF}. Its elements are represented by powers of a primitive element,{} \\spadignore{i.e.} a generator of the multiplicative (cyclic) group. As primitive element we choose the root of the extension polynomial,{} which is created by {\\em createPrimitivePoly} from \\spadtype{FiniteFieldPolynomialPackage}. Zech logarithms are stored in a table of size half of the field size,{} and use \\spadtype{SingleInteger} for representing field elements,{} hence,{} there are restrictions on the size of the field.")) (|getZechTable| (((|PrimitiveArray| (|SingleInteger|))) "\\spad{getZechTable()} returns the zech logarithm table of the field. This table is used to perform additions in the field quickly.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((-4037 (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-367)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (QUOTE (-144))))
(-345 GF)
((|constructor| (NIL "FiniteFieldFunctions(\\spad{GF}) is a package with functions concerning finite extension fields of the finite ground field {\\em GF},{} \\spadignore{e.g.} Zech logarithms.")) (|createLowComplexityNormalBasis| (((|Union| (|SparseUnivariatePolynomial| |#1|) (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) (|PositiveInteger|)) "\\spad{createLowComplexityNormalBasis(n)} tries to find a a low complexity normal basis of degree {\\em n} over {\\em GF} and returns its multiplication matrix If no low complexity basis is found it calls \\axiomFunFrom{createNormalPoly}{FiniteFieldPolynomialPackage}(\\spad{n}) to produce a normal polynomial of degree {\\em n} over {\\em GF}")) (|createLowComplexityTable| (((|Union| (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|))))) "failed") (|PositiveInteger|)) "\\spad{createLowComplexityTable(n)} tries to find a low complexity normal basis of degree {\\em n} over {\\em GF} and returns its multiplication matrix Fails,{} if it does not find a low complexity basis")) (|sizeMultiplication| (((|NonNegativeInteger|) (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) "\\spad{sizeMultiplication(m)} returns the number of entries of the multiplication table {\\em m}.")) (|createMultiplicationMatrix| (((|Matrix| |#1|) (|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) "\\spad{createMultiplicationMatrix(m)} forms the multiplication table {\\em m} into a matrix over the ground field.")) (|createMultiplicationTable| (((|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|))))) (|SparseUnivariatePolynomial| |#1|)) "\\spad{createMultiplicationTable(f)} generates a multiplication table for the normal basis of the field extension determined by {\\em f}. This is needed to perform multiplications between elements represented as coordinate vectors to this basis. See \\spadtype{FFNBP},{} \\spadtype{FFNBX}.")) (|createZechTable| (((|PrimitiveArray| (|SingleInteger|)) (|SparseUnivariatePolynomial| |#1|)) "\\spad{createZechTable(f)} generates a Zech logarithm table for the cyclic group representation of a extension of the ground field by the primitive polynomial {\\em f(x)},{} \\spadignore{i.e.} \\spad{Z(i)},{} defined by {\\em x**Z(i) = 1+x**i} is stored at index \\spad{i}. This is needed in particular to perform addition of field elements in finite fields represented in this way. See \\spadtype{FFCGP},{} \\spadtype{FFCGX}.")))
@@ -1322,33 +1322,33 @@ NIL
NIL
(-348)
((|constructor| (NIL "FiniteFieldCategory is the category of finite fields")) (|representationType| (((|Union| "prime" "polynomial" "normal" "cyclic")) "\\spad{representationType()} returns the type of the representation,{} one of: \\spad{prime},{} \\spad{polynomial},{} \\spad{normal},{} or \\spad{cyclic}.")) (|order| (((|PositiveInteger|) $) "\\spad{order(b)} computes the order of an element \\spad{b} in the multiplicative group of the field. Error: if \\spad{b} equals 0.")) (|discreteLog| (((|NonNegativeInteger|) $) "\\spad{discreteLog(a)} computes the discrete logarithm of \\spad{a} with respect to \\spad{primitiveElement()} of the field.")) (|primitive?| (((|Boolean|) $) "\\spad{primitive?(b)} tests whether the element \\spad{b} is a generator of the (cyclic) multiplicative group of the field,{} \\spadignore{i.e.} is a primitive element. Implementation Note: see \\spad{ch}.IX.1.3,{} th.2 in \\spad{D}. Lipson.")) (|primitiveElement| (($) "\\spad{primitiveElement()} returns a primitive element stored in a global variable in the domain. At first call,{} the primitive element is computed by calling \\spadfun{createPrimitiveElement}.")) (|createPrimitiveElement| (($) "\\spad{createPrimitiveElement()} computes a generator of the (cyclic) multiplicative group of the field.")) (|tableForDiscreteLogarithm| (((|Table| (|PositiveInteger|) (|NonNegativeInteger|)) (|Integer|)) "\\spad{tableForDiscreteLogarithm(a,{}n)} returns a table of the discrete logarithms of \\spad{a**0} up to \\spad{a**(n-1)} which,{} called with key \\spad{lookup(a**i)} returns \\spad{i} for \\spad{i} in \\spad{0..n-1}. Error: if not called for prime divisors of order of \\indented{7}{multiplicative group.}")) (|factorsOfCyclicGroupSize| (((|List| (|Record| (|:| |factor| (|Integer|)) (|:| |exponent| (|Integer|))))) "\\spad{factorsOfCyclicGroupSize()} returns the factorization of size()\\spad{-1}")) (|conditionP| (((|Union| (|Vector| $) "failed") (|Matrix| $)) "\\spad{conditionP(mat)},{} given a matrix representing a homogeneous system of equations,{} returns a vector whose characteristic'th powers is a non-trivial solution,{} or \"failed\" if no such vector exists.")) (|charthRoot| (($ $) "\\spad{charthRoot(a)} takes the characteristic'th root of {\\em a}. Note: such a root is alway defined in finite fields.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
-(-349 R UP -3197)
+(-349 R UP -3196)
((|constructor| (NIL "In this package \\spad{R} is a Euclidean domain and \\spad{F} is a framed algebra over \\spad{R}. The package provides functions to compute the integral closure of \\spad{R} in the quotient field of \\spad{F}. It is assumed that \\spad{char(R/P) = char(R)} for any prime \\spad{P} of \\spad{R}. A typical instance of this is when \\spad{R = K[x]} and \\spad{F} is a function field over \\spad{R}.")) (|localIntegralBasis| (((|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|))) |#1|) "\\spad{integralBasis(p)} returns a record \\spad{[basis,{}basisDen,{}basisInv]} containing information regarding the local integral closure of \\spad{R} at the prime \\spad{p} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the local integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|integralBasis| (((|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|)))) "\\spad{integralBasis()} returns a record \\spad{[basis,{}basisDen,{}basisInv]} containing information regarding the integral closure of \\spad{R} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(x)} returns a square-free factorisation of \\spad{x}")))
NIL
NIL
(-350 |p| |extdeg|)
((|constructor| (NIL "FiniteFieldNormalBasis(\\spad{p},{}\\spad{n}) implements a finite extension field of degree \\spad{n} over the prime field with \\spad{p} elements. The elements are represented by coordinate vectors with respect to a normal basis,{} \\spadignore{i.e.} a basis consisting of the conjugates (\\spad{q}-powers) of an element,{} in this case called normal element. This is chosen as a root of the extension polynomial created by \\spadfunFrom{createNormalPoly}{FiniteFieldPolynomialPackage}.")) (|sizeMultiplication| (((|NonNegativeInteger|)) "\\spad{sizeMultiplication()} returns the number of entries in the multiplication table of the field. Note: The time of multiplication of field elements depends on this size.")) (|getMultiplicationMatrix| (((|Matrix| (|PrimeField| |#1|))) "\\spad{getMultiplicationMatrix()} returns the multiplication table in form of a matrix.")) (|getMultiplicationTable| (((|Vector| (|List| (|Record| (|:| |value| (|PrimeField| |#1|)) (|:| |index| (|SingleInteger|)))))) "\\spad{getMultiplicationTable()} returns the multiplication table for the normal basis of the field. This table is used to perform multiplications between field elements.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((-4037 (|HasCategory| (-905 |#1|) (QUOTE (-144))) (|HasCategory| (-905 |#1|) (QUOTE (-367)))) (|HasCategory| (-905 |#1|) (QUOTE (-146))) (|HasCategory| (-905 |#1|) (QUOTE (-367))) (|HasCategory| (-905 |#1|) (QUOTE (-144))))
(-351 GF |uni|)
((|constructor| (NIL "FiniteFieldNormalBasisExtensionByPolynomial(\\spad{GF},{}uni) implements a finite extension of the ground field {\\em GF}. The elements are represented by coordinate vectors with respect to. a normal basis,{} \\spadignore{i.e.} a basis consisting of the conjugates (\\spad{q}-powers) of an element,{} in this case called normal element,{} where \\spad{q} is the size of {\\em GF}. The normal element is chosen as a root of the extension polynomial,{} which MUST be normal over {\\em GF} (user responsibility)")) (|sizeMultiplication| (((|NonNegativeInteger|)) "\\spad{sizeMultiplication()} returns the number of entries in the multiplication table of the field. Note: the time of multiplication of field elements depends on this size.")) (|getMultiplicationMatrix| (((|Matrix| |#1|)) "\\spad{getMultiplicationMatrix()} returns the multiplication table in form of a matrix.")) (|getMultiplicationTable| (((|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) "\\spad{getMultiplicationTable()} returns the multiplication table for the normal basis of the field. This table is used to perform multiplications between field elements.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((-4037 (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-367)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (QUOTE (-144))))
(-352 GF |extdeg|)
((|constructor| (NIL "FiniteFieldNormalBasisExtensionByPolynomial(\\spad{GF},{}\\spad{n}) implements a finite extension field of degree \\spad{n} over the ground field {\\em GF}. The elements are represented by coordinate vectors with respect to a normal basis,{} \\spadignore{i.e.} a basis consisting of the conjugates (\\spad{q}-powers) of an element,{} in this case called normal element. This is chosen as a root of the extension polynomial,{} created by {\\em createNormalPoly} from \\spadtype{FiniteFieldPolynomialPackage}")) (|sizeMultiplication| (((|NonNegativeInteger|)) "\\spad{sizeMultiplication()} returns the number of entries in the multiplication table of the field. Note: the time of multiplication of field elements depends on this size.")) (|getMultiplicationMatrix| (((|Matrix| |#1|)) "\\spad{getMultiplicationMatrix()} returns the multiplication table in form of a matrix.")) (|getMultiplicationTable| (((|Vector| (|List| (|Record| (|:| |value| |#1|) (|:| |index| (|SingleInteger|)))))) "\\spad{getMultiplicationTable()} returns the multiplication table for the normal basis of the field. This table is used to perform multiplications between field elements.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((-4037 (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-367)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (QUOTE (-144))))
(-353 |p| |n|)
((|constructor| (NIL "FiniteField(\\spad{p},{}\\spad{n}) implements finite fields with p**n elements. This packages checks that \\spad{p} is prime. For a non-checking version,{} see \\spadtype{InnerFiniteField}.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((-4037 (|HasCategory| (-905 |#1|) (QUOTE (-144))) (|HasCategory| (-905 |#1|) (QUOTE (-367)))) (|HasCategory| (-905 |#1|) (QUOTE (-146))) (|HasCategory| (-905 |#1|) (QUOTE (-367))) (|HasCategory| (-905 |#1|) (QUOTE (-144))))
(-354 GF |defpol|)
((|constructor| (NIL "FiniteFieldExtensionByPolynomial(\\spad{GF},{} defpol) implements the extension of the finite field {\\em GF} generated by the extension polynomial {\\em defpol} which MUST be irreducible. Note: the user has the responsibility to ensure that {\\em defpol} is irreducible.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((-4037 (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-367)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (QUOTE (-144))))
-(-355 -3197 GF)
+(-355 -3196 GF)
((|constructor| (NIL "FiniteFieldPolynomialPackage2(\\spad{F},{}\\spad{GF}) exports some functions concerning finite fields,{} which depend on a finite field {\\em GF} and an algebraic extension \\spad{F} of {\\em GF},{} \\spadignore{e.g.} a zero of a polynomial over {\\em GF} in \\spad{F}.")) (|rootOfIrreduciblePoly| ((|#1| (|SparseUnivariatePolynomial| |#2|)) "\\spad{rootOfIrreduciblePoly(f)} computes one root of the monic,{} irreducible polynomial \\spad{f},{} which degree must divide the extension degree of {\\em F} over {\\em GF},{} \\spadignore{i.e.} \\spad{f} splits into linear factors over {\\em F}.")) (|Frobenius| ((|#1| |#1|) "\\spad{Frobenius(x)} \\undocumented{}")) (|basis| (((|Vector| |#1|) (|PositiveInteger|)) "\\spad{basis(n)} \\undocumented{}")) (|lookup| (((|PositiveInteger|) |#1|) "\\spad{lookup(x)} \\undocumented{}")) (|coerce| ((|#1| |#2|) "\\spad{coerce(x)} \\undocumented{}")))
NIL
NIL
@@ -1356,13 +1356,13 @@ NIL
((|constructor| (NIL "This package provides a number of functions for generating,{} counting and testing irreducible,{} normal,{} primitive,{} random polynomials over finite fields.")) (|reducedQPowers| (((|PrimitiveArray| (|SparseUnivariatePolynomial| |#1|)) (|SparseUnivariatePolynomial| |#1|)) "\\spad{reducedQPowers(f)} generates \\spad{[x,{}x**q,{}x**(q**2),{}...,{}x**(q**(n-1))]} reduced modulo \\spad{f} where \\spad{q = size()\\$GF} and \\spad{n = degree f}.")) (|leastAffineMultiple| (((|SparseUnivariatePolynomial| |#1|) (|SparseUnivariatePolynomial| |#1|)) "\\spad{leastAffineMultiple(f)} computes the least affine polynomial which is divisible by the polynomial \\spad{f} over the finite field {\\em GF},{} \\spadignore{i.e.} a polynomial whose exponents are 0 or a power of \\spad{q},{} the size of {\\em GF}.")) (|random| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|) (|PositiveInteger|)) "\\spad{random(m,{}n)}\\$FFPOLY(\\spad{GF}) generates a random monic polynomial of degree \\spad{d} over the finite field {\\em GF},{} \\spad{d} between \\spad{m} and \\spad{n}.") (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{random(n)}\\$FFPOLY(\\spad{GF}) generates a random monic polynomial of degree \\spad{n} over the finite field {\\em GF}.")) (|nextPrimitiveNormalPoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextPrimitiveNormalPoly(f)} yields the next primitive normal polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the {\\em lookup} of the constant term of \\spad{f} is less than this number for \\spad{g} or,{} in case these numbers are equal,{} if the {\\em lookup} of the coefficient of the term of degree {\\em n-1} of \\spad{f} is less than this number for \\spad{g}. If these numbers are equals,{} \\spad{f < g} if the number of monomials of \\spad{f} is less than that for \\spad{g},{} or if the lists of exponents for \\spad{f} are lexicographically less than those for \\spad{g}. If these lists are also equal,{} the lists of coefficients are coefficients according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}. This operation is equivalent to nextNormalPrimitivePoly(\\spad{f}).")) (|nextNormalPrimitivePoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextNormalPrimitivePoly(f)} yields the next normal primitive polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the {\\em lookup} of the constant term of \\spad{f} is less than this number for \\spad{g} or if {\\em lookup} of the coefficient of the term of degree {\\em n-1} of \\spad{f} is less than this number for \\spad{g}. Otherwise,{} \\spad{f < g} if the number of monomials of \\spad{f} is less than that for \\spad{g} or if the lists of exponents for \\spad{f} are lexicographically less than those for \\spad{g}. If these lists are also equal,{} the lists of coefficients are compared according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}. This operation is equivalent to nextPrimitiveNormalPoly(\\spad{f}).")) (|nextNormalPoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextNormalPoly(f)} yields the next normal polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the {\\em lookup} of the coefficient of the term of degree {\\em n-1} of \\spad{f} is less than that for \\spad{g}. In case these numbers are equal,{} \\spad{f < g} if if the number of monomials of \\spad{f} is less that for \\spad{g} or if the list of exponents of \\spad{f} are lexicographically less than the corresponding list for \\spad{g}. If these lists are also equal,{} the lists of coefficients are compared according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}.")) (|nextPrimitivePoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextPrimitivePoly(f)} yields the next primitive polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the {\\em lookup} of the constant term of \\spad{f} is less than this number for \\spad{g}. If these values are equal,{} then \\spad{f < g} if if the number of monomials of \\spad{f} is less than that for \\spad{g} or if the lists of exponents of \\spad{f} are lexicographically less than the corresponding list for \\spad{g}. If these lists are also equal,{} the lists of coefficients are compared according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}.")) (|nextIrreduciblePoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextIrreduciblePoly(f)} yields the next monic irreducible polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the number of monomials of \\spad{f} is less than this number for \\spad{g}. If \\spad{f} and \\spad{g} have the same number of monomials,{} the lists of exponents are compared lexicographically. If these lists are also equal,{} the lists of coefficients are compared according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}.")) (|createPrimitiveNormalPoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createPrimitiveNormalPoly(n)}\\$FFPOLY(\\spad{GF}) generates a normal and primitive polynomial of degree \\spad{n} over the field {\\em GF}. polynomial of degree \\spad{n} over the field {\\em GF}.")) (|createNormalPrimitivePoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createNormalPrimitivePoly(n)}\\$FFPOLY(\\spad{GF}) generates a normal and primitive polynomial of degree \\spad{n} over the field {\\em GF}. Note: this function is equivalent to createPrimitiveNormalPoly(\\spad{n})")) (|createNormalPoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createNormalPoly(n)}\\$FFPOLY(\\spad{GF}) generates a normal polynomial of degree \\spad{n} over the finite field {\\em GF}.")) (|createPrimitivePoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createPrimitivePoly(n)}\\$FFPOLY(\\spad{GF}) generates a primitive polynomial of degree \\spad{n} over the finite field {\\em GF}.")) (|createIrreduciblePoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createIrreduciblePoly(n)}\\$FFPOLY(\\spad{GF}) generates a monic irreducible univariate polynomial of degree \\spad{n} over the finite field {\\em GF}.")) (|numberOfNormalPoly| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{numberOfNormalPoly(n)}\\$FFPOLY(\\spad{GF}) yields the number of normal polynomials of degree \\spad{n} over the finite field {\\em GF}.")) (|numberOfPrimitivePoly| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{numberOfPrimitivePoly(n)}\\$FFPOLY(\\spad{GF}) yields the number of primitive polynomials of degree \\spad{n} over the finite field {\\em GF}.")) (|numberOfIrreduciblePoly| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{numberOfIrreduciblePoly(n)}\\$FFPOLY(\\spad{GF}) yields the number of monic irreducible univariate polynomials of degree \\spad{n} over the finite field {\\em GF}.")) (|normal?| (((|Boolean|) (|SparseUnivariatePolynomial| |#1|)) "\\spad{normal?(f)} tests whether the polynomial \\spad{f} over a finite field is normal,{} \\spadignore{i.e.} its roots are linearly independent over the field.")) (|primitive?| (((|Boolean|) (|SparseUnivariatePolynomial| |#1|)) "\\spad{primitive?(f)} tests whether the polynomial \\spad{f} over a finite field is primitive,{} \\spadignore{i.e.} all its roots are primitive.")))
NIL
NIL
-(-357 -3197 FP FPP)
+(-357 -3196 FP FPP)
((|constructor| (NIL "This package solves linear diophantine equations for Bivariate polynomials over finite fields")) (|solveLinearPolynomialEquation| (((|Union| (|List| |#3|) "failed") (|List| |#3|) |#3|) "\\spad{solveLinearPolynomialEquation([f1,{} ...,{} fn],{} g)} (where the \\spad{fi} are relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g/prod \\spad{fi} = sum ai/fi} or returns \"failed\" if no such list of \\spad{ai}\\spad{'s} exists.")))
NIL
NIL
(-358 GF |n|)
((|constructor| (NIL "FiniteFieldExtensionByPolynomial(\\spad{GF},{} \\spad{n}) implements an extension of the finite field {\\em GF} of degree \\spad{n} generated by the extension polynomial constructed by \\spadfunFrom{createIrreduciblePoly}{FiniteFieldPolynomialPackage} from \\spadtype{FiniteFieldPolynomialPackage}.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((-4037 (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-367)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (QUOTE (-144))))
(-359 R |ls|)
((|constructor| (NIL "This is just an interface between several packages and domains. The goal is to compute lexicographical Groebner bases of sets of polynomial with type \\spadtype{Polynomial R} by the {\\em FGLM} algorithm if this is possible (\\spadignore{i.e.} if the input system generates a zero-dimensional ideal).")) (|groebner| (((|List| (|Polynomial| |#1|)) (|List| (|Polynomial| |#1|))) "\\axiom{groebner(\\spad{lq1})} returns the lexicographical Groebner basis of \\axiom{\\spad{lq1}}. If \\axiom{\\spad{lq1}} generates a zero-dimensional ideal then the {\\em FGLM} strategy is used,{} otherwise the {\\em Sugar} strategy is used.")) (|fglmIfCan| (((|Union| (|List| (|Polynomial| |#1|)) "failed") (|List| (|Polynomial| |#1|))) "\\axiom{fglmIfCan(\\spad{lq1})} returns the lexicographical Groebner basis of \\axiom{\\spad{lq1}} by using the {\\em FGLM} strategy,{} if \\axiom{zeroDimensional?(\\spad{lq1})} holds.")) (|zeroDimensional?| (((|Boolean|) (|List| (|Polynomial| |#1|))) "\\axiom{zeroDimensional?(\\spad{lq1})} returns \\spad{true} iff \\axiom{\\spad{lq1}} generates a zero-dimensional ideal \\spad{w}.\\spad{r}.\\spad{t}. the variables of \\axiom{\\spad{ls}}.")))
@@ -1370,7 +1370,7 @@ NIL
NIL
(-360 S)
((|constructor| (NIL "The free group on a set \\spad{S} is the group of finite products of the form \\spad{reduce(*,{}[\\spad{si} ** \\spad{ni}])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are integers. The multiplication is not commutative.")) (|factors| (((|List| (|Record| (|:| |gen| |#1|) (|:| |exp| (|Integer|)))) $) "\\spad{factors(a1\\^e1,{}...,{}an\\^en)} returns \\spad{[[a1,{} e1],{}...,{}[an,{} en]]}.")) (|mapGen| (($ (|Mapping| |#1| |#1|) $) "\\spad{mapGen(f,{} a1\\^e1 ... an\\^en)} returns \\spad{f(a1)\\^e1 ... f(an)\\^en}.")) (|mapExpon| (($ (|Mapping| (|Integer|) (|Integer|)) $) "\\spad{mapExpon(f,{} a1\\^e1 ... an\\^en)} returns \\spad{a1\\^f(e1) ... an\\^f(en)}.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(x,{} n)} returns the factor of the n^th monomial of \\spad{x}.")) (|nthExpon| (((|Integer|) $ (|Integer|)) "\\spad{nthExpon(x,{} n)} returns the exponent of the n^th monomial of \\spad{x}.")) (|size| (((|NonNegativeInteger|) $) "\\spad{size(x)} returns the number of monomials in \\spad{x}.")) (** (($ |#1| (|Integer|)) "\\spad{s ** n} returns the product of \\spad{s} by itself \\spad{n} times.")) (* (($ $ |#1|) "\\spad{x * s} returns the product of \\spad{x} by \\spad{s} on the right.") (($ |#1| $) "\\spad{s * x} returns the product of \\spad{x} by \\spad{s} on the left.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-361 S)
((|constructor| (NIL "The category of commutative fields,{} \\spadignore{i.e.} commutative rings where all non-zero elements have multiplicative inverses. The \\spadfun{factor} operation while trivial is useful to have defined. \\blankline")) (|canonicalsClosed| ((|attribute|) "since \\spad{0*0=0},{} \\spad{1*1=1}")) (|canonicalUnitNormal| ((|attribute|) "either 0 or 1.")) (/ (($ $ $) "\\spad{x/y} divides the element \\spad{x} by the element \\spad{y}. Error: if \\spad{y} is 0.")))
@@ -1378,7 +1378,7 @@ NIL
NIL
(-362)
((|constructor| (NIL "The category of commutative fields,{} \\spadignore{i.e.} commutative rings where all non-zero elements have multiplicative inverses. The \\spadfun{factor} operation while trivial is useful to have defined. \\blankline")) (|canonicalsClosed| ((|attribute|) "since \\spad{0*0=0},{} \\spad{1*1=1}")) (|canonicalUnitNormal| ((|attribute|) "either 0 or 1.")) (/ (($ $ $) "\\spad{x/y} divides the element \\spad{x} by the element \\spad{y}. Error: if \\spad{y} is 0.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-363 |Name| S)
((|constructor| (NIL "This category provides an interface to operate on files in the computer\\spad{'s} file system. The precise method of naming files is determined by the Name parameter. The type of the contents of the file is determined by \\spad{S}.")) (|write!| ((|#2| $ |#2|) "\\spad{write!(f,{}s)} puts the value \\spad{s} into the file \\spad{f}. The state of \\spad{f} is modified so subsequents call to \\spad{write!} will append one after another.")) (|read!| ((|#2| $) "\\spad{read!(f)} extracts a value from file \\spad{f}. The state of \\spad{f} is modified so a subsequent call to \\spadfun{read!} will return the next element.")) (|iomode| (((|String|) $) "\\spad{iomode(f)} returns the status of the file \\spad{f}. The input/output status of \\spad{f} may be \"input\",{} \"output\" or \"closed\" mode.")) (|name| ((|#1| $) "\\spad{name(f)} returns the external name of the file \\spad{f}.")) (|close!| (($ $) "\\spad{close!(f)} returns the file \\spad{f} closed to input and output.")) (|reopen!| (($ $ (|String|)) "\\spad{reopen!(f,{}mode)} returns a file \\spad{f} reopened for operation in the indicated mode: \"input\" or \"output\". \\spad{reopen!(f,{}\"input\")} will reopen the file \\spad{f} for input.")) (|open| (($ |#1| (|String|)) "\\spad{open(s,{}mode)} returns a file \\spad{s} open for operation in the indicated mode: \"input\" or \"output\".") (($ |#1|) "\\spad{open(s)} returns the file \\spad{s} open for input.")))
@@ -1394,7 +1394,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-554))))
(-366 R)
((|constructor| (NIL "A FiniteRankNonAssociativeAlgebra is a non associative algebra over a commutative ring \\spad{R} which is a free \\spad{R}-module of finite rank.")) (|unitsKnown| ((|attribute|) "unitsKnown means that \\spadfun{recip} truly yields reciprocal or \\spad{\"failed\"} if not a unit,{} similarly for \\spadfun{leftRecip} and \\spadfun{rightRecip}. The reason is that we use left,{} respectively right,{} minimal polynomials to decide this question.")) (|unit| (((|Union| $ "failed")) "\\spad{unit()} returns a unit of the algebra (necessarily unique),{} or \\spad{\"failed\"} if there is none.")) (|rightUnit| (((|Union| $ "failed")) "\\spad{rightUnit()} returns a right unit of the algebra (not necessarily unique),{} or \\spad{\"failed\"} if there is none.")) (|leftUnit| (((|Union| $ "failed")) "\\spad{leftUnit()} returns a left unit of the algebra (not necessarily unique),{} or \\spad{\"failed\"} if there is none.")) (|rightUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{rightUnits()} returns the affine space of all right units of the algebra,{} or \\spad{\"failed\"} if there is none.")) (|leftUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{leftUnits()} returns the affine space of all left units of the algebra,{} or \\spad{\"failed\"} if there is none.")) (|rightMinimalPolynomial| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{rightMinimalPolynomial(a)} returns the polynomial determined by the smallest non-trivial linear combination of right powers of \\spad{a}. Note: the polynomial never has a constant term as in general the algebra has no unit.")) (|leftMinimalPolynomial| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{leftMinimalPolynomial(a)} returns the polynomial determined by the smallest non-trivial linear combination of left powers of \\spad{a}. Note: the polynomial never has a constant term as in general the algebra has no unit.")) (|associatorDependence| (((|List| (|Vector| |#1|))) "\\spad{associatorDependence()} looks for the associator identities,{} \\spadignore{i.e.} finds a basis of the solutions of the linear combinations of the six permutations of \\spad{associator(a,{}b,{}c)} which yield 0,{} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra. The order of the permutations is \\spad{123 231 312 132 321 213}.")) (|rightRecip| (((|Union| $ "failed") $) "\\spad{rightRecip(a)} returns an element,{} which is a right inverse of \\spad{a},{} or \\spad{\"failed\"} if there is no unit element,{} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|leftRecip| (((|Union| $ "failed") $) "\\spad{leftRecip(a)} returns an element,{} which is a left inverse of \\spad{a},{} or \\spad{\"failed\"} if there is no unit element,{} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(a)} returns an element,{} which is both a left and a right inverse of \\spad{a},{} or \\spad{\"failed\"} if there is no unit element,{} if such an element doesn\\spad{'t} exist or cannot be determined (see unitsKnown).")) (|lieAlgebra?| (((|Boolean|)) "\\spad{lieAlgebra?()} tests if the algebra is anticommutative and \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra (Jacobi identity). Example: for every associative algebra \\spad{(A,{}+,{}@)} we can construct a Lie algebra \\spad{(A,{}+,{}*)},{} where \\spad{a*b := a@b-b@a}.")) (|jordanAlgebra?| (((|Boolean|)) "\\spad{jordanAlgebra?()} tests if the algebra is commutative,{} characteristic is not 2,{} and \\spad{(a*b)*a**2 - a*(b*a**2) = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra (Jordan identity). Example: for every associative algebra \\spad{(A,{}+,{}@)} we can construct a Jordan algebra \\spad{(A,{}+,{}*)},{} where \\spad{a*b := (a@b+b@a)/2}.")) (|noncommutativeJordanAlgebra?| (((|Boolean|)) "\\spad{noncommutativeJordanAlgebra?()} tests if the algebra is flexible and Jordan admissible.")) (|jordanAdmissible?| (((|Boolean|)) "\\spad{jordanAdmissible?()} tests if 2 is invertible in the coefficient domain and the multiplication defined by \\spad{(1/2)(a*b+b*a)} determines a Jordan algebra,{} \\spadignore{i.e.} satisfies the Jordan identity. The property of \\spadatt{commutative(\\spad{\"*\"})} follows from by definition.")) (|lieAdmissible?| (((|Boolean|)) "\\spad{lieAdmissible?()} tests if the algebra defined by the commutators is a Lie algebra,{} \\spadignore{i.e.} satisfies the Jacobi identity. The property of anticommutativity follows from definition.")) (|jacobiIdentity?| (((|Boolean|)) "\\spad{jacobiIdentity?()} tests if \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra. For example,{} this holds for crossed products of 3-dimensional vectors.")) (|powerAssociative?| (((|Boolean|)) "\\spad{powerAssociative?()} tests if all subalgebras generated by a single element are associative.")) (|alternative?| (((|Boolean|)) "\\spad{alternative?()} tests if \\spad{2*associator(a,{}a,{}b) = 0 = 2*associator(a,{}b,{}b)} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|flexible?| (((|Boolean|)) "\\spad{flexible?()} tests if \\spad{2*associator(a,{}b,{}a) = 0} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|rightAlternative?| (((|Boolean|)) "\\spad{rightAlternative?()} tests if \\spad{2*associator(a,{}b,{}b) = 0} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|leftAlternative?| (((|Boolean|)) "\\spad{leftAlternative?()} tests if \\spad{2*associator(a,{}a,{}b) = 0} for all \\spad{a},{} \\spad{b} in the algebra. Note: we only can test this; in general we don\\spad{'t} know whether \\spad{2*a=0} implies \\spad{a=0}.")) (|antiAssociative?| (((|Boolean|)) "\\spad{antiAssociative?()} tests if multiplication in algebra is anti-associative,{} \\spadignore{i.e.} \\spad{(a*b)*c + a*(b*c) = 0} for all \\spad{a},{}\\spad{b},{}\\spad{c} in the algebra.")) (|associative?| (((|Boolean|)) "\\spad{associative?()} tests if multiplication in algebra is associative.")) (|antiCommutative?| (((|Boolean|)) "\\spad{antiCommutative?()} tests if \\spad{a*a = 0} for all \\spad{a} in the algebra. Note: this implies \\spad{a*b + b*a = 0} for all \\spad{a} and \\spad{b}.")) (|commutative?| (((|Boolean|)) "\\spad{commutative?()} tests if multiplication in the algebra is commutative.")) (|rightCharacteristicPolynomial| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{rightCharacteristicPolynomial(a)} returns the characteristic polynomial of the right regular representation of \\spad{a} with respect to any basis.")) (|leftCharacteristicPolynomial| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{leftCharacteristicPolynomial(a)} returns the characteristic polynomial of the left regular representation of \\spad{a} with respect to any basis.")) (|rightTraceMatrix| (((|Matrix| |#1|) (|Vector| $)) "\\spad{rightTraceMatrix([v1,{}...,{}vn])} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj}.")) (|leftTraceMatrix| (((|Matrix| |#1|) (|Vector| $)) "\\spad{leftTraceMatrix([v1,{}...,{}vn])} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the left trace of the product \\spad{vi*vj}.")) (|rightDiscriminant| ((|#1| (|Vector| $)) "\\spad{rightDiscriminant([v1,{}...,{}vn])} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj}. Note: the same as \\spad{determinant(rightTraceMatrix([v1,{}...,{}vn]))}.")) (|leftDiscriminant| ((|#1| (|Vector| $)) "\\spad{leftDiscriminant([v1,{}...,{}vn])} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the left trace of the product \\spad{vi*vj}. Note: the same as \\spad{determinant(leftTraceMatrix([v1,{}...,{}vn]))}.")) (|represents| (($ (|Vector| |#1|) (|Vector| $)) "\\spad{represents([a1,{}...,{}am],{}[v1,{}...,{}vm])} returns the linear combination \\spad{a1*vm + ... + an*vm}.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $) (|Vector| $)) "\\spad{coordinates([a1,{}...,{}am],{}[v1,{}...,{}vn])} returns a matrix whose \\spad{i}-th row is formed by the coordinates of \\spad{\\spad{ai}} with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.") (((|Vector| |#1|) $ (|Vector| $)) "\\spad{coordinates(a,{}[v1,{}...,{}vn])} returns the coordinates of \\spad{a} with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.")) (|rightNorm| ((|#1| $) "\\spad{rightNorm(a)} returns the determinant of the right regular representation of \\spad{a}.")) (|leftNorm| ((|#1| $) "\\spad{leftNorm(a)} returns the determinant of the left regular representation of \\spad{a}.")) (|rightTrace| ((|#1| $) "\\spad{rightTrace(a)} returns the trace of the right regular representation of \\spad{a}.")) (|leftTrace| ((|#1| $) "\\spad{leftTrace(a)} returns the trace of the left regular representation of \\spad{a}.")) (|rightRegularRepresentation| (((|Matrix| |#1|) $ (|Vector| $)) "\\spad{rightRegularRepresentation(a,{}[v1,{}...,{}vn])} returns the matrix of the linear map defined by right multiplication by \\spad{a} with respect to the \\spad{R}-module basis \\spad{[v1,{}...,{}vn]}.")) (|leftRegularRepresentation| (((|Matrix| |#1|) $ (|Vector| $)) "\\spad{leftRegularRepresentation(a,{}[v1,{}...,{}vn])} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the \\spad{R}-module basis \\spad{[v1,{}...,{}vn]}.")) (|structuralConstants| (((|Vector| (|Matrix| |#1|)) (|Vector| $)) "\\spad{structuralConstants([v1,{}v2,{}...,{}vm])} calculates the structural constants \\spad{[(gammaijk) for k in 1..m]} defined by \\spad{\\spad{vi} * vj = gammaij1 * v1 + ... + gammaijm * vm},{} where \\spad{[v1,{}...,{}vm]} is an \\spad{R}-module basis of a subalgebra.")) (|conditionsForIdempotents| (((|List| (|Polynomial| |#1|)) (|Vector| $)) "\\spad{conditionsForIdempotents([v1,{}...,{}vn])} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}.")) (|rank| (((|PositiveInteger|)) "\\spad{rank()} returns the rank of the algebra as \\spad{R}-module.")) (|someBasis| (((|Vector| $)) "\\spad{someBasis()} returns some \\spad{R}-module basis.")))
-((-4399 |has| |#1| (-554)) (-4397 . T) (-4396 . T))
+((-4400 |has| |#1| (-554)) (-4398 . T) (-4397 . T))
NIL
(-367)
((|constructor| (NIL "The category of domains composed of a finite set of elements. We include the functions \\spadfun{lookup} and \\spadfun{index} to give a bijection between the finite set and an initial segment of positive integers. \\blankline")) (|random| (($) "\\spad{random()} returns a random element from the set.")) (|lookup| (((|PositiveInteger|) $) "\\spad{lookup(x)} returns a positive integer such that \\spad{x = index lookup x}.")) (|index| (($ (|PositiveInteger|)) "\\spad{index(i)} takes a positive integer \\spad{i} less than or equal to \\spad{size()} and returns the \\spad{i}\\spad{-}th element of the set. This operation establishs a bijection between the elements of the finite set and \\spad{1..size()}.")) (|size| (((|NonNegativeInteger|)) "\\spad{size()} returns the number of elements in the set.")))
@@ -1406,7 +1406,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-362))))
(-369 R UP)
((|constructor| (NIL "A FiniteRankAlgebra is an algebra over a commutative ring \\spad{R} which is a free \\spad{R}-module of finite rank.")) (|minimalPolynomial| ((|#2| $) "\\spad{minimalPolynomial(a)} returns the minimal polynomial of \\spad{a}.")) (|characteristicPolynomial| ((|#2| $) "\\spad{characteristicPolynomial(a)} returns the characteristic polynomial of the regular representation of \\spad{a} with respect to any basis.")) (|traceMatrix| (((|Matrix| |#1|) (|Vector| $)) "\\spad{traceMatrix([v1,{}..,{}vn])} is the \\spad{n}-by-\\spad{n} matrix ( \\spad{Tr}(\\spad{vi} * \\spad{vj}) )")) (|discriminant| ((|#1| (|Vector| $)) "\\spad{discriminant([v1,{}..,{}vn])} returns \\spad{determinant(traceMatrix([v1,{}..,{}vn]))}.")) (|represents| (($ (|Vector| |#1|) (|Vector| $)) "\\spad{represents([a1,{}..,{}an],{}[v1,{}..,{}vn])} returns \\spad{a1*v1 + ... + an*vn}.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $) (|Vector| $)) "\\spad{coordinates([v1,{}...,{}vm],{} basis)} returns the coordinates of the \\spad{vi}\\spad{'s} with to the basis \\spad{basis}. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#1|) $ (|Vector| $)) "\\spad{coordinates(a,{}basis)} returns the coordinates of \\spad{a} with respect to the \\spad{basis} \\spad{basis}.")) (|norm| ((|#1| $) "\\spad{norm(a)} returns the determinant of the regular representation of \\spad{a} with respect to any basis.")) (|trace| ((|#1| $) "\\spad{trace(a)} returns the trace of the regular representation of \\spad{a} with respect to any basis.")) (|regularRepresentation| (((|Matrix| |#1|) $ (|Vector| $)) "\\spad{regularRepresentation(a,{}basis)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the \\spad{basis} \\spad{basis}.")) (|rank| (((|PositiveInteger|)) "\\spad{rank()} returns the rank of the algebra.")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-370 S A R B)
((|constructor| (NIL "FiniteLinearAggregateFunctions2 provides functions involving two FiniteLinearAggregates where the underlying domains might be different. An example of this might be creating a list of rational numbers by mapping a function across a list of integers where the function divides each integer by 1000.")) (|scan| ((|#4| (|Mapping| |#3| |#1| |#3|) |#2| |#3|) "\\spad{scan(f,{}a,{}r)} successively applies \\spad{reduce(f,{}x,{}r)} to more and more leading sub-aggregates \\spad{x} of aggregrate \\spad{a}. More precisely,{} if \\spad{a} is \\spad{[a1,{}a2,{}...]},{} then \\spad{scan(f,{}a,{}r)} returns \\spad{[reduce(f,{}[a1],{}r),{}reduce(f,{}[a1,{}a2],{}r),{}...]}.")) (|reduce| ((|#3| (|Mapping| |#3| |#1| |#3|) |#2| |#3|) "\\spad{reduce(f,{}a,{}r)} applies function \\spad{f} to each successive element of the aggregate \\spad{a} and an accumulant initialized to \\spad{r}. For example,{} \\spad{reduce(_+\\$Integer,{}[1,{}2,{}3],{}0)} does \\spad{3+(2+(1+0))}. Note: third argument \\spad{r} may be regarded as the identity element for the function \\spad{f}.")) (|map| ((|#4| (|Mapping| |#3| |#1|) |#2|) "\\spad{map(f,{}a)} applies function \\spad{f} to each member of aggregate \\spad{a} resulting in a new aggregate over a possibly different underlying domain.")))
@@ -1415,14 +1415,14 @@ NIL
(-371 A S)
((|constructor| (NIL "A finite linear aggregate is a linear aggregate of finite length. The finite property of the aggregate adds several exports to the list of exports from \\spadtype{LinearAggregate} such as \\spadfun{reverse},{} \\spadfun{sort},{} and so on.")) (|sort!| (($ $) "\\spad{sort!(u)} returns \\spad{u} with its elements in ascending order.") (($ (|Mapping| (|Boolean|) |#2| |#2|) $) "\\spad{sort!(p,{}u)} returns \\spad{u} with its elements ordered by \\spad{p}.")) (|reverse!| (($ $) "\\spad{reverse!(u)} returns \\spad{u} with its elements in reverse order.")) (|copyInto!| (($ $ $ (|Integer|)) "\\spad{copyInto!(u,{}v,{}i)} returns aggregate \\spad{u} containing a copy of \\spad{v} inserted at element \\spad{i}.")) (|position| (((|Integer|) |#2| $ (|Integer|)) "\\spad{position(x,{}a,{}n)} returns the index \\spad{i} of the first occurrence of \\spad{x} in \\axiom{a} where \\axiom{\\spad{i} \\spad{>=} \\spad{n}},{} and \\axiom{minIndex(a) - 1} if no such \\spad{x} is found.") (((|Integer|) |#2| $) "\\spad{position(x,{}a)} returns the index \\spad{i} of the first occurrence of \\spad{x} in a,{} and \\axiom{minIndex(a) - 1} if there is no such \\spad{x}.") (((|Integer|) (|Mapping| (|Boolean|) |#2|) $) "\\spad{position(p,{}a)} returns the index \\spad{i} of the first \\spad{x} in \\axiom{a} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true},{} and \\axiom{minIndex(a) - 1} if there is no such \\spad{x}.")) (|sorted?| (((|Boolean|) $) "\\spad{sorted?(u)} tests if the elements of \\spad{u} are in ascending order.") (((|Boolean|) (|Mapping| (|Boolean|) |#2| |#2|) $) "\\spad{sorted?(p,{}a)} tests if \\axiom{a} is sorted according to predicate \\spad{p}.")) (|sort| (($ $) "\\spad{sort(u)} returns an \\spad{u} with elements in ascending order. Note: \\axiom{sort(\\spad{u}) = sort(\\spad{<=},{}\\spad{u})}.") (($ (|Mapping| (|Boolean|) |#2| |#2|) $) "\\spad{sort(p,{}a)} returns a copy of \\axiom{a} sorted using total ordering predicate \\spad{p}.")) (|reverse| (($ $) "\\spad{reverse(a)} returns a copy of \\axiom{a} with elements in reverse order.")) (|merge| (($ $ $) "\\spad{merge(u,{}v)} merges \\spad{u} and \\spad{v} in ascending order. Note: \\axiom{merge(\\spad{u},{}\\spad{v}) = merge(\\spad{<=},{}\\spad{u},{}\\spad{v})}.") (($ (|Mapping| (|Boolean|) |#2| |#2|) $ $) "\\spad{merge(p,{}a,{}b)} returns an aggregate \\spad{c} which merges \\axiom{a} and \\spad{b}. The result is produced by examining each element \\spad{x} of \\axiom{a} and \\spad{y} of \\spad{b} successively. If \\axiom{\\spad{p}(\\spad{x},{}\\spad{y})} is \\spad{true},{} then \\spad{x} is inserted into the result; otherwise \\spad{y} is inserted. If \\spad{x} is chosen,{} the next element of \\axiom{a} is examined,{} and so on. When all the elements of one aggregate are examined,{} the remaining elements of the other are appended. For example,{} \\axiom{merge(<,{}[1,{}3],{}[2,{}7,{}5])} returns \\axiom{[1,{}2,{}3,{}7,{}5]}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4403)) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))))
+((|HasAttribute| |#1| (QUOTE -4404)) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))))
(-372 S)
((|constructor| (NIL "A finite linear aggregate is a linear aggregate of finite length. The finite property of the aggregate adds several exports to the list of exports from \\spadtype{LinearAggregate} such as \\spadfun{reverse},{} \\spadfun{sort},{} and so on.")) (|sort!| (($ $) "\\spad{sort!(u)} returns \\spad{u} with its elements in ascending order.") (($ (|Mapping| (|Boolean|) |#1| |#1|) $) "\\spad{sort!(p,{}u)} returns \\spad{u} with its elements ordered by \\spad{p}.")) (|reverse!| (($ $) "\\spad{reverse!(u)} returns \\spad{u} with its elements in reverse order.")) (|copyInto!| (($ $ $ (|Integer|)) "\\spad{copyInto!(u,{}v,{}i)} returns aggregate \\spad{u} containing a copy of \\spad{v} inserted at element \\spad{i}.")) (|position| (((|Integer|) |#1| $ (|Integer|)) "\\spad{position(x,{}a,{}n)} returns the index \\spad{i} of the first occurrence of \\spad{x} in \\axiom{a} where \\axiom{\\spad{i} \\spad{>=} \\spad{n}},{} and \\axiom{minIndex(a) - 1} if no such \\spad{x} is found.") (((|Integer|) |#1| $) "\\spad{position(x,{}a)} returns the index \\spad{i} of the first occurrence of \\spad{x} in a,{} and \\axiom{minIndex(a) - 1} if there is no such \\spad{x}.") (((|Integer|) (|Mapping| (|Boolean|) |#1|) $) "\\spad{position(p,{}a)} returns the index \\spad{i} of the first \\spad{x} in \\axiom{a} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true},{} and \\axiom{minIndex(a) - 1} if there is no such \\spad{x}.")) (|sorted?| (((|Boolean|) $) "\\spad{sorted?(u)} tests if the elements of \\spad{u} are in ascending order.") (((|Boolean|) (|Mapping| (|Boolean|) |#1| |#1|) $) "\\spad{sorted?(p,{}a)} tests if \\axiom{a} is sorted according to predicate \\spad{p}.")) (|sort| (($ $) "\\spad{sort(u)} returns an \\spad{u} with elements in ascending order. Note: \\axiom{sort(\\spad{u}) = sort(\\spad{<=},{}\\spad{u})}.") (($ (|Mapping| (|Boolean|) |#1| |#1|) $) "\\spad{sort(p,{}a)} returns a copy of \\axiom{a} sorted using total ordering predicate \\spad{p}.")) (|reverse| (($ $) "\\spad{reverse(a)} returns a copy of \\axiom{a} with elements in reverse order.")) (|merge| (($ $ $) "\\spad{merge(u,{}v)} merges \\spad{u} and \\spad{v} in ascending order. Note: \\axiom{merge(\\spad{u},{}\\spad{v}) = merge(\\spad{<=},{}\\spad{u},{}\\spad{v})}.") (($ (|Mapping| (|Boolean|) |#1| |#1|) $ $) "\\spad{merge(p,{}a,{}b)} returns an aggregate \\spad{c} which merges \\axiom{a} and \\spad{b}. The result is produced by examining each element \\spad{x} of \\axiom{a} and \\spad{y} of \\spad{b} successively. If \\axiom{\\spad{p}(\\spad{x},{}\\spad{y})} is \\spad{true},{} then \\spad{x} is inserted into the result; otherwise \\spad{y} is inserted. If \\spad{x} is chosen,{} the next element of \\axiom{a} is examined,{} and so on. When all the elements of one aggregate are examined,{} the remaining elements of the other are appended. For example,{} \\axiom{merge(<,{}[1,{}3],{}[2,{}7,{}5])} returns \\axiom{[1,{}2,{}3,{}7,{}5]}.")))
-((-4402 . T))
+((-4403 . T))
NIL
(-373 |VarSet| R)
((|constructor| (NIL "The category of free Lie algebras. It is used by domains of non-commutative algebra: \\spadtype{LiePolynomial} and \\spadtype{XPBWPolynomial}. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr})")) (|eval| (($ $ (|List| |#1|) (|List| $)) "\\axiom{eval(\\spad{p},{} [\\spad{x1},{}...,{}\\spad{xn}],{} [\\spad{v1},{}...,{}\\spad{vn}])} replaces \\axiom{\\spad{xi}} by \\axiom{\\spad{vi}} in \\axiom{\\spad{p}}.") (($ $ |#1| $) "\\axiom{eval(\\spad{p},{} \\spad{x},{} \\spad{v})} replaces \\axiom{\\spad{x}} by \\axiom{\\spad{v}} in \\axiom{\\spad{p}}.")) (|varList| (((|List| |#1|) $) "\\axiom{varList(\\spad{x})} returns the list of distinct entries of \\axiom{\\spad{x}}.")) (|trunc| (($ $ (|NonNegativeInteger|)) "\\axiom{trunc(\\spad{p},{}\\spad{n})} returns the polynomial \\axiom{\\spad{p}} truncated at order \\axiom{\\spad{n}}.")) (|mirror| (($ $) "\\axiom{mirror(\\spad{x})} returns \\axiom{Sum(r_i mirror(w_i))} if \\axiom{\\spad{x}} is \\axiom{Sum(r_i w_i)}.")) (|LiePoly| (($ (|LyndonWord| |#1|)) "\\axiom{LiePoly(\\spad{l})} returns the bracketed form of \\axiom{\\spad{l}} as a Lie polynomial.")) (|rquo| (((|XRecursivePolynomial| |#1| |#2|) (|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{rquo(\\spad{x},{}\\spad{y})} returns the right simplification of \\axiom{\\spad{x}} by \\axiom{\\spad{y}}.")) (|lquo| (((|XRecursivePolynomial| |#1| |#2|) (|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{lquo(\\spad{x},{}\\spad{y})} returns the left simplification of \\axiom{\\spad{x}} by \\axiom{\\spad{y}}.")) (|degree| (((|NonNegativeInteger|) $) "\\axiom{degree(\\spad{x})} returns the greatest length of a word in the support of \\axiom{\\spad{x}}.")) (|coerce| (((|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{x})} returns \\axiom{\\spad{x}} as a recursive polynomial.") (((|XDistributedPolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{x})} returns \\axiom{\\spad{x}} as distributed polynomial.") (($ |#1|) "\\axiom{coerce(\\spad{x})} returns \\axiom{\\spad{x}} as a Lie polynomial.")) (|coef| ((|#2| (|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{coef(\\spad{x},{}\\spad{y})} returns the scalar product of \\axiom{\\spad{x}} by \\axiom{\\spad{y}},{} the set of words being regarded as an orthogonal basis.")))
-((|JacobiIdentity| . T) (|NullSquare| . T) (-4397 . T) (-4396 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4398 . T) (-4397 . T))
NIL
(-374 S V)
((|constructor| (NIL "This package exports 3 sorting algorithms which work over FiniteLinearAggregates.")) (|shellSort| ((|#2| (|Mapping| (|Boolean|) |#1| |#1|) |#2|) "\\spad{shellSort(f,{} agg)} sorts the aggregate agg with the ordering function \\spad{f} using the shellSort algorithm.")) (|heapSort| ((|#2| (|Mapping| (|Boolean|) |#1| |#1|) |#2|) "\\spad{heapSort(f,{} agg)} sorts the aggregate agg with the ordering function \\spad{f} using the heapsort algorithm.")) (|quickSort| ((|#2| (|Mapping| (|Boolean|) |#1| |#1|) |#2|) "\\spad{quickSort(f,{} agg)} sorts the aggregate agg with the ordering function \\spad{f} using the quicksort algorithm.")))
@@ -1434,7 +1434,7 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))))
(-376 R)
((|constructor| (NIL "\\spad{S} is \\spadtype{FullyLinearlyExplicitRingOver R} means that \\spad{S} is a \\spadtype{LinearlyExplicitRingOver R} and,{} in addition,{} if \\spad{R} is a \\spadtype{LinearlyExplicitRingOver Integer},{} then so is \\spad{S}")))
-((-4399 . T))
+((-4400 . T))
NIL
(-377 |Par|)
((|constructor| (NIL "\\indented{3}{This is a package for the approximation of complex solutions for} systems of equations of rational functions with complex rational coefficients. The results are expressed as either complex rational numbers or complex floats depending on the type of the precision parameter which can be either a rational number or a floating point number.")) (|complexRoots| (((|List| (|List| (|Complex| |#1|))) (|List| (|Fraction| (|Polynomial| (|Complex| (|Integer|))))) (|List| (|Symbol|)) |#1|) "\\spad{complexRoots(lrf,{} lv,{} eps)} finds all the complex solutions of a list of rational functions with rational number coefficients with respect the the variables appearing in \\spad{lv}. Each solution is computed to precision eps and returned as list corresponding to the order of variables in \\spad{lv}.") (((|List| (|Complex| |#1|)) (|Fraction| (|Polynomial| (|Complex| (|Integer|)))) |#1|) "\\spad{complexRoots(rf,{} eps)} finds all the complex solutions of a univariate rational function with rational number coefficients. The solutions are computed to precision eps.")) (|complexSolve| (((|List| (|Equation| (|Polynomial| (|Complex| |#1|)))) (|Equation| (|Fraction| (|Polynomial| (|Complex| (|Integer|))))) |#1|) "\\spad{complexSolve(eq,{}eps)} finds all the complex solutions of the equation \\spad{eq} of rational functions with rational rational coefficients with respect to all the variables appearing in \\spad{eq},{} with precision \\spad{eps}.") (((|List| (|Equation| (|Polynomial| (|Complex| |#1|)))) (|Fraction| (|Polynomial| (|Complex| (|Integer|)))) |#1|) "\\spad{complexSolve(p,{}eps)} find all the complex solutions of the rational function \\spad{p} with complex rational coefficients with respect to all the variables appearing in \\spad{p},{} with precision \\spad{eps}.") (((|List| (|List| (|Equation| (|Polynomial| (|Complex| |#1|))))) (|List| (|Equation| (|Fraction| (|Polynomial| (|Complex| (|Integer|)))))) |#1|) "\\spad{complexSolve(leq,{}eps)} finds all the complex solutions to precision \\spad{eps} of the system \\spad{leq} of equations of rational functions over complex rationals with respect to all the variables appearing in \\spad{lp}.") (((|List| (|List| (|Equation| (|Polynomial| (|Complex| |#1|))))) (|List| (|Fraction| (|Polynomial| (|Complex| (|Integer|))))) |#1|) "\\spad{complexSolve(lp,{}eps)} finds all the complex solutions to precision \\spad{eps} of the system \\spad{lp} of rational functions over the complex rationals with respect to all the variables appearing in \\spad{lp}.")))
@@ -1442,7 +1442,7 @@ NIL
NIL
(-378)
((|constructor| (NIL "\\spadtype{Float} implements arbitrary precision floating point arithmetic. The number of significant digits of each operation can be set to an arbitrary value (the default is 20 decimal digits). The operation \\spad{float(mantissa,{}exponent,{}\\spadfunFrom{base}{FloatingPointSystem})} for integer \\spad{mantissa},{} \\spad{exponent} specifies the number \\spad{mantissa * \\spadfunFrom{base}{FloatingPointSystem} ** exponent} The underlying representation for floats is binary not decimal. The implications of this are described below. \\blankline The model adopted is that arithmetic operations are rounded to to nearest unit in the last place,{} that is,{} accurate to within \\spad{2**(-\\spadfunFrom{bits}{FloatingPointSystem})}. Also,{} the elementary functions and constants are accurate to one unit in the last place. A float is represented as a record of two integers,{} the mantissa and the exponent. The \\spadfunFrom{base}{FloatingPointSystem} of the representation is binary,{} hence a \\spad{Record(m:mantissa,{}e:exponent)} represents the number \\spad{m * 2 ** e}. Though it is not assumed that the underlying integers are represented with a binary \\spadfunFrom{base}{FloatingPointSystem},{} the code will be most efficient when this is the the case (this is \\spad{true} in most implementations of Lisp). The decision to choose the \\spadfunFrom{base}{FloatingPointSystem} to be binary has some unfortunate consequences. First,{} decimal numbers like 0.3 cannot be represented exactly. Second,{} there is a further loss of accuracy during conversion to decimal for output. To compensate for this,{} if \\spad{d} digits of precision are specified,{} \\spad{1 + ceiling(log2 d)} bits are used. Two numbers that are displayed identically may therefore be not equal. On the other hand,{} a significant efficiency loss would be incurred if we chose to use a decimal \\spadfunFrom{base}{FloatingPointSystem} when the underlying integer base is binary. \\blankline Algorithms used: For the elementary functions,{} the general approach is to apply identities so that the taylor series can be used,{} and,{} so that it will converge within \\spad{O( sqrt n )} steps. For example,{} using the identity \\spad{exp(x) = exp(x/2)**2},{} we can compute \\spad{exp(1/3)} to \\spad{n} digits of precision as follows. We have \\spad{exp(1/3) = exp(2 ** (-sqrt s) / 3) ** (2 ** sqrt s)}. The taylor series will converge in less than sqrt \\spad{n} steps and the exponentiation requires sqrt \\spad{n} multiplications for a total of \\spad{2 sqrt n} multiplications. Assuming integer multiplication costs \\spad{O( n**2 )} the overall running time is \\spad{O( sqrt(n) n**2 )}. This approach is the best known approach for precisions up to about 10,{}000 digits at which point the methods of Brent which are \\spad{O( log(n) n**2 )} become competitive. Note also that summing the terms of the taylor series for the elementary functions is done using integer operations. This avoids the overhead of floating point operations and results in efficient code at low precisions. This implementation makes no attempt to reuse storage,{} relying on the underlying system to do \\spadgloss{garbage collection}. \\spad{I} estimate that the efficiency of this package at low precisions could be improved by a factor of 2 if in-place operations were available. \\blankline Running times: in the following,{} \\spad{n} is the number of bits of precision \\indented{5}{\\spad{*},{} \\spad{/},{} \\spad{sqrt},{} \\spad{\\spad{pi}},{} \\spad{exp1},{} \\spad{log2},{} \\spad{log10}: \\spad{ O( n**2 )}} \\indented{5}{\\spad{exp},{} \\spad{log},{} \\spad{sin},{} \\spad{atan}:\\space{2}\\spad{ O( sqrt(n) n**2 )}} The other elementary functions are coded in terms of the ones above.")) (|outputSpacing| (((|Void|) (|NonNegativeInteger|)) "\\spad{outputSpacing(n)} inserts a space after \\spad{n} (default 10) digits on output; outputSpacing(0) means no spaces are inserted.")) (|outputGeneral| (((|Void|) (|NonNegativeInteger|)) "\\spad{outputGeneral(n)} sets the output mode to general notation with \\spad{n} significant digits displayed.") (((|Void|)) "\\spad{outputGeneral()} sets the output mode (default mode) to general notation; numbers will be displayed in either fixed or floating (scientific) notation depending on the magnitude.")) (|outputFixed| (((|Void|) (|NonNegativeInteger|)) "\\spad{outputFixed(n)} sets the output mode to fixed point notation,{} with \\spad{n} digits displayed after the decimal point.") (((|Void|)) "\\spad{outputFixed()} sets the output mode to fixed point notation; the output will contain a decimal point.")) (|outputFloating| (((|Void|) (|NonNegativeInteger|)) "\\spad{outputFloating(n)} sets the output mode to floating (scientific) notation with \\spad{n} significant digits displayed after the decimal point.") (((|Void|)) "\\spad{outputFloating()} sets the output mode to floating (scientific) notation,{} \\spadignore{i.e.} \\spad{mantissa * 10 exponent} is displayed as \\spad{0.mantissa E exponent}.")) (|atan| (($ $ $) "\\spad{atan(x,{}y)} computes the arc tangent from \\spad{x} with phase \\spad{y}.")) (|exp1| (($) "\\spad{exp1()} returns exp 1: \\spad{2.7182818284...}.")) (|log10| (($ $) "\\spad{log10(x)} computes the logarithm for \\spad{x} to base 10.") (($) "\\spad{log10()} returns \\spad{ln 10}: \\spad{2.3025809299...}.")) (|log2| (($ $) "\\spad{log2(x)} computes the logarithm for \\spad{x} to base 2.") (($) "\\spad{log2()} returns \\spad{ln 2},{} \\spadignore{i.e.} \\spad{0.6931471805...}.")) (|rationalApproximation| (((|Fraction| (|Integer|)) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{rationalApproximation(f,{} n,{} b)} computes a rational approximation \\spad{r} to \\spad{f} with relative error \\spad{< b**(-n)},{} that is \\spad{|(r-f)/f| < b**(-n)}.") (((|Fraction| (|Integer|)) $ (|NonNegativeInteger|)) "\\spad{rationalApproximation(f,{} n)} computes a rational approximation \\spad{r} to \\spad{f} with relative error \\spad{< 10**(-n)}.")) (|shift| (($ $ (|Integer|)) "\\spad{shift(x,{}n)} adds \\spad{n} to the exponent of float \\spad{x}.")) (|relerror| (((|Integer|) $ $) "\\spad{relerror(x,{}y)} computes the absolute value of \\spad{x - y} divided by \\spad{y},{} when \\spad{y \\~= 0}.")) (|normalize| (($ $) "\\spad{normalize(x)} normalizes \\spad{x} at current precision.")) (** (($ $ $) "\\spad{x ** y} computes \\spad{exp(y log x)} where \\spad{x >= 0}.")) (/ (($ $ (|Integer|)) "\\spad{x / i} computes the division from \\spad{x} by an integer \\spad{i}.")))
-((-4385 . T) (-4393 . T) (-1406 . T) (-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4386 . T) (-4394 . T) (-1406 . T) (-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-379 |Par|)
((|constructor| (NIL "\\indented{3}{This is a package for the approximation of real solutions for} systems of polynomial equations over the rational numbers. The results are expressed as either rational numbers or floats depending on the type of the precision parameter which can be either a rational number or a floating point number.")) (|realRoots| (((|List| |#1|) (|Fraction| (|Polynomial| (|Integer|))) |#1|) "\\spad{realRoots(rf,{} eps)} finds the real zeros of a univariate rational function with precision given by eps.") (((|List| (|List| |#1|)) (|List| (|Fraction| (|Polynomial| (|Integer|)))) (|List| (|Symbol|)) |#1|) "\\spad{realRoots(lp,{}lv,{}eps)} computes the list of the real solutions of the list \\spad{lp} of rational functions with rational coefficients with respect to the variables in \\spad{lv},{} with precision \\spad{eps}. Each solution is expressed as a list of numbers in order corresponding to the variables in \\spad{lv}.")) (|solve| (((|List| (|Equation| (|Polynomial| |#1|))) (|Equation| (|Fraction| (|Polynomial| (|Integer|)))) |#1|) "\\spad{solve(eq,{}eps)} finds all of the real solutions of the univariate equation \\spad{eq} of rational functions with respect to the unique variables appearing in \\spad{eq},{} with precision \\spad{eps}.") (((|List| (|Equation| (|Polynomial| |#1|))) (|Fraction| (|Polynomial| (|Integer|))) |#1|) "\\spad{solve(p,{}eps)} finds all of the real solutions of the univariate rational function \\spad{p} with rational coefficients with respect to the unique variable appearing in \\spad{p},{} with precision \\spad{eps}.") (((|List| (|List| (|Equation| (|Polynomial| |#1|)))) (|List| (|Equation| (|Fraction| (|Polynomial| (|Integer|))))) |#1|) "\\spad{solve(leq,{}eps)} finds all of the real solutions of the system \\spad{leq} of equationas of rational functions with respect to all the variables appearing in \\spad{lp},{} with precision \\spad{eps}.") (((|List| (|List| (|Equation| (|Polynomial| |#1|)))) (|List| (|Fraction| (|Polynomial| (|Integer|)))) |#1|) "\\spad{solve(lp,{}eps)} finds all of the real solutions of the system \\spad{lp} of rational functions over the rational numbers with respect to all the variables appearing in \\spad{lp},{} with precision \\spad{eps}.")))
@@ -1450,11 +1450,11 @@ NIL
NIL
(-380 R S)
((|constructor| (NIL "This domain implements linear combinations of elements from the domain \\spad{S} with coefficients in the domain \\spad{R} where \\spad{S} is an ordered set and \\spad{R} is a ring (which may be non-commutative). This domain is used by domains of non-commutative algebra such as: \\indented{4}{\\spadtype{XDistributedPolynomial},{}} \\indented{4}{\\spadtype{XRecursivePolynomial}.} Author: Michel Petitot (petitot@lifl.\\spad{fr})")) (* (($ |#2| |#1|) "\\spad{s*r} returns the product \\spad{r*s} used by \\spadtype{XRecursivePolynomial}")))
-((-4397 . T) (-4396 . T))
+((-4398 . T) (-4397 . T))
((|HasCategory| |#1| (QUOTE (-171))))
(-381 R |Basis|)
((|constructor| (NIL "A domain of this category implements formal linear combinations of elements from a domain \\spad{Basis} with coefficients in a domain \\spad{R}. The domain \\spad{Basis} needs only to belong to the category \\spadtype{SetCategory} and \\spad{R} to the category \\spadtype{Ring}. Thus the coefficient ring may be non-commutative. See the \\spadtype{XDistributedPolynomial} constructor for examples of domains built with the \\spadtype{FreeModuleCat} category constructor. Author: Michel Petitot (petitot@lifl.\\spad{fr})")) (|reductum| (($ $) "\\spad{reductum(x)} returns \\spad{x} minus its leading term.")) (|leadingTerm| (((|Record| (|:| |k| |#2|) (|:| |c| |#1|)) $) "\\spad{leadingTerm(x)} returns the first term which appears in \\spad{ListOfTerms(x)}.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(x)} returns the first coefficient which appears in \\spad{ListOfTerms(x)}.")) (|leadingMonomial| ((|#2| $) "\\spad{leadingMonomial(x)} returns the first element from \\spad{Basis} which appears in \\spad{ListOfTerms(x)}.")) (|numberOfMonomials| (((|NonNegativeInteger|) $) "\\spad{numberOfMonomials(x)} returns the number of monomials of \\spad{x}.")) (|monomials| (((|List| $) $) "\\spad{monomials(x)} returns the list of \\spad{r_i*b_i} whose sum is \\spad{x}.")) (|coefficients| (((|List| |#1|) $) "\\spad{coefficients(x)} returns the list of coefficients of \\spad{x}.")) (|ListOfTerms| (((|List| (|Record| (|:| |k| |#2|) (|:| |c| |#1|))) $) "\\spad{ListOfTerms(x)} returns a list \\spad{lt} of terms with type \\spad{Record(k: Basis,{} c: R)} such that \\spad{x} equals \\spad{reduce(+,{} map(x +-> monom(x.k,{} x.c),{} lt))}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(x)} returns \\spad{true} if \\spad{x} contains a single monomial.")) (|monom| (($ |#2| |#1|) "\\spad{monom(b,{}r)} returns the element with the single monomial \\indented{1}{\\spad{b} and coefficient \\spad{r}.}")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,{}u)} maps function \\spad{fn} onto the coefficients \\indented{1}{of the non-zero monomials of \\spad{u}.}")) (|coefficient| ((|#1| $ |#2|) "\\spad{coefficient(x,{}b)} returns the coefficient of \\spad{b} in \\spad{x}.")) (* (($ |#1| |#2|) "\\spad{r*b} returns the product of \\spad{r} by \\spad{b}.")))
-((-4397 . T) (-4396 . T))
+((-4398 . T) (-4397 . T))
NIL
(-382)
((|constructor| (NIL "\\axiomType{FortranMatrixCategory} provides support for producing Functions and Subroutines when the input to these is an AXIOM object of type \\axiomType{Matrix} or in domains involving \\axiomType{FortranCode}.")) (|coerce| (($ (|Record| (|:| |localSymbols| (|SymbolTable|)) (|:| |code| (|List| (|FortranCode|))))) "\\spad{coerce(e)} takes the component of \\spad{e} from \\spadtype{List FortranCode} and uses it as the body of the ASP,{} making the declarations in the \\spadtype{SymbolTable} component.") (($ (|FortranCode|)) "\\spad{coerce(e)} takes an object from \\spadtype{FortranCode} and \\indented{1}{uses it as the body of an ASP.}") (($ (|List| (|FortranCode|))) "\\spad{coerce(e)} takes an object from \\spadtype{List FortranCode} and \\indented{1}{uses it as the body of an ASP.}") (($ (|Matrix| (|MachineFloat|))) "\\spad{coerce(v)} produces an ASP which returns the value of \\spad{v}.")))
@@ -1466,7 +1466,7 @@ NIL
NIL
(-384 R S)
((|constructor| (NIL "A \\spad{bi}-module is a free module over a ring with generators indexed by an ordered set. Each element can be expressed as a finite linear combination of generators. Only non-zero terms are stored.")))
-((-4397 . T) (-4396 . T))
+((-4398 . T) (-4397 . T))
((|HasCategory| |#1| (QUOTE (-171))))
(-385 S)
((|constructor| (NIL "The free monoid on a set \\spad{S} is the monoid of finite products of the form \\spad{reduce(*,{}[\\spad{si} ** \\spad{ni}])} where the \\spad{si}\\spad{'s} are in \\spad{S},{} and the \\spad{ni}\\spad{'s} are nonnegative integers. The multiplication is not commutative.")) (|mapGen| (($ (|Mapping| |#1| |#1|) $) "\\spad{mapGen(f,{} a1\\^e1 ... an\\^en)} returns \\spad{f(a1)\\^e1 ... f(an)\\^en}.")) (|mapExpon| (($ (|Mapping| (|NonNegativeInteger|) (|NonNegativeInteger|)) $) "\\spad{mapExpon(f,{} a1\\^e1 ... an\\^en)} returns \\spad{a1\\^f(e1) ... an\\^f(en)}.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(x,{} n)} returns the factor of the n^th monomial of \\spad{x}.")) (|nthExpon| (((|NonNegativeInteger|) $ (|Integer|)) "\\spad{nthExpon(x,{} n)} returns the exponent of the n^th monomial of \\spad{x}.")) (|factors| (((|List| (|Record| (|:| |gen| |#1|) (|:| |exp| (|NonNegativeInteger|)))) $) "\\spad{factors(a1\\^e1,{}...,{}an\\^en)} returns \\spad{[[a1,{} e1],{}...,{}[an,{} en]]}.")) (|size| (((|NonNegativeInteger|) $) "\\spad{size(x)} returns the number of monomials in \\spad{x}.")) (|overlap| (((|Record| (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) "\\spad{overlap(x,{} y)} returns \\spad{[l,{} m,{} r]} such that \\spad{x = l * m},{} \\spad{y = m * r} and \\spad{l} and \\spad{r} have no overlap,{} \\spadignore{i.e.} \\spad{overlap(l,{} r) = [l,{} 1,{} r]}.")) (|divide| (((|Union| (|Record| (|:| |lm| $) (|:| |rm| $)) "failed") $ $) "\\spad{divide(x,{} y)} returns the left and right exact quotients of \\spad{x} by \\spad{y},{} \\spadignore{i.e.} \\spad{[l,{} r]} such that \\spad{x = l * y * r},{} \"failed\" if \\spad{x} is not of the form \\spad{l * y * r}.")) (|rquo| (((|Union| $ "failed") $ $) "\\spad{rquo(x,{} y)} returns the exact right quotient of \\spad{x} by \\spad{y} \\spadignore{i.e.} \\spad{q} such that \\spad{x = q * y},{} \"failed\" if \\spad{x} is not of the form \\spad{q * y}.")) (|lquo| (((|Union| $ "failed") $ $) "\\spad{lquo(x,{} y)} returns the exact left quotient of \\spad{x} by \\spad{y} \\spadignore{i.e.} \\spad{q} such that \\spad{x = y * q},{} \"failed\" if \\spad{x} is not of the form \\spad{y * q}.")) (|hcrf| (($ $ $) "\\spad{hcrf(x,{} y)} returns the highest common right factor of \\spad{x} and \\spad{y},{} \\spadignore{i.e.} the largest \\spad{d} such that \\spad{x = a d} and \\spad{y = b d}.")) (|hclf| (($ $ $) "\\spad{hclf(x,{} y)} returns the highest common left factor of \\spad{x} and \\spad{y},{} \\spadignore{i.e.} the largest \\spad{d} such that \\spad{x = d a} and \\spad{y = d b}.")) (** (($ |#1| (|NonNegativeInteger|)) "\\spad{s ** n} returns the product of \\spad{s} by itself \\spad{n} times.")) (* (($ $ |#1|) "\\spad{x * s} returns the product of \\spad{x} by \\spad{s} on the right.") (($ |#1| $) "\\spad{s * x} returns the product of \\spad{x} by \\spad{s} on the left.")))
@@ -1474,7 +1474,7 @@ NIL
((|HasCategory| |#1| (QUOTE (-845))))
(-386)
((|constructor| (NIL "A category of domains which model machine arithmetic used by machines in the AXIOM-NAG link.")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-387)
((|constructor| (NIL "This domain provides an interface to names in the file system.")))
@@ -1486,13 +1486,13 @@ NIL
NIL
(-389 |n| |class| R)
((|constructor| (NIL "Generate the Free Lie Algebra over a ring \\spad{R} with identity; A \\spad{P}. Hall basis is generated by a package call to HallBasis.")) (|generator| (($ (|NonNegativeInteger|)) "\\spad{generator(i)} is the \\spad{i}th Hall Basis element")) (|shallowExpand| (((|OutputForm|) $) "\\spad{shallowExpand(x)} \\undocumented{}")) (|deepExpand| (((|OutputForm|) $) "\\spad{deepExpand(x)} \\undocumented{}")) (|dimension| (((|NonNegativeInteger|)) "\\spad{dimension()} is the rank of this Lie algebra")))
-((-4397 . T) (-4396 . T))
+((-4398 . T) (-4397 . T))
NIL
(-390)
((|constructor| (NIL "Code to manipulate Fortran Output Stack")) (|topFortranOutputStack| (((|String|)) "\\spad{topFortranOutputStack()} returns the top element of the Fortran output stack")) (|pushFortranOutputStack| (((|Void|) (|String|)) "\\spad{pushFortranOutputStack(f)} pushes \\spad{f} onto the Fortran output stack") (((|Void|) (|FileName|)) "\\spad{pushFortranOutputStack(f)} pushes \\spad{f} onto the Fortran output stack")) (|popFortranOutputStack| (((|Void|)) "\\spad{popFortranOutputStack()} pops the Fortran output stack")) (|showFortranOutputStack| (((|Stack| (|String|))) "\\spad{showFortranOutputStack()} returns the Fortran output stack")) (|clearFortranOutputStack| (((|Stack| (|String|))) "\\spad{clearFortranOutputStack()} clears the Fortran output stack")))
NIL
NIL
-(-391 -3197 UP UPUP R)
+(-391 -3196 UP UPUP R)
((|constructor| (NIL "\\indented{1}{Finds the order of a divisor over a finite field} Author: Manuel Bronstein Date Created: 1988 Date Last Updated: 11 Jul 1990")) (|order| (((|NonNegativeInteger|) (|FiniteDivisor| |#1| |#2| |#3| |#4|)) "\\spad{order(x)} \\undocumented")))
NIL
NIL
@@ -1516,11 +1516,11 @@ NIL
((|constructor| (NIL "provides an interface to the boot code for calling Fortran")) (|setLegalFortranSourceExtensions| (((|List| (|String|)) (|List| (|String|))) "\\spad{setLegalFortranSourceExtensions(l)} \\undocumented{}")) (|outputAsFortran| (((|Void|) (|FileName|)) "\\spad{outputAsFortran(fn)} \\undocumented{}")) (|linkToFortran| (((|SExpression|) (|Symbol|) (|List| (|Symbol|)) (|TheSymbolTable|) (|List| (|Symbol|))) "\\spad{linkToFortran(s,{}l,{}t,{}lv)} \\undocumented{}") (((|SExpression|) (|Symbol|) (|List| (|Union| (|:| |array| (|List| (|Symbol|))) (|:| |scalar| (|Symbol|)))) (|List| (|List| (|Union| (|:| |array| (|List| (|Symbol|))) (|:| |scalar| (|Symbol|))))) (|List| (|Symbol|)) (|Symbol|)) "\\spad{linkToFortran(s,{}l,{}ll,{}lv,{}t)} \\undocumented{}") (((|SExpression|) (|Symbol|) (|List| (|Union| (|:| |array| (|List| (|Symbol|))) (|:| |scalar| (|Symbol|)))) (|List| (|List| (|Union| (|:| |array| (|List| (|Symbol|))) (|:| |scalar| (|Symbol|))))) (|List| (|Symbol|))) "\\spad{linkToFortran(s,{}l,{}ll,{}lv)} \\undocumented{}")))
NIL
NIL
-(-397 -3254 |returnType| -3433 |symbols|)
+(-397 -3253 |returnType| -3433 |symbols|)
((|constructor| (NIL "\\axiomType{FortranProgram} allows the user to build and manipulate simple models of FORTRAN subprograms. These can then be transformed into actual FORTRAN notation.")) (|coerce| (($ (|Equation| (|Expression| (|Complex| (|Float|))))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Equation| (|Expression| (|Float|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Equation| (|Expression| (|Integer|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Expression| (|Complex| (|Float|)))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Expression| (|Float|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Expression| (|Integer|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Equation| (|Expression| (|MachineComplex|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Equation| (|Expression| (|MachineFloat|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Equation| (|Expression| (|MachineInteger|)))) "\\spad{coerce(eq)} \\undocumented{}") (($ (|Expression| (|MachineComplex|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Expression| (|MachineFloat|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Expression| (|MachineInteger|))) "\\spad{coerce(e)} \\undocumented{}") (($ (|Record| (|:| |localSymbols| (|SymbolTable|)) (|:| |code| (|List| (|FortranCode|))))) "\\spad{coerce(r)} \\undocumented{}") (($ (|List| (|FortranCode|))) "\\spad{coerce(lfc)} \\undocumented{}") (($ (|FortranCode|)) "\\spad{coerce(fc)} \\undocumented{}")))
NIL
NIL
-(-398 -3197 UP)
+(-398 -3196 UP)
((|constructor| (NIL "\\indented{1}{Full partial fraction expansion of rational functions} Author: Manuel Bronstein Date Created: 9 December 1992 Date Last Updated: 6 October 1993 References: \\spad{M}.Bronstein & \\spad{B}.Salvy,{} \\indented{12}{Full Partial Fraction Decomposition of Rational Functions,{}} \\indented{12}{in Proceedings of ISSAC'93,{} Kiev,{} ACM Press.}")) (D (($ $ (|NonNegativeInteger|)) "\\spad{D(f,{} n)} returns the \\spad{n}-th derivative of \\spad{f}.") (($ $) "\\spad{D(f)} returns the derivative of \\spad{f}.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(f,{} n)} returns the \\spad{n}-th derivative of \\spad{f}.") (($ $) "\\spad{differentiate(f)} returns the derivative of \\spad{f}.")) (|construct| (($ (|List| (|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |center| |#2|) (|:| |num| |#2|)))) "\\spad{construct(l)} is the inverse of fracPart.")) (|fracPart| (((|List| (|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |center| |#2|) (|:| |num| |#2|))) $) "\\spad{fracPart(f)} returns the list of summands of the fractional part of \\spad{f}.")) (|polyPart| ((|#2| $) "\\spad{polyPart(f)} returns the polynomial part of \\spad{f}.")) (|fullPartialFraction| (($ (|Fraction| |#2|)) "\\spad{fullPartialFraction(f)} returns \\spad{[p,{} [[j,{} Dj,{} Hj]...]]} such that \\spad{f = p(x) + \\sum_{[j,{}Dj,{}Hj] in l} \\sum_{Dj(a)=0} Hj(a)/(x - a)\\^j}.")) (+ (($ |#2| $) "\\spad{p + x} returns the sum of \\spad{p} and \\spad{x}")))
NIL
NIL
@@ -1534,15 +1534,15 @@ NIL
NIL
(-401)
((|constructor| (NIL "FieldOfPrimeCharacteristic is the category of fields of prime characteristic,{} \\spadignore{e.g.} finite fields,{} algebraic closures of fields of prime characteristic,{} transcendental extensions of of fields of prime characteristic.")) (|primeFrobenius| (($ $ (|NonNegativeInteger|)) "\\spad{primeFrobenius(a,{}s)} returns \\spad{a**(p**s)} where \\spad{p} is the characteristic.") (($ $) "\\spad{primeFrobenius(a)} returns \\spad{a ** p} where \\spad{p} is the characteristic.")) (|discreteLog| (((|Union| (|NonNegativeInteger|) "failed") $ $) "\\spad{discreteLog(b,{}a)} computes \\spad{s} with \\spad{b**s = a} if such an \\spad{s} exists.")) (|order| (((|OnePointCompletion| (|PositiveInteger|)) $) "\\spad{order(a)} computes the order of an element in the multiplicative group of the field. Error: if \\spad{a} is 0.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-402 S)
((|constructor| (NIL "This category is intended as a model for floating point systems. A floating point system is a model for the real numbers. In fact,{} it is an approximation in the sense that not all real numbers are exactly representable by floating point numbers. A floating point system is characterized by the following: \\blankline \\indented{2}{1: \\spadfunFrom{base}{FloatingPointSystem} of the \\spadfunFrom{exponent}{FloatingPointSystem}.} \\indented{9}{(actual implemenations are usually binary or decimal)} \\indented{2}{2: \\spadfunFrom{precision}{FloatingPointSystem} of the \\spadfunFrom{mantissa}{FloatingPointSystem} (arbitrary or fixed)} \\indented{2}{3: rounding error for operations} \\blankline Because a Float is an approximation to the real numbers,{} even though it is defined to be a join of a Field and OrderedRing,{} some of the attributes do not hold. In particular associative(\\spad{\"+\"}) does not hold. Algorithms defined over a field need special considerations when the field is a floating point system.")) (|max| (($) "\\spad{max()} returns the maximum floating point number.")) (|min| (($) "\\spad{min()} returns the minimum floating point number.")) (|decreasePrecision| (((|PositiveInteger|) (|Integer|)) "\\spad{decreasePrecision(n)} decreases the current \\spadfunFrom{precision}{FloatingPointSystem} precision by \\spad{n} decimal digits.")) (|increasePrecision| (((|PositiveInteger|) (|Integer|)) "\\spad{increasePrecision(n)} increases the current \\spadfunFrom{precision}{FloatingPointSystem} by \\spad{n} decimal digits.")) (|precision| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{precision(n)} set the precision in the base to \\spad{n} decimal digits.") (((|PositiveInteger|)) "\\spad{precision()} returns the precision in digits base.")) (|digits| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{digits(d)} set the \\spadfunFrom{precision}{FloatingPointSystem} to \\spad{d} digits.") (((|PositiveInteger|)) "\\spad{digits()} returns ceiling\\spad{'s} precision in decimal digits.")) (|bits| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{bits(n)} set the \\spadfunFrom{precision}{FloatingPointSystem} to \\spad{n} bits.") (((|PositiveInteger|)) "\\spad{bits()} returns ceiling\\spad{'s} precision in bits.")) (|mantissa| (((|Integer|) $) "\\spad{mantissa(x)} returns the mantissa part of \\spad{x}.")) (|exponent| (((|Integer|) $) "\\spad{exponent(x)} returns the \\spadfunFrom{exponent}{FloatingPointSystem} part of \\spad{x}.")) (|base| (((|PositiveInteger|)) "\\spad{base()} returns the base of the \\spadfunFrom{exponent}{FloatingPointSystem}.")) (|order| (((|Integer|) $) "\\spad{order x} is the order of magnitude of \\spad{x}. Note: \\spad{base ** order x <= |x| < base ** (1 + order x)}.")) (|float| (($ (|Integer|) (|Integer|) (|PositiveInteger|)) "\\spad{float(a,{}e,{}b)} returns \\spad{a * b ** e}.") (($ (|Integer|) (|Integer|)) "\\spad{float(a,{}e)} returns \\spad{a * base() ** e}.")) (|approximate| ((|attribute|) "\\spad{approximate} means \"is an approximation to the real numbers\".")))
NIL
-((|HasAttribute| |#1| (QUOTE -4385)) (|HasAttribute| |#1| (QUOTE -4393)))
+((|HasAttribute| |#1| (QUOTE -4386)) (|HasAttribute| |#1| (QUOTE -4394)))
(-403)
((|constructor| (NIL "This category is intended as a model for floating point systems. A floating point system is a model for the real numbers. In fact,{} it is an approximation in the sense that not all real numbers are exactly representable by floating point numbers. A floating point system is characterized by the following: \\blankline \\indented{2}{1: \\spadfunFrom{base}{FloatingPointSystem} of the \\spadfunFrom{exponent}{FloatingPointSystem}.} \\indented{9}{(actual implemenations are usually binary or decimal)} \\indented{2}{2: \\spadfunFrom{precision}{FloatingPointSystem} of the \\spadfunFrom{mantissa}{FloatingPointSystem} (arbitrary or fixed)} \\indented{2}{3: rounding error for operations} \\blankline Because a Float is an approximation to the real numbers,{} even though it is defined to be a join of a Field and OrderedRing,{} some of the attributes do not hold. In particular associative(\\spad{\"+\"}) does not hold. Algorithms defined over a field need special considerations when the field is a floating point system.")) (|max| (($) "\\spad{max()} returns the maximum floating point number.")) (|min| (($) "\\spad{min()} returns the minimum floating point number.")) (|decreasePrecision| (((|PositiveInteger|) (|Integer|)) "\\spad{decreasePrecision(n)} decreases the current \\spadfunFrom{precision}{FloatingPointSystem} precision by \\spad{n} decimal digits.")) (|increasePrecision| (((|PositiveInteger|) (|Integer|)) "\\spad{increasePrecision(n)} increases the current \\spadfunFrom{precision}{FloatingPointSystem} by \\spad{n} decimal digits.")) (|precision| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{precision(n)} set the precision in the base to \\spad{n} decimal digits.") (((|PositiveInteger|)) "\\spad{precision()} returns the precision in digits base.")) (|digits| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{digits(d)} set the \\spadfunFrom{precision}{FloatingPointSystem} to \\spad{d} digits.") (((|PositiveInteger|)) "\\spad{digits()} returns ceiling\\spad{'s} precision in decimal digits.")) (|bits| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{bits(n)} set the \\spadfunFrom{precision}{FloatingPointSystem} to \\spad{n} bits.") (((|PositiveInteger|)) "\\spad{bits()} returns ceiling\\spad{'s} precision in bits.")) (|mantissa| (((|Integer|) $) "\\spad{mantissa(x)} returns the mantissa part of \\spad{x}.")) (|exponent| (((|Integer|) $) "\\spad{exponent(x)} returns the \\spadfunFrom{exponent}{FloatingPointSystem} part of \\spad{x}.")) (|base| (((|PositiveInteger|)) "\\spad{base()} returns the base of the \\spadfunFrom{exponent}{FloatingPointSystem}.")) (|order| (((|Integer|) $) "\\spad{order x} is the order of magnitude of \\spad{x}. Note: \\spad{base ** order x <= |x| < base ** (1 + order x)}.")) (|float| (($ (|Integer|) (|Integer|) (|PositiveInteger|)) "\\spad{float(a,{}e,{}b)} returns \\spad{a * b ** e}.") (($ (|Integer|) (|Integer|)) "\\spad{float(a,{}e)} returns \\spad{a * base() ** e}.")) (|approximate| ((|attribute|) "\\spad{approximate} means \"is an approximation to the real numbers\".")))
-((-1406 . T) (-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-1406 . T) (-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-404 R S)
((|constructor| (NIL "\\spadtype{FactoredFunctions2} contains functions that involve factored objects whose underlying domains may not be the same. For example,{} \\spadfun{map} might be used to coerce an object of type \\spadtype{Factored(Integer)} to \\spadtype{Factored(Complex(Integer))}.")) (|map| (((|Factored| |#2|) (|Mapping| |#2| |#1|) (|Factored| |#1|)) "\\spad{map(fn,{}u)} is used to apply the function \\userfun{\\spad{fn}} to every factor of \\spadvar{\\spad{u}}. The new factored object will have all its information flags set to \"nil\". This function is used,{} for example,{} to coerce every factor base to another type.")))
@@ -1554,15 +1554,15 @@ NIL
NIL
(-406 S)
((|constructor| (NIL "Fraction takes an IntegralDomain \\spad{S} and produces the domain of Fractions with numerators and denominators from \\spad{S}. If \\spad{S} is also a GcdDomain,{} then \\spad{gcd}\\spad{'s} between numerator and denominator will be cancelled during all operations.")) (|canonical| ((|attribute|) "\\spad{canonical} means that equal elements are in fact identical.")))
-((-4389 -12 (|has| |#1| (-6 -4400)) (|has| |#1| (-451)) (|has| |#1| (-6 -4389))) (-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-904))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-823)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-1017))) (|HasCategory| |#1| (QUOTE (-815))) (-4037 (|HasCategory| |#1| (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-845)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-823)))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-1143))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-823)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-823))))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-823))))) (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-823)))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-544))) (-12 (|HasAttribute| |#1| (QUOTE -4400)) (|HasAttribute| |#1| (QUOTE -4389)) (|HasCategory| |#1| (QUOTE (-451)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
+((-4390 -12 (|has| |#1| (-6 -4401)) (|has| |#1| (-451)) (|has| |#1| (-6 -4390))) (-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-904))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-823)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-1017))) (|HasCategory| |#1| (QUOTE (-815))) (-4037 (|HasCategory| |#1| (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-845)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-823)))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-1143))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-823)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-823))))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-823))))) (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-823)))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-544))) (-12 (|HasAttribute| |#1| (QUOTE -4401)) (|HasAttribute| |#1| (QUOTE -4390)) (|HasCategory| |#1| (QUOTE (-451)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
(-407 S R UP)
((|constructor| (NIL "A \\spadtype{FramedAlgebra} is a \\spadtype{FiniteRankAlgebra} together with a fixed \\spad{R}-module basis.")) (|regularRepresentation| (((|Matrix| |#2|) $) "\\spad{regularRepresentation(a)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the fixed basis.")) (|discriminant| ((|#2|) "\\spad{discriminant()} = determinant(traceMatrix()).")) (|traceMatrix| (((|Matrix| |#2|)) "\\spad{traceMatrix()} is the \\spad{n}-by-\\spad{n} matrix ( \\spad{Tr(\\spad{vi} * vj)} ),{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.")) (|convert| (($ (|Vector| |#2|)) "\\spad{convert([a1,{}..,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.") (((|Vector| |#2|) $) "\\spad{convert(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|represents| (($ (|Vector| |#2|)) "\\spad{represents([a1,{}..,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.")) (|coordinates| (((|Matrix| |#2|) (|Vector| $)) "\\spad{coordinates([v1,{}...,{}vm])} returns the coordinates of the \\spad{vi}\\spad{'s} with to the fixed basis. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#2|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|basis| (((|Vector| $)) "\\spad{basis()} returns the fixed \\spad{R}-module basis.")))
NIL
NIL
(-408 R UP)
((|constructor| (NIL "A \\spadtype{FramedAlgebra} is a \\spadtype{FiniteRankAlgebra} together with a fixed \\spad{R}-module basis.")) (|regularRepresentation| (((|Matrix| |#1|) $) "\\spad{regularRepresentation(a)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the fixed basis.")) (|discriminant| ((|#1|) "\\spad{discriminant()} = determinant(traceMatrix()).")) (|traceMatrix| (((|Matrix| |#1|)) "\\spad{traceMatrix()} is the \\spad{n}-by-\\spad{n} matrix ( \\spad{Tr(\\spad{vi} * vj)} ),{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.")) (|convert| (($ (|Vector| |#1|)) "\\spad{convert([a1,{}..,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.") (((|Vector| |#1|) $) "\\spad{convert(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|represents| (($ (|Vector| |#1|)) "\\spad{represents([a1,{}..,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed basis.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $)) "\\spad{coordinates([v1,{}...,{}vm])} returns the coordinates of the \\spad{vi}\\spad{'s} with to the fixed basis. The coordinates of \\spad{vi} are contained in the \\spad{i}th row of the matrix returned by this function.") (((|Vector| |#1|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|basis| (((|Vector| $)) "\\spad{basis()} returns the fixed \\spad{R}-module basis.")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-409 A S)
((|constructor| (NIL "\\indented{2}{A is fully retractable to \\spad{B} means that A is retractable to \\spad{B},{} and,{}} \\indented{2}{in addition,{} if \\spad{B} is retractable to the integers or rational} \\indented{2}{numbers then so is A.} \\indented{2}{In particular,{} what we are asserting is that there are no integers} \\indented{2}{(rationals) in A which don\\spad{'t} retract into \\spad{B}.} Date Created: March 1990 Date Last Updated: 9 April 1991")))
@@ -1576,11 +1576,11 @@ NIL
((|constructor| (NIL "\\indented{1}{Lifting of morphisms to fractional ideals.} Author: Manuel Bronstein Date Created: 1 Feb 1989 Date Last Updated: 27 Feb 1990 Keywords: ideal,{} algebra,{} module.")) (|map| (((|FractionalIdeal| |#5| |#6| |#7| |#8|) (|Mapping| |#5| |#1|) (|FractionalIdeal| |#1| |#2| |#3| |#4|)) "\\spad{map(f,{}i)} \\undocumented{}")))
NIL
NIL
-(-412 R -3197 UP A)
+(-412 R -3196 UP A)
((|constructor| (NIL "Fractional ideals in a framed algebra.")) (|randomLC| ((|#4| (|NonNegativeInteger|) (|Vector| |#4|)) "\\spad{randomLC(n,{}x)} should be local but conditional.")) (|minimize| (($ $) "\\spad{minimize(I)} returns a reduced set of generators for \\spad{I}.")) (|denom| ((|#1| $) "\\spad{denom(1/d * (f1,{}...,{}fn))} returns \\spad{d}.")) (|numer| (((|Vector| |#4|) $) "\\spad{numer(1/d * (f1,{}...,{}fn))} = the vector \\spad{[f1,{}...,{}fn]}.")) (|norm| ((|#2| $) "\\spad{norm(I)} returns the norm of the ideal \\spad{I}.")) (|basis| (((|Vector| |#4|) $) "\\spad{basis((f1,{}...,{}fn))} returns the vector \\spad{[f1,{}...,{}fn]}.")) (|ideal| (($ (|Vector| |#4|)) "\\spad{ideal([f1,{}...,{}fn])} returns the ideal \\spad{(f1,{}...,{}fn)}.")))
-((-4399 . T))
+((-4400 . T))
NIL
-(-413 R -3197 UP A |ibasis|)
+(-413 R -3196 UP A |ibasis|)
((|constructor| (NIL "Module representation of fractional ideals.")) (|module| (($ (|FractionalIdeal| |#1| |#2| |#3| |#4|)) "\\spad{module(I)} returns \\spad{I} viewed has a module over \\spad{R}.") (($ (|Vector| |#4|)) "\\spad{module([f1,{}...,{}fn])} = the module generated by \\spad{(f1,{}...,{}fn)} over \\spad{R}.")) (|norm| ((|#2| $) "\\spad{norm(f)} returns the norm of the module \\spad{f}.")) (|basis| (((|Vector| |#4|) $) "\\spad{basis((f1,{}...,{}fn))} = the vector \\spad{[f1,{}...,{}fn]}.")))
NIL
((|HasCategory| |#4| (LIST (QUOTE -1033) (|devaluate| |#2|))))
@@ -1594,11 +1594,11 @@ NIL
((|HasCategory| |#2| (QUOTE (-362))))
(-416 R)
((|constructor| (NIL "FramedNonAssociativeAlgebra(\\spad{R}) is a \\spadtype{FiniteRankNonAssociativeAlgebra} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank) over a commutative ring \\spad{R} together with a fixed \\spad{R}-module basis.")) (|apply| (($ (|Matrix| |#1|) $) "\\spad{apply(m,{}a)} defines a left operation of \\spad{n} by \\spad{n} matrices where \\spad{n} is the rank of the algebra in terms of matrix-vector multiplication,{} this is a substitute for a left module structure. Error: if shape of matrix doesn\\spad{'t} fit.")) (|rightRankPolynomial| (((|SparseUnivariatePolynomial| (|Polynomial| |#1|))) "\\spad{rightRankPolynomial()} calculates the right minimal polynomial of the generic element in the algebra,{} defined by the same structural constants over the polynomial ring in symbolic coefficients with respect to the fixed basis.")) (|leftRankPolynomial| (((|SparseUnivariatePolynomial| (|Polynomial| |#1|))) "\\spad{leftRankPolynomial()} calculates the left minimal polynomial of the generic element in the algebra,{} defined by the same structural constants over the polynomial ring in symbolic coefficients with respect to the fixed basis.")) (|rightRegularRepresentation| (((|Matrix| |#1|) $) "\\spad{rightRegularRepresentation(a)} returns the matrix of the linear map defined by right multiplication by \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|leftRegularRepresentation| (((|Matrix| |#1|) $) "\\spad{leftRegularRepresentation(a)} returns the matrix of the linear map defined by left multiplication by \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|rightTraceMatrix| (((|Matrix| |#1|)) "\\spad{rightTraceMatrix()} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis.")) (|leftTraceMatrix| (((|Matrix| |#1|)) "\\spad{leftTraceMatrix()} is the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by left trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis.")) (|rightDiscriminant| ((|#1|) "\\spad{rightDiscriminant()} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the right trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis. Note: the same as \\spad{determinant(rightTraceMatrix())}.")) (|leftDiscriminant| ((|#1|) "\\spad{leftDiscriminant()} returns the determinant of the \\spad{n}-by-\\spad{n} matrix whose element at the \\spad{i}\\spad{-}th row and \\spad{j}\\spad{-}th column is given by the left trace of the product \\spad{vi*vj},{} where \\spad{v1},{}...,{}\\spad{vn} are the elements of the fixed \\spad{R}-module basis. Note: the same as \\spad{determinant(leftTraceMatrix())}.")) (|convert| (($ (|Vector| |#1|)) "\\spad{convert([a1,{}...,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed \\spad{R}-module basis.") (((|Vector| |#1|) $) "\\spad{convert(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|represents| (($ (|Vector| |#1|)) "\\spad{represents([a1,{}...,{}an])} returns \\spad{a1*v1 + ... + an*vn},{} where \\spad{v1},{} ...,{} \\spad{vn} are the elements of the fixed \\spad{R}-module basis.")) (|conditionsForIdempotents| (((|List| (|Polynomial| |#1|))) "\\spad{conditionsForIdempotents()} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the fixed \\spad{R}-module basis.")) (|structuralConstants| (((|Vector| (|Matrix| |#1|))) "\\spad{structuralConstants()} calculates the structural constants \\spad{[(gammaijk) for k in 1..rank()]} defined by \\spad{\\spad{vi} * vj = gammaij1 * v1 + ... + gammaijn * vn},{} where \\spad{v1},{}...,{}\\spad{vn} is the fixed \\spad{R}-module basis.")) (|elt| ((|#1| $ (|Integer|)) "\\spad{elt(a,{}i)} returns the \\spad{i}-th coefficient of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|coordinates| (((|Matrix| |#1|) (|Vector| $)) "\\spad{coordinates([a1,{}...,{}am])} returns a matrix whose \\spad{i}-th row is formed by the coordinates of \\spad{\\spad{ai}} with respect to the fixed \\spad{R}-module basis.") (((|Vector| |#1|) $) "\\spad{coordinates(a)} returns the coordinates of \\spad{a} with respect to the fixed \\spad{R}-module basis.")) (|basis| (((|Vector| $)) "\\spad{basis()} returns the fixed \\spad{R}-module basis.")))
-((-4399 |has| |#1| (-554)) (-4397 . T) (-4396 . T))
+((-4400 |has| |#1| (-554)) (-4398 . T) (-4397 . T))
NIL
(-417 R)
((|constructor| (NIL "\\spadtype{Factored} creates a domain whose objects are kept in factored form as long as possible. Thus certain operations like multiplication and \\spad{gcd} are relatively easy to do. Others,{} like addition require somewhat more work,{} and unless the argument domain provides a factor function,{} the result may not be completely factored. Each object consists of a unit and a list of factors,{} where a factor has a member of \\spad{R} (the \"base\"),{} and exponent and a flag indicating what is known about the base. A flag may be one of \"nil\",{} \"sqfr\",{} \"irred\" or \"prime\",{} which respectively mean that nothing is known about the base,{} it is square-free,{} it is irreducible,{} or it is prime. The current restriction to integral domains allows simplification to be performed without worrying about multiplication order.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(u)} returns a rational number if \\spad{u} really is one,{} and \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(u)} assumes spadvar{\\spad{u}} is actually a rational number and does the conversion to rational number (see \\spadtype{Fraction Integer}).")) (|rational?| (((|Boolean|) $) "\\spad{rational?(u)} tests if \\spadvar{\\spad{u}} is actually a rational number (see \\spadtype{Fraction Integer}).")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,{}u)} maps the function \\userfun{\\spad{fn}} across the factors of \\spadvar{\\spad{u}} and creates a new factored object. Note: this clears the information flags (sets them to \"nil\") because the effect of \\userfun{\\spad{fn}} is clearly not known in general.")) (|unitNormalize| (($ $) "\\spad{unitNormalize(u)} normalizes the unit part of the factorization. For example,{} when working with factored integers,{} this operation will ensure that the bases are all positive integers.")) (|unit| ((|#1| $) "\\spad{unit(u)} extracts the unit part of the factorization.")) (|flagFactor| (($ |#1| (|Integer|) (|Union| "nil" "sqfr" "irred" "prime")) "\\spad{flagFactor(base,{}exponent,{}flag)} creates a factored object with a single factor whose \\spad{base} is asserted to be properly described by the information \\spad{flag}.")) (|sqfrFactor| (($ |#1| (|Integer|)) "\\spad{sqfrFactor(base,{}exponent)} creates a factored object with a single factor whose \\spad{base} is asserted to be square-free (flag = \"sqfr\").")) (|primeFactor| (($ |#1| (|Integer|)) "\\spad{primeFactor(base,{}exponent)} creates a factored object with a single factor whose \\spad{base} is asserted to be prime (flag = \"prime\").")) (|numberOfFactors| (((|NonNegativeInteger|) $) "\\spad{numberOfFactors(u)} returns the number of factors in \\spadvar{\\spad{u}}.")) (|nthFlag| (((|Union| "nil" "sqfr" "irred" "prime") $ (|Integer|)) "\\spad{nthFlag(u,{}n)} returns the information flag of the \\spad{n}th factor of \\spadvar{\\spad{u}}. If \\spadvar{\\spad{n}} is not a valid index for a factor (for example,{} less than 1 or too big),{} \"nil\" is returned.")) (|nthFactor| ((|#1| $ (|Integer|)) "\\spad{nthFactor(u,{}n)} returns the base of the \\spad{n}th factor of \\spadvar{\\spad{u}}. If \\spadvar{\\spad{n}} is not a valid index for a factor (for example,{} less than 1 or too big),{} 1 is returned. If \\spadvar{\\spad{u}} consists only of a unit,{} the unit is returned.")) (|nthExponent| (((|Integer|) $ (|Integer|)) "\\spad{nthExponent(u,{}n)} returns the exponent of the \\spad{n}th factor of \\spadvar{\\spad{u}}. If \\spadvar{\\spad{n}} is not a valid index for a factor (for example,{} less than 1 or too big),{} 0 is returned.")) (|irreducibleFactor| (($ |#1| (|Integer|)) "\\spad{irreducibleFactor(base,{}exponent)} creates a factored object with a single factor whose \\spad{base} is asserted to be irreducible (flag = \"irred\").")) (|factors| (((|List| (|Record| (|:| |factor| |#1|) (|:| |exponent| (|Integer|)))) $) "\\spad{factors(u)} returns a list of the factors in a form suitable for iteration. That is,{} it returns a list where each element is a record containing a base and exponent. The original object is the product of all the factors and the unit (which can be extracted by \\axiom{unit(\\spad{u})}).")) (|nilFactor| (($ |#1| (|Integer|)) "\\spad{nilFactor(base,{}exponent)} creates a factored object with a single factor with no information about the kind of \\spad{base} (flag = \"nil\").")) (|factorList| (((|List| (|Record| (|:| |flg| (|Union| "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (|Integer|)))) $) "\\spad{factorList(u)} returns the list of factors with flags (for use by factoring code).")) (|makeFR| (($ |#1| (|List| (|Record| (|:| |flg| (|Union| "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (|Integer|))))) "\\spad{makeFR(unit,{}listOfFactors)} creates a factored object (for use by factoring code).")) (|exponent| (((|Integer|) $) "\\spad{exponent(u)} returns the exponent of the first factor of \\spadvar{\\spad{u}},{} or 0 if the factored form consists solely of a unit.")) (|expand| ((|#1| $) "\\spad{expand(f)} multiplies the unit and factors together,{} yielding an \"unfactored\" object. Note: this is purposely not called \\spadfun{coerce} which would cause the interpreter to do this automatically.")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#1| (LIST (QUOTE -513) (QUOTE (-1168)) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -308) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -285) (QUOTE $) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-1211))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-1211)))) (|HasCategory| |#1| (QUOTE (-1017))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-451))))
(-418 R)
((|constructor| (NIL "\\spadtype{FactoredFunctionUtilities} implements some utility functions for manipulating factored objects.")) (|mergeFactors| (((|Factored| |#1|) (|Factored| |#1|) (|Factored| |#1|)) "\\spad{mergeFactors(u,{}v)} is used when the factorizations of \\spadvar{\\spad{u}} and \\spadvar{\\spad{v}} are known to be disjoint,{} \\spadignore{e.g.} resulting from a content/primitive part split. Essentially,{} it creates a new factored object by multiplying the units together and appending the lists of factors.")) (|refine| (((|Factored| |#1|) (|Factored| |#1|) (|Mapping| (|Factored| |#1|) |#1|)) "\\spad{refine(u,{}fn)} is used to apply the function \\userfun{\\spad{fn}} to each factor of \\spadvar{\\spad{u}} and then build a new factored object from the results. For example,{} if \\spadvar{\\spad{u}} were created by calling \\spad{nilFactor(10,{}2)} then \\spad{refine(u,{}factor)} would create a factored object equal to that created by \\spad{factor(100)} or \\spad{primeFactor(2,{}2) * primeFactor(5,{}2)}.")))
@@ -1626,17 +1626,17 @@ NIL
((|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-367))))
(-424 S)
((|constructor| (NIL "A finite-set aggregate models the notion of a finite set,{} that is,{} a collection of elements characterized by membership,{} but not by order or multiplicity. See \\spadtype{Set} for an example.")) (|min| ((|#1| $) "\\spad{min(u)} returns the smallest element of aggregate \\spad{u}.")) (|max| ((|#1| $) "\\spad{max(u)} returns the largest element of aggregate \\spad{u}.")) (|universe| (($) "\\spad{universe()}\\$\\spad{D} returns the universal set for finite set aggregate \\spad{D}.")) (|complement| (($ $) "\\spad{complement(u)} returns the complement of the set \\spad{u},{} \\spadignore{i.e.} the set of all values not in \\spad{u}.")) (|cardinality| (((|NonNegativeInteger|) $) "\\spad{cardinality(u)} returns the number of elements of \\spad{u}. Note: \\axiom{cardinality(\\spad{u}) = \\#u}.")))
-((-4402 . T) (-4392 . T) (-4403 . T))
+((-4403 . T) (-4393 . T) (-4404 . T))
NIL
-(-425 R -3197)
+(-425 R -3196)
((|constructor| (NIL "\\spadtype{FunctionSpaceComplexIntegration} provides functions for the indefinite integration of complex-valued functions.")) (|complexIntegrate| ((|#2| |#2| (|Symbol|)) "\\spad{complexIntegrate(f,{} x)} returns the integral of \\spad{f(x)dx} where \\spad{x} is viewed as a complex variable.")) (|internalIntegrate0| (((|IntegrationResult| |#2|) |#2| (|Symbol|)) "\\spad{internalIntegrate0 should} be a local function,{} but is conditional.")) (|internalIntegrate| (((|IntegrationResult| |#2|) |#2| (|Symbol|)) "\\spad{internalIntegrate(f,{} x)} returns the integral of \\spad{f(x)dx} where \\spad{x} is viewed as a complex variable.")))
NIL
NIL
(-426 R E)
((|constructor| (NIL "\\indented{1}{Author: James Davenport} Date Created: 17 April 1992 Date Last Updated: Basic Functions: Related Constructors: Also See: AMS Classifications: Keywords: References: Description:")) (|makeCos| (($ |#2| |#1|) "\\spad{makeCos(e,{}r)} makes a sin expression with given argument and coefficient")) (|makeSin| (($ |#2| |#1|) "\\spad{makeSin(e,{}r)} makes a sin expression with given argument and coefficient")) (|coerce| (($ (|FourierComponent| |#2|)) "\\spad{coerce(c)} converts sin/cos terms into Fourier Series") (($ |#1|) "\\spad{coerce(r)} converts coefficients into Fourier Series")))
-((-4389 -12 (|has| |#1| (-6 -4389)) (|has| |#2| (-6 -4389))) (-4396 . T) (-4397 . T) (-4399 . T))
-((-12 (|HasAttribute| |#1| (QUOTE -4389)) (|HasAttribute| |#2| (QUOTE -4389))))
-(-427 R -3197)
+((-4390 -12 (|has| |#1| (-6 -4390)) (|has| |#2| (-6 -4390))) (-4397 . T) (-4398 . T) (-4400 . T))
+((-12 (|HasAttribute| |#1| (QUOTE -4390)) (|HasAttribute| |#2| (QUOTE -4390))))
+(-427 R -3196)
((|constructor| (NIL "\\spadtype{FunctionSpaceIntegration} provides functions for the indefinite integration of real-valued functions.")) (|integrate| (((|Union| |#2| (|List| |#2|)) |#2| (|Symbol|)) "\\spad{integrate(f,{} x)} returns the integral of \\spad{f(x)dx} where \\spad{x} is viewed as a real variable.")))
NIL
NIL
@@ -1646,17 +1646,17 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-472))) (|HasCategory| |#2| (QUOTE (-1104))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))))
(-429 R)
((|constructor| (NIL "A space of formal functions with arguments in an arbitrary ordered set.")) (|univariate| (((|Fraction| (|SparseUnivariatePolynomial| $)) $ (|Kernel| $)) "\\spad{univariate(f,{} k)} returns \\spad{f} viewed as a univariate fraction in \\spad{k}.")) (/ (($ (|SparseMultivariatePolynomial| |#1| (|Kernel| $)) (|SparseMultivariatePolynomial| |#1| (|Kernel| $))) "\\spad{p1/p2} returns the quotient of \\spad{p1} and \\spad{p2} as an element of \\%.")) (|denominator| (($ $) "\\spad{denominator(f)} returns the denominator of \\spad{f} converted to \\%.")) (|denom| (((|SparseMultivariatePolynomial| |#1| (|Kernel| $)) $) "\\spad{denom(f)} returns the denominator of \\spad{f} viewed as a polynomial in the kernels over \\spad{R}.")) (|convert| (($ (|Factored| $)) "\\spad{convert(f1\\^e1 ... fm\\^em)} returns \\spad{(f1)\\^e1 ... (fm)\\^em} as an element of \\%,{} using formal kernels created using a \\spadfunFrom{paren}{ExpressionSpace}.")) (|isPower| (((|Union| (|Record| (|:| |val| $) (|:| |exponent| (|Integer|))) "failed") $) "\\spad{isPower(p)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0}.")) (|numerator| (($ $) "\\spad{numerator(f)} returns the numerator of \\spad{f} converted to \\%.")) (|numer| (((|SparseMultivariatePolynomial| |#1| (|Kernel| $)) $) "\\spad{numer(f)} returns the numerator of \\spad{f} viewed as a polynomial in the kernels over \\spad{R} if \\spad{R} is an integral domain. If not,{} then numer(\\spad{f}) = \\spad{f} viewed as a polynomial in the kernels over \\spad{R}.")) (|coerce| (($ (|Fraction| (|Polynomial| (|Fraction| |#1|)))) "\\spad{coerce(f)} returns \\spad{f} as an element of \\%.") (($ (|Polynomial| (|Fraction| |#1|))) "\\spad{coerce(p)} returns \\spad{p} as an element of \\%.") (($ (|Fraction| |#1|)) "\\spad{coerce(q)} returns \\spad{q} as an element of \\%.") (($ (|SparseMultivariatePolynomial| |#1| (|Kernel| $))) "\\spad{coerce(p)} returns \\spad{p} as an element of \\%.")) (|isMult| (((|Union| (|Record| (|:| |coef| (|Integer|)) (|:| |var| (|Kernel| $))) "failed") $) "\\spad{isMult(p)} returns \\spad{[n,{} x]} if \\spad{p = n * x} and \\spad{n <> 0}.")) (|isPlus| (((|Union| (|List| $) "failed") $) "\\spad{isPlus(p)} returns \\spad{[m1,{}...,{}mn]} if \\spad{p = m1 +...+ mn} and \\spad{n > 1}.")) (|isExpt| (((|Union| (|Record| (|:| |var| (|Kernel| $)) (|:| |exponent| (|Integer|))) "failed") $ (|Symbol|)) "\\spad{isExpt(p,{}f)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0} and \\spad{x = f(a)}.") (((|Union| (|Record| (|:| |var| (|Kernel| $)) (|:| |exponent| (|Integer|))) "failed") $ (|BasicOperator|)) "\\spad{isExpt(p,{}op)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0} and \\spad{x = op(a)}.") (((|Union| (|Record| (|:| |var| (|Kernel| $)) (|:| |exponent| (|Integer|))) "failed") $) "\\spad{isExpt(p)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0}.")) (|isTimes| (((|Union| (|List| $) "failed") $) "\\spad{isTimes(p)} returns \\spad{[a1,{}...,{}an]} if \\spad{p = a1*...*an} and \\spad{n > 1}.")) (** (($ $ (|NonNegativeInteger|)) "\\spad{x**n} returns \\spad{x} * \\spad{x} * \\spad{x} * ... * \\spad{x} (\\spad{n} times).")) (|eval| (($ $ (|Symbol|) (|NonNegativeInteger|) (|Mapping| $ $)) "\\spad{eval(x,{} s,{} n,{} f)} replaces every \\spad{s(a)**n} in \\spad{x} by \\spad{f(a)} for any \\spad{a}.") (($ $ (|Symbol|) (|NonNegativeInteger|) (|Mapping| $ (|List| $))) "\\spad{eval(x,{} s,{} n,{} f)} replaces every \\spad{s(a1,{}...,{}am)**n} in \\spad{x} by \\spad{f(a1,{}...,{}am)} for any a1,{}...,{}am.") (($ $ (|List| (|Symbol|)) (|List| (|NonNegativeInteger|)) (|List| (|Mapping| $ (|List| $)))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [n1,{}...,{}nm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a1,{}...,{}an)**ni} in \\spad{x} by \\spad{\\spad{fi}(a1,{}...,{}an)} for any a1,{}...,{}am.") (($ $ (|List| (|Symbol|)) (|List| (|NonNegativeInteger|)) (|List| (|Mapping| $ $))) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [n1,{}...,{}nm],{} [f1,{}...,{}fm])} replaces every \\spad{\\spad{si}(a)**ni} in \\spad{x} by \\spad{\\spad{fi}(a)} for any \\spad{a}.") (($ $ (|List| (|BasicOperator|)) (|List| $) (|Symbol|)) "\\spad{eval(x,{} [s1,{}...,{}sm],{} [f1,{}...,{}fm],{} y)} replaces every \\spad{\\spad{si}(a)} in \\spad{x} by \\spad{\\spad{fi}(y)} with \\spad{y} replaced by \\spad{a} for any \\spad{a}.") (($ $ (|BasicOperator|) $ (|Symbol|)) "\\spad{eval(x,{} s,{} f,{} y)} replaces every \\spad{s(a)} in \\spad{x} by \\spad{f(y)} with \\spad{y} replaced by \\spad{a} for any \\spad{a}.") (($ $) "\\spad{eval(f)} unquotes all the quoted operators in \\spad{f}.") (($ $ (|List| (|Symbol|))) "\\spad{eval(f,{} [foo1,{}...,{}foon])} unquotes all the \\spad{fooi}\\spad{'s} in \\spad{f}.") (($ $ (|Symbol|)) "\\spad{eval(f,{} foo)} unquotes all the foo\\spad{'s} in \\spad{f}.")) (|applyQuote| (($ (|Symbol|) (|List| $)) "\\spad{applyQuote(foo,{} [x1,{}...,{}xn])} returns \\spad{'foo(x1,{}...,{}xn)}.") (($ (|Symbol|) $ $ $ $) "\\spad{applyQuote(foo,{} x,{} y,{} z,{} t)} returns \\spad{'foo(x,{}y,{}z,{}t)}.") (($ (|Symbol|) $ $ $) "\\spad{applyQuote(foo,{} x,{} y,{} z)} returns \\spad{'foo(x,{}y,{}z)}.") (($ (|Symbol|) $ $) "\\spad{applyQuote(foo,{} x,{} y)} returns \\spad{'foo(x,{}y)}.") (($ (|Symbol|) $) "\\spad{applyQuote(foo,{} x)} returns \\spad{'foo(x)}.")) (|variables| (((|List| (|Symbol|)) $) "\\spad{variables(f)} returns the list of all the variables of \\spad{f}.")) (|ground| ((|#1| $) "\\spad{ground(f)} returns \\spad{f} as an element of \\spad{R}. An error occurs if \\spad{f} is not an element of \\spad{R}.")) (|ground?| (((|Boolean|) $) "\\spad{ground?(f)} tests if \\spad{f} is an element of \\spad{R}.")))
-((-4399 -4037 (|has| |#1| (-1044)) (|has| |#1| (-472))) (-4397 |has| |#1| (-171)) (-4396 |has| |#1| (-171)) ((-4404 "*") |has| |#1| (-554)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-554)) (-4394 |has| |#1| (-554)))
+((-4400 -4037 (|has| |#1| (-1044)) (|has| |#1| (-472))) (-4398 |has| |#1| (-171)) (-4397 |has| |#1| (-171)) ((-4405 "*") |has| |#1| (-554)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-554)) (-4395 |has| |#1| (-554)))
NIL
-(-430 R -3197)
+(-430 R -3196)
((|constructor| (NIL "Provides some special functions over an integral domain.")) (|iiabs| ((|#2| |#2|) "\\spad{iiabs(x)} should be local but conditional.")) (|iiGamma| ((|#2| |#2|) "\\spad{iiGamma(x)} should be local but conditional.")) (|airyBi| ((|#2| |#2|) "\\spad{airyBi(x)} returns the airybi function applied to \\spad{x}")) (|airyAi| ((|#2| |#2|) "\\spad{airyAi(x)} returns the airyai function applied to \\spad{x}")) (|besselK| ((|#2| |#2| |#2|) "\\spad{besselK(x,{}y)} returns the besselk function applied to \\spad{x} and \\spad{y}")) (|besselI| ((|#2| |#2| |#2|) "\\spad{besselI(x,{}y)} returns the besseli function applied to \\spad{x} and \\spad{y}")) (|besselY| ((|#2| |#2| |#2|) "\\spad{besselY(x,{}y)} returns the bessely function applied to \\spad{x} and \\spad{y}")) (|besselJ| ((|#2| |#2| |#2|) "\\spad{besselJ(x,{}y)} returns the besselj function applied to \\spad{x} and \\spad{y}")) (|polygamma| ((|#2| |#2| |#2|) "\\spad{polygamma(x,{}y)} returns the polygamma function applied to \\spad{x} and \\spad{y}")) (|digamma| ((|#2| |#2|) "\\spad{digamma(x)} returns the digamma function applied to \\spad{x}")) (|Beta| ((|#2| |#2| |#2|) "\\spad{Beta(x,{}y)} returns the beta function applied to \\spad{x} and \\spad{y}")) (|Gamma| ((|#2| |#2| |#2|) "\\spad{Gamma(a,{}x)} returns the incomplete Gamma function applied to a and \\spad{x}") ((|#2| |#2|) "\\spad{Gamma(f)} returns the formal Gamma function applied to \\spad{f}")) (|abs| ((|#2| |#2|) "\\spad{abs(f)} returns the absolute value operator applied to \\spad{f}")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(op)} returns a copy of \\spad{op} with the domain-dependent properties appropriate for \\spad{F}; error if \\spad{op} is not a special function operator")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} is \\spad{true} if \\spad{op} is a special function operator.")))
NIL
NIL
-(-431 R -3197)
+(-431 R -3196)
((|constructor| (NIL "FunctionsSpacePrimitiveElement provides functions to compute primitive elements in functions spaces.")) (|primitiveElement| (((|Record| (|:| |primelt| |#2|) (|:| |pol1| (|SparseUnivariatePolynomial| |#2|)) (|:| |pol2| (|SparseUnivariatePolynomial| |#2|)) (|:| |prim| (|SparseUnivariatePolynomial| |#2|))) |#2| |#2|) "\\spad{primitiveElement(a1,{} a2)} returns \\spad{[a,{} q1,{} q2,{} q]} such that \\spad{k(a1,{} a2) = k(a)},{} \\spad{\\spad{ai} = \\spad{qi}(a)},{} and \\spad{q(a) = 0}. The minimal polynomial for a2 may involve \\spad{a1},{} but the minimal polynomial for \\spad{a1} may not involve a2; This operations uses \\spadfun{resultant}.") (((|Record| (|:| |primelt| |#2|) (|:| |poly| (|List| (|SparseUnivariatePolynomial| |#2|))) (|:| |prim| (|SparseUnivariatePolynomial| |#2|))) (|List| |#2|)) "\\spad{primitiveElement([a1,{}...,{}an])} returns \\spad{[a,{} [q1,{}...,{}qn],{} q]} such that then \\spad{k(a1,{}...,{}an) = k(a)},{} \\spad{\\spad{ai} = \\spad{qi}(a)},{} and \\spad{q(a) = 0}. This operation uses the technique of \\spadglossSee{groebner bases}{Groebner basis}.")))
NIL
((|HasCategory| |#2| (QUOTE (-27))))
-(-432 R -3197)
+(-432 R -3196)
((|constructor| (NIL "This package provides function which replaces transcendental kernels in a function space by random integers. The correspondence between the kernels and the integers is fixed between calls to new().")) (|newReduc| (((|Void|)) "\\spad{newReduc()} \\undocumented")) (|bringDown| (((|SparseUnivariatePolynomial| (|Fraction| (|Integer|))) |#2| (|Kernel| |#2|)) "\\spad{bringDown(f,{}k)} \\undocumented") (((|Fraction| (|Integer|)) |#2|) "\\spad{bringDown(f)} \\undocumented")))
NIL
NIL
@@ -1664,7 +1664,7 @@ NIL
((|constructor| (NIL "Creates and manipulates objects which correspond to the basic FORTRAN data types: REAL,{} INTEGER,{} COMPLEX,{} LOGICAL and CHARACTER")) (= (((|Boolean|) $ $) "\\spad{x=y} tests for equality")) (|logical?| (((|Boolean|) $) "\\spad{logical?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type LOGICAL.")) (|character?| (((|Boolean|) $) "\\spad{character?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type CHARACTER.")) (|doubleComplex?| (((|Boolean|) $) "\\spad{doubleComplex?(t)} tests whether \\spad{t} is equivalent to the (non-standard) FORTRAN type DOUBLE COMPLEX.")) (|complex?| (((|Boolean|) $) "\\spad{complex?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type COMPLEX.")) (|integer?| (((|Boolean|) $) "\\spad{integer?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type INTEGER.")) (|double?| (((|Boolean|) $) "\\spad{double?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type DOUBLE PRECISION")) (|real?| (((|Boolean|) $) "\\spad{real?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type REAL.")) (|coerce| (((|SExpression|) $) "\\spad{coerce(x)} returns the \\spad{s}-expression associated with \\spad{x}") (((|Symbol|) $) "\\spad{coerce(x)} returns the symbol associated with \\spad{x}") (($ (|Symbol|)) "\\spad{coerce(s)} transforms the symbol \\spad{s} into an element of FortranScalarType provided \\spad{s} is one of real,{} complex,{}double precision,{} logical,{} integer,{} character,{} REAL,{} COMPLEX,{} LOGICAL,{} INTEGER,{} CHARACTER,{} DOUBLE PRECISION") (($ (|String|)) "\\spad{coerce(s)} transforms the string \\spad{s} into an element of FortranScalarType provided \\spad{s} is one of \"real\",{} \"double precision\",{} \"complex\",{} \"logical\",{} \"integer\",{} \"character\",{} \"REAL\",{} \"COMPLEX\",{} \"LOGICAL\",{} \"INTEGER\",{} \"CHARACTER\",{} \"DOUBLE PRECISION\"")))
NIL
NIL
-(-434 R -3197 UP)
+(-434 R -3196 UP)
((|constructor| (NIL "\\indented{1}{Used internally by IR2F} Author: Manuel Bronstein Date Created: 12 May 1988 Date Last Updated: 22 September 1993 Keywords: function,{} space,{} polynomial,{} factoring")) (|anfactor| (((|Union| (|Factored| (|SparseUnivariatePolynomial| (|AlgebraicNumber|))) "failed") |#3|) "\\spad{anfactor(p)} tries to factor \\spad{p} over algebraic numbers,{} returning \"failed\" if it cannot")) (|UP2ifCan| (((|Union| (|:| |overq| (|SparseUnivariatePolynomial| (|Fraction| (|Integer|)))) (|:| |overan| (|SparseUnivariatePolynomial| (|AlgebraicNumber|))) (|:| |failed| (|Boolean|))) |#3|) "\\spad{UP2ifCan(x)} should be local but conditional.")) (|qfactor| (((|Union| (|Factored| (|SparseUnivariatePolynomial| (|Fraction| (|Integer|)))) "failed") |#3|) "\\spad{qfactor(p)} tries to factor \\spad{p} over fractions of integers,{} returning \"failed\" if it cannot")) (|ffactor| (((|Factored| |#3|) |#3|) "\\spad{ffactor(p)} tries to factor a univariate polynomial \\spad{p} over \\spad{F}")))
NIL
((|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-48)))))
@@ -1696,7 +1696,7 @@ NIL
((|constructor| (NIL "\\spadtype{GaloisGroupFactorizer} provides functions to factor resolvents.")) (|btwFact| (((|Record| (|:| |contp| (|Integer|)) (|:| |factors| (|List| (|Record| (|:| |irr| |#1|) (|:| |pow| (|Integer|)))))) |#1| (|Boolean|) (|Set| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{btwFact(p,{}sqf,{}pd,{}r)} returns the factorization of \\spad{p},{} the result is a Record such that \\spad{contp=}content \\spad{p},{} \\spad{factors=}List of irreducible factors of \\spad{p} with exponent. If \\spad{sqf=true} the polynomial is assumed to be square free (\\spadignore{i.e.} without repeated factors). \\spad{pd} is the \\spadtype{Set} of possible degrees. \\spad{r} is a lower bound for the number of factors of \\spad{p}. Please do not use this function in your code because its design may change.")) (|henselFact| (((|Record| (|:| |contp| (|Integer|)) (|:| |factors| (|List| (|Record| (|:| |irr| |#1|) (|:| |pow| (|Integer|)))))) |#1| (|Boolean|)) "\\spad{henselFact(p,{}sqf)} returns the factorization of \\spad{p},{} the result is a Record such that \\spad{contp=}content \\spad{p},{} \\spad{factors=}List of irreducible factors of \\spad{p} with exponent. If \\spad{sqf=true} the polynomial is assumed to be square free (\\spadignore{i.e.} without repeated factors).")) (|factorOfDegree| (((|Union| |#1| "failed") (|PositiveInteger|) |#1| (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|) (|Boolean|)) "\\spad{factorOfDegree(d,{}p,{}listOfDegrees,{}r,{}sqf)} returns a factor of \\spad{p} of degree \\spad{d} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees},{} and that \\spad{p} has at least \\spad{r} factors. If \\spad{sqf=true} the polynomial is assumed to be square free (\\spadignore{i.e.} without repeated factors).") (((|Union| |#1| "failed") (|PositiveInteger|) |#1| (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{factorOfDegree(d,{}p,{}listOfDegrees,{}r)} returns a factor of \\spad{p} of degree \\spad{d} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees},{} and that \\spad{p} has at least \\spad{r} factors.") (((|Union| |#1| "failed") (|PositiveInteger|) |#1| (|List| (|NonNegativeInteger|))) "\\spad{factorOfDegree(d,{}p,{}listOfDegrees)} returns a factor of \\spad{p} of degree \\spad{d} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees}.") (((|Union| |#1| "failed") (|PositiveInteger|) |#1| (|NonNegativeInteger|)) "\\spad{factorOfDegree(d,{}p,{}r)} returns a factor of \\spad{p} of degree \\spad{d} knowing that \\spad{p} has at least \\spad{r} factors.") (((|Union| |#1| "failed") (|PositiveInteger|) |#1|) "\\spad{factorOfDegree(d,{}p)} returns a factor of \\spad{p} of degree \\spad{d}.")) (|factorSquareFree| (((|Factored| |#1|) |#1| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{factorSquareFree(p,{}d,{}r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm,{} knowing that \\spad{d} divides the degree of all factors of \\spad{p} and that \\spad{p} has at least \\spad{r} factors. \\spad{f} is supposed not having any repeated factor (this is not checked).") (((|Factored| |#1|) |#1| (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{factorSquareFree(p,{}listOfDegrees,{}r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm,{} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees} and that \\spad{p} has at least \\spad{r} factors. \\spad{f} is supposed not having any repeated factor (this is not checked).") (((|Factored| |#1|) |#1| (|List| (|NonNegativeInteger|))) "\\spad{factorSquareFree(p,{}listOfDegrees)} factorizes the polynomial \\spad{p} using the single factor bound algorithm and knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees}. \\spad{f} is supposed not having any repeated factor (this is not checked).") (((|Factored| |#1|) |#1| (|NonNegativeInteger|)) "\\spad{factorSquareFree(p,{}r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm and knowing that \\spad{p} has at least \\spad{r} factors. \\spad{f} is supposed not having any repeated factor (this is not checked).") (((|Factored| |#1|) |#1|) "\\spad{factorSquareFree(p)} returns the factorization of \\spad{p} which is supposed not having any repeated factor (this is not checked).")) (|factor| (((|Factored| |#1|) |#1| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{factor(p,{}d,{}r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm,{} knowing that \\spad{d} divides the degree of all factors of \\spad{p} and that \\spad{p} has at least \\spad{r} factors.") (((|Factored| |#1|) |#1| (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{factor(p,{}listOfDegrees,{}r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm,{} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees} and that \\spad{p} has at least \\spad{r} factors.") (((|Factored| |#1|) |#1| (|List| (|NonNegativeInteger|))) "\\spad{factor(p,{}listOfDegrees)} factorizes the polynomial \\spad{p} using the single factor bound algorithm and knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees}.") (((|Factored| |#1|) |#1| (|NonNegativeInteger|)) "\\spad{factor(p,{}r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm and knowing that \\spad{p} has at least \\spad{r} factors.") (((|Factored| |#1|) |#1|) "\\spad{factor(p)} returns the factorization of \\spad{p} over the integers.")) (|tryFunctionalDecomposition| (((|Boolean|) (|Boolean|)) "\\spad{tryFunctionalDecomposition(b)} chooses whether factorizers have to look for functional decomposition of polynomials (\\spad{true}) or not (\\spad{false}). Returns the previous value.")) (|tryFunctionalDecomposition?| (((|Boolean|)) "\\spad{tryFunctionalDecomposition?()} returns \\spad{true} if factorizers try functional decomposition of polynomials before factoring them.")) (|eisensteinIrreducible?| (((|Boolean|) |#1|) "\\spad{eisensteinIrreducible?(p)} returns \\spad{true} if \\spad{p} can be shown to be irreducible by Eisenstein\\spad{'s} criterion,{} \\spad{false} is inconclusive.")) (|useEisensteinCriterion| (((|Boolean|) (|Boolean|)) "\\spad{useEisensteinCriterion(b)} chooses whether factorizers check Eisenstein\\spad{'s} criterion before factoring: \\spad{true} for using it,{} \\spad{false} else. Returns the previous value.")) (|useEisensteinCriterion?| (((|Boolean|)) "\\spad{useEisensteinCriterion?()} returns \\spad{true} if factorizers check Eisenstein\\spad{'s} criterion before factoring.")) (|useSingleFactorBound| (((|Boolean|) (|Boolean|)) "\\spad{useSingleFactorBound(b)} chooses the algorithm to be used by the factorizers: \\spad{true} for algorithm with single factor bound,{} \\spad{false} for algorithm with overall bound. Returns the previous value.")) (|useSingleFactorBound?| (((|Boolean|)) "\\spad{useSingleFactorBound?()} returns \\spad{true} if algorithm with single factor bound is used for factorization,{} \\spad{false} for algorithm with overall bound.")) (|modularFactor| (((|Record| (|:| |prime| (|Integer|)) (|:| |factors| (|List| |#1|))) |#1|) "\\spad{modularFactor(f)} chooses a \"good\" prime and returns the factorization of \\spad{f} modulo this prime in a form that may be used by \\spadfunFrom{completeHensel}{GeneralHenselPackage}. If prime is zero it means that \\spad{f} has been proved to be irreducible over the integers or that \\spad{f} is a unit (\\spadignore{i.e.} 1 or \\spad{-1}). \\spad{f} shall be primitive (\\spadignore{i.e.} content(\\spad{p})\\spad{=1}) and square free (\\spadignore{i.e.} without repeated factors).")) (|numberOfFactors| (((|NonNegativeInteger|) (|List| (|Record| (|:| |factor| |#1|) (|:| |degree| (|Integer|))))) "\\spad{numberOfFactors(ddfactorization)} returns the number of factors of the polynomial \\spad{f} modulo \\spad{p} where \\spad{ddfactorization} is the distinct degree factorization of \\spad{f} computed by \\spadfunFrom{ddFact}{ModularDistinctDegreeFactorizer} for some prime \\spad{p}.")) (|stopMusserTrials| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{stopMusserTrials(n)} sets to \\spad{n} the bound on the number of factors for which \\spadfun{modularFactor} stops to look for an other prime. You will have to remember that the step of recombining the extraneous factors may take up to \\spad{2**n} trials. Returns the previous value.") (((|PositiveInteger|)) "\\spad{stopMusserTrials()} returns the bound on the number of factors for which \\spadfun{modularFactor} stops to look for an other prime. You will have to remember that the step of recombining the extraneous factors may take up to \\spad{2**stopMusserTrials()} trials.")) (|musserTrials| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{musserTrials(n)} sets to \\spad{n} the number of primes to be tried in \\spadfun{modularFactor} and returns the previous value.") (((|PositiveInteger|)) "\\spad{musserTrials()} returns the number of primes that are tried in \\spadfun{modularFactor}.")) (|degreePartition| (((|Multiset| (|NonNegativeInteger|)) (|List| (|Record| (|:| |factor| |#1|) (|:| |degree| (|Integer|))))) "\\spad{degreePartition(ddfactorization)} returns the degree partition of the polynomial \\spad{f} modulo \\spad{p} where \\spad{ddfactorization} is the distinct degree factorization of \\spad{f} computed by \\spadfunFrom{ddFact}{ModularDistinctDegreeFactorizer} for some prime \\spad{p}.")) (|makeFR| (((|Factored| |#1|) (|Record| (|:| |contp| (|Integer|)) (|:| |factors| (|List| (|Record| (|:| |irr| |#1|) (|:| |pow| (|Integer|))))))) "\\spad{makeFR(flist)} turns the final factorization of henselFact into a \\spadtype{Factored} object.")))
NIL
NIL
-(-442 R UP -3197)
+(-442 R UP -3196)
((|constructor| (NIL "\\spadtype{GaloisGroupFactorizationUtilities} provides functions that will be used by the factorizer.")) (|length| ((|#3| |#2|) "\\spad{length(p)} returns the sum of the absolute values of the coefficients of the polynomial \\spad{p}.")) (|height| ((|#3| |#2|) "\\spad{height(p)} returns the maximal absolute value of the coefficients of the polynomial \\spad{p}.")) (|infinityNorm| ((|#3| |#2|) "\\spad{infinityNorm(f)} returns the maximal absolute value of the coefficients of the polynomial \\spad{f}.")) (|quadraticNorm| ((|#3| |#2|) "\\spad{quadraticNorm(f)} returns the \\spad{l2} norm of the polynomial \\spad{f}.")) (|norm| ((|#3| |#2| (|PositiveInteger|)) "\\spad{norm(f,{}p)} returns the \\spad{lp} norm of the polynomial \\spad{f}.")) (|singleFactorBound| (((|Integer|) |#2|) "\\spad{singleFactorBound(p,{}r)} returns a bound on the infinite norm of the factor of \\spad{p} with smallest Bombieri\\spad{'s} norm. \\spad{p} shall be of degree higher or equal to 2.") (((|Integer|) |#2| (|NonNegativeInteger|)) "\\spad{singleFactorBound(p,{}r)} returns a bound on the infinite norm of the factor of \\spad{p} with smallest Bombieri\\spad{'s} norm. \\spad{r} is a lower bound for the number of factors of \\spad{p}. \\spad{p} shall be of degree higher or equal to 2.")) (|rootBound| (((|Integer|) |#2|) "\\spad{rootBound(p)} returns a bound on the largest norm of the complex roots of \\spad{p}.")) (|bombieriNorm| ((|#3| |#2| (|PositiveInteger|)) "\\spad{bombieriNorm(p,{}n)} returns the \\spad{n}th Bombieri\\spad{'s} norm of \\spad{p}.") ((|#3| |#2|) "\\spad{bombieriNorm(p)} returns quadratic Bombieri\\spad{'s} norm of \\spad{p}.")) (|beauzamyBound| (((|Integer|) |#2|) "\\spad{beauzamyBound(p)} returns a bound on the larger coefficient of any factor of \\spad{p}.")))
NIL
NIL
@@ -1734,16 +1734,16 @@ NIL
NIL
(-451)
((|constructor| (NIL "This category describes domains where \\spadfun{\\spad{gcd}} can be computed but where there is no guarantee of the existence of \\spadfun{factor} operation for factorisation into irreducibles. However,{} if such a \\spadfun{factor} operation exist,{} factorization will be unique up to order and units.")) (|lcm| (($ (|List| $)) "\\spad{lcm(l)} returns the least common multiple of the elements of the list \\spad{l}.") (($ $ $) "\\spad{lcm(x,{}y)} returns the least common multiple of \\spad{x} and \\spad{y}.")) (|gcd| (($ (|List| $)) "\\spad{gcd(l)} returns the common \\spad{gcd} of the elements in the list \\spad{l}.") (($ $ $) "\\spad{gcd(x,{}y)} returns the greatest common divisor of \\spad{x} and \\spad{y}.")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-452 R |n| |ls| |gamma|)
((|constructor| (NIL "AlgebraGenericElementPackage allows you to create generic elements of an algebra,{} \\spadignore{i.e.} the scalars are extended to include symbolic coefficients")) (|conditionsForIdempotents| (((|List| (|Polynomial| |#1|))) "\\spad{conditionsForIdempotents()} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the fixed \\spad{R}-module basis") (((|List| (|Polynomial| |#1|)) (|Vector| $)) "\\spad{conditionsForIdempotents([v1,{}...,{}vn])} determines a complete list of polynomial equations for the coefficients of idempotents with respect to the \\spad{R}-module basis \\spad{v1},{}...,{}\\spad{vn}")) (|genericRightDiscriminant| (((|Fraction| (|Polynomial| |#1|))) "\\spad{genericRightDiscriminant()} is the determinant of the generic left trace forms of all products of basis element,{} if the generic left trace form is associative,{} an algebra is separable if the generic left discriminant is invertible,{} if it is non-zero,{} there is some ring extension which makes the algebra separable")) (|genericRightTraceForm| (((|Fraction| (|Polynomial| |#1|)) $ $) "\\spad{genericRightTraceForm (a,{}b)} is defined to be \\spadfun{genericRightTrace (a*b)},{} this defines a symmetric bilinear form on the algebra")) (|genericLeftDiscriminant| (((|Fraction| (|Polynomial| |#1|))) "\\spad{genericLeftDiscriminant()} is the determinant of the generic left trace forms of all products of basis element,{} if the generic left trace form is associative,{} an algebra is separable if the generic left discriminant is invertible,{} if it is non-zero,{} there is some ring extension which makes the algebra separable")) (|genericLeftTraceForm| (((|Fraction| (|Polynomial| |#1|)) $ $) "\\spad{genericLeftTraceForm (a,{}b)} is defined to be \\spad{genericLeftTrace (a*b)},{} this defines a symmetric bilinear form on the algebra")) (|genericRightNorm| (((|Fraction| (|Polynomial| |#1|)) $) "\\spad{genericRightNorm(a)} substitutes the coefficients of \\spad{a} for the generic coefficients into the coefficient of the constant term in \\spadfun{rightRankPolynomial} and changes the sign if the degree of this polynomial is odd")) (|genericRightTrace| (((|Fraction| (|Polynomial| |#1|)) $) "\\spad{genericRightTrace(a)} substitutes the coefficients of \\spad{a} for the generic coefficients into the coefficient of the second highest term in \\spadfun{rightRankPolynomial} and changes the sign")) (|genericRightMinimalPolynomial| (((|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|))) $) "\\spad{genericRightMinimalPolynomial(a)} substitutes the coefficients of \\spad{a} for the generic coefficients in \\spadfun{rightRankPolynomial}")) (|rightRankPolynomial| (((|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|)))) "\\spad{rightRankPolynomial()} returns the right minimimal polynomial of the generic element")) (|genericLeftNorm| (((|Fraction| (|Polynomial| |#1|)) $) "\\spad{genericLeftNorm(a)} substitutes the coefficients of \\spad{a} for the generic coefficients into the coefficient of the constant term in \\spadfun{leftRankPolynomial} and changes the sign if the degree of this polynomial is odd. This is a form of degree \\spad{k}")) (|genericLeftTrace| (((|Fraction| (|Polynomial| |#1|)) $) "\\spad{genericLeftTrace(a)} substitutes the coefficients of \\spad{a} for the generic coefficients into the coefficient of the second highest term in \\spadfun{leftRankPolynomial} and changes the sign. \\indented{1}{This is a linear form}")) (|genericLeftMinimalPolynomial| (((|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|))) $) "\\spad{genericLeftMinimalPolynomial(a)} substitutes the coefficients of {em a} for the generic coefficients in \\spad{leftRankPolynomial()}")) (|leftRankPolynomial| (((|SparseUnivariatePolynomial| (|Fraction| (|Polynomial| |#1|)))) "\\spad{leftRankPolynomial()} returns the left minimimal polynomial of the generic element")) (|generic| (($ (|Vector| (|Symbol|)) (|Vector| $)) "\\spad{generic(vs,{}ve)} returns a generic element,{} \\spadignore{i.e.} the linear combination of \\spad{ve} with the symbolic coefficients \\spad{vs} error,{} if the vector of symbols is shorter than the vector of elements") (($ (|Symbol|) (|Vector| $)) "\\spad{generic(s,{}v)} returns a generic element,{} \\spadignore{i.e.} the linear combination of \\spad{v} with the symbolic coefficients \\spad{s1,{}s2,{}..}") (($ (|Vector| $)) "\\spad{generic(ve)} returns a generic element,{} \\spadignore{i.e.} the linear combination of \\spad{ve} basis with the symbolic coefficients \\spad{\\%x1,{}\\%x2,{}..}") (($ (|Vector| (|Symbol|))) "\\spad{generic(vs)} returns a generic element,{} \\spadignore{i.e.} the linear combination of the fixed basis with the symbolic coefficients \\spad{vs}; error,{} if the vector of symbols is too short") (($ (|Symbol|)) "\\spad{generic(s)} returns a generic element,{} \\spadignore{i.e.} the linear combination of the fixed basis with the symbolic coefficients \\spad{s1,{}s2,{}..}") (($) "\\spad{generic()} returns a generic element,{} \\spadignore{i.e.} the linear combination of the fixed basis with the symbolic coefficients \\spad{\\%x1,{}\\%x2,{}..}")) (|rightUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{rightUnits()} returns the affine space of all right units of the algebra,{} or \\spad{\"failed\"} if there is none")) (|leftUnits| (((|Union| (|Record| (|:| |particular| $) (|:| |basis| (|List| $))) "failed")) "\\spad{leftUnits()} returns the affine space of all left units of the algebra,{} or \\spad{\"failed\"} if there is none")) (|coerce| (($ (|Vector| (|Fraction| (|Polynomial| |#1|)))) "\\spad{coerce(v)} assumes that it is called with a vector of length equal to the dimension of the algebra,{} then a linear combination with the basis element is formed")))
-((-4399 |has| (-406 (-947 |#1|)) (-554)) (-4397 . T) (-4396 . T))
+((-4400 |has| (-406 (-947 |#1|)) (-554)) (-4398 . T) (-4397 . T))
((|HasCategory| (-406 (-947 |#1|)) (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| (-406 (-947 |#1|)) (QUOTE (-554))))
(-453 |vl| R E)
((|constructor| (NIL "\\indented{2}{This type supports distributed multivariate polynomials} whose variables are from a user specified list of symbols. The coefficient ring may be non commutative,{} but the variables are assumed to commute. The term ordering is specified by its third parameter. Suggested types which define term orderings include: \\spadtype{DirectProduct},{} \\spadtype{HomogeneousDirectProduct},{} \\spadtype{SplitHomogeneousDirectProduct} and finally \\spadtype{OrderedDirectProduct} which accepts an arbitrary user function to define a term ordering.")) (|reorder| (($ $ (|List| (|Integer|))) "\\spad{reorder(p,{} perm)} applies the permutation perm to the variables in a polynomial and returns the new correctly ordered polynomial")))
-(((-4404 "*") |has| |#2| (-171)) (-4395 |has| |#2| (-554)) (-4400 |has| |#2| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#2| (QUOTE (-904))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-554)))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362))) (|HasAttribute| |#2| (QUOTE -4400)) (|HasCategory| |#2| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-144)))))
+(((-4405 "*") |has| |#2| (-171)) (-4396 |has| |#2| (-554)) (-4401 |has| |#2| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#2| (QUOTE (-904))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-554)))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362))) (|HasAttribute| |#2| (QUOTE -4401)) (|HasCategory| |#2| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-144)))))
(-454 R BP)
((|constructor| (NIL "\\indented{1}{Author : \\spad{P}.Gianni.} January 1990 The equation \\spad{Af+Bg=h} and its generalization to \\spad{n} polynomials is solved for solutions over the \\spad{R},{} euclidean domain. A table containing the solutions of \\spad{Af+Bg=x**k} is used. The operations are performed modulus a prime which are in principle big enough,{} but the solutions are tested and,{} in case of failure,{} a hensel lifting process is used to get to the right solutions. It will be used in the factorization of multivariate polynomials over finite field,{} with \\spad{R=F[x]}.")) (|testModulus| (((|Boolean|) |#1| (|List| |#2|)) "\\spad{testModulus(p,{}lp)} returns \\spad{true} if the the prime \\spad{p} is valid for the list of polynomials \\spad{lp},{} \\spadignore{i.e.} preserves the degree and they remain relatively prime.")) (|solveid| (((|Union| (|List| |#2|) "failed") |#2| |#1| (|Vector| (|List| |#2|))) "\\spad{solveid(h,{}table)} computes the coefficients of the extended euclidean algorithm for a list of polynomials whose tablePow is \\spad{table} and with right side \\spad{h}.")) (|tablePow| (((|Union| (|Vector| (|List| |#2|)) "failed") (|NonNegativeInteger|) |#1| (|List| |#2|)) "\\spad{tablePow(maxdeg,{}prime,{}lpol)} constructs the table with the coefficients of the Extended Euclidean Algorithm for \\spad{lpol}. Here the right side is \\spad{x**k},{} for \\spad{k} less or equal to \\spad{maxdeg}. The operation returns \"failed\" when the elements are not coprime modulo \\spad{prime}.")) (|compBound| (((|NonNegativeInteger|) |#2| (|List| |#2|)) "\\spad{compBound(p,{}lp)} computes a bound for the coefficients of the solution polynomials. Given a polynomial right hand side \\spad{p},{} and a list \\spad{lp} of left hand side polynomials. Exported because it depends on the valuation.")) (|reduction| ((|#2| |#2| |#1|) "\\spad{reduction(p,{}prime)} reduces the polynomial \\spad{p} modulo \\spad{prime} of \\spad{R}. Note: this function is exported only because it\\spad{'s} conditional.")))
NIL
@@ -1770,7 +1770,7 @@ NIL
NIL
(-460 |vl| R IS E |ff| P)
((|constructor| (NIL "This package \\undocumented")) (* (($ |#6| $) "\\spad{p*x} \\undocumented")) (|multMonom| (($ |#2| |#4| $) "\\spad{multMonom(r,{}e,{}x)} \\undocumented")) (|build| (($ |#2| |#3| |#4|) "\\spad{build(r,{}i,{}e)} \\undocumented")) (|unitVector| (($ |#3|) "\\spad{unitVector(x)} \\undocumented")) (|monomial| (($ |#2| (|ModuleMonomial| |#3| |#4| |#5|)) "\\spad{monomial(r,{}x)} \\undocumented")) (|reductum| (($ $) "\\spad{reductum(x)} \\undocumented")) (|leadingIndex| ((|#3| $) "\\spad{leadingIndex(x)} \\undocumented")) (|leadingExponent| ((|#4| $) "\\spad{leadingExponent(x)} \\undocumented")) (|leadingMonomial| (((|ModuleMonomial| |#3| |#4| |#5|) $) "\\spad{leadingMonomial(x)} \\undocumented")) (|leadingCoefficient| ((|#2| $) "\\spad{leadingCoefficient(x)} \\undocumented")))
-((-4397 . T) (-4396 . T))
+((-4398 . T) (-4397 . T))
NIL
(-461 E V R P Q)
((|constructor| (NIL "Gosper\\spad{'s} summation algorithm.")) (|GospersMethod| (((|Union| |#5| "failed") |#5| |#2| (|Mapping| |#2|)) "\\spad{GospersMethod(b,{} n,{} new)} returns a rational function \\spad{rf(n)} such that \\spad{a(n) * rf(n)} is the indefinite sum of \\spad{a(n)} with respect to upward difference on \\spad{n},{} \\spadignore{i.e.} \\spad{a(n+1) * rf(n+1) - a(n) * rf(n) = a(n)},{} where \\spad{b(n) = a(n)/a(n-1)} is a rational function. Returns \"failed\" if no such rational function \\spad{rf(n)} exists. Note: \\spad{new} is a nullary function returning a new \\spad{V} every time. The condition on \\spad{a(n)} is that \\spad{a(n)/a(n-1)} is a rational function of \\spad{n}.")))
@@ -1778,7 +1778,7 @@ NIL
NIL
(-462 R E |VarSet| P)
((|constructor| (NIL "A domain for polynomial sets.")) (|convert| (($ (|List| |#4|)) "\\axiom{convert(\\spad{lp})} returns the polynomial set whose members are the polynomials of \\axiom{\\spad{lp}}.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#4| (LIST (QUOTE -609) (QUOTE (-857)))))
(-463 S R E)
((|constructor| (NIL "GradedAlgebra(\\spad{R},{}\\spad{E}) denotes ``E-graded \\spad{R}-algebra\\spad{''}. A graded algebra is a graded module together with a degree preserving \\spad{R}-linear map,{} called the {\\em product}. \\blankline The name ``product\\spad{''} is written out in full so inner and outer products with the same mapping type can be distinguished by name.")) (|product| (($ $ $) "\\spad{product(a,{}b)} is the degree-preserving \\spad{R}-linear product: \\blankline \\indented{2}{\\spad{degree product(a,{}b) = degree a + degree b}} \\indented{2}{\\spad{product(a1+a2,{}b) = product(a1,{}b) + product(a2,{}b)}} \\indented{2}{\\spad{product(a,{}b1+b2) = product(a,{}b1) + product(a,{}b2)}} \\indented{2}{\\spad{product(r*a,{}b) = product(a,{}r*b) = r*product(a,{}b)}} \\indented{2}{\\spad{product(a,{}product(b,{}c)) = product(product(a,{}b),{}c)}}")) ((|One|) (($) "1 is the identity for \\spad{product}.")))
@@ -1808,7 +1808,7 @@ NIL
((|constructor| (NIL "GradedModule(\\spad{R},{}\\spad{E}) denotes ``E-graded \\spad{R}-module\\spad{''},{} \\spadignore{i.e.} collection of \\spad{R}-modules indexed by an abelian monoid \\spad{E}. An element \\spad{g} of \\spad{G[s]} for some specific \\spad{s} in \\spad{E} is said to be an element of \\spad{G} with {\\em degree} \\spad{s}. Sums are defined in each module \\spad{G[s]} so two elements of \\spad{G} have a sum if they have the same degree. \\blankline Morphisms can be defined and composed by degree to give the mathematical category of graded modules.")) (+ (($ $ $) "\\spad{g+h} is the sum of \\spad{g} and \\spad{h} in the module of elements of the same degree as \\spad{g} and \\spad{h}. Error: if \\spad{g} and \\spad{h} have different degrees.")) (- (($ $ $) "\\spad{g-h} is the difference of \\spad{g} and \\spad{h} in the module of elements of the same degree as \\spad{g} and \\spad{h}. Error: if \\spad{g} and \\spad{h} have different degrees.") (($ $) "\\spad{-g} is the additive inverse of \\spad{g} in the module of elements of the same grade as \\spad{g}.")) (* (($ $ |#1|) "\\spad{g*r} is right module multiplication.") (($ |#1| $) "\\spad{r*g} is left module multiplication.")) ((|Zero|) (($) "0 denotes the zero of degree 0.")) (|degree| ((|#2| $) "\\spad{degree(g)} names the degree of \\spad{g}. The set of all elements of a given degree form an \\spad{R}-module.")))
NIL
NIL
-(-470 |lv| -3197 R)
+(-470 |lv| -3196 R)
((|constructor| (NIL "\\indented{1}{Author : \\spad{P}.Gianni,{} Summer \\spad{'88},{} revised November \\spad{'89}} Solve systems of polynomial equations using Groebner bases Total order Groebner bases are computed and then converted to lex ones This package is mostly intended for internal use.")) (|genericPosition| (((|Record| (|:| |dpolys| (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) (|:| |coords| (|List| (|Integer|)))) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|OrderedVariableList| |#1|))) "\\spad{genericPosition(lp,{}lv)} puts a radical zero dimensional ideal in general position,{} for system \\spad{lp} in variables \\spad{lv}.")) (|testDim| (((|Union| (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) "failed") (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|OrderedVariableList| |#1|))) "\\spad{testDim(lp,{}lv)} tests if the polynomial system \\spad{lp} in variables \\spad{lv} is zero dimensional.")) (|groebSolve| (((|List| (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|OrderedVariableList| |#1|))) "\\spad{groebSolve(lp,{}lv)} reduces the polynomial system \\spad{lp} in variables \\spad{lv} to triangular form. Algorithm based on groebner bases algorithm with linear algebra for change of ordering. Preprocessing for the general solver. The polynomials in input are of type \\spadtype{DMP}.")))
NIL
NIL
@@ -1818,23 +1818,23 @@ NIL
NIL
(-472)
((|constructor| (NIL "The class of multiplicative groups,{} \\spadignore{i.e.} monoids with multiplicative inverses. \\blankline")) (|commutator| (($ $ $) "\\spad{commutator(p,{}q)} computes \\spad{inv(p) * inv(q) * p * q}.")) (|conjugate| (($ $ $) "\\spad{conjugate(p,{}q)} computes \\spad{inv(q) * p * q}; this is 'right action by conjugation'.")) (|unitsKnown| ((|attribute|) "unitsKnown asserts that recip only returns \"failed\" for non-units.")) (** (($ $ (|Integer|)) "\\spad{x**n} returns \\spad{x} raised to the integer power \\spad{n}.")) (/ (($ $ $) "\\spad{x/y} is the same as \\spad{x} times the inverse of \\spad{y}.")) (|inv| (($ $) "\\spad{inv(x)} returns the inverse of \\spad{x}.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-473 |Coef| |var| |cen|)
((|constructor| (NIL "This is a category of univariate Puiseux series constructed from univariate Laurent series. A Puiseux series is represented by a pair \\spad{[r,{}f(x)]},{} where \\spad{r} is a positive rational number and \\spad{f(x)} is a Laurent series. This pair represents the Puiseux series \\spad{f(x\\^r)}.")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|coerce| (($ (|UnivariatePuiseuxSeries| |#1| |#2| |#3|)) "\\spad{coerce(f)} converts a Puiseux series to a general power series.") (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Puiseux series.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|)))) (|HasCategory| (-406 (-562)) (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasSignature| |#1| (LIST (QUOTE -4054) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -2667) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1402) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|)))) (|HasCategory| (-406 (-562)) (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasSignature| |#1| (LIST (QUOTE -4053) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -3081) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1401) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))))
(-474 |Key| |Entry| |Tbl| |dent|)
((|constructor| (NIL "A sparse table has a default entry,{} which is returned if no other value has been explicitly stored for a key.")))
-((-4403 . T))
-((-12 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2694) (|devaluate| |#2|)))))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-845))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))))
+((-4404 . T))
+((-12 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2693) (|devaluate| |#2|)))))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-845))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))))
(-475 R E V P)
((|constructor| (NIL "A domain constructor of the category \\axiomType{TriangularSetCategory}. The only requirement for a list of polynomials to be a member of such a domain is the following: no polynomial is constant and two distinct polynomials have distinct main variables. Such a triangular set may not be auto-reduced or consistent. Triangular sets are stored as sorted lists \\spad{w}.\\spad{r}.\\spad{t}. the main variables of their members but they are displayed in reverse order.\\newline References : \\indented{1}{[1] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)}")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#4| (LIST (QUOTE -609) (QUOTE (-857)))))
(-476)
((|constructor| (NIL "\\indented{1}{Symbolic fractions in \\%\\spad{pi} with integer coefficients;} \\indented{1}{The point for using \\spad{Pi} as the default domain for those fractions} \\indented{1}{is that \\spad{Pi} is coercible to the float types,{} and not Expression.} Date Created: 21 Feb 1990 Date Last Updated: 12 Mai 1992")) (|pi| (($) "\\spad{\\spad{pi}()} returns the symbolic \\%\\spad{pi}.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-477)
((|constructor| (NIL "This domain represents a `has' expression.")) (|rhs| (((|SpadAst|) $) "\\spad{rhs(e)} returns the right hand side of the case expression `e'.")) (|lhs| (((|SpadAst|) $) "\\spad{lhs(e)} returns the left hand side of the has expression `e'.")))
@@ -1842,29 +1842,29 @@ NIL
NIL
(-478 |Key| |Entry| |hashfn|)
((|constructor| (NIL "This domain provides access to the underlying Lisp hash tables. By varying the hashfn parameter,{} tables suited for different purposes can be obtained.")))
-((-4402 . T) (-4403 . T))
-((-12 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2694) (|devaluate| |#2|)))))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))))
+((-4403 . T) (-4404 . T))
+((-12 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2693) (|devaluate| |#2|)))))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))))
(-479)
((|constructor| (NIL "\\indented{1}{Author : Larry Lambe} Date Created : August 1988 Date Last Updated : March 9 1990 Related Constructors: OrderedSetInts,{} Commutator,{} FreeNilpotentLie AMS Classification: Primary 17B05,{} 17B30; Secondary 17A50 Keywords: free Lie algebra,{} Hall basis,{} basic commutators Description : Generate a basis for the free Lie algebra on \\spad{n} generators over a ring \\spad{R} with identity up to basic commutators of length \\spad{c} using the algorithm of \\spad{P}. Hall as given in Serre\\spad{'s} book Lie Groups \\spad{--} Lie Algebras")) (|generate| (((|Vector| (|List| (|Integer|))) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{generate(numberOfGens,{} maximalWeight)} generates a vector of elements of the form [left,{}weight,{}right] which represents a \\spad{P}. Hall basis element for the free lie algebra on \\spad{numberOfGens} generators. We only generate those basis elements of weight less than or equal to maximalWeight")) (|inHallBasis?| (((|Boolean|) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{inHallBasis?(numberOfGens,{} leftCandidate,{} rightCandidate,{} left)} tests to see if a new element should be added to the \\spad{P}. Hall basis being constructed. The list \\spad{[leftCandidate,{}wt,{}rightCandidate]} is included in the basis if in the unique factorization of \\spad{rightCandidate},{} we have left factor leftOfRight,{} and leftOfRight \\spad{<=} \\spad{leftCandidate}")) (|lfunc| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{lfunc(d,{}n)} computes the rank of the \\spad{n}th factor in the lower central series of the free \\spad{d}-generated free Lie algebra; This rank is \\spad{d} if \\spad{n} = 1 and binom(\\spad{d},{}2) if \\spad{n} = 2")))
NIL
NIL
(-480 |vl| R)
((|constructor| (NIL "\\indented{2}{This type supports distributed multivariate polynomials} whose variables are from a user specified list of symbols. The coefficient ring may be non commutative,{} but the variables are assumed to commute. The term ordering is total degree ordering refined by reverse lexicographic ordering with respect to the position that the variables appear in the list of variables parameter.")) (|reorder| (($ $ (|List| (|Integer|))) "\\spad{reorder(p,{} perm)} applies the permutation perm to the variables in a polynomial and returns the new correctly ordered polynomial")))
-(((-4404 "*") |has| |#2| (-171)) (-4395 |has| |#2| (-554)) (-4400 |has| |#2| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#2| (QUOTE (-904))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-554)))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362))) (|HasAttribute| |#2| (QUOTE -4400)) (|HasCategory| |#2| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-144)))))
-(-481 -2241 S)
+(((-4405 "*") |has| |#2| (-171)) (-4396 |has| |#2| (-554)) (-4401 |has| |#2| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#2| (QUOTE (-904))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-554)))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362))) (|HasAttribute| |#2| (QUOTE -4401)) (|HasCategory| |#2| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-144)))))
+(-481 -2240 S)
((|constructor| (NIL "\\indented{2}{This type represents the finite direct or cartesian product of an} underlying ordered component type. The vectors are ordered first by the sum of their components,{} and then refined using a reverse lexicographic ordering. This type is a suitable third argument for \\spadtype{GeneralDistributedMultivariatePolynomial}.")))
-((-4396 |has| |#2| (-1044)) (-4397 |has| |#2| (-1044)) (-4399 |has| |#2| (-6 -4399)) ((-4404 "*") |has| |#2| (-171)) (-4402 . T))
-((-4037 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092)))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (QUOTE (-362))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362)))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-788))) (-4037 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-843)))) (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-1044)))) (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-171)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-232)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-367)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-721)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-788)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-843)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1044))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| (-562) (QUOTE (-845))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-4037 (|HasCategory| |#2| (QUOTE (-1044))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092)))) (|HasAttribute| |#2| (QUOTE -4399)) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))))
+((-4397 |has| |#2| (-1044)) (-4398 |has| |#2| (-1044)) (-4400 |has| |#2| (-6 -4400)) ((-4405 "*") |has| |#2| (-171)) (-4403 . T))
+((-4037 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092)))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (QUOTE (-362))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362)))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-788))) (-4037 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-843)))) (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-1044)))) (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-171)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-232)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-367)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-721)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-788)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-843)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1044))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| (-562) (QUOTE (-845))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-4037 (|HasCategory| |#2| (QUOTE (-1044))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092)))) (|HasAttribute| |#2| (QUOTE -4400)) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))))
(-482)
((|constructor| (NIL "This domain represents the header of a definition.")) (|parameters| (((|List| (|Identifier|)) $) "\\spad{parameters(h)} gives the parameters specified in the definition header \\spad{`h'}.")) (|name| (((|Identifier|) $) "\\spad{name(h)} returns the name of the operation defined defined.")) (|headAst| (($ (|Identifier|) (|List| (|Identifier|))) "\\spad{headAst(f,{}[x1,{}..,{}xn])} constructs a function definition header.")))
NIL
NIL
(-483 S)
((|constructor| (NIL "Heap implemented in a flexible array to allow for insertions")) (|heap| (($ (|List| |#1|)) "\\spad{heap(ls)} creates a heap of elements consisting of the elements of \\spad{ls}.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
-(-484 -3197 UP UPUP R)
+(-484 -3196 UP UPUP R)
((|constructor| (NIL "This domains implements finite rational divisors on an hyperelliptic curve,{} that is finite formal sums SUM(\\spad{n} * \\spad{P}) where the \\spad{n}\\spad{'s} are integers and the \\spad{P}\\spad{'s} are finite rational points on the curve. The equation of the curve must be \\spad{y^2} = \\spad{f}(\\spad{x}) and \\spad{f} must have odd degree.")))
NIL
NIL
@@ -1874,12 +1874,12 @@ NIL
NIL
(-486)
((|constructor| (NIL "This domain allows rational numbers to be presented as repeating hexadecimal expansions.")) (|hex| (($ (|Fraction| (|Integer|))) "\\spad{hex(r)} converts a rational number to a hexadecimal expansion.")) (|fractionPart| (((|Fraction| (|Integer|)) $) "\\spad{fractionPart(h)} returns the fractional part of a hexadecimal expansion.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| (-562) (QUOTE (-904))) (|HasCategory| (-562) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| (-562) (QUOTE (-144))) (|HasCategory| (-562) (QUOTE (-146))) (|HasCategory| (-562) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-562) (QUOTE (-1017))) (|HasCategory| (-562) (QUOTE (-815))) (-4037 (|HasCategory| (-562) (QUOTE (-815))) (|HasCategory| (-562) (QUOTE (-845)))) (|HasCategory| (-562) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| (-562) (QUOTE (-1143))) (|HasCategory| (-562) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| (-562) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| (-562) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| (-562) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| (-562) (QUOTE (-232))) (|HasCategory| (-562) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-562) (LIST (QUOTE -513) (QUOTE (-1168)) (QUOTE (-562)))) (|HasCategory| (-562) (LIST (QUOTE -308) (QUOTE (-562)))) (|HasCategory| (-562) (LIST (QUOTE -285) (QUOTE (-562)) (QUOTE (-562)))) (|HasCategory| (-562) (QUOTE (-306))) (|HasCategory| (-562) (QUOTE (-544))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| (-562) (LIST (QUOTE -635) (QUOTE (-562)))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-562) (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-562) (QUOTE (-904)))) (|HasCategory| (-562) (QUOTE (-144)))))
(-487 A S)
((|constructor| (NIL "A homogeneous aggregate is an aggregate of elements all of the same type. In the current system,{} all aggregates are homogeneous. Two attributes characterize classes of aggregates. Aggregates from domains with attribute \\spadatt{finiteAggregate} have a finite number of members. Those with attribute \\spadatt{shallowlyMutable} allow an element to be modified or updated without changing its overall value.")) (|member?| (((|Boolean|) |#2| $) "\\spad{member?(x,{}u)} tests if \\spad{x} is a member of \\spad{u}. For collections,{} \\axiom{member?(\\spad{x},{}\\spad{u}) = reduce(or,{}[x=y for \\spad{y} in \\spad{u}],{}\\spad{false})}.")) (|members| (((|List| |#2|) $) "\\spad{members(u)} returns a list of the consecutive elements of \\spad{u}. For collections,{} \\axiom{parts([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = (\\spad{x},{}\\spad{y},{}...,{}\\spad{z})}.")) (|parts| (((|List| |#2|) $) "\\spad{parts(u)} returns a list of the consecutive elements of \\spad{u}. For collections,{} \\axiom{parts([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = (\\spad{x},{}\\spad{y},{}...,{}\\spad{z})}.")) (|count| (((|NonNegativeInteger|) |#2| $) "\\spad{count(x,{}u)} returns the number of occurrences of \\spad{x} in \\spad{u}. For collections,{} \\axiom{count(\\spad{x},{}\\spad{u}) = reduce(+,{}[x=y for \\spad{y} in \\spad{u}],{}0)}.") (((|NonNegativeInteger|) (|Mapping| (|Boolean|) |#2|) $) "\\spad{count(p,{}u)} returns the number of elements \\spad{x} in \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. For collections,{} \\axiom{count(\\spad{p},{}\\spad{u}) = reduce(+,{}[1 for \\spad{x} in \\spad{u} | \\spad{p}(\\spad{x})],{}0)}.")) (|every?| (((|Boolean|) (|Mapping| (|Boolean|) |#2|) $) "\\spad{every?(f,{}u)} tests if \\spad{p}(\\spad{x}) is \\spad{true} for all elements \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{every?(\\spad{p},{}\\spad{u}) = reduce(and,{}map(\\spad{f},{}\\spad{u}),{}\\spad{true},{}\\spad{false})}.")) (|any?| (((|Boolean|) (|Mapping| (|Boolean|) |#2|) $) "\\spad{any?(p,{}u)} tests if \\axiom{\\spad{p}(\\spad{x})} is \\spad{true} for any element \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{any?(\\spad{p},{}\\spad{u}) = reduce(or,{}map(\\spad{f},{}\\spad{u}),{}\\spad{false},{}\\spad{true})}.")) (|map!| (($ (|Mapping| |#2| |#2|) $) "\\spad{map!(f,{}u)} destructively replaces each element \\spad{x} of \\spad{u} by \\axiom{\\spad{f}(\\spad{x})}.")) (|map| (($ (|Mapping| |#2| |#2|) $) "\\spad{map(f,{}u)} returns a copy of \\spad{u} with each element \\spad{x} replaced by \\spad{f}(\\spad{x}). For collections,{} \\axiom{map(\\spad{f},{}\\spad{u}) = [\\spad{f}(\\spad{x}) for \\spad{x} in \\spad{u}]}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4402)) (|HasAttribute| |#1| (QUOTE -4403)) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))))
+((|HasAttribute| |#1| (QUOTE -4403)) (|HasAttribute| |#1| (QUOTE -4404)) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))))
(-488 S)
((|constructor| (NIL "A homogeneous aggregate is an aggregate of elements all of the same type. In the current system,{} all aggregates are homogeneous. Two attributes characterize classes of aggregates. Aggregates from domains with attribute \\spadatt{finiteAggregate} have a finite number of members. Those with attribute \\spadatt{shallowlyMutable} allow an element to be modified or updated without changing its overall value.")) (|member?| (((|Boolean|) |#1| $) "\\spad{member?(x,{}u)} tests if \\spad{x} is a member of \\spad{u}. For collections,{} \\axiom{member?(\\spad{x},{}\\spad{u}) = reduce(or,{}[x=y for \\spad{y} in \\spad{u}],{}\\spad{false})}.")) (|members| (((|List| |#1|) $) "\\spad{members(u)} returns a list of the consecutive elements of \\spad{u}. For collections,{} \\axiom{parts([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = (\\spad{x},{}\\spad{y},{}...,{}\\spad{z})}.")) (|parts| (((|List| |#1|) $) "\\spad{parts(u)} returns a list of the consecutive elements of \\spad{u}. For collections,{} \\axiom{parts([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = (\\spad{x},{}\\spad{y},{}...,{}\\spad{z})}.")) (|count| (((|NonNegativeInteger|) |#1| $) "\\spad{count(x,{}u)} returns the number of occurrences of \\spad{x} in \\spad{u}. For collections,{} \\axiom{count(\\spad{x},{}\\spad{u}) = reduce(+,{}[x=y for \\spad{y} in \\spad{u}],{}0)}.") (((|NonNegativeInteger|) (|Mapping| (|Boolean|) |#1|) $) "\\spad{count(p,{}u)} returns the number of elements \\spad{x} in \\spad{u} such that \\axiom{\\spad{p}(\\spad{x})} is \\spad{true}. For collections,{} \\axiom{count(\\spad{p},{}\\spad{u}) = reduce(+,{}[1 for \\spad{x} in \\spad{u} | \\spad{p}(\\spad{x})],{}0)}.")) (|every?| (((|Boolean|) (|Mapping| (|Boolean|) |#1|) $) "\\spad{every?(f,{}u)} tests if \\spad{p}(\\spad{x}) is \\spad{true} for all elements \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{every?(\\spad{p},{}\\spad{u}) = reduce(and,{}map(\\spad{f},{}\\spad{u}),{}\\spad{true},{}\\spad{false})}.")) (|any?| (((|Boolean|) (|Mapping| (|Boolean|) |#1|) $) "\\spad{any?(p,{}u)} tests if \\axiom{\\spad{p}(\\spad{x})} is \\spad{true} for any element \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{any?(\\spad{p},{}\\spad{u}) = reduce(or,{}map(\\spad{f},{}\\spad{u}),{}\\spad{false},{}\\spad{true})}.")) (|map!| (($ (|Mapping| |#1| |#1|) $) "\\spad{map!(f,{}u)} destructively replaces each element \\spad{x} of \\spad{u} by \\axiom{\\spad{f}(\\spad{x})}.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(f,{}u)} returns a copy of \\spad{u} with each element \\spad{x} replaced by \\spad{f}(\\spad{x}). For collections,{} \\axiom{map(\\spad{f},{}\\spad{u}) = [\\spad{f}(\\spad{x}) for \\spad{x} in \\spad{u}]}.")))
NIL
@@ -1900,33 +1900,33 @@ NIL
((|constructor| (NIL "Category for the hyperbolic trigonometric functions.")) (|tanh| (($ $) "\\spad{tanh(x)} returns the hyperbolic tangent of \\spad{x}.")) (|sinh| (($ $) "\\spad{sinh(x)} returns the hyperbolic sine of \\spad{x}.")) (|sech| (($ $) "\\spad{sech(x)} returns the hyperbolic secant of \\spad{x}.")) (|csch| (($ $) "\\spad{csch(x)} returns the hyperbolic cosecant of \\spad{x}.")) (|coth| (($ $) "\\spad{coth(x)} returns the hyperbolic cotangent of \\spad{x}.")) (|cosh| (($ $) "\\spad{cosh(x)} returns the hyperbolic cosine of \\spad{x}.")))
NIL
NIL
-(-493 -3197 UP |AlExt| |AlPol|)
+(-493 -3196 UP |AlExt| |AlPol|)
((|constructor| (NIL "Factorization of univariate polynomials with coefficients in an algebraic extension of a field over which we can factor UP\\spad{'s}.")) (|factor| (((|Factored| |#4|) |#4| (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{factor(p,{} f)} returns a prime factorisation of \\spad{p}; \\spad{f} is a factorisation map for elements of UP.")))
NIL
NIL
(-494)
((|constructor| (NIL "Algebraic closure of the rational numbers.")) (|norm| (($ $ (|List| (|Kernel| $))) "\\spad{norm(f,{}l)} computes the norm of the algebraic number \\spad{f} with respect to the extension generated by kernels \\spad{l}") (($ $ (|Kernel| $)) "\\spad{norm(f,{}k)} computes the norm of the algebraic number \\spad{f} with respect to the extension generated by kernel \\spad{k}") (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|List| (|Kernel| $))) "\\spad{norm(p,{}l)} computes the norm of the polynomial \\spad{p} with respect to the extension generated by kernels \\spad{l}") (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|Kernel| $)) "\\spad{norm(p,{}k)} computes the norm of the polynomial \\spad{p} with respect to the extension generated by kernel \\spad{k}")) (|trueEqual| (((|Boolean|) $ $) "\\spad{trueEqual(x,{}y)} tries to determine if the two numbers are equal")) (|reduce| (($ $) "\\spad{reduce(f)} simplifies all the unreduced algebraic numbers present in \\spad{f} by applying their defining relations.")) (|denom| (((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $)) $) "\\spad{denom(f)} returns the denominator of \\spad{f} viewed as a polynomial in the kernels over \\spad{Z}.")) (|numer| (((|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $)) $) "\\spad{numer(f)} returns the numerator of \\spad{f} viewed as a polynomial in the kernels over \\spad{Z}.")) (|coerce| (($ (|SparseMultivariatePolynomial| (|Integer|) (|Kernel| $))) "\\spad{coerce(p)} returns \\spad{p} viewed as an algebraic number.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| $ (QUOTE (-1044))) (|HasCategory| $ (LIST (QUOTE -1033) (QUOTE (-562)))))
(-495 S |mn|)
((|constructor| (NIL "\\indented{1}{Author Micheal Monagan Aug/87} This is the basic one dimensional array data type.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
(-496 R |mnRow| |mnCol|)
((|constructor| (NIL "\\indented{1}{An IndexedTwoDimensionalArray is a 2-dimensional array where} the minimal row and column indices are parameters of the type. Rows and columns are returned as IndexedOneDimensionalArray\\spad{'s} with minimal indices matching those of the IndexedTwoDimensionalArray. The index of the 'first' row may be obtained by calling the function 'minRowIndex'. The index of the 'first' column may be obtained by calling the function 'minColIndex'. The index of the first element of a 'Row' is the same as the index of the first column in an array and vice versa.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-497 K R UP)
((|constructor| (NIL "\\indented{1}{Author: Clifton Williamson} Date Created: 9 August 1993 Date Last Updated: 3 December 1993 Basic Operations: chineseRemainder,{} factorList Related Domains: PAdicWildFunctionFieldIntegralBasis(\\spad{K},{}\\spad{R},{}UP,{}\\spad{F}) Also See: WildFunctionFieldIntegralBasis,{} FunctionFieldIntegralBasis AMS Classifications: Keywords: function field,{} finite field,{} integral basis Examples: References: Description:")) (|chineseRemainder| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|))) (|List| |#3|) (|List| (|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|)))) (|NonNegativeInteger|)) "\\spad{chineseRemainder(lu,{}lr,{}n)} \\undocumented")) (|listConjugateBases| (((|List| (|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|)))) (|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|))) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{listConjugateBases(bas,{}q,{}n)} returns the list \\spad{[bas,{}bas^Frob,{}bas^(Frob^2),{}...bas^(Frob^(n-1))]},{} where \\spad{Frob} raises the coefficients of all polynomials appearing in the basis \\spad{bas} to the \\spad{q}th power.")) (|factorList| (((|List| (|SparseUnivariatePolynomial| |#1|)) |#1| (|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{factorList(k,{}n,{}m,{}j)} \\undocumented")))
NIL
NIL
-(-498 R UP -3197)
+(-498 R UP -3196)
((|constructor| (NIL "This package contains functions used in the packages FunctionFieldIntegralBasis and NumberFieldIntegralBasis.")) (|moduleSum| (((|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|))) (|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|))) (|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|)))) "\\spad{moduleSum(m1,{}m2)} returns the sum of two modules in the framed algebra \\spad{F}. Each module \\spad{\\spad{mi}} is represented as follows: \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn} and \\spad{\\spad{mi}} is a record \\spad{[basis,{}basisDen,{}basisInv]}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then a basis \\spad{v1,{}...,{}vn} for \\spad{\\spad{mi}} is given by \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of 'basis' contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|idealiserMatrix| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{idealiserMatrix(m1,{} m2)} returns the matrix representing the linear conditions on the Ring associatied with an ideal defined by \\spad{m1} and \\spad{m2}.")) (|idealiser| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) |#1|) "\\spad{idealiser(m1,{}m2,{}d)} computes the order of an ideal defined by \\spad{m1} and \\spad{m2} where \\spad{d} is the known part of the denominator") (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{idealiser(m1,{}m2)} computes the order of an ideal defined by \\spad{m1} and \\spad{m2}")) (|leastPower| (((|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{leastPower(p,{}n)} returns \\spad{e},{} where \\spad{e} is the smallest integer such that \\spad{p **e >= n}")) (|divideIfCan!| ((|#1| (|Matrix| |#1|) (|Matrix| |#1|) |#1| (|Integer|)) "\\spad{divideIfCan!(matrix,{}matrixOut,{}prime,{}n)} attempts to divide the entries of \\spad{matrix} by \\spad{prime} and store the result in \\spad{matrixOut}. If it is successful,{} 1 is returned and if not,{} \\spad{prime} is returned. Here both \\spad{matrix} and \\spad{matrixOut} are \\spad{n}-by-\\spad{n} upper triangular matrices.")) (|matrixGcd| ((|#1| (|Matrix| |#1|) |#1| (|NonNegativeInteger|)) "\\spad{matrixGcd(mat,{}sing,{}n)} is \\spad{gcd(sing,{}g)} where \\spad{g} is the \\spad{gcd} of the entries of the \\spad{n}-by-\\spad{n} upper-triangular matrix \\spad{mat}.")) (|diagonalProduct| ((|#1| (|Matrix| |#1|)) "\\spad{diagonalProduct(m)} returns the product of the elements on the diagonal of the matrix \\spad{m}")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(x)} returns a square-free factorisation of \\spad{x}")))
NIL
NIL
(-499 |mn|)
((|constructor| (NIL "\\spadtype{IndexedBits} is a domain to compactly represent large quantities of Boolean data.")) (|And| (($ $ $) "\\spad{And(n,{}m)} returns the bit-by-bit logical {\\em And} of \\spad{n} and \\spad{m}.")) (|Or| (($ $ $) "\\spad{Or(n,{}m)} returns the bit-by-bit logical {\\em Or} of \\spad{n} and \\spad{m}.")) (|Not| (($ $) "\\spad{Not(n)} returns the bit-by-bit logical {\\em Not} of \\spad{n}.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-12 (|HasCategory| (-112) (QUOTE (-1092))) (|HasCategory| (-112) (LIST (QUOTE -308) (QUOTE (-112))))) (|HasCategory| (-112) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-112) (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| (-112) (QUOTE (-1092))) (|HasCategory| (-112) (LIST (QUOTE -609) (QUOTE (-857)))))
(-500 K R UP L)
((|constructor| (NIL "IntegralBasisPolynomialTools provides functions for \\indented{1}{mapping functions on the coefficients of univariate and bivariate} \\indented{1}{polynomials.}")) (|mapBivariate| (((|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#4|)) (|Mapping| |#4| |#1|) |#3|) "\\spad{mapBivariate(f,{}p(x,{}y))} applies the function \\spad{f} to the coefficients of \\spad{p(x,{}y)}.")) (|mapMatrixIfCan| (((|Union| (|Matrix| |#2|) "failed") (|Mapping| (|Union| |#1| "failed") |#4|) (|Matrix| (|SparseUnivariatePolynomial| |#4|))) "\\spad{mapMatrixIfCan(f,{}mat)} applies the function \\spad{f} to the coefficients of the entries of \\spad{mat} if possible,{} and returns \\spad{\"failed\"} otherwise.")) (|mapUnivariateIfCan| (((|Union| |#2| "failed") (|Mapping| (|Union| |#1| "failed") |#4|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{mapUnivariateIfCan(f,{}p(x))} applies the function \\spad{f} to the coefficients of \\spad{p(x)},{} if possible,{} and returns \\spad{\"failed\"} otherwise.")) (|mapUnivariate| (((|SparseUnivariatePolynomial| |#4|) (|Mapping| |#4| |#1|) |#2|) "\\spad{mapUnivariate(f,{}p(x))} applies the function \\spad{f} to the coefficients of \\spad{p(x)}.") ((|#2| (|Mapping| |#1| |#4|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{mapUnivariate(f,{}p(x))} applies the function \\spad{f} to the coefficients of \\spad{p(x)}.")))
@@ -1940,7 +1940,7 @@ NIL
((|constructor| (NIL "InnerCommonDenominator provides functions to compute the common denominator of a finite linear aggregate of elements of the quotient field of an integral domain.")) (|splitDenominator| (((|Record| (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) "\\spad{splitDenominator([q1,{}...,{}qn])} returns \\spad{[[p1,{}...,{}pn],{} d]} such that \\spad{\\spad{qi} = pi/d} and \\spad{d} is a common denominator for the \\spad{qi}\\spad{'s}.")) (|clearDenominator| ((|#3| |#4|) "\\spad{clearDenominator([q1,{}...,{}qn])} returns \\spad{[p1,{}...,{}pn]} such that \\spad{\\spad{qi} = pi/d} where \\spad{d} is a common denominator for the \\spad{qi}\\spad{'s}.")) (|commonDenominator| ((|#1| |#4|) "\\spad{commonDenominator([q1,{}...,{}qn])} returns a common denominator \\spad{d} for \\spad{q1},{}...,{}\\spad{qn}.")))
NIL
NIL
-(-503 -3197 |Expon| |VarSet| |DPoly|)
+(-503 -3196 |Expon| |VarSet| |DPoly|)
((|constructor| (NIL "This domain represents polynomial ideals with coefficients in any field and supports the basic ideal operations,{} including intersection sum and quotient. An ideal is represented by a list of polynomials (the generators of the ideal) and a boolean that is \\spad{true} if the generators are a Groebner basis. The algorithms used are based on Groebner basis computations. The ordering is determined by the datatype of the input polynomials. Users may use refinements of total degree orderings.")) (|relationsIdeal| (((|SuchThat| (|List| (|Polynomial| |#1|)) (|List| (|Equation| (|Polynomial| |#1|)))) (|List| |#4|)) "\\spad{relationsIdeal(polyList)} returns the ideal of relations among the polynomials in \\spad{polyList}.")) (|saturate| (($ $ |#4| (|List| |#3|)) "\\spad{saturate(I,{}f,{}lvar)} is the saturation with respect to the prime principal ideal which is generated by \\spad{f} in the polynomial ring \\spad{F[lvar]}.") (($ $ |#4|) "\\spad{saturate(I,{}f)} is the saturation of the ideal \\spad{I} with respect to the multiplicative set generated by the polynomial \\spad{f}.")) (|coerce| (($ (|List| |#4|)) "\\spad{coerce(polyList)} converts the list of polynomials \\spad{polyList} to an ideal.")) (|generators| (((|List| |#4|) $) "\\spad{generators(I)} returns a list of generators for the ideal \\spad{I}.")) (|groebner?| (((|Boolean|) $) "\\spad{groebner?(I)} tests if the generators of the ideal \\spad{I} are a Groebner basis.")) (|groebnerIdeal| (($ (|List| |#4|)) "\\spad{groebnerIdeal(polyList)} constructs the ideal generated by the list of polynomials \\spad{polyList} which are assumed to be a Groebner basis. Note: this operation avoids a Groebner basis computation.")) (|ideal| (($ (|List| |#4|)) "\\spad{ideal(polyList)} constructs the ideal generated by the list of polynomials \\spad{polyList}.")) (|leadingIdeal| (($ $) "\\spad{leadingIdeal(I)} is the ideal generated by the leading terms of the elements of the ideal \\spad{I}.")) (|dimension| (((|Integer|) $) "\\spad{dimension(I)} gives the dimension of the ideal \\spad{I}. in the ring \\spad{F[lvar]},{} where lvar are the variables appearing in \\spad{I}") (((|Integer|) $ (|List| |#3|)) "\\spad{dimension(I,{}lvar)} gives the dimension of the ideal \\spad{I},{} in the ring \\spad{F[lvar]}")) (|backOldPos| (($ (|Record| (|:| |mval| (|Matrix| |#1|)) (|:| |invmval| (|Matrix| |#1|)) (|:| |genIdeal| $))) "\\spad{backOldPos(genPos)} takes the result produced by \\spadfunFrom{generalPosition}{PolynomialIdeals} and performs the inverse transformation,{} returning the original ideal \\spad{backOldPos(generalPosition(I,{}listvar))} = \\spad{I}.")) (|generalPosition| (((|Record| (|:| |mval| (|Matrix| |#1|)) (|:| |invmval| (|Matrix| |#1|)) (|:| |genIdeal| $)) $ (|List| |#3|)) "\\spad{generalPosition(I,{}listvar)} perform a random linear transformation on the variables in \\spad{listvar} and returns the transformed ideal along with the change of basis matrix.")) (|groebner| (($ $) "\\spad{groebner(I)} returns a set of generators of \\spad{I} that are a Groebner basis for \\spad{I}.")) (|quotient| (($ $ |#4|) "\\spad{quotient(I,{}f)} computes the quotient of the ideal \\spad{I} by the principal ideal generated by the polynomial \\spad{f},{} \\spad{(I:(f))}.") (($ $ $) "\\spad{quotient(I,{}J)} computes the quotient of the ideals \\spad{I} and \\spad{J},{} \\spad{(I:J)}.")) (|intersect| (($ (|List| $)) "\\spad{intersect(LI)} computes the intersection of the list of ideals \\spad{LI}.") (($ $ $) "\\spad{intersect(I,{}J)} computes the intersection of the ideals \\spad{I} and \\spad{J}.")) (|zeroDim?| (((|Boolean|) $) "\\spad{zeroDim?(I)} tests if the ideal \\spad{I} is zero dimensional,{} \\spadignore{i.e.} all its associated primes are maximal,{} in the ring \\spad{F[lvar]},{} where lvar are the variables appearing in \\spad{I}") (((|Boolean|) $ (|List| |#3|)) "\\spad{zeroDim?(I,{}lvar)} tests if the ideal \\spad{I} is zero dimensional,{} \\spadignore{i.e.} all its associated primes are maximal,{} in the ring \\spad{F[lvar]}")) (|inRadical?| (((|Boolean|) |#4| $) "\\spad{inRadical?(f,{}I)} tests if some power of the polynomial \\spad{f} belongs to the ideal \\spad{I}.")) (|in?| (((|Boolean|) $ $) "\\spad{in?(I,{}J)} tests if the ideal \\spad{I} is contained in the ideal \\spad{J}.")) (|element?| (((|Boolean|) |#4| $) "\\spad{element?(f,{}I)} tests whether the polynomial \\spad{f} belongs to the ideal \\spad{I}.")) (|zero?| (((|Boolean|) $) "\\spad{zero?(I)} tests whether the ideal \\spad{I} is the zero ideal")) (|one?| (((|Boolean|) $) "\\spad{one?(I)} tests whether the ideal \\spad{I} is the unit ideal,{} \\spadignore{i.e.} contains 1.")) (+ (($ $ $) "\\spad{I+J} computes the ideal generated by the union of \\spad{I} and \\spad{J}.")) (** (($ $ (|NonNegativeInteger|)) "\\spad{I**n} computes the \\spad{n}th power of the ideal \\spad{I}.")) (* (($ $ $) "\\spad{I*J} computes the product of the ideal \\spad{I} and \\spad{J}.")))
NIL
((|HasCategory| |#3| (LIST (QUOTE -610) (QUOTE (-1168)))))
@@ -1990,7 +1990,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-787))))
(-515 S |mn|)
((|constructor| (NIL "\\indented{1}{Author: Michael Monagan July/87,{} modified \\spad{SMW} June/91} A FlexibleArray is the notion of an array intended to allow for growth at the end only. Hence the following efficient operations \\indented{2}{\\spad{append(x,{}a)} meaning append item \\spad{x} at the end of the array \\spad{a}} \\indented{2}{\\spad{delete(a,{}n)} meaning delete the last item from the array \\spad{a}} Flexible arrays support the other operations inherited from \\spadtype{ExtensibleLinearAggregate}. However,{} these are not efficient. Flexible arrays combine the \\spad{O(1)} access time property of arrays with growing and shrinking at the end in \\spad{O(1)} (average) time. This is done by using an ordinary array which may have zero or more empty slots at the end. When the array becomes full it is copied into a new larger (50\\% larger) array. Conversely,{} when the array becomes less than 1/2 full,{} it is copied into a smaller array. Flexible arrays provide for an efficient implementation of many data structures in particular heaps,{} stacks and sets.")) (|shrinkable| (((|Boolean|) (|Boolean|)) "\\spad{shrinkable(b)} sets the shrinkable attribute of flexible arrays to \\spad{b} and returns the previous value")) (|physicalLength!| (($ $ (|Integer|)) "\\spad{physicalLength!(x,{}n)} changes the physical length of \\spad{x} to be \\spad{n} and returns the new array.")) (|physicalLength| (((|NonNegativeInteger|) $) "\\spad{physicalLength(x)} returns the number of elements \\spad{x} can accomodate before growing")) (|flexibleArray| (($ (|List| |#1|)) "\\spad{flexibleArray(l)} creates a flexible array from the list of elements \\spad{l}")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
(-516)
((|constructor| (NIL "This domain represents AST for conditional expressions.")) (|elseBranch| (((|SpadAst|) $) "thenBranch(\\spad{e}) returns the `else-branch' of `e'.")) (|thenBranch| (((|SpadAst|) $) "\\spad{thenBranch(e)} returns the `then-branch' of `e'.")) (|condition| (((|SpadAst|) $) "\\spad{condition(e)} returns the condition of the if-expression `e'.")))
@@ -1998,28 +1998,28 @@ NIL
NIL
(-517 |p| |n|)
((|constructor| (NIL "InnerFiniteField(\\spad{p},{}\\spad{n}) implements finite fields with \\spad{p**n} elements where \\spad{p} is assumed prime but does not check. For a version which checks that \\spad{p} is prime,{} see \\spadtype{FiniteField}.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((-4037 (|HasCategory| (-579 |#1|) (QUOTE (-144))) (|HasCategory| (-579 |#1|) (QUOTE (-367)))) (|HasCategory| (-579 |#1|) (QUOTE (-146))) (|HasCategory| (-579 |#1|) (QUOTE (-367))) (|HasCategory| (-579 |#1|) (QUOTE (-144))))
(-518 R |mnRow| |mnCol| |Row| |Col|)
((|constructor| (NIL "\\indented{1}{This is an internal type which provides an implementation of} 2-dimensional arrays as PrimitiveArray\\spad{'s} of PrimitiveArray\\spad{'s}.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-519 S |mn|)
((|constructor| (NIL "\\spadtype{IndexedList} is a basic implementation of the functions in \\spadtype{ListAggregate},{} often using functions in the underlying LISP system. The second parameter to the constructor (\\spad{mn}) is the beginning index of the list. That is,{} if \\spad{l} is a list,{} then \\spad{elt(l,{}mn)} is the first value. This constructor is probably best viewed as the implementation of singly-linked lists that are addressable by index rather than as a mere wrapper for LISP lists.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
(-520 R |Row| |Col| M)
((|constructor| (NIL "\\spadtype{InnerMatrixLinearAlgebraFunctions} is an internal package which provides standard linear algebra functions on domains in \\spad{MatrixCategory}")) (|inverse| (((|Union| |#4| "failed") |#4|) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|generalizedInverse| ((|#4| |#4|) "\\spad{generalizedInverse(m)} returns the generalized (Moore--Penrose) inverse of the matrix \\spad{m},{} \\spadignore{i.e.} the matrix \\spad{h} such that m*h*m=h,{} h*m*h=m,{} \\spad{m*h} and \\spad{h*m} are both symmetric matrices.")) (|determinant| ((|#1| |#4|) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}. an error message is returned if the matrix is not square.")) (|nullSpace| (((|List| |#3|) |#4|) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) |#4|) "\\spad{nullity(m)} returns the mullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) |#4|) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| ((|#4| |#4|) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")))
NIL
-((|HasAttribute| |#3| (QUOTE -4403)))
+((|HasAttribute| |#3| (QUOTE -4404)))
(-521 R |Row| |Col| M QF |Row2| |Col2| M2)
((|constructor| (NIL "\\spadtype{InnerMatrixQuotientFieldFunctions} provides functions on matrices over an integral domain which involve the quotient field of that integral domain. The functions rowEchelon and inverse return matrices with entries in the quotient field.")) (|nullSpace| (((|List| |#3|) |#4|) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|inverse| (((|Union| |#8| "failed") |#4|) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square. Note: the result will have entries in the quotient field.")) (|rowEchelon| ((|#8| |#4|) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}. the result will have entries in the quotient field.")))
NIL
-((|HasAttribute| |#7| (QUOTE -4403)))
+((|HasAttribute| |#7| (QUOTE -4404)))
(-522 R |mnRow| |mnCol|)
((|constructor| (NIL "An \\spad{IndexedMatrix} is a matrix where the minimal row and column indices are parameters of the type. The domains Row and Col are both IndexedVectors. The index of the 'first' row may be obtained by calling the function \\spadfun{minRowIndex}. The index of the 'first' column may be obtained by calling the function \\spadfun{minColIndex}. The index of the first element of a 'Row' is the same as the index of the first column in a matrix and vice versa.")))
-((-4402 . T) (-4403 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-554))) (|HasAttribute| |#1| (QUOTE (-4404 "*"))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
+((-4403 . T) (-4404 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-554))) (|HasAttribute| |#1| (QUOTE (-4405 "*"))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-523)
((|constructor| (NIL "This domain represents an `import' of types.")) (|imports| (((|List| (|TypeAst|)) $) "\\spad{imports(x)} returns the list of imported types.")) (|coerce| (($ (|List| (|TypeAst|))) "ts::ImportAst constructs an ImportAst for the list if types `ts'.")))
NIL
@@ -2052,7 +2052,7 @@ NIL
((|constructor| (NIL "\\indented{2}{IndexedExponents of an ordered set of variables gives a representation} for the degree of polynomials in commuting variables. It gives an ordered pairing of non negative integer exponents with variables")))
NIL
NIL
-(-531 K -3197 |Par|)
+(-531 K -3196 |Par|)
((|constructor| (NIL "This package is the inner package to be used by NumericRealEigenPackage and NumericComplexEigenPackage for the computation of numeric eigenvalues and eigenvectors.")) (|innerEigenvectors| (((|List| (|Record| (|:| |outval| |#2|) (|:| |outmult| (|Integer|)) (|:| |outvect| (|List| (|Matrix| |#2|))))) (|Matrix| |#1|) |#3| (|Mapping| (|Factored| (|SparseUnivariatePolynomial| |#1|)) (|SparseUnivariatePolynomial| |#1|))) "\\spad{innerEigenvectors(m,{}eps,{}factor)} computes explicitly the eigenvalues and the correspondent eigenvectors of the matrix \\spad{m}. The parameter \\spad{eps} determines the type of the output,{} \\spad{factor} is the univariate factorizer to \\spad{br} used to reduce the characteristic polynomial into irreducible factors.")) (|solve1| (((|List| |#2|) (|SparseUnivariatePolynomial| |#1|) |#3|) "\\spad{solve1(pol,{} eps)} finds the roots of the univariate polynomial polynomial \\spad{pol} to precision eps. If \\spad{K} is \\spad{Fraction Integer} then only the real roots are returned,{} if \\spad{K} is \\spad{Complex Fraction Integer} then all roots are found.")) (|charpol| (((|SparseUnivariatePolynomial| |#1|) (|Matrix| |#1|)) "\\spad{charpol(m)} computes the characteristic polynomial of a matrix \\spad{m} with entries in \\spad{K}. This function returns a polynomial over \\spad{K},{} while the general one (that is in EiegenPackage) returns Fraction \\spad{P} \\spad{K}")))
NIL
NIL
@@ -2076,7 +2076,7 @@ NIL
((|constructor| (NIL "This package computes infinite products of univariate Taylor series over an integral domain of characteristic 0.")) (|generalInfiniteProduct| ((|#2| |#2| (|Integer|) (|Integer|)) "\\spad{generalInfiniteProduct(f(x),{}a,{}d)} computes \\spad{product(n=a,{}a+d,{}a+2*d,{}...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|oddInfiniteProduct| ((|#2| |#2|) "\\spad{oddInfiniteProduct(f(x))} computes \\spad{product(n=1,{}3,{}5...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|evenInfiniteProduct| ((|#2| |#2|) "\\spad{evenInfiniteProduct(f(x))} computes \\spad{product(n=2,{}4,{}6...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|infiniteProduct| ((|#2| |#2|) "\\spad{infiniteProduct(f(x))} computes \\spad{product(n=1,{}2,{}3...,{}f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")))
NIL
NIL
-(-537 K -3197 |Par|)
+(-537 K -3196 |Par|)
((|constructor| (NIL "This is an internal package for computing approximate solutions to systems of polynomial equations. The parameter \\spad{K} specifies the coefficient field of the input polynomials and must be either \\spad{Fraction(Integer)} or \\spad{Complex(Fraction Integer)}. The parameter \\spad{F} specifies where the solutions must lie and can be one of the following: \\spad{Float},{} \\spad{Fraction(Integer)},{} \\spad{Complex(Float)},{} \\spad{Complex(Fraction Integer)}. The last parameter specifies the type of the precision operand and must be either \\spad{Fraction(Integer)} or \\spad{Float}.")) (|makeEq| (((|List| (|Equation| (|Polynomial| |#2|))) (|List| |#2|) (|List| (|Symbol|))) "\\spad{makeEq(lsol,{}lvar)} returns a list of equations formed by corresponding members of \\spad{lvar} and \\spad{lsol}.")) (|innerSolve| (((|List| (|List| |#2|)) (|List| (|Polynomial| |#1|)) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|)) |#3|) "\\spad{innerSolve(lnum,{}lden,{}lvar,{}eps)} returns a list of solutions of the system of polynomials \\spad{lnum},{} with the side condition that none of the members of \\spad{lden} vanish identically on any solution. Each solution is expressed as a list corresponding to the list of variables in \\spad{lvar} and with precision specified by \\spad{eps}.")) (|innerSolve1| (((|List| |#2|) (|Polynomial| |#1|) |#3|) "\\spad{innerSolve1(p,{}eps)} returns the list of the zeros of the polynomial \\spad{p} with precision \\spad{eps}.") (((|List| |#2|) (|SparseUnivariatePolynomial| |#1|) |#3|) "\\spad{innerSolve1(up,{}eps)} returns the list of the zeros of the univariate polynomial \\spad{up} with precision \\spad{eps}.")))
NIL
NIL
@@ -2106,7 +2106,7 @@ NIL
NIL
(-544)
((|constructor| (NIL "An \\spad{IntegerNumberSystem} is a model for the integers.")) (|invmod| (($ $ $) "\\spad{invmod(a,{}b)},{} \\spad{0<=a<b>1},{} \\spad{(a,{}b)=1} means \\spad{1/a mod b}.")) (|powmod| (($ $ $ $) "\\spad{powmod(a,{}b,{}p)},{} \\spad{0<=a,{}b<p>1},{} means \\spad{a**b mod p}.")) (|mulmod| (($ $ $ $) "\\spad{mulmod(a,{}b,{}p)},{} \\spad{0<=a,{}b<p>1},{} means \\spad{a*b mod p}.")) (|submod| (($ $ $ $) "\\spad{submod(a,{}b,{}p)},{} \\spad{0<=a,{}b<p>1},{} means \\spad{a-b mod p}.")) (|addmod| (($ $ $ $) "\\spad{addmod(a,{}b,{}p)},{} \\spad{0<=a,{}b<p>1},{} means \\spad{a+b mod p}.")) (|mask| (($ $) "\\spad{mask(n)} returns \\spad{2**n-1} (an \\spad{n} bit mask).")) (|dec| (($ $) "\\spad{dec(x)} returns \\spad{x - 1}.")) (|inc| (($ $) "\\spad{inc(x)} returns \\spad{x + 1}.")) (|copy| (($ $) "\\spad{copy(n)} gives a copy of \\spad{n}.")) (|random| (($ $) "\\spad{random(a)} creates a random element from 0 to \\spad{n-1}.") (($) "\\spad{random()} creates a random element.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(n)} creates a rational number,{} or returns \"failed\" if this is not possible.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(n)} creates a rational number (see \\spadtype{Fraction Integer})..")) (|rational?| (((|Boolean|) $) "\\spad{rational?(n)} tests if \\spad{n} is a rational number (see \\spadtype{Fraction Integer}).")) (|symmetricRemainder| (($ $ $) "\\spad{symmetricRemainder(a,{}b)} (where \\spad{b > 1}) yields \\spad{r} where \\spad{ -b/2 <= r < b/2 }.")) (|positiveRemainder| (($ $ $) "\\spad{positiveRemainder(a,{}b)} (where \\spad{b > 1}) yields \\spad{r} where \\spad{0 <= r < b} and \\spad{r == a rem b}.")) (|bit?| (((|Boolean|) $ $) "\\spad{bit?(n,{}i)} returns \\spad{true} if and only if \\spad{i}-th bit of \\spad{n} is a 1.")) (|shift| (($ $ $) "\\spad{shift(a,{}i)} shift \\spad{a} by \\spad{i} digits.")) (|length| (($ $) "\\spad{length(a)} length of \\spad{a} in digits.")) (|base| (($) "\\spad{base()} returns the base for the operations of \\spad{IntegerNumberSystem}.")) (|multiplicativeValuation| ((|attribute|) "euclideanSize(a*b) returns \\spad{euclideanSize(a)*euclideanSize(b)}.")) (|even?| (((|Boolean|) $) "\\spad{even?(n)} returns \\spad{true} if and only if \\spad{n} is even.")) (|odd?| (((|Boolean|) $) "\\spad{odd?(n)} returns \\spad{true} if and only if \\spad{n} is odd.")))
-((-4400 . T) (-4401 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4401 . T) (-4402 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-545)
((|constructor| (NIL "This domain is a datatype for (signed) integer values of precision 16 bits.")))
@@ -2122,13 +2122,13 @@ NIL
NIL
(-548 |Key| |Entry| |addDom|)
((|constructor| (NIL "This domain is used to provide a conditional \"add\" domain for the implementation of \\spadtype{Table}.")))
-((-4402 . T) (-4403 . T))
-((-12 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2694) (|devaluate| |#2|)))))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))))
-(-549 R -3197)
+((-4403 . T) (-4404 . T))
+((-12 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2693) (|devaluate| |#2|)))))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))))
+(-549 R -3196)
((|constructor| (NIL "This package provides functions for the integration of algebraic integrands over transcendental functions.")) (|algint| (((|IntegrationResult| |#2|) |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Mapping| (|SparseUnivariatePolynomial| |#2|) (|SparseUnivariatePolynomial| |#2|))) "\\spad{algint(f,{} x,{} y,{} d)} returns the integral of \\spad{f(x,{}y)dx} where \\spad{y} is an algebraic function of \\spad{x}; \\spad{d} is the derivation to use on \\spad{k[x]}.")))
NIL
NIL
-(-550 R0 -3197 UP UPUP R)
+(-550 R0 -3196 UP UPUP R)
((|constructor| (NIL "This package provides functions for integrating a function on an algebraic curve.")) (|palginfieldint| (((|Union| |#5| "failed") |#5| (|Mapping| |#3| |#3|)) "\\spad{palginfieldint(f,{} d)} returns an algebraic function \\spad{g} such that \\spad{dg = f} if such a \\spad{g} exists,{} \"failed\" otherwise. Argument \\spad{f} must be a pure algebraic function.")) (|palgintegrate| (((|IntegrationResult| |#5|) |#5| (|Mapping| |#3| |#3|)) "\\spad{palgintegrate(f,{} d)} integrates \\spad{f} with respect to the derivation \\spad{d}. Argument \\spad{f} must be a pure algebraic function.")) (|algintegrate| (((|IntegrationResult| |#5|) |#5| (|Mapping| |#3| |#3|)) "\\spad{algintegrate(f,{} d)} integrates \\spad{f} with respect to the derivation \\spad{d}.")))
NIL
NIL
@@ -2138,7 +2138,7 @@ NIL
NIL
(-552 R)
((|constructor| (NIL "\\indented{1}{+ Author: Mike Dewar} + Date Created: November 1996 + Date Last Updated: + Basic Functions: + Related Constructors: + Also See: + AMS Classifications: + Keywords: + References: + Description: + This category implements of interval arithmetic and transcendental + functions over intervals.")) (|contains?| (((|Boolean|) $ |#1|) "\\spad{contains?(i,{}f)} returns \\spad{true} if \\axiom{\\spad{f}} is contained within the interval \\axiom{\\spad{i}},{} \\spad{false} otherwise.")) (|negative?| (((|Boolean|) $) "\\spad{negative?(u)} returns \\axiom{\\spad{true}} if every element of \\spad{u} is negative,{} \\axiom{\\spad{false}} otherwise.")) (|positive?| (((|Boolean|) $) "\\spad{positive?(u)} returns \\axiom{\\spad{true}} if every element of \\spad{u} is positive,{} \\axiom{\\spad{false}} otherwise.")) (|width| ((|#1| $) "\\spad{width(u)} returns \\axiom{sup(\\spad{u}) - inf(\\spad{u})}.")) (|sup| ((|#1| $) "\\spad{sup(u)} returns the supremum of \\axiom{\\spad{u}}.")) (|inf| ((|#1| $) "\\spad{inf(u)} returns the infinum of \\axiom{\\spad{u}}.")) (|qinterval| (($ |#1| |#1|) "\\spad{qinterval(inf,{}sup)} creates a new interval \\axiom{[\\spad{inf},{}\\spad{sup}]},{} without checking the ordering on the elements.")) (|interval| (($ (|Fraction| (|Integer|))) "\\spad{interval(f)} creates a new interval around \\spad{f}.") (($ |#1|) "\\spad{interval(f)} creates a new interval around \\spad{f}.") (($ |#1| |#1|) "\\spad{interval(inf,{}sup)} creates a new interval,{} either \\axiom{[\\spad{inf},{}\\spad{sup}]} if \\axiom{\\spad{inf} \\spad{<=} \\spad{sup}} or \\axiom{[\\spad{sup},{}in]} otherwise.")))
-((-1406 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-1406 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-553 S)
((|constructor| (NIL "The category of commutative integral domains,{} \\spadignore{i.e.} commutative rings with no zero divisors. \\blankline Conditional attributes: \\indented{2}{canonicalUnitNormal\\tab{20}the canonical field is the same for all associates} \\indented{2}{canonicalsClosed\\tab{20}the product of two canonicals is itself canonical}")) (|unit?| (((|Boolean|) $) "\\spad{unit?(x)} tests whether \\spad{x} is a unit,{} \\spadignore{i.e.} is invertible.")) (|associates?| (((|Boolean|) $ $) "\\spad{associates?(x,{}y)} tests whether \\spad{x} and \\spad{y} are associates,{} \\spadignore{i.e.} differ by a unit factor.")) (|unitCanonical| (($ $) "\\spad{unitCanonical(x)} returns \\spad{unitNormal(x).canonical}.")) (|unitNormal| (((|Record| (|:| |unit| $) (|:| |canonical| $) (|:| |associate| $)) $) "\\spad{unitNormal(x)} tries to choose a canonical element from the associate class of \\spad{x}. The attribute canonicalUnitNormal,{} if asserted,{} means that the \"canonical\" element is the same across all associates of \\spad{x} if \\spad{unitNormal(x) = [u,{}c,{}a]} then \\spad{u*c = x},{} \\spad{a*u = 1}.")) (|exquo| (((|Union| $ "failed") $ $) "\\spad{exquo(a,{}b)} either returns an element \\spad{c} such that \\spad{c*b=a} or \"failed\" if no such element can be found.")))
@@ -2146,9 +2146,9 @@ NIL
NIL
(-554)
((|constructor| (NIL "The category of commutative integral domains,{} \\spadignore{i.e.} commutative rings with no zero divisors. \\blankline Conditional attributes: \\indented{2}{canonicalUnitNormal\\tab{20}the canonical field is the same for all associates} \\indented{2}{canonicalsClosed\\tab{20}the product of two canonicals is itself canonical}")) (|unit?| (((|Boolean|) $) "\\spad{unit?(x)} tests whether \\spad{x} is a unit,{} \\spadignore{i.e.} is invertible.")) (|associates?| (((|Boolean|) $ $) "\\spad{associates?(x,{}y)} tests whether \\spad{x} and \\spad{y} are associates,{} \\spadignore{i.e.} differ by a unit factor.")) (|unitCanonical| (($ $) "\\spad{unitCanonical(x)} returns \\spad{unitNormal(x).canonical}.")) (|unitNormal| (((|Record| (|:| |unit| $) (|:| |canonical| $) (|:| |associate| $)) $) "\\spad{unitNormal(x)} tries to choose a canonical element from the associate class of \\spad{x}. The attribute canonicalUnitNormal,{} if asserted,{} means that the \"canonical\" element is the same across all associates of \\spad{x} if \\spad{unitNormal(x) = [u,{}c,{}a]} then \\spad{u*c = x},{} \\spad{a*u = 1}.")) (|exquo| (((|Union| $ "failed") $ $) "\\spad{exquo(a,{}b)} either returns an element \\spad{c} such that \\spad{c*b=a} or \"failed\" if no such element can be found.")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
-(-555 R -3197)
+(-555 R -3196)
((|constructor| (NIL "This package provides functions for integration,{} limited integration,{} extended integration and the risch differential equation for elemntary functions.")) (|lfextlimint| (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Symbol|) (|Kernel| |#2|) (|List| (|Kernel| |#2|))) "\\spad{lfextlimint(f,{}x,{}k,{}[k1,{}...,{}kn])} returns functions \\spad{[h,{} c]} such that \\spad{dh/dx = f - c dk/dx}. Value \\spad{h} is looked for in a field containing \\spad{f} and \\spad{k1},{}...,{}\\spad{kn} (the \\spad{ki}\\spad{'s} must be logs).")) (|lfintegrate| (((|IntegrationResult| |#2|) |#2| (|Symbol|)) "\\spad{lfintegrate(f,{} x)} = \\spad{g} such that \\spad{dg/dx = f}.")) (|lfinfieldint| (((|Union| |#2| "failed") |#2| (|Symbol|)) "\\spad{lfinfieldint(f,{} x)} returns a function \\spad{g} such that \\spad{dg/dx = f} if \\spad{g} exists,{} \"failed\" otherwise.")) (|lflimitedint| (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|Symbol|) (|List| |#2|)) "\\spad{lflimitedint(f,{}x,{}[g1,{}...,{}gn])} returns functions \\spad{[h,{}[[\\spad{ci},{} \\spad{gi}]]]} such that the \\spad{gi}\\spad{'s} are among \\spad{[g1,{}...,{}gn]},{} and \\spad{d(h+sum(\\spad{ci} log(\\spad{gi})))/dx = f},{} if possible,{} \"failed\" otherwise.")) (|lfextendedint| (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Symbol|) |#2|) "\\spad{lfextendedint(f,{} x,{} g)} returns functions \\spad{[h,{} c]} such that \\spad{dh/dx = f - cg},{} if (\\spad{h},{} \\spad{c}) exist,{} \"failed\" otherwise.")))
NIL
NIL
@@ -2160,7 +2160,7 @@ NIL
((|constructor| (NIL "\\blankline")) (|entry| (((|Record| (|:| |endPointContinuity| (|Union| (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{entry(n)} \\undocumented{}")) (|entries| (((|List| (|Record| (|:| |key| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |endPointContinuity| (|Union| (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $) "\\spad{entries(x)} \\undocumented{}")) (|showAttributes| (((|Union| (|Record| (|:| |endPointContinuity| (|Union| (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{showAttributes(x)} \\undocumented{}")) (|insert!| (($ (|Record| (|:| |key| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |endPointContinuity| (|Union| (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) "\\spad{insert!(r)} inserts an entry \\spad{r} into theIFTable")) (|fTable| (($ (|List| (|Record| (|:| |key| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |endPointContinuity| (|Union| (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) "\\spad{fTable(l)} creates a functions table from the elements of \\spad{l}.")) (|keys| (((|List| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) $) "\\spad{keys(f)} returns the list of keys of \\spad{f}")) (|clearTheFTable| (((|Void|)) "\\spad{clearTheFTable()} clears the current table of functions.")) (|showTheFTable| (($) "\\spad{showTheFTable()} returns the current table of functions.")))
NIL
NIL
-(-558 R -3197 L)
+(-558 R -3196 L)
((|constructor| (NIL "This internal package rationalises integrands on curves of the form: \\indented{2}{\\spad{y\\^2 = a x\\^2 + b x + c}} \\indented{2}{\\spad{y\\^2 = (a x + b) / (c x + d)}} \\indented{2}{\\spad{f(x,{} y) = 0} where \\spad{f} has degree 1 in \\spad{x}} The rationalization is done for integration,{} limited integration,{} extended integration and the risch differential equation.")) (|palgLODE0| (((|Record| (|:| |particular| (|Union| |#2| "failed")) (|:| |basis| (|List| |#2|))) |#3| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palgLODE0(op,{}g,{}x,{}y,{}z,{}t,{}c)} returns the solution of \\spad{op f = g} Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,{}y)dx = c f(t,{}y) dy}; \\spad{c} and \\spad{t} are rational functions of \\spad{y}.") (((|Record| (|:| |particular| (|Union| |#2| "failed")) (|:| |basis| (|List| |#2|))) |#3| |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palgLODE0(op,{} g,{} x,{} y,{} d,{} p)} returns the solution of \\spad{op f = g}. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2y(x)\\^2 = P(x)}.")) (|lift| (((|SparseUnivariatePolynomial| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) (|SparseUnivariatePolynomial| |#2|) (|Kernel| |#2|)) "\\spad{lift(u,{}k)} \\undocumented")) (|multivariate| ((|#2| (|SparseUnivariatePolynomial| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) (|Kernel| |#2|) |#2|) "\\spad{multivariate(u,{}k,{}f)} \\undocumented")) (|univariate| (((|SparseUnivariatePolynomial| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|SparseUnivariatePolynomial| |#2|)) "\\spad{univariate(f,{}k,{}k,{}p)} \\undocumented")) (|palgRDE0| (((|Union| |#2| "failed") |#2| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Mapping| (|Union| |#2| "failed") |#2| |#2| (|Symbol|)) (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palgRDE0(f,{} g,{} x,{} y,{} foo,{} t,{} c)} returns a function \\spad{z(x,{}y)} such that \\spad{dz/dx + n * df/dx z(x,{}y) = g(x,{}y)} if such a \\spad{z} exists,{} and \"failed\" otherwise. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,{}y)dx = c f(t,{}y) dy}; \\spad{c} and \\spad{t} are rational functions of \\spad{y}. Argument \\spad{foo},{} called by \\spad{foo(a,{} b,{} x)},{} is a function that solves \\spad{du/dx + n * da/dx u(x) = u(x)} for an unknown \\spad{u(x)} not involving \\spad{y}.") (((|Union| |#2| "failed") |#2| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Mapping| (|Union| |#2| "failed") |#2| |#2| (|Symbol|)) |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palgRDE0(f,{} g,{} x,{} y,{} foo,{} d,{} p)} returns a function \\spad{z(x,{}y)} such that \\spad{dz/dx + n * df/dx z(x,{}y) = g(x,{}y)} if such a \\spad{z} exists,{} and \"failed\" otherwise. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2y(x)\\^2 = P(x)}. Argument \\spad{foo},{} called by \\spad{foo(a,{} b,{} x)},{} is a function that solves \\spad{du/dx + n * da/dx u(x) = u(x)} for an unknown \\spad{u(x)} not involving \\spad{y}.")) (|palglimint0| (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|List| |#2|) (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palglimint0(f,{} x,{} y,{} [u1,{}...,{}un],{} z,{} t,{} c)} returns functions \\spad{[h,{}[[\\spad{ci},{} \\spad{ui}]]]} such that the \\spad{ui}\\spad{'s} are among \\spad{[u1,{}...,{}un]} and \\spad{d(h + sum(\\spad{ci} log(\\spad{ui})))/dx = f(x,{}y)} if such functions exist,{} and \"failed\" otherwise. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,{}y)dx = c f(t,{}y) dy}; \\spad{c} and \\spad{t} are rational functions of \\spad{y}.") (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|List| |#2|) |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palglimint0(f,{} x,{} y,{} [u1,{}...,{}un],{} d,{} p)} returns functions \\spad{[h,{}[[\\spad{ci},{} \\spad{ui}]]]} such that the \\spad{ui}\\spad{'s} are among \\spad{[u1,{}...,{}un]} and \\spad{d(h + sum(\\spad{ci} log(\\spad{ui})))/dx = f(x,{}y)} if such functions exist,{} and \"failed\" otherwise. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2y(x)\\^2 = P(x)}.")) (|palgextint0| (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palgextint0(f,{} x,{} y,{} g,{} z,{} t,{} c)} returns functions \\spad{[h,{} d]} such that \\spad{dh/dx = f(x,{}y) - d g},{} where \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,{}y)dx = c f(t,{}y) dy},{} and \\spad{c} and \\spad{t} are rational functions of \\spad{y}. Argument \\spad{z} is a dummy variable not appearing in \\spad{f(x,{}y)}. The operation returns \"failed\" if no such functions exist.") (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2| |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palgextint0(f,{} x,{} y,{} g,{} d,{} p)} returns functions \\spad{[h,{} c]} such that \\spad{dh/dx = f(x,{}y) - c g},{} where \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2 y(x)\\^2 = P(x)},{} or \"failed\" if no such functions exist.")) (|palgint0| (((|IntegrationResult| |#2|) |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palgint0(f,{} x,{} y,{} z,{} t,{} c)} returns the integral of \\spad{f(x,{}y)dx} where \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,{}y)dx = c f(t,{}y) dy}; \\spad{c} and \\spad{t} are rational functions of \\spad{y}. Argument \\spad{z} is a dummy variable not appearing in \\spad{f(x,{}y)}.") (((|IntegrationResult| |#2|) |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palgint0(f,{} x,{} y,{} d,{} p)} returns the integral of \\spad{f(x,{}y)dx} where \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2 y(x)\\^2 = P(x)}.")))
NIL
((|HasCategory| |#3| (LIST (QUOTE -650) (|devaluate| |#2|))))
@@ -2168,31 +2168,31 @@ NIL
((|constructor| (NIL "This package provides various number theoretic functions on the integers.")) (|sumOfKthPowerDivisors| (((|Integer|) (|Integer|) (|NonNegativeInteger|)) "\\spad{sumOfKthPowerDivisors(n,{}k)} returns the sum of the \\spad{k}th powers of the integers between 1 and \\spad{n} (inclusive) which divide \\spad{n}. the sum of the \\spad{k}th powers of the divisors of \\spad{n} is often denoted by \\spad{sigma_k(n)}.")) (|sumOfDivisors| (((|Integer|) (|Integer|)) "\\spad{sumOfDivisors(n)} returns the sum of the integers between 1 and \\spad{n} (inclusive) which divide \\spad{n}. The sum of the divisors of \\spad{n} is often denoted by \\spad{sigma(n)}.")) (|numberOfDivisors| (((|Integer|) (|Integer|)) "\\spad{numberOfDivisors(n)} returns the number of integers between 1 and \\spad{n} (inclusive) which divide \\spad{n}. The number of divisors of \\spad{n} is often denoted by \\spad{tau(n)}.")) (|moebiusMu| (((|Integer|) (|Integer|)) "\\spad{moebiusMu(n)} returns the Moebius function \\spad{mu(n)}. \\spad{mu(n)} is either \\spad{-1},{}0 or 1 as follows: \\spad{mu(n) = 0} if \\spad{n} is divisible by a square > 1,{} \\spad{mu(n) = (-1)^k} if \\spad{n} is square-free and has \\spad{k} distinct prime divisors.")) (|legendre| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{legendre(a,{}p)} returns the Legendre symbol \\spad{L(a/p)}. \\spad{L(a/p) = (-1)**((p-1)/2) mod p} (\\spad{p} prime),{} which is 0 if \\spad{a} is 0,{} 1 if \\spad{a} is a quadratic residue \\spad{mod p} and \\spad{-1} otherwise. Note: because the primality test is expensive,{} if it is known that \\spad{p} is prime then use \\spad{jacobi(a,{}p)}.")) (|jacobi| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{jacobi(a,{}b)} returns the Jacobi symbol \\spad{J(a/b)}. When \\spad{b} is odd,{} \\spad{J(a/b) = product(L(a/p) for p in factor b )}. Note: by convention,{} 0 is returned if \\spad{gcd(a,{}b) ~= 1}. Iterative \\spad{O(log(b)^2)} version coded by Michael Monagan June 1987.")) (|harmonic| (((|Fraction| (|Integer|)) (|Integer|)) "\\spad{harmonic(n)} returns the \\spad{n}th harmonic number. This is \\spad{H[n] = sum(1/k,{}k=1..n)}.")) (|fibonacci| (((|Integer|) (|Integer|)) "\\spad{fibonacci(n)} returns the \\spad{n}th Fibonacci number. the Fibonacci numbers \\spad{F[n]} are defined by \\spad{F[0] = F[1] = 1} and \\spad{F[n] = F[n-1] + F[n-2]}. The algorithm has running time \\spad{O(log(n)^3)}. Reference: Knuth,{} The Art of Computer Programming Vol 2,{} Semi-Numerical Algorithms.")) (|eulerPhi| (((|Integer|) (|Integer|)) "\\spad{eulerPhi(n)} returns the number of integers between 1 and \\spad{n} (including 1) which are relatively prime to \\spad{n}. This is the Euler phi function \\spad{\\phi(n)} is also called the totient function.")) (|euler| (((|Integer|) (|Integer|)) "\\spad{euler(n)} returns the \\spad{n}th Euler number. This is \\spad{2^n E(n,{}1/2)},{} where \\spad{E(n,{}x)} is the \\spad{n}th Euler polynomial.")) (|divisors| (((|List| (|Integer|)) (|Integer|)) "\\spad{divisors(n)} returns a list of the divisors of \\spad{n}.")) (|chineseRemainder| (((|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{chineseRemainder(x1,{}m1,{}x2,{}m2)} returns \\spad{w},{} where \\spad{w} is such that \\spad{w = x1 mod m1} and \\spad{w = x2 mod m2}. Note: \\spad{m1} and \\spad{m2} must be relatively prime.")) (|bernoulli| (((|Fraction| (|Integer|)) (|Integer|)) "\\spad{bernoulli(n)} returns the \\spad{n}th Bernoulli number. this is \\spad{B(n,{}0)},{} where \\spad{B(n,{}x)} is the \\spad{n}th Bernoulli polynomial.")))
NIL
NIL
-(-560 -3197 UP UPUP R)
+(-560 -3196 UP UPUP R)
((|constructor| (NIL "algebraic Hermite redution.")) (|HermiteIntegrate| (((|Record| (|:| |answer| |#4|) (|:| |logpart| |#4|)) |#4| (|Mapping| |#2| |#2|)) "\\spad{HermiteIntegrate(f,{} ')} returns \\spad{[g,{}h]} such that \\spad{f = g' + h} and \\spad{h} has a only simple finite normal poles.")))
NIL
NIL
-(-561 -3197 UP)
+(-561 -3196 UP)
((|constructor| (NIL "Hermite integration,{} transcendental case.")) (|HermiteIntegrate| (((|Record| (|:| |answer| (|Fraction| |#2|)) (|:| |logpart| (|Fraction| |#2|)) (|:| |specpart| (|Fraction| |#2|)) (|:| |polypart| |#2|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{HermiteIntegrate(f,{} D)} returns \\spad{[g,{} h,{} s,{} p]} such that \\spad{f = Dg + h + s + p},{} \\spad{h} has a squarefree denominator normal \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} and all the squarefree factors of the denominator of \\spad{s} are special \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D}. Furthermore,{} \\spad{h} and \\spad{s} have no polynomial parts. \\spad{D} is the derivation to use on \\spadtype{UP}.")))
NIL
NIL
(-562)
((|constructor| (NIL "\\spadtype{Integer} provides the domain of arbitrary precision integers.")) (|infinite| ((|attribute|) "nextItem never returns \"failed\".")) (|noetherian| ((|attribute|) "ascending chain condition on ideals.")) (|canonicalsClosed| ((|attribute|) "two positives multiply to give positive.")) (|canonical| ((|attribute|) "mathematical equality is data structure equality.")) (|random| (($ $) "\\spad{random(n)} returns a random integer from 0 to \\spad{n-1}.")))
-((-4384 . T) (-4390 . T) (-4394 . T) (-4389 . T) (-4400 . T) (-4401 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4385 . T) (-4391 . T) (-4395 . T) (-4390 . T) (-4401 . T) (-4402 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-563)
((|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|))) (|:| |extra| (|Result|))) (|NumericalIntegrationProblem|) (|RoutinesTable|)) "\\spad{measure(prob,{}R)} is a top level ANNA function for identifying the most appropriate numerical routine from those in the routines table provided for solving the numerical integration problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} listed in \\axiom{\\spad{R}} of \\axiom{category} \\axiomType{NumericalIntegrationCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information.") (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|))) (|:| |extra| (|Result|))) (|NumericalIntegrationProblem|)) "\\spad{measure(prob)} is a top level ANNA function for identifying the most appropriate numerical routine for solving the numerical integration problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} of \\axiom{category} \\axiomType{NumericalIntegrationCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information.")) (|integrate| (((|Union| (|Result|) "failed") (|Expression| (|Float|)) (|SegmentBinding| (|OrderedCompletion| (|Float|))) (|Symbol|)) "\\spad{integrate(exp,{} x = a..b,{} numerical)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range,{} {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.\\newline \\blankline Default values for the absolute and relative error are used. \\blankline It is an error if the last argument is not {\\spad{\\tt} numerical}.") (((|Union| (|Result|) "failed") (|Expression| (|Float|)) (|SegmentBinding| (|OrderedCompletion| (|Float|))) (|String|)) "\\spad{integrate(exp,{} x = a..b,{} \"numerical\")} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range,{} {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.\\newline \\blankline Default values for the absolute and relative error are used. \\blankline It is an error of the last argument is not {\\spad{\\tt} \"numerical\"}.") (((|Result|) (|Expression| (|Float|)) (|List| (|Segment| (|OrderedCompletion| (|Float|)))) (|Float|) (|Float|) (|RoutinesTable|)) "\\spad{integrate(exp,{} [a..b,{}c..d,{}...],{} epsabs,{} epsrel,{} routines)} is a top level ANNA function to integrate a multivariate expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given set of ranges to the required absolute and relative accuracy,{} using the routines available in the RoutinesTable provided. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.") (((|Result|) (|Expression| (|Float|)) (|List| (|Segment| (|OrderedCompletion| (|Float|)))) (|Float|) (|Float|)) "\\spad{integrate(exp,{} [a..b,{}c..d,{}...],{} epsabs,{} epsrel)} is a top level ANNA function to integrate a multivariate expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given set of ranges to the required absolute and relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.") (((|Result|) (|Expression| (|Float|)) (|List| (|Segment| (|OrderedCompletion| (|Float|)))) (|Float|)) "\\spad{integrate(exp,{} [a..b,{}c..d,{}...],{} epsrel)} is a top level ANNA function to integrate a multivariate expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given set of ranges to the required relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}. \\blankline If epsrel = 0,{} a default absolute accuracy is used.") (((|Result|) (|Expression| (|Float|)) (|List| (|Segment| (|OrderedCompletion| (|Float|))))) "\\spad{integrate(exp,{} [a..b,{}c..d,{}...])} is a top level ANNA function to integrate a multivariate expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given set of ranges. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}. \\blankline Default values for the absolute and relative error are used.") (((|Result|) (|Expression| (|Float|)) (|Segment| (|OrderedCompletion| (|Float|)))) "\\spad{integrate(exp,{} a..b)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}. \\blankline Default values for the absolute and relative error are used.") (((|Result|) (|Expression| (|Float|)) (|Segment| (|OrderedCompletion| (|Float|))) (|Float|)) "\\spad{integrate(exp,{} a..b,{} epsrel)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}} to the required relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}. \\blankline If epsrel = 0,{} a default absolute accuracy is used.") (((|Result|) (|Expression| (|Float|)) (|Segment| (|OrderedCompletion| (|Float|))) (|Float|) (|Float|)) "\\spad{integrate(exp,{} a..b,{} epsabs,{} epsrel)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}} to the required absolute and relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.") (((|Result|) (|NumericalIntegrationProblem|)) "\\spad{integrate(IntegrationProblem)} is a top level ANNA function to integrate an expression over a given range or ranges to the required absolute and relative accuracy. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.") (((|Result|) (|Expression| (|Float|)) (|Segment| (|OrderedCompletion| (|Float|))) (|Float|) (|Float|) (|RoutinesTable|)) "\\spad{integrate(exp,{} a..b,{} epsrel,{} routines)} is a top level ANNA function to integrate an expression,{} {\\spad{\\tt} \\spad{exp}},{} over a given range {\\spad{\\tt} a} to {\\spad{\\tt} \\spad{b}} to the required absolute and relative accuracy using the routines available in the RoutinesTable provided. \\blankline It iterates over the \\axiom{domains} of \\axiomType{NumericalIntegrationCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline It then performs the integration of the given expression on that \\axiom{domain}.")))
NIL
NIL
-(-564 R -3197 L)
+(-564 R -3196 L)
((|constructor| (NIL "This package provides functions for integration,{} limited integration,{} extended integration and the risch differential equation for pure algebraic integrands.")) (|palgLODE| (((|Record| (|:| |particular| (|Union| |#2| "failed")) (|:| |basis| (|List| |#2|))) |#3| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Symbol|)) "\\spad{palgLODE(op,{} g,{} kx,{} y,{} x)} returns the solution of \\spad{op f = g}. \\spad{y} is an algebraic function of \\spad{x}.")) (|palgRDE| (((|Union| |#2| "failed") |#2| |#2| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Mapping| (|Union| |#2| "failed") |#2| |#2| (|Symbol|))) "\\spad{palgRDE(nfp,{} f,{} g,{} x,{} y,{} foo)} returns a function \\spad{z(x,{}y)} such that \\spad{dz/dx + n * df/dx z(x,{}y) = g(x,{}y)} if such a \\spad{z} exists,{} \"failed\" otherwise; \\spad{y} is an algebraic function of \\spad{x}; \\spad{foo(a,{} b,{} x)} is a function that solves \\spad{du/dx + n * da/dx u(x) = u(x)} for an unknown \\spad{u(x)} not involving \\spad{y}. \\spad{nfp} is \\spad{n * df/dx}.")) (|palglimint| (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|List| |#2|)) "\\spad{palglimint(f,{} x,{} y,{} [u1,{}...,{}un])} returns functions \\spad{[h,{}[[\\spad{ci},{} \\spad{ui}]]]} such that the \\spad{ui}\\spad{'s} are among \\spad{[u1,{}...,{}un]} and \\spad{d(h + sum(\\spad{ci} log(\\spad{ui})))/dx = f(x,{}y)} if such functions exist,{} \"failed\" otherwise; \\spad{y} is an algebraic function of \\spad{x}.")) (|palgextint| (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2|) "\\spad{palgextint(f,{} x,{} y,{} g)} returns functions \\spad{[h,{} c]} such that \\spad{dh/dx = f(x,{}y) - c g},{} where \\spad{y} is an algebraic function of \\spad{x}; returns \"failed\" if no such functions exist.")) (|palgint| (((|IntegrationResult| |#2|) |#2| (|Kernel| |#2|) (|Kernel| |#2|)) "\\spad{palgint(f,{} x,{} y)} returns the integral of \\spad{f(x,{}y)dx} where \\spad{y} is an algebraic function of \\spad{x}.")))
NIL
((|HasCategory| |#3| (LIST (QUOTE -650) (|devaluate| |#2|))))
-(-565 R -3197)
+(-565 R -3196)
((|constructor| (NIL "\\spadtype{PatternMatchIntegration} provides functions that use the pattern matcher to find some indefinite and definite integrals involving special functions and found in the litterature.")) (|pmintegrate| (((|Union| |#2| "failed") |#2| (|Symbol|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|)) "\\spad{pmintegrate(f,{} x = a..b)} returns the integral of \\spad{f(x)dx} from a to \\spad{b} if it can be found by the built-in pattern matching rules.") (((|Union| (|Record| (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (|Symbol|)) "\\spad{pmintegrate(f,{} x)} returns either \"failed\" or \\spad{[g,{}h]} such that \\spad{integrate(f,{}x) = g + integrate(h,{}x)}.")) (|pmComplexintegrate| (((|Union| (|Record| (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (|Symbol|)) "\\spad{pmComplexintegrate(f,{} x)} returns either \"failed\" or \\spad{[g,{}h]} such that \\spad{integrate(f,{}x) = g + integrate(h,{}x)}. It only looks for special complex integrals that pmintegrate does not return.")) (|splitConstant| (((|Record| (|:| |const| |#2|) (|:| |nconst| |#2|)) |#2| (|Symbol|)) "\\spad{splitConstant(f,{} x)} returns \\spad{[c,{} g]} such that \\spad{f = c * g} and \\spad{c} does not involve \\spad{t}.")))
NIL
((-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-1131)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-625)))))
-(-566 -3197 UP)
+(-566 -3196 UP)
((|constructor| (NIL "This package provides functions for the base case of the Risch algorithm.")) (|limitedint| (((|Union| (|Record| (|:| |mainpart| (|Fraction| |#2|)) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| |#2|)) (|:| |logand| (|Fraction| |#2|)))))) "failed") (|Fraction| |#2|) (|List| (|Fraction| |#2|))) "\\spad{limitedint(f,{} [g1,{}...,{}gn])} returns fractions \\spad{[h,{}[[\\spad{ci},{} \\spad{gi}]]]} such that the \\spad{gi}\\spad{'s} are among \\spad{[g1,{}...,{}gn]},{} \\spad{ci' = 0},{} and \\spad{(h+sum(\\spad{ci} log(\\spad{gi})))' = f},{} if possible,{} \"failed\" otherwise.")) (|extendedint| (((|Union| (|Record| (|:| |ratpart| (|Fraction| |#2|)) (|:| |coeff| (|Fraction| |#2|))) "failed") (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{extendedint(f,{} g)} returns fractions \\spad{[h,{} c]} such that \\spad{c' = 0} and \\spad{h' = f - cg},{} if \\spad{(h,{} c)} exist,{} \"failed\" otherwise.")) (|infieldint| (((|Union| (|Fraction| |#2|) "failed") (|Fraction| |#2|)) "\\spad{infieldint(f)} returns \\spad{g} such that \\spad{g' = f} or \"failed\" if the integral of \\spad{f} is not a rational function.")) (|integrate| (((|IntegrationResult| (|Fraction| |#2|)) (|Fraction| |#2|)) "\\spad{integrate(f)} returns \\spad{g} such that \\spad{g' = f}.")))
NIL
NIL
@@ -2200,27 +2200,27 @@ NIL
((|constructor| (NIL "Provides integer testing and retraction functions. Date Created: March 1990 Date Last Updated: 9 April 1991")) (|integerIfCan| (((|Union| (|Integer|) "failed") |#1|) "\\spad{integerIfCan(x)} returns \\spad{x} as an integer,{} \"failed\" if \\spad{x} is not an integer.")) (|integer?| (((|Boolean|) |#1|) "\\spad{integer?(x)} is \\spad{true} if \\spad{x} is an integer,{} \\spad{false} otherwise.")) (|integer| (((|Integer|) |#1|) "\\spad{integer(x)} returns \\spad{x} as an integer; error if \\spad{x} is not an integer.")))
NIL
NIL
-(-568 -3197)
+(-568 -3196)
((|constructor| (NIL "This package provides functions for the integration of rational functions.")) (|extendedIntegrate| (((|Union| (|Record| (|:| |ratpart| (|Fraction| (|Polynomial| |#1|))) (|:| |coeff| (|Fraction| (|Polynomial| |#1|)))) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|) (|Fraction| (|Polynomial| |#1|))) "\\spad{extendedIntegrate(f,{} x,{} g)} returns fractions \\spad{[h,{} c]} such that \\spad{dc/dx = 0} and \\spad{dh/dx = f - cg},{} if \\spad{(h,{} c)} exist,{} \"failed\" otherwise.")) (|limitedIntegrate| (((|Union| (|Record| (|:| |mainpart| (|Fraction| (|Polynomial| |#1|))) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| (|Polynomial| |#1|))) (|:| |logand| (|Fraction| (|Polynomial| |#1|))))))) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|) (|List| (|Fraction| (|Polynomial| |#1|)))) "\\spad{limitedIntegrate(f,{} x,{} [g1,{}...,{}gn])} returns fractions \\spad{[h,{} [[\\spad{ci},{}\\spad{gi}]]]} such that the \\spad{gi}\\spad{'s} are among \\spad{[g1,{}...,{}gn]},{} \\spad{dci/dx = 0},{} and \\spad{d(h + sum(\\spad{ci} log(\\spad{gi})))/dx = f} if possible,{} \"failed\" otherwise.")) (|infieldIntegrate| (((|Union| (|Fraction| (|Polynomial| |#1|)) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{infieldIntegrate(f,{} x)} returns a fraction \\spad{g} such that \\spad{dg/dx = f} if \\spad{g} exists,{} \"failed\" otherwise.")) (|internalIntegrate| (((|IntegrationResult| (|Fraction| (|Polynomial| |#1|))) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{internalIntegrate(f,{} x)} returns \\spad{g} such that \\spad{dg/dx = f}.")))
NIL
NIL
(-569 R)
((|constructor| (NIL "\\indented{1}{+ Author: Mike Dewar} + Date Created: November 1996 + Date Last Updated: + Basic Functions: + Related Constructors: + Also See: + AMS Classifications: + Keywords: + References: + Description: + This domain is an implementation of interval arithmetic and transcendental + functions over intervals.")))
-((-1406 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-1406 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-570)
((|constructor| (NIL "This package provides the implementation for the \\spadfun{solveLinearPolynomialEquation} operation over the integers. It uses a lifting technique from the package GenExEuclid")) (|solveLinearPolynomialEquation| (((|Union| (|List| (|SparseUnivariatePolynomial| (|Integer|))) "failed") (|List| (|SparseUnivariatePolynomial| (|Integer|))) (|SparseUnivariatePolynomial| (|Integer|))) "\\spad{solveLinearPolynomialEquation([f1,{} ...,{} fn],{} g)} (where the \\spad{fi} are relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g/prod \\spad{fi} = sum ai/fi} or returns \"failed\" if no such list of \\spad{ai}\\spad{'s} exists.")))
NIL
NIL
-(-571 R -3197)
+(-571 R -3196)
((|constructor| (NIL "\\indented{1}{Tools for the integrator} Author: Manuel Bronstein Date Created: 25 April 1990 Date Last Updated: 9 June 1993 Keywords: elementary,{} function,{} integration.")) (|intPatternMatch| (((|IntegrationResult| |#2|) |#2| (|Symbol|) (|Mapping| (|IntegrationResult| |#2|) |#2| (|Symbol|)) (|Mapping| (|Union| (|Record| (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (|Symbol|))) "\\spad{intPatternMatch(f,{} x,{} int,{} pmint)} tries to integrate \\spad{f} first by using the integration function \\spad{int},{} and then by using the pattern match intetgration function \\spad{pmint} on any remaining unintegrable part.")) (|mkPrim| ((|#2| |#2| (|Symbol|)) "\\spad{mkPrim(f,{} x)} makes the logs in \\spad{f} which are linear in \\spad{x} primitive with respect to \\spad{x}.")) (|removeConstantTerm| ((|#2| |#2| (|Symbol|)) "\\spad{removeConstantTerm(f,{} x)} returns \\spad{f} minus any additive constant with respect to \\spad{x}.")) (|vark| (((|List| (|Kernel| |#2|)) (|List| |#2|) (|Symbol|)) "\\spad{vark([f1,{}...,{}fn],{}x)} returns the set-theoretic union of \\spad{(varselect(f1,{}x),{}...,{}varselect(fn,{}x))}.")) (|union| (((|List| (|Kernel| |#2|)) (|List| (|Kernel| |#2|)) (|List| (|Kernel| |#2|))) "\\spad{union(l1,{} l2)} returns set-theoretic union of \\spad{l1} and \\spad{l2}.")) (|ksec| (((|Kernel| |#2|) (|Kernel| |#2|) (|List| (|Kernel| |#2|)) (|Symbol|)) "\\spad{ksec(k,{} [k1,{}...,{}kn],{} x)} returns the second top-level \\spad{ki} after \\spad{k} involving \\spad{x}.")) (|kmax| (((|Kernel| |#2|) (|List| (|Kernel| |#2|))) "\\spad{kmax([k1,{}...,{}kn])} returns the top-level \\spad{ki} for integration.")) (|varselect| (((|List| (|Kernel| |#2|)) (|List| (|Kernel| |#2|)) (|Symbol|)) "\\spad{varselect([k1,{}...,{}kn],{} x)} returns the \\spad{ki} which involve \\spad{x}.")))
NIL
((-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-283))) (|HasCategory| |#2| (QUOTE (-625))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168))))) (-12 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-283)))) (|HasCategory| |#1| (QUOTE (-554))))
-(-572 -3197 UP)
+(-572 -3196 UP)
((|constructor| (NIL "This package provides functions for the transcendental case of the Risch algorithm.")) (|monomialIntPoly| (((|Record| (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (|Mapping| |#2| |#2|)) "\\spad{monomialIntPoly(p,{} ')} returns [\\spad{q},{} \\spad{r}] such that \\spad{p = q' + r} and \\spad{degree(r) < degree(t')}. Error if \\spad{degree(t') < 2}.")) (|monomialIntegrate| (((|Record| (|:| |ir| (|IntegrationResult| (|Fraction| |#2|))) (|:| |specpart| (|Fraction| |#2|)) (|:| |polypart| |#2|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{monomialIntegrate(f,{} ')} returns \\spad{[ir,{} s,{} p]} such that \\spad{f = ir' + s + p} and all the squarefree factors of the denominator of \\spad{s} are special \\spad{w}.\\spad{r}.\\spad{t} the derivation '.")) (|expintfldpoly| (((|Union| (|LaurentPolynomial| |#1| |#2|) "failed") (|LaurentPolynomial| |#1| |#2|) (|Mapping| (|Record| (|:| |ans| |#1|) (|:| |right| |#1|) (|:| |sol?| (|Boolean|))) (|Integer|) |#1|)) "\\spad{expintfldpoly(p,{} foo)} returns \\spad{q} such that \\spad{p' = q} or \"failed\" if no such \\spad{q} exists. Argument foo is a Risch differential equation function on \\spad{F}.")) (|primintfldpoly| (((|Union| |#2| "failed") |#2| (|Mapping| (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) "\\spad{primintfldpoly(p,{} ',{} t')} returns \\spad{q} such that \\spad{p' = q} or \"failed\" if no such \\spad{q} exists. Argument \\spad{t'} is the derivative of the primitive generating the extension.")) (|primlimintfrac| (((|Union| (|Record| (|:| |mainpart| (|Fraction| |#2|)) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| |#2|)) (|:| |logand| (|Fraction| |#2|)))))) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|List| (|Fraction| |#2|))) "\\spad{primlimintfrac(f,{} ',{} [u1,{}...,{}un])} returns \\spad{[v,{} [c1,{}...,{}cn]]} such that \\spad{ci' = 0} and \\spad{f = v' + +/[\\spad{ci} * ui'/ui]}. Error: if \\spad{degree numer f >= degree denom f}.")) (|primextintfrac| (((|Union| (|Record| (|:| |ratpart| (|Fraction| |#2|)) (|:| |coeff| (|Fraction| |#2|))) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Fraction| |#2|)) "\\spad{primextintfrac(f,{} ',{} g)} returns \\spad{[v,{} c]} such that \\spad{f = v' + c g} and \\spad{c' = 0}. Error: if \\spad{degree numer f >= degree denom f} or if \\spad{degree numer g >= degree denom g} or if \\spad{denom g} is not squarefree.")) (|explimitedint| (((|Union| (|Record| (|:| |answer| (|Record| (|:| |mainpart| (|Fraction| |#2|)) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| |#2|)) (|:| |logand| (|Fraction| |#2|))))))) (|:| |a0| |#1|)) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Record| (|:| |ans| |#1|) (|:| |right| |#1|) (|:| |sol?| (|Boolean|))) (|Integer|) |#1|) (|List| (|Fraction| |#2|))) "\\spad{explimitedint(f,{} ',{} foo,{} [u1,{}...,{}un])} returns \\spad{[v,{} [c1,{}...,{}cn],{} a]} such that \\spad{ci' = 0},{} \\spad{f = v' + a + reduce(+,{}[\\spad{ci} * ui'/ui])},{} and \\spad{a = 0} or \\spad{a} has no integral in \\spad{F}. Returns \"failed\" if no such \\spad{v},{} \\spad{ci},{} a exist. Argument \\spad{foo} is a Risch differential equation function on \\spad{F}.")) (|primlimitedint| (((|Union| (|Record| (|:| |answer| (|Record| (|:| |mainpart| (|Fraction| |#2|)) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| |#2|)) (|:| |logand| (|Fraction| |#2|))))))) (|:| |a0| |#1|)) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (|List| (|Fraction| |#2|))) "\\spad{primlimitedint(f,{} ',{} foo,{} [u1,{}...,{}un])} returns \\spad{[v,{} [c1,{}...,{}cn],{} a]} such that \\spad{ci' = 0},{} \\spad{f = v' + a + reduce(+,{}[\\spad{ci} * ui'/ui])},{} and \\spad{a = 0} or \\spad{a} has no integral in UP. Returns \"failed\" if no such \\spad{v},{} \\spad{ci},{} a exist. Argument \\spad{foo} is an extended integration function on \\spad{F}.")) (|expextendedint| (((|Union| (|Record| (|:| |answer| (|Fraction| |#2|)) (|:| |a0| |#1|)) (|Record| (|:| |ratpart| (|Fraction| |#2|)) (|:| |coeff| (|Fraction| |#2|))) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Record| (|:| |ans| |#1|) (|:| |right| |#1|) (|:| |sol?| (|Boolean|))) (|Integer|) |#1|) (|Fraction| |#2|)) "\\spad{expextendedint(f,{} ',{} foo,{} g)} returns either \\spad{[v,{} c]} such that \\spad{f = v' + c g} and \\spad{c' = 0},{} or \\spad{[v,{} a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in \\spad{F}. Returns \"failed\" if neither case can hold. Argument \\spad{foo} is a Risch differential equation function on \\spad{F}.")) (|primextendedint| (((|Union| (|Record| (|:| |answer| (|Fraction| |#2|)) (|:| |a0| |#1|)) (|Record| (|:| |ratpart| (|Fraction| |#2|)) (|:| |coeff| (|Fraction| |#2|))) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (|Fraction| |#2|)) "\\spad{primextendedint(f,{} ',{} foo,{} g)} returns either \\spad{[v,{} c]} such that \\spad{f = v' + c g} and \\spad{c' = 0},{} or \\spad{[v,{} a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in UP. Returns \"failed\" if neither case can hold. Argument \\spad{foo} is an extended integration function on \\spad{F}.")) (|tanintegrate| (((|Record| (|:| |answer| (|IntegrationResult| (|Fraction| |#2|))) (|:| |a0| |#1|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Union| (|List| |#1|) "failed") (|Integer|) |#1| |#1|)) "\\spad{tanintegrate(f,{} ',{} foo)} returns \\spad{[g,{} a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in \\spad{F}; Argument foo is a Risch differential system solver on \\spad{F}.")) (|expintegrate| (((|Record| (|:| |answer| (|IntegrationResult| (|Fraction| |#2|))) (|:| |a0| |#1|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Record| (|:| |ans| |#1|) (|:| |right| |#1|) (|:| |sol?| (|Boolean|))) (|Integer|) |#1|)) "\\spad{expintegrate(f,{} ',{} foo)} returns \\spad{[g,{} a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in \\spad{F}; Argument foo is a Risch differential equation solver on \\spad{F}.")) (|primintegrate| (((|Record| (|:| |answer| (|IntegrationResult| (|Fraction| |#2|))) (|:| |a0| |#1|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) "\\spad{primintegrate(f,{} ',{} foo)} returns \\spad{[g,{} a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in UP. Argument foo is an extended integration function on \\spad{F}.")))
NIL
NIL
-(-573 R -3197)
+(-573 R -3196)
((|constructor| (NIL "This package computes the inverse Laplace Transform.")) (|inverseLaplace| (((|Union| |#2| "failed") |#2| (|Symbol|) (|Symbol|)) "\\spad{inverseLaplace(f,{} s,{} t)} returns the Inverse Laplace transform of \\spad{f(s)} using \\spad{t} as the new variable or \"failed\" if unable to find a closed form.")))
NIL
NIL
@@ -2242,27 +2242,27 @@ NIL
NIL
(-578 |p| |unBalanced?|)
((|constructor| (NIL "This domain implements \\spad{Zp},{} the \\spad{p}-adic completion of the integers. This is an internal domain.")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-579 |p|)
((|constructor| (NIL "InnerPrimeField(\\spad{p}) implements the field with \\spad{p} elements. Note: argument \\spad{p} MUST be a prime (this domain does not check). See \\spadtype{PrimeField} for a domain that does check.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| $ (QUOTE (-146))) (|HasCategory| $ (QUOTE (-144))) (|HasCategory| $ (QUOTE (-367))))
(-580)
((|constructor| (NIL "A package to print strings without line-feed nor carriage-return.")) (|iprint| (((|Void|) (|String|)) "\\axiom{iprint(\\spad{s})} prints \\axiom{\\spad{s}} at the current position of the cursor.")))
NIL
NIL
-(-581 R -3197)
+(-581 R -3196)
((|constructor| (NIL "This package allows a sum of logs over the roots of a polynomial to be expressed as explicit logarithms and arc tangents,{} provided that the indexing polynomial can be factored into quadratics.")) (|complexExpand| ((|#2| (|IntegrationResult| |#2|)) "\\spad{complexExpand(i)} returns the expanded complex function corresponding to \\spad{i}.")) (|expand| (((|List| |#2|) (|IntegrationResult| |#2|)) "\\spad{expand(i)} returns the list of possible real functions corresponding to \\spad{i}.")) (|split| (((|IntegrationResult| |#2|) (|IntegrationResult| |#2|)) "\\spad{split(u(x) + sum_{P(a)=0} Q(a,{}x))} returns \\spad{u(x) + sum_{P1(a)=0} Q(a,{}x) + ... + sum_{Pn(a)=0} Q(a,{}x)} where \\spad{P1},{}...,{}\\spad{Pn} are the factors of \\spad{P}.")))
NIL
NIL
-(-582 E -3197)
+(-582 E -3196)
((|constructor| (NIL "\\indented{1}{Internally used by the integration packages} Author: Manuel Bronstein Date Created: 1987 Date Last Updated: 12 August 1992 Keywords: integration.")) (|map| (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (|Mapping| |#2| |#1|) (|Union| (|Record| (|:| |mainpart| |#1|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) "\\spad{map(f,{}ufe)} \\undocumented") (((|Union| |#2| "failed") (|Mapping| |#2| |#1|) (|Union| |#1| "failed")) "\\spad{map(f,{}ue)} \\undocumented") (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") (|Mapping| |#2| |#1|) (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed")) "\\spad{map(f,{}ure)} \\undocumented") (((|IntegrationResult| |#2|) (|Mapping| |#2| |#1|) (|IntegrationResult| |#1|)) "\\spad{map(f,{}ire)} \\undocumented")))
NIL
NIL
-(-583 -3197)
+(-583 -3196)
((|constructor| (NIL "If a function \\spad{f} has an elementary integral \\spad{g},{} then \\spad{g} can be written in the form \\spad{g = h + c1 log(u1) + c2 log(u2) + ... + cn log(un)} where \\spad{h},{} which is in the same field than \\spad{f},{} is called the rational part of the integral,{} and \\spad{c1 log(u1) + ... cn log(un)} is called the logarithmic part of the integral. This domain manipulates integrals represented in that form,{} by keeping both parts separately. The logs are not explicitly computed.")) (|differentiate| ((|#1| $ (|Symbol|)) "\\spad{differentiate(ir,{}x)} differentiates \\spad{ir} with respect to \\spad{x}") ((|#1| $ (|Mapping| |#1| |#1|)) "\\spad{differentiate(ir,{}D)} differentiates \\spad{ir} with respect to the derivation \\spad{D}.")) (|integral| (($ |#1| (|Symbol|)) "\\spad{integral(f,{}x)} returns the formal integral of \\spad{f} with respect to \\spad{x}") (($ |#1| |#1|) "\\spad{integral(f,{}x)} returns the formal integral of \\spad{f} with respect to \\spad{x}")) (|elem?| (((|Boolean|) $) "\\spad{elem?(ir)} tests if an integration result is elementary over \\spad{F?}")) (|notelem| (((|List| (|Record| (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) "\\spad{notelem(ir)} returns the non-elementary part of an integration result")) (|logpart| (((|List| (|Record| (|:| |scalar| (|Fraction| (|Integer|))) (|:| |coeff| (|SparseUnivariatePolynomial| |#1|)) (|:| |logand| (|SparseUnivariatePolynomial| |#1|)))) $) "\\spad{logpart(ir)} returns the logarithmic part of an integration result")) (|ratpart| ((|#1| $) "\\spad{ratpart(ir)} returns the rational part of an integration result")) (|mkAnswer| (($ |#1| (|List| (|Record| (|:| |scalar| (|Fraction| (|Integer|))) (|:| |coeff| (|SparseUnivariatePolynomial| |#1|)) (|:| |logand| (|SparseUnivariatePolynomial| |#1|)))) (|List| (|Record| (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) "\\spad{mkAnswer(r,{}l,{}ne)} creates an integration result from a rational part \\spad{r},{} a logarithmic part \\spad{l},{} and a non-elementary part \\spad{ne}.")))
-((-4397 . T) (-4396 . T))
+((-4398 . T) (-4397 . T))
((|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-1168)))))
(-584 I)
((|constructor| (NIL "The \\spadtype{IntegerRoots} package computes square roots and \\indented{2}{\\spad{n}th roots of integers efficiently.}")) (|approxSqrt| ((|#1| |#1|) "\\spad{approxSqrt(n)} returns an approximation \\spad{x} to \\spad{sqrt(n)} such that \\spad{-1 < x - sqrt(n) < 1}. Compute an approximation \\spad{s} to \\spad{sqrt(n)} such that \\indented{10}{\\spad{-1 < s - sqrt(n) < 1}} A variable precision Newton iteration is used. The running time is \\spad{O( log(n)**2 )}.")) (|perfectSqrt| (((|Union| |#1| "failed") |#1|) "\\spad{perfectSqrt(n)} returns the square root of \\spad{n} if \\spad{n} is a perfect square and returns \"failed\" otherwise")) (|perfectSquare?| (((|Boolean|) |#1|) "\\spad{perfectSquare?(n)} returns \\spad{true} if \\spad{n} is a perfect square and \\spad{false} otherwise")) (|approxNthRoot| ((|#1| |#1| (|NonNegativeInteger|)) "\\spad{approxRoot(n,{}r)} returns an approximation \\spad{x} to \\spad{n**(1/r)} such that \\spad{-1 < x - n**(1/r) < 1}")) (|perfectNthRoot| (((|Record| (|:| |base| |#1|) (|:| |exponent| (|NonNegativeInteger|))) |#1|) "\\spad{perfectNthRoot(n)} returns \\spad{[x,{}r]},{} where \\spad{n = x\\^r} and \\spad{r} is the largest integer such that \\spad{n} is a perfect \\spad{r}th power") (((|Union| |#1| "failed") |#1| (|NonNegativeInteger|)) "\\spad{perfectNthRoot(n,{}r)} returns the \\spad{r}th root of \\spad{n} if \\spad{n} is an \\spad{r}th power and returns \"failed\" otherwise")) (|perfectNthPower?| (((|Boolean|) |#1| (|NonNegativeInteger|)) "\\spad{perfectNthPower?(n,{}r)} returns \\spad{true} if \\spad{n} is an \\spad{r}th power and \\spad{false} otherwise")))
@@ -2290,7 +2290,7 @@ NIL
NIL
(-590 |mn|)
((|constructor| (NIL "This domain implements low-level strings")) (|hash| (((|Integer|) $) "\\spad{hash(x)} provides a hashing function for strings")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| (-143) (QUOTE (-845))) (|HasCategory| (-143) (LIST (QUOTE -308) (QUOTE (-143))))) (-12 (|HasCategory| (-143) (QUOTE (-1092))) (|HasCategory| (-143) (LIST (QUOTE -308) (QUOTE (-143)))))) (-4037 (|HasCategory| (-143) (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| (-143) (QUOTE (-1092))) (|HasCategory| (-143) (LIST (QUOTE -308) (QUOTE (-143)))))) (|HasCategory| (-143) (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| (-143) (QUOTE (-845))) (|HasCategory| (-143) (QUOTE (-1092)))) (|HasCategory| (-143) (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| (-143) (QUOTE (-1092))) (|HasCategory| (-143) (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| (-143) (QUOTE (-1092))) (|HasCategory| (-143) (LIST (QUOTE -308) (QUOTE (-143))))))
(-591 E V R P)
((|constructor| (NIL "tools for the summation packages.")) (|sum| (((|Record| (|:| |num| |#4|) (|:| |den| (|Integer|))) |#4| |#2|) "\\spad{sum(p(n),{} n)} returns \\spad{P(n)},{} the indefinite sum of \\spad{p(n)} with respect to upward difference on \\spad{n},{} \\spadignore{i.e.} \\spad{P(n+1) - P(n) = a(n)}.") (((|Record| (|:| |num| |#4|) (|:| |den| (|Integer|))) |#4| |#2| (|Segment| |#4|)) "\\spad{sum(p(n),{} n = a..b)} returns \\spad{p(a) + p(a+1) + ... + p(b)}.")))
@@ -2298,11 +2298,11 @@ NIL
NIL
(-592 |Coef|)
((|constructor| (NIL "InnerSparseUnivariatePowerSeries is an internal domain \\indented{2}{used for creating sparse Taylor and Laurent series.}")) (|cAcsch| (($ $) "\\spad{cAcsch(f)} computes the inverse hyperbolic cosecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAsech| (($ $) "\\spad{cAsech(f)} computes the inverse hyperbolic secant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcoth| (($ $) "\\spad{cAcoth(f)} computes the inverse hyperbolic cotangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAtanh| (($ $) "\\spad{cAtanh(f)} computes the inverse hyperbolic tangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcosh| (($ $) "\\spad{cAcosh(f)} computes the inverse hyperbolic cosine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAsinh| (($ $) "\\spad{cAsinh(f)} computes the inverse hyperbolic sine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCsch| (($ $) "\\spad{cCsch(f)} computes the hyperbolic cosecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cSech| (($ $) "\\spad{cSech(f)} computes the hyperbolic secant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCoth| (($ $) "\\spad{cCoth(f)} computes the hyperbolic cotangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cTanh| (($ $) "\\spad{cTanh(f)} computes the hyperbolic tangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCosh| (($ $) "\\spad{cCosh(f)} computes the hyperbolic cosine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cSinh| (($ $) "\\spad{cSinh(f)} computes the hyperbolic sine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcsc| (($ $) "\\spad{cAcsc(f)} computes the arccosecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAsec| (($ $) "\\spad{cAsec(f)} computes the arcsecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcot| (($ $) "\\spad{cAcot(f)} computes the arccotangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAtan| (($ $) "\\spad{cAtan(f)} computes the arctangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAcos| (($ $) "\\spad{cAcos(f)} computes the arccosine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cAsin| (($ $) "\\spad{cAsin(f)} computes the arcsine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCsc| (($ $) "\\spad{cCsc(f)} computes the cosecant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cSec| (($ $) "\\spad{cSec(f)} computes the secant of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCot| (($ $) "\\spad{cCot(f)} computes the cotangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cTan| (($ $) "\\spad{cTan(f)} computes the tangent of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cCos| (($ $) "\\spad{cCos(f)} computes the cosine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cSin| (($ $) "\\spad{cSin(f)} computes the sine of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cLog| (($ $) "\\spad{cLog(f)} computes the logarithm of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cExp| (($ $) "\\spad{cExp(f)} computes the exponential of the power series \\spad{f}. For use when the coefficient ring is commutative.")) (|cRationalPower| (($ $ (|Fraction| (|Integer|))) "\\spad{cRationalPower(f,{}r)} computes \\spad{f^r}. For use when the coefficient ring is commutative.")) (|cPower| (($ $ |#1|) "\\spad{cPower(f,{}r)} computes \\spad{f^r},{} where \\spad{f} has constant coefficient 1. For use when the coefficient ring is commutative.")) (|integrate| (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. Warning: function does not check for a term of degree \\spad{-1}.")) (|seriesToOutputForm| (((|OutputForm|) (|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|))) (|Reference| (|OrderedCompletion| (|Integer|))) (|Symbol|) |#1| (|Fraction| (|Integer|))) "\\spad{seriesToOutputForm(st,{}refer,{}var,{}cen,{}r)} prints the series \\spad{f((var - cen)^r)}.")) (|iCompose| (($ $ $) "\\spad{iCompose(f,{}g)} returns \\spad{f(g(x))}. This is an internal function which should only be called for Taylor series \\spad{f(x)} and \\spad{g(x)} such that the constant coefficient of \\spad{g(x)} is zero.")) (|taylorQuoByVar| (($ $) "\\spad{taylorQuoByVar(a0 + a1 x + a2 x**2 + ...)} returns \\spad{a1 + a2 x + a3 x**2 + ...}")) (|iExquo| (((|Union| $ "failed") $ $ (|Boolean|)) "\\spad{iExquo(f,{}g,{}taylor?)} is the quotient of the power series \\spad{f} and \\spad{g}. If \\spad{taylor?} is \\spad{true},{} then we must have \\spad{order(f) >= order(g)}.")) (|multiplyCoefficients| (($ (|Mapping| |#1| (|Integer|)) $) "\\spad{multiplyCoefficients(fn,{}f)} returns the series \\spad{sum(fn(n) * an * x^n,{}n = n0..)},{} where \\spad{f} is the series \\spad{sum(an * x^n,{}n = n0..)}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(f)} tests if \\spad{f} is a single monomial.")) (|series| (($ (|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|)))) "\\spad{series(st)} creates a series from a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents.")) (|getStream| (((|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|))) $) "\\spad{getStream(f)} returns the stream of terms representing the series \\spad{f}.")) (|getRef| (((|Reference| (|OrderedCompletion| (|Integer|))) $) "\\spad{getRef(f)} returns a reference containing the order to which the terms of \\spad{f} have been computed.")) (|makeSeries| (($ (|Reference| (|OrderedCompletion| (|Integer|))) (|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|)))) "\\spad{makeSeries(refer,{}str)} creates a power series from the reference \\spad{refer} and the stream \\spad{str}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|)))) (|HasCategory| (-562) (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-362))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -4054) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|)))) (|HasCategory| (-562) (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-362))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -4053) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))))
(-593 |Coef|)
((|constructor| (NIL "Internal package for dense Taylor series. This is an internal Taylor series type in which Taylor series are represented by a \\spadtype{Stream} of \\spadtype{Ring} elements. For univariate series,{} the \\spad{Stream} elements are the Taylor coefficients. For multivariate series,{} the \\spad{n}th Stream element is a form of degree \\spad{n} in the power series variables.")) (* (($ $ (|Integer|)) "\\spad{x*i} returns the product of integer \\spad{i} and the series \\spad{x}.") (($ $ |#1|) "\\spad{x*c} returns the product of \\spad{c} and the series \\spad{x}.") (($ |#1| $) "\\spad{c*x} returns the product of \\spad{c} and the series \\spad{x}.")) (|order| (((|NonNegativeInteger|) $ (|NonNegativeInteger|)) "\\spad{order(x,{}n)} returns the minimum of \\spad{n} and the order of \\spad{x}.") (((|NonNegativeInteger|) $) "\\spad{order(x)} returns the order of a power series \\spad{x},{} \\indented{1}{\\spadignore{i.e.} the degree of the first non-zero term of the series.}")) (|pole?| (((|Boolean|) $) "\\spad{pole?(x)} tests if the series \\spad{x} has a pole. \\indented{1}{Note: this is \\spad{false} when \\spad{x} is a Taylor series.}")) (|series| (($ (|Stream| |#1|)) "\\spad{series(s)} creates a power series from a stream of \\indented{1}{ring elements.} \\indented{1}{For univariate series types,{} the stream \\spad{s} should be a stream} \\indented{1}{of Taylor coefficients. For multivariate series types,{} the} \\indented{1}{stream \\spad{s} should be a stream of forms the \\spad{n}th element} \\indented{1}{of which is a} \\indented{1}{form of degree \\spad{n} in the power series variables.}")) (|coefficients| (((|Stream| |#1|) $) "\\spad{coefficients(x)} returns a stream of ring elements. \\indented{1}{When \\spad{x} is a univariate series,{} this is a stream of Taylor} \\indented{1}{coefficients. When \\spad{x} is a multivariate series,{} the} \\indented{1}{\\spad{n}th element of the stream is a form of} \\indented{1}{degree \\spad{n} in the power series variables.}")))
-((-4397 |has| |#1| (-554)) (-4396 |has| |#1| (-554)) ((-4404 "*") |has| |#1| (-554)) (-4395 |has| |#1| (-554)) (-4399 . T))
+((-4398 |has| |#1| (-554)) (-4397 |has| |#1| (-554)) ((-4405 "*") |has| |#1| (-554)) (-4396 |has| |#1| (-554)) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-554))))
(-594 A B)
((|constructor| (NIL "Functions defined on streams with entries in two sets.")) (|map| (((|InfiniteTuple| |#2|) (|Mapping| |#2| |#1|) (|InfiniteTuple| |#1|)) "\\spad{map(f,{}[x0,{}x1,{}x2,{}...])} returns \\spad{[f(x0),{}f(x1),{}f(x2),{}..]}.")))
@@ -2312,7 +2312,7 @@ NIL
((|constructor| (NIL "Functions defined on streams with entries in two sets.")) (|map| (((|Stream| |#3|) (|Mapping| |#3| |#1| |#2|) (|InfiniteTuple| |#1|) (|Stream| |#2|)) "\\spad{map(f,{}a,{}b)} \\undocumented") (((|Stream| |#3|) (|Mapping| |#3| |#1| |#2|) (|Stream| |#1|) (|InfiniteTuple| |#2|)) "\\spad{map(f,{}a,{}b)} \\undocumented") (((|InfiniteTuple| |#3|) (|Mapping| |#3| |#1| |#2|) (|InfiniteTuple| |#1|) (|InfiniteTuple| |#2|)) "\\spad{map(f,{}a,{}b)} \\undocumented")))
NIL
NIL
-(-596 R -3197 FG)
+(-596 R -3196 FG)
((|constructor| (NIL "This package provides transformations from trigonometric functions to exponentials and logarithms,{} and back. \\spad{F} and \\spad{FG} should be the same type of function space.")) (|trigs2explogs| ((|#3| |#3| (|List| (|Kernel| |#3|)) (|List| (|Symbol|))) "\\spad{trigs2explogs(f,{} [k1,{}...,{}kn],{} [x1,{}...,{}xm])} rewrites all the trigonometric functions appearing in \\spad{f} and involving one of the \\spad{\\spad{xi}'s} in terms of complex logarithms and exponentials. A kernel of the form \\spad{tan(u)} is expressed using \\spad{exp(u)**2} if it is one of the \\spad{\\spad{ki}'s},{} in terms of \\spad{exp(2*u)} otherwise.")) (|explogs2trigs| (((|Complex| |#2|) |#3|) "\\spad{explogs2trigs(f)} rewrites all the complex logs and exponentials appearing in \\spad{f} in terms of trigonometric functions.")) (F2FG ((|#3| |#2|) "\\spad{F2FG(a + sqrt(-1) b)} returns \\spad{a + i b}.")) (FG2F ((|#2| |#3|) "\\spad{FG2F(a + i b)} returns \\spad{a + sqrt(-1) b}.")) (GF2FG ((|#3| (|Complex| |#2|)) "\\spad{GF2FG(a + i b)} returns \\spad{a + i b} viewed as a function with the \\spad{i} pushed down into the coefficient domain.")))
NIL
NIL
@@ -2322,12 +2322,12 @@ NIL
NIL
(-598 R |mn|)
((|constructor| (NIL "\\indented{2}{This type represents vector like objects with varying lengths} and a user-specified initial index.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-721))) (|HasCategory| |#1| (QUOTE (-1044))) (-12 (|HasCategory| |#1| (QUOTE (-997))) (|HasCategory| |#1| (QUOTE (-1044)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
(-599 S |Index| |Entry|)
((|constructor| (NIL "An indexed aggregate is a many-to-one mapping of indices to entries. For example,{} a one-dimensional-array is an indexed aggregate where the index is an integer. Also,{} a table is an indexed aggregate where the indices and entries may have any type.")) (|swap!| (((|Void|) $ |#2| |#2|) "\\spad{swap!(u,{}i,{}j)} interchanges elements \\spad{i} and \\spad{j} of aggregate \\spad{u}. No meaningful value is returned.")) (|fill!| (($ $ |#3|) "\\spad{fill!(u,{}x)} replaces each entry in aggregate \\spad{u} by \\spad{x}. The modified \\spad{u} is returned as value.")) (|first| ((|#3| $) "\\spad{first(u)} returns the first element \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{first([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = \\spad{x}}. Error: if \\spad{u} is empty.")) (|minIndex| ((|#2| $) "\\spad{minIndex(u)} returns the minimum index \\spad{i} of aggregate \\spad{u}. Note: in general,{} \\axiom{minIndex(a) = reduce(min,{}[\\spad{i} for \\spad{i} in indices a])}; for lists,{} \\axiom{minIndex(a) = 1}.")) (|maxIndex| ((|#2| $) "\\spad{maxIndex(u)} returns the maximum index \\spad{i} of aggregate \\spad{u}. Note: in general,{} \\axiom{maxIndex(\\spad{u}) = reduce(max,{}[\\spad{i} for \\spad{i} in indices \\spad{u}])}; if \\spad{u} is a list,{} \\axiom{maxIndex(\\spad{u}) = \\#u}.")) (|entry?| (((|Boolean|) |#3| $) "\\spad{entry?(x,{}u)} tests if \\spad{x} equals \\axiom{\\spad{u} . \\spad{i}} for some index \\spad{i}.")) (|indices| (((|List| |#2|) $) "\\spad{indices(u)} returns a list of indices of aggregate \\spad{u} in no particular order.")) (|index?| (((|Boolean|) |#2| $) "\\spad{index?(i,{}u)} tests if \\spad{i} is an index of aggregate \\spad{u}.")) (|entries| (((|List| |#3|) $) "\\spad{entries(u)} returns a list of all the entries of aggregate \\spad{u} in no assumed order.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4403)) (|HasCategory| |#2| (QUOTE (-845))) (|HasAttribute| |#1| (QUOTE -4402)) (|HasCategory| |#3| (QUOTE (-1092))))
+((|HasAttribute| |#1| (QUOTE -4404)) (|HasCategory| |#2| (QUOTE (-845))) (|HasAttribute| |#1| (QUOTE -4403)) (|HasCategory| |#3| (QUOTE (-1092))))
(-600 |Index| |Entry|)
((|constructor| (NIL "An indexed aggregate is a many-to-one mapping of indices to entries. For example,{} a one-dimensional-array is an indexed aggregate where the index is an integer. Also,{} a table is an indexed aggregate where the indices and entries may have any type.")) (|swap!| (((|Void|) $ |#1| |#1|) "\\spad{swap!(u,{}i,{}j)} interchanges elements \\spad{i} and \\spad{j} of aggregate \\spad{u}. No meaningful value is returned.")) (|fill!| (($ $ |#2|) "\\spad{fill!(u,{}x)} replaces each entry in aggregate \\spad{u} by \\spad{x}. The modified \\spad{u} is returned as value.")) (|first| ((|#2| $) "\\spad{first(u)} returns the first element \\spad{x} of \\spad{u}. Note: for collections,{} \\axiom{first([\\spad{x},{}\\spad{y},{}...,{}\\spad{z}]) = \\spad{x}}. Error: if \\spad{u} is empty.")) (|minIndex| ((|#1| $) "\\spad{minIndex(u)} returns the minimum index \\spad{i} of aggregate \\spad{u}. Note: in general,{} \\axiom{minIndex(a) = reduce(min,{}[\\spad{i} for \\spad{i} in indices a])}; for lists,{} \\axiom{minIndex(a) = 1}.")) (|maxIndex| ((|#1| $) "\\spad{maxIndex(u)} returns the maximum index \\spad{i} of aggregate \\spad{u}. Note: in general,{} \\axiom{maxIndex(\\spad{u}) = reduce(max,{}[\\spad{i} for \\spad{i} in indices \\spad{u}])}; if \\spad{u} is a list,{} \\axiom{maxIndex(\\spad{u}) = \\#u}.")) (|entry?| (((|Boolean|) |#2| $) "\\spad{entry?(x,{}u)} tests if \\spad{x} equals \\axiom{\\spad{u} . \\spad{i}} for some index \\spad{i}.")) (|indices| (((|List| |#1|) $) "\\spad{indices(u)} returns a list of indices of aggregate \\spad{u} in no particular order.")) (|index?| (((|Boolean|) |#1| $) "\\spad{index?(i,{}u)} tests if \\spad{i} is an index of aggregate \\spad{u}.")) (|entries| (((|List| |#2|) $) "\\spad{entries(u)} returns a list of all the entries of aggregate \\spad{u} in no assumed order.")))
NIL
@@ -2342,19 +2342,19 @@ NIL
NIL
(-603 R A)
((|constructor| (NIL "\\indented{1}{AssociatedJordanAlgebra takes an algebra \\spad{A} and uses \\spadfun{*\\$A}} \\indented{1}{to define the new multiplications \\spad{a*b := (a *\\$A b + b *\\$A a)/2}} \\indented{1}{(anticommutator).} \\indented{1}{The usual notation \\spad{{a,{}b}_+} cannot be used due to} \\indented{1}{restrictions in the current language.} \\indented{1}{This domain only gives a Jordan algebra if the} \\indented{1}{Jordan-identity \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} holds} \\indented{1}{for all \\spad{a},{}\\spad{b},{}\\spad{c} in \\spad{A}.} \\indented{1}{This relation can be checked by} \\indented{1}{\\spadfun{jordanAdmissible?()\\$A}.} \\blankline If the underlying algebra is of type \\spadtype{FramedNonAssociativeAlgebra(R)} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank,{} together with a fixed \\spad{R}-module basis),{} then the same is \\spad{true} for the associated Jordan algebra. Moreover,{} if the underlying algebra is of type \\spadtype{FiniteRankNonAssociativeAlgebra(R)} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank),{} then the same \\spad{true} for the associated Jordan algebra.")) (|coerce| (($ |#2|) "\\spad{coerce(a)} coerces the element \\spad{a} of the algebra \\spad{A} to an element of the Jordan algebra \\spadtype{AssociatedJordanAlgebra}(\\spad{R},{}A).")))
-((-4399 -4037 (-2246 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))) (-4397 . T) (-4396 . T))
+((-4400 -4037 (-2245 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))) (-4398 . T) (-4397 . T))
((-4037 (|HasCategory| |#2| (LIST (QUOTE -366) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -416) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -416) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -416) (|devaluate| |#1|)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#2| (LIST (QUOTE -366) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#2| (LIST (QUOTE -416) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -366) (|devaluate| |#1|))))
(-604 |Entry|)
((|constructor| (NIL "This domain allows a random access file to be viewed both as a table and as a file object.")) (|pack!| (($ $) "\\spad{pack!(f)} reorganizes the file \\spad{f} on disk to recover unused space.")))
-((-4402 . T) (-4403 . T))
-((-12 (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (QUOTE (-1150))) (LIST (QUOTE |:|) (QUOTE -2694) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| (-1150) (QUOTE (-845))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (LIST (QUOTE -609) (QUOTE (-857)))))
+((-4403 . T) (-4404 . T))
+((-12 (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (QUOTE (-1150))) (LIST (QUOTE |:|) (QUOTE -2693) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| (-1150) (QUOTE (-845))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (LIST (QUOTE -609) (QUOTE (-857)))))
(-605 S |Key| |Entry|)
((|constructor| (NIL "A keyed dictionary is a dictionary of key-entry pairs for which there is a unique entry for each key.")) (|search| (((|Union| |#3| "failed") |#2| $) "\\spad{search(k,{}t)} searches the table \\spad{t} for the key \\spad{k},{} returning the entry stored in \\spad{t} for key \\spad{k}. If \\spad{t} has no such key,{} \\axiom{search(\\spad{k},{}\\spad{t})} returns \"failed\".")) (|remove!| (((|Union| |#3| "failed") |#2| $) "\\spad{remove!(k,{}t)} searches the table \\spad{t} for the key \\spad{k} removing (and return) the entry if there. If \\spad{t} has no such key,{} \\axiom{remove!(\\spad{k},{}\\spad{t})} returns \"failed\".")) (|keys| (((|List| |#2|) $) "\\spad{keys(t)} returns the list the keys in table \\spad{t}.")) (|key?| (((|Boolean|) |#2| $) "\\spad{key?(k,{}t)} tests if \\spad{k} is a key in table \\spad{t}.")))
NIL
NIL
(-606 |Key| |Entry|)
((|constructor| (NIL "A keyed dictionary is a dictionary of key-entry pairs for which there is a unique entry for each key.")) (|search| (((|Union| |#2| "failed") |#1| $) "\\spad{search(k,{}t)} searches the table \\spad{t} for the key \\spad{k},{} returning the entry stored in \\spad{t} for key \\spad{k}. If \\spad{t} has no such key,{} \\axiom{search(\\spad{k},{}\\spad{t})} returns \"failed\".")) (|remove!| (((|Union| |#2| "failed") |#1| $) "\\spad{remove!(k,{}t)} searches the table \\spad{t} for the key \\spad{k} removing (and return) the entry if there. If \\spad{t} has no such key,{} \\axiom{remove!(\\spad{k},{}\\spad{t})} returns \"failed\".")) (|keys| (((|List| |#1|) $) "\\spad{keys(t)} returns the list the keys in table \\spad{t}.")) (|key?| (((|Boolean|) |#1| $) "\\spad{key?(k,{}t)} tests if \\spad{k} is a key in table \\spad{t}.")))
-((-4403 . T))
+((-4404 . T))
NIL
(-607 R S)
((|constructor| (NIL "This package exports some auxiliary functions on kernels")) (|constantIfCan| (((|Union| |#1| "failed") (|Kernel| |#2|)) "\\spad{constantIfCan(k)} \\undocumented")) (|constantKernel| (((|Kernel| |#2|) |#1|) "\\spad{constantKernel(r)} \\undocumented")))
@@ -2372,7 +2372,7 @@ NIL
((|constructor| (NIL "A is convertible to \\spad{B} means any element of A can be converted into an element of \\spad{B},{} but not automatically by the interpreter.")) (|convert| ((|#1| $) "\\spad{convert(a)} transforms a into an element of \\spad{S}.")))
NIL
NIL
-(-611 -3197 UP)
+(-611 -3196 UP)
((|constructor| (NIL "\\spadtype{Kovacic} provides a modified Kovacic\\spad{'s} algorithm for solving explicitely irreducible 2nd order linear ordinary differential equations.")) (|kovacic| (((|Union| (|SparseUnivariatePolynomial| (|Fraction| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Fraction| |#2|) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{kovacic(a_0,{}a_1,{}a_2,{}ezfactor)} returns either \"failed\" or \\spad{P}(\\spad{u}) such that \\spad{\\$e^{\\int(-a_1/2a_2)} e^{\\int u}\\$} is a solution of \\indented{5}{\\spad{\\$a_2 y'' + a_1 y' + a0 y = 0\\$}} whenever \\spad{u} is a solution of \\spad{P u = 0}. The equation must be already irreducible over the rational functions. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|Union| (|SparseUnivariatePolynomial| (|Fraction| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{kovacic(a_0,{}a_1,{}a_2)} returns either \"failed\" or \\spad{P}(\\spad{u}) such that \\spad{\\$e^{\\int(-a_1/2a_2)} e^{\\int u}\\$} is a solution of \\indented{5}{\\spad{a_2 y'' + a_1 y' + a0 y = 0}} whenever \\spad{u} is a solution of \\spad{P u = 0}. The equation must be already irreducible over the rational functions.")))
NIL
NIL
@@ -2394,19 +2394,19 @@ NIL
NIL
(-616 R)
((|constructor| (NIL "The category of all left algebras over an arbitrary ring.")) (|coerce| (($ |#1|) "\\spad{coerce(r)} returns \\spad{r} * 1 where 1 is the identity of the left algebra.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-617 A R S)
((|constructor| (NIL "LocalAlgebra produces the localization of an algebra,{} \\spadignore{i.e.} fractions whose numerators come from some \\spad{R} algebra.")) (|denom| ((|#3| $) "\\spad{denom x} returns the denominator of \\spad{x}.")) (|numer| ((|#1| $) "\\spad{numer x} returns the numerator of \\spad{x}.")) (/ (($ |#1| |#3|) "\\spad{a / d} divides the element \\spad{a} by \\spad{d}.") (($ $ |#3|) "\\spad{x / d} divides the element \\spad{x} by \\spad{d}.")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-843))))
-(-618 R -3197)
+(-618 R -3196)
((|constructor| (NIL "This package computes the forward Laplace Transform.")) (|laplace| ((|#2| |#2| (|Symbol|) (|Symbol|)) "\\spad{laplace(f,{} t,{} s)} returns the Laplace transform of \\spad{f(t)} using \\spad{s} as the new variable. This is \\spad{integral(exp(-s*t)*f(t),{} t = 0..\\%plusInfinity)}. Returns the formal object \\spad{laplace(f,{} t,{} s)} if it cannot compute the transform.")))
NIL
NIL
(-619 R UP)
((|constructor| (NIL "\\indented{1}{Univariate polynomials with negative and positive exponents.} Author: Manuel Bronstein Date Created: May 1988 Date Last Updated: 26 Apr 1990")) (|separate| (((|Record| (|:| |polyPart| $) (|:| |fracPart| (|Fraction| |#2|))) (|Fraction| |#2|)) "\\spad{separate(x)} \\undocumented")) (|monomial| (($ |#1| (|Integer|)) "\\spad{monomial(x,{}n)} \\undocumented")) (|coefficient| ((|#1| $ (|Integer|)) "\\spad{coefficient(x,{}n)} \\undocumented")) (|trailingCoefficient| ((|#1| $) "\\spad{trailingCoefficient }\\undocumented")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient }\\undocumented")) (|reductum| (($ $) "\\spad{reductum(x)} \\undocumented")) (|order| (((|Integer|) $) "\\spad{order(x)} \\undocumented")) (|degree| (((|Integer|) $) "\\spad{degree(x)} \\undocumented")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(x)} \\undocumented")))
-((-4397 . T) (-4396 . T) ((-4404 "*") . T) (-4395 . T) (-4399 . T))
+((-4398 . T) (-4397 . T) ((-4405 "*") . T) (-4396 . T) (-4400 . T))
((|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))))
(-620 R E V P TS ST)
((|constructor| (NIL "A package for solving polynomial systems by means of Lazard triangular sets [1]. This package provides two operations. One for solving in the sense of the regular zeros,{} and the other for solving in the sense of the Zariski closure. Both produce square-free regular sets. Moreover,{} the decompositions do not contain any redundant component. However,{} only zero-dimensional regular sets are normalized,{} since normalization may be time consumming in positive dimension. The decomposition process is that of [2].\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{1}{[2] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|zeroSetSplit| (((|List| |#6|) (|List| |#4|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}clos?)} has the same specifications as \\axiomOpFrom{zeroSetSplit(\\spad{lp},{}clos?)}{RegularTriangularSetCategory}.")) (|normalizeIfCan| ((|#6| |#6|) "\\axiom{normalizeIfCan(\\spad{ts})} returns \\axiom{\\spad{ts}} in an normalized shape if \\axiom{\\spad{ts}} is zero-dimensional.")))
@@ -2422,7 +2422,7 @@ NIL
NIL
(-623 |VarSet| R |Order|)
((|constructor| (NIL "Management of the Lie Group associated with a free nilpotent Lie algebra. Every Lie bracket with length greater than \\axiom{Order} are assumed to be null. The implementation inherits from the \\spadtype{XPBWPolynomial} domain constructor: Lyndon coordinates are exponential coordinates of the second kind. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|identification| (((|List| (|Equation| |#2|)) $ $) "\\axiom{identification(\\spad{g},{}\\spad{h})} returns the list of equations \\axiom{g_i = h_i},{} where \\axiom{g_i} (resp. \\axiom{h_i}) are exponential coordinates of \\axiom{\\spad{g}} (resp. \\axiom{\\spad{h}}).")) (|LyndonCoordinates| (((|List| (|Record| (|:| |k| (|LyndonWord| |#1|)) (|:| |c| |#2|))) $) "\\axiom{LyndonCoordinates(\\spad{g})} returns the exponential coordinates of \\axiom{\\spad{g}}.")) (|LyndonBasis| (((|List| (|LiePolynomial| |#1| |#2|)) (|List| |#1|)) "\\axiom{LyndonBasis(\\spad{lv})} returns the Lyndon basis of the nilpotent free Lie algebra.")) (|varList| (((|List| |#1|) $) "\\axiom{varList(\\spad{g})} returns the list of variables of \\axiom{\\spad{g}}.")) (|mirror| (($ $) "\\axiom{mirror(\\spad{g})} is the mirror of the internal representation of \\axiom{\\spad{g}}.")) (|coerce| (((|XPBWPolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{g})} returns the internal representation of \\axiom{\\spad{g}}.") (((|XDistributedPolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{g})} returns the internal representation of \\axiom{\\spad{g}}.")) (|ListOfTerms| (((|List| (|Record| (|:| |k| (|PoincareBirkhoffWittLyndonBasis| |#1|)) (|:| |c| |#2|))) $) "\\axiom{ListOfTerms(\\spad{p})} returns the internal representation of \\axiom{\\spad{p}}.")) (|log| (((|LiePolynomial| |#1| |#2|) $) "\\axiom{log(\\spad{p})} returns the logarithm of \\axiom{\\spad{p}}.")) (|exp| (($ (|LiePolynomial| |#1| |#2|)) "\\axiom{exp(\\spad{p})} returns the exponential of \\axiom{\\spad{p}}.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-624 R |ls|)
((|constructor| (NIL "A package for solving polynomial systems with finitely many solutions. The decompositions are given by means of regular triangular sets. The computations use lexicographical Groebner bases. The main operations are \\axiomOpFrom{lexTriangular}{LexTriangularPackage} and \\axiomOpFrom{squareFreeLexTriangular}{LexTriangularPackage}. The second one provide decompositions by means of square-free regular triangular sets. Both are based on the {\\em lexTriangular} method described in [1]. They differ from the algorithm described in [2] by the fact that multiciplities of the roots are not kept. With the \\axiomOpFrom{squareFreeLexTriangular}{LexTriangularPackage} operation all multiciplities are removed. With the other operation some multiciplities may remain. Both operations admit an optional argument to produce normalized triangular sets. \\newline")) (|zeroSetSplit| (((|List| (|SquareFreeRegularTriangularSet| |#1| (|IndexedExponents| (|OrderedVariableList| |#2|)) (|OrderedVariableList| |#2|) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{} norm?)} decomposes the variety associated with \\axiom{\\spad{lp}} into square-free regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{\\spad{lp}} needs to generate a zero-dimensional ideal. If \\axiom{norm?} is \\axiom{\\spad{true}} then the regular sets are normalized.") (((|List| (|RegularChain| |#1| |#2|)) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{} norm?)} decomposes the variety associated with \\axiom{\\spad{lp}} into regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{\\spad{lp}} needs to generate a zero-dimensional ideal. If \\axiom{norm?} is \\axiom{\\spad{true}} then the regular sets are normalized.")) (|squareFreeLexTriangular| (((|List| (|SquareFreeRegularTriangularSet| |#1| (|IndexedExponents| (|OrderedVariableList| |#2|)) (|OrderedVariableList| |#2|) (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|)) "\\axiom{squareFreeLexTriangular(base,{} norm?)} decomposes the variety associated with \\axiom{base} into square-free regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{base} needs to be a lexicographical Groebner basis of a zero-dimensional ideal. If \\axiom{norm?} is \\axiom{\\spad{true}} then the regular sets are normalized.")) (|lexTriangular| (((|List| (|RegularChain| |#1| |#2|)) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|)) "\\axiom{lexTriangular(base,{} norm?)} decomposes the variety associated with \\axiom{base} into regular chains. Thus a point belongs to this variety iff it is a regular zero of a regular set in in the output. Note that \\axiom{base} needs to be a lexicographical Groebner basis of a zero-dimensional ideal. If \\axiom{norm?} is \\axiom{\\spad{true}} then the regular sets are normalized.")) (|groebner| (((|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) "\\axiom{groebner(\\spad{lp})} returns the lexicographical Groebner basis of \\axiom{\\spad{lp}}. If \\axiom{\\spad{lp}} generates a zero-dimensional ideal then the {\\em FGLM} strategy is used,{} otherwise the {\\em Sugar} strategy is used.")) (|fglmIfCan| (((|Union| (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) "failed") (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) "\\axiom{fglmIfCan(\\spad{lp})} returns the lexicographical Groebner basis of \\axiom{\\spad{lp}} by using the {\\em FGLM} strategy,{} if \\axiom{zeroDimensional?(\\spad{lp})} holds .")) (|zeroDimensional?| (((|Boolean|) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|)))) "\\axiom{zeroDimensional?(\\spad{lp})} returns \\spad{true} iff \\axiom{\\spad{lp}} generates a zero-dimensional ideal \\spad{w}.\\spad{r}.\\spad{t}. the variables involved in \\axiom{\\spad{lp}}.")))
@@ -2432,29 +2432,29 @@ NIL
((|constructor| (NIL "Category for the transcendental Liouvillian functions.")) (|erf| (($ $) "\\spad{erf(x)} returns the error function of \\spad{x},{} \\spadignore{i.e.} \\spad{2 / sqrt(\\%\\spad{pi})} times the integral of \\spad{exp(-x**2) dx}.")) (|dilog| (($ $) "\\spad{dilog(x)} returns the dilogarithm of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{log(x) / (1 - x) dx}.")) (|li| (($ $) "\\spad{\\spad{li}(x)} returns the logarithmic integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{dx / log(x)}.")) (|Ci| (($ $) "\\spad{\\spad{Ci}(x)} returns the cosine integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{cos(x) / x dx}.")) (|Si| (($ $) "\\spad{\\spad{Si}(x)} returns the sine integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{sin(x) / x dx}.")) (|Ei| (($ $) "\\spad{\\spad{Ei}(x)} returns the exponential integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{exp(x)/x dx}.")))
NIL
NIL
-(-626 R -3197)
+(-626 R -3196)
((|constructor| (NIL "This package provides liouvillian functions over an integral domain.")) (|integral| ((|#2| |#2| (|SegmentBinding| |#2|)) "\\spad{integral(f,{}x = a..b)} denotes the definite integral of \\spad{f} with respect to \\spad{x} from \\spad{a} to \\spad{b}.") ((|#2| |#2| (|Symbol|)) "\\spad{integral(f,{}x)} indefinite integral of \\spad{f} with respect to \\spad{x}.")) (|dilog| ((|#2| |#2|) "\\spad{dilog(f)} denotes the dilogarithm")) (|erf| ((|#2| |#2|) "\\spad{erf(f)} denotes the error function")) (|li| ((|#2| |#2|) "\\spad{\\spad{li}(f)} denotes the logarithmic integral")) (|Ci| ((|#2| |#2|) "\\spad{\\spad{Ci}(f)} denotes the cosine integral")) (|Si| ((|#2| |#2|) "\\spad{\\spad{Si}(f)} denotes the sine integral")) (|Ei| ((|#2| |#2|) "\\spad{\\spad{Ei}(f)} denotes the exponential integral")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(op)} returns the Liouvillian operator based on \\spad{op}")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} checks if \\spad{op} is Liouvillian")))
NIL
NIL
-(-627 |lv| -3197)
+(-627 |lv| -3196)
((|constructor| (NIL "\\indented{1}{Given a Groebner basis \\spad{B} with respect to the total degree ordering for} a zero-dimensional ideal \\spad{I},{} compute a Groebner basis with respect to the lexicographical ordering by using linear algebra.")) (|transform| (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{transform }\\undocumented")) (|choosemon| (((|DistributedMultivariatePolynomial| |#1| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{choosemon }\\undocumented")) (|intcompBasis| (((|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|OrderedVariableList| |#1|) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{intcompBasis }\\undocumented")) (|anticoord| (((|DistributedMultivariatePolynomial| |#1| |#2|) (|List| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{anticoord }\\undocumented")) (|coord| (((|Vector| |#2|) (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{coord }\\undocumented")) (|computeBasis| (((|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{computeBasis }\\undocumented")) (|minPol| (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|OrderedVariableList| |#1|)) "\\spad{minPol }\\undocumented") (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|OrderedVariableList| |#1|)) "\\spad{minPol }\\undocumented")) (|totolex| (((|List| (|DistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{totolex }\\undocumented")) (|groebgen| (((|Record| (|:| |glbase| (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) (|:| |glval| (|List| (|Integer|)))) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{groebgen }\\undocumented")) (|linGenPos| (((|Record| (|:| |gblist| (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) (|:| |gvlist| (|List| (|Integer|)))) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{linGenPos }\\undocumented")))
NIL
NIL
(-628)
((|constructor| (NIL "This domain provides a simple way to save values in files.")) (|setelt| (((|Any|) $ (|Symbol|) (|Any|)) "\\spad{lib.k := v} saves the value \\spad{v} in the library \\spad{lib}. It can later be extracted using the key \\spad{k}.")) (|elt| (((|Any|) $ (|Symbol|)) "\\spad{elt(lib,{}k)} or \\spad{lib}.\\spad{k} extracts the value corresponding to the key \\spad{k} from the library \\spad{lib}.")) (|pack!| (($ $) "\\spad{pack!(f)} reorganizes the file \\spad{f} on disk to recover unused space.")) (|library| (($ (|FileName|)) "\\spad{library(ln)} creates a new library file.")))
-((-4403 . T))
-((-12 (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (QUOTE (-1150))) (LIST (QUOTE |:|) (QUOTE -2694) (QUOTE (-52))))))) (-4037 (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (QUOTE (-1092))) (|HasCategory| (-52) (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -308) (QUOTE (-52))))) (|HasCategory| (-1150) (QUOTE (-845))) (-4037 (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (QUOTE (-1092))))
+((-4404 . T))
+((-12 (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (QUOTE (-1150))) (LIST (QUOTE |:|) (QUOTE -2693) (QUOTE (-52))))))) (-4037 (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (QUOTE (-1092))) (|HasCategory| (-52) (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -308) (QUOTE (-52))))) (|HasCategory| (-1150) (QUOTE (-845))) (-4037 (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (QUOTE (-1092))))
(-629 S R)
((|constructor| (NIL "\\axiom{JacobiIdentity} means that \\axiom{[\\spad{x},{}[\\spad{y},{}\\spad{z}]]+[\\spad{y},{}[\\spad{z},{}\\spad{x}]]+[\\spad{z},{}[\\spad{x},{}\\spad{y}]] = 0} holds.")) (/ (($ $ |#2|) "\\axiom{\\spad{x/r}} returns the division of \\axiom{\\spad{x}} by \\axiom{\\spad{r}}.")) (|construct| (($ $ $) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket of \\axiom{\\spad{x}} and \\axiom{\\spad{y}}.")))
NIL
((|HasCategory| |#2| (QUOTE (-362))))
(-630 R)
((|constructor| (NIL "\\axiom{JacobiIdentity} means that \\axiom{[\\spad{x},{}[\\spad{y},{}\\spad{z}]]+[\\spad{y},{}[\\spad{z},{}\\spad{x}]]+[\\spad{z},{}[\\spad{x},{}\\spad{y}]] = 0} holds.")) (/ (($ $ |#1|) "\\axiom{\\spad{x/r}} returns the division of \\axiom{\\spad{x}} by \\axiom{\\spad{r}}.")) (|construct| (($ $ $) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket of \\axiom{\\spad{x}} and \\axiom{\\spad{y}}.")))
-((|JacobiIdentity| . T) (|NullSquare| . T) (-4397 . T) (-4396 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4398 . T) (-4397 . T))
NIL
(-631 R A)
((|constructor| (NIL "AssociatedLieAlgebra takes an algebra \\spad{A} and uses \\spadfun{*\\$A} to define the Lie bracket \\spad{a*b := (a *\\$A b - b *\\$A a)} (commutator). Note that the notation \\spad{[a,{}b]} cannot be used due to restrictions of the current compiler. This domain only gives a Lie algebra if the Jacobi-identity \\spad{(a*b)*c + (b*c)*a + (c*a)*b = 0} holds for all \\spad{a},{}\\spad{b},{}\\spad{c} in \\spad{A}. This relation can be checked by \\spad{lieAdmissible?()\\$A}. \\blankline If the underlying algebra is of type \\spadtype{FramedNonAssociativeAlgebra(R)} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank,{} together with a fixed \\spad{R}-module basis),{} then the same is \\spad{true} for the associated Lie algebra. Also,{} if the underlying algebra is of type \\spadtype{FiniteRankNonAssociativeAlgebra(R)} (\\spadignore{i.e.} a non associative algebra over \\spad{R} which is a free \\spad{R}-module of finite rank),{} then the same is \\spad{true} for the associated Lie algebra.")) (|coerce| (($ |#2|) "\\spad{coerce(a)} coerces the element \\spad{a} of the algebra \\spad{A} to an element of the Lie algebra \\spadtype{AssociatedLieAlgebra}(\\spad{R},{}A).")))
-((-4399 -4037 (-2246 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))) (-4397 . T) (-4396 . T))
+((-4400 -4037 (-2245 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))) (-4398 . T) (-4397 . T))
((-4037 (|HasCategory| |#2| (LIST (QUOTE -366) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -416) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -416) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -416) (|devaluate| |#1|)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#2| (LIST (QUOTE -366) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#2| (LIST (QUOTE -416) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -366) (|devaluate| |#1|))))
(-632 R FE)
((|constructor| (NIL "PowerSeriesLimitPackage implements limits of expressions in one or more variables as one of the variables approaches a limiting value. Included are two-sided limits,{} left- and right- hand limits,{} and limits at plus or minus infinity.")) (|complexLimit| (((|Union| (|OnePointCompletion| |#2|) "failed") |#2| (|Equation| (|OnePointCompletion| |#2|))) "\\spad{complexLimit(f(x),{}x = a)} computes the complex limit \\spad{lim(x -> a,{}f(x))}.")) (|limit| (((|Union| (|OrderedCompletion| |#2|) "failed") |#2| (|Equation| |#2|) (|String|)) "\\spad{limit(f(x),{}x=a,{}\"left\")} computes the left hand real limit \\spad{lim(x -> a-,{}f(x))}; \\spad{limit(f(x),{}x=a,{}\"right\")} computes the right hand real limit \\spad{lim(x -> a+,{}f(x))}.") (((|Union| (|OrderedCompletion| |#2|) (|Record| (|:| |leftHandLimit| (|Union| (|OrderedCompletion| |#2|) "failed")) (|:| |rightHandLimit| (|Union| (|OrderedCompletion| |#2|) "failed"))) "failed") |#2| (|Equation| (|OrderedCompletion| |#2|))) "\\spad{limit(f(x),{}x = a)} computes the real limit \\spad{lim(x -> a,{}f(x))}.")))
@@ -2467,10 +2467,10 @@ NIL
(-634 S R)
((|constructor| (NIL "Test for linear dependence.")) (|solveLinear| (((|Union| (|Vector| (|Fraction| |#1|)) "failed") (|Vector| |#2|) |#2|) "\\spad{solveLinear([v1,{}...,{}vn],{} u)} returns \\spad{[c1,{}...,{}cn]} such that \\spad{c1*v1 + ... + cn*vn = u},{} \"failed\" if no such \\spad{ci}\\spad{'s} exist in the quotient field of \\spad{S}.") (((|Union| (|Vector| |#1|) "failed") (|Vector| |#2|) |#2|) "\\spad{solveLinear([v1,{}...,{}vn],{} u)} returns \\spad{[c1,{}...,{}cn]} such that \\spad{c1*v1 + ... + cn*vn = u},{} \"failed\" if no such \\spad{ci}\\spad{'s} exist in \\spad{S}.")) (|linearDependence| (((|Union| (|Vector| |#1|) "failed") (|Vector| |#2|)) "\\spad{linearDependence([v1,{}...,{}vn])} returns \\spad{[c1,{}...,{}cn]} if \\spad{c1*v1 + ... + cn*vn = 0} and not all the \\spad{ci}\\spad{'s} are 0,{} \"failed\" if the \\spad{vi}\\spad{'s} are linearly independent over \\spad{S}.")) (|linearlyDependent?| (((|Boolean|) (|Vector| |#2|)) "\\spad{linearlyDependent?([v1,{}...,{}vn])} returns \\spad{true} if the \\spad{vi}\\spad{'s} are linearly dependent over \\spad{S},{} \\spad{false} otherwise.")))
NIL
-((-2236 (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-362))))
+((-2234 (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-362))))
(-635 R)
((|constructor| (NIL "An extension ring with an explicit linear dependence test.")) (|reducedSystem| (((|Record| (|:| |mat| (|Matrix| |#1|)) (|:| |vec| (|Vector| |#1|))) (|Matrix| $) (|Vector| $)) "\\spad{reducedSystem(A,{} v)} returns a matrix \\spad{B} and a vector \\spad{w} such that \\spad{A x = v} and \\spad{B x = w} have the same solutions in \\spad{R}.") (((|Matrix| |#1|) (|Matrix| $)) "\\spad{reducedSystem(A)} returns a matrix \\spad{B} such that \\spad{A x = 0} and \\spad{B x = 0} have the same solutions in \\spad{R}.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-636 A B)
((|constructor| (NIL "\\spadtype{ListToMap} allows mappings to be described by a pair of lists of equal lengths. The image of an element \\spad{x},{} which appears in position \\spad{n} in the first list,{} is then the \\spad{n}th element of the second list. A default value or default function can be specified to be used when \\spad{x} does not appear in the first list. In the absence of defaults,{} an error will occur in that case.")) (|match| ((|#2| (|List| |#1|) (|List| |#2|) |#1| (|Mapping| |#2| |#1|)) "\\spad{match(la,{} lb,{} a,{} f)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length. and applies this map to a. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Argument \\spad{f} is a default function to call if a is not in \\spad{la}. The value returned is then obtained by applying \\spad{f} to argument a.") (((|Mapping| |#2| |#1|) (|List| |#1|) (|List| |#2|) (|Mapping| |#2| |#1|)) "\\spad{match(la,{} lb,{} f)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Argument \\spad{f} is used as the function to call when the given function argument is not in \\spad{la}. The value returned is \\spad{f} applied to that argument.") ((|#2| (|List| |#1|) (|List| |#2|) |#1| |#2|) "\\spad{match(la,{} lb,{} a,{} b)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length. and applies this map to a. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Argument \\spad{b} is the default target value if a is not in \\spad{la}. Error: if \\spad{la} and \\spad{lb} are not of equal length.") (((|Mapping| |#2| |#1|) (|List| |#1|) (|List| |#2|) |#2|) "\\spad{match(la,{} lb,{} b)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length,{} where \\spad{b} is used as the default target value if the given function argument is not in \\spad{la}. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Error: if \\spad{la} and \\spad{lb} are not of equal length.") ((|#2| (|List| |#1|) (|List| |#2|) |#1|) "\\spad{match(la,{} lb,{} a)} creates a map defined by lists \\spad{la} and \\spad{lb} of equal length,{} where \\spad{a} is used as the default source value if the given one is not in \\spad{la}. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Error: if \\spad{la} and \\spad{lb} are not of equal length.") (((|Mapping| |#2| |#1|) (|List| |#1|) (|List| |#2|)) "\\spad{match(la,{} lb)} creates a map with no default source or target values defined by lists \\spad{la} and \\spad{lb} of equal length. The target of a source value \\spad{x} in \\spad{la} is the value \\spad{y} with the same index \\spad{lb}. Error: if \\spad{la} and \\spad{lb} are not of equal length. Note: when this map is applied,{} an error occurs when applied to a value missing from \\spad{la}.")))
@@ -2486,7 +2486,7 @@ NIL
NIL
(-639 S)
((|constructor| (NIL "\\spadtype{List} implements singly-linked lists that are addressable by indices; the index of the first element is 1. In addition to the operations provided by \\spadtype{IndexedList},{} this constructor provides some LISP-like functions such as \\spadfun{null} and \\spadfun{cons}.")) (|setDifference| (($ $ $) "\\spad{setDifference(u1,{}u2)} returns a list of the elements of \\spad{u1} that are not also in \\spad{u2}. The order of elements in the resulting list is unspecified.")) (|setIntersection| (($ $ $) "\\spad{setIntersection(u1,{}u2)} returns a list of the elements that lists \\spad{u1} and \\spad{u2} have in common. The order of elements in the resulting list is unspecified.")) (|setUnion| (($ $ $) "\\spad{setUnion(u1,{}u2)} appends the two lists \\spad{u1} and \\spad{u2},{} then removes all duplicates. The order of elements in the resulting list is unspecified.")) (|append| (($ $ $) "\\spad{append(u1,{}u2)} appends the elements of list \\spad{u1} onto the front of list \\spad{u2}. This new list and \\spad{u2} will share some structure.")) (|cons| (($ |#1| $) "\\spad{cons(element,{}u)} appends \\spad{element} onto the front of list \\spad{u} and returns the new list. This new list and the old one will share some structure.")) (|null| (((|Boolean|) $) "\\spad{null(u)} tests if list \\spad{u} is the empty list.")) (|nil| (($) "\\spad{nil()} returns the empty list.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-823))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
(-640 T$)
((|constructor| (NIL "This domain represents AST for Spad literals.")))
@@ -2494,7 +2494,7 @@ NIL
NIL
(-641 S)
((|substitute| (($ |#1| |#1| $) "\\spad{substitute(x,{}y,{}d)} replace \\spad{x}\\spad{'s} with \\spad{y}\\spad{'s} in dictionary \\spad{d}.")) (|duplicates?| (((|Boolean|) $) "\\spad{duplicates?(d)} tests if dictionary \\spad{d} has duplicate entries.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-642 R)
((|constructor| (NIL "The category of left modules over an \\spad{rng} (ring not necessarily with unit). This is an abelian group which supports left multiplation by elements of the \\spad{rng}. \\blankline")) (* (($ |#1| $) "\\spad{r*x} returns the left multiplication of the module element \\spad{x} by the ring element \\spad{r}.")))
@@ -2507,22 +2507,22 @@ NIL
(-644 A S)
((|constructor| (NIL "A linear aggregate is an aggregate whose elements are indexed by integers. Examples of linear aggregates are strings,{} lists,{} and arrays. Most of the exported operations for linear aggregates are non-destructive but are not always efficient for a particular aggregate. For example,{} \\spadfun{concat} of two lists needs only to copy its first argument,{} whereas \\spadfun{concat} of two arrays needs to copy both arguments. Most of the operations exported here apply to infinite objects (\\spadignore{e.g.} streams) as well to finite ones. For finite linear aggregates,{} see \\spadtype{FiniteLinearAggregate}.")) (|setelt| ((|#2| $ (|UniversalSegment| (|Integer|)) |#2|) "\\spad{setelt(u,{}i..j,{}x)} (also written: \\axiom{\\spad{u}(\\spad{i}..\\spad{j}) \\spad{:=} \\spad{x}}) destructively replaces each element in the segment \\axiom{\\spad{u}(\\spad{i}..\\spad{j})} by \\spad{x}. The value \\spad{x} is returned. Note: \\spad{u} is destructively change so that \\axiom{\\spad{u}.\\spad{k} \\spad{:=} \\spad{x} for \\spad{k} in \\spad{i}..\\spad{j}}; its length remains unchanged.")) (|insert| (($ $ $ (|Integer|)) "\\spad{insert(v,{}u,{}k)} returns a copy of \\spad{u} having \\spad{v} inserted beginning at the \\axiom{\\spad{i}}th element. Note: \\axiom{insert(\\spad{v},{}\\spad{u},{}\\spad{k}) = concat( \\spad{u}(0..\\spad{k}-1),{} \\spad{v},{} \\spad{u}(\\spad{k}..) )}.") (($ |#2| $ (|Integer|)) "\\spad{insert(x,{}u,{}i)} returns a copy of \\spad{u} having \\spad{x} as its \\axiom{\\spad{i}}th element. Note: \\axiom{insert(\\spad{x},{}a,{}\\spad{k}) = concat(concat(a(0..\\spad{k}-1),{}\\spad{x}),{}a(\\spad{k}..))}.")) (|delete| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{delete(u,{}i..j)} returns a copy of \\spad{u} with the \\axiom{\\spad{i}}th through \\axiom{\\spad{j}}th element deleted. Note: \\axiom{delete(a,{}\\spad{i}..\\spad{j}) = concat(a(0..\\spad{i}-1),{}a(\\spad{j+1}..))}.") (($ $ (|Integer|)) "\\spad{delete(u,{}i)} returns a copy of \\spad{u} with the \\axiom{\\spad{i}}th element deleted. Note: for lists,{} \\axiom{delete(a,{}\\spad{i}) \\spad{==} concat(a(0..\\spad{i} - 1),{}a(\\spad{i} + 1,{}..))}.")) (|elt| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{elt(u,{}i..j)} (also written: \\axiom{a(\\spad{i}..\\spad{j})}) returns the aggregate of elements \\axiom{\\spad{u}} for \\spad{k} from \\spad{i} to \\spad{j} in that order. Note: in general,{} \\axiom{a.\\spad{s} = [a.\\spad{k} for \\spad{i} in \\spad{s}]}.")) (|map| (($ (|Mapping| |#2| |#2| |#2|) $ $) "\\spad{map(f,{}u,{}v)} returns a new collection \\spad{w} with elements \\axiom{\\spad{z} = \\spad{f}(\\spad{x},{}\\spad{y})} for corresponding elements \\spad{x} and \\spad{y} from \\spad{u} and \\spad{v}. Note: for linear aggregates,{} \\axiom{\\spad{w}.\\spad{i} = \\spad{f}(\\spad{u}.\\spad{i},{}\\spad{v}.\\spad{i})}.")) (|concat| (($ (|List| $)) "\\spad{concat(u)},{} where \\spad{u} is a lists of aggregates \\axiom{[a,{}\\spad{b},{}...,{}\\spad{c}]},{} returns a single aggregate consisting of the elements of \\axiom{a} followed by those of \\spad{b} followed ... by the elements of \\spad{c}. Note: \\axiom{concat(a,{}\\spad{b},{}...,{}\\spad{c}) = concat(a,{}concat(\\spad{b},{}...,{}\\spad{c}))}.") (($ $ $) "\\spad{concat(u,{}v)} returns an aggregate consisting of the elements of \\spad{u} followed by the elements of \\spad{v}. Note: if \\axiom{\\spad{w} = concat(\\spad{u},{}\\spad{v})} then \\axiom{\\spad{w}.\\spad{i} = \\spad{u}.\\spad{i} for \\spad{i} in indices \\spad{u}} and \\axiom{\\spad{w}.(\\spad{j} + maxIndex \\spad{u}) = \\spad{v}.\\spad{j} for \\spad{j} in indices \\spad{v}}.") (($ |#2| $) "\\spad{concat(x,{}u)} returns aggregate \\spad{u} with additional element at the front. Note: for lists: \\axiom{concat(\\spad{x},{}\\spad{u}) \\spad{==} concat([\\spad{x}],{}\\spad{u})}.") (($ $ |#2|) "\\spad{concat(u,{}x)} returns aggregate \\spad{u} with additional element \\spad{x} at the end. Note: for lists,{} \\axiom{concat(\\spad{u},{}\\spad{x}) \\spad{==} concat(\\spad{u},{}[\\spad{x}])}")) (|new| (($ (|NonNegativeInteger|) |#2|) "\\spad{new(n,{}x)} returns \\axiom{fill!(new \\spad{n},{}\\spad{x})}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4403)))
+((|HasAttribute| |#1| (QUOTE -4404)))
(-645 S)
((|constructor| (NIL "A linear aggregate is an aggregate whose elements are indexed by integers. Examples of linear aggregates are strings,{} lists,{} and arrays. Most of the exported operations for linear aggregates are non-destructive but are not always efficient for a particular aggregate. For example,{} \\spadfun{concat} of two lists needs only to copy its first argument,{} whereas \\spadfun{concat} of two arrays needs to copy both arguments. Most of the operations exported here apply to infinite objects (\\spadignore{e.g.} streams) as well to finite ones. For finite linear aggregates,{} see \\spadtype{FiniteLinearAggregate}.")) (|setelt| ((|#1| $ (|UniversalSegment| (|Integer|)) |#1|) "\\spad{setelt(u,{}i..j,{}x)} (also written: \\axiom{\\spad{u}(\\spad{i}..\\spad{j}) \\spad{:=} \\spad{x}}) destructively replaces each element in the segment \\axiom{\\spad{u}(\\spad{i}..\\spad{j})} by \\spad{x}. The value \\spad{x} is returned. Note: \\spad{u} is destructively change so that \\axiom{\\spad{u}.\\spad{k} \\spad{:=} \\spad{x} for \\spad{k} in \\spad{i}..\\spad{j}}; its length remains unchanged.")) (|insert| (($ $ $ (|Integer|)) "\\spad{insert(v,{}u,{}k)} returns a copy of \\spad{u} having \\spad{v} inserted beginning at the \\axiom{\\spad{i}}th element. Note: \\axiom{insert(\\spad{v},{}\\spad{u},{}\\spad{k}) = concat( \\spad{u}(0..\\spad{k}-1),{} \\spad{v},{} \\spad{u}(\\spad{k}..) )}.") (($ |#1| $ (|Integer|)) "\\spad{insert(x,{}u,{}i)} returns a copy of \\spad{u} having \\spad{x} as its \\axiom{\\spad{i}}th element. Note: \\axiom{insert(\\spad{x},{}a,{}\\spad{k}) = concat(concat(a(0..\\spad{k}-1),{}\\spad{x}),{}a(\\spad{k}..))}.")) (|delete| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{delete(u,{}i..j)} returns a copy of \\spad{u} with the \\axiom{\\spad{i}}th through \\axiom{\\spad{j}}th element deleted. Note: \\axiom{delete(a,{}\\spad{i}..\\spad{j}) = concat(a(0..\\spad{i}-1),{}a(\\spad{j+1}..))}.") (($ $ (|Integer|)) "\\spad{delete(u,{}i)} returns a copy of \\spad{u} with the \\axiom{\\spad{i}}th element deleted. Note: for lists,{} \\axiom{delete(a,{}\\spad{i}) \\spad{==} concat(a(0..\\spad{i} - 1),{}a(\\spad{i} + 1,{}..))}.")) (|elt| (($ $ (|UniversalSegment| (|Integer|))) "\\spad{elt(u,{}i..j)} (also written: \\axiom{a(\\spad{i}..\\spad{j})}) returns the aggregate of elements \\axiom{\\spad{u}} for \\spad{k} from \\spad{i} to \\spad{j} in that order. Note: in general,{} \\axiom{a.\\spad{s} = [a.\\spad{k} for \\spad{i} in \\spad{s}]}.")) (|map| (($ (|Mapping| |#1| |#1| |#1|) $ $) "\\spad{map(f,{}u,{}v)} returns a new collection \\spad{w} with elements \\axiom{\\spad{z} = \\spad{f}(\\spad{x},{}\\spad{y})} for corresponding elements \\spad{x} and \\spad{y} from \\spad{u} and \\spad{v}. Note: for linear aggregates,{} \\axiom{\\spad{w}.\\spad{i} = \\spad{f}(\\spad{u}.\\spad{i},{}\\spad{v}.\\spad{i})}.")) (|concat| (($ (|List| $)) "\\spad{concat(u)},{} where \\spad{u} is a lists of aggregates \\axiom{[a,{}\\spad{b},{}...,{}\\spad{c}]},{} returns a single aggregate consisting of the elements of \\axiom{a} followed by those of \\spad{b} followed ... by the elements of \\spad{c}. Note: \\axiom{concat(a,{}\\spad{b},{}...,{}\\spad{c}) = concat(a,{}concat(\\spad{b},{}...,{}\\spad{c}))}.") (($ $ $) "\\spad{concat(u,{}v)} returns an aggregate consisting of the elements of \\spad{u} followed by the elements of \\spad{v}. Note: if \\axiom{\\spad{w} = concat(\\spad{u},{}\\spad{v})} then \\axiom{\\spad{w}.\\spad{i} = \\spad{u}.\\spad{i} for \\spad{i} in indices \\spad{u}} and \\axiom{\\spad{w}.(\\spad{j} + maxIndex \\spad{u}) = \\spad{v}.\\spad{j} for \\spad{j} in indices \\spad{v}}.") (($ |#1| $) "\\spad{concat(x,{}u)} returns aggregate \\spad{u} with additional element at the front. Note: for lists: \\axiom{concat(\\spad{x},{}\\spad{u}) \\spad{==} concat([\\spad{x}],{}\\spad{u})}.") (($ $ |#1|) "\\spad{concat(u,{}x)} returns aggregate \\spad{u} with additional element \\spad{x} at the end. Note: for lists,{} \\axiom{concat(\\spad{u},{}\\spad{x}) \\spad{==} concat(\\spad{u},{}[\\spad{x}])}")) (|new| (($ (|NonNegativeInteger|) |#1|) "\\spad{new(n,{}x)} returns \\axiom{fill!(new \\spad{n},{}\\spad{x})}.")))
NIL
NIL
-(-646 R -3197 L)
+(-646 R -3196 L)
((|constructor| (NIL "\\spad{ElementaryFunctionLODESolver} provides the top-level functions for finding closed form solutions of linear ordinary differential equations and initial value problems.")) (|solve| (((|Union| |#2| "failed") |#3| |#2| (|Symbol|) |#2| (|List| |#2|)) "\\spad{solve(op,{} g,{} x,{} a,{} [y0,{}...,{}ym])} returns either the solution of the initial value problem \\spad{op y = g,{} y(a) = y0,{} y'(a) = y1,{}...} or \"failed\" if the solution cannot be found; \\spad{x} is the dependent variable.") (((|Union| (|Record| (|:| |particular| |#2|) (|:| |basis| (|List| |#2|))) "failed") |#3| |#2| (|Symbol|)) "\\spad{solve(op,{} g,{} x)} returns either a solution of the ordinary differential equation \\spad{op y = g} or \"failed\" if no non-trivial solution can be found; When found,{} the solution is returned in the form \\spad{[h,{} [b1,{}...,{}bm]]} where \\spad{h} is a particular solution and and \\spad{[b1,{}...bm]} are linearly independent solutions of the associated homogenuous equation \\spad{op y = 0}. A full basis for the solutions of the homogenuous equation is not always returned,{} only the solutions which were found; \\spad{x} is the dependent variable.")))
NIL
NIL
(-647 A)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperator1} defines a ring of differential operators with coefficients in a differential ring A. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-362))))
(-648 A M)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperator2} defines a ring of differential operators with coefficients in a differential ring A and acting on an A-module \\spad{M}. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")) (|differentiate| (($ $) "\\spad{differentiate(x)} returns the derivative of \\spad{x}")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-362))))
(-649 S A)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperatorCategory} is the category of differential operators with coefficients in a ring A with a given derivation. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")) (|directSum| (($ $ $) "\\spad{directSum(a,{}b)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the sums of a solution of \\spad{a} by a solution of \\spad{b}.")) (|symmetricSquare| (($ $) "\\spad{symmetricSquare(a)} computes \\spad{symmetricProduct(a,{}a)} using a more efficient method.")) (|symmetricPower| (($ $ (|NonNegativeInteger|)) "\\spad{symmetricPower(a,{}n)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of \\spad{n} solutions of \\spad{a}.")) (|symmetricProduct| (($ $ $) "\\spad{symmetricProduct(a,{}b)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of a solution of \\spad{a} by a solution of \\spad{b}.")) (|adjoint| (($ $) "\\spad{adjoint(a)} returns the adjoint operator of a.")) (D (($) "\\spad{D()} provides the operator corresponding to a derivation in the ring \\spad{A}.")))
@@ -2530,15 +2530,15 @@ NIL
((|HasCategory| |#2| (QUOTE (-362))))
(-650 A)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperatorCategory} is the category of differential operators with coefficients in a ring A with a given derivation. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")) (|directSum| (($ $ $) "\\spad{directSum(a,{}b)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the sums of a solution of \\spad{a} by a solution of \\spad{b}.")) (|symmetricSquare| (($ $) "\\spad{symmetricSquare(a)} computes \\spad{symmetricProduct(a,{}a)} using a more efficient method.")) (|symmetricPower| (($ $ (|NonNegativeInteger|)) "\\spad{symmetricPower(a,{}n)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of \\spad{n} solutions of \\spad{a}.")) (|symmetricProduct| (($ $ $) "\\spad{symmetricProduct(a,{}b)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of a solution of \\spad{a} by a solution of \\spad{b}.")) (|adjoint| (($ $) "\\spad{adjoint(a)} returns the adjoint operator of a.")) (D (($) "\\spad{D()} provides the operator corresponding to a derivation in the ring \\spad{A}.")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
NIL
-(-651 -3197 UP)
+(-651 -3196 UP)
((|constructor| (NIL "\\spadtype{LinearOrdinaryDifferentialOperatorFactorizer} provides a factorizer for linear ordinary differential operators whose coefficients are rational functions.")) (|factor1| (((|List| (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) "\\spad{factor1(a)} returns the factorisation of a,{} assuming that a has no first-order right factor.")) (|factor| (((|List| (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) "\\spad{factor(a)} returns the factorisation of a.") (((|List| (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|)) "\\spad{factor(a,{} zeros)} returns the factorisation of a. \\spad{zeros} is a zero finder in \\spad{UP}.")))
NIL
((|HasCategory| |#1| (QUOTE (-27))))
-(-652 A -4330)
+(-652 A -3679)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperator} defines a ring of differential operators with coefficients in a ring A with a given derivation. Multiplication of operators corresponds to functional composition: \\indented{4}{\\spad{(L1 * L2).(f) = L1 L2 f}}")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-362))))
(-653 A L)
((|constructor| (NIL "\\spad{LinearOrdinaryDifferentialOperatorsOps} provides symmetric products and sums for linear ordinary differential operators.")) (|directSum| ((|#2| |#2| |#2| (|Mapping| |#1| |#1|)) "\\spad{directSum(a,{}b,{}D)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the sums of a solution of \\spad{a} by a solution of \\spad{b}. \\spad{D} is the derivation to use.")) (|symmetricPower| ((|#2| |#2| (|NonNegativeInteger|) (|Mapping| |#1| |#1|)) "\\spad{symmetricPower(a,{}n,{}D)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of \\spad{n} solutions of \\spad{a}. \\spad{D} is the derivation to use.")) (|symmetricProduct| ((|#2| |#2| |#2| (|Mapping| |#1| |#1|)) "\\spad{symmetricProduct(a,{}b,{}D)} computes an operator \\spad{c} of minimal order such that the nullspace of \\spad{c} is generated by all the products of a solution of \\spad{a} by a solution of \\spad{b}. \\spad{D} is the derivation to use.")))
@@ -2554,7 +2554,7 @@ NIL
NIL
(-656 M R S)
((|constructor| (NIL "Localize(\\spad{M},{}\\spad{R},{}\\spad{S}) produces fractions with numerators from an \\spad{R} module \\spad{M} and denominators from some multiplicative subset \\spad{D} of \\spad{R}.")) (|denom| ((|#3| $) "\\spad{denom x} returns the denominator of \\spad{x}.")) (|numer| ((|#1| $) "\\spad{numer x} returns the numerator of \\spad{x}.")) (/ (($ |#1| |#3|) "\\spad{m / d} divides the element \\spad{m} by \\spad{d}.") (($ $ |#3|) "\\spad{x / d} divides the element \\spad{x} by \\spad{d}.")))
-((-4397 . T) (-4396 . T))
+((-4398 . T) (-4397 . T))
((|HasCategory| |#1| (QUOTE (-786))))
(-657 R)
((|constructor| (NIL "Given a PolynomialFactorizationExplicit ring,{} this package provides a defaulting rule for the \\spad{solveLinearPolynomialEquation} operation,{} by moving into the field of fractions,{} and solving it there via the \\spad{multiEuclidean} operation.")) (|solveLinearPolynomialEquationByFractions| (((|Union| (|List| (|SparseUnivariatePolynomial| |#1|)) "failed") (|List| (|SparseUnivariatePolynomial| |#1|)) (|SparseUnivariatePolynomial| |#1|)) "\\spad{solveLinearPolynomialEquationByFractions([f1,{} ...,{} fn],{} g)} (where the \\spad{fi} are relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g/prod \\spad{fi} = sum ai/fi} or returns \"failed\" if no such exists.")))
@@ -2562,7 +2562,7 @@ NIL
NIL
(-658 |VarSet| R)
((|constructor| (NIL "This type supports Lie polynomials in Lyndon basis see Free Lie Algebras by \\spad{C}. Reutenauer (Oxford science publications). \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|construct| (($ $ (|LyndonWord| |#1|)) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket \\axiom{[\\spad{x},{}\\spad{y}]}.") (($ (|LyndonWord| |#1|) $) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket \\axiom{[\\spad{x},{}\\spad{y}]}.") (($ (|LyndonWord| |#1|) (|LyndonWord| |#1|)) "\\axiom{construct(\\spad{x},{}\\spad{y})} returns the Lie bracket \\axiom{[\\spad{x},{}\\spad{y}]}.")) (|LiePolyIfCan| (((|Union| $ "failed") (|XDistributedPolynomial| |#1| |#2|)) "\\axiom{LiePolyIfCan(\\spad{p})} returns \\axiom{\\spad{p}} in Lyndon basis if \\axiom{\\spad{p}} is a Lie polynomial,{} otherwise \\axiom{\"failed\"} is returned.")))
-((|JacobiIdentity| . T) (|NullSquare| . T) (-4397 . T) (-4396 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4398 . T) (-4397 . T))
((|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-171))))
(-659 A S)
((|constructor| (NIL "A list aggregate is a model for a linked list data structure. A linked list is a versatile data structure. Insertion and deletion are efficient and searching is a linear operation.")) (|list| (($ |#2|) "\\spad{list(x)} returns the list of one element \\spad{x}.")))
@@ -2570,13 +2570,13 @@ NIL
NIL
(-660 S)
((|constructor| (NIL "A list aggregate is a model for a linked list data structure. A linked list is a versatile data structure. Insertion and deletion are efficient and searching is a linear operation.")) (|list| (($ |#1|) "\\spad{list(x)} returns the list of one element \\spad{x}.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
NIL
-(-661 -3197)
+(-661 -3196)
((|constructor| (NIL "This package solves linear system in the matrix form \\spad{AX = B}. It is essentially a particular instantiation of the package \\spadtype{LinearSystemMatrixPackage} for Matrix and Vector. This package\\spad{'s} existence makes it easier to use \\spadfun{solve} in the AXIOM interpreter.")) (|rank| (((|NonNegativeInteger|) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{rank(A,{}B)} computes the rank of the complete matrix \\spad{(A|B)} of the linear system \\spad{AX = B}.")) (|hasSolution?| (((|Boolean|) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{hasSolution?(A,{}B)} tests if the linear system \\spad{AX = B} has a solution.")) (|particularSolution| (((|Union| (|Vector| |#1|) "failed") (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{particularSolution(A,{}B)} finds a particular solution of the linear system \\spad{AX = B}.")) (|solve| (((|List| (|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|))))) (|List| (|List| |#1|)) (|List| (|Vector| |#1|))) "\\spad{solve(A,{}LB)} finds a particular soln of the systems \\spad{AX = B} and a basis of the associated homogeneous systems \\spad{AX = 0} where \\spad{B} varies in the list of column vectors \\spad{LB}.") (((|List| (|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|))))) (|Matrix| |#1|) (|List| (|Vector| |#1|))) "\\spad{solve(A,{}LB)} finds a particular soln of the systems \\spad{AX = B} and a basis of the associated homogeneous systems \\spad{AX = 0} where \\spad{B} varies in the list of column vectors \\spad{LB}.") (((|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|)))) (|List| (|List| |#1|)) (|Vector| |#1|)) "\\spad{solve(A,{}B)} finds a particular solution of the system \\spad{AX = B} and a basis of the associated homogeneous system \\spad{AX = 0}.") (((|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|)))) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{solve(A,{}B)} finds a particular solution of the system \\spad{AX = B} and a basis of the associated homogeneous system \\spad{AX = 0}.")))
NIL
NIL
-(-662 -3197 |Row| |Col| M)
+(-662 -3196 |Row| |Col| M)
((|constructor| (NIL "This package solves linear system in the matrix form \\spad{AX = B}.")) (|rank| (((|NonNegativeInteger|) |#4| |#3|) "\\spad{rank(A,{}B)} computes the rank of the complete matrix \\spad{(A|B)} of the linear system \\spad{AX = B}.")) (|hasSolution?| (((|Boolean|) |#4| |#3|) "\\spad{hasSolution?(A,{}B)} tests if the linear system \\spad{AX = B} has a solution.")) (|particularSolution| (((|Union| |#3| "failed") |#4| |#3|) "\\spad{particularSolution(A,{}B)} finds a particular solution of the linear system \\spad{AX = B}.")) (|solve| (((|List| (|Record| (|:| |particular| (|Union| |#3| "failed")) (|:| |basis| (|List| |#3|)))) |#4| (|List| |#3|)) "\\spad{solve(A,{}LB)} finds a particular soln of the systems \\spad{AX = B} and a basis of the associated homogeneous systems \\spad{AX = 0} where \\spad{B} varies in the list of column vectors \\spad{LB}.") (((|Record| (|:| |particular| (|Union| |#3| "failed")) (|:| |basis| (|List| |#3|))) |#4| |#3|) "\\spad{solve(A,{}B)} finds a particular solution of the system \\spad{AX = B} and a basis of the associated homogeneous system \\spad{AX = 0}.")))
NIL
NIL
@@ -2586,8 +2586,8 @@ NIL
NIL
(-664 |n| R)
((|constructor| (NIL "LieSquareMatrix(\\spad{n},{}\\spad{R}) implements the Lie algebra of the \\spad{n} by \\spad{n} matrices over the commutative ring \\spad{R}. The Lie bracket (commutator) of the algebra is given by \\spad{a*b := (a *\\$SQMATRIX(n,{}R) b - b *\\$SQMATRIX(n,{}R) a)},{} where \\spadfun{*\\$SQMATRIX(\\spad{n},{}\\spad{R})} is the usual matrix multiplication.")))
-((-4399 . T) (-4402 . T) (-4396 . T) (-4397 . T))
-((|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasAttribute| |#2| (QUOTE (-4404 "*"))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#2| (QUOTE (-306))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-554))) (-4037 (|HasAttribute| |#2| (QUOTE (-4404 "*"))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-232)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-171))))
+((-4400 . T) (-4403 . T) (-4397 . T) (-4398 . T))
+((|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasAttribute| |#2| (QUOTE (-4405 "*"))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#2| (QUOTE (-306))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-554))) (-4037 (|HasAttribute| |#2| (QUOTE (-4405 "*"))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-232)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-171))))
(-665)
((|constructor| (NIL "This domain represents `literal sequence' syntax.")) (|elements| (((|List| (|SpadAst|)) $) "\\spad{elements(e)} returns the list of expressions in the `literal' list `e'.")))
NIL
@@ -2651,10 +2651,10 @@ NIL
(-680 S R |Row| |Col|)
((|constructor| (NIL "\\spadtype{MatrixCategory} is a general matrix category which allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and colums returned as objects of type Col. A domain belonging to this category will be shallowly mutable. The index of the 'first' row may be obtained by calling the function \\spadfun{minRowIndex}. The index of the 'first' column may be obtained by calling the function \\spadfun{minColIndex}. The index of the first element of a Row is the same as the index of the first column in a matrix and vice versa.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|minordet| ((|#2| $) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors. Error: if the matrix is not square.")) (|determinant| ((|#2| $) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}. Error: if the matrix is not square.")) (|nullSpace| (((|List| |#4|) $) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) $) "\\spad{nullity(m)} returns the nullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| (($ $) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (/ (($ $ |#2|) "\\spad{m/r} divides the elements of \\spad{m} by \\spad{r}. Error: if \\spad{r = 0}.")) (|exquo| (((|Union| $ "failed") $ |#2|) "\\spad{exquo(m,{}r)} computes the exact quotient of the elements of \\spad{m} by \\spad{r},{} returning \\axiom{\"failed\"} if this is not possible.")) (** (($ $ (|Integer|)) "\\spad{m**n} computes an integral power of the matrix \\spad{m}. Error: if matrix is not square or if the matrix is square but not invertible.") (($ $ (|NonNegativeInteger|)) "\\spad{x ** n} computes a non-negative integral power of the matrix \\spad{x}. Error: if the matrix is not square.")) (* ((|#3| |#3| $) "\\spad{r * x} is the product of the row vector \\spad{r} and the matrix \\spad{x}. Error: if the dimensions are incompatible.") ((|#4| $ |#4|) "\\spad{x * c} is the product of the matrix \\spad{x} and the column vector \\spad{c}. Error: if the dimensions are incompatible.") (($ (|Integer|) $) "\\spad{n * x} is an integer multiple.") (($ $ |#2|) "\\spad{x * r} is the right scalar multiple of the scalar \\spad{r} and the matrix \\spad{x}.") (($ |#2| $) "\\spad{r*x} is the left scalar multiple of the scalar \\spad{r} and the matrix \\spad{x}.") (($ $ $) "\\spad{x * y} is the product of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (- (($ $) "\\spad{-x} returns the negative of the matrix \\spad{x}.") (($ $ $) "\\spad{x - y} is the difference of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (+ (($ $ $) "\\spad{x + y} is the sum of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (|setsubMatrix!| (($ $ (|Integer|) (|Integer|) $) "\\spad{setsubMatrix(x,{}i1,{}j1,{}y)} destructively alters the matrix \\spad{x}. Here \\spad{x(i,{}j)} is set to \\spad{y(i-i1+1,{}j-j1+1)} for \\spad{i = i1,{}...,{}i1-1+nrows y} and \\spad{j = j1,{}...,{}j1-1+ncols y}.")) (|subMatrix| (($ $ (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{subMatrix(x,{}i1,{}i2,{}j1,{}j2)} extracts the submatrix \\spad{[x(i,{}j)]} where the index \\spad{i} ranges from \\spad{i1} to \\spad{i2} and the index \\spad{j} ranges from \\spad{j1} to \\spad{j2}.")) (|swapColumns!| (($ $ (|Integer|) (|Integer|)) "\\spad{swapColumns!(m,{}i,{}j)} interchanges the \\spad{i}th and \\spad{j}th columns of \\spad{m}. This destructively alters the matrix.")) (|swapRows!| (($ $ (|Integer|) (|Integer|)) "\\spad{swapRows!(m,{}i,{}j)} interchanges the \\spad{i}th and \\spad{j}th rows of \\spad{m}. This destructively alters the matrix.")) (|setelt| (($ $ (|List| (|Integer|)) (|List| (|Integer|)) $) "\\spad{setelt(x,{}rowList,{}colList,{}y)} destructively alters the matrix \\spad{x}. If \\spad{y} is \\spad{m}-by-\\spad{n},{} \\spad{rowList = [i<1>,{}i<2>,{}...,{}i<m>]} and \\spad{colList = [j<1>,{}j<2>,{}...,{}j<n>]},{} then \\spad{x(i<k>,{}j<l>)} is set to \\spad{y(k,{}l)} for \\spad{k = 1,{}...,{}m} and \\spad{l = 1,{}...,{}n}.")) (|elt| (($ $ (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{elt(x,{}rowList,{}colList)} returns an \\spad{m}-by-\\spad{n} matrix consisting of elements of \\spad{x},{} where \\spad{m = \\# rowList} and \\spad{n = \\# colList}. If \\spad{rowList = [i<1>,{}i<2>,{}...,{}i<m>]} and \\spad{colList = [j<1>,{}j<2>,{}...,{}j<n>]},{} then the \\spad{(k,{}l)}th entry of \\spad{elt(x,{}rowList,{}colList)} is \\spad{x(i<k>,{}j<l>)}.")) (|listOfLists| (((|List| (|List| |#2|)) $) "\\spad{listOfLists(m)} returns the rows of the matrix \\spad{m} as a list of lists.")) (|vertConcat| (($ $ $) "\\spad{vertConcat(x,{}y)} vertically concatenates two matrices with an equal number of columns. The entries of \\spad{y} appear below of the entries of \\spad{x}. Error: if the matrices do not have the same number of columns.")) (|horizConcat| (($ $ $) "\\spad{horizConcat(x,{}y)} horizontally concatenates two matrices with an equal number of rows. The entries of \\spad{y} appear to the right of the entries of \\spad{x}. Error: if the matrices do not have the same number of rows.")) (|squareTop| (($ $) "\\spad{squareTop(m)} returns an \\spad{n}-by-\\spad{n} matrix consisting of the first \\spad{n} rows of the \\spad{m}-by-\\spad{n} matrix \\spad{m}. Error: if \\spad{m < n}.")) (|transpose| (($ $) "\\spad{transpose(m)} returns the transpose of the matrix \\spad{m}.") (($ |#3|) "\\spad{transpose(r)} converts the row \\spad{r} to a row matrix.")) (|coerce| (($ |#4|) "\\spad{coerce(col)} converts the column \\spad{col} to a column matrix.")) (|diagonalMatrix| (($ (|List| $)) "\\spad{diagonalMatrix([m1,{}...,{}mk])} creates a block diagonal matrix \\spad{M} with block matrices {\\em m1},{}...,{}{\\em mk} down the diagonal,{} with 0 block matrices elsewhere. More precisly: if \\spad{\\spad{ri} := nrows \\spad{mi}},{} \\spad{\\spad{ci} := ncols \\spad{mi}},{} then \\spad{m} is an (\\spad{r1+}..\\spad{+rk}) by (\\spad{c1+}..\\spad{+ck}) - matrix with entries \\spad{m.i.j = ml.(i-r1-..-r(l-1)).(j-n1-..-n(l-1))},{} if \\spad{(r1+..+r(l-1)) < i <= r1+..+rl} and \\spad{(c1+..+c(l-1)) < i <= c1+..+cl},{} \\spad{m.i.j} = 0 otherwise.") (($ (|List| |#2|)) "\\spad{diagonalMatrix(l)} returns a diagonal matrix with the elements of \\spad{l} on the diagonal.")) (|scalarMatrix| (($ (|NonNegativeInteger|) |#2|) "\\spad{scalarMatrix(n,{}r)} returns an \\spad{n}-by-\\spad{n} matrix with \\spad{r}\\spad{'s} on the diagonal and zeroes elsewhere.")) (|matrix| (($ (|List| (|List| |#2|))) "\\spad{matrix(l)} converts the list of lists \\spad{l} to a matrix,{} where the list of lists is viewed as a list of the rows of the matrix.")) (|zero| (($ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{zero(m,{}n)} returns an \\spad{m}-by-\\spad{n} zero matrix.")) (|antisymmetric?| (((|Boolean|) $) "\\spad{antisymmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and antisymmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = -m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|symmetric?| (((|Boolean|) $) "\\spad{symmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and symmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|diagonal?| (((|Boolean|) $) "\\spad{diagonal?(m)} returns \\spad{true} if the matrix \\spad{m} is square and diagonal (\\spadignore{i.e.} all entries of \\spad{m} not on the diagonal are zero) and \\spad{false} otherwise.")) (|square?| (((|Boolean|) $) "\\spad{square?(m)} returns \\spad{true} if \\spad{m} is a square matrix (\\spadignore{i.e.} if \\spad{m} has the same number of rows as columns) and \\spad{false} otherwise.")) (|finiteAggregate| ((|attribute|) "matrices are finite")) (|shallowlyMutable| ((|attribute|) "One may destructively alter matrices")))
NIL
-((|HasAttribute| |#2| (QUOTE (-4404 "*"))) (|HasCategory| |#2| (QUOTE (-306))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-554))))
+((|HasAttribute| |#2| (QUOTE (-4405 "*"))) (|HasCategory| |#2| (QUOTE (-306))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-554))))
(-681 R |Row| |Col|)
((|constructor| (NIL "\\spadtype{MatrixCategory} is a general matrix category which allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and colums returned as objects of type Col. A domain belonging to this category will be shallowly mutable. The index of the 'first' row may be obtained by calling the function \\spadfun{minRowIndex}. The index of the 'first' column may be obtained by calling the function \\spadfun{minColIndex}. The index of the first element of a Row is the same as the index of the first column in a matrix and vice versa.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|minordet| ((|#1| $) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors. Error: if the matrix is not square.")) (|determinant| ((|#1| $) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}. Error: if the matrix is not square.")) (|nullSpace| (((|List| |#3|) $) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) $) "\\spad{nullity(m)} returns the nullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| (($ $) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (/ (($ $ |#1|) "\\spad{m/r} divides the elements of \\spad{m} by \\spad{r}. Error: if \\spad{r = 0}.")) (|exquo| (((|Union| $ "failed") $ |#1|) "\\spad{exquo(m,{}r)} computes the exact quotient of the elements of \\spad{m} by \\spad{r},{} returning \\axiom{\"failed\"} if this is not possible.")) (** (($ $ (|Integer|)) "\\spad{m**n} computes an integral power of the matrix \\spad{m}. Error: if matrix is not square or if the matrix is square but not invertible.") (($ $ (|NonNegativeInteger|)) "\\spad{x ** n} computes a non-negative integral power of the matrix \\spad{x}. Error: if the matrix is not square.")) (* ((|#2| |#2| $) "\\spad{r * x} is the product of the row vector \\spad{r} and the matrix \\spad{x}. Error: if the dimensions are incompatible.") ((|#3| $ |#3|) "\\spad{x * c} is the product of the matrix \\spad{x} and the column vector \\spad{c}. Error: if the dimensions are incompatible.") (($ (|Integer|) $) "\\spad{n * x} is an integer multiple.") (($ $ |#1|) "\\spad{x * r} is the right scalar multiple of the scalar \\spad{r} and the matrix \\spad{x}.") (($ |#1| $) "\\spad{r*x} is the left scalar multiple of the scalar \\spad{r} and the matrix \\spad{x}.") (($ $ $) "\\spad{x * y} is the product of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (- (($ $) "\\spad{-x} returns the negative of the matrix \\spad{x}.") (($ $ $) "\\spad{x - y} is the difference of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (+ (($ $ $) "\\spad{x + y} is the sum of the matrices \\spad{x} and \\spad{y}. Error: if the dimensions are incompatible.")) (|setsubMatrix!| (($ $ (|Integer|) (|Integer|) $) "\\spad{setsubMatrix(x,{}i1,{}j1,{}y)} destructively alters the matrix \\spad{x}. Here \\spad{x(i,{}j)} is set to \\spad{y(i-i1+1,{}j-j1+1)} for \\spad{i = i1,{}...,{}i1-1+nrows y} and \\spad{j = j1,{}...,{}j1-1+ncols y}.")) (|subMatrix| (($ $ (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{subMatrix(x,{}i1,{}i2,{}j1,{}j2)} extracts the submatrix \\spad{[x(i,{}j)]} where the index \\spad{i} ranges from \\spad{i1} to \\spad{i2} and the index \\spad{j} ranges from \\spad{j1} to \\spad{j2}.")) (|swapColumns!| (($ $ (|Integer|) (|Integer|)) "\\spad{swapColumns!(m,{}i,{}j)} interchanges the \\spad{i}th and \\spad{j}th columns of \\spad{m}. This destructively alters the matrix.")) (|swapRows!| (($ $ (|Integer|) (|Integer|)) "\\spad{swapRows!(m,{}i,{}j)} interchanges the \\spad{i}th and \\spad{j}th rows of \\spad{m}. This destructively alters the matrix.")) (|setelt| (($ $ (|List| (|Integer|)) (|List| (|Integer|)) $) "\\spad{setelt(x,{}rowList,{}colList,{}y)} destructively alters the matrix \\spad{x}. If \\spad{y} is \\spad{m}-by-\\spad{n},{} \\spad{rowList = [i<1>,{}i<2>,{}...,{}i<m>]} and \\spad{colList = [j<1>,{}j<2>,{}...,{}j<n>]},{} then \\spad{x(i<k>,{}j<l>)} is set to \\spad{y(k,{}l)} for \\spad{k = 1,{}...,{}m} and \\spad{l = 1,{}...,{}n}.")) (|elt| (($ $ (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{elt(x,{}rowList,{}colList)} returns an \\spad{m}-by-\\spad{n} matrix consisting of elements of \\spad{x},{} where \\spad{m = \\# rowList} and \\spad{n = \\# colList}. If \\spad{rowList = [i<1>,{}i<2>,{}...,{}i<m>]} and \\spad{colList = [j<1>,{}j<2>,{}...,{}j<n>]},{} then the \\spad{(k,{}l)}th entry of \\spad{elt(x,{}rowList,{}colList)} is \\spad{x(i<k>,{}j<l>)}.")) (|listOfLists| (((|List| (|List| |#1|)) $) "\\spad{listOfLists(m)} returns the rows of the matrix \\spad{m} as a list of lists.")) (|vertConcat| (($ $ $) "\\spad{vertConcat(x,{}y)} vertically concatenates two matrices with an equal number of columns. The entries of \\spad{y} appear below of the entries of \\spad{x}. Error: if the matrices do not have the same number of columns.")) (|horizConcat| (($ $ $) "\\spad{horizConcat(x,{}y)} horizontally concatenates two matrices with an equal number of rows. The entries of \\spad{y} appear to the right of the entries of \\spad{x}. Error: if the matrices do not have the same number of rows.")) (|squareTop| (($ $) "\\spad{squareTop(m)} returns an \\spad{n}-by-\\spad{n} matrix consisting of the first \\spad{n} rows of the \\spad{m}-by-\\spad{n} matrix \\spad{m}. Error: if \\spad{m < n}.")) (|transpose| (($ $) "\\spad{transpose(m)} returns the transpose of the matrix \\spad{m}.") (($ |#2|) "\\spad{transpose(r)} converts the row \\spad{r} to a row matrix.")) (|coerce| (($ |#3|) "\\spad{coerce(col)} converts the column \\spad{col} to a column matrix.")) (|diagonalMatrix| (($ (|List| $)) "\\spad{diagonalMatrix([m1,{}...,{}mk])} creates a block diagonal matrix \\spad{M} with block matrices {\\em m1},{}...,{}{\\em mk} down the diagonal,{} with 0 block matrices elsewhere. More precisly: if \\spad{\\spad{ri} := nrows \\spad{mi}},{} \\spad{\\spad{ci} := ncols \\spad{mi}},{} then \\spad{m} is an (\\spad{r1+}..\\spad{+rk}) by (\\spad{c1+}..\\spad{+ck}) - matrix with entries \\spad{m.i.j = ml.(i-r1-..-r(l-1)).(j-n1-..-n(l-1))},{} if \\spad{(r1+..+r(l-1)) < i <= r1+..+rl} and \\spad{(c1+..+c(l-1)) < i <= c1+..+cl},{} \\spad{m.i.j} = 0 otherwise.") (($ (|List| |#1|)) "\\spad{diagonalMatrix(l)} returns a diagonal matrix with the elements of \\spad{l} on the diagonal.")) (|scalarMatrix| (($ (|NonNegativeInteger|) |#1|) "\\spad{scalarMatrix(n,{}r)} returns an \\spad{n}-by-\\spad{n} matrix with \\spad{r}\\spad{'s} on the diagonal and zeroes elsewhere.")) (|matrix| (($ (|List| (|List| |#1|))) "\\spad{matrix(l)} converts the list of lists \\spad{l} to a matrix,{} where the list of lists is viewed as a list of the rows of the matrix.")) (|zero| (($ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{zero(m,{}n)} returns an \\spad{m}-by-\\spad{n} zero matrix.")) (|antisymmetric?| (((|Boolean|) $) "\\spad{antisymmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and antisymmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = -m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|symmetric?| (((|Boolean|) $) "\\spad{symmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and symmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|diagonal?| (((|Boolean|) $) "\\spad{diagonal?(m)} returns \\spad{true} if the matrix \\spad{m} is square and diagonal (\\spadignore{i.e.} all entries of \\spad{m} not on the diagonal are zero) and \\spad{false} otherwise.")) (|square?| (((|Boolean|) $) "\\spad{square?(m)} returns \\spad{true} if \\spad{m} is a square matrix (\\spadignore{i.e.} if \\spad{m} has the same number of rows as columns) and \\spad{false} otherwise.")) (|finiteAggregate| ((|attribute|) "matrices are finite")) (|shallowlyMutable| ((|attribute|) "One may destructively alter matrices")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
NIL
(-682 R |Row| |Col| M)
((|constructor| (NIL "\\spadtype{MatrixLinearAlgebraFunctions} provides functions to compute inverses and canonical forms.")) (|inverse| (((|Union| |#4| "failed") |#4|) "\\spad{inverse(m)} returns the inverse of the matrix. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|normalizedDivide| (((|Record| (|:| |quotient| |#1|) (|:| |remainder| |#1|)) |#1| |#1|) "\\spad{normalizedDivide(n,{}d)} returns a normalized quotient and remainder such that consistently unique representatives for the residue class are chosen,{} \\spadignore{e.g.} positive remainders")) (|rowEchelon| ((|#4| |#4|) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (|adjoint| (((|Record| (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) "\\spad{adjoint(m)} returns the ajoint matrix of \\spad{m} (\\spadignore{i.e.} the matrix \\spad{n} such that \\spad{m*n} = determinant(\\spad{m})*id) and the detrminant of \\spad{m}.")) (|invertIfCan| (((|Union| |#4| "failed") |#4|) "\\spad{invertIfCan(m)} returns the inverse of \\spad{m} over \\spad{R}")) (|fractionFreeGauss!| ((|#4| |#4|) "\\spad{fractionFreeGauss(m)} performs the fraction free gaussian elimination on the matrix \\spad{m}.")) (|nullSpace| (((|List| |#3|) |#4|) "\\spad{nullSpace(m)} returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) |#4|) "\\spad{nullity(m)} returns the mullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) |#4|) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|elColumn2!| ((|#4| |#4| |#1| (|Integer|) (|Integer|)) "\\spad{elColumn2!(m,{}a,{}i,{}j)} adds to column \\spad{i} a*column(\\spad{m},{}\\spad{j}) : elementary operation of second kind. (\\spad{i} \\spad{~=j})")) (|elRow2!| ((|#4| |#4| |#1| (|Integer|) (|Integer|)) "\\spad{elRow2!(m,{}a,{}i,{}j)} adds to row \\spad{i} a*row(\\spad{m},{}\\spad{j}) : elementary operation of second kind. (\\spad{i} \\spad{~=j})")) (|elRow1!| ((|#4| |#4| (|Integer|) (|Integer|)) "\\spad{elRow1!(m,{}i,{}j)} swaps rows \\spad{i} and \\spad{j} of matrix \\spad{m} : elementary operation of first kind")) (|minordet| ((|#1| |#4|) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors. Error: if the matrix is not square.")) (|determinant| ((|#1| |#4|) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}. an error message is returned if the matrix is not square.")))
@@ -2662,8 +2662,8 @@ NIL
((|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-554))))
(-683 R)
((|constructor| (NIL "\\spadtype{Matrix} is a matrix domain where 1-based indexing is used for both rows and columns.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m}. If the matrix is not invertible,{} \"failed\" is returned. Error: if the matrix is not square.")) (|diagonalMatrix| (($ (|Vector| |#1|)) "\\spad{diagonalMatrix(v)} returns a diagonal matrix where the elements of \\spad{v} appear on the diagonal.")))
-((-4402 . T) (-4403 . T))
-((-4037 (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-554))) (|HasAttribute| |#1| (QUOTE (-4404 "*"))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
+((-4403 . T) (-4404 . T))
+((-4037 (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-554))) (|HasAttribute| |#1| (QUOTE (-4405 "*"))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
(-684 R)
((|constructor| (NIL "This package provides standard arithmetic operations on matrices. The functions in this package store the results of computations in existing matrices,{} rather than creating new matrices. This package works only for matrices of type Matrix and uses the internal representation of this type.")) (** (((|Matrix| |#1|) (|Matrix| |#1|) (|NonNegativeInteger|)) "\\spad{x ** n} computes the \\spad{n}-th power of a square matrix. The power \\spad{n} is assumed greater than 1.")) (|power!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|NonNegativeInteger|)) "\\spad{power!(a,{}b,{}c,{}m,{}n)} computes \\spad{m} \\spad{**} \\spad{n} and stores the result in \\spad{a}. The matrices \\spad{b} and \\spad{c} are used to store intermediate results. Error: if \\spad{a},{} \\spad{b},{} \\spad{c},{} and \\spad{m} are not square and of the same dimensions.")) (|times!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{times!(c,{}a,{}b)} computes the matrix product \\spad{a * b} and stores the result in the matrix \\spad{c}. Error: if \\spad{a},{} \\spad{b},{} and \\spad{c} do not have compatible dimensions.")) (|rightScalarTimes!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) |#1|) "\\spad{rightScalarTimes!(c,{}a,{}r)} computes the scalar product \\spad{a * r} and stores the result in the matrix \\spad{c}. Error: if \\spad{a} and \\spad{c} do not have the same dimensions.")) (|leftScalarTimes!| (((|Matrix| |#1|) (|Matrix| |#1|) |#1| (|Matrix| |#1|)) "\\spad{leftScalarTimes!(c,{}r,{}a)} computes the scalar product \\spad{r * a} and stores the result in the matrix \\spad{c}. Error: if \\spad{a} and \\spad{c} do not have the same dimensions.")) (|minus!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{!minus!(c,{}a,{}b)} computes the matrix difference \\spad{a - b} and stores the result in the matrix \\spad{c}. Error: if \\spad{a},{} \\spad{b},{} and \\spad{c} do not have the same dimensions.") (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{minus!(c,{}a)} computes \\spad{-a} and stores the result in the matrix \\spad{c}. Error: if a and \\spad{c} do not have the same dimensions.")) (|plus!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{plus!(c,{}a,{}b)} computes the matrix sum \\spad{a + b} and stores the result in the matrix \\spad{c}. Error: if \\spad{a},{} \\spad{b},{} and \\spad{c} do not have the same dimensions.")) (|copy!| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{copy!(c,{}a)} copies the matrix \\spad{a} into the matrix \\spad{c}. Error: if \\spad{a} and \\spad{c} do not have the same dimensions.")))
NIL
@@ -2672,7 +2672,7 @@ NIL
((|constructor| (NIL "This domain implements the notion of optional value,{} where a computation may fail to produce expected value.")) (|nothing| (($) "\\spad{nothing} represents failure or absence of value.")) (|autoCoerce| ((|#1| $) "\\spad{autoCoerce} is a courtesy coercion function used by the compiler in case it knows that \\spad{`x'} really is a \\spadtype{T}.")) (|case| (((|Boolean|) $ (|[\|\|]| |nothing|)) "\\spad{x case nothing} holds if the value for \\spad{x} is missing.") (((|Boolean|) $ (|[\|\|]| |#1|)) "\\spad{x case T} returns \\spad{true} if \\spad{x} is actually a data of type \\spad{T}.")) (|just| (($ |#1|) "\\spad{just x} injects the value \\spad{`x'} into \\%.")))
NIL
NIL
-(-686 S -3197 FLAF FLAS)
+(-686 S -3196 FLAF FLAS)
((|constructor| (NIL "\\indented{1}{\\spadtype{MultiVariableCalculusFunctions} Package provides several} \\indented{1}{functions for multivariable calculus.} These include gradient,{} hessian and jacobian,{} divergence and laplacian. Various forms for banded and sparse storage of matrices are included.")) (|bandedJacobian| (((|Matrix| |#2|) |#3| |#4| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{bandedJacobian(vf,{}xlist,{}kl,{}ku)} computes the jacobian,{} the matrix of first partial derivatives,{} of the vector field \\spad{vf},{} \\spad{vf} a vector function of the variables listed in \\spad{xlist},{} \\spad{kl} is the number of nonzero subdiagonals,{} \\spad{ku} is the number of nonzero superdiagonals,{} kl+ku+1 being actual bandwidth. Stores the nonzero band in a matrix,{} dimensions kl+ku+1 by \\#xlist. The upper triangle is in the top \\spad{ku} rows,{} the diagonal is in row ku+1,{} the lower triangle in the last \\spad{kl} rows. Entries in a column in the band store correspond to entries in same column of full store. (The notation conforms to LAPACK/NAG-\\spad{F07} conventions.)")) (|jacobian| (((|Matrix| |#2|) |#3| |#4|) "\\spad{jacobian(vf,{}xlist)} computes the jacobian,{} the matrix of first partial derivatives,{} of the vector field \\spad{vf},{} \\spad{vf} a vector function of the variables listed in \\spad{xlist}.")) (|bandedHessian| (((|Matrix| |#2|) |#2| |#4| (|NonNegativeInteger|)) "\\spad{bandedHessian(v,{}xlist,{}k)} computes the hessian,{} the matrix of second partial derivatives,{} of the scalar field \\spad{v},{} \\spad{v} a function of the variables listed in \\spad{xlist},{} \\spad{k} is the semi-bandwidth,{} the number of nonzero subdiagonals,{} 2*k+1 being actual bandwidth. Stores the nonzero band in lower triangle in a matrix,{} dimensions \\spad{k+1} by \\#xlist,{} whose rows are the vectors formed by diagonal,{} subdiagonal,{} etc. of the real,{} full-matrix,{} hessian. (The notation conforms to LAPACK/NAG-\\spad{F07} conventions.)")) (|hessian| (((|Matrix| |#2|) |#2| |#4|) "\\spad{hessian(v,{}xlist)} computes the hessian,{} the matrix of second partial derivatives,{} of the scalar field \\spad{v},{} \\spad{v} a function of the variables listed in \\spad{xlist}.")) (|laplacian| ((|#2| |#2| |#4|) "\\spad{laplacian(v,{}xlist)} computes the laplacian of the scalar field \\spad{v},{} \\spad{v} a function of the variables listed in \\spad{xlist}.")) (|divergence| ((|#2| |#3| |#4|) "\\spad{divergence(vf,{}xlist)} computes the divergence of the vector field \\spad{vf},{} \\spad{vf} a vector function of the variables listed in \\spad{xlist}.")) (|gradient| (((|Vector| |#2|) |#2| |#4|) "\\spad{gradient(v,{}xlist)} computes the gradient,{} the vector of first partial derivatives,{} of the scalar field \\spad{v},{} \\spad{v} a function of the variables listed in \\spad{xlist}.")))
NIL
NIL
@@ -2682,11 +2682,11 @@ NIL
NIL
(-688)
((|constructor| (NIL "A domain which models the complex number representation used by machines in the AXIOM-NAG link.")) (|coerce| (((|Complex| (|Float|)) $) "\\spad{coerce(u)} transforms \\spad{u} into a COmplex Float") (($ (|Complex| (|MachineInteger|))) "\\spad{coerce(u)} transforms \\spad{u} into a MachineComplex") (($ (|Complex| (|MachineFloat|))) "\\spad{coerce(u)} transforms \\spad{u} into a MachineComplex") (($ (|Complex| (|Integer|))) "\\spad{coerce(u)} transforms \\spad{u} into a MachineComplex") (($ (|Complex| (|Float|))) "\\spad{coerce(u)} transforms \\spad{u} into a MachineComplex")))
-((-4395 . T) (-4400 |has| (-693) (-362)) (-4394 |has| (-693) (-362)) (-4401 |has| (-693) (-6 -4401)) (-4398 |has| (-693) (-6 -4398)) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| (-693) (QUOTE (-146))) (|HasCategory| (-693) (QUOTE (-144))) (|HasCategory| (-693) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-693) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| (-693) (QUOTE (-367))) (|HasCategory| (-693) (QUOTE (-362))) (-4037 (|HasCategory| (-693) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-693) (QUOTE (-362)))) (|HasCategory| (-693) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-693) (QUOTE (-232))) (-4037 (|HasCategory| (-693) (QUOTE (-362))) (|HasCategory| (-693) (QUOTE (-348)))) (|HasCategory| (-693) (QUOTE (-348))) (|HasCategory| (-693) (LIST (QUOTE -285) (QUOTE (-693)) (QUOTE (-693)))) (|HasCategory| (-693) (LIST (QUOTE -308) (QUOTE (-693)))) (|HasCategory| (-693) (LIST (QUOTE -513) (QUOTE (-1168)) (QUOTE (-693)))) (|HasCategory| (-693) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| (-693) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| (-693) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| (-693) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (-4037 (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-362))) (|HasCategory| (-693) (QUOTE (-348)))) (|HasCategory| (-693) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-693) (QUOTE (-1017))) (|HasCategory| (-693) (QUOTE (-1192))) (-12 (|HasCategory| (-693) (QUOTE (-997))) (|HasCategory| (-693) (QUOTE (-1192)))) (-4037 (-12 (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (|HasCategory| (-693) (QUOTE (-362))) (-12 (|HasCategory| (-693) (QUOTE (-348))) (|HasCategory| (-693) (QUOTE (-904))))) (-4037 (-12 (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (-12 (|HasCategory| (-693) (QUOTE (-362))) (|HasCategory| (-693) (QUOTE (-904)))) (-12 (|HasCategory| (-693) (QUOTE (-348))) (|HasCategory| (-693) (QUOTE (-904))))) (|HasCategory| (-693) (QUOTE (-544))) (-12 (|HasCategory| (-693) (QUOTE (-1053))) (|HasCategory| (-693) (QUOTE (-1192)))) (|HasCategory| (-693) (QUOTE (-1053))) (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904))) (-4037 (-12 (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (|HasCategory| (-693) (QUOTE (-362)))) (-4037 (-12 (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (|HasCategory| (-693) (QUOTE (-554)))) (-12 (|HasCategory| (-693) (QUOTE (-232))) (|HasCategory| (-693) (QUOTE (-362)))) (-12 (|HasCategory| (-693) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-693) (QUOTE (-362)))) (|HasCategory| (-693) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| (-693) (QUOTE (-845))) (|HasCategory| (-693) (QUOTE (-554))) (|HasAttribute| (-693) (QUOTE -4401)) (|HasAttribute| (-693) (QUOTE -4398)) (-12 (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (|HasCategory| (-693) (QUOTE (-144)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (|HasCategory| (-693) (QUOTE (-348)))))
+((-4396 . T) (-4401 |has| (-693) (-362)) (-4395 |has| (-693) (-362)) (-4402 |has| (-693) (-6 -4402)) (-4399 |has| (-693) (-6 -4399)) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| (-693) (QUOTE (-146))) (|HasCategory| (-693) (QUOTE (-144))) (|HasCategory| (-693) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-693) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| (-693) (QUOTE (-367))) (|HasCategory| (-693) (QUOTE (-362))) (-4037 (|HasCategory| (-693) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-693) (QUOTE (-362)))) (|HasCategory| (-693) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-693) (QUOTE (-232))) (-4037 (|HasCategory| (-693) (QUOTE (-362))) (|HasCategory| (-693) (QUOTE (-348)))) (|HasCategory| (-693) (QUOTE (-348))) (|HasCategory| (-693) (LIST (QUOTE -285) (QUOTE (-693)) (QUOTE (-693)))) (|HasCategory| (-693) (LIST (QUOTE -308) (QUOTE (-693)))) (|HasCategory| (-693) (LIST (QUOTE -513) (QUOTE (-1168)) (QUOTE (-693)))) (|HasCategory| (-693) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| (-693) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| (-693) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| (-693) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (-4037 (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-362))) (|HasCategory| (-693) (QUOTE (-348)))) (|HasCategory| (-693) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-693) (QUOTE (-1017))) (|HasCategory| (-693) (QUOTE (-1192))) (-12 (|HasCategory| (-693) (QUOTE (-997))) (|HasCategory| (-693) (QUOTE (-1192)))) (-4037 (-12 (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (|HasCategory| (-693) (QUOTE (-362))) (-12 (|HasCategory| (-693) (QUOTE (-348))) (|HasCategory| (-693) (QUOTE (-904))))) (-4037 (-12 (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (-12 (|HasCategory| (-693) (QUOTE (-362))) (|HasCategory| (-693) (QUOTE (-904)))) (-12 (|HasCategory| (-693) (QUOTE (-348))) (|HasCategory| (-693) (QUOTE (-904))))) (|HasCategory| (-693) (QUOTE (-544))) (-12 (|HasCategory| (-693) (QUOTE (-1053))) (|HasCategory| (-693) (QUOTE (-1192)))) (|HasCategory| (-693) (QUOTE (-1053))) (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904))) (-4037 (-12 (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (|HasCategory| (-693) (QUOTE (-362)))) (-4037 (-12 (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (|HasCategory| (-693) (QUOTE (-554)))) (-12 (|HasCategory| (-693) (QUOTE (-232))) (|HasCategory| (-693) (QUOTE (-362)))) (-12 (|HasCategory| (-693) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-693) (QUOTE (-362)))) (|HasCategory| (-693) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| (-693) (QUOTE (-845))) (|HasCategory| (-693) (QUOTE (-554))) (|HasAttribute| (-693) (QUOTE -4402)) (|HasAttribute| (-693) (QUOTE -4399)) (-12 (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (|HasCategory| (-693) (QUOTE (-144)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-693) (QUOTE (-306))) (|HasCategory| (-693) (QUOTE (-904)))) (|HasCategory| (-693) (QUOTE (-348)))))
(-689 S)
((|constructor| (NIL "A multi-dictionary is a dictionary which may contain duplicates. As for any dictionary,{} its size is assumed large so that copying (non-destructive) operations are generally to be avoided.")) (|duplicates| (((|List| (|Record| (|:| |entry| |#1|) (|:| |count| (|NonNegativeInteger|)))) $) "\\spad{duplicates(d)} returns a list of values which have duplicates in \\spad{d}")) (|removeDuplicates!| (($ $) "\\spad{removeDuplicates!(d)} destructively removes any duplicate values in dictionary \\spad{d}.")) (|insert!| (($ |#1| $ (|NonNegativeInteger|)) "\\spad{insert!(x,{}d,{}n)} destructively inserts \\spad{n} copies of \\spad{x} into dictionary \\spad{d}.")))
-((-4403 . T))
+((-4404 . T))
NIL
(-690 U)
((|constructor| (NIL "This package supports factorization and gcds of univariate polynomials over the integers modulo different primes. The inputs are given as polynomials over the integers with the prime passed explicitly as an extra argument.")) (|exptMod| ((|#1| |#1| (|Integer|) |#1| (|Integer|)) "\\spad{exptMod(f,{}n,{}g,{}p)} raises the univariate polynomial \\spad{f} to the \\spad{n}th power modulo the polynomial \\spad{g} and the prime \\spad{p}.")) (|separateFactors| (((|List| |#1|) (|List| (|Record| (|:| |factor| |#1|) (|:| |degree| (|Integer|)))) (|Integer|)) "\\spad{separateFactors(ddl,{} p)} refines the distinct degree factorization produced by \\spadfunFrom{ddFact}{ModularDistinctDegreeFactorizer} to give a complete list of factors.")) (|ddFact| (((|List| (|Record| (|:| |factor| |#1|) (|:| |degree| (|Integer|)))) |#1| (|Integer|)) "\\spad{ddFact(f,{}p)} computes a distinct degree factorization of the polynomial \\spad{f} modulo the prime \\spad{p},{} \\spadignore{i.e.} such that each factor is a product of irreducibles of the same degrees. The input polynomial \\spad{f} is assumed to be square-free modulo \\spad{p}.")) (|factor| (((|List| |#1|) |#1| (|Integer|)) "\\spad{factor(f1,{}p)} returns the list of factors of the univariate polynomial \\spad{f1} modulo the integer prime \\spad{p}. Error: if \\spad{f1} is not square-free modulo \\spad{p}.")) (|linears| ((|#1| |#1| (|Integer|)) "\\spad{linears(f,{}p)} returns the product of all the linear factors of \\spad{f} modulo \\spad{p}. Potentially incorrect result if \\spad{f} is not square-free modulo \\spad{p}.")) (|gcd| ((|#1| |#1| |#1| (|Integer|)) "\\spad{gcd(f1,{}f2,{}p)} computes the \\spad{gcd} of the univariate polynomials \\spad{f1} and \\spad{f2} modulo the integer prime \\spad{p}.")))
@@ -2696,13 +2696,13 @@ NIL
((|constructor| (NIL "\\indented{1}{<description of package>} Author: Jim Wen Date Created: \\spad{??} Date Last Updated: October 1991 by Jon Steinbach Keywords: Examples: References:")) (|ptFunc| (((|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) "\\spad{ptFunc(a,{}b,{}c,{}d)} is an internal function exported in order to compile packages.")) (|meshPar1Var| (((|ThreeSpace| (|DoubleFloat|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshPar1Var(s,{}t,{}u,{}f,{}s1,{}l)} \\undocumented")) (|meshFun2Var| (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Union| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "undefined") (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshFun2Var(f,{}g,{}s1,{}s2,{}l)} \\undocumented")) (|meshPar2Var| (((|ThreeSpace| (|DoubleFloat|)) (|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshPar2Var(sp,{}f,{}s1,{}s2,{}l)} \\undocumented") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshPar2Var(f,{}s1,{}s2,{}l)} \\undocumented") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Union| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "undefined") (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshPar2Var(f,{}g,{}h,{}j,{}s1,{}s2,{}l)} \\undocumented")))
NIL
NIL
-(-692 OV E -3197 PG)
+(-692 OV E -3196 PG)
((|constructor| (NIL "Package for factorization of multivariate polynomials over finite fields.")) (|factor| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factor(p)} produces the complete factorization of the multivariate polynomial \\spad{p} over a finite field. \\spad{p} is represented as a univariate polynomial with multivariate coefficients over a finite field.") (((|Factored| |#4|) |#4|) "\\spad{factor(p)} produces the complete factorization of the multivariate polynomial \\spad{p} over a finite field.")))
NIL
NIL
(-693)
((|constructor| (NIL "A domain which models the floating point representation used by machines in the AXIOM-NAG link.")) (|changeBase| (($ (|Integer|) (|Integer|) (|PositiveInteger|)) "\\spad{changeBase(exp,{}man,{}base)} \\undocumented{}")) (|exponent| (((|Integer|) $) "\\spad{exponent(u)} returns the exponent of \\spad{u}")) (|mantissa| (((|Integer|) $) "\\spad{mantissa(u)} returns the mantissa of \\spad{u}")) (|coerce| (($ (|MachineInteger|)) "\\spad{coerce(u)} transforms a MachineInteger into a MachineFloat") (((|Float|) $) "\\spad{coerce(u)} transforms a MachineFloat to a standard Float")) (|minimumExponent| (((|Integer|)) "\\spad{minimumExponent()} returns the minimum exponent in the model") (((|Integer|) (|Integer|)) "\\spad{minimumExponent(e)} sets the minimum exponent in the model to \\spad{e}")) (|maximumExponent| (((|Integer|)) "\\spad{maximumExponent()} returns the maximum exponent in the model") (((|Integer|) (|Integer|)) "\\spad{maximumExponent(e)} sets the maximum exponent in the model to \\spad{e}")) (|base| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{base(b)} sets the base of the model to \\spad{b}")) (|precision| (((|PositiveInteger|)) "\\spad{precision()} returns the number of digits in the model") (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{precision(p)} sets the number of digits in the model to \\spad{p}")))
-((-1406 . T) (-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-1406 . T) (-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-694 R)
((|constructor| (NIL "\\indented{1}{Modular hermitian row reduction.} Author: Manuel Bronstein Date Created: 22 February 1989 Date Last Updated: 24 November 1993 Keywords: matrix,{} reduction.")) (|normalizedDivide| (((|Record| (|:| |quotient| |#1|) (|:| |remainder| |#1|)) |#1| |#1|) "\\spad{normalizedDivide(n,{}d)} returns a normalized quotient and remainder such that consistently unique representatives for the residue class are chosen,{} \\spadignore{e.g.} positive remainders")) (|rowEchelonLocal| (((|Matrix| |#1|) (|Matrix| |#1|) |#1| |#1|) "\\spad{rowEchelonLocal(m,{} d,{} p)} computes the row-echelon form of \\spad{m} concatenated with \\spad{d} times the identity matrix over a local ring where \\spad{p} is the only prime.")) (|rowEchLocal| (((|Matrix| |#1|) (|Matrix| |#1|) |#1|) "\\spad{rowEchLocal(m,{}p)} computes a modular row-echelon form of \\spad{m},{} finding an appropriate modulus over a local ring where \\spad{p} is the only prime.")) (|rowEchelon| (((|Matrix| |#1|) (|Matrix| |#1|) |#1|) "\\spad{rowEchelon(m,{} d)} computes a modular row-echelon form mod \\spad{d} of \\indented{3}{[\\spad{d}\\space{5}]} \\indented{3}{[\\space{2}\\spad{d}\\space{3}]} \\indented{3}{[\\space{4}. ]} \\indented{3}{[\\space{5}\\spad{d}]} \\indented{3}{[\\space{3}\\spad{M}\\space{2}]} where \\spad{M = m mod d}.")) (|rowEch| (((|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{rowEch(m)} computes a modular row-echelon form of \\spad{m},{} finding an appropriate modulus.")))
@@ -2710,7 +2710,7 @@ NIL
NIL
(-695)
((|constructor| (NIL "A domain which models the integer representation used by machines in the AXIOM-NAG link.")) (|coerce| (((|Expression| $) (|Expression| (|Integer|))) "\\spad{coerce(x)} returns \\spad{x} with coefficients in the domain")) (|maxint| (((|PositiveInteger|)) "\\spad{maxint()} returns the maximum integer in the model") (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{maxint(u)} sets the maximum integer in the model to \\spad{u}")))
-((-4401 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4402 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-696 S D1 D2 I)
((|constructor| (NIL "transforms top-level objects into compiled functions.")) (|compiledFunction| (((|Mapping| |#4| |#2| |#3|) |#1| (|Symbol|) (|Symbol|)) "\\spad{compiledFunction(expr,{}x,{}y)} returns a function \\spad{f: (D1,{} D2) -> I} defined by \\spad{f(x,{} y) == expr}. Function \\spad{f} is compiled and directly applicable to objects of type \\spad{(D1,{} D2)}")) (|binaryFunction| (((|Mapping| |#4| |#2| |#3|) (|Symbol|)) "\\spad{binaryFunction(s)} is a local function")))
@@ -2732,7 +2732,7 @@ NIL
((|constructor| (NIL "MakeRecord is used internally by the interpreter to create record types which are used for doing parallel iterations on streams.")) (|makeRecord| (((|Record| (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) "\\spad{makeRecord(a,{}b)} creates a record object with type Record(part1:S,{} part2:R),{} where part1 is \\spad{a} and part2 is \\spad{b}.")))
NIL
NIL
-(-701 S -3114 I)
+(-701 S -3113 I)
((|constructor| (NIL "transforms top-level objects into compiled functions.")) (|compiledFunction| (((|Mapping| |#3| |#2|) |#1| (|Symbol|)) "\\spad{compiledFunction(expr,{} x)} returns a function \\spad{f: D -> I} defined by \\spad{f(x) == expr}. Function \\spad{f} is compiled and directly applicable to objects of type \\spad{D}.")) (|unaryFunction| (((|Mapping| |#3| |#2|) (|Symbol|)) "\\spad{unaryFunction(a)} is a local function")))
NIL
NIL
@@ -2742,7 +2742,7 @@ NIL
NIL
(-703 R)
((|constructor| (NIL "This is the category of linear operator rings with one generator. The generator is not named by the category but can always be constructed as \\spad{monomial(1,{}1)}. \\blankline For convenience,{} call the generator \\spad{G}. Then each value is equal to \\indented{4}{\\spad{sum(a(i)*G**i,{} i = 0..n)}} for some unique \\spad{n} and \\spad{a(i)} in \\spad{R}. \\blankline Note that multiplication is not necessarily commutative. In fact,{} if \\spad{a} is in \\spad{R},{} it is quite normal to have \\spad{a*G \\~= G*a}.")) (|monomial| (($ |#1| (|NonNegativeInteger|)) "\\spad{monomial(c,{}k)} produces \\spad{c} times the \\spad{k}-th power of the generating operator,{} \\spad{monomial(1,{}1)}.")) (|coefficient| ((|#1| $ (|NonNegativeInteger|)) "\\spad{coefficient(l,{}k)} is \\spad{a(k)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|reductum| (($ $) "\\spad{reductum(l)} is \\spad{l - monomial(a(n),{}n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(l)} is \\spad{a(n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|minimumDegree| (((|NonNegativeInteger|) $) "\\spad{minimumDegree(l)} is the smallest \\spad{k} such that \\spad{a(k) \\~= 0} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(l)} is \\spad{n} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-704 R1 UP1 UPUP1 R2 UP2 UPUP2)
((|constructor| (NIL "Lifting of a map through 2 levels of polynomials.")) (|map| ((|#6| (|Mapping| |#4| |#1|) |#3|) "\\spad{map(f,{} p)} lifts \\spad{f} to the domain of \\spad{p} then applies it to \\spad{p}.")))
@@ -2752,25 +2752,25 @@ NIL
((|constructor| (NIL "\\spadtype{MathMLFormat} provides a coercion from \\spadtype{OutputForm} to MathML format.")) (|display| (((|Void|) (|String|)) "prints the string returned by coerce,{} adding <math ...> tags.")) (|exprex| (((|String|) (|OutputForm|)) "coverts \\spadtype{OutputForm} to \\spadtype{String} with the structure preserved with braces. Actually this is not quite accurate. The function \\spadfun{precondition} is first applied to the \\spadtype{OutputForm} expression before \\spadfun{exprex}. The raw \\spadtype{OutputForm} and the nature of the \\spadfun{precondition} function is still obscure to me at the time of this writing (2007-02-14).")) (|coerceL| (((|String|) (|OutputForm|)) "coerceS(\\spad{o}) changes \\spad{o} in the standard output format to MathML format and displays result as one long string.")) (|coerceS| (((|String|) (|OutputForm|)) "\\spad{coerceS(o)} changes \\spad{o} in the standard output format to MathML format and displays formatted result.")) (|coerce| (((|String|) (|OutputForm|)) "coerceS(\\spad{o}) changes \\spad{o} in the standard output format to MathML format.")))
NIL
NIL
-(-706 R |Mod| -2925 -1610 |exactQuo|)
+(-706 R |Mod| -3834 -4103 |exactQuo|)
((|constructor| (NIL "\\indented{1}{These domains are used for the factorization and gcds} of univariate polynomials over the integers in order to work modulo different primes. See \\spadtype{ModularRing},{} \\spadtype{EuclideanModularRing}")) (|exQuo| (((|Union| $ "failed") $ $) "\\spad{exQuo(x,{}y)} \\undocumented")) (|reduce| (($ |#1| |#2|) "\\spad{reduce(r,{}m)} \\undocumented")) (|coerce| ((|#1| $) "\\spad{coerce(x)} \\undocumented")) (|modulus| ((|#2| $) "\\spad{modulus(x)} \\undocumented")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-707 R |Rep|)
((|constructor| (NIL "This package \\undocumented")) (|frobenius| (($ $) "\\spad{frobenius(x)} \\undocumented")) (|computePowers| (((|PrimitiveArray| $)) "\\spad{computePowers()} \\undocumented")) (|pow| (((|PrimitiveArray| $)) "\\spad{pow()} \\undocumented")) (|An| (((|Vector| |#1|) $) "\\spad{An(x)} \\undocumented")) (|UnVectorise| (($ (|Vector| |#1|)) "\\spad{UnVectorise(v)} \\undocumented")) (|Vectorise| (((|Vector| |#1|) $) "\\spad{Vectorise(x)} \\undocumented")) (|lift| ((|#2| $) "\\spad{lift(x)} \\undocumented")) (|reduce| (($ |#2|) "\\spad{reduce(x)} \\undocumented")) (|modulus| ((|#2|) "\\spad{modulus()} \\undocumented")) (|setPoly| ((|#2| |#2|) "\\spad{setPoly(x)} \\undocumented")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4398 |has| |#1| (-362)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-1143))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-232))) (|HasAttribute| |#1| (QUOTE -4400)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4399 |has| |#1| (-362)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-1143))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (QUOTE (-232))) (|HasAttribute| |#1| (QUOTE -4401)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
(-708 IS E |ff|)
((|constructor| (NIL "This package \\undocumented")) (|construct| (($ |#1| |#2|) "\\spad{construct(i,{}e)} \\undocumented")) (|index| ((|#1| $) "\\spad{index(x)} \\undocumented")) (|exponent| ((|#2| $) "\\spad{exponent(x)} \\undocumented")))
NIL
NIL
(-709 R M)
((|constructor| (NIL "Algebra of ADDITIVE operators on a module.")) (|makeop| (($ |#1| (|FreeGroup| (|BasicOperator|))) "\\spad{makeop should} be local but conditional")) (|opeval| ((|#2| (|BasicOperator|) |#2|) "\\spad{opeval should} be local but conditional")) (** (($ $ (|Integer|)) "\\spad{op**n} \\undocumented") (($ (|BasicOperator|) (|Integer|)) "\\spad{op**n} \\undocumented")) (|evaluateInverse| (($ $ (|Mapping| |#2| |#2|)) "\\spad{evaluateInverse(x,{}f)} \\undocumented")) (|evaluate| (($ $ (|Mapping| |#2| |#2|)) "\\spad{evaluate(f,{} u +-> g u)} attaches the map \\spad{g} to \\spad{f}. \\spad{f} must be a basic operator \\spad{g} MUST be additive,{} \\spadignore{i.e.} \\spad{g(a + b) = g(a) + g(b)} for any \\spad{a},{} \\spad{b} in \\spad{M}. This implies that \\spad{g(n a) = n g(a)} for any \\spad{a} in \\spad{M} and integer \\spad{n > 0}.")) (|conjug| ((|#1| |#1|) "\\spad{conjug(x)}should be local but conditional")) (|adjoint| (($ $ $) "\\spad{adjoint(op1,{} op2)} sets the adjoint of \\spad{op1} to be op2. \\spad{op1} must be a basic operator") (($ $) "\\spad{adjoint(op)} returns the adjoint of the operator \\spad{op}.")))
-((-4397 |has| |#1| (-171)) (-4396 |has| |#1| (-171)) (-4399 . T))
+((-4398 |has| |#1| (-171)) (-4397 |has| |#1| (-171)) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))))
-(-710 R |Mod| -2925 -1610 |exactQuo|)
+(-710 R |Mod| -3834 -4103 |exactQuo|)
((|constructor| (NIL "These domains are used for the factorization and gcds of univariate polynomials over the integers in order to work modulo different primes. See \\spadtype{EuclideanModularRing} ,{}\\spadtype{ModularField}")) (|inv| (($ $) "\\spad{inv(x)} \\undocumented")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} \\undocumented")) (|exQuo| (((|Union| $ "failed") $ $) "\\spad{exQuo(x,{}y)} \\undocumented")) (|reduce| (($ |#1| |#2|) "\\spad{reduce(r,{}m)} \\undocumented")) (|coerce| ((|#1| $) "\\spad{coerce(x)} \\undocumented")) (|modulus| ((|#2| $) "\\spad{modulus(x)} \\undocumented")))
-((-4399 . T))
+((-4400 . T))
NIL
(-711 S R)
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
@@ -2778,11 +2778,11 @@ NIL
NIL
(-712 R)
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
-((-4397 . T) (-4396 . T))
+((-4398 . T) (-4397 . T))
NIL
-(-713 -3197)
+(-713 -3196)
((|constructor| (NIL "\\indented{1}{MoebiusTransform(\\spad{F}) is the domain of fractional linear (Moebius)} transformations over \\spad{F}.")) (|eval| (((|OnePointCompletion| |#1|) $ (|OnePointCompletion| |#1|)) "\\spad{eval(m,{}x)} returns \\spad{(a*x + b)/(c*x + d)} where \\spad{m = moebius(a,{}b,{}c,{}d)} (see \\spadfunFrom{moebius}{MoebiusTransform}).") ((|#1| $ |#1|) "\\spad{eval(m,{}x)} returns \\spad{(a*x + b)/(c*x + d)} where \\spad{m = moebius(a,{}b,{}c,{}d)} (see \\spadfunFrom{moebius}{MoebiusTransform}).")) (|recip| (($ $) "\\spad{recip(m)} = recip() * \\spad{m}") (($) "\\spad{recip()} returns \\spad{matrix [[0,{}1],{}[1,{}0]]} representing the map \\spad{x -> 1 / x}.")) (|scale| (($ $ |#1|) "\\spad{scale(m,{}h)} returns \\spad{scale(h) * m} (see \\spadfunFrom{shift}{MoebiusTransform}).") (($ |#1|) "\\spad{scale(k)} returns \\spad{matrix [[k,{}0],{}[0,{}1]]} representing the map \\spad{x -> k * x}.")) (|shift| (($ $ |#1|) "\\spad{shift(m,{}h)} returns \\spad{shift(h) * m} (see \\spadfunFrom{shift}{MoebiusTransform}).") (($ |#1|) "\\spad{shift(k)} returns \\spad{matrix [[1,{}k],{}[0,{}1]]} representing the map \\spad{x -> x + k}.")) (|moebius| (($ |#1| |#1| |#1| |#1|) "\\spad{moebius(a,{}b,{}c,{}d)} returns \\spad{matrix [[a,{}b],{}[c,{}d]]}.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-714 S)
((|constructor| (NIL "Monad is the class of all multiplicative monads,{} \\spadignore{i.e.} sets with a binary operation.")) (** (($ $ (|PositiveInteger|)) "\\spad{a**n} returns the \\spad{n}\\spad{-}th power of \\spad{a},{} defined by repeated squaring.")) (|leftPower| (($ $ (|PositiveInteger|)) "\\spad{leftPower(a,{}n)} returns the \\spad{n}\\spad{-}th left power of \\spad{a},{} \\spadignore{i.e.} \\spad{leftPower(a,{}n) := a * leftPower(a,{}n-1)} and \\spad{leftPower(a,{}1) := a}.")) (|rightPower| (($ $ (|PositiveInteger|)) "\\spad{rightPower(a,{}n)} returns the \\spad{n}\\spad{-}th right power of \\spad{a},{} \\spadignore{i.e.} \\spad{rightPower(a,{}n) := rightPower(a,{}n-1) * a} and \\spad{rightPower(a,{}1) := a}.")) (* (($ $ $) "\\spad{a*b} is the product of \\spad{a} and \\spad{b} in a set with a binary operation.")))
@@ -2806,7 +2806,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-348))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-367))))
(-719 R UP)
((|constructor| (NIL "A \\spadtype{MonogenicAlgebra} is an algebra of finite rank which can be generated by a single element.")) (|derivationCoordinates| (((|Matrix| |#1|) (|Vector| $) (|Mapping| |#1| |#1|)) "\\spad{derivationCoordinates(b,{} ')} returns \\spad{M} such that \\spad{b' = M b}.")) (|lift| ((|#2| $) "\\spad{lift(z)} returns a minimal degree univariate polynomial up such that \\spad{z=reduce up}.")) (|convert| (($ |#2|) "\\spad{convert(up)} converts the univariate polynomial \\spad{up} to an algebra element,{} reducing by the \\spad{definingPolynomial()} if necessary.")) (|reduce| (((|Union| $ "failed") (|Fraction| |#2|)) "\\spad{reduce(frac)} converts the fraction \\spad{frac} to an algebra element.") (($ |#2|) "\\spad{reduce(up)} converts the univariate polynomial \\spad{up} to an algebra element,{} reducing by the \\spad{definingPolynomial()} if necessary.")) (|definingPolynomial| ((|#2|) "\\spad{definingPolynomial()} returns the minimal polynomial which \\spad{generator()} satisfies.")) (|generator| (($) "\\spad{generator()} returns the generator for this domain.")))
-((-4395 |has| |#1| (-362)) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 |has| |#1| (-362)) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-720 S)
((|constructor| (NIL "The class of multiplicative monoids,{} \\spadignore{i.e.} semigroups with a multiplicative identity element. \\blankline")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} tries to compute the multiplicative inverse for \\spad{x} or \"failed\" if it cannot find the inverse (see unitsKnown).")) (** (($ $ (|NonNegativeInteger|)) "\\spad{x**n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (|one?| (((|Boolean|) $) "\\spad{one?(x)} tests if \\spad{x} is equal to 1.")) (|sample| (($) "\\spad{sample yields} a value of type \\%")) ((|One|) (($) "1 is the multiplicative identity.")))
@@ -2816,7 +2816,7 @@ NIL
((|constructor| (NIL "The class of multiplicative monoids,{} \\spadignore{i.e.} semigroups with a multiplicative identity element. \\blankline")) (|recip| (((|Union| $ "failed") $) "\\spad{recip(x)} tries to compute the multiplicative inverse for \\spad{x} or \"failed\" if it cannot find the inverse (see unitsKnown).")) (** (($ $ (|NonNegativeInteger|)) "\\spad{x**n} returns the repeated product of \\spad{x} \\spad{n} times,{} \\spadignore{i.e.} exponentiation.")) (|one?| (((|Boolean|) $) "\\spad{one?(x)} tests if \\spad{x} is equal to 1.")) (|sample| (($) "\\spad{sample yields} a value of type \\%")) ((|One|) (($) "1 is the multiplicative identity.")))
NIL
NIL
-(-722 -3197 UP)
+(-722 -3196 UP)
((|constructor| (NIL "Tools for handling monomial extensions.")) (|decompose| (((|Record| (|:| |poly| |#2|) (|:| |normal| (|Fraction| |#2|)) (|:| |special| (|Fraction| |#2|))) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{decompose(f,{} D)} returns \\spad{[p,{}n,{}s]} such that \\spad{f = p+n+s},{} all the squarefree factors of \\spad{denom(n)} are normal \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} \\spad{denom(s)} is special \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} and \\spad{n} and \\spad{s} are proper fractions (no pole at infinity). \\spad{D} is the derivation to use.")) (|normalDenom| ((|#2| (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{normalDenom(f,{} D)} returns the product of all the normal factors of \\spad{denom(f)}. \\spad{D} is the derivation to use.")) (|splitSquarefree| (((|Record| (|:| |normal| (|Factored| |#2|)) (|:| |special| (|Factored| |#2|))) |#2| (|Mapping| |#2| |#2|)) "\\spad{splitSquarefree(p,{} D)} returns \\spad{[n_1 n_2\\^2 ... n_m\\^m,{} s_1 s_2\\^2 ... s_q\\^q]} such that \\spad{p = n_1 n_2\\^2 ... n_m\\^m s_1 s_2\\^2 ... s_q\\^q},{} each \\spad{n_i} is normal \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D} and each \\spad{s_i} is special \\spad{w}.\\spad{r}.\\spad{t} \\spad{D}. \\spad{D} is the derivation to use.")) (|split| (((|Record| (|:| |normal| |#2|) (|:| |special| |#2|)) |#2| (|Mapping| |#2| |#2|)) "\\spad{split(p,{} D)} returns \\spad{[n,{}s]} such that \\spad{p = n s},{} all the squarefree factors of \\spad{n} are normal \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} and \\spad{s} is special \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D}. \\spad{D} is the derivation to use.")))
NIL
NIL
@@ -2834,8 +2834,8 @@ NIL
NIL
(-726 |vl| R)
((|constructor| (NIL "\\indented{2}{This type is the basic representation of sparse recursive multivariate} polynomials whose variables are from a user specified list of symbols. The ordering is specified by the position of the variable in the list. The coefficient ring may be non commutative,{} but the variables are assumed to commute.")))
-(((-4404 "*") |has| |#2| (-171)) (-4395 |has| |#2| (-554)) (-4400 |has| |#2| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#2| (QUOTE (-904))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-554)))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362))) (|HasAttribute| |#2| (QUOTE -4400)) (|HasCategory| |#2| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-144)))))
+(((-4405 "*") |has| |#2| (-171)) (-4396 |has| |#2| (-554)) (-4401 |has| |#2| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#2| (QUOTE (-904))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-554)))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-859 |#1|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362))) (|HasAttribute| |#2| (QUOTE -4401)) (|HasCategory| |#2| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-144)))))
(-727 E OV R PRF)
((|constructor| (NIL "\\indented{3}{This package exports a factor operation for multivariate polynomials} with coefficients which are rational functions over some ring \\spad{R} over which we can factor. It is used internally by packages such as primary decomposition which need to work with polynomials with rational function coefficients,{} \\spadignore{i.e.} themselves fractions of polynomials.")) (|factor| (((|Factored| |#4|) |#4|) "\\spad{factor(prf)} factors a polynomial with rational function coefficients.")) (|pushuconst| ((|#4| (|Fraction| (|Polynomial| |#3|)) |#2|) "\\spad{pushuconst(r,{}var)} takes a rational function and raises all occurances of the variable \\spad{var} to the polynomial level.")) (|pushucoef| ((|#4| (|SparseUnivariatePolynomial| (|Polynomial| |#3|)) |#2|) "\\spad{pushucoef(upoly,{}var)} converts the anonymous univariate polynomial \\spad{upoly} to a polynomial in \\spad{var} over rational functions.")) (|pushup| ((|#4| |#4| |#2|) "\\spad{pushup(prf,{}var)} raises all occurences of the variable \\spad{var} in the coefficients of the polynomial \\spad{prf} back to the polynomial level.")) (|pushdterm| ((|#4| (|SparseUnivariatePolynomial| |#4|) |#2|) "\\spad{pushdterm(monom,{}var)} pushes all top level occurences of the variable \\spad{var} into the coefficient domain for the monomial \\spad{monom}.")) (|pushdown| ((|#4| |#4| |#2|) "\\spad{pushdown(prf,{}var)} pushes all top level occurences of the variable \\spad{var} into the coefficient domain for the polynomial \\spad{prf}.")) (|totalfract| (((|Record| (|:| |sup| (|Polynomial| |#3|)) (|:| |inf| (|Polynomial| |#3|))) |#4|) "\\spad{totalfract(prf)} takes a polynomial whose coefficients are themselves fractions of polynomials and returns a record containing the numerator and denominator resulting from putting \\spad{prf} over a common denominator.")) (|convert| (((|Symbol|) $) "\\spad{convert(x)} converts \\spad{x} to a symbol")))
NIL
@@ -2850,15 +2850,15 @@ NIL
NIL
(-730 R M)
((|constructor| (NIL "\\spadtype{MonoidRing}(\\spad{R},{}\\spad{M}),{} implements the algebra of all maps from the monoid \\spad{M} to the commutative ring \\spad{R} with finite support. Multiplication of two maps \\spad{f} and \\spad{g} is defined to map an element \\spad{c} of \\spad{M} to the (convolution) sum over {\\em f(a)g(b)} such that {\\em ab = c}. Thus \\spad{M} can be identified with a canonical basis and the maps can also be considered as formal linear combinations of the elements in \\spad{M}. Scalar multiples of a basis element are called monomials. A prominent example is the class of polynomials where the monoid is a direct product of the natural numbers with pointwise addition. When \\spad{M} is \\spadtype{FreeMonoid Symbol},{} one gets polynomials in infinitely many non-commuting variables. Another application area is representation theory of finite groups \\spad{G},{} where modules over \\spadtype{MonoidRing}(\\spad{R},{}\\spad{G}) are studied.")) (|reductum| (($ $) "\\spad{reductum(f)} is \\spad{f} minus its leading monomial.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(f)} gives the coefficient of \\spad{f},{} whose corresponding monoid element is the greatest among all those with non-zero coefficients.")) (|leadingMonomial| ((|#2| $) "\\spad{leadingMonomial(f)} gives the monomial of \\spad{f} whose corresponding monoid element is the greatest among all those with non-zero coefficients.")) (|numberOfMonomials| (((|NonNegativeInteger|) $) "\\spad{numberOfMonomials(f)} is the number of non-zero coefficients with respect to the canonical basis.")) (|monomials| (((|List| $) $) "\\spad{monomials(f)} gives the list of all monomials whose sum is \\spad{f}.")) (|coefficients| (((|List| |#1|) $) "\\spad{coefficients(f)} lists all non-zero coefficients.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(f)} tests if \\spad{f} is a single monomial.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,{}u)} maps function \\spad{fn} onto the coefficients of the non-zero monomials of \\spad{u}.")) (|terms| (((|List| (|Record| (|:| |coef| |#1|) (|:| |monom| |#2|))) $) "\\spad{terms(f)} gives the list of non-zero coefficients combined with their corresponding basis element as records. This is the internal representation.")) (|coerce| (($ (|List| (|Record| (|:| |coef| |#1|) (|:| |monom| |#2|)))) "\\spad{coerce(lt)} converts a list of terms and coefficients to a member of the domain.")) (|coefficient| ((|#1| $ |#2|) "\\spad{coefficient(f,{}m)} extracts the coefficient of \\spad{m} in \\spad{f} with respect to the canonical basis \\spad{M}.")) (|monomial| (($ |#1| |#2|) "\\spad{monomial(r,{}m)} creates a scalar multiple of the basis element \\spad{m}.")))
-((-4397 |has| |#1| (-171)) (-4396 |has| |#1| (-171)) (-4399 . T))
+((-4398 |has| |#1| (-171)) (-4397 |has| |#1| (-171)) (-4400 . T))
((-12 (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#2| (QUOTE (-367)))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-845))))
(-731 S)
((|constructor| (NIL "A multi-set aggregate is a set which keeps track of the multiplicity of its elements.")))
-((-4392 . T) (-4403 . T))
+((-4393 . T) (-4404 . T))
NIL
(-732 S)
((|constructor| (NIL "A multiset is a set with multiplicities.")) (|remove!| (($ (|Mapping| (|Boolean|) |#1|) $ (|Integer|)) "\\spad{remove!(p,{}ms,{}number)} removes destructively at most \\spad{number} copies of elements \\spad{x} such that \\spad{p(x)} is \\spadfun{\\spad{true}} if \\spad{number} is positive,{} all of them if \\spad{number} equals zero,{} and all but at most \\spad{-number} if \\spad{number} is negative.") (($ |#1| $ (|Integer|)) "\\spad{remove!(x,{}ms,{}number)} removes destructively at most \\spad{number} copies of element \\spad{x} if \\spad{number} is positive,{} all of them if \\spad{number} equals zero,{} and all but at most \\spad{-number} if \\spad{number} is negative.")) (|remove| (($ (|Mapping| (|Boolean|) |#1|) $ (|Integer|)) "\\spad{remove(p,{}ms,{}number)} removes at most \\spad{number} copies of elements \\spad{x} such that \\spad{p(x)} is \\spadfun{\\spad{true}} if \\spad{number} is positive,{} all of them if \\spad{number} equals zero,{} and all but at most \\spad{-number} if \\spad{number} is negative.") (($ |#1| $ (|Integer|)) "\\spad{remove(x,{}ms,{}number)} removes at most \\spad{number} copies of element \\spad{x} if \\spad{number} is positive,{} all of them if \\spad{number} equals zero,{} and all but at most \\spad{-number} if \\spad{number} is negative.")) (|members| (((|List| |#1|) $) "\\spad{members(ms)} returns a list of the elements of \\spad{ms} {\\em without} their multiplicity. See also \\spadfun{parts}.")) (|multiset| (($ (|List| |#1|)) "\\spad{multiset(ls)} creates a multiset with elements from \\spad{ls}.") (($ |#1|) "\\spad{multiset(s)} creates a multiset with singleton \\spad{s}.") (($) "\\spad{multiset()}\\$\\spad{D} creates an empty multiset of domain \\spad{D}.")))
-((-4402 . T) (-4392 . T) (-4403 . T))
+((-4403 . T) (-4393 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-733)
((|constructor| (NIL "\\spadtype{MoreSystemCommands} implements an interface with the system command facility. These are the commands that are issued from source files or the system interpreter and they start with a close parenthesis,{} \\spadignore{e.g.} \\spadsyscom{what} commands.")) (|systemCommand| (((|Void|) (|String|)) "\\spad{systemCommand(cmd)} takes the string \\spadvar{\\spad{cmd}} and passes it to the runtime environment for execution as a system command. Although various things may be printed,{} no usable value is returned.")))
@@ -2870,7 +2870,7 @@ NIL
NIL
(-735 |Coef| |Var|)
((|constructor| (NIL "\\spadtype{MultivariateTaylorSeriesCategory} is the most general multivariate Taylor series category.")) (|integrate| (($ $ |#2|) "\\spad{integrate(f,{}x)} returns the anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{x} with constant coefficient 1. We may integrate a series when we can divide coefficients by integers.")) (|polynomial| (((|Polynomial| |#1|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{polynomial(f,{}k1,{}k2)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (((|Polynomial| |#1|) $ (|NonNegativeInteger|)) "\\spad{polynomial(f,{}k)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|order| (((|NonNegativeInteger|) $ |#2| (|NonNegativeInteger|)) "\\spad{order(f,{}x,{}n)} returns \\spad{min(n,{}order(f,{}x))}.") (((|NonNegativeInteger|) $ |#2|) "\\spad{order(f,{}x)} returns the order of \\spad{f} viewed as a series in \\spad{x} may result in an infinite loop if \\spad{f} has no non-zero terms.")) (|monomial| (($ $ (|List| |#2|) (|List| (|NonNegativeInteger|))) "\\spad{monomial(a,{}[x1,{}x2,{}...,{}xk],{}[n1,{}n2,{}...,{}nk])} returns \\spad{a * x1^n1 * ... * xk^nk}.") (($ $ |#2| (|NonNegativeInteger|)) "\\spad{monomial(a,{}x,{}n)} returns \\spad{a*x^n}.")) (|extend| (($ $ (|NonNegativeInteger|)) "\\spad{extend(f,{}n)} causes all terms of \\spad{f} of degree \\spad{<= n} to be computed.")) (|coefficient| (($ $ (|List| |#2|) (|List| (|NonNegativeInteger|))) "\\spad{coefficient(f,{}[x1,{}x2,{}...,{}xk],{}[n1,{}n2,{}...,{}nk])} returns the coefficient of \\spad{x1^n1 * ... * xk^nk} in \\spad{f}.") (($ $ |#2| (|NonNegativeInteger|)) "\\spad{coefficient(f,{}x,{}n)} returns the coefficient of \\spad{x^n} in \\spad{f}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4397 . T) (-4396 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4398 . T) (-4397 . T) (-4400 . T))
NIL
(-736 OV E R P)
((|constructor| (NIL "\\indented{2}{This is the top level package for doing multivariate factorization} over basic domains like \\spadtype{Integer} or \\spadtype{Fraction Integer}.")) (|factor| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factor(p)} factors the multivariate polynomial \\spad{p} over its coefficient domain where \\spad{p} is represented as a univariate polynomial with multivariate coefficients") (((|Factored| |#4|) |#4|) "\\spad{factor(p)} factors the multivariate polynomial \\spad{p} over its coefficient domain")))
@@ -2886,7 +2886,7 @@ NIL
NIL
(-739 R)
((|constructor| (NIL "NonAssociativeAlgebra is the category of non associative algebras (modules which are themselves non associative rngs). Axioms \\indented{3}{\\spad{r*}(a*b) = (r*a)\\spad{*b} = a*(\\spad{r*b})}")) (|plenaryPower| (($ $ (|PositiveInteger|)) "\\spad{plenaryPower(a,{}n)} is recursively defined to be \\spad{plenaryPower(a,{}n-1)*plenaryPower(a,{}n-1)} for \\spad{n>1} and \\spad{a} for \\spad{n=1}.")))
-((-4397 . T) (-4396 . T))
+((-4398 . T) (-4397 . T))
NIL
(-740)
((|constructor| (NIL "This package uses the NAG Library to compute the zeros of a polynomial with real or complex coefficients. See \\downlink{Manual Page}{manpageXXc02}.")) (|c02agf| (((|Result|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Boolean|) (|Integer|)) "\\spad{c02agf(a,{}n,{}scale,{}ifail)} finds all the roots of a real polynomial equation,{} using a variant of Laguerre\\spad{'s} Method. See \\downlink{Manual Page}{manpageXXc02agf}.")) (|c02aff| (((|Result|) (|Matrix| (|DoubleFloat|)) (|Integer|) (|Boolean|) (|Integer|)) "\\spad{c02aff(a,{}n,{}scale,{}ifail)} finds all the roots of a complex polynomial equation,{} using a variant of Laguerre\\spad{'s} Method. See \\downlink{Manual Page}{manpageXXc02aff}.")))
@@ -2968,11 +2968,11 @@ NIL
((|constructor| (NIL "This package computes explicitly eigenvalues and eigenvectors of matrices with entries over the complex rational numbers. The results are expressed either as complex floating numbers or as complex rational numbers depending on the type of the precision parameter.")) (|complexEigenvectors| (((|List| (|Record| (|:| |outval| (|Complex| |#1|)) (|:| |outmult| (|Integer|)) (|:| |outvect| (|List| (|Matrix| (|Complex| |#1|)))))) (|Matrix| (|Complex| (|Fraction| (|Integer|)))) |#1|) "\\spad{complexEigenvectors(m,{}eps)} returns a list of records each one containing a complex eigenvalue,{} its algebraic multiplicity,{} and a list of associated eigenvectors. All these results are computed to precision \\spad{eps} and are expressed as complex floats or complex rational numbers depending on the type of \\spad{eps} (float or rational).")) (|complexEigenvalues| (((|List| (|Complex| |#1|)) (|Matrix| (|Complex| (|Fraction| (|Integer|)))) |#1|) "\\spad{complexEigenvalues(m,{}eps)} computes the eigenvalues of the matrix \\spad{m} to precision \\spad{eps}. The eigenvalues are expressed as complex floats or complex rational numbers depending on the type of \\spad{eps} (float or rational).")) (|characteristicPolynomial| (((|Polynomial| (|Complex| (|Fraction| (|Integer|)))) (|Matrix| (|Complex| (|Fraction| (|Integer|)))) (|Symbol|)) "\\spad{characteristicPolynomial(m,{}x)} returns the characteristic polynomial of the matrix \\spad{m} expressed as polynomial over Complex Rationals with variable \\spad{x}.") (((|Polynomial| (|Complex| (|Fraction| (|Integer|)))) (|Matrix| (|Complex| (|Fraction| (|Integer|))))) "\\spad{characteristicPolynomial(m)} returns the characteristic polynomial of the matrix \\spad{m} expressed as polynomial over complex rationals with a new symbol as variable.")))
NIL
NIL
-(-760 -3197)
+(-760 -3196)
((|constructor| (NIL "\\spadtype{NumericContinuedFraction} provides functions \\indented{2}{for converting floating point numbers to continued fractions.}")) (|continuedFraction| (((|ContinuedFraction| (|Integer|)) |#1|) "\\spad{continuedFraction(f)} converts the floating point number \\spad{f} to a reduced continued fraction.")))
NIL
NIL
-(-761 P -3197)
+(-761 P -3196)
((|constructor| (NIL "This package provides a division and related operations for \\spadtype{MonogenicLinearOperator}\\spad{s} over a \\spadtype{Field}. Since the multiplication is in general non-commutative,{} these operations all have left- and right-hand versions. This package provides the operations based on left-division.")) (|leftLcm| ((|#1| |#1| |#1|) "\\spad{leftLcm(a,{}b)} computes the value \\spad{m} of lowest degree such that \\spad{m = a*aa = b*bb} for some values \\spad{aa} and \\spad{bb}. The value \\spad{m} is computed using left-division.")) (|leftGcd| ((|#1| |#1| |#1|) "\\spad{leftGcd(a,{}b)} computes the value \\spad{g} of highest degree such that \\indented{3}{\\spad{a = aa*g}} \\indented{3}{\\spad{b = bb*g}} for some values \\spad{aa} and \\spad{bb}. The value \\spad{g} is computed using left-division.")) (|leftExactQuotient| (((|Union| |#1| "failed") |#1| |#1|) "\\spad{leftExactQuotient(a,{}b)} computes the value \\spad{q},{} if it exists,{} \\indented{1}{such that \\spad{a = b*q}.}")) (|leftRemainder| ((|#1| |#1| |#1|) "\\spad{leftRemainder(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{r} is returned.")) (|leftQuotient| ((|#1| |#1| |#1|) "\\spad{leftQuotient(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{q} is returned.")) (|leftDivide| (((|Record| (|:| |quotient| |#1|) (|:| |remainder| |#1|)) |#1| |#1|) "\\spad{leftDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``left division\\spad{''}.")))
NIL
NIL
@@ -2980,7 +2980,7 @@ NIL
NIL
NIL
NIL
-(-763 UP -3197)
+(-763 UP -3196)
((|constructor| (NIL "In this package \\spad{F} is a framed algebra over the integers (typically \\spad{F = Z[a]} for some algebraic integer a). The package provides functions to compute the integral closure of \\spad{Z} in the quotient quotient field of \\spad{F}.")) (|localIntegralBasis| (((|Record| (|:| |basis| (|Matrix| (|Integer|))) (|:| |basisDen| (|Integer|)) (|:| |basisInv| (|Matrix| (|Integer|)))) (|Integer|)) "\\spad{integralBasis(p)} returns a record \\spad{[basis,{}basisDen,{}basisInv]} containing information regarding the local integral closure of \\spad{Z} at the prime \\spad{p} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{Z}-module basis \\spad{w1,{}w2,{}...,{}wn}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|integralBasis| (((|Record| (|:| |basis| (|Matrix| (|Integer|))) (|:| |basisDen| (|Integer|)) (|:| |basisInv| (|Matrix| (|Integer|))))) "\\spad{integralBasis()} returns a record \\spad{[basis,{}basisDen,{}basisInv]} containing information regarding the integral closure of \\spad{Z} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{Z}-module basis \\spad{w1,{}w2,{}...,{}wn}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|discriminant| (((|Integer|)) "\\spad{discriminant()} returns the discriminant of the integral closure of \\spad{Z} in the quotient field of the framed algebra \\spad{F}.")))
NIL
NIL
@@ -2994,9 +2994,9 @@ NIL
NIL
(-766)
((|constructor| (NIL "\\spadtype{NonNegativeInteger} provides functions for non \\indented{2}{negative integers.}")) (|commutative| ((|attribute| "*") "\\spad{commutative(\"*\")} means multiplication is commutative : \\spad{x*y = y*x}.")) (|random| (($ $) "\\spad{random(n)} returns a random integer from 0 to \\spad{n-1}.")) (|shift| (($ $ (|Integer|)) "\\spad{shift(a,{}i)} shift \\spad{a} by \\spad{i} bits.")) (|exquo| (((|Union| $ "failed") $ $) "\\spad{exquo(a,{}b)} returns the quotient of \\spad{a} and \\spad{b},{} or \"failed\" if \\spad{b} is zero or \\spad{a} rem \\spad{b} is zero.")) (|divide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{divide(a,{}b)} returns a record containing both remainder and quotient.")) (|gcd| (($ $ $) "\\spad{gcd(a,{}b)} computes the greatest common divisor of two non negative integers \\spad{a} and \\spad{b}.")) (|rem| (($ $ $) "\\spad{a rem b} returns the remainder of \\spad{a} and \\spad{b}.")) (|quo| (($ $ $) "\\spad{a quo b} returns the quotient of \\spad{a} and \\spad{b},{} forgetting the remainder.")))
-(((-4404 "*") . T))
+(((-4405 "*") . T))
NIL
-(-767 R -3197)
+(-767 R -3196)
((|constructor| (NIL "NonLinearFirstOrderODESolver provides a function for finding closed form first integrals of nonlinear ordinary differential equations of order 1.")) (|solve| (((|Union| |#2| "failed") |#2| |#2| (|BasicOperator|) (|Symbol|)) "\\spad{solve(M(x,{}y),{} N(x,{}y),{} y,{} x)} returns \\spad{F(x,{}y)} such that \\spad{F(x,{}y) = c} for a constant \\spad{c} is a first integral of the equation \\spad{M(x,{}y) dx + N(x,{}y) dy = 0},{} or \"failed\" if no first-integral can be found.")))
NIL
NIL
@@ -3016,7 +3016,7 @@ NIL
((|constructor| (NIL "A package for computing normalized assocites of univariate polynomials with coefficients in a tower of simple extensions of a field.\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{1}{[2] \\spad{M}. MORENO MAZA and \\spad{R}. RIOBOO \"Computations of \\spad{gcd} over} \\indented{5}{algebraic towers of simple extensions\" In proceedings of AAECC11} \\indented{5}{Paris,{} 1995.} \\indented{1}{[3] \\spad{M}. MORENO MAZA \"Calculs de pgcd au-dessus des tours} \\indented{5}{d'extensions simples et resolution des systemes d'equations} \\indented{5}{algebriques\" These,{} Universite \\spad{P}.etM. Curie,{} Paris,{} 1997.}")) (|normInvertible?| (((|List| (|Record| (|:| |val| (|Boolean|)) (|:| |tower| |#5|))) |#4| |#5|) "\\axiom{normInvertible?(\\spad{p},{}\\spad{ts})} is an internal subroutine,{} exported only for developement.")) (|outputArgs| (((|Void|) (|String|) (|String|) |#4| |#5|) "\\axiom{outputArgs(\\spad{s1},{}\\spad{s2},{}\\spad{p},{}\\spad{ts})} is an internal subroutine,{} exported only for developement.")) (|normalize| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#5|) "\\axiom{normalize(\\spad{p},{}\\spad{ts})} normalizes \\axiom{\\spad{p}} \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts}.")) (|normalizedAssociate| ((|#4| |#4| |#5|) "\\axiom{normalizedAssociate(\\spad{p},{}\\spad{ts})} returns a normalized polynomial \\axiom{\\spad{n}} \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts} such that \\axiom{\\spad{n}} and \\axiom{\\spad{p}} are associates \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts} and assuming that \\axiom{\\spad{p}} is invertible \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts}.")) (|recip| (((|Record| (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) "\\axiom{recip(\\spad{p},{}\\spad{ts})} returns the inverse of \\axiom{\\spad{p}} \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts} assuming that \\axiom{\\spad{p}} is invertible \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts}.")))
NIL
NIL
-(-772 -3197 |ExtF| |SUEx| |ExtP| |n|)
+(-772 -3196 |ExtF| |SUEx| |ExtP| |n|)
((|constructor| (NIL "This package \\undocumented")) (|Frobenius| ((|#4| |#4|) "\\spad{Frobenius(x)} \\undocumented")) (|retractIfCan| (((|Union| (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|)) "failed") |#4|) "\\spad{retractIfCan(x)} \\undocumented")) (|normFactors| (((|List| |#4|) |#4|) "\\spad{normFactors(x)} \\undocumented")))
NIL
NIL
@@ -3030,23 +3030,23 @@ NIL
NIL
(-775 R |VarSet|)
((|constructor| (NIL "A post-facto extension for \\axiomType{\\spad{SMP}} in order to speed up operations related to pseudo-division and \\spad{gcd}. This domain is based on the \\axiomType{NSUP} constructor which is itself a post-facto extension of the \\axiomType{SUP} constructor.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-904))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168)))) (-2236 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168)))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168)))) (-2236 (|HasCategory| |#1| (QUOTE (-544)))) (-2236 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168)))) (-2236 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-562))))) (-2236 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168)))) (-2236 (|HasCategory| |#1| (LIST (QUOTE -987) (QUOTE (-562))))))) (|HasAttribute| |#1| (QUOTE -4400)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-904))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168)))) (-2234 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168)))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168)))) (-2234 (|HasCategory| |#1| (QUOTE (-544)))) (-2234 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168)))) (-2234 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-562))))) (-2234 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-1168)))) (-2234 (|HasCategory| |#1| (LIST (QUOTE -987) (QUOTE (-562))))))) (|HasAttribute| |#1| (QUOTE -4401)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
(-776 R S)
((|constructor| (NIL "This package lifts a mapping from coefficient rings \\spad{R} to \\spad{S} to a mapping from sparse univariate polynomial over \\spad{R} to a sparse univariate polynomial over \\spad{S}. Note that the mapping is assumed to send zero to zero,{} since it will only be applied to the non-zero coefficients of the polynomial.")) (|map| (((|NewSparseUnivariatePolynomial| |#2|) (|Mapping| |#2| |#1|) (|NewSparseUnivariatePolynomial| |#1|)) "\\axiom{map(func,{} poly)} creates a new polynomial by applying func to every non-zero coefficient of the polynomial poly.")))
NIL
NIL
(-777 R)
((|constructor| (NIL "A post-facto extension for \\axiomType{SUP} in order to speed up operations related to pseudo-division and \\spad{gcd} for both \\axiomType{SUP} and,{} consequently,{} \\axiomType{NSMP}.")) (|halfExtendedResultant2| (((|Record| (|:| |resultant| |#1|) (|:| |coef2| $)) $ $) "\\axiom{halfExtendedResultant2(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca]} such that \\axiom{extendedResultant(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca,{} \\spad{cb}]}")) (|halfExtendedResultant1| (((|Record| (|:| |resultant| |#1|) (|:| |coef1| $)) $ $) "\\axiom{halfExtendedResultant1(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca]} such that \\axiom{extendedResultant(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca,{} \\spad{cb}]}")) (|extendedResultant| (((|Record| (|:| |resultant| |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) "\\axiom{extendedResultant(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}ca,{}\\spad{cb}]} such that \\axiom{\\spad{r}} is the resultant of \\axiom{a} and \\axiom{\\spad{b}} and \\axiom{\\spad{r} = ca * a + \\spad{cb} * \\spad{b}}")) (|halfExtendedSubResultantGcd2| (((|Record| (|:| |gcd| $) (|:| |coef2| $)) $ $) "\\axiom{halfExtendedSubResultantGcd2(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}\\spad{cb}]} such that \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{} \\spad{cb}]}")) (|halfExtendedSubResultantGcd1| (((|Record| (|:| |gcd| $) (|:| |coef1| $)) $ $) "\\axiom{halfExtendedSubResultantGcd1(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca]} such that \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{} \\spad{cb}]}")) (|extendedSubResultantGcd| (((|Record| (|:| |gcd| $) (|:| |coef1| $) (|:| |coef2| $)) $ $) "\\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{} \\spad{cb}]} such that \\axiom{\\spad{g}} is a \\spad{gcd} of \\axiom{a} and \\axiom{\\spad{b}} in \\axiom{\\spad{R^}(\\spad{-1}) \\spad{P}} and \\axiom{\\spad{g} = ca * a + \\spad{cb} * \\spad{b}}")) (|lastSubResultant| (($ $ $) "\\axiom{lastSubResultant(a,{}\\spad{b})} returns \\axiom{resultant(a,{}\\spad{b})} if \\axiom{a} and \\axiom{\\spad{b}} has no non-trivial \\spad{gcd} in \\axiom{\\spad{R^}(\\spad{-1}) \\spad{P}} otherwise the non-zero sub-resultant with smallest index.")) (|subResultantsChain| (((|List| $) $ $) "\\axiom{subResultantsChain(a,{}\\spad{b})} returns the list of the non-zero sub-resultants of \\axiom{a} and \\axiom{\\spad{b}} sorted by increasing degree.")) (|lazyPseudoQuotient| (($ $ $) "\\axiom{lazyPseudoQuotient(a,{}\\spad{b})} returns \\axiom{\\spad{q}} if \\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}")) (|lazyPseudoDivide| (((|Record| (|:| |coef| |#1|) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{\\spad{c^n} * a = \\spad{q*b} \\spad{+r}} and \\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}\\spad{c},{}\\spad{n}]} where \\axiom{\\spad{n} + \\spad{g} = max(0,{} degree(\\spad{b}) - degree(a) + 1)}.")) (|lazyPseudoRemainder| (($ $ $) "\\axiom{lazyPseudoRemainder(a,{}\\spad{b})} returns \\axiom{\\spad{r}} if \\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}\\spad{c},{}\\spad{n}]}. This lazy pseudo-remainder is computed by means of the \\axiomOpFrom{fmecg}{NewSparseUnivariatePolynomial} operation.")) (|lazyResidueClass| (((|Record| (|:| |polnum| $) (|:| |polden| |#1|) (|:| |power| (|NonNegativeInteger|))) $ $) "\\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{r},{}\\spad{c},{}\\spad{n}]} such that \\axiom{\\spad{r}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and \\axiom{\\spad{b}} divides \\axiom{\\spad{c^n} * a - \\spad{r}} where \\axiom{\\spad{c}} is \\axiom{leadingCoefficient(\\spad{b})} and \\axiom{\\spad{n}} is as small as possible with the previous properties.")) (|monicModulo| (($ $ $) "\\axiom{monicModulo(a,{}\\spad{b})} returns \\axiom{\\spad{r}} such that \\axiom{\\spad{r}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and \\axiom{\\spad{b}} divides \\axiom{a \\spad{-r}} where \\axiom{\\spad{b}} is monic.")) (|fmecg| (($ $ (|NonNegativeInteger|) |#1| $) "\\axiom{fmecg(\\spad{p1},{}\\spad{e},{}\\spad{r},{}\\spad{p2})} returns \\axiom{\\spad{p1} - \\spad{r} * X**e * \\spad{p2}} where \\axiom{\\spad{X}} is \\axiom{monomial(1,{}1)}")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4398 |has| |#1| (-362)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-1143))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-232))) (|HasAttribute| |#1| (QUOTE -4400)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4399 |has| |#1| (-362)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-1143))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-232))) (|HasAttribute| |#1| (QUOTE -4401)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
(-778 R)
((|constructor| (NIL "This package provides polynomials as functions on a ring.")) (|eulerE| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{eulerE(n,{}r)} \\undocumented")) (|bernoulliB| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{bernoulliB(n,{}r)} \\undocumented")) (|cyclotomic| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{cyclotomic(n,{}r)} \\undocumented")))
NIL
((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))))
(-779 R E V P)
((|constructor| (NIL "The category of normalized triangular sets. A triangular set \\spad{ts} is said normalized if for every algebraic variable \\spad{v} of \\spad{ts} the polynomial \\spad{select(ts,{}v)} is normalized \\spad{w}.\\spad{r}.\\spad{t}. every polynomial in \\spad{collectUnder(ts,{}v)}. A polynomial \\spad{p} is said normalized \\spad{w}.\\spad{r}.\\spad{t}. a non-constant polynomial \\spad{q} if \\spad{p} is constant or \\spad{degree(p,{}mdeg(q)) = 0} and \\spad{init(p)} is normalized \\spad{w}.\\spad{r}.\\spad{t}. \\spad{q}. One of the important features of normalized triangular sets is that they are regular sets.\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{1}{[2] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)} \\indented{1}{[3] \\spad{M}. MORENO MAZA and \\spad{R}. RIOBOO \"Computations of \\spad{gcd} over} \\indented{5}{algebraic towers of simple extensions\" In proceedings of AAECC11} \\indented{5}{Paris,{} 1995.} \\indented{1}{[4] \\spad{M}. MORENO MAZA \"Calculs de pgcd au-dessus des tours} \\indented{5}{d'extensions simples et resolution des systemes d'equations} \\indented{5}{algebriques\" These,{} Universite \\spad{P}.etM. Curie,{} Paris,{} 1997.}")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
NIL
(-780 S)
((|constructor| (NIL "Numeric provides real and complex numerical evaluation functions for various symbolic types.")) (|numericIfCan| (((|Union| (|Float|) "failed") (|Expression| |#1|) (|PositiveInteger|)) "\\spad{numericIfCan(x,{} n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Expression| |#1|)) "\\spad{numericIfCan(x)} returns a real approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Fraction| (|Polynomial| |#1|)) (|PositiveInteger|)) "\\spad{numericIfCan(x,{}n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Fraction| (|Polynomial| |#1|))) "\\spad{numericIfCan(x)} returns a real approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Polynomial| |#1|) (|PositiveInteger|)) "\\spad{numericIfCan(x,{}n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Float|) "failed") (|Polynomial| |#1|)) "\\spad{numericIfCan(x)} returns a real approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.")) (|complexNumericIfCan| (((|Union| (|Complex| (|Float|)) "failed") (|Expression| (|Complex| |#1|)) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Expression| (|Complex| |#1|))) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Expression| |#1|) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Expression| |#1|)) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Fraction| (|Polynomial| (|Complex| |#1|))) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Fraction| (|Polynomial| (|Complex| |#1|)))) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Fraction| (|Polynomial| |#1|)) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x,{} n)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Fraction| (|Polynomial| |#1|))) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Polynomial| |#1|) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Polynomial| |#1|)) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Polynomial| (|Complex| |#1|)) (|PositiveInteger|)) "\\spad{complexNumericIfCan(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places,{} or \"failed\" if \\axiom{\\spad{x}} is not a constant.") (((|Union| (|Complex| (|Float|)) "failed") (|Polynomial| (|Complex| |#1|))) "\\spad{complexNumericIfCan(x)} returns a complex approximation of \\spad{x},{} or \"failed\" if \\axiom{\\spad{x}} is not constant.")) (|complexNumeric| (((|Complex| (|Float|)) (|Expression| (|Complex| |#1|)) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Expression| (|Complex| |#1|))) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Expression| |#1|) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Expression| |#1|)) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Fraction| (|Polynomial| (|Complex| |#1|))) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Fraction| (|Polynomial| (|Complex| |#1|)))) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Fraction| (|Polynomial| |#1|)) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x}") (((|Complex| (|Float|)) (|Fraction| (|Polynomial| |#1|))) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Polynomial| |#1|) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Polynomial| |#1|)) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Polynomial| (|Complex| |#1|)) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Polynomial| (|Complex| |#1|))) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) (|Complex| |#1|) (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) (|Complex| |#1|)) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.") (((|Complex| (|Float|)) |#1| (|PositiveInteger|)) "\\spad{complexNumeric(x,{} n)} returns a complex approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Complex| (|Float|)) |#1|) "\\spad{complexNumeric(x)} returns a complex approximation of \\spad{x}.")) (|numeric| (((|Float|) (|Expression| |#1|) (|PositiveInteger|)) "\\spad{numeric(x,{} n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Float|) (|Expression| |#1|)) "\\spad{numeric(x)} returns a real approximation of \\spad{x}.") (((|Float|) (|Fraction| (|Polynomial| |#1|)) (|PositiveInteger|)) "\\spad{numeric(x,{}n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Float|) (|Fraction| (|Polynomial| |#1|))) "\\spad{numeric(x)} returns a real approximation of \\spad{x}.") (((|Float|) (|Polynomial| |#1|) (|PositiveInteger|)) "\\spad{numeric(x,{}n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Float|) (|Polynomial| |#1|)) "\\spad{numeric(x)} returns a real approximation of \\spad{x}.") (((|Float|) |#1| (|PositiveInteger|)) "\\spad{numeric(x,{} n)} returns a real approximation of \\spad{x} up to \\spad{n} decimal places.") (((|Float|) |#1|) "\\spad{numeric(x)} returns a real approximation of \\spad{x}.")))
@@ -3098,7 +3098,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-544))) (|HasCategory| |#2| (QUOTE (-1053))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-367))))
(-792 R)
((|constructor| (NIL "OctonionCategory gives the categorial frame for the octonions,{} and eight-dimensional non-associative algebra,{} doubling the the quaternions in the same way as doubling the Complex numbers to get the quaternions.")) (|inv| (($ $) "\\spad{inv(o)} returns the inverse of \\spad{o} if it exists.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(o)} returns the real part if all seven imaginary parts are 0,{} and \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(o)} returns the real part if all seven imaginary parts are 0. Error: if \\spad{o} is not rational.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(o)} tests if \\spad{o} is rational,{} \\spadignore{i.e.} that all seven imaginary parts are 0.")) (|abs| ((|#1| $) "\\spad{abs(o)} computes the absolute value of an octonion,{} equal to the square root of the \\spadfunFrom{norm}{Octonion}.")) (|octon| (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) "\\spad{octon(re,{}\\spad{ri},{}rj,{}rk,{}rE,{}rI,{}rJ,{}rK)} constructs an octonion from scalars.")) (|norm| ((|#1| $) "\\spad{norm(o)} returns the norm of an octonion,{} equal to the sum of the squares of its coefficients.")) (|imagK| ((|#1| $) "\\spad{imagK(o)} extracts the imaginary \\spad{K} part of octonion \\spad{o}.")) (|imagJ| ((|#1| $) "\\spad{imagJ(o)} extracts the imaginary \\spad{J} part of octonion \\spad{o}.")) (|imagI| ((|#1| $) "\\spad{imagI(o)} extracts the imaginary \\spad{I} part of octonion \\spad{o}.")) (|imagE| ((|#1| $) "\\spad{imagE(o)} extracts the imaginary \\spad{E} part of octonion \\spad{o}.")) (|imagk| ((|#1| $) "\\spad{imagk(o)} extracts the \\spad{k} part of octonion \\spad{o}.")) (|imagj| ((|#1| $) "\\spad{imagj(o)} extracts the \\spad{j} part of octonion \\spad{o}.")) (|imagi| ((|#1| $) "\\spad{imagi(o)} extracts the \\spad{i} part of octonion \\spad{o}.")) (|real| ((|#1| $) "\\spad{real(o)} extracts real part of octonion \\spad{o}.")) (|conjugate| (($ $) "\\spad{conjugate(o)} negates the imaginary parts \\spad{i},{}\\spad{j},{}\\spad{k},{}\\spad{E},{}\\spad{I},{}\\spad{J},{}\\spad{K} of octonian \\spad{o}.")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-793 -4037 R OS S)
((|constructor| (NIL "OctonionCategoryFunctions2 implements functions between two octonion domains defined over different rings. The function map is used to coerce between octonion types.")) (|map| ((|#3| (|Mapping| |#4| |#2|) |#1|) "\\spad{map(f,{}u)} maps \\spad{f} onto the component parts of the octonion \\spad{u}.")))
@@ -3106,17 +3106,17 @@ NIL
NIL
(-794 R)
((|constructor| (NIL "Octonion implements octonions (Cayley-Dixon algebra) over a commutative ring,{} an eight-dimensional non-associative algebra,{} doubling the quaternions in the same way as doubling the complex numbers to get the quaternions the main constructor function is {\\em octon} which takes 8 arguments: the real part,{} the \\spad{i} imaginary part,{} the \\spad{j} imaginary part,{} the \\spad{k} imaginary part,{} (as with quaternions) and in addition the imaginary parts \\spad{E},{} \\spad{I},{} \\spad{J},{} \\spad{K}.")) (|octon| (($ (|Quaternion| |#1|) (|Quaternion| |#1|)) "\\spad{octon(qe,{}qE)} constructs an octonion from two quaternions using the relation {\\em O = Q + QE}.")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|) (|devaluate| |#1|))) (-4037 (|HasCategory| (-994 |#1|) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (|HasCategory| (-994 |#1|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-1053))) (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| (-994 |#1|) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-994 |#1|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))))
(-795)
((|ODESolve| (((|Result|) (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{ODESolve(args)} performs the integration of the function given the strategy or method returned by \\axiomFun{measure}.")) (|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |explanations| (|String|))) (|RoutinesTable|) (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{measure(R,{}args)} calculates an estimate of the ability of a particular method to solve a problem. \\blankline This method may be either a specific NAG routine or a strategy (such as transforming the function from one which is difficult to one which is easier to solve). \\blankline It will call whichever agents are needed to perform analysis on the problem in order to calculate the measure. There is a parameter,{} labelled \\axiom{sofar},{} which would contain the best compatibility found so far.")))
NIL
NIL
-(-796 R -3197 L)
+(-796 R -3196 L)
((|constructor| (NIL "Solution of linear ordinary differential equations,{} constant coefficient case.")) (|constDsolve| (((|Record| (|:| |particular| |#2|) (|:| |basis| (|List| |#2|))) |#3| |#2| (|Symbol|)) "\\spad{constDsolve(op,{} g,{} x)} returns \\spad{[f,{} [y1,{}...,{}ym]]} where \\spad{f} is a particular solution of the equation \\spad{op y = g},{} and the \\spad{\\spad{yi}}\\spad{'s} form a basis for the solutions of \\spad{op y = 0}.")))
NIL
NIL
-(-797 R -3197)
+(-797 R -3196)
((|constructor| (NIL "\\spad{ElementaryFunctionODESolver} provides the top-level functions for finding closed form solutions of ordinary differential equations and initial value problems.")) (|solve| (((|Union| |#2| "failed") |#2| (|BasicOperator|) (|Equation| |#2|) (|List| |#2|)) "\\spad{solve(eq,{} y,{} x = a,{} [y0,{}...,{}ym])} returns either the solution of the initial value problem \\spad{eq,{} y(a) = y0,{} y'(a) = y1,{}...} or \"failed\" if the solution cannot be found; error if the equation is not one linear ordinary or of the form \\spad{dy/dx = f(x,{}y)}.") (((|Union| |#2| "failed") (|Equation| |#2|) (|BasicOperator|) (|Equation| |#2|) (|List| |#2|)) "\\spad{solve(eq,{} y,{} x = a,{} [y0,{}...,{}ym])} returns either the solution of the initial value problem \\spad{eq,{} y(a) = y0,{} y'(a) = y1,{}...} or \"failed\" if the solution cannot be found; error if the equation is not one linear ordinary or of the form \\spad{dy/dx = f(x,{}y)}.") (((|Union| (|Record| (|:| |particular| |#2|) (|:| |basis| (|List| |#2|))) |#2| "failed") |#2| (|BasicOperator|) (|Symbol|)) "\\spad{solve(eq,{} y,{} x)} returns either a solution of the ordinary differential equation \\spad{eq} or \"failed\" if no non-trivial solution can be found; If the equation is linear ordinary,{} a solution is of the form \\spad{[h,{} [b1,{}...,{}bm]]} where \\spad{h} is a particular solution and and \\spad{[b1,{}...bm]} are linearly independent solutions of the associated homogenuous equation \\spad{f(x,{}y) = 0}; A full basis for the solutions of the homogenuous equation is not always returned,{} only the solutions which were found; If the equation is of the form {dy/dx = \\spad{f}(\\spad{x},{}\\spad{y})},{} a solution is of the form \\spad{h(x,{}y)} where \\spad{h(x,{}y) = c} is a first integral of the equation for any constant \\spad{c}.") (((|Union| (|Record| (|:| |particular| |#2|) (|:| |basis| (|List| |#2|))) |#2| "failed") (|Equation| |#2|) (|BasicOperator|) (|Symbol|)) "\\spad{solve(eq,{} y,{} x)} returns either a solution of the ordinary differential equation \\spad{eq} or \"failed\" if no non-trivial solution can be found; If the equation is linear ordinary,{} a solution is of the form \\spad{[h,{} [b1,{}...,{}bm]]} where \\spad{h} is a particular solution and \\spad{[b1,{}...bm]} are linearly independent solutions of the associated homogenuous equation \\spad{f(x,{}y) = 0}; A full basis for the solutions of the homogenuous equation is not always returned,{} only the solutions which were found; If the equation is of the form {dy/dx = \\spad{f}(\\spad{x},{}\\spad{y})},{} a solution is of the form \\spad{h(x,{}y)} where \\spad{h(x,{}y) = c} is a first integral of the equation for any constant \\spad{c}; error if the equation is not one of those 2 forms.") (((|Union| (|Record| (|:| |particular| (|Vector| |#2|)) (|:| |basis| (|List| (|Vector| |#2|)))) "failed") (|List| |#2|) (|List| (|BasicOperator|)) (|Symbol|)) "\\spad{solve([eq_1,{}...,{}eq_n],{} [y_1,{}...,{}y_n],{} x)} returns either \"failed\" or,{} if the equations form a fist order linear system,{} a solution of the form \\spad{[y_p,{} [b_1,{}...,{}b_n]]} where \\spad{h_p} is a particular solution and \\spad{[b_1,{}...b_m]} are linearly independent solutions of the associated homogenuous system. error if the equations do not form a first order linear system") (((|Union| (|Record| (|:| |particular| (|Vector| |#2|)) (|:| |basis| (|List| (|Vector| |#2|)))) "failed") (|List| (|Equation| |#2|)) (|List| (|BasicOperator|)) (|Symbol|)) "\\spad{solve([eq_1,{}...,{}eq_n],{} [y_1,{}...,{}y_n],{} x)} returns either \"failed\" or,{} if the equations form a fist order linear system,{} a solution of the form \\spad{[y_p,{} [b_1,{}...,{}b_n]]} where \\spad{h_p} is a particular solution and \\spad{[b_1,{}...b_m]} are linearly independent solutions of the associated homogenuous system. error if the equations do not form a first order linear system") (((|Union| (|List| (|Vector| |#2|)) "failed") (|Matrix| |#2|) (|Symbol|)) "\\spad{solve(m,{} x)} returns a basis for the solutions of \\spad{D y = m y}. \\spad{x} is the dependent variable.") (((|Union| (|Record| (|:| |particular| (|Vector| |#2|)) (|:| |basis| (|List| (|Vector| |#2|)))) "failed") (|Matrix| |#2|) (|Vector| |#2|) (|Symbol|)) "\\spad{solve(m,{} v,{} x)} returns \\spad{[v_p,{} [v_1,{}...,{}v_m]]} such that the solutions of the system \\spad{D y = m y + v} are \\spad{v_p + c_1 v_1 + ... + c_m v_m} where the \\spad{c_i's} are constants,{} and the \\spad{v_i's} form a basis for the solutions of \\spad{D y = m y}. \\spad{x} is the dependent variable.")))
NIL
NIL
@@ -3124,7 +3124,7 @@ NIL
((|constructor| (NIL "\\axiom{ODEIntensityFunctionsTable()} provides a dynamic table and a set of functions to store details found out about sets of ODE\\spad{'s}.")) (|showIntensityFunctions| (((|Union| (|Record| (|:| |stiffness| (|Float|)) (|:| |stability| (|Float|)) (|:| |expense| (|Float|)) (|:| |accuracy| (|Float|)) (|:| |intermediateResults| (|Float|))) "failed") (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{showIntensityFunctions(k)} returns the entries in the table of intensity functions \\spad{k}.")) (|insert!| (($ (|Record| (|:| |key| (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |stiffness| (|Float|)) (|:| |stability| (|Float|)) (|:| |expense| (|Float|)) (|:| |accuracy| (|Float|)) (|:| |intermediateResults| (|Float|)))))) "\\spad{insert!(r)} inserts an entry \\spad{r} into theIFTable")) (|iFTable| (($ (|List| (|Record| (|:| |key| (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |stiffness| (|Float|)) (|:| |stability| (|Float|)) (|:| |expense| (|Float|)) (|:| |accuracy| (|Float|)) (|:| |intermediateResults| (|Float|))))))) "\\spad{iFTable(l)} creates an intensity-functions table from the elements of \\spad{l}.")) (|keys| (((|List| (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) $) "\\spad{keys(tab)} returns the list of keys of \\spad{f}")) (|clearTheIFTable| (((|Void|)) "\\spad{clearTheIFTable()} clears the current table of intensity functions.")) (|showTheIFTable| (($) "\\spad{showTheIFTable()} returns the current table of intensity functions.")))
NIL
NIL
-(-799 R -3197)
+(-799 R -3196)
((|constructor| (NIL "\\spadtype{ODEIntegration} provides an interface to the integrator. This package is intended for use by the differential equations solver but not at top-level.")) (|diff| (((|Mapping| |#2| |#2|) (|Symbol|)) "\\spad{diff(x)} returns the derivation with respect to \\spad{x}.")) (|expint| ((|#2| |#2| (|Symbol|)) "\\spad{expint(f,{} x)} returns e^{the integral of \\spad{f} with respect to \\spad{x}}.")) (|int| ((|#2| |#2| (|Symbol|)) "\\spad{int(f,{} x)} returns the integral of \\spad{f} with respect to \\spad{x}.")))
NIL
NIL
@@ -3132,11 +3132,11 @@ NIL
((|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|)))) (|NumericalODEProblem|) (|RoutinesTable|)) "\\spad{measure(prob,{}R)} is a top level ANNA function for identifying the most appropriate numerical routine from those in the routines table provided for solving the numerical ODE problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} listed in \\axiom{\\spad{R}} of \\axiom{category} \\axiomType{OrdinaryDifferentialEquationsSolverCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information. It predicts the likely most effective NAG numerical Library routine to solve the input set of ODEs by checking various attributes of the system of ODEs and calculating a measure of compatibility of each routine to these attributes.") (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|)))) (|NumericalODEProblem|)) "\\spad{measure(prob)} is a top level ANNA function for identifying the most appropriate numerical routine from those in the routines table provided for solving the numerical ODE problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} of \\axiom{category} \\axiomType{OrdinaryDifferentialEquationsSolverCategory} in turn to calculate all measures and returns the best \\spadignore{i.e.} the name of the most appropriate domain and any other relevant information. It predicts the likely most effective NAG numerical Library routine to solve the input set of ODEs by checking various attributes of the system of ODEs and calculating a measure of compatibility of each routine to these attributes.")) (|solve| (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|Expression| (|Float|)) (|List| (|Float|)) (|Float|) (|Float|)) "\\spad{solve(f,{}xStart,{}xEnd,{}yInitial,{}G,{}intVals,{}epsabs,{}epsrel)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to an absolute error requirement \\axiom{\\spad{epsabs}} and relative error \\axiom{\\spad{epsrel}}. The values of \\spad{Y}[1]..\\spad{Y}[\\spad{n}] will be output for the values of \\spad{X} in \\axiom{\\spad{intVals}}. The calculation will stop if the function \\spad{G}(\\spad{X},{}\\spad{Y}[1],{}..,{}\\spad{Y}[\\spad{n}]) evaluates to zero before \\spad{X} = \\spad{xEnd}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|Expression| (|Float|)) (|List| (|Float|)) (|Float|)) "\\spad{solve(f,{}xStart,{}xEnd,{}yInitial,{}G,{}intVals,{}tol)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to a tolerance \\axiom{\\spad{tol}}. The values of \\spad{Y}[1]..\\spad{Y}[\\spad{n}] will be output for the values of \\spad{X} in \\axiom{\\spad{intVals}}. The calculation will stop if the function \\spad{G}(\\spad{X},{}\\spad{Y}[1],{}..,{}\\spad{Y}[\\spad{n}]) evaluates to zero before \\spad{X} = \\spad{xEnd}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|List| (|Float|)) (|Float|)) "\\spad{solve(f,{}xStart,{}xEnd,{}yInitial,{}intVals,{}tol)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to a tolerance \\axiom{\\spad{tol}}. The values of \\spad{Y}[1]..\\spad{Y}[\\spad{n}] will be output for the values of \\spad{X} in \\axiom{\\spad{intVals}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|Expression| (|Float|)) (|Float|)) "\\spad{solve(f,{}xStart,{}xEnd,{}yInitial,{}G,{}tol)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to a tolerance \\axiom{\\spad{tol}}. The calculation will stop if the function \\spad{G}(\\spad{X},{}\\spad{Y}[1],{}..,{}\\spad{Y}[\\spad{n}]) evaluates to zero before \\spad{X} = \\spad{xEnd}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|Float|)) "\\spad{solve(f,{}xStart,{}xEnd,{}yInitial,{}tol)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to a tolerance \\axiom{\\spad{tol}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|))) "\\spad{solve(f,{}xStart,{}xEnd,{}yInitial)} is a top level ANNA function to solve numerically a system of ordinary differential equations \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}],{} together with a starting value for \\spad{X} and \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (called the initial conditions) and a final value of \\spad{X}. A default value is used for the accuracy requirement. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|NumericalODEProblem|) (|RoutinesTable|)) "\\spad{solve(odeProblem,{}R)} is a top level ANNA function to solve numerically a system of ordinary differential equations \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}],{} together with starting values for \\spad{X} and \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (called the initial conditions),{} a final value of \\spad{X},{} an accuracy requirement and any intermediate points at which the result is required. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|NumericalODEProblem|)) "\\spad{solve(odeProblem)} is a top level ANNA function to solve numerically a system of ordinary differential equations \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}],{} together with starting values for \\spad{X} and \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (called the initial conditions),{} a final value of \\spad{X},{} an accuracy requirement and any intermediate points at which the result is required. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} to get the name and other relevant information of the the (domain of the) numerical routine likely to be the most appropriate,{} \\spadignore{i.e.} have the best \\axiom{measure}. \\blankline The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.")))
NIL
NIL
-(-801 -3197 UP UPUP R)
+(-801 -3196 UP UPUP R)
((|constructor| (NIL "In-field solution of an linear ordinary differential equation,{} pure algebraic case.")) (|algDsolve| (((|Record| (|:| |particular| (|Union| |#4| "failed")) (|:| |basis| (|List| |#4|))) (|LinearOrdinaryDifferentialOperator1| |#4|) |#4|) "\\spad{algDsolve(op,{} g)} returns \\spad{[\"failed\",{} []]} if the equation \\spad{op y = g} has no solution in \\spad{R}. Otherwise,{} it returns \\spad{[f,{} [y1,{}...,{}ym]]} where \\spad{f} is a particular rational solution and the \\spad{y_i's} form a basis for the solutions in \\spad{R} of the homogeneous equation.")))
NIL
NIL
-(-802 -3197 UP L LQ)
+(-802 -3196 UP L LQ)
((|constructor| (NIL "\\spad{PrimitiveRatDE} provides functions for in-field solutions of linear \\indented{1}{ordinary differential equations,{} in the transcendental case.} \\indented{1}{The derivation to use is given by the parameter \\spad{L}.}")) (|splitDenominator| (((|Record| (|:| |eq| |#3|) (|:| |rh| (|List| (|Fraction| |#2|)))) |#4| (|List| (|Fraction| |#2|))) "\\spad{splitDenominator(op,{} [g1,{}...,{}gm])} returns \\spad{op0,{} [h1,{}...,{}hm]} such that the equations \\spad{op y = c1 g1 + ... + cm gm} and \\spad{op0 y = c1 h1 + ... + cm hm} have the same solutions.")) (|indicialEquation| ((|#2| |#4| |#1|) "\\spad{indicialEquation(op,{} a)} returns the indicial equation of \\spad{op} at \\spad{a}.") ((|#2| |#3| |#1|) "\\spad{indicialEquation(op,{} a)} returns the indicial equation of \\spad{op} at \\spad{a}.")) (|indicialEquations| (((|List| (|Record| (|:| |center| |#2|) (|:| |equation| |#2|))) |#4| |#2|) "\\spad{indicialEquations(op,{} p)} returns \\spad{[[d1,{}e1],{}...,{}[dq,{}eq]]} where the \\spad{d_i}\\spad{'s} are the affine singularities of \\spad{op} above the roots of \\spad{p},{} and the \\spad{e_i}\\spad{'s} are the indicial equations at each \\spad{d_i}.") (((|List| (|Record| (|:| |center| |#2|) (|:| |equation| |#2|))) |#4|) "\\spad{indicialEquations op} returns \\spad{[[d1,{}e1],{}...,{}[dq,{}eq]]} where the \\spad{d_i}\\spad{'s} are the affine singularities of \\spad{op},{} and the \\spad{e_i}\\spad{'s} are the indicial equations at each \\spad{d_i}.") (((|List| (|Record| (|:| |center| |#2|) (|:| |equation| |#2|))) |#3| |#2|) "\\spad{indicialEquations(op,{} p)} returns \\spad{[[d1,{}e1],{}...,{}[dq,{}eq]]} where the \\spad{d_i}\\spad{'s} are the affine singularities of \\spad{op} above the roots of \\spad{p},{} and the \\spad{e_i}\\spad{'s} are the indicial equations at each \\spad{d_i}.") (((|List| (|Record| (|:| |center| |#2|) (|:| |equation| |#2|))) |#3|) "\\spad{indicialEquations op} returns \\spad{[[d1,{}e1],{}...,{}[dq,{}eq]]} where the \\spad{d_i}\\spad{'s} are the affine singularities of \\spad{op},{} and the \\spad{e_i}\\spad{'s} are the indicial equations at each \\spad{d_i}.")) (|denomLODE| ((|#2| |#3| (|List| (|Fraction| |#2|))) "\\spad{denomLODE(op,{} [g1,{}...,{}gm])} returns a polynomial \\spad{d} such that any rational solution of \\spad{op y = c1 g1 + ... + cm gm} is of the form \\spad{p/d} for some polynomial \\spad{p}.") (((|Union| |#2| "failed") |#3| (|Fraction| |#2|)) "\\spad{denomLODE(op,{} g)} returns a polynomial \\spad{d} such that any rational solution of \\spad{op y = g} is of the form \\spad{p/d} for some polynomial \\spad{p},{} and \"failed\",{} if the equation has no rational solution.")))
NIL
NIL
@@ -3144,41 +3144,41 @@ NIL
((|retract| (((|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|))) $) "\\spad{retract(x)} \\undocumented{}")) (|coerce| (($ (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{coerce(x)} \\undocumented{}")))
NIL
NIL
-(-804 -3197 UP L LQ)
+(-804 -3196 UP L LQ)
((|constructor| (NIL "In-field solution of Riccati equations,{} primitive case.")) (|changeVar| ((|#3| |#3| (|Fraction| |#2|)) "\\spad{changeVar(+/[\\spad{ai} D^i],{} a)} returns the operator \\spad{+/[\\spad{ai} (D+a)\\spad{^i}]}.") ((|#3| |#3| |#2|) "\\spad{changeVar(+/[\\spad{ai} D^i],{} a)} returns the operator \\spad{+/[\\spad{ai} (D+a)\\spad{^i}]}.")) (|singRicDE| (((|List| (|Record| (|:| |frac| (|Fraction| |#2|)) (|:| |eq| |#3|))) |#3| (|Mapping| (|List| |#2|) |#2| (|SparseUnivariatePolynomial| |#2|)) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{singRicDE(op,{} zeros,{} ezfactor)} returns \\spad{[[f1,{} L1],{} [f2,{} L2],{} ... ,{} [fk,{} Lk]]} such that the singular part of any rational solution of the associated Riccati equation of \\spad{op y=0} must be one of the \\spad{fi}\\spad{'s} (up to the constant coefficient),{} in which case the equation for \\spad{z=y e^{-int p}} is \\spad{\\spad{Li} z=0}. \\spad{zeros(C(x),{}H(x,{}y))} returns all the \\spad{P_i(x)}\\spad{'s} such that \\spad{H(x,{}P_i(x)) = 0 modulo C(x)}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.")) (|polyRicDE| (((|List| (|Record| (|:| |poly| |#2|) (|:| |eq| |#3|))) |#3| (|Mapping| (|List| |#1|) |#2|)) "\\spad{polyRicDE(op,{} zeros)} returns \\spad{[[p1,{} L1],{} [p2,{} L2],{} ... ,{} [pk,{} Lk]]} such that the polynomial part of any rational solution of the associated Riccati equation of \\spad{op y=0} must be one of the \\spad{pi}\\spad{'s} (up to the constant coefficient),{} in which case the equation for \\spad{z=y e^{-int p}} is \\spad{\\spad{Li} z =0}. \\spad{zeros} is a zero finder in \\spad{UP}.")) (|constantCoefficientRicDE| (((|List| (|Record| (|:| |constant| |#1|) (|:| |eq| |#3|))) |#3| (|Mapping| (|List| |#1|) |#2|)) "\\spad{constantCoefficientRicDE(op,{} ric)} returns \\spad{[[a1,{} L1],{} [a2,{} L2],{} ... ,{} [ak,{} Lk]]} such that any rational solution with no polynomial part of the associated Riccati equation of \\spad{op y = 0} must be one of the \\spad{ai}\\spad{'s} in which case the equation for \\spad{z = y e^{-int \\spad{ai}}} is \\spad{\\spad{Li} z = 0}. \\spad{ric} is a Riccati equation solver over \\spad{F},{} whose input is the associated linear equation.")) (|leadingCoefficientRicDE| (((|List| (|Record| (|:| |deg| (|NonNegativeInteger|)) (|:| |eq| |#2|))) |#3|) "\\spad{leadingCoefficientRicDE(op)} returns \\spad{[[m1,{} p1],{} [m2,{} p2],{} ... ,{} [mk,{} pk]]} such that the polynomial part of any rational solution of the associated Riccati equation of \\spad{op y = 0} must have degree \\spad{mj} for some \\spad{j},{} and its leading coefficient is then a zero of \\spad{pj}. In addition,{}\\spad{m1>m2> ... >mk}.")) (|denomRicDE| ((|#2| |#3|) "\\spad{denomRicDE(op)} returns a polynomial \\spad{d} such that any rational solution of the associated Riccati equation of \\spad{op y = 0} is of the form \\spad{p/d + q'/q + r} for some polynomials \\spad{p} and \\spad{q} and a reduced \\spad{r}. Also,{} \\spad{deg(p) < deg(d)} and {\\spad{gcd}(\\spad{d},{}\\spad{q}) = 1}.")))
NIL
NIL
-(-805 -3197 UP)
+(-805 -3196 UP)
((|constructor| (NIL "\\spad{RationalLODE} provides functions for in-field solutions of linear \\indented{1}{ordinary differential equations,{} in the rational case.}")) (|indicialEquationAtInfinity| ((|#2| (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|))) "\\spad{indicialEquationAtInfinity op} returns the indicial equation of \\spad{op} at infinity.") ((|#2| (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) "\\spad{indicialEquationAtInfinity op} returns the indicial equation of \\spad{op} at infinity.")) (|ratDsolve| (((|Record| (|:| |basis| (|List| (|Fraction| |#2|))) (|:| |mat| (|Matrix| |#1|))) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|List| (|Fraction| |#2|))) "\\spad{ratDsolve(op,{} [g1,{}...,{}gm])} returns \\spad{[[h1,{}...,{}hq],{} M]} such that any rational solution of \\spad{op y = c1 g1 + ... + cm gm} is of the form \\spad{d1 h1 + ... + dq hq} where \\spad{M [d1,{}...,{}dq,{}c1,{}...,{}cm] = 0}.") (((|Record| (|:| |particular| (|Union| (|Fraction| |#2|) "failed")) (|:| |basis| (|List| (|Fraction| |#2|)))) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Fraction| |#2|)) "\\spad{ratDsolve(op,{} g)} returns \\spad{[\"failed\",{} []]} if the equation \\spad{op y = g} has no rational solution. Otherwise,{} it returns \\spad{[f,{} [y1,{}...,{}ym]]} where \\spad{f} is a particular rational solution and the \\spad{yi}\\spad{'s} form a basis for the rational solutions of the homogeneous equation.") (((|Record| (|:| |basis| (|List| (|Fraction| |#2|))) (|:| |mat| (|Matrix| |#1|))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|List| (|Fraction| |#2|))) "\\spad{ratDsolve(op,{} [g1,{}...,{}gm])} returns \\spad{[[h1,{}...,{}hq],{} M]} such that any rational solution of \\spad{op y = c1 g1 + ... + cm gm} is of the form \\spad{d1 h1 + ... + dq hq} where \\spad{M [d1,{}...,{}dq,{}c1,{}...,{}cm] = 0}.") (((|Record| (|:| |particular| (|Union| (|Fraction| |#2|) "failed")) (|:| |basis| (|List| (|Fraction| |#2|)))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Fraction| |#2|)) "\\spad{ratDsolve(op,{} g)} returns \\spad{[\"failed\",{} []]} if the equation \\spad{op y = g} has no rational solution. Otherwise,{} it returns \\spad{[f,{} [y1,{}...,{}ym]]} where \\spad{f} is a particular rational solution and the \\spad{yi}\\spad{'s} form a basis for the rational solutions of the homogeneous equation.")))
NIL
NIL
-(-806 -3197 L UP A LO)
+(-806 -3196 L UP A LO)
((|constructor| (NIL "Elimination of an algebraic from the coefficentss of a linear ordinary differential equation.")) (|reduceLODE| (((|Record| (|:| |mat| (|Matrix| |#2|)) (|:| |vec| (|Vector| |#1|))) |#5| |#4|) "\\spad{reduceLODE(op,{} g)} returns \\spad{[m,{} v]} such that any solution in \\spad{A} of \\spad{op z = g} is of the form \\spad{z = (z_1,{}...,{}z_m) . (b_1,{}...,{}b_m)} where the \\spad{b_i's} are the basis of \\spad{A} over \\spad{F} returned by \\spadfun{basis}() from \\spad{A},{} and the \\spad{z_i's} satisfy the differential system \\spad{M.z = v}.")))
NIL
NIL
-(-807 -3197 UP)
+(-807 -3196 UP)
((|constructor| (NIL "In-field solution of Riccati equations,{} rational case.")) (|polyRicDE| (((|List| (|Record| (|:| |poly| |#2|) (|:| |eq| (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|))))) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|)) "\\spad{polyRicDE(op,{} zeros)} returns \\spad{[[p1,{} L1],{} [p2,{} L2],{} ... ,{} [pk,{}Lk]]} such that the polynomial part of any rational solution of the associated Riccati equation of \\spad{op y = 0} must be one of the \\spad{pi}\\spad{'s} (up to the constant coefficient),{} in which case the equation for \\spad{z = y e^{-int p}} is \\spad{\\spad{Li} z = 0}. \\spad{zeros} is a zero finder in \\spad{UP}.")) (|singRicDE| (((|List| (|Record| (|:| |frac| (|Fraction| |#2|)) (|:| |eq| (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|))))) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{singRicDE(op,{} ezfactor)} returns \\spad{[[f1,{}L1],{} [f2,{}L2],{}...,{} [fk,{}Lk]]} such that the singular \\spad{++} part of any rational solution of the associated Riccati equation of \\spad{op y = 0} must be one of the \\spad{fi}\\spad{'s} (up to the constant coefficient),{} in which case the equation for \\spad{z = y e^{-int \\spad{ai}}} is \\spad{\\spad{Li} z = 0}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.")) (|ricDsolve| (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{ricDsolve(op,{} ezfactor)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|))) "\\spad{ricDsolve(op)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{ricDsolve(op,{} ezfactor)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) "\\spad{ricDsolve(op)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{ricDsolve(op,{} zeros,{} ezfactor)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. \\spad{zeros} is a zero finder in \\spad{UP}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|)) "\\spad{ricDsolve(op,{} zeros)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. \\spad{zeros} is a zero finder in \\spad{UP}.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{ricDsolve(op,{} zeros,{} ezfactor)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. \\spad{zeros} is a zero finder in \\spad{UP}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|)) "\\spad{ricDsolve(op,{} zeros)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. \\spad{zeros} is a zero finder in \\spad{UP}.")))
NIL
((|HasCategory| |#1| (QUOTE (-27))))
-(-808 -3197 LO)
+(-808 -3196 LO)
((|constructor| (NIL "SystemODESolver provides tools for triangulating and solving some systems of linear ordinary differential equations.")) (|solveInField| (((|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|)))) (|Matrix| |#2|) (|Vector| |#1|) (|Mapping| (|Record| (|:| |particular| (|Union| |#1| "failed")) (|:| |basis| (|List| |#1|))) |#2| |#1|)) "\\spad{solveInField(m,{} v,{} solve)} returns \\spad{[[v_1,{}...,{}v_m],{} v_p]} such that the solutions in \\spad{F} of the system \\spad{m x = v} are \\spad{v_p + c_1 v_1 + ... + c_m v_m} where the \\spad{c_i's} are constants,{} and the \\spad{v_i's} form a basis for the solutions of \\spad{m x = 0}. Argument \\spad{solve} is a function for solving a single linear ordinary differential equation in \\spad{F}.")) (|solve| (((|Union| (|Record| (|:| |particular| (|Vector| |#1|)) (|:| |basis| (|Matrix| |#1|))) "failed") (|Matrix| |#1|) (|Vector| |#1|) (|Mapping| (|Union| (|Record| (|:| |particular| |#1|) (|:| |basis| (|List| |#1|))) "failed") |#2| |#1|)) "\\spad{solve(m,{} v,{} solve)} returns \\spad{[[v_1,{}...,{}v_m],{} v_p]} such that the solutions in \\spad{F} of the system \\spad{D x = m x + v} are \\spad{v_p + c_1 v_1 + ... + c_m v_m} where the \\spad{c_i's} are constants,{} and the \\spad{v_i's} form a basis for the solutions of \\spad{D x = m x}. Argument \\spad{solve} is a function for solving a single linear ordinary differential equation in \\spad{F}.")) (|triangulate| (((|Record| (|:| |mat| (|Matrix| |#2|)) (|:| |vec| (|Vector| |#1|))) (|Matrix| |#2|) (|Vector| |#1|)) "\\spad{triangulate(m,{} v)} returns \\spad{[m_0,{} v_0]} such that \\spad{m_0} is upper triangular and the system \\spad{m_0 x = v_0} is equivalent to \\spad{m x = v}.") (((|Record| (|:| A (|Matrix| |#1|)) (|:| |eqs| (|List| (|Record| (|:| C (|Matrix| |#1|)) (|:| |g| (|Vector| |#1|)) (|:| |eq| |#2|) (|:| |rh| |#1|))))) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{triangulate(M,{}v)} returns \\spad{A,{}[[C_1,{}g_1,{}L_1,{}h_1],{}...,{}[C_k,{}g_k,{}L_k,{}h_k]]} such that under the change of variable \\spad{y = A z},{} the first order linear system \\spad{D y = M y + v} is uncoupled as \\spad{D z_i = C_i z_i + g_i} and each \\spad{C_i} is a companion matrix corresponding to the scalar equation \\spad{L_i z_j = h_i}.")))
NIL
NIL
-(-809 -3197 LODO)
+(-809 -3196 LODO)
((|constructor| (NIL "\\spad{ODETools} provides tools for the linear ODE solver.")) (|particularSolution| (((|Union| |#1| "failed") |#2| |#1| (|List| |#1|) (|Mapping| |#1| |#1|)) "\\spad{particularSolution(op,{} g,{} [f1,{}...,{}fm],{} I)} returns a particular solution \\spad{h} of the equation \\spad{op y = g} where \\spad{[f1,{}...,{}fm]} are linearly independent and \\spad{op(\\spad{fi})=0}. The value \"failed\" is returned if no particular solution is found. Note: the method of variations of parameters is used.")) (|variationOfParameters| (((|Union| (|Vector| |#1|) "failed") |#2| |#1| (|List| |#1|)) "\\spad{variationOfParameters(op,{} g,{} [f1,{}...,{}fm])} returns \\spad{[u1,{}...,{}um]} such that a particular solution of the equation \\spad{op y = g} is \\spad{f1 int(u1) + ... + fm int(um)} where \\spad{[f1,{}...,{}fm]} are linearly independent and \\spad{op(\\spad{fi})=0}. The value \"failed\" is returned if \\spad{m < n} and no particular solution is found.")) (|wronskianMatrix| (((|Matrix| |#1|) (|List| |#1|) (|NonNegativeInteger|)) "\\spad{wronskianMatrix([f1,{}...,{}fn],{} q,{} D)} returns the \\spad{q x n} matrix \\spad{m} whose i^th row is \\spad{[f1^(i-1),{}...,{}fn^(i-1)]}.") (((|Matrix| |#1|) (|List| |#1|)) "\\spad{wronskianMatrix([f1,{}...,{}fn])} returns the \\spad{n x n} matrix \\spad{m} whose i^th row is \\spad{[f1^(i-1),{}...,{}fn^(i-1)]}.")))
NIL
NIL
-(-810 -2241 S |f|)
+(-810 -2240 S |f|)
((|constructor| (NIL "\\indented{2}{This type represents the finite direct or cartesian product of an} underlying ordered component type. The ordering on the type is determined by its third argument which represents the less than function on vectors. This type is a suitable third argument for \\spadtype{GeneralDistributedMultivariatePolynomial}.")))
-((-4396 |has| |#2| (-1044)) (-4397 |has| |#2| (-1044)) (-4399 |has| |#2| (-6 -4399)) ((-4404 "*") |has| |#2| (-171)) (-4402 . T))
-((-4037 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092)))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (QUOTE (-362))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362)))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-788))) (-4037 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-843)))) (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-1044)))) (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-171)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-232)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-367)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-721)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-788)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-843)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1044))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| (-562) (QUOTE (-845))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-4037 (|HasCategory| |#2| (QUOTE (-1044))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092)))) (|HasAttribute| |#2| (QUOTE -4399)) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))))
+((-4397 |has| |#2| (-1044)) (-4398 |has| |#2| (-1044)) (-4400 |has| |#2| (-6 -4400)) ((-4405 "*") |has| |#2| (-171)) (-4403 . T))
+((-4037 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092)))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (QUOTE (-362))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362)))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-788))) (-4037 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-843)))) (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-1044)))) (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1044)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-171)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-232)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-367)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-721)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-788)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-843)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1044))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-788))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-843))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| (-562) (QUOTE (-845))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (QUOTE (-1044)))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168))))) (-4037 (|HasCategory| |#2| (QUOTE (-1044))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-1092)))) (|HasAttribute| |#2| (QUOTE -4400)) (|HasCategory| |#2| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))))
(-811 R)
((|constructor| (NIL "\\spadtype{OrderlyDifferentialPolynomial} implements an ordinary differential polynomial ring in arbitrary number of differential indeterminates,{} with coefficients in a ring. The ranking on the differential indeterminate is orderly. This is analogous to the domain \\spadtype{Polynomial}. \\blankline")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-904))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-813 (-1168)) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-813 (-1168)) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-813 (-1168)) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-813 (-1168)) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-813 (-1168)) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasAttribute| |#1| (QUOTE -4400)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-904))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-813 (-1168)) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-813 (-1168)) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-813 (-1168)) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-813 (-1168)) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-813 (-1168)) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasAttribute| |#1| (QUOTE -4401)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
(-812 |Kernels| R |var|)
((|constructor| (NIL "This constructor produces an ordinary differential ring from a partial differential ring by specifying a variable.")))
-(((-4404 "*") |has| |#2| (-362)) (-4395 |has| |#2| (-362)) (-4400 |has| |#2| (-362)) (-4394 |has| |#2| (-362)) (-4399 . T) (-4397 . T) (-4396 . T))
+(((-4405 "*") |has| |#2| (-362)) (-4396 |has| |#2| (-362)) (-4401 |has| |#2| (-362)) (-4395 |has| |#2| (-362)) (-4400 . T) (-4398 . T) (-4397 . T))
((|HasCategory| |#2| (QUOTE (-362))))
(-813 S)
((|constructor| (NIL "\\spadtype{OrderlyDifferentialVariable} adds a commonly used orderly ranking to the set of derivatives of an ordered list of differential indeterminates. An orderly ranking is a ranking \\spadfun{<} of the derivatives with the property that for two derivatives \\spad{u} and \\spad{v},{} \\spad{u} \\spadfun{<} \\spad{v} if the \\spadfun{order} of \\spad{u} is less than that of \\spad{v}. This domain belongs to \\spadtype{DifferentialVariableCategory}. It defines \\spadfun{weight} to be just \\spadfun{order},{} and it defines an orderly ranking \\spadfun{<} on derivatives \\spad{u} via the lexicographic order on the pair (\\spadfun{order}(\\spad{u}),{} \\spadfun{variable}(\\spad{u})).")))
@@ -3190,7 +3190,7 @@ NIL
NIL
(-815)
((|constructor| (NIL "The category of ordered commutative integral domains,{} where ordering and the arithmetic operations are compatible \\blankline")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-816)
((|constructor| (NIL "\\spadtype{OpenMathConnection} provides low-level functions for handling connections to and from \\spadtype{OpenMathDevice}\\spad{s}.")) (|OMbindTCP| (((|Boolean|) $ (|SingleInteger|)) "\\spad{OMbindTCP}")) (|OMconnectTCP| (((|Boolean|) $ (|String|) (|SingleInteger|)) "\\spad{OMconnectTCP}")) (|OMconnOutDevice| (((|OpenMathDevice|) $) "\\spad{OMconnOutDevice:}")) (|OMconnInDevice| (((|OpenMathDevice|) $) "\\spad{OMconnInDevice:}")) (|OMcloseConn| (((|Void|) $) "\\spad{OMcloseConn}")) (|OMmakeConn| (($ (|SingleInteger|)) "\\spad{OMmakeConn}")))
@@ -3218,7 +3218,7 @@ NIL
NIL
(-822 P R)
((|constructor| (NIL "This constructor creates the \\spadtype{MonogenicLinearOperator} domain which is ``opposite\\spad{''} in the ring sense to \\spad{P}. That is,{} as sets \\spad{P = \\$} but \\spad{a * b} in \\spad{\\$} is equal to \\spad{b * a} in \\spad{P}.")) (|po| ((|#1| $) "\\spad{po(q)} creates a value in \\spad{P} equal to \\spad{q} in \\$.")) (|op| (($ |#1|) "\\spad{op(p)} creates a value in \\$ equal to \\spad{p} in \\spad{P}.")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-232))))
(-823)
((|constructor| (NIL "\\spadtype{OpenMath} provides operations for exporting an object in OpenMath format.")) (|OMwrite| (((|Void|) (|OpenMathDevice|) $ (|Boolean|)) "\\spad{OMwrite(dev,{} u,{} true)} writes the OpenMath form of \\axiom{\\spad{u}} to the OpenMath device \\axiom{\\spad{dev}} as a complete OpenMath object; OMwrite(\\spad{dev},{} \\spad{u},{} \\spad{false}) writes the object as an OpenMath fragment.") (((|Void|) (|OpenMathDevice|) $) "\\spad{OMwrite(dev,{} u)} writes the OpenMath form of \\axiom{\\spad{u}} to the OpenMath device \\axiom{\\spad{dev}} as a complete OpenMath object.") (((|String|) $ (|Boolean|)) "\\spad{OMwrite(u,{} true)} returns the OpenMath \\spad{XML} encoding of \\axiom{\\spad{u}} as a complete OpenMath object; OMwrite(\\spad{u},{} \\spad{false}) returns the OpenMath \\spad{XML} encoding of \\axiom{\\spad{u}} as an OpenMath fragment.") (((|String|) $) "\\spad{OMwrite(u)} returns the OpenMath \\spad{XML} encoding of \\axiom{\\spad{u}} as a complete OpenMath object.")))
@@ -3230,7 +3230,7 @@ NIL
NIL
(-825 S)
((|constructor| (NIL "to become an in order iterator")) (|min| ((|#1| $) "\\spad{min(u)} returns the smallest entry in the multiset aggregate \\spad{u}.")))
-((-4402 . T) (-4392 . T) (-4403 . T))
+((-4403 . T) (-4393 . T) (-4404 . T))
NIL
(-826)
((|constructor| (NIL "\\spadtype{OpenMathServerPackage} provides the necessary operations to run AXIOM as an OpenMath server,{} reading/writing objects to/from a port. Please note the facilities available here are very basic. The idea is that a user calls \\spadignore{e.g.} \\axiom{Omserve(4000,{}60)} and then another process sends OpenMath objects to port 4000 and reads the result.")) (|OMserve| (((|Void|) (|SingleInteger|) (|SingleInteger|)) "\\spad{OMserve(portnum,{}timeout)} puts AXIOM into server mode on port number \\axiom{\\spad{portnum}}. The parameter \\axiom{\\spad{timeout}} specifies the \\spad{timeout} period for the connection.")) (|OMsend| (((|Void|) (|OpenMathConnection|) (|Any|)) "\\spad{OMsend(c,{}u)} attempts to output \\axiom{\\spad{u}} on \\aciom{\\spad{c}} in OpenMath.")) (|OMreceive| (((|Any|) (|OpenMathConnection|)) "\\spad{OMreceive(c)} reads an OpenMath object from connection \\axiom{\\spad{c}} and returns the appropriate AXIOM object.")))
@@ -3242,7 +3242,7 @@ NIL
NIL
(-828 R)
((|constructor| (NIL "Adjunction of a complex infinity to a set. Date Created: 4 Oct 1989 Date Last Updated: 1 Nov 1989")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(x)} returns \\spad{x} as a finite rational number if it is one,{} \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(x)} returns \\spad{x} as a finite rational number. Error: if \\spad{x} is not a rational number.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(x)} tests if \\spad{x} is a finite rational number.")) (|infinite?| (((|Boolean|) $) "\\spad{infinite?(x)} tests if \\spad{x} is infinite.")) (|finite?| (((|Boolean|) $) "\\spad{finite?(x)} tests if \\spad{x} is finite.")) (|infinity| (($) "\\spad{infinity()} returns infinity.")))
-((-4399 |has| |#1| (-843)))
+((-4400 |has| |#1| (-843)))
((|HasCategory| |#1| (QUOTE (-843))) (-4037 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-843)))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-4037 (|HasCategory| |#1| (QUOTE (-843))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-21))))
(-829 A S)
((|constructor| (NIL "This category specifies the interface for operators used to build terms,{} in the sense of Universal Algebra. The domain parameter \\spad{S} provides representation for the `external name' of an operator.")) (|arity| (((|Arity|) $) "\\spad{arity(op)} returns the arity of the operator `op'.")) (|name| ((|#2| $) "\\spad{name(op)} returns the externam name of `op'.")))
@@ -3254,7 +3254,7 @@ NIL
NIL
(-831 R)
((|constructor| (NIL "Algebra of ADDITIVE operators over a ring.")))
-((-4397 |has| |#1| (-171)) (-4396 |has| |#1| (-171)) (-4399 . T))
+((-4398 |has| |#1| (-171)) (-4397 |has| |#1| (-171)) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))))
(-832)
((|constructor| (NIL "This package exports tools to create AXIOM Library information databases.")) (|getDatabase| (((|Database| (|IndexCard|)) (|String|)) "\\spad{getDatabase(\"char\")} returns a list of appropriate entries in the browser database. The legal values for \\spad{\"char\"} are \"o\" (operations),{} \\spad{\"k\"} (constructors),{} \\spad{\"d\"} (domains),{} \\spad{\"c\"} (categories) or \\spad{\"p\"} (packages).")))
@@ -3282,13 +3282,13 @@ NIL
NIL
(-838 R)
((|constructor| (NIL "Adjunction of two real infinites quantities to a set. Date Created: 4 Oct 1989 Date Last Updated: 1 Nov 1989")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(x)} returns \\spad{x} as a finite rational number if it is one and \"failed\" otherwise.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(x)} returns \\spad{x} as a finite rational number. Error: if \\spad{x} cannot be so converted.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(x)} tests if \\spad{x} is a finite rational number.")) (|whatInfinity| (((|SingleInteger|) $) "\\spad{whatInfinity(x)} returns 0 if \\spad{x} is finite,{} 1 if \\spad{x} is +infinity,{} and \\spad{-1} if \\spad{x} is -infinity.")) (|infinite?| (((|Boolean|) $) "\\spad{infinite?(x)} tests if \\spad{x} is +infinity or -infinity,{}")) (|finite?| (((|Boolean|) $) "\\spad{finite?(x)} tests if \\spad{x} is finite.")) (|minusInfinity| (($) "\\spad{minusInfinity()} returns -infinity.")) (|plusInfinity| (($) "\\spad{plusInfinity()} returns +infinity.")))
-((-4399 |has| |#1| (-843)))
+((-4400 |has| |#1| (-843)))
((|HasCategory| |#1| (QUOTE (-843))) (-4037 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-843)))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-4037 (|HasCategory| |#1| (QUOTE (-843))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-21))))
(-839)
((|constructor| (NIL "Ordered finite sets.")) (|max| (($) "\\spad{max} is the maximum value of \\%.")) (|min| (($) "\\spad{min} is the minimum value of \\%.")))
NIL
NIL
-(-840 -2241 S)
+(-840 -2240 S)
((|constructor| (NIL "\\indented{3}{This package provides ordering functions on vectors which} are suitable parameters for OrderedDirectProduct.")) (|reverseLex| (((|Boolean|) (|Vector| |#2|) (|Vector| |#2|)) "\\spad{reverseLex(v1,{}v2)} return \\spad{true} if the vector \\spad{v1} is less than the vector \\spad{v2} in the ordering which is total degree refined by the reverse lexicographic ordering.")) (|totalLex| (((|Boolean|) (|Vector| |#2|) (|Vector| |#2|)) "\\spad{totalLex(v1,{}v2)} return \\spad{true} if the vector \\spad{v1} is less than the vector \\spad{v2} in the ordering which is total degree refined by lexicographic ordering.")) (|pureLex| (((|Boolean|) (|Vector| |#2|) (|Vector| |#2|)) "\\spad{pureLex(v1,{}v2)} return \\spad{true} if the vector \\spad{v1} is less than the vector \\spad{v2} in the lexicographic ordering.")))
NIL
NIL
@@ -3302,7 +3302,7 @@ NIL
NIL
(-843)
((|constructor| (NIL "Ordered sets which are also rings,{} that is,{} domains where the ring operations are compatible with the ordering. \\blankline")) (|abs| (($ $) "\\spad{abs(x)} returns the absolute value of \\spad{x}.")) (|sign| (((|Integer|) $) "\\spad{sign(x)} is 1 if \\spad{x} is positive,{} \\spad{-1} if \\spad{x} is negative,{} 0 if \\spad{x} equals 0.")) (|negative?| (((|Boolean|) $) "\\spad{negative?(x)} tests whether \\spad{x} is strictly less than 0.")) (|positive?| (((|Boolean|) $) "\\spad{positive?(x)} tests whether \\spad{x} is strictly greater than 0.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-844 S)
((|constructor| (NIL "The class of totally ordered sets,{} that is,{} sets such that for each pair of elements \\spad{(a,{}b)} exactly one of the following relations holds \\spad{a<b or a=b or b<a} and the relation is transitive,{} \\spadignore{i.e.} \\spad{a<b and b<c => a<c}.")) (|min| (($ $ $) "\\spad{min(x,{}y)} returns the minimum of \\spad{x} and \\spad{y} relative to \\spad{\"<\"}.")) (|max| (($ $ $) "\\spad{max(x,{}y)} returns the maximum of \\spad{x} and \\spad{y} relative to \\spad{\"<\"}.")) (<= (((|Boolean|) $ $) "\\spad{x <= y} is a less than or equal test.")) (>= (((|Boolean|) $ $) "\\spad{x >= y} is a greater than or equal test.")) (> (((|Boolean|) $ $) "\\spad{x > y} is a greater than test.")) (< (((|Boolean|) $ $) "\\spad{x < y} is a strict total ordering on the elements of the set.")))
@@ -3318,7 +3318,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))))
(-847 R)
((|constructor| (NIL "This is the category of univariate skew polynomials over an Ore coefficient ring. The multiplication is given by \\spad{x a = \\sigma(a) x + \\delta a}. This category is an evolution of the types \\indented{2}{MonogenicLinearOperator,{} OppositeMonogenicLinearOperator,{} and} \\indented{2}{NonCommutativeOperatorDivision} developped by Jean Della Dora and Stephen \\spad{M}. Watt.")) (|leftLcm| (($ $ $) "\\spad{leftLcm(a,{}b)} computes the value \\spad{m} of lowest degree such that \\spad{m = aa*a = bb*b} for some values \\spad{aa} and \\spad{bb}. The value \\spad{m} is computed using right-division.")) (|rightExtendedGcd| (((|Record| (|:| |coef1| $) (|:| |coef2| $) (|:| |generator| $)) $ $) "\\spad{rightExtendedGcd(a,{}b)} returns \\spad{[c,{}d]} such that \\spad{g = c * a + d * b = rightGcd(a,{} b)}.")) (|rightGcd| (($ $ $) "\\spad{rightGcd(a,{}b)} computes the value \\spad{g} of highest degree such that \\indented{3}{\\spad{a = aa*g}} \\indented{3}{\\spad{b = bb*g}} for some values \\spad{aa} and \\spad{bb}. The value \\spad{g} is computed using right-division.")) (|rightExactQuotient| (((|Union| $ "failed") $ $) "\\spad{rightExactQuotient(a,{}b)} computes the value \\spad{q},{} if it exists such that \\spad{a = q*b}.")) (|rightRemainder| (($ $ $) "\\spad{rightRemainder(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{r} is returned.")) (|rightQuotient| (($ $ $) "\\spad{rightQuotient(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{q} is returned.")) (|rightDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{rightDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``right division\\spad{''}.")) (|rightLcm| (($ $ $) "\\spad{rightLcm(a,{}b)} computes the value \\spad{m} of lowest degree such that \\spad{m = a*aa = b*bb} for some values \\spad{aa} and \\spad{bb}. The value \\spad{m} is computed using left-division.")) (|leftExtendedGcd| (((|Record| (|:| |coef1| $) (|:| |coef2| $) (|:| |generator| $)) $ $) "\\spad{leftExtendedGcd(a,{}b)} returns \\spad{[c,{}d]} such that \\spad{g = a * c + b * d = leftGcd(a,{} b)}.")) (|leftGcd| (($ $ $) "\\spad{leftGcd(a,{}b)} computes the value \\spad{g} of highest degree such that \\indented{3}{\\spad{a = g*aa}} \\indented{3}{\\spad{b = g*bb}} for some values \\spad{aa} and \\spad{bb}. The value \\spad{g} is computed using left-division.")) (|leftExactQuotient| (((|Union| $ "failed") $ $) "\\spad{leftExactQuotient(a,{}b)} computes the value \\spad{q},{} if it exists,{} \\indented{1}{such that \\spad{a = b*q}.}")) (|leftRemainder| (($ $ $) "\\spad{leftRemainder(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{r} is returned.")) (|leftQuotient| (($ $ $) "\\spad{leftQuotient(a,{}b)} computes the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. The value \\spad{q} is returned.")) (|leftDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{leftDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``left division\\spad{''}.")) (|primitivePart| (($ $) "\\spad{primitivePart(l)} returns \\spad{l0} such that \\spad{l = a * l0} for some a in \\spad{R},{} and \\spad{content(l0) = 1}.")) (|content| ((|#1| $) "\\spad{content(l)} returns the \\spad{gcd} of all the coefficients of \\spad{l}.")) (|monicRightDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicRightDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``right division\\spad{''}.")) (|monicLeftDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicLeftDivide(a,{}b)} returns the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``left division\\spad{''}.")) (|exquo| (((|Union| $ "failed") $ |#1|) "\\spad{exquo(l,{} a)} returns the exact quotient of \\spad{l} by a,{} returning \\axiom{\"failed\"} if this is not possible.")) (|apply| ((|#1| $ |#1| |#1|) "\\spad{apply(p,{} c,{} m)} returns \\spad{p(m)} where the action is given by \\spad{x m = c sigma(m) + delta(m)}.")) (|coefficients| (((|List| |#1|) $) "\\spad{coefficients(l)} returns the list of all the nonzero coefficients of \\spad{l}.")) (|monomial| (($ |#1| (|NonNegativeInteger|)) "\\spad{monomial(c,{}k)} produces \\spad{c} times the \\spad{k}-th power of the generating operator,{} \\spad{monomial(1,{}1)}.")) (|coefficient| ((|#1| $ (|NonNegativeInteger|)) "\\spad{coefficient(l,{}k)} is \\spad{a(k)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|reductum| (($ $) "\\spad{reductum(l)} is \\spad{l - monomial(a(n),{}n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(l)} is \\spad{a(n)} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|minimumDegree| (((|NonNegativeInteger|) $) "\\spad{minimumDegree(l)} is the smallest \\spad{k} such that \\spad{a(k) ~= 0} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(l)} is \\spad{n} if \\indented{2}{\\spad{l = sum(monomial(a(i),{}i),{} i = 0..n)}.}")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-848 R C)
((|constructor| (NIL "\\spad{UnivariateSkewPolynomialCategoryOps} provides products and \\indented{1}{divisions of univariate skew polynomials.}")) (|rightDivide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2| (|Automorphism| |#1|)) "\\spad{rightDivide(a,{} b,{} sigma)} returns the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``right division\\spad{''}. \\spad{\\sigma} is the morphism to use.")) (|leftDivide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2| (|Automorphism| |#1|)) "\\spad{leftDivide(a,{} b,{} sigma)} returns the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. This process is called ``left division\\spad{''}. \\spad{\\sigma} is the morphism to use.")) (|monicRightDivide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2| (|Automorphism| |#1|)) "\\spad{monicRightDivide(a,{} b,{} sigma)} returns the pair \\spad{[q,{}r]} such that \\spad{a = q*b + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``right division\\spad{''}. \\spad{\\sigma} is the morphism to use.")) (|monicLeftDivide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2| (|Automorphism| |#1|)) "\\spad{monicLeftDivide(a,{} b,{} sigma)} returns the pair \\spad{[q,{}r]} such that \\spad{a = b*q + r} and the degree of \\spad{r} is less than the degree of \\spad{b}. \\spad{b} must be monic. This process is called ``left division\\spad{''}. \\spad{\\sigma} is the morphism to use.")) (|apply| ((|#1| |#2| |#1| |#1| (|Automorphism| |#1|) (|Mapping| |#1| |#1|)) "\\spad{apply(p,{} c,{} m,{} sigma,{} delta)} returns \\spad{p(m)} where the action is given by \\spad{x m = c sigma(m) + delta(m)}.")) (|times| ((|#2| |#2| |#2| (|Automorphism| |#1|) (|Mapping| |#1| |#1|)) "\\spad{times(p,{} q,{} sigma,{} delta)} returns \\spad{p * q}. \\spad{\\sigma} and \\spad{\\delta} are the maps to use.")))
@@ -3326,11 +3326,11 @@ NIL
((|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554))))
(-849 R |sigma| -3756)
((|constructor| (NIL "This is the domain of sparse univariate skew polynomials over an Ore coefficient field. The multiplication is given by \\spad{x a = \\sigma(a) x + \\delta a}.")) (|outputForm| (((|OutputForm|) $ (|OutputForm|)) "\\spad{outputForm(p,{} x)} returns the output form of \\spad{p} using \\spad{x} for the otherwise anonymous variable.")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-362))))
(-850 |x| R |sigma| -3756)
((|constructor| (NIL "This is the domain of univariate skew polynomials over an Ore coefficient field in a named variable. The multiplication is given by \\spad{x a = \\sigma(a) x + \\delta a}.")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-362))))
(-851 R)
((|constructor| (NIL "This package provides orthogonal polynomials as functions on a ring.")) (|legendreP| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{legendreP(n,{}x)} is the \\spad{n}-th Legendre polynomial,{} \\spad{P[n](x)}. These are defined by \\spad{1/sqrt(1-2*x*t+t**2) = sum(P[n](x)*t**n,{} n = 0..)}.")) (|laguerreL| ((|#1| (|NonNegativeInteger|) (|NonNegativeInteger|) |#1|) "\\spad{laguerreL(m,{}n,{}x)} is the associated Laguerre polynomial,{} \\spad{L<m>[n](x)}. This is the \\spad{m}-th derivative of \\spad{L[n](x)}.") ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{laguerreL(n,{}x)} is the \\spad{n}-th Laguerre polynomial,{} \\spad{L[n](x)}. These are defined by \\spad{exp(-t*x/(1-t))/(1-t) = sum(L[n](x)*t**n/n!,{} n = 0..)}.")) (|hermiteH| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{hermiteH(n,{}x)} is the \\spad{n}-th Hermite polynomial,{} \\spad{H[n](x)}. These are defined by \\spad{exp(2*t*x-t**2) = sum(H[n](x)*t**n/n!,{} n = 0..)}.")) (|chebyshevU| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{chebyshevU(n,{}x)} is the \\spad{n}-th Chebyshev polynomial of the second kind,{} \\spad{U[n](x)}. These are defined by \\spad{1/(1-2*t*x+t**2) = sum(T[n](x) *t**n,{} n = 0..)}.")) (|chebyshevT| ((|#1| (|NonNegativeInteger|) |#1|) "\\spad{chebyshevT(n,{}x)} is the \\spad{n}-th Chebyshev polynomial of the first kind,{} \\spad{T[n](x)}. These are defined by \\spad{(1-t*x)/(1-2*t*x+t**2) = sum(T[n](x) *t**n,{} n = 0..)}.")))
@@ -3374,7 +3374,7 @@ NIL
NIL
(-861 R |vl| |wl| |wtlevel|)
((|constructor| (NIL "This domain represents truncated weighted polynomials over the \"Polynomial\" type. The variables must be specified,{} as must the weights. The representation is sparse in the sense that only non-zero terms are represented.")) (|changeWeightLevel| (((|Void|) (|NonNegativeInteger|)) "\\spad{changeWeightLevel(n)} This changes the weight level to the new value given: \\spad{NB:} previously calculated terms are not affected")) (/ (((|Union| $ "failed") $ $) "\\spad{x/y} division (only works if minimum weight of divisor is zero,{} and if \\spad{R} is a Field)")))
-((-4397 |has| |#1| (-171)) (-4396 |has| |#1| (-171)) (-4399 . T))
+((-4398 |has| |#1| (-171)) (-4397 |has| |#1| (-171)) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))))
(-862 R PS UP)
((|constructor| (NIL "\\indented{1}{This package computes reliable Pad&ea. approximants using} a generalized Viskovatov continued fraction algorithm. Authors: Burge,{} Hassner & Watt. Date Created: April 1987 Date Last Updated: 12 April 1990 Keywords: Pade,{} series Examples: References: \\indented{2}{\"Pade Approximants,{} Part I: Basic Theory\",{} Baker & Graves-Morris.}")) (|padecf| (((|Union| (|ContinuedFraction| |#3|) "failed") (|NonNegativeInteger|) (|NonNegativeInteger|) |#2| |#2|) "\\spad{padecf(nd,{}dd,{}ns,{}ds)} computes the approximant as a continued fraction of polynomials (if it exists) for arguments \\spad{nd} (numerator degree of approximant),{} \\spad{dd} (denominator degree of approximant),{} \\spad{ns} (numerator series of function),{} and \\spad{ds} (denominator series of function).")) (|pade| (((|Union| (|Fraction| |#3|) "failed") (|NonNegativeInteger|) (|NonNegativeInteger|) |#2| |#2|) "\\spad{pade(nd,{}dd,{}ns,{}ds)} computes the approximant as a quotient of polynomials (if it exists) for arguments \\spad{nd} (numerator degree of approximant),{} \\spad{dd} (denominator degree of approximant),{} \\spad{ns} (numerator series of function),{} and \\spad{ds} (denominator series of function).")))
@@ -3386,19 +3386,19 @@ NIL
NIL
(-864 |p|)
((|constructor| (NIL "This is the catefory of stream-based representations of \\indented{2}{the \\spad{p}-adic integers.}")) (|root| (($ (|SparseUnivariatePolynomial| (|Integer|)) (|Integer|)) "\\spad{root(f,{}a)} returns a root of the polynomial \\spad{f}. Argument \\spad{a} must be a root of \\spad{f} \\spad{(mod p)}.")) (|sqrt| (($ $ (|Integer|)) "\\spad{sqrt(b,{}a)} returns a square root of \\spad{b}. Argument \\spad{a} is a square root of \\spad{b} \\spad{(mod p)}.")) (|approximate| (((|Integer|) $ (|Integer|)) "\\spad{approximate(x,{}n)} returns an integer \\spad{y} such that \\spad{y = x (mod p^n)} when \\spad{n} is positive,{} and 0 otherwise.")) (|quotientByP| (($ $) "\\spad{quotientByP(x)} returns \\spad{b},{} where \\spad{x = a + b p}.")) (|moduloP| (((|Integer|) $) "\\spad{modulo(x)} returns a,{} where \\spad{x = a + b p}.")) (|modulus| (((|Integer|)) "\\spad{modulus()} returns the value of \\spad{p}.")) (|complete| (($ $) "\\spad{complete(x)} forces the computation of all digits.")) (|extend| (($ $ (|Integer|)) "\\spad{extend(x,{}n)} forces the computation of digits up to order \\spad{n}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(x)} returns the exponent of the highest power of \\spad{p} dividing \\spad{x}.")) (|digits| (((|Stream| (|Integer|)) $) "\\spad{digits(x)} returns a stream of \\spad{p}-adic digits of \\spad{x}.")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-865 |p|)
((|constructor| (NIL "Stream-based implementation of \\spad{Zp:} \\spad{p}-adic numbers are represented as sum(\\spad{i} = 0..,{} a[\\spad{i}] * p^i),{} where the a[\\spad{i}] lie in 0,{}1,{}...,{}(\\spad{p} - 1).")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-866 |p|)
((|constructor| (NIL "Stream-based implementation of \\spad{Qp:} numbers are represented as sum(\\spad{i} = \\spad{k}..,{} a[\\spad{i}] * p^i) where the a[\\spad{i}] lie in 0,{}1,{}...,{}(\\spad{p} - 1).")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| (-865 |#1|) (QUOTE (-904))) (|HasCategory| (-865 |#1|) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| (-865 |#1|) (QUOTE (-144))) (|HasCategory| (-865 |#1|) (QUOTE (-146))) (|HasCategory| (-865 |#1|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-865 |#1|) (QUOTE (-1017))) (|HasCategory| (-865 |#1|) (QUOTE (-815))) (-4037 (|HasCategory| (-865 |#1|) (QUOTE (-815))) (|HasCategory| (-865 |#1|) (QUOTE (-845)))) (|HasCategory| (-865 |#1|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| (-865 |#1|) (QUOTE (-1143))) (|HasCategory| (-865 |#1|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| (-865 |#1|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| (-865 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| (-865 |#1|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| (-865 |#1|) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| (-865 |#1|) (QUOTE (-232))) (|HasCategory| (-865 |#1|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-865 |#1|) (LIST (QUOTE -513) (QUOTE (-1168)) (LIST (QUOTE -865) (|devaluate| |#1|)))) (|HasCategory| (-865 |#1|) (LIST (QUOTE -308) (LIST (QUOTE -865) (|devaluate| |#1|)))) (|HasCategory| (-865 |#1|) (LIST (QUOTE -285) (LIST (QUOTE -865) (|devaluate| |#1|)) (LIST (QUOTE -865) (|devaluate| |#1|)))) (|HasCategory| (-865 |#1|) (QUOTE (-306))) (|HasCategory| (-865 |#1|) (QUOTE (-544))) (|HasCategory| (-865 |#1|) (QUOTE (-845))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-865 |#1|) (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-865 |#1|) (QUOTE (-904)))) (|HasCategory| (-865 |#1|) (QUOTE (-144)))))
(-867 |p| PADIC)
((|constructor| (NIL "This is the category of stream-based representations of \\spad{Qp}.")) (|removeZeroes| (($ (|Integer|) $) "\\spad{removeZeroes(n,{}x)} removes up to \\spad{n} leading zeroes from the \\spad{p}-adic rational \\spad{x}.") (($ $) "\\spad{removeZeroes(x)} removes leading zeroes from the representation of the \\spad{p}-adic rational \\spad{x}. A \\spad{p}-adic rational is represented by (1) an exponent and (2) a \\spad{p}-adic integer which may have leading zero digits. When the \\spad{p}-adic integer has a leading zero digit,{} a 'leading zero' is removed from the \\spad{p}-adic rational as follows: the number is rewritten by increasing the exponent by 1 and dividing the \\spad{p}-adic integer by \\spad{p}. Note: \\spad{removeZeroes(f)} removes all leading zeroes from \\spad{f}.")) (|continuedFraction| (((|ContinuedFraction| (|Fraction| (|Integer|))) $) "\\spad{continuedFraction(x)} converts the \\spad{p}-adic rational number \\spad{x} to a continued fraction.")) (|approximate| (((|Fraction| (|Integer|)) $ (|Integer|)) "\\spad{approximate(x,{}n)} returns a rational number \\spad{y} such that \\spad{y = x (mod p^n)}.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#2| (QUOTE (-904))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (QUOTE (-1017))) (|HasCategory| |#2| (QUOTE (-815))) (-4037 (|HasCategory| |#2| (QUOTE (-815))) (|HasCategory| |#2| (QUOTE (-845)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-1143))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-306))) (|HasCategory| |#2| (QUOTE (-544))) (|HasCategory| |#2| (QUOTE (-845))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-144)))))
(-868 S T$)
((|constructor| (NIL "\\indented{1}{This domain provides a very simple representation} of the notion of `pair of objects'. It does not try to achieve all possible imaginable things.")) (|second| ((|#2| $) "\\spad{second(p)} extracts the second components of \\spad{`p'}.")) (|first| ((|#1| $) "\\spad{first(p)} extracts the first component of \\spad{`p'}.")) (|construct| (($ |#1| |#2|) "\\spad{construct(s,{}t)} is same as pair(\\spad{s},{}\\spad{t}),{} with syntactic sugar.")) (|pair| (($ |#1| |#2|) "\\spad{pair(s,{}t)} returns a pair object composed of \\spad{`s'} and \\spad{`t'}.")))
@@ -3459,7 +3459,7 @@ NIL
(-882 |Base| |Subject| |Pat|)
((|constructor| (NIL "This package provides the top-level pattern macthing functions.")) (|Is| (((|PatternMatchResult| |#1| |#2|) |#2| |#3|) "\\spad{Is(expr,{} pat)} matches the pattern pat on the expression \\spad{expr} and returns a match of the form \\spad{[v1 = e1,{}...,{}vn = en]}; returns an empty match if \\spad{expr} is exactly equal to pat. returns a \\spadfun{failed} match if pat does not match \\spad{expr}.") (((|List| (|Equation| (|Polynomial| |#2|))) |#2| |#3|) "\\spad{Is(expr,{} pat)} matches the pattern pat on the expression \\spad{expr} and returns a list of matches \\spad{[v1 = e1,{}...,{}vn = en]}; returns an empty list if either \\spad{expr} is exactly equal to pat or if pat does not match \\spad{expr}.") (((|List| (|Equation| |#2|)) |#2| |#3|) "\\spad{Is(expr,{} pat)} matches the pattern pat on the expression \\spad{expr} and returns a list of matches \\spad{[v1 = e1,{}...,{}vn = en]}; returns an empty list if either \\spad{expr} is exactly equal to pat or if pat does not match \\spad{expr}.") (((|PatternMatchListResult| |#1| |#2| (|List| |#2|)) (|List| |#2|) |#3|) "\\spad{Is([e1,{}...,{}en],{} pat)} matches the pattern pat on the list of expressions \\spad{[e1,{}...,{}en]} and returns the result.")) (|is?| (((|Boolean|) (|List| |#2|) |#3|) "\\spad{is?([e1,{}...,{}en],{} pat)} tests if the list of expressions \\spad{[e1,{}...,{}en]} matches the pattern pat.") (((|Boolean|) |#2| |#3|) "\\spad{is?(expr,{} pat)} tests if the expression \\spad{expr} matches the pattern pat.")))
NIL
-((-12 (-2236 (|HasCategory| |#2| (QUOTE (-1044)))) (-2236 (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168)))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (-2236 (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168)))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168)))))
+((-12 (-2234 (|HasCategory| |#2| (QUOTE (-1044)))) (-2234 (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168)))))) (-12 (|HasCategory| |#2| (QUOTE (-1044))) (-2234 (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168)))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168)))))
(-883 R A B)
((|constructor| (NIL "Lifts maps to pattern matching results.")) (|map| (((|PatternMatchResult| |#1| |#3|) (|Mapping| |#3| |#2|) (|PatternMatchResult| |#1| |#2|)) "\\spad{map(f,{} [(v1,{}a1),{}...,{}(vn,{}an)])} returns the matching result [(\\spad{v1},{}\\spad{f}(a1)),{}...,{}(\\spad{vn},{}\\spad{f}(an))].")))
NIL
@@ -3468,7 +3468,7 @@ NIL
((|constructor| (NIL "A PatternMatchResult is an object internally returned by the pattern matcher; It is either a failed match,{} or a list of matches of the form (var,{} expr) meaning that the variable var matches the expression expr.")) (|satisfy?| (((|Union| (|Boolean|) "failed") $ (|Pattern| |#1|)) "\\spad{satisfy?(r,{} p)} returns \\spad{true} if the matches satisfy the top-level predicate of \\spad{p},{} \\spad{false} if they don\\spad{'t},{} and \"failed\" if not enough variables of \\spad{p} are matched in \\spad{r} to decide.")) (|construct| (($ (|List| (|Record| (|:| |key| (|Symbol|)) (|:| |entry| |#2|)))) "\\spad{construct([v1,{}e1],{}...,{}[vn,{}en])} returns the match result containing the matches (\\spad{v1},{}e1),{}...,{}(\\spad{vn},{}en).")) (|destruct| (((|List| (|Record| (|:| |key| (|Symbol|)) (|:| |entry| |#2|))) $) "\\spad{destruct(r)} returns the list of matches (var,{} expr) in \\spad{r}. Error: if \\spad{r} is a failed match.")) (|addMatchRestricted| (($ (|Pattern| |#1|) |#2| $ |#2|) "\\spad{addMatchRestricted(var,{} expr,{} r,{} val)} adds the match (\\spad{var},{} \\spad{expr}) in \\spad{r},{} provided that \\spad{expr} satisfies the predicates attached to \\spad{var},{} that \\spad{var} is not matched to another expression already,{} and that either \\spad{var} is an optional pattern variable or that \\spad{expr} is not equal to val (usually an identity).")) (|insertMatch| (($ (|Pattern| |#1|) |#2| $) "\\spad{insertMatch(var,{} expr,{} r)} adds the match (\\spad{var},{} \\spad{expr}) in \\spad{r},{} without checking predicates or previous matches for \\spad{var}.")) (|addMatch| (($ (|Pattern| |#1|) |#2| $) "\\spad{addMatch(var,{} expr,{} r)} adds the match (\\spad{var},{} \\spad{expr}) in \\spad{r},{} provided that \\spad{expr} satisfies the predicates attached to \\spad{var},{} and that \\spad{var} is not matched to another expression already.")) (|getMatch| (((|Union| |#2| "failed") (|Pattern| |#1|) $) "\\spad{getMatch(var,{} r)} returns the expression that \\spad{var} matches in the result \\spad{r},{} and \"failed\" if \\spad{var} is not matched in \\spad{r}.")) (|union| (($ $ $) "\\spad{union(a,{} b)} makes the set-union of two match results.")) (|new| (($) "\\spad{new()} returns a new empty match result.")) (|failed| (($) "\\spad{failed()} returns a failed match.")) (|failed?| (((|Boolean|) $) "\\spad{failed?(r)} tests if \\spad{r} is a failed match.")))
NIL
NIL
-(-885 R -3114)
+(-885 R -3113)
((|constructor| (NIL "Tools for patterns.")) (|badValues| (((|List| |#2|) (|Pattern| |#1|)) "\\spad{badValues(p)} returns the list of \"bad values\" for \\spad{p}; \\spad{p} is not allowed to match any of its \"bad values\".")) (|addBadValue| (((|Pattern| |#1|) (|Pattern| |#1|) |#2|) "\\spad{addBadValue(p,{} v)} adds \\spad{v} to the list of \"bad values\" for \\spad{p}; \\spad{p} is not allowed to match any of its \"bad values\".")) (|satisfy?| (((|Boolean|) (|List| |#2|) (|Pattern| |#1|)) "\\spad{satisfy?([v1,{}...,{}vn],{} p)} returns \\spad{f(v1,{}...,{}vn)} where \\spad{f} is the top-level predicate attached to \\spad{p}.") (((|Boolean|) |#2| (|Pattern| |#1|)) "\\spad{satisfy?(v,{} p)} returns \\spad{f}(\\spad{v}) where \\spad{f} is the predicate attached to \\spad{p}.")) (|predicate| (((|Mapping| (|Boolean|) |#2|) (|Pattern| |#1|)) "\\spad{predicate(p)} returns the predicate attached to \\spad{p},{} the constant function \\spad{true} if \\spad{p} has no predicates attached to it.")) (|suchThat| (((|Pattern| |#1|) (|Pattern| |#1|) (|List| (|Symbol|)) (|Mapping| (|Boolean|) (|List| |#2|))) "\\spad{suchThat(p,{} [a1,{}...,{}an],{} f)} returns a copy of \\spad{p} with the top-level predicate set to \\spad{f(a1,{}...,{}an)}.") (((|Pattern| |#1|) (|Pattern| |#1|) (|List| (|Mapping| (|Boolean|) |#2|))) "\\spad{suchThat(p,{} [f1,{}...,{}fn])} makes a copy of \\spad{p} and adds the predicate \\spad{f1} and ... and \\spad{fn} to the copy,{} which is returned.") (((|Pattern| |#1|) (|Pattern| |#1|) (|Mapping| (|Boolean|) |#2|)) "\\spad{suchThat(p,{} f)} makes a copy of \\spad{p} and adds the predicate \\spad{f} to the copy,{} which is returned.")))
NIL
NIL
@@ -3492,7 +3492,7 @@ NIL
((|PDESolve| (((|Result|) (|Record| (|:| |pde| (|List| (|Expression| (|DoubleFloat|)))) (|:| |constraints| (|List| (|Record| (|:| |start| (|DoubleFloat|)) (|:| |finish| (|DoubleFloat|)) (|:| |grid| (|NonNegativeInteger|)) (|:| |boundaryType| (|Integer|)) (|:| |dStart| (|Matrix| (|DoubleFloat|))) (|:| |dFinish| (|Matrix| (|DoubleFloat|)))))) (|:| |f| (|List| (|List| (|Expression| (|DoubleFloat|))))) (|:| |st| (|String|)) (|:| |tol| (|DoubleFloat|)))) "\\spad{PDESolve(args)} performs the integration of the function given the strategy or method returned by \\axiomFun{measure}.")) (|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |explanations| (|String|))) (|RoutinesTable|) (|Record| (|:| |pde| (|List| (|Expression| (|DoubleFloat|)))) (|:| |constraints| (|List| (|Record| (|:| |start| (|DoubleFloat|)) (|:| |finish| (|DoubleFloat|)) (|:| |grid| (|NonNegativeInteger|)) (|:| |boundaryType| (|Integer|)) (|:| |dStart| (|Matrix| (|DoubleFloat|))) (|:| |dFinish| (|Matrix| (|DoubleFloat|)))))) (|:| |f| (|List| (|List| (|Expression| (|DoubleFloat|))))) (|:| |st| (|String|)) (|:| |tol| (|DoubleFloat|)))) "\\spad{measure(R,{}args)} calculates an estimate of the ability of a particular method to solve a problem. \\blankline This method may be either a specific NAG routine or a strategy (such as transforming the function from one which is difficult to one which is easier to solve). \\blankline It will call whichever agents are needed to perform analysis on the problem in order to calculate the measure. There is a parameter,{} labelled \\axiom{sofar},{} which would contain the best compatibility found so far.")))
NIL
NIL
-(-891 UP -3197)
+(-891 UP -3196)
((|constructor| (NIL "This package \\undocumented")) (|rightFactorCandidate| ((|#1| |#1| (|NonNegativeInteger|)) "\\spad{rightFactorCandidate(p,{}n)} \\undocumented")) (|leftFactor| (((|Union| |#1| "failed") |#1| |#1|) "\\spad{leftFactor(p,{}q)} \\undocumented")) (|decompose| (((|Union| (|Record| (|:| |left| |#1|) (|:| |right| |#1|)) "failed") |#1| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{decompose(up,{}m,{}n)} \\undocumented") (((|List| |#1|) |#1|) "\\spad{decompose(up)} \\undocumented")))
NIL
NIL
@@ -3510,7 +3510,7 @@ NIL
NIL
(-895 S)
((|constructor| (NIL "A partial differential ring with differentiations indexed by a parameter type \\spad{S}. \\blankline")) (D (($ $ (|List| |#1|) (|List| (|NonNegativeInteger|))) "\\spad{D(x,{} [s1,{}...,{}sn],{} [n1,{}...,{}nn])} computes multiple partial derivatives,{} \\spadignore{i.e.} \\spad{D(...D(x,{} s1,{} n1)...,{} sn,{} nn)}.") (($ $ |#1| (|NonNegativeInteger|)) "\\spad{D(x,{} s,{} n)} computes multiple partial derivatives,{} \\spadignore{i.e.} \\spad{n}-th derivative of \\spad{x} with respect to \\spad{s}.") (($ $ (|List| |#1|)) "\\spad{D(x,{}[s1,{}...sn])} computes successive partial derivatives,{} \\spadignore{i.e.} \\spad{D(...D(x,{} s1)...,{} sn)}.") (($ $ |#1|) "\\spad{D(x,{}v)} computes the partial derivative of \\spad{x} with respect to \\spad{v}.")) (|differentiate| (($ $ (|List| |#1|) (|List| (|NonNegativeInteger|))) "\\spad{differentiate(x,{} [s1,{}...,{}sn],{} [n1,{}...,{}nn])} computes multiple partial derivatives,{} \\spadignore{i.e.}") (($ $ |#1| (|NonNegativeInteger|)) "\\spad{differentiate(x,{} s,{} n)} computes multiple partial derivatives,{} \\spadignore{i.e.} \\spad{n}-th derivative of \\spad{x} with respect to \\spad{s}.") (($ $ (|List| |#1|)) "\\spad{differentiate(x,{}[s1,{}...sn])} computes successive partial derivatives,{} \\spadignore{i.e.} \\spad{differentiate(...differentiate(x,{} s1)...,{} sn)}.") (($ $ |#1|) "\\spad{differentiate(x,{}v)} computes the partial derivative of \\spad{x} with respect to \\spad{v}.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-896 S)
((|constructor| (NIL "\\indented{1}{A PendantTree(\\spad{S})is either a leaf? and is an \\spad{S} or has} a left and a right both PendantTree(\\spad{S})\\spad{'s}")) (|ptree| (($ $ $) "\\spad{ptree(x,{}y)} \\undocumented") (($ |#1|) "\\spad{ptree(s)} is a leaf? pendant tree")))
@@ -3522,7 +3522,7 @@ NIL
NIL
(-898 S)
((|constructor| (NIL "PermutationCategory provides a categorial environment \\indented{1}{for subgroups of bijections of a set (\\spadignore{i.e.} permutations)}")) (< (((|Boolean|) $ $) "\\spad{p < q} is an order relation on permutations. Note: this order is only total if and only if \\spad{S} is totally ordered or \\spad{S} is finite.")) (|orbit| (((|Set| |#1|) $ |#1|) "\\spad{orbit(p,{} el)} returns the orbit of {\\em el} under the permutation \\spad{p},{} \\spadignore{i.e.} the set which is given by applications of the powers of \\spad{p} to {\\em el}.")) (|elt| ((|#1| $ |#1|) "\\spad{elt(p,{} el)} returns the image of {\\em el} under the permutation \\spad{p}.")) (|eval| ((|#1| $ |#1|) "\\spad{eval(p,{} el)} returns the image of {\\em el} under the permutation \\spad{p}.")) (|cycles| (($ (|List| (|List| |#1|))) "\\spad{cycles(lls)} coerces a list list of cycles {\\em lls} to a permutation,{} each cycle being a list with not repetitions,{} is coerced to the permutation,{} which maps {\\em ls.i} to {\\em ls.i+1},{} indices modulo the length of the list,{} then these permutations are mutiplied. Error: if repetitions occur in one cycle.")) (|cycle| (($ (|List| |#1|)) "\\spad{cycle(ls)} coerces a cycle {\\em ls},{} \\spadignore{i.e.} a list with not repetitions to a permutation,{} which maps {\\em ls.i} to {\\em ls.i+1},{} indices modulo the length of the list. Error: if repetitions occur.")))
-((-4399 . T))
+((-4400 . T))
NIL
(-899 S)
((|constructor| (NIL "PermutationGroup implements permutation groups acting on a set \\spad{S},{} \\spadignore{i.e.} all subgroups of the symmetric group of \\spad{S},{} represented as a list of permutations (generators). Note that therefore the objects are not members of the \\Language category \\spadtype{Group}. Using the idea of base and strong generators by Sims,{} basic routines and algorithms are implemented so that the word problem for permutation groups can be solved.")) (|initializeGroupForWordProblem| (((|Void|) $ (|Integer|) (|Integer|)) "\\spad{initializeGroupForWordProblem(gp,{}m,{}n)} initializes the group {\\em gp} for the word problem. Notes: (1) with a small integer you get shorter words,{} but the routine takes longer than the standard routine for longer words. (2) be careful: invoking this routine will destroy the possibly stored information about your group (but will recompute it again). (3) users need not call this function normally for the soultion of the word problem.") (((|Void|) $) "\\spad{initializeGroupForWordProblem(gp)} initializes the group {\\em gp} for the word problem. Notes: it calls the other function of this name with parameters 0 and 1: {\\em initializeGroupForWordProblem(gp,{}0,{}1)}. Notes: (1) be careful: invoking this routine will destroy the possibly information about your group (but will recompute it again) (2) users need not call this function normally for the soultion of the word problem.")) (<= (((|Boolean|) $ $) "\\spad{gp1 <= gp2} returns \\spad{true} if and only if {\\em gp1} is a subgroup of {\\em gp2}. Note: because of a bug in the parser you have to call this function explicitly by {\\em gp1 <=\\$(PERMGRP S) gp2}.")) (< (((|Boolean|) $ $) "\\spad{gp1 < gp2} returns \\spad{true} if and only if {\\em gp1} is a proper subgroup of {\\em gp2}.")) (|movedPoints| (((|Set| |#1|) $) "\\spad{movedPoints(gp)} returns the points moved by the group {\\em gp}.")) (|wordInGenerators| (((|List| (|NonNegativeInteger|)) (|Permutation| |#1|) $) "\\spad{wordInGenerators(p,{}gp)} returns the word for the permutation \\spad{p} in the original generators of the group {\\em gp},{} represented by the indices of the list,{} given by {\\em generators}.")) (|wordInStrongGenerators| (((|List| (|NonNegativeInteger|)) (|Permutation| |#1|) $) "\\spad{wordInStrongGenerators(p,{}gp)} returns the word for the permutation \\spad{p} in the strong generators of the group {\\em gp},{} represented by the indices of the list,{} given by {\\em strongGenerators}.")) (|member?| (((|Boolean|) (|Permutation| |#1|) $) "\\spad{member?(pp,{}gp)} answers the question,{} whether the permutation {\\em pp} is in the group {\\em gp} or not.")) (|orbits| (((|Set| (|Set| |#1|)) $) "\\spad{orbits(gp)} returns the orbits of the group {\\em gp},{} \\spadignore{i.e.} it partitions the (finite) of all moved points.")) (|orbit| (((|Set| (|List| |#1|)) $ (|List| |#1|)) "\\spad{orbit(gp,{}ls)} returns the orbit of the ordered list {\\em ls} under the group {\\em gp}. Note: return type is \\spad{L} \\spad{L} \\spad{S} temporarily because FSET \\spad{L} \\spad{S} has an error.") (((|Set| (|Set| |#1|)) $ (|Set| |#1|)) "\\spad{orbit(gp,{}els)} returns the orbit of the unordered set {\\em els} under the group {\\em gp}.") (((|Set| |#1|) $ |#1|) "\\spad{orbit(gp,{}el)} returns the orbit of the element {\\em el} under the group {\\em gp},{} \\spadignore{i.e.} the set of all points gained by applying each group element to {\\em el}.")) (|permutationGroup| (($ (|List| (|Permutation| |#1|))) "\\spad{permutationGroup(ls)} coerces a list of permutations {\\em ls} to the group generated by this list.")) (|wordsForStrongGenerators| (((|List| (|List| (|NonNegativeInteger|))) $) "\\spad{wordsForStrongGenerators(gp)} returns the words for the strong generators of the group {\\em gp} in the original generators of {\\em gp},{} represented by their indices in the list,{} given by {\\em generators}.")) (|strongGenerators| (((|List| (|Permutation| |#1|)) $) "\\spad{strongGenerators(gp)} returns strong generators for the group {\\em gp}.")) (|base| (((|List| |#1|) $) "\\spad{base(gp)} returns a base for the group {\\em gp}.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(gp)} returns the number of points moved by all permutations of the group {\\em gp}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(gp)} returns the order of the group {\\em gp}.")) (|random| (((|Permutation| |#1|) $) "\\spad{random(gp)} returns a random product of maximal 20 generators of the group {\\em gp}. Note: {\\em random(gp)=random(gp,{}20)}.") (((|Permutation| |#1|) $ (|Integer|)) "\\spad{random(gp,{}i)} returns a random product of maximal \\spad{i} generators of the group {\\em gp}.")) (|elt| (((|Permutation| |#1|) $ (|NonNegativeInteger|)) "\\spad{elt(gp,{}i)} returns the \\spad{i}-th generator of the group {\\em gp}.")) (|generators| (((|List| (|Permutation| |#1|)) $) "\\spad{generators(gp)} returns the generators of the group {\\em gp}.")) (|coerce| (($ (|List| (|Permutation| |#1|))) "\\spad{coerce(ls)} coerces a list of permutations {\\em ls} to the group generated by this list.") (((|List| (|Permutation| |#1|)) $) "\\spad{coerce(gp)} returns the generators of the group {\\em gp}.")))
@@ -3530,7 +3530,7 @@ NIL
NIL
(-900 S)
((|constructor| (NIL "Permutation(\\spad{S}) implements the group of all bijections \\indented{2}{on a set \\spad{S},{} which move only a finite number of points.} \\indented{2}{A permutation is considered as a map from \\spad{S} into \\spad{S}. In particular} \\indented{2}{multiplication is defined as composition of maps:} \\indented{2}{{\\em pi1 * pi2 = pi1 o pi2}.} \\indented{2}{The internal representation of permuatations are two lists} \\indented{2}{of equal length representing preimages and images.}")) (|coerceImages| (($ (|List| |#1|)) "\\spad{coerceImages(ls)} coerces the list {\\em ls} to a permutation whose image is given by {\\em ls} and the preimage is fixed to be {\\em [1,{}...,{}n]}. Note: {coerceImages(\\spad{ls})=coercePreimagesImages([1,{}...,{}\\spad{n}],{}\\spad{ls})}. We assume that both preimage and image do not contain repetitions.")) (|fixedPoints| (((|Set| |#1|) $) "\\spad{fixedPoints(p)} returns the points fixed by the permutation \\spad{p}.")) (|sort| (((|List| $) (|List| $)) "\\spad{sort(lp)} sorts a list of permutations {\\em lp} according to cycle structure first according to length of cycles,{} second,{} if \\spad{S} has \\spadtype{Finite} or \\spad{S} has \\spadtype{OrderedSet} according to lexicographical order of entries in cycles of equal length.")) (|odd?| (((|Boolean|) $) "\\spad{odd?(p)} returns \\spad{true} if and only if \\spad{p} is an odd permutation \\spadignore{i.e.} {\\em sign(p)} is {\\em -1}.")) (|even?| (((|Boolean|) $) "\\spad{even?(p)} returns \\spad{true} if and only if \\spad{p} is an even permutation,{} \\spadignore{i.e.} {\\em sign(p)} is 1.")) (|sign| (((|Integer|) $) "\\spad{sign(p)} returns the signum of the permutation \\spad{p},{} \\spad{+1} or \\spad{-1}.")) (|numberOfCycles| (((|NonNegativeInteger|) $) "\\spad{numberOfCycles(p)} returns the number of non-trivial cycles of the permutation \\spad{p}.")) (|order| (((|NonNegativeInteger|) $) "\\spad{order(p)} returns the order of a permutation \\spad{p} as a group element.")) (|cyclePartition| (((|Partition|) $) "\\spad{cyclePartition(p)} returns the cycle structure of a permutation \\spad{p} including cycles of length 1 only if \\spad{S} is finite.")) (|movedPoints| (((|Set| |#1|) $) "\\spad{movedPoints(p)} returns the set of points moved by the permutation \\spad{p}.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(p)} retuns the number of points moved by the permutation \\spad{p}.")) (|coerceListOfPairs| (($ (|List| (|List| |#1|))) "\\spad{coerceListOfPairs(lls)} coerces a list of pairs {\\em lls} to a permutation. Error: if not consistent,{} \\spadignore{i.e.} the set of the first elements coincides with the set of second elements. coerce(\\spad{p}) generates output of the permutation \\spad{p} with domain OutputForm.")) (|coerce| (($ (|List| |#1|)) "\\spad{coerce(ls)} coerces a cycle {\\em ls},{} \\spadignore{i.e.} a list with not repetitions to a permutation,{} which maps {\\em ls.i} to {\\em ls.i+1},{} indices modulo the length of the list. Error: if repetitions occur.") (($ (|List| (|List| |#1|))) "\\spad{coerce(lls)} coerces a list of cycles {\\em lls} to a permutation,{} each cycle being a list with no repetitions,{} is coerced to the permutation,{} which maps {\\em ls.i} to {\\em ls.i+1},{} indices modulo the length of the list,{} then these permutations are mutiplied. Error: if repetitions occur in one cycle.")) (|coercePreimagesImages| (($ (|List| (|List| |#1|))) "\\spad{coercePreimagesImages(lls)} coerces the representation {\\em lls} of a permutation as a list of preimages and images to a permutation. We assume that both preimage and image do not contain repetitions.")) (|listRepresentation| (((|Record| (|:| |preimage| (|List| |#1|)) (|:| |image| (|List| |#1|))) $) "\\spad{listRepresentation(p)} produces a representation {\\em rep} of the permutation \\spad{p} as a list of preimages and images,{} \\spad{i}.\\spad{e} \\spad{p} maps {\\em (rep.preimage).k} to {\\em (rep.image).k} for all indices \\spad{k}. Elements of \\spad{S} not in {\\em (rep.preimage).k} are fixed points,{} and these are the only fixed points of the permutation.")))
-((-4399 . T))
+((-4400 . T))
((-4037 (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (QUOTE (-845)))) (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (QUOTE (-845))))
(-901 R E |VarSet| S)
((|constructor| (NIL "PolynomialFactorizationByRecursion(\\spad{R},{}\\spad{E},{}\\spad{VarSet},{}\\spad{S}) is used for factorization of sparse univariate polynomials over a domain \\spad{S} of multivariate polynomials over \\spad{R}.")) (|factorSFBRlcUnit| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|List| |#3|) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factorSFBRlcUnit(p)} returns the square free factorization of polynomial \\spad{p} (see \\spadfun{factorSquareFreeByRecursion}{PolynomialFactorizationByRecursionUnivariate}) in the case where the leading coefficient of \\spad{p} is a unit.")) (|bivariateSLPEBR| (((|Union| (|List| (|SparseUnivariatePolynomial| |#4|)) "failed") (|List| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|) |#3|) "\\spad{bivariateSLPEBR(lp,{}p,{}v)} implements the bivariate case of \\spadfunFrom{solveLinearPolynomialEquationByRecursion}{PolynomialFactorizationByRecursionUnivariate}; its implementation depends on \\spad{R}")) (|randomR| ((|#1|) "\\spad{randomR produces} a random element of \\spad{R}")) (|factorSquareFreeByRecursion| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factorSquareFreeByRecursion(p)} returns the square free factorization of \\spad{p}. This functions performs the recursion step for factorSquareFreePolynomial,{} as defined in \\spadfun{PolynomialFactorizationExplicit} category (see \\spadfun{factorSquareFreePolynomial}).")) (|factorByRecursion| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factorByRecursion(p)} factors polynomial \\spad{p}. This function performs the recursion step for factorPolynomial,{} as defined in \\spadfun{PolynomialFactorizationExplicit} category (see \\spadfun{factorPolynomial})")) (|solveLinearPolynomialEquationByRecursion| (((|Union| (|List| (|SparseUnivariatePolynomial| |#4|)) "failed") (|List| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{solveLinearPolynomialEquationByRecursion([p1,{}...,{}pn],{}p)} returns the list of polynomials \\spad{[q1,{}...,{}qn]} such that \\spad{sum qi/pi = p / prod \\spad{pi}},{} a recursion step for solveLinearPolynomialEquation as defined in \\spadfun{PolynomialFactorizationExplicit} category (see \\spadfun{solveLinearPolynomialEquation}). If no such list of \\spad{qi} exists,{} then \"failed\" is returned.")))
@@ -3546,13 +3546,13 @@ NIL
((|HasCategory| |#1| (QUOTE (-144))))
(-904)
((|constructor| (NIL "This is the category of domains that know \"enough\" about themselves in order to factor univariate polynomials over themselves. This will be used in future releases for supporting factorization over finitely generated coefficient fields,{} it is not yet available in the current release of axiom.")) (|charthRoot| (((|Union| $ "failed") $) "\\spad{charthRoot(r)} returns the \\spad{p}\\spad{-}th root of \\spad{r},{} or \"failed\" if none exists in the domain.")) (|conditionP| (((|Union| (|Vector| $) "failed") (|Matrix| $)) "\\spad{conditionP(m)} returns a vector of elements,{} not all zero,{} whose \\spad{p}\\spad{-}th powers (\\spad{p} is the characteristic of the domain) are a solution of the homogenous linear system represented by \\spad{m},{} or \"failed\" is there is no such vector.")) (|solveLinearPolynomialEquation| (((|Union| (|List| (|SparseUnivariatePolynomial| $)) "failed") (|List| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{solveLinearPolynomialEquation([f1,{} ...,{} fn],{} g)} (where the \\spad{fi} are relatively prime to each other) returns a list of \\spad{ai} such that \\spad{g/prod \\spad{fi} = sum ai/fi} or returns \"failed\" if no such list of \\spad{ai}\\spad{'s} exists.")) (|gcdPolynomial| (((|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $) (|SparseUnivariatePolynomial| $)) "\\spad{gcdPolynomial(p,{}q)} returns the \\spad{gcd} of the univariate polynomials \\spad{p} \\spad{qnd} \\spad{q}.")) (|factorSquareFreePolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{factorSquareFreePolynomial(p)} factors the univariate polynomial \\spad{p} into irreducibles where \\spad{p} is known to be square free and primitive with respect to its main variable.")) (|factorPolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{factorPolynomial(p)} returns the factorization into irreducibles of the univariate polynomial \\spad{p}.")) (|squareFreePolynomial| (((|Factored| (|SparseUnivariatePolynomial| $)) (|SparseUnivariatePolynomial| $)) "\\spad{squareFreePolynomial(p)} returns the square-free factorization of the univariate polynomial \\spad{p}.")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-905 |p|)
((|constructor| (NIL "PrimeField(\\spad{p}) implements the field with \\spad{p} elements if \\spad{p} is a prime number. Error: if \\spad{p} is not prime. Note: this domain does not check that argument is a prime.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| $ (QUOTE (-146))) (|HasCategory| $ (QUOTE (-144))) (|HasCategory| $ (QUOTE (-367))))
-(-906 R0 -3197 UP UPUP R)
+(-906 R0 -3196 UP UPUP R)
((|constructor| (NIL "This package provides function for testing whether a divisor on a curve is a torsion divisor.")) (|torsionIfCan| (((|Union| (|Record| (|:| |order| (|NonNegativeInteger|)) (|:| |function| |#5|)) "failed") (|FiniteDivisor| |#2| |#3| |#4| |#5|)) "\\spad{torsionIfCan(f)}\\\\ undocumented")) (|torsion?| (((|Boolean|) (|FiniteDivisor| |#2| |#3| |#4| |#5|)) "\\spad{torsion?(f)} \\undocumented")) (|order| (((|Union| (|NonNegativeInteger|) "failed") (|FiniteDivisor| |#2| |#3| |#4| |#5|)) "\\spad{order(f)} \\undocumented")))
NIL
NIL
@@ -3566,7 +3566,7 @@ NIL
NIL
(-909 R)
((|constructor| (NIL "The domain \\spadtype{PartialFraction} implements partial fractions over a euclidean domain \\spad{R}. This requirement on the argument domain allows us to normalize the fractions. Of particular interest are the 2 forms for these fractions. The ``compact\\spad{''} form has only one fractional term per prime in the denominator,{} while the \\spad{``p}-adic\\spad{''} form expands each numerator \\spad{p}-adically via the prime \\spad{p} in the denominator. For computational efficiency,{} the compact form is used,{} though the \\spad{p}-adic form may be gotten by calling the function \\spadfunFrom{padicFraction}{PartialFraction}. For a general euclidean domain,{} it is not known how to factor the denominator. Thus the function \\spadfunFrom{partialFraction}{PartialFraction} takes as its second argument an element of \\spadtype{Factored(R)}.")) (|wholePart| ((|#1| $) "\\spad{wholePart(p)} extracts the whole part of the partial fraction \\spad{p}.")) (|partialFraction| (($ |#1| (|Factored| |#1|)) "\\spad{partialFraction(numer,{}denom)} is the main function for constructing partial fractions. The second argument is the denominator and should be factored.")) (|padicFraction| (($ $) "\\spad{padicFraction(q)} expands the fraction \\spad{p}-adically in the primes \\spad{p} in the denominator of \\spad{q}. For example,{} \\spad{padicFraction(3/(2**2)) = 1/2 + 1/(2**2)}. Use \\spadfunFrom{compactFraction}{PartialFraction} to return to compact form.")) (|padicallyExpand| (((|SparseUnivariatePolynomial| |#1|) |#1| |#1|) "\\spad{padicallyExpand(p,{}x)} is a utility function that expands the second argument \\spad{x} \\spad{``p}-adically\\spad{''} in the first.")) (|numberOfFractionalTerms| (((|Integer|) $) "\\spad{numberOfFractionalTerms(p)} computes the number of fractional terms in \\spad{p}. This returns 0 if there is no fractional part.")) (|nthFractionalTerm| (($ $ (|Integer|)) "\\spad{nthFractionalTerm(p,{}n)} extracts the \\spad{n}th fractional term from the partial fraction \\spad{p}. This returns 0 if the index \\spad{n} is out of range.")) (|firstNumer| ((|#1| $) "\\spad{firstNumer(p)} extracts the numerator of the first fractional term. This returns 0 if there is no fractional part (use \\spadfunFrom{wholePart}{PartialFraction} to get the whole part).")) (|firstDenom| (((|Factored| |#1|) $) "\\spad{firstDenom(p)} extracts the denominator of the first fractional term. This returns 1 if there is no fractional part (use \\spadfunFrom{wholePart}{PartialFraction} to get the whole part).")) (|compactFraction| (($ $) "\\spad{compactFraction(p)} normalizes the partial fraction \\spad{p} to the compact representation. In this form,{} the partial fraction has only one fractional term per prime in the denominator.")) (|coerce| (($ (|Fraction| (|Factored| |#1|))) "\\spad{coerce(f)} takes a fraction with numerator and denominator in factored form and creates a partial fraction. It is necessary for the parts to be factored because it is not known in general how to factor elements of \\spad{R} and this is needed to decompose into partial fractions.") (((|Fraction| |#1|) $) "\\spad{coerce(p)} sums up the components of the partial fraction and returns a single fraction.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-910 R)
((|constructor| (NIL "The package \\spadtype{PartialFractionPackage} gives an easier to use interfact the domain \\spadtype{PartialFraction}. The user gives a fraction of polynomials,{} and a variable and the package converts it to the proper datatype for the \\spadtype{PartialFraction} domain.")) (|partialFraction| (((|Any|) (|Polynomial| |#1|) (|Factored| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{partialFraction(num,{} facdenom,{} var)} returns the partial fraction decomposition of the rational function whose numerator is \\spad{num} and whose factored denominator is \\spad{facdenom} with respect to the variable var.") (((|Any|) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{partialFraction(rf,{} var)} returns the partial fraction decomposition of the rational function \\spad{rf} with respect to the variable var.")))
@@ -3580,7 +3580,7 @@ NIL
((|constructor| (NIL "PermutationGroupExamples provides permutation groups for some classes of groups: symmetric,{} alternating,{} dihedral,{} cyclic,{} direct products of cyclic,{} which are in fact the finite abelian groups of symmetric groups called Young subgroups. Furthermore,{} Rubik\\spad{'s} group as permutation group of 48 integers and a list of sporadic simple groups derived from the atlas of finite groups.")) (|youngGroup| (((|PermutationGroup| (|Integer|)) (|Partition|)) "\\spad{youngGroup(lambda)} constructs the direct product of the symmetric groups given by the parts of the partition {\\em lambda}.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{youngGroup([n1,{}...,{}nk])} constructs the direct product of the symmetric groups {\\em Sn1},{}...,{}{\\em Snk}.")) (|rubiksGroup| (((|PermutationGroup| (|Integer|))) "\\spad{rubiksGroup constructs} the permutation group representing Rubic\\spad{'s} Cube acting on integers {\\em 10*i+j} for {\\em 1 <= i <= 6},{} {\\em 1 <= j <= 8}. The faces of Rubik\\spad{'s} Cube are labelled in the obvious way Front,{} Right,{} Up,{} Down,{} Left,{} Back and numbered from 1 to 6 in this given ordering,{} the pieces on each face (except the unmoveable center piece) are clockwise numbered from 1 to 8 starting with the piece in the upper left corner. The moves of the cube are represented as permutations on these pieces,{} represented as a two digit integer {\\em ij} where \\spad{i} is the numer of theface (1 to 6) and \\spad{j} is the number of the piece on this face. The remaining ambiguities are resolved by looking at the 6 generators,{} which represent a 90 degree turns of the faces,{} or from the following pictorial description. Permutation group representing Rubic\\spad{'s} Cube acting on integers 10*i+j for 1 \\spad{<=} \\spad{i} \\spad{<=} 6,{} 1 \\spad{<=} \\spad{j} \\spad{<=8}. \\blankline\\begin{verbatim}Rubik's Cube: +-----+ +-- B where: marks Side # : / U /|/ / / | F(ront) <-> 1 L --> +-----+ R| R(ight) <-> 2 | | + U(p) <-> 3 | F | / D(own) <-> 4 | |/ L(eft) <-> 5 +-----+ B(ack) <-> 6 ^ | DThe Cube's surface: The pieces on each side +---+ (except the unmoveable center |567| piece) are clockwise numbered |4U8| from 1 to 8 starting with the |321| piece in the upper left +---+---+---+ corner (see figure on the |781|123|345| left). The moves of the cube |6L2|8F4|2R6| are represented as |543|765|187| permutations on these pieces. +---+---+---+ Each of the pieces is |123| represented as a two digit |8D4| integer ij where i is the |765| # of the side ( 1 to 6 for +---+ F to B (see table above )) |567| and j is the # of the piece. |4B8| |321| +---+\\end{verbatim}")) (|janko2| (((|PermutationGroup| (|Integer|))) "\\spad{janko2 constructs} the janko group acting on the integers 1,{}...,{}100.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{janko2(\\spad{li})} constructs the janko group acting on the 100 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. Error: if {\\em \\spad{li}} has less or more than 100 different entries")) (|mathieu24| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu24 constructs} the mathieu group acting on the integers 1,{}...,{}24.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu24(\\spad{li})} constructs the mathieu group acting on the 24 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. Error: if {\\em \\spad{li}} has less or more than 24 different entries.")) (|mathieu23| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu23 constructs} the mathieu group acting on the integers 1,{}...,{}23.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu23(\\spad{li})} constructs the mathieu group acting on the 23 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. Error: if {\\em \\spad{li}} has less or more than 23 different entries.")) (|mathieu22| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu22 constructs} the mathieu group acting on the integers 1,{}...,{}22.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu22(\\spad{li})} constructs the mathieu group acting on the 22 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. Error: if {\\em \\spad{li}} has less or more than 22 different entries.")) (|mathieu12| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu12 constructs} the mathieu group acting on the integers 1,{}...,{}12.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu12(\\spad{li})} constructs the mathieu group acting on the 12 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed Error: if {\\em \\spad{li}} has less or more than 12 different entries.")) (|mathieu11| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu11 constructs} the mathieu group acting on the integers 1,{}...,{}11.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu11(\\spad{li})} constructs the mathieu group acting on the 11 integers given in the list {\\em \\spad{li}}. Note: duplicates in the list will be removed. error,{} if {\\em \\spad{li}} has less or more than 11 different entries.")) (|dihedralGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{dihedralGroup([i1,{}...,{}ik])} constructs the dihedral group of order 2k acting on the integers out of {\\em i1},{}...,{}{\\em ik}. Note: duplicates in the list will be removed.") (((|PermutationGroup| (|Integer|)) (|PositiveInteger|)) "\\spad{dihedralGroup(n)} constructs the dihedral group of order 2n acting on integers 1,{}...,{}\\spad{N}.")) (|cyclicGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{cyclicGroup([i1,{}...,{}ik])} constructs the cyclic group of order \\spad{k} acting on the integers {\\em i1},{}...,{}{\\em ik}. Note: duplicates in the list will be removed.") (((|PermutationGroup| (|Integer|)) (|PositiveInteger|)) "\\spad{cyclicGroup(n)} constructs the cyclic group of order \\spad{n} acting on the integers 1,{}...,{}\\spad{n}.")) (|abelianGroup| (((|PermutationGroup| (|Integer|)) (|List| (|PositiveInteger|))) "\\spad{abelianGroup([n1,{}...,{}nk])} constructs the abelian group that is the direct product of cyclic groups with order {\\em \\spad{ni}}.")) (|alternatingGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{alternatingGroup(\\spad{li})} constructs the alternating group acting on the integers in the list {\\em \\spad{li}},{} generators are in general the {\\em n-2}-cycle {\\em (\\spad{li}.3,{}...,{}\\spad{li}.n)} and the 3-cycle {\\em (\\spad{li}.1,{}\\spad{li}.2,{}\\spad{li}.3)},{} if \\spad{n} is odd and product of the 2-cycle {\\em (\\spad{li}.1,{}\\spad{li}.2)} with {\\em n-2}-cycle {\\em (\\spad{li}.3,{}...,{}\\spad{li}.n)} and the 3-cycle {\\em (\\spad{li}.1,{}\\spad{li}.2,{}\\spad{li}.3)},{} if \\spad{n} is even. Note: duplicates in the list will be removed.") (((|PermutationGroup| (|Integer|)) (|PositiveInteger|)) "\\spad{alternatingGroup(n)} constructs the alternating group {\\em An} acting on the integers 1,{}...,{}\\spad{n},{} generators are in general the {\\em n-2}-cycle {\\em (3,{}...,{}n)} and the 3-cycle {\\em (1,{}2,{}3)} if \\spad{n} is odd and the product of the 2-cycle {\\em (1,{}2)} with {\\em n-2}-cycle {\\em (3,{}...,{}n)} and the 3-cycle {\\em (1,{}2,{}3)} if \\spad{n} is even.")) (|symmetricGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{symmetricGroup(\\spad{li})} constructs the symmetric group acting on the integers in the list {\\em \\spad{li}},{} generators are the cycle given by {\\em \\spad{li}} and the 2-cycle {\\em (\\spad{li}.1,{}\\spad{li}.2)}. Note: duplicates in the list will be removed.") (((|PermutationGroup| (|Integer|)) (|PositiveInteger|)) "\\spad{symmetricGroup(n)} constructs the symmetric group {\\em Sn} acting on the integers 1,{}...,{}\\spad{n},{} generators are the {\\em n}-cycle {\\em (1,{}...,{}n)} and the 2-cycle {\\em (1,{}2)}.")))
NIL
NIL
-(-913 -3197)
+(-913 -3196)
((|constructor| (NIL "Groebner functions for \\spad{P} \\spad{F} \\indented{2}{This package is an interface package to the groebner basis} package which allows you to compute groebner bases for polynomials in either lexicographic ordering or total degree ordering refined by reverse lex. The input is the ordinary polynomial type which is internally converted to a type with the required ordering. The resulting grobner basis is converted back to ordinary polynomials. The ordering among the variables is controlled by an explicit list of variables which is passed as a second argument. The coefficient domain is allowed to be any \\spad{gcd} domain,{} but the groebner basis is computed as if the polynomials were over a field.")) (|totalGroebner| (((|List| (|Polynomial| |#1|)) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|))) "\\spad{totalGroebner(lp,{}lv)} computes Groebner basis for the list of polynomials \\spad{lp} with the terms ordered first by total degree and then refined by reverse lexicographic ordering. The variables are ordered by their position in the list \\spad{lv}.")) (|lexGroebner| (((|List| (|Polynomial| |#1|)) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|))) "\\spad{lexGroebner(lp,{}lv)} computes Groebner basis for the list of polynomials \\spad{lp} in lexicographic order. The variables are ordered by their position in the list \\spad{lv}.")))
NIL
NIL
@@ -3590,17 +3590,17 @@ NIL
NIL
(-915)
((|constructor| (NIL "The category of constructive principal ideal domains,{} \\spadignore{i.e.} where a single generator can be constructively found for any ideal given by a finite set of generators. Note that this constructive definition only implies that finitely generated ideals are principal. It is not clear what we would mean by an infinitely generated ideal.")) (|expressIdealMember| (((|Union| (|List| $) "failed") (|List| $) $) "\\spad{expressIdealMember([f1,{}...,{}fn],{}h)} returns a representation of \\spad{h} as a linear combination of the \\spad{fi} or \"failed\" if \\spad{h} is not in the ideal generated by the \\spad{fi}.")) (|principalIdeal| (((|Record| (|:| |coef| (|List| $)) (|:| |generator| $)) (|List| $)) "\\spad{principalIdeal([f1,{}...,{}fn])} returns a record whose generator component is a generator of the ideal generated by \\spad{[f1,{}...,{}fn]} whose coef component satisfies \\spad{generator = sum (input.i * coef.i)}")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-916)
((|constructor| (NIL "\\spadtype{PositiveInteger} provides functions for \\indented{2}{positive integers.}")) (|commutative| ((|attribute| "*") "\\spad{commutative(\"*\")} means multiplication is commutative : x*y = \\spad{y*x}")) (|gcd| (($ $ $) "\\spad{gcd(a,{}b)} computes the greatest common divisor of two positive integers \\spad{a} and \\spad{b}.")))
-(((-4404 "*") . T))
+(((-4405 "*") . T))
NIL
-(-917 -3197 P)
+(-917 -3196 P)
((|constructor| (NIL "This package exports interpolation algorithms")) (|LagrangeInterpolation| ((|#2| (|List| |#1|) (|List| |#1|)) "\\spad{LagrangeInterpolation(l1,{}l2)} \\undocumented")))
NIL
NIL
-(-918 |xx| -3197)
+(-918 |xx| -3196)
((|constructor| (NIL "This package exports interpolation algorithms")) (|interpolate| (((|SparseUnivariatePolynomial| |#2|) (|List| |#2|) (|List| |#2|)) "\\spad{interpolate(lf,{}lg)} \\undocumented") (((|UnivariatePolynomial| |#1| |#2|) (|UnivariatePolynomial| |#1| |#2|) (|List| |#2|) (|List| |#2|)) "\\spad{interpolate(u,{}lf,{}lg)} \\undocumented")))
NIL
NIL
@@ -3624,7 +3624,7 @@ NIL
((|constructor| (NIL "This package exports plotting tools")) (|calcRanges| (((|List| (|Segment| (|DoubleFloat|))) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{calcRanges(l)} \\undocumented")))
NIL
NIL
-(-924 R -3197)
+(-924 R -3196)
((|constructor| (NIL "Attaching assertions to symbols for pattern matching; Date Created: 21 Mar 1989 Date Last Updated: 23 May 1990")) (|multiple| ((|#2| |#2|) "\\spad{multiple(x)} tells the pattern matcher that \\spad{x} should preferably match a multi-term quantity in a sum or product. For matching on lists,{} multiple(\\spad{x}) tells the pattern matcher that \\spad{x} should match a list instead of an element of a list. Error: if \\spad{x} is not a symbol.")) (|optional| ((|#2| |#2|) "\\spad{optional(x)} tells the pattern matcher that \\spad{x} can match an identity (0 in a sum,{} 1 in a product or exponentiation). Error: if \\spad{x} is not a symbol.")) (|constant| ((|#2| |#2|) "\\spad{constant(x)} tells the pattern matcher that \\spad{x} should match only the symbol \\spad{'x} and no other quantity. Error: if \\spad{x} is not a symbol.")) (|assert| ((|#2| |#2| (|String|)) "\\spad{assert(x,{} s)} makes the assertion \\spad{s} about \\spad{x}. Error: if \\spad{x} is not a symbol.")))
NIL
NIL
@@ -3636,7 +3636,7 @@ NIL
((|constructor| (NIL "This packages provides tools for matching recursively in type towers.")) (|patternMatch| (((|PatternMatchResult| |#1| |#3|) |#2| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#3|)) "\\spad{patternMatch(expr,{} pat,{} res)} matches the pattern \\spad{pat} to the expression \\spad{expr}; res contains the variables of \\spad{pat} which are already matched and their matches. Note: this function handles type towers by changing the predicates and calling the matching function provided by \\spad{A}.")) (|fixPredicate| (((|Mapping| (|Boolean|) |#2|) (|Mapping| (|Boolean|) |#3|)) "\\spad{fixPredicate(f)} returns \\spad{g} defined by \\spad{g}(a) = \\spad{f}(a::B).")))
NIL
NIL
-(-927 S R -3197)
+(-927 S R -3196)
((|constructor| (NIL "This package provides pattern matching functions on function spaces.")) (|patternMatch| (((|PatternMatchResult| |#1| |#3|) |#3| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#3|)) "\\spad{patternMatch(expr,{} pat,{} res)} matches the pattern \\spad{pat} to the expression \\spad{expr}; res contains the variables of \\spad{pat} which are already matched and their matches.")))
NIL
NIL
@@ -3656,11 +3656,11 @@ NIL
((|constructor| (NIL "This package provides pattern matching functions on polynomials.")) (|patternMatch| (((|PatternMatchResult| |#1| |#5|) |#5| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#5|)) "\\spad{patternMatch(p,{} pat,{} res)} matches the pattern \\spad{pat} to the polynomial \\spad{p}; res contains the variables of \\spad{pat} which are already matched and their matches.") (((|PatternMatchResult| |#1| |#5|) |#5| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#5|) (|Mapping| (|PatternMatchResult| |#1| |#5|) |#3| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#5|))) "\\spad{patternMatch(p,{} pat,{} res,{} vmatch)} matches the pattern \\spad{pat} to the polynomial \\spad{p}. \\spad{res} contains the variables of \\spad{pat} which are already matched and their matches; vmatch is the matching function to use on the variables.")))
NIL
((|HasCategory| |#3| (LIST (QUOTE -881) (|devaluate| |#1|))))
-(-932 R -3197 -3114)
+(-932 R -3196 -3113)
((|constructor| (NIL "Attaching predicates to symbols for pattern matching. Date Created: 21 Mar 1989 Date Last Updated: 23 May 1990")) (|suchThat| ((|#2| |#2| (|List| (|Mapping| (|Boolean|) |#3|))) "\\spad{suchThat(x,{} [f1,{} f2,{} ...,{} fn])} attaches the predicate \\spad{f1} and \\spad{f2} and ... and \\spad{fn} to \\spad{x}. Error: if \\spad{x} is not a symbol.") ((|#2| |#2| (|Mapping| (|Boolean|) |#3|)) "\\spad{suchThat(x,{} foo)} attaches the predicate foo to \\spad{x}; error if \\spad{x} is not a symbol.")))
NIL
NIL
-(-933 -3114)
+(-933 -3113)
((|constructor| (NIL "Attaching predicates to symbols for pattern matching. Date Created: 21 Mar 1989 Date Last Updated: 23 May 1990")) (|suchThat| (((|Expression| (|Integer|)) (|Symbol|) (|List| (|Mapping| (|Boolean|) |#1|))) "\\spad{suchThat(x,{} [f1,{} f2,{} ...,{} fn])} attaches the predicate \\spad{f1} and \\spad{f2} and ... and \\spad{fn} to \\spad{x}.") (((|Expression| (|Integer|)) (|Symbol|) (|Mapping| (|Boolean|) |#1|)) "\\spad{suchThat(x,{} foo)} attaches the predicate foo to \\spad{x}.")))
NIL
NIL
@@ -3682,7 +3682,7 @@ NIL
NIL
(-938 R)
((|constructor| (NIL "This domain implements points in coordinate space")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-721))) (|HasCategory| |#1| (QUOTE (-1044))) (-12 (|HasCategory| |#1| (QUOTE (-997))) (|HasCategory| |#1| (QUOTE (-1044)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
(-939 |lv| R)
((|constructor| (NIL "Package with the conversion functions among different kind of polynomials")) (|pToDmp| (((|DistributedMultivariatePolynomial| |#1| |#2|) (|Polynomial| |#2|)) "\\spad{pToDmp(p)} converts \\spad{p} from a \\spadtype{POLY} to a \\spadtype{DMP}.")) (|dmpToP| (((|Polynomial| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{dmpToP(p)} converts \\spad{p} from a \\spadtype{DMP} to a \\spadtype{POLY}.")) (|hdmpToP| (((|Polynomial| |#2|) (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{hdmpToP(p)} converts \\spad{p} from a \\spadtype{HDMP} to a \\spadtype{POLY}.")) (|pToHdmp| (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|Polynomial| |#2|)) "\\spad{pToHdmp(p)} converts \\spad{p} from a \\spadtype{POLY} to a \\spadtype{HDMP}.")) (|hdmpToDmp| (((|DistributedMultivariatePolynomial| |#1| |#2|) (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{hdmpToDmp(p)} converts \\spad{p} from a \\spadtype{HDMP} to a \\spadtype{DMP}.")) (|dmpToHdmp| (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{dmpToHdmp(p)} converts \\spad{p} from a \\spadtype{DMP} to a \\spadtype{HDMP}.")))
@@ -3703,12 +3703,12 @@ NIL
(-943 S R E |VarSet|)
((|constructor| (NIL "The category for general multi-variate polynomials over a ring \\spad{R},{} in variables from VarSet,{} with exponents from the \\spadtype{OrderedAbelianMonoidSup}.")) (|canonicalUnitNormal| ((|attribute|) "we can choose a unique representative for each associate class. This normalization is chosen to be normalization of leading coefficient (by default).")) (|squareFreePart| (($ $) "\\spad{squareFreePart(p)} returns product of all the irreducible factors of polynomial \\spad{p} each taken with multiplicity one.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(p)} returns the square free factorization of the polynomial \\spad{p}.")) (|primitivePart| (($ $ |#4|) "\\spad{primitivePart(p,{}v)} returns the unitCanonical associate of the polynomial \\spad{p} with its content with respect to the variable \\spad{v} divided out.") (($ $) "\\spad{primitivePart(p)} returns the unitCanonical associate of the polynomial \\spad{p} with its content divided out.")) (|content| (($ $ |#4|) "\\spad{content(p,{}v)} is the \\spad{gcd} of the coefficients of the polynomial \\spad{p} when \\spad{p} is viewed as a univariate polynomial with respect to the variable \\spad{v}. Thus,{} for polynomial 7*x**2*y + 14*x*y**2,{} the \\spad{gcd} of the coefficients with respect to \\spad{x} is 7*y.")) (|discriminant| (($ $ |#4|) "\\spad{discriminant(p,{}v)} returns the disriminant of the polynomial \\spad{p} with respect to the variable \\spad{v}.")) (|resultant| (($ $ $ |#4|) "\\spad{resultant(p,{}q,{}v)} returns the resultant of the polynomials \\spad{p} and \\spad{q} with respect to the variable \\spad{v}.")) (|primitiveMonomials| (((|List| $) $) "\\spad{primitiveMonomials(p)} gives the list of monomials of the polynomial \\spad{p} with their coefficients removed. Note: \\spad{primitiveMonomials(sum(a_(i) X^(i))) = [X^(1),{}...,{}X^(n)]}.")) (|variables| (((|List| |#4|) $) "\\spad{variables(p)} returns the list of those variables actually appearing in the polynomial \\spad{p}.")) (|totalDegree| (((|NonNegativeInteger|) $ (|List| |#4|)) "\\spad{totalDegree(p,{} lv)} returns the maximum sum (over all monomials of polynomial \\spad{p}) of the variables in the list \\spad{lv}.") (((|NonNegativeInteger|) $) "\\spad{totalDegree(p)} returns the largest sum over all monomials of all exponents of a monomial.")) (|isExpt| (((|Union| (|Record| (|:| |var| |#4|) (|:| |exponent| (|NonNegativeInteger|))) "failed") $) "\\spad{isExpt(p)} returns \\spad{[x,{} n]} if polynomial \\spad{p} has the form \\spad{x**n} and \\spad{n > 0}.")) (|isTimes| (((|Union| (|List| $) "failed") $) "\\spad{isTimes(p)} returns \\spad{[a1,{}...,{}an]} if polynomial \\spad{p = a1 ... an} and \\spad{n >= 2},{} and,{} for each \\spad{i},{} \\spad{ai} is either a nontrivial constant in \\spad{R} or else of the form \\spad{x**e},{} where \\spad{e > 0} is an integer and \\spad{x} in a member of VarSet.")) (|isPlus| (((|Union| (|List| $) "failed") $) "\\spad{isPlus(p)} returns \\spad{[m1,{}...,{}mn]} if polynomial \\spad{p = m1 + ... + mn} and \\spad{n >= 2} and each \\spad{mi} is a nonzero monomial.")) (|multivariate| (($ (|SparseUnivariatePolynomial| $) |#4|) "\\spad{multivariate(sup,{}v)} converts an anonymous univariable polynomial \\spad{sup} to a polynomial in the variable \\spad{v}.") (($ (|SparseUnivariatePolynomial| |#2|) |#4|) "\\spad{multivariate(sup,{}v)} converts an anonymous univariable polynomial \\spad{sup} to a polynomial in the variable \\spad{v}.")) (|monomial| (($ $ (|List| |#4|) (|List| (|NonNegativeInteger|))) "\\spad{monomial(a,{}[v1..vn],{}[e1..en])} returns \\spad{a*prod(vi**ei)}.") (($ $ |#4| (|NonNegativeInteger|)) "\\spad{monomial(a,{}x,{}n)} creates the monomial \\spad{a*x**n} where \\spad{a} is a polynomial,{} \\spad{x} is a variable and \\spad{n} is a nonnegative integer.")) (|monicDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $ |#4|) "\\spad{monicDivide(a,{}b,{}v)} divides the polynomial a by the polynomial \\spad{b},{} with each viewed as a univariate polynomial in \\spad{v} returning both the quotient and remainder. Error: if \\spad{b} is not monic with respect to \\spad{v}.")) (|minimumDegree| (((|List| (|NonNegativeInteger|)) $ (|List| |#4|)) "\\spad{minimumDegree(p,{} lv)} gives the list of minimum degrees of the polynomial \\spad{p} with respect to each of the variables in the list \\spad{lv}") (((|NonNegativeInteger|) $ |#4|) "\\spad{minimumDegree(p,{}v)} gives the minimum degree of polynomial \\spad{p} with respect to \\spad{v},{} \\spadignore{i.e.} viewed a univariate polynomial in \\spad{v}")) (|mainVariable| (((|Union| |#4| "failed") $) "\\spad{mainVariable(p)} returns the biggest variable which actually occurs in the polynomial \\spad{p},{} or \"failed\" if no variables are present. fails precisely if polynomial satisfies ground?")) (|univariate| (((|SparseUnivariatePolynomial| |#2|) $) "\\spad{univariate(p)} converts the multivariate polynomial \\spad{p},{} which should actually involve only one variable,{} into a univariate polynomial in that variable,{} whose coefficients are in the ground ring. Error: if polynomial is genuinely multivariate") (((|SparseUnivariatePolynomial| $) $ |#4|) "\\spad{univariate(p,{}v)} converts the multivariate polynomial \\spad{p} into a univariate polynomial in \\spad{v},{} whose coefficients are still multivariate polynomials (in all the other variables).")) (|monomials| (((|List| $) $) "\\spad{monomials(p)} returns the list of non-zero monomials of polynomial \\spad{p},{} \\spadignore{i.e.} \\spad{monomials(sum(a_(i) X^(i))) = [a_(1) X^(1),{}...,{}a_(n) X^(n)]}.")) (|coefficient| (($ $ (|List| |#4|) (|List| (|NonNegativeInteger|))) "\\spad{coefficient(p,{} lv,{} ln)} views the polynomial \\spad{p} as a polynomial in the variables of \\spad{lv} and returns the coefficient of the term \\spad{lv**ln},{} \\spadignore{i.e.} \\spad{prod(lv_i ** ln_i)}.") (($ $ |#4| (|NonNegativeInteger|)) "\\spad{coefficient(p,{}v,{}n)} views the polynomial \\spad{p} as a univariate polynomial in \\spad{v} and returns the coefficient of the \\spad{v**n} term.")) (|degree| (((|List| (|NonNegativeInteger|)) $ (|List| |#4|)) "\\spad{degree(p,{}lv)} gives the list of degrees of polynomial \\spad{p} with respect to each of the variables in the list \\spad{lv}.") (((|NonNegativeInteger|) $ |#4|) "\\spad{degree(p,{}v)} gives the degree of polynomial \\spad{p} with respect to the variable \\spad{v}.")))
NIL
-((|HasCategory| |#2| (QUOTE (-904))) (|HasAttribute| |#2| (QUOTE -4400)) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#4| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#4| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#4| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#4| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (QUOTE (-845))))
+((|HasCategory| |#2| (QUOTE (-904))) (|HasAttribute| |#2| (QUOTE -4401)) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#4| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#4| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#4| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#4| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (QUOTE (-845))))
(-944 R E |VarSet|)
((|constructor| (NIL "The category for general multi-variate polynomials over a ring \\spad{R},{} in variables from VarSet,{} with exponents from the \\spadtype{OrderedAbelianMonoidSup}.")) (|canonicalUnitNormal| ((|attribute|) "we can choose a unique representative for each associate class. This normalization is chosen to be normalization of leading coefficient (by default).")) (|squareFreePart| (($ $) "\\spad{squareFreePart(p)} returns product of all the irreducible factors of polynomial \\spad{p} each taken with multiplicity one.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(p)} returns the square free factorization of the polynomial \\spad{p}.")) (|primitivePart| (($ $ |#3|) "\\spad{primitivePart(p,{}v)} returns the unitCanonical associate of the polynomial \\spad{p} with its content with respect to the variable \\spad{v} divided out.") (($ $) "\\spad{primitivePart(p)} returns the unitCanonical associate of the polynomial \\spad{p} with its content divided out.")) (|content| (($ $ |#3|) "\\spad{content(p,{}v)} is the \\spad{gcd} of the coefficients of the polynomial \\spad{p} when \\spad{p} is viewed as a univariate polynomial with respect to the variable \\spad{v}. Thus,{} for polynomial 7*x**2*y + 14*x*y**2,{} the \\spad{gcd} of the coefficients with respect to \\spad{x} is 7*y.")) (|discriminant| (($ $ |#3|) "\\spad{discriminant(p,{}v)} returns the disriminant of the polynomial \\spad{p} with respect to the variable \\spad{v}.")) (|resultant| (($ $ $ |#3|) "\\spad{resultant(p,{}q,{}v)} returns the resultant of the polynomials \\spad{p} and \\spad{q} with respect to the variable \\spad{v}.")) (|primitiveMonomials| (((|List| $) $) "\\spad{primitiveMonomials(p)} gives the list of monomials of the polynomial \\spad{p} with their coefficients removed. Note: \\spad{primitiveMonomials(sum(a_(i) X^(i))) = [X^(1),{}...,{}X^(n)]}.")) (|variables| (((|List| |#3|) $) "\\spad{variables(p)} returns the list of those variables actually appearing in the polynomial \\spad{p}.")) (|totalDegree| (((|NonNegativeInteger|) $ (|List| |#3|)) "\\spad{totalDegree(p,{} lv)} returns the maximum sum (over all monomials of polynomial \\spad{p}) of the variables in the list \\spad{lv}.") (((|NonNegativeInteger|) $) "\\spad{totalDegree(p)} returns the largest sum over all monomials of all exponents of a monomial.")) (|isExpt| (((|Union| (|Record| (|:| |var| |#3|) (|:| |exponent| (|NonNegativeInteger|))) "failed") $) "\\spad{isExpt(p)} returns \\spad{[x,{} n]} if polynomial \\spad{p} has the form \\spad{x**n} and \\spad{n > 0}.")) (|isTimes| (((|Union| (|List| $) "failed") $) "\\spad{isTimes(p)} returns \\spad{[a1,{}...,{}an]} if polynomial \\spad{p = a1 ... an} and \\spad{n >= 2},{} and,{} for each \\spad{i},{} \\spad{ai} is either a nontrivial constant in \\spad{R} or else of the form \\spad{x**e},{} where \\spad{e > 0} is an integer and \\spad{x} in a member of VarSet.")) (|isPlus| (((|Union| (|List| $) "failed") $) "\\spad{isPlus(p)} returns \\spad{[m1,{}...,{}mn]} if polynomial \\spad{p = m1 + ... + mn} and \\spad{n >= 2} and each \\spad{mi} is a nonzero monomial.")) (|multivariate| (($ (|SparseUnivariatePolynomial| $) |#3|) "\\spad{multivariate(sup,{}v)} converts an anonymous univariable polynomial \\spad{sup} to a polynomial in the variable \\spad{v}.") (($ (|SparseUnivariatePolynomial| |#1|) |#3|) "\\spad{multivariate(sup,{}v)} converts an anonymous univariable polynomial \\spad{sup} to a polynomial in the variable \\spad{v}.")) (|monomial| (($ $ (|List| |#3|) (|List| (|NonNegativeInteger|))) "\\spad{monomial(a,{}[v1..vn],{}[e1..en])} returns \\spad{a*prod(vi**ei)}.") (($ $ |#3| (|NonNegativeInteger|)) "\\spad{monomial(a,{}x,{}n)} creates the monomial \\spad{a*x**n} where \\spad{a} is a polynomial,{} \\spad{x} is a variable and \\spad{n} is a nonnegative integer.")) (|monicDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $ |#3|) "\\spad{monicDivide(a,{}b,{}v)} divides the polynomial a by the polynomial \\spad{b},{} with each viewed as a univariate polynomial in \\spad{v} returning both the quotient and remainder. Error: if \\spad{b} is not monic with respect to \\spad{v}.")) (|minimumDegree| (((|List| (|NonNegativeInteger|)) $ (|List| |#3|)) "\\spad{minimumDegree(p,{} lv)} gives the list of minimum degrees of the polynomial \\spad{p} with respect to each of the variables in the list \\spad{lv}") (((|NonNegativeInteger|) $ |#3|) "\\spad{minimumDegree(p,{}v)} gives the minimum degree of polynomial \\spad{p} with respect to \\spad{v},{} \\spadignore{i.e.} viewed a univariate polynomial in \\spad{v}")) (|mainVariable| (((|Union| |#3| "failed") $) "\\spad{mainVariable(p)} returns the biggest variable which actually occurs in the polynomial \\spad{p},{} or \"failed\" if no variables are present. fails precisely if polynomial satisfies ground?")) (|univariate| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{univariate(p)} converts the multivariate polynomial \\spad{p},{} which should actually involve only one variable,{} into a univariate polynomial in that variable,{} whose coefficients are in the ground ring. Error: if polynomial is genuinely multivariate") (((|SparseUnivariatePolynomial| $) $ |#3|) "\\spad{univariate(p,{}v)} converts the multivariate polynomial \\spad{p} into a univariate polynomial in \\spad{v},{} whose coefficients are still multivariate polynomials (in all the other variables).")) (|monomials| (((|List| $) $) "\\spad{monomials(p)} returns the list of non-zero monomials of polynomial \\spad{p},{} \\spadignore{i.e.} \\spad{monomials(sum(a_(i) X^(i))) = [a_(1) X^(1),{}...,{}a_(n) X^(n)]}.")) (|coefficient| (($ $ (|List| |#3|) (|List| (|NonNegativeInteger|))) "\\spad{coefficient(p,{} lv,{} ln)} views the polynomial \\spad{p} as a polynomial in the variables of \\spad{lv} and returns the coefficient of the term \\spad{lv**ln},{} \\spadignore{i.e.} \\spad{prod(lv_i ** ln_i)}.") (($ $ |#3| (|NonNegativeInteger|)) "\\spad{coefficient(p,{}v,{}n)} views the polynomial \\spad{p} as a univariate polynomial in \\spad{v} and returns the coefficient of the \\spad{v**n} term.")) (|degree| (((|List| (|NonNegativeInteger|)) $ (|List| |#3|)) "\\spad{degree(p,{}lv)} gives the list of degrees of polynomial \\spad{p} with respect to each of the variables in the list \\spad{lv}.") (((|NonNegativeInteger|) $ |#3|) "\\spad{degree(p,{}v)} gives the degree of polynomial \\spad{p} with respect to the variable \\spad{v}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
NIL
-(-945 E V R P -3197)
+(-945 E V R P -3196)
((|constructor| (NIL "This package transforms multivariate polynomials or fractions into univariate polynomials or fractions,{} and back.")) (|isPower| (((|Union| (|Record| (|:| |val| |#5|) (|:| |exponent| (|Integer|))) "failed") |#5|) "\\spad{isPower(p)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0},{} \"failed\" otherwise.")) (|isExpt| (((|Union| (|Record| (|:| |var| |#2|) (|:| |exponent| (|Integer|))) "failed") |#5|) "\\spad{isExpt(p)} returns \\spad{[x,{} n]} if \\spad{p = x**n} and \\spad{n <> 0},{} \"failed\" otherwise.")) (|isTimes| (((|Union| (|List| |#5|) "failed") |#5|) "\\spad{isTimes(p)} returns \\spad{[a1,{}...,{}an]} if \\spad{p = a1 ... an} and \\spad{n > 1},{} \"failed\" otherwise.")) (|isPlus| (((|Union| (|List| |#5|) "failed") |#5|) "\\spad{isPlus(p)} returns [\\spad{m1},{}...,{}\\spad{mn}] if \\spad{p = m1 + ... + mn} and \\spad{n > 1},{} \"failed\" otherwise.")) (|multivariate| ((|#5| (|Fraction| (|SparseUnivariatePolynomial| |#5|)) |#2|) "\\spad{multivariate(f,{} v)} applies both the numerator and denominator of \\spad{f} to \\spad{v}.")) (|univariate| (((|SparseUnivariatePolynomial| |#5|) |#5| |#2| (|SparseUnivariatePolynomial| |#5|)) "\\spad{univariate(f,{} x,{} p)} returns \\spad{f} viewed as a univariate polynomial in \\spad{x},{} using the side-condition \\spad{p(x) = 0}.") (((|Fraction| (|SparseUnivariatePolynomial| |#5|)) |#5| |#2|) "\\spad{univariate(f,{} v)} returns \\spad{f} viewed as a univariate rational function in \\spad{v}.")) (|mainVariable| (((|Union| |#2| "failed") |#5|) "\\spad{mainVariable(f)} returns the highest variable appearing in the numerator or the denominator of \\spad{f},{} \"failed\" if \\spad{f} has no variables.")) (|variables| (((|List| |#2|) |#5|) "\\spad{variables(f)} returns the list of variables appearing in the numerator or the denominator of \\spad{f}.")))
NIL
NIL
@@ -3718,9 +3718,9 @@ NIL
NIL
(-947 R)
((|constructor| (NIL "\\indented{2}{This type is the basic representation of sparse recursive multivariate} polynomials whose variables are arbitrary symbols. The ordering is alphabetic determined by the Symbol type. The coefficient ring may be non commutative,{} but the variables are assumed to commute.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(p,{}x)} computes the integral of \\spad{p*dx},{} \\spadignore{i.e.} integrates the polynomial \\spad{p} with respect to the variable \\spad{x}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-904))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1168) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-1168) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-1168) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-1168) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-1168) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362))) (|HasAttribute| |#1| (QUOTE -4400)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
-(-948 E V R P -3197)
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-904))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1168) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-1168) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-1168) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-1168) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-1168) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362))) (|HasAttribute| |#1| (QUOTE -4401)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
+(-948 E V R P -3196)
((|constructor| (NIL "computes \\spad{n}-th roots of quotients of multivariate polynomials")) (|nthr| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#4|) (|:| |radicand| (|List| |#4|))) |#4| (|NonNegativeInteger|)) "\\spad{nthr(p,{}n)} should be local but conditional")) (|froot| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#5|) (|:| |radicand| |#5|)) |#5| (|NonNegativeInteger|)) "\\spad{froot(f,{} n)} returns \\spad{[m,{}c,{}r]} such that \\spad{f**(1/n) = c * r**(1/m)}.")) (|qroot| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#5|) (|:| |radicand| |#5|)) (|Fraction| (|Integer|)) (|NonNegativeInteger|)) "\\spad{qroot(f,{} n)} returns \\spad{[m,{}c,{}r]} such that \\spad{f**(1/n) = c * r**(1/m)}.")) (|rroot| (((|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |coef| |#5|) (|:| |radicand| |#5|)) |#3| (|NonNegativeInteger|)) "\\spad{rroot(f,{} n)} returns \\spad{[m,{}c,{}r]} such that \\spad{f**(1/n) = c * r**(1/m)}.")) (|denom| ((|#4| $) "\\spad{denom(x)} \\undocumented")) (|numer| ((|#4| $) "\\spad{numer(x)} \\undocumented")))
NIL
((|HasCategory| |#3| (QUOTE (-451))))
@@ -3742,13 +3742,13 @@ NIL
NIL
(-953 S)
((|constructor| (NIL "\\indented{1}{This provides a fast array type with no bound checking on elt\\spad{'s}.} Minimum index is 0 in this type,{} cannot be changed")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
(-954)
((|constructor| (NIL "Category for the functions defined by integrals.")) (|integral| (($ $ (|SegmentBinding| $)) "\\spad{integral(f,{} x = a..b)} returns the formal definite integral of \\spad{f} \\spad{dx} for \\spad{x} between \\spad{a} and \\spad{b}.") (($ $ (|Symbol|)) "\\spad{integral(f,{} x)} returns the formal integral of \\spad{f} \\spad{dx}.")))
NIL
NIL
-(-955 -3197)
+(-955 -3196)
((|constructor| (NIL "PrimitiveElement provides functions to compute primitive elements in algebraic extensions.")) (|primitiveElement| (((|Record| (|:| |coef| (|List| (|Integer|))) (|:| |poly| (|List| (|SparseUnivariatePolynomial| |#1|))) (|:| |prim| (|SparseUnivariatePolynomial| |#1|))) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|)) (|Symbol|)) "\\spad{primitiveElement([p1,{}...,{}pn],{} [a1,{}...,{}an],{} a)} returns \\spad{[[c1,{}...,{}cn],{} [q1,{}...,{}qn],{} q]} such that then \\spad{k(a1,{}...,{}an) = k(a)},{} where \\spad{a = a1 c1 + ... + an cn},{} \\spad{\\spad{ai} = \\spad{qi}(a)},{} and \\spad{q(a) = 0}. The \\spad{pi}\\spad{'s} are the defining polynomials for the \\spad{ai}\\spad{'s}. This operation uses the technique of \\spadglossSee{groebner bases}{Groebner basis}.") (((|Record| (|:| |coef| (|List| (|Integer|))) (|:| |poly| (|List| (|SparseUnivariatePolynomial| |#1|))) (|:| |prim| (|SparseUnivariatePolynomial| |#1|))) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|))) "\\spad{primitiveElement([p1,{}...,{}pn],{} [a1,{}...,{}an])} returns \\spad{[[c1,{}...,{}cn],{} [q1,{}...,{}qn],{} q]} such that then \\spad{k(a1,{}...,{}an) = k(a)},{} where \\spad{a = a1 c1 + ... + an cn},{} \\spad{\\spad{ai} = \\spad{qi}(a)},{} and \\spad{q(a) = 0}. The \\spad{pi}\\spad{'s} are the defining polynomials for the \\spad{ai}\\spad{'s}. This operation uses the technique of \\spadglossSee{groebner bases}{Groebner basis}.") (((|Record| (|:| |coef1| (|Integer|)) (|:| |coef2| (|Integer|)) (|:| |prim| (|SparseUnivariatePolynomial| |#1|))) (|Polynomial| |#1|) (|Symbol|) (|Polynomial| |#1|) (|Symbol|)) "\\spad{primitiveElement(p1,{} a1,{} p2,{} a2)} returns \\spad{[c1,{} c2,{} q]} such that \\spad{k(a1,{} a2) = k(a)} where \\spad{a = c1 a1 + c2 a2,{} and q(a) = 0}. The \\spad{pi}\\spad{'s} are the defining polynomials for the \\spad{ai}\\spad{'s}. The \\spad{p2} may involve \\spad{a1},{} but \\spad{p1} must not involve a2. This operation uses \\spadfun{resultant}.")))
NIL
NIL
@@ -3762,11 +3762,11 @@ NIL
NIL
(-958 R E)
((|constructor| (NIL "This domain represents generalized polynomials with coefficients (from a not necessarily commutative ring),{} and terms indexed by their exponents (from an arbitrary ordered abelian monoid). This type is used,{} for example,{} by the \\spadtype{DistributedMultivariatePolynomial} domain where the exponent domain is a direct product of non negative integers.")) (|canonicalUnitNormal| ((|attribute|) "canonicalUnitNormal guarantees that the function unitCanonical returns the same representative for all associates of any particular element.")) (|fmecg| (($ $ |#2| |#1| $) "\\spad{fmecg(p1,{}e,{}r,{}p2)} finds \\spad{X} : \\spad{p1} - \\spad{r} * X**e * \\spad{p2}")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-6 -4400)) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-130)))) (|HasAttribute| |#1| (QUOTE -4400)))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-6 -4401)) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-130)))) (|HasAttribute| |#1| (QUOTE -4401)))
(-959 A B)
((|constructor| (NIL "This domain implements cartesian product")) (|selectsecond| ((|#2| $) "\\spad{selectsecond(x)} \\undocumented")) (|selectfirst| ((|#1| $) "\\spad{selectfirst(x)} \\undocumented")) (|makeprod| (($ |#1| |#2|) "\\spad{makeprod(a,{}b)} \\undocumented")))
-((-4399 -12 (|has| |#2| (-472)) (|has| |#1| (-472))))
+((-4400 -12 (|has| |#2| (-472)) (|has| |#1| (-472))))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-788)))) (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-845))))) (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-788)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-788))))) (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-788))))) (-12 (|HasCategory| |#1| (QUOTE (-472))) (|HasCategory| |#2| (QUOTE (-472)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-472))) (|HasCategory| |#2| (QUOTE (-472)))) (-12 (|HasCategory| |#1| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-721))))) (-12 (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#2| (QUOTE (-367)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#1| (QUOTE (-472))) (|HasCategory| |#2| (QUOTE (-472)))) (-12 (|HasCategory| |#1| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-721)))) (-12 (|HasCategory| |#1| (QUOTE (-788))) (|HasCategory| |#2| (QUOTE (-788))))) (-12 (|HasCategory| |#1| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-721)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-130))) (|HasCategory| |#2| (QUOTE (-130)))) (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-845)))))
(-960)
((|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Created: October 24,{} 2007 Date Last Modified: January 18,{} 2008. An `Property' is a pair of name and value.")) (|property| (($ (|Symbol|) (|SExpression|)) "\\spad{property(n,{}val)} constructs a property with name \\spad{`n'} and value `val'.")) (|value| (((|SExpression|) $) "\\spad{value(p)} returns value of property \\spad{p}")) (|name| (((|Symbol|) $) "\\spad{name(p)} returns the name of property \\spad{p}")))
@@ -3782,7 +3782,7 @@ NIL
NIL
(-963 S)
((|constructor| (NIL "A priority queue is a bag of items from an ordered set where the item extracted is always the maximum element.")) (|merge!| (($ $ $) "\\spad{merge!(q,{}q1)} destructively changes priority queue \\spad{q} to include the values from priority queue \\spad{q1}.")) (|merge| (($ $ $) "\\spad{merge(q1,{}q2)} returns combines priority queues \\spad{q1} and \\spad{q2} to return a single priority queue \\spad{q}.")) (|max| ((|#1| $) "\\spad{max(q)} returns the maximum element of priority queue \\spad{q}.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
NIL
(-964 R |polR|)
((|constructor| (NIL "This package contains some functions: \\axiomOpFrom{discriminant}{PseudoRemainderSequence},{} \\axiomOpFrom{resultant}{PseudoRemainderSequence},{} \\axiomOpFrom{subResultantGcd}{PseudoRemainderSequence},{} \\axiomOpFrom{chainSubResultants}{PseudoRemainderSequence},{} \\axiomOpFrom{degreeSubResultant}{PseudoRemainderSequence},{} \\axiomOpFrom{lastSubResultant}{PseudoRemainderSequence},{} \\axiomOpFrom{resultantEuclidean}{PseudoRemainderSequence},{} \\axiomOpFrom{subResultantGcdEuclidean}{PseudoRemainderSequence},{} \\axiomOpFrom{semiSubResultantGcdEuclidean1}{PseudoRemainderSequence},{} \\axiomOpFrom{semiSubResultantGcdEuclidean2}{PseudoRemainderSequence},{} etc. This procedures are coming from improvements of the subresultants algorithm. \\indented{2}{Version : 7} \\indented{2}{References : Lionel Ducos \"Optimizations of the subresultant algorithm\"} \\indented{2}{to appear in the Journal of Pure and Applied Algebra.} \\indented{2}{Author : Ducos Lionel \\axiom{Lionel.Ducos@mathlabo.univ-poitiers.\\spad{fr}}}")) (|semiResultantEuclideannaif| (((|Record| (|:| |coef2| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{resultantEuclidean_naif(\\spad{P},{}\\spad{Q})} returns the semi-extended resultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}} computed by means of the naive algorithm.")) (|resultantEuclideannaif| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{resultantEuclidean_naif(\\spad{P},{}\\spad{Q})} returns the extended resultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}} computed by means of the naive algorithm.")) (|resultantnaif| ((|#1| |#2| |#2|) "\\axiom{resultantEuclidean_naif(\\spad{P},{}\\spad{Q})} returns the resultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}} computed by means of the naive algorithm.")) (|nextsousResultant2| ((|#2| |#2| |#2| |#2| |#1|) "\\axiom{nextsousResultant2(\\spad{P},{} \\spad{Q},{} \\spad{Z},{} \\spad{s})} returns the subresultant \\axiom{\\spad{S_}{\\spad{e}-1}} where \\axiom{\\spad{P} ~ \\spad{S_d},{} \\spad{Q} = \\spad{S_}{\\spad{d}-1},{} \\spad{Z} = S_e,{} \\spad{s} = \\spad{lc}(\\spad{S_d})}")) (|Lazard2| ((|#2| |#2| |#1| |#1| (|NonNegativeInteger|)) "\\axiom{Lazard2(\\spad{F},{} \\spad{x},{} \\spad{y},{} \\spad{n})} computes \\axiom{(x/y)\\spad{**}(\\spad{n}-1) * \\spad{F}}")) (|Lazard| ((|#1| |#1| |#1| (|NonNegativeInteger|)) "\\axiom{Lazard(\\spad{x},{} \\spad{y},{} \\spad{n})} computes \\axiom{x**n/y**(\\spad{n}-1)}")) (|divide| (((|Record| (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2|) "\\axiom{divide(\\spad{F},{}\\spad{G})} computes quotient and rest of the exact euclidean division of \\axiom{\\spad{F}} by \\axiom{\\spad{G}}.")) (|pseudoDivide| (((|Record| (|:| |coef| |#1|) (|:| |quotient| |#2|) (|:| |remainder| |#2|)) |#2| |#2|) "\\axiom{pseudoDivide(\\spad{P},{}\\spad{Q})} computes the pseudoDivide of \\axiom{\\spad{P}} by \\axiom{\\spad{Q}}.")) (|exquo| (((|Vector| |#2|) (|Vector| |#2|) |#1|) "\\axiom{\\spad{v} exquo \\spad{r}} computes the exact quotient of \\axiom{\\spad{v}} by \\axiom{\\spad{r}}")) (* (((|Vector| |#2|) |#1| (|Vector| |#2|)) "\\axiom{\\spad{r} * \\spad{v}} computes the product of \\axiom{\\spad{r}} and \\axiom{\\spad{v}}")) (|gcd| ((|#2| |#2| |#2|) "\\axiom{\\spad{gcd}(\\spad{P},{} \\spad{Q})} returns the \\spad{gcd} of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|semiResultantReduitEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |resultantReduit| |#1|)) |#2| |#2|) "\\axiom{semiResultantReduitEuclidean(\\spad{P},{}\\spad{Q})} returns the \"reduce resultant\" and carries out the equality \\axiom{...\\spad{P} + coef2*Q = resultantReduit(\\spad{P},{}\\spad{Q})}.")) (|resultantReduitEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |resultantReduit| |#1|)) |#2| |#2|) "\\axiom{resultantReduitEuclidean(\\spad{P},{}\\spad{Q})} returns the \"reduce resultant\" and carries out the equality \\axiom{coef1*P + coef2*Q = resultantReduit(\\spad{P},{}\\spad{Q})}.")) (|resultantReduit| ((|#1| |#2| |#2|) "\\axiom{resultantReduit(\\spad{P},{}\\spad{Q})} returns the \"reduce resultant\" of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|schema| (((|List| (|NonNegativeInteger|)) |#2| |#2|) "\\axiom{schema(\\spad{P},{}\\spad{Q})} returns the list of degrees of non zero subresultants of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|chainSubResultants| (((|List| |#2|) |#2| |#2|) "\\axiom{chainSubResultants(\\spad{P},{} \\spad{Q})} computes the list of non zero subresultants of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|semiDiscriminantEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |discriminant| |#1|)) |#2|) "\\axiom{discriminantEuclidean(\\spad{P})} carries out the equality \\axiom{...\\spad{P} + coef2 * \\spad{D}(\\spad{P}) = discriminant(\\spad{P})}. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|discriminantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |discriminant| |#1|)) |#2|) "\\axiom{discriminantEuclidean(\\spad{P})} carries out the equality \\axiom{coef1 * \\spad{P} + coef2 * \\spad{D}(\\spad{P}) = discriminant(\\spad{P})}.")) (|discriminant| ((|#1| |#2|) "\\axiom{discriminant(\\spad{P},{} \\spad{Q})} returns the discriminant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|semiSubResultantGcdEuclidean1| (((|Record| (|:| |coef1| |#2|) (|:| |gcd| |#2|)) |#2| |#2|) "\\axiom{semiSubResultantGcdEuclidean1(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{coef1*P + ? \\spad{Q} = \\spad{+/-} S_i(\\spad{P},{}\\spad{Q})} where the degree (not the indice) of the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} is the smaller as possible.")) (|semiSubResultantGcdEuclidean2| (((|Record| (|:| |coef2| |#2|) (|:| |gcd| |#2|)) |#2| |#2|) "\\axiom{semiSubResultantGcdEuclidean2(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{...\\spad{P} + coef2*Q = \\spad{+/-} S_i(\\spad{P},{}\\spad{Q})} where the degree (not the indice) of the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} is the smaller as possible. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|subResultantGcdEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |gcd| |#2|)) |#2| |#2|) "\\axiom{subResultantGcdEuclidean(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{coef1*P + coef2*Q = \\spad{+/-} S_i(\\spad{P},{}\\spad{Q})} where the degree (not the indice) of the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} is the smaller as possible.")) (|subResultantGcd| ((|#2| |#2| |#2|) "\\axiom{subResultantGcd(\\spad{P},{} \\spad{Q})} returns the \\spad{gcd} of two primitive polynomials \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}.")) (|semiLastSubResultantEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) "\\axiom{semiLastSubResultantEuclidean(\\spad{P},{} \\spad{Q})} computes the last non zero subresultant \\axiom{\\spad{S}} and carries out the equality \\axiom{...\\spad{P} + coef2*Q = \\spad{S}}. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|lastSubResultantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) "\\axiom{lastSubResultantEuclidean(\\spad{P},{} \\spad{Q})} computes the last non zero subresultant \\axiom{\\spad{S}} and carries out the equality \\axiom{coef1*P + coef2*Q = \\spad{S}}.")) (|lastSubResultant| ((|#2| |#2| |#2|) "\\axiom{lastSubResultant(\\spad{P},{} \\spad{Q})} computes the last non zero subresultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}")) (|semiDegreeSubResultantEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (|NonNegativeInteger|)) "\\axiom{indiceSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns a subresultant \\axiom{\\spad{S}} of degree \\axiom{\\spad{d}} and carries out the equality \\axiom{...\\spad{P} + coef2*Q = S_i}. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|degreeSubResultantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (|NonNegativeInteger|)) "\\axiom{indiceSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns a subresultant \\axiom{\\spad{S}} of degree \\axiom{\\spad{d}} and carries out the equality \\axiom{coef1*P + coef2*Q = S_i}.")) (|degreeSubResultant| ((|#2| |#2| |#2| (|NonNegativeInteger|)) "\\axiom{degreeSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{d})} computes a subresultant of degree \\axiom{\\spad{d}}.")) (|semiIndiceSubResultantEuclidean| (((|Record| (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (|NonNegativeInteger|)) "\\axiom{semiIndiceSubResultantEuclidean(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} and carries out the equality \\axiom{...\\spad{P} + coef2*Q = S_i(\\spad{P},{}\\spad{Q})} Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|indiceSubResultantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (|NonNegativeInteger|)) "\\axiom{indiceSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns the subresultant \\axiom{S_i(\\spad{P},{}\\spad{Q})} and carries out the equality \\axiom{coef1*P + coef2*Q = S_i(\\spad{P},{}\\spad{Q})}")) (|indiceSubResultant| ((|#2| |#2| |#2| (|NonNegativeInteger|)) "\\axiom{indiceSubResultant(\\spad{P},{} \\spad{Q},{} \\spad{i})} returns the subresultant of indice \\axiom{\\spad{i}}")) (|semiResultantEuclidean1| (((|Record| (|:| |coef1| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{semiResultantEuclidean1(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{coef1.\\spad{P} + ? \\spad{Q} = resultant(\\spad{P},{}\\spad{Q})}.")) (|semiResultantEuclidean2| (((|Record| (|:| |coef2| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{semiResultantEuclidean2(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{...\\spad{P} + coef2*Q = resultant(\\spad{P},{}\\spad{Q})}. Warning: \\axiom{degree(\\spad{P}) \\spad{>=} degree(\\spad{Q})}.")) (|resultantEuclidean| (((|Record| (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |resultant| |#1|)) |#2| |#2|) "\\axiom{resultantEuclidean(\\spad{P},{}\\spad{Q})} carries out the equality \\axiom{coef1*P + coef2*Q = resultant(\\spad{P},{}\\spad{Q})}")) (|resultant| ((|#1| |#2| |#2|) "\\axiom{resultant(\\spad{P},{} \\spad{Q})} returns the resultant of \\axiom{\\spad{P}} and \\axiom{\\spad{Q}}")))
@@ -3802,7 +3802,7 @@ NIL
NIL
(-968 |Coef| |Expon| |Var|)
((|constructor| (NIL "\\spadtype{PowerSeriesCategory} is the most general power series category with exponents in an ordered abelian monoid.")) (|complete| (($ $) "\\spad{complete(f)} causes all terms of \\spad{f} to be computed. Note: this results in an infinite loop if \\spad{f} has infinitely many terms.")) (|pole?| (((|Boolean|) $) "\\spad{pole?(f)} determines if the power series \\spad{f} has a pole.")) (|variables| (((|List| |#3|) $) "\\spad{variables(f)} returns a list of the variables occuring in the power series \\spad{f}.")) (|degree| ((|#2| $) "\\spad{degree(f)} returns the exponent of the lowest order term of \\spad{f}.")) (|leadingCoefficient| ((|#1| $) "\\spad{leadingCoefficient(f)} returns the coefficient of the lowest order term of \\spad{f}")) (|leadingMonomial| (($ $) "\\spad{leadingMonomial(f)} returns the monomial of \\spad{f} of lowest order.")) (|monomial| (($ $ (|List| |#3|) (|List| |#2|)) "\\spad{monomial(a,{}[x1,{}..,{}xk],{}[n1,{}..,{}nk])} computes \\spad{a * x1**n1 * .. * xk**nk}.") (($ $ |#3| |#2|) "\\spad{monomial(a,{}x,{}n)} computes \\spad{a*x**n}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-969)
((|constructor| (NIL "PlottableSpaceCurveCategory is the category of curves in 3-space which may be plotted via the graphics facilities. Functions are provided for obtaining lists of lists of points,{} representing the branches of the curve,{} and for determining the ranges of the \\spad{x-},{} \\spad{y-},{} and \\spad{z}-coordinates of the points on the curve.")) (|zRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{zRange(c)} returns the range of the \\spad{z}-coordinates of the points on the curve \\spad{c}.")) (|yRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{yRange(c)} returns the range of the \\spad{y}-coordinates of the points on the curve \\spad{c}.")) (|xRange| (((|Segment| (|DoubleFloat|)) $) "\\spad{xRange(c)} returns the range of the \\spad{x}-coordinates of the points on the curve \\spad{c}.")) (|listBranches| (((|List| (|List| (|Point| (|DoubleFloat|)))) $) "\\spad{listBranches(c)} returns a list of lists of points,{} representing the branches of the curve \\spad{c}.")))
@@ -3814,7 +3814,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-554))))
(-971 R E |VarSet| P)
((|constructor| (NIL "A category for finite subsets of a polynomial ring. Such a set is only regarded as a set of polynomials and not identified to the ideal it generates. So two distinct sets may generate the same the ideal. Furthermore,{} for \\spad{R} being an integral domain,{} a set of polynomials may be viewed as a representation of the ideal it generates in the polynomial ring \\spad{(R)^(-1) P},{} or the set of its zeros (described for instance by the radical of the previous ideal,{} or a split of the associated affine variety) and so on. So this category provides operations about those different notions.")) (|triangular?| (((|Boolean|) $) "\\axiom{triangular?(\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{ps}} is a triangular set,{} \\spadignore{i.e.} two distinct polynomials have distinct main variables and no constant lies in \\axiom{\\spad{ps}}.")) (|rewriteIdealWithRemainder| (((|List| |#4|) (|List| |#4|) $) "\\axiom{rewriteIdealWithRemainder(\\spad{lp},{}\\spad{cs})} returns \\axiom{\\spad{lr}} such that every polynomial in \\axiom{\\spad{lr}} is fully reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{cs}} and \\axiom{(\\spad{lp},{}\\spad{cs})} and \\axiom{(\\spad{lr},{}\\spad{cs})} generate the same ideal in \\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}}.")) (|rewriteIdealWithHeadRemainder| (((|List| |#4|) (|List| |#4|) $) "\\axiom{rewriteIdealWithHeadRemainder(\\spad{lp},{}\\spad{cs})} returns \\axiom{\\spad{lr}} such that the leading monomial of every polynomial in \\axiom{\\spad{lr}} is reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{cs}} and \\axiom{(\\spad{lp},{}\\spad{cs})} and \\axiom{(\\spad{lr},{}\\spad{cs})} generate the same ideal in \\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}}.")) (|remainder| (((|Record| (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) "\\axiom{remainder(a,{}\\spad{ps})} returns \\axiom{[\\spad{c},{}\\spad{b},{}\\spad{r}]} such that \\axiom{\\spad{b}} is fully reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ps}},{} \\axiom{r*a - \\spad{c*b}} lies in the ideal generated by \\axiom{\\spad{ps}}. Furthermore,{} if \\axiom{\\spad{R}} is a \\spad{gcd}-domain,{} \\axiom{\\spad{b}} is primitive.")) (|headRemainder| (((|Record| (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) "\\axiom{headRemainder(a,{}\\spad{ps})} returns \\axiom{[\\spad{b},{}\\spad{r}]} such that the leading monomial of \\axiom{\\spad{b}} is reduced in the sense of Groebner bases \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ps}} and \\axiom{r*a - \\spad{b}} lies in the ideal generated by \\axiom{\\spad{ps}}.")) (|roughUnitIdeal?| (((|Boolean|) $) "\\axiom{roughUnitIdeal?(\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{ps}} contains some non null element lying in the base ring \\axiom{\\spad{R}}.")) (|roughEqualIdeals?| (((|Boolean|) $ $) "\\axiom{roughEqualIdeals?(\\spad{ps1},{}\\spad{ps2})} returns \\spad{true} iff it can proved that \\axiom{\\spad{ps1}} and \\axiom{\\spad{ps2}} generate the same ideal in \\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}} without computing Groebner bases.")) (|roughSubIdeal?| (((|Boolean|) $ $) "\\axiom{roughSubIdeal?(\\spad{ps1},{}\\spad{ps2})} returns \\spad{true} iff it can proved that all polynomials in \\axiom{\\spad{ps1}} lie in the ideal generated by \\axiom{\\spad{ps2}} in \\axiom{\\axiom{(\\spad{R})^(\\spad{-1}) \\spad{P}}} without computing Groebner bases.")) (|roughBase?| (((|Boolean|) $) "\\axiom{roughBase?(\\spad{ps})} returns \\spad{true} iff for every pair \\axiom{{\\spad{p},{}\\spad{q}}} of polynomials in \\axiom{\\spad{ps}} their leading monomials are relatively prime.")) (|trivialIdeal?| (((|Boolean|) $) "\\axiom{trivialIdeal?(\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{ps}} does not contain non-zero elements.")) (|sort| (((|Record| (|:| |under| $) (|:| |floor| $) (|:| |upper| $)) $ |#3|) "\\axiom{sort(\\spad{v},{}\\spad{ps})} returns \\axiom{us,{}\\spad{vs},{}\\spad{ws}} such that \\axiom{us} is \\axiom{collectUnder(\\spad{ps},{}\\spad{v})},{} \\axiom{\\spad{vs}} is \\axiom{collect(\\spad{ps},{}\\spad{v})} and \\axiom{\\spad{ws}} is \\axiom{collectUpper(\\spad{ps},{}\\spad{v})}.")) (|collectUpper| (($ $ |#3|) "\\axiom{collectUpper(\\spad{ps},{}\\spad{v})} returns the set consisting of the polynomials of \\axiom{\\spad{ps}} with main variable greater than \\axiom{\\spad{v}}.")) (|collect| (($ $ |#3|) "\\axiom{collect(\\spad{ps},{}\\spad{v})} returns the set consisting of the polynomials of \\axiom{\\spad{ps}} with \\axiom{\\spad{v}} as main variable.")) (|collectUnder| (($ $ |#3|) "\\axiom{collectUnder(\\spad{ps},{}\\spad{v})} returns the set consisting of the polynomials of \\axiom{\\spad{ps}} with main variable less than \\axiom{\\spad{v}}.")) (|mainVariable?| (((|Boolean|) |#3| $) "\\axiom{mainVariable?(\\spad{v},{}\\spad{ps})} returns \\spad{true} iff \\axiom{\\spad{v}} is the main variable of some polynomial in \\axiom{\\spad{ps}}.")) (|mainVariables| (((|List| |#3|) $) "\\axiom{mainVariables(\\spad{ps})} returns the decreasingly sorted list of the variables which are main variables of some polynomial in \\axiom{\\spad{ps}}.")) (|variables| (((|List| |#3|) $) "\\axiom{variables(\\spad{ps})} returns the decreasingly sorted list of the variables which are variables of some polynomial in \\axiom{\\spad{ps}}.")) (|mvar| ((|#3| $) "\\axiom{mvar(\\spad{ps})} returns the main variable of the non constant polynomial with the greatest main variable,{} if any,{} else an error is returned.")) (|retract| (($ (|List| |#4|)) "\\axiom{retract(\\spad{lp})} returns an element of the domain whose elements are the members of \\axiom{\\spad{lp}} if such an element exists,{} otherwise an error is produced.")) (|retractIfCan| (((|Union| $ "failed") (|List| |#4|)) "\\axiom{retractIfCan(\\spad{lp})} returns an element of the domain whose elements are the members of \\axiom{\\spad{lp}} if such an element exists,{} otherwise \\axiom{\"failed\"} is returned.")))
-((-4402 . T))
+((-4403 . T))
NIL
(-972 R E V P)
((|constructor| (NIL "This package provides modest routines for polynomial system solving. The aim of many of the operations of this package is to remove certain factors in some polynomials in order to avoid unnecessary computations in algorithms involving splitting techniques by partial factorization.")) (|removeIrreducibleRedundantFactors| (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeIrreducibleRedundantFactors(\\spad{lp},{}\\spad{lq})} returns the same as \\axiom{irreducibleFactors(concat(\\spad{lp},{}\\spad{lq}))} assuming that \\axiom{irreducibleFactors(\\spad{lp})} returns \\axiom{\\spad{lp}} up to replacing some polynomial \\axiom{\\spad{pj}} in \\axiom{\\spad{lp}} by some polynomial \\axiom{\\spad{qj}} associated to \\axiom{\\spad{pj}}.")) (|lazyIrreducibleFactors| (((|List| |#4|) (|List| |#4|)) "\\axiom{lazyIrreducibleFactors(\\spad{lp})} returns \\axiom{\\spad{lf}} such that if \\axiom{\\spad{lp} = [\\spad{p1},{}...,{}\\spad{pn}]} and \\axiom{\\spad{lf} = [\\spad{f1},{}...,{}\\spad{fm}]} then \\axiom{p1*p2*...*pn=0} means \\axiom{f1*f2*...*fm=0},{} and the \\axiom{\\spad{fi}} are irreducible over \\axiom{\\spad{R}} and are pairwise distinct. The algorithm tries to avoid factorization into irreducible factors as far as possible and makes previously use of \\spad{gcd} techniques over \\axiom{\\spad{R}}.")) (|irreducibleFactors| (((|List| |#4|) (|List| |#4|)) "\\axiom{irreducibleFactors(\\spad{lp})} returns \\axiom{\\spad{lf}} such that if \\axiom{\\spad{lp} = [\\spad{p1},{}...,{}\\spad{pn}]} and \\axiom{\\spad{lf} = [\\spad{f1},{}...,{}\\spad{fm}]} then \\axiom{p1*p2*...*pn=0} means \\axiom{f1*f2*...*fm=0},{} and the \\axiom{\\spad{fi}} are irreducible over \\axiom{\\spad{R}} and are pairwise distinct.")) (|removeRedundantFactorsInPols| (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRedundantFactorsInPols(\\spad{lp},{}\\spad{lf})} returns \\axiom{newlp} where \\axiom{newlp} is obtained from \\axiom{\\spad{lp}} by removing in every polynomial \\axiom{\\spad{p}} of \\axiom{\\spad{lp}} any non trivial factor of any polynomial \\axiom{\\spad{f}} in \\axiom{\\spad{lf}}. Moreover,{} squares over \\axiom{\\spad{R}} are first removed in every polynomial \\axiom{\\spad{lp}}.")) (|removeRedundantFactorsInContents| (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRedundantFactorsInContents(\\spad{lp},{}\\spad{lf})} returns \\axiom{newlp} where \\axiom{newlp} is obtained from \\axiom{\\spad{lp}} by removing in the content of every polynomial of \\axiom{\\spad{lp}} any non trivial factor of any polynomial \\axiom{\\spad{f}} in \\axiom{\\spad{lf}}. Moreover,{} squares over \\axiom{\\spad{R}} are first removed in the content of every polynomial of \\axiom{\\spad{lp}}.")) (|removeRoughlyRedundantFactorsInContents| (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRoughlyRedundantFactorsInContents(\\spad{lp},{}\\spad{lf})} returns \\axiom{newlp}where \\axiom{newlp} is obtained from \\axiom{\\spad{lp}} by removing in the content of every polynomial of \\axiom{\\spad{lp}} any occurence of a polynomial \\axiom{\\spad{f}} in \\axiom{\\spad{lf}}. Moreover,{} squares over \\axiom{\\spad{R}} are first removed in the content of every polynomial of \\axiom{\\spad{lp}}.")) (|univariatePolynomialsGcds| (((|List| |#4|) (|List| |#4|) (|Boolean|)) "\\axiom{univariatePolynomialsGcds(\\spad{lp},{}opt)} returns the same as \\axiom{univariatePolynomialsGcds(\\spad{lp})} if \\axiom{opt} is \\axiom{\\spad{false}} and if the previous operation does not return any non null and constant polynomial,{} else return \\axiom{[1]}.") (((|List| |#4|) (|List| |#4|)) "\\axiom{univariatePolynomialsGcds(\\spad{lp})} returns \\axiom{\\spad{lg}} where \\axiom{\\spad{lg}} is a list of the gcds of every pair in \\axiom{\\spad{lp}} of univariate polynomials in the same main variable.")) (|squareFreeFactors| (((|List| |#4|) |#4|) "\\axiom{squareFreeFactors(\\spad{p})} returns the square-free factors of \\axiom{\\spad{p}} over \\axiom{\\spad{R}}")) (|rewriteIdealWithQuasiMonicGenerators| (((|List| |#4|) (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{rewriteIdealWithQuasiMonicGenerators(\\spad{lp},{}redOp?,{}redOp)} returns \\axiom{\\spad{lq}} where \\axiom{\\spad{lq}} and \\axiom{\\spad{lp}} generate the same ideal in \\axiom{\\spad{R^}(\\spad{-1}) \\spad{P}} and \\axiom{\\spad{lq}} has rank not higher than the one of \\axiom{\\spad{lp}}. Moreover,{} \\axiom{\\spad{lq}} is computed by reducing \\axiom{\\spad{lp}} \\spad{w}.\\spad{r}.\\spad{t}. some basic set of the ideal generated by the quasi-monic polynomials in \\axiom{\\spad{lp}}.")) (|rewriteSetByReducingWithParticularGenerators| (((|List| |#4|) (|List| |#4|) (|Mapping| (|Boolean|) |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{rewriteSetByReducingWithParticularGenerators(\\spad{lp},{}pred?,{}redOp?,{}redOp)} returns \\axiom{\\spad{lq}} where \\axiom{\\spad{lq}} is computed by the following algorithm. Chose a basic set \\spad{w}.\\spad{r}.\\spad{t}. the reduction-test \\axiom{redOp?} among the polynomials satisfying property \\axiom{pred?},{} if it is empty then leave,{} else reduce the other polynomials by this basic set \\spad{w}.\\spad{r}.\\spad{t}. the reduction-operation \\axiom{redOp}. Repeat while another basic set with smaller rank can be computed. See code. If \\axiom{pred?} is \\axiom{quasiMonic?} the ideal is unchanged.")) (|crushedSet| (((|List| |#4|) (|List| |#4|)) "\\axiom{crushedSet(\\spad{lp})} returns \\axiom{\\spad{lq}} such that \\axiom{\\spad{lp}} and and \\axiom{\\spad{lq}} generate the same ideal and no rough basic sets reduce (in the sense of Groebner bases) the other polynomials in \\axiom{\\spad{lq}}.")) (|roughBasicSet| (((|Union| (|Record| (|:| |bas| (|GeneralTriangularSet| |#1| |#2| |#3| |#4|)) (|:| |top| (|List| |#4|))) "failed") (|List| |#4|)) "\\axiom{roughBasicSet(\\spad{lp})} returns the smallest (with Ritt-Wu ordering) triangular set contained in \\axiom{\\spad{lp}}.")) (|interReduce| (((|List| |#4|) (|List| |#4|)) "\\axiom{interReduce(\\spad{lp})} returns \\axiom{\\spad{lq}} such that \\axiom{\\spad{lp}} and \\axiom{\\spad{lq}} generate the same ideal and no polynomial in \\axiom{\\spad{lq}} is reducuble by the others in the sense of Groebner bases. Since no assumptions are required the result may depend on the ordering the reductions are performed.")) (|removeRoughlyRedundantFactorsInPol| ((|#4| |#4| (|List| |#4|)) "\\axiom{removeRoughlyRedundantFactorsInPol(\\spad{p},{}\\spad{lf})} returns the same as removeRoughlyRedundantFactorsInPols([\\spad{p}],{}\\spad{lf},{}\\spad{true})")) (|removeRoughlyRedundantFactorsInPols| (((|List| |#4|) (|List| |#4|) (|List| |#4|) (|Boolean|)) "\\axiom{removeRoughlyRedundantFactorsInPols(\\spad{lp},{}\\spad{lf},{}opt)} returns the same as \\axiom{removeRoughlyRedundantFactorsInPols(\\spad{lp},{}\\spad{lf})} if \\axiom{opt} is \\axiom{\\spad{false}} and if the previous operation does not return any non null and constant polynomial,{} else return \\axiom{[1]}.") (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRoughlyRedundantFactorsInPols(\\spad{lp},{}\\spad{lf})} returns \\axiom{newlp}where \\axiom{newlp} is obtained from \\axiom{\\spad{lp}} by removing in every polynomial \\axiom{\\spad{p}} of \\axiom{\\spad{lp}} any occurence of a polynomial \\axiom{\\spad{f}} in \\axiom{\\spad{lf}}. This may involve a lot of exact-quotients computations.")) (|bivariatePolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| |#4|)) "\\axiom{bivariatePolynomials(\\spad{lp})} returns \\axiom{\\spad{bps},{}nbps} where \\axiom{\\spad{bps}} is a list of the bivariate polynomials,{} and \\axiom{nbps} are the other ones.")) (|bivariate?| (((|Boolean|) |#4|) "\\axiom{bivariate?(\\spad{p})} returns \\spad{true} iff \\axiom{\\spad{p}} involves two and only two variables.")) (|linearPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| |#4|)) "\\axiom{linearPolynomials(\\spad{lp})} returns \\axiom{\\spad{lps},{}nlps} where \\axiom{\\spad{lps}} is a list of the linear polynomials in \\spad{lp},{} and \\axiom{nlps} are the other ones.")) (|linear?| (((|Boolean|) |#4|) "\\axiom{linear?(\\spad{p})} returns \\spad{true} iff \\axiom{\\spad{p}} does not lie in the base ring \\axiom{\\spad{R}} and has main degree \\axiom{1}.")) (|univariatePolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| |#4|)) "\\axiom{univariatePolynomials(\\spad{lp})} returns \\axiom{ups,{}nups} where \\axiom{ups} is a list of the univariate polynomials,{} and \\axiom{nups} are the other ones.")) (|univariate?| (((|Boolean|) |#4|) "\\axiom{univariate?(\\spad{p})} returns \\spad{true} iff \\axiom{\\spad{p}} involves one and only one variable.")) (|quasiMonicPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| |#4|)) "\\axiom{quasiMonicPolynomials(\\spad{lp})} returns \\axiom{qmps,{}nqmps} where \\axiom{qmps} is a list of the quasi-monic polynomials in \\axiom{\\spad{lp}} and \\axiom{nqmps} are the other ones.")) (|selectAndPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| (|Mapping| (|Boolean|) |#4|)) (|List| |#4|)) "\\axiom{selectAndPolynomials(lpred?,{}\\spad{ps})} returns \\axiom{\\spad{gps},{}\\spad{bps}} where \\axiom{\\spad{gps}} is a list of the polynomial \\axiom{\\spad{p}} in \\axiom{\\spad{ps}} such that \\axiom{pred?(\\spad{p})} holds for every \\axiom{pred?} in \\axiom{lpred?} and \\axiom{\\spad{bps}} are the other ones.")) (|selectOrPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|List| (|Mapping| (|Boolean|) |#4|)) (|List| |#4|)) "\\axiom{selectOrPolynomials(lpred?,{}\\spad{ps})} returns \\axiom{\\spad{gps},{}\\spad{bps}} where \\axiom{\\spad{gps}} is a list of the polynomial \\axiom{\\spad{p}} in \\axiom{\\spad{ps}} such that \\axiom{pred?(\\spad{p})} holds for some \\axiom{pred?} in \\axiom{lpred?} and \\axiom{\\spad{bps}} are the other ones.")) (|selectPolynomials| (((|Record| (|:| |goodPols| (|List| |#4|)) (|:| |badPols| (|List| |#4|))) (|Mapping| (|Boolean|) |#4|) (|List| |#4|)) "\\axiom{selectPolynomials(pred?,{}\\spad{ps})} returns \\axiom{\\spad{gps},{}\\spad{bps}} where \\axiom{\\spad{gps}} is a list of the polynomial \\axiom{\\spad{p}} in \\axiom{\\spad{ps}} such that \\axiom{pred?(\\spad{p})} holds and \\axiom{\\spad{bps}} are the other ones.")) (|probablyZeroDim?| (((|Boolean|) (|List| |#4|)) "\\axiom{probablyZeroDim?(\\spad{lp})} returns \\spad{true} iff the number of polynomials in \\axiom{\\spad{lp}} is not smaller than the number of variables occurring in these polynomials.")) (|possiblyNewVariety?| (((|Boolean|) (|List| |#4|) (|List| (|List| |#4|))) "\\axiom{possiblyNewVariety?(newlp,{}\\spad{llp})} returns \\spad{true} iff for every \\axiom{\\spad{lp}} in \\axiom{\\spad{llp}} certainlySubVariety?(newlp,{}\\spad{lp}) does not hold.")) (|certainlySubVariety?| (((|Boolean|) (|List| |#4|) (|List| |#4|)) "\\axiom{certainlySubVariety?(newlp,{}\\spad{lp})} returns \\spad{true} iff for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}} the remainder of \\axiom{\\spad{p}} by \\axiom{newlp} using the division algorithm of Groebner techniques is zero.")) (|unprotectedRemoveRedundantFactors| (((|List| |#4|) |#4| |#4|) "\\axiom{unprotectedRemoveRedundantFactors(\\spad{p},{}\\spad{q})} returns the same as \\axiom{removeRedundantFactors(\\spad{p},{}\\spad{q})} but does assume that neither \\axiom{\\spad{p}} nor \\axiom{\\spad{q}} lie in the base ring \\axiom{\\spad{R}} and assumes that \\axiom{infRittWu?(\\spad{p},{}\\spad{q})} holds. Moreover,{} if \\axiom{\\spad{R}} is \\spad{gcd}-domain,{} then \\axiom{\\spad{p}} and \\axiom{\\spad{q}} are assumed to be square free.")) (|removeSquaresIfCan| (((|List| |#4|) (|List| |#4|)) "\\axiom{removeSquaresIfCan(\\spad{lp})} returns \\axiom{removeDuplicates [squareFreePart(\\spad{p})\\$\\spad{P} for \\spad{p} in \\spad{lp}]} if \\axiom{\\spad{R}} is \\spad{gcd}-domain else returns \\axiom{\\spad{lp}}.")) (|removeRedundantFactors| (((|List| |#4|) (|List| |#4|) (|List| |#4|) (|Mapping| (|List| |#4|) (|List| |#4|))) "\\axiom{removeRedundantFactors(\\spad{lp},{}\\spad{lq},{}remOp)} returns the same as \\axiom{concat(remOp(removeRoughlyRedundantFactorsInPols(\\spad{lp},{}\\spad{lq})),{}\\spad{lq})} assuming that \\axiom{remOp(\\spad{lq})} returns \\axiom{\\spad{lq}} up to similarity.") (((|List| |#4|) (|List| |#4|) (|List| |#4|)) "\\axiom{removeRedundantFactors(\\spad{lp},{}\\spad{lq})} returns the same as \\axiom{removeRedundantFactors(concat(\\spad{lp},{}\\spad{lq}))} assuming that \\axiom{removeRedundantFactors(\\spad{lp})} returns \\axiom{\\spad{lp}} up to replacing some polynomial \\axiom{\\spad{pj}} in \\axiom{\\spad{lp}} by some polynomial \\axiom{\\spad{qj}} associated to \\axiom{\\spad{pj}}.") (((|List| |#4|) (|List| |#4|) |#4|) "\\axiom{removeRedundantFactors(\\spad{lp},{}\\spad{q})} returns the same as \\axiom{removeRedundantFactors(cons(\\spad{q},{}\\spad{lp}))} assuming that \\axiom{removeRedundantFactors(\\spad{lp})} returns \\axiom{\\spad{lp}} up to replacing some polynomial \\axiom{\\spad{pj}} in \\axiom{\\spad{lp}} by some some polynomial \\axiom{\\spad{qj}} associated to \\axiom{\\spad{pj}}.") (((|List| |#4|) |#4| |#4|) "\\axiom{removeRedundantFactors(\\spad{p},{}\\spad{q})} returns the same as \\axiom{removeRedundantFactors([\\spad{p},{}\\spad{q}])}") (((|List| |#4|) (|List| |#4|)) "\\axiom{removeRedundantFactors(\\spad{lp})} returns \\axiom{\\spad{lq}} such that if \\axiom{\\spad{lp} = [\\spad{p1},{}...,{}\\spad{pn}]} and \\axiom{\\spad{lq} = [\\spad{q1},{}...,{}\\spad{qm}]} then the product \\axiom{p1*p2*...\\spad{*pn}} vanishes iff the product \\axiom{q1*q2*...\\spad{*qm}} vanishes,{} and the product of degrees of the \\axiom{\\spad{qi}} is not greater than the one of the \\axiom{\\spad{pj}},{} and no polynomial in \\axiom{\\spad{lq}} divides another polynomial in \\axiom{\\spad{lq}}. In particular,{} polynomials lying in the base ring \\axiom{\\spad{R}} are removed. Moreover,{} \\axiom{\\spad{lq}} is sorted \\spad{w}.\\spad{r}.\\spad{t} \\axiom{infRittWu?}. Furthermore,{} if \\spad{R} is \\spad{gcd}-domain,{} the polynomials in \\axiom{\\spad{lq}} are pairwise without common non trivial factor.")))
@@ -3830,7 +3830,7 @@ NIL
NIL
(-975 R)
((|constructor| (NIL "PointCategory is the category of points in space which may be plotted via the graphics facilities. Functions are provided for defining points and handling elements of points.")) (|extend| (($ $ (|List| |#1|)) "\\spad{extend(x,{}l,{}r)} \\undocumented")) (|cross| (($ $ $) "\\spad{cross(p,{}q)} computes the cross product of the two points \\spad{p} and \\spad{q}. Error if the \\spad{p} and \\spad{q} are not 3 dimensional")) (|dimension| (((|PositiveInteger|) $) "\\spad{dimension(s)} returns the dimension of the point category \\spad{s}.")) (|point| (($ (|List| |#1|)) "\\spad{point(l)} returns a point category defined by a list \\spad{l} of elements from the domain \\spad{R}.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
NIL
(-976 R1 R2)
((|constructor| (NIL "This package \\undocumented")) (|map| (((|Point| |#2|) (|Mapping| |#2| |#1|) (|Point| |#1|)) "\\spad{map(f,{}p)} \\undocumented")))
@@ -3848,7 +3848,7 @@ NIL
((|constructor| (NIL "This package \\undocumented{}")) (|map| ((|#4| (|Mapping| |#4| (|Polynomial| |#1|)) |#4|) "\\spad{map(f,{}p)} \\undocumented{}")) (|pushup| ((|#4| |#4| (|List| |#3|)) "\\spad{pushup(p,{}lv)} \\undocumented{}") ((|#4| |#4| |#3|) "\\spad{pushup(p,{}v)} \\undocumented{}")) (|pushdown| ((|#4| |#4| (|List| |#3|)) "\\spad{pushdown(p,{}lv)} \\undocumented{}") ((|#4| |#4| |#3|) "\\spad{pushdown(p,{}v)} \\undocumented{}")) (|variable| (((|Union| $ "failed") (|Symbol|)) "\\spad{variable(s)} makes an element from symbol \\spad{s} or fails")) (|convert| (((|Symbol|) $) "\\spad{convert(x)} converts \\spad{x} to a symbol")))
NIL
NIL
-(-980 K R UP -3197)
+(-980 K R UP -3196)
((|constructor| (NIL "In this package \\spad{K} is a finite field,{} \\spad{R} is a ring of univariate polynomials over \\spad{K},{} and \\spad{F} is a monogenic algebra over \\spad{R}. We require that \\spad{F} is monogenic,{} \\spadignore{i.e.} that \\spad{F = K[x,{}y]/(f(x,{}y))},{} because the integral basis algorithm used will factor the polynomial \\spad{f(x,{}y)}. The package provides a function to compute the integral closure of \\spad{R} in the quotient field of \\spad{F} as well as a function to compute a \"local integral basis\" at a specific prime.")) (|reducedDiscriminant| ((|#2| |#3|) "\\spad{reducedDiscriminant(up)} \\undocumented")) (|localIntegralBasis| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|))) |#2|) "\\spad{integralBasis(p)} returns a record \\spad{[basis,{}basisDen,{}basisInv] } containing information regarding the local integral closure of \\spad{R} at the prime \\spad{p} in the quotient field of the framed algebra \\spad{F}. \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn}. If 'basis' is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the local integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of 'basis' contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix 'basisInv' contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if 'basisInv' is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|integralBasis| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|)))) "\\spad{integralBasis()} returns a record \\spad{[basis,{}basisDen,{}basisInv] } containing information regarding the integral closure of \\spad{R} in the quotient field of the framed algebra \\spad{F}. \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn}. If 'basis' is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of 'basis' contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix 'basisInv' contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if 'basisInv' is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")))
NIL
NIL
@@ -3878,7 +3878,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-904))) (|HasCategory| |#2| (QUOTE (-544))) (|HasCategory| |#2| (QUOTE (-306))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (QUOTE (-1017))) (|HasCategory| |#2| (QUOTE (-815))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-1143))))
(-987 S)
((|constructor| (NIL "QuotientField(\\spad{S}) is the category of fractions of an Integral Domain \\spad{S}.")) (|floor| ((|#1| $) "\\spad{floor(x)} returns the largest integral element below \\spad{x}.")) (|ceiling| ((|#1| $) "\\spad{ceiling(x)} returns the smallest integral element above \\spad{x}.")) (|random| (($) "\\spad{random()} returns a random fraction.")) (|fractionPart| (($ $) "\\spad{fractionPart(x)} returns the fractional part of \\spad{x}. \\spad{x} = wholePart(\\spad{x}) + fractionPart(\\spad{x})")) (|wholePart| ((|#1| $) "\\spad{wholePart(x)} returns the whole part of the fraction \\spad{x} \\spadignore{i.e.} the truncated quotient of the numerator by the denominator.")) (|denominator| (($ $) "\\spad{denominator(x)} is the denominator of the fraction \\spad{x} converted to \\%.")) (|numerator| (($ $) "\\spad{numerator(x)} is the numerator of the fraction \\spad{x} converted to \\%.")) (|denom| ((|#1| $) "\\spad{denom(x)} returns the denominator of the fraction \\spad{x}.")) (|numer| ((|#1| $) "\\spad{numer(x)} returns the numerator of the fraction \\spad{x}.")) (/ (($ |#1| |#1|) "\\spad{d1 / d2} returns the fraction \\spad{d1} divided by \\spad{d2}.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-988 |n| K)
((|constructor| (NIL "This domain provides modest support for quadratic forms.")) (|elt| ((|#2| $ (|DirectProduct| |#1| |#2|)) "\\spad{elt(qf,{}v)} evaluates the quadratic form \\spad{qf} on the vector \\spad{v},{} producing a scalar.")) (|matrix| (((|SquareMatrix| |#1| |#2|) $) "\\spad{matrix(qf)} creates a square matrix from the quadratic form \\spad{qf}.")) (|quadraticForm| (($ (|SquareMatrix| |#1| |#2|)) "\\spad{quadraticForm(m)} creates a quadratic form from a symmetric,{} square matrix \\spad{m}.")))
@@ -3890,7 +3890,7 @@ NIL
NIL
(-990 S)
((|constructor| (NIL "A queue is a bag where the first item inserted is the first item extracted.")) (|back| ((|#1| $) "\\spad{back(q)} returns the element at the back of the queue. The queue \\spad{q} is unchanged by this operation. Error: if \\spad{q} is empty.")) (|front| ((|#1| $) "\\spad{front(q)} returns the element at the front of the queue. The queue \\spad{q} is unchanged by this operation. Error: if \\spad{q} is empty.")) (|length| (((|NonNegativeInteger|) $) "\\spad{length(q)} returns the number of elements in the queue. Note: \\axiom{length(\\spad{q}) = \\spad{#q}}.")) (|rotate!| (($ $) "\\spad{rotate! q} rotates queue \\spad{q} so that the element at the front of the queue goes to the back of the queue. Note: rotate! \\spad{q} is equivalent to enqueue!(dequeue!(\\spad{q})).")) (|dequeue!| ((|#1| $) "\\spad{dequeue! s} destructively extracts the first (top) element from queue \\spad{q}. The element previously second in the queue becomes the first element. Error: if \\spad{q} is empty.")) (|enqueue!| ((|#1| |#1| $) "\\spad{enqueue!(x,{}q)} inserts \\spad{x} into the queue \\spad{q} at the back end.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
NIL
(-991 S R)
((|constructor| (NIL "\\spadtype{QuaternionCategory} describes the category of quaternions and implements functions that are not representation specific.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(q)} returns \\spad{q} as a rational number,{} or \"failed\" if this is not possible. Note: if \\spad{rational?(q)} is \\spad{true},{} the conversion can be done and the rational number will be returned.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(q)} tries to convert \\spad{q} into a rational number. Error: if this is not possible. If \\spad{rational?(q)} is \\spad{true},{} the conversion will be done and the rational number returned.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(q)} returns {\\it \\spad{true}} if all the imaginary parts of \\spad{q} are zero and the real part can be converted into a rational number,{} and {\\it \\spad{false}} otherwise.")) (|abs| ((|#2| $) "\\spad{abs(q)} computes the absolute value of quaternion \\spad{q} (sqrt of norm).")) (|real| ((|#2| $) "\\spad{real(q)} extracts the real part of quaternion \\spad{q}.")) (|quatern| (($ |#2| |#2| |#2| |#2|) "\\spad{quatern(r,{}i,{}j,{}k)} constructs a quaternion from scalars.")) (|norm| ((|#2| $) "\\spad{norm(q)} computes the norm of \\spad{q} (the sum of the squares of the components).")) (|imagK| ((|#2| $) "\\spad{imagK(q)} extracts the imaginary \\spad{k} part of quaternion \\spad{q}.")) (|imagJ| ((|#2| $) "\\spad{imagJ(q)} extracts the imaginary \\spad{j} part of quaternion \\spad{q}.")) (|imagI| ((|#2| $) "\\spad{imagI(q)} extracts the imaginary \\spad{i} part of quaternion \\spad{q}.")) (|conjugate| (($ $) "\\spad{conjugate(q)} negates the imaginary parts of quaternion \\spad{q}.")))
@@ -3898,7 +3898,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-544))) (|HasCategory| |#2| (QUOTE (-1053))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-289))))
(-992 R)
((|constructor| (NIL "\\spadtype{QuaternionCategory} describes the category of quaternions and implements functions that are not representation specific.")) (|rationalIfCan| (((|Union| (|Fraction| (|Integer|)) "failed") $) "\\spad{rationalIfCan(q)} returns \\spad{q} as a rational number,{} or \"failed\" if this is not possible. Note: if \\spad{rational?(q)} is \\spad{true},{} the conversion can be done and the rational number will be returned.")) (|rational| (((|Fraction| (|Integer|)) $) "\\spad{rational(q)} tries to convert \\spad{q} into a rational number. Error: if this is not possible. If \\spad{rational?(q)} is \\spad{true},{} the conversion will be done and the rational number returned.")) (|rational?| (((|Boolean|) $) "\\spad{rational?(q)} returns {\\it \\spad{true}} if all the imaginary parts of \\spad{q} are zero and the real part can be converted into a rational number,{} and {\\it \\spad{false}} otherwise.")) (|abs| ((|#1| $) "\\spad{abs(q)} computes the absolute value of quaternion \\spad{q} (sqrt of norm).")) (|real| ((|#1| $) "\\spad{real(q)} extracts the real part of quaternion \\spad{q}.")) (|quatern| (($ |#1| |#1| |#1| |#1|) "\\spad{quatern(r,{}i,{}j,{}k)} constructs a quaternion from scalars.")) (|norm| ((|#1| $) "\\spad{norm(q)} computes the norm of \\spad{q} (the sum of the squares of the components).")) (|imagK| ((|#1| $) "\\spad{imagK(q)} extracts the imaginary \\spad{k} part of quaternion \\spad{q}.")) (|imagJ| ((|#1| $) "\\spad{imagJ(q)} extracts the imaginary \\spad{j} part of quaternion \\spad{q}.")) (|imagI| ((|#1| $) "\\spad{imagI(q)} extracts the imaginary \\spad{i} part of quaternion \\spad{q}.")) (|conjugate| (($ $) "\\spad{conjugate(q)} negates the imaginary parts of quaternion \\spad{q}.")))
-((-4395 |has| |#1| (-289)) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 |has| |#1| (-289)) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-993 QR R QS S)
((|constructor| (NIL "\\spadtype{QuaternionCategoryFunctions2} implements functions between two quaternion domains. The function \\spadfun{map} is used by the system interpreter to coerce between quaternion types.")) (|map| ((|#3| (|Mapping| |#4| |#2|) |#1|) "\\spad{map(f,{}u)} maps \\spad{f} onto the component parts of the quaternion \\spad{u}.")))
@@ -3906,11 +3906,11 @@ NIL
NIL
(-994 R)
((|constructor| (NIL "\\spadtype{Quaternion} implements quaternions over a \\indented{2}{commutative ring. The main constructor function is \\spadfun{quatern}} \\indented{2}{which takes 4 arguments: the real part,{} the \\spad{i} imaginary part,{} the \\spad{j}} \\indented{2}{imaginary part and the \\spad{k} imaginary part.}")))
-((-4395 |has| |#1| (-289)) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 |has| |#1| (-289)) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (|HasCategory| |#1| (QUOTE (-289))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-289))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -285) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-1053))) (|HasCategory| |#1| (QUOTE (-544))))
(-995 S)
((|constructor| (NIL "Linked List implementation of a Queue")) (|queue| (($ (|List| |#1|)) "\\spad{queue([x,{}y,{}...,{}z])} creates a queue with first (top) element \\spad{x},{} second element \\spad{y},{}...,{}and last (bottom) element \\spad{z}.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-996 S)
((|constructor| (NIL "The \\spad{RadicalCategory} is a model for the rational numbers.")) (** (($ $ (|Fraction| (|Integer|))) "\\spad{x ** y} is the rational exponentiation of \\spad{x} by the power \\spad{y}.")) (|nthRoot| (($ $ (|Integer|)) "\\spad{nthRoot(x,{}n)} returns the \\spad{n}th root of \\spad{x}.")) (|sqrt| (($ $) "\\spad{sqrt(x)} returns the square root of \\spad{x}.")))
@@ -3920,13 +3920,13 @@ NIL
((|constructor| (NIL "The \\spad{RadicalCategory} is a model for the rational numbers.")) (** (($ $ (|Fraction| (|Integer|))) "\\spad{x ** y} is the rational exponentiation of \\spad{x} by the power \\spad{y}.")) (|nthRoot| (($ $ (|Integer|)) "\\spad{nthRoot(x,{}n)} returns the \\spad{n}th root of \\spad{x}.")) (|sqrt| (($ $) "\\spad{sqrt(x)} returns the square root of \\spad{x}.")))
NIL
NIL
-(-998 -3197 UP UPUP |radicnd| |n|)
+(-998 -3196 UP UPUP |radicnd| |n|)
((|constructor| (NIL "Function field defined by y**n = \\spad{f}(\\spad{x}).")))
-((-4395 |has| (-406 |#2|) (-362)) (-4400 |has| (-406 |#2|) (-362)) (-4394 |has| (-406 |#2|) (-362)) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 |has| (-406 |#2|) (-362)) (-4401 |has| (-406 |#2|) (-362)) (-4395 |has| (-406 |#2|) (-362)) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| (-406 |#2|) (QUOTE (-144))) (|HasCategory| (-406 |#2|) (QUOTE (-146))) (|HasCategory| (-406 |#2|) (QUOTE (-348))) (-4037 (|HasCategory| (-406 |#2|) (QUOTE (-362))) (|HasCategory| (-406 |#2|) (QUOTE (-348)))) (|HasCategory| (-406 |#2|) (QUOTE (-362))) (|HasCategory| (-406 |#2|) (QUOTE (-367))) (-4037 (-12 (|HasCategory| (-406 |#2|) (QUOTE (-232))) (|HasCategory| (-406 |#2|) (QUOTE (-362)))) (|HasCategory| (-406 |#2|) (QUOTE (-348)))) (-4037 (-12 (|HasCategory| (-406 |#2|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-406 |#2|) (QUOTE (-362)))) (-12 (|HasCategory| (-406 |#2|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-406 |#2|) (QUOTE (-348))))) (|HasCategory| (-406 |#2|) (LIST (QUOTE -635) (QUOTE (-562)))) (-4037 (|HasCategory| (-406 |#2|) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-406 |#2|) (QUOTE (-362)))) (|HasCategory| (-406 |#2|) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-406 |#2|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-367))) (-12 (|HasCategory| (-406 |#2|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-406 |#2|) (QUOTE (-362)))) (-12 (|HasCategory| (-406 |#2|) (QUOTE (-232))) (|HasCategory| (-406 |#2|) (QUOTE (-362)))))
(-999 |bb|)
((|constructor| (NIL "This domain allows rational numbers to be presented as repeating decimal expansions or more generally as repeating expansions in any base.")) (|fractRadix| (($ (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{fractRadix(pre,{}cyc)} creates a fractional radix expansion from a list of prefix ragits and a list of cyclic ragits. For example,{} \\spad{fractRadix([1],{}[6])} will return \\spad{0.16666666...}.")) (|wholeRadix| (($ (|List| (|Integer|))) "\\spad{wholeRadix(l)} creates an integral radix expansion from a list of ragits. For example,{} \\spad{wholeRadix([1,{}3,{}4])} will return \\spad{134}.")) (|cycleRagits| (((|List| (|Integer|)) $) "\\spad{cycleRagits(rx)} returns the cyclic part of the ragits of the fractional part of a radix expansion. For example,{} if \\spad{x = 3/28 = 0.10 714285 714285 ...},{} then \\spad{cycleRagits(x) = [7,{}1,{}4,{}2,{}8,{}5]}.")) (|prefixRagits| (((|List| (|Integer|)) $) "\\spad{prefixRagits(rx)} returns the non-cyclic part of the ragits of the fractional part of a radix expansion. For example,{} if \\spad{x = 3/28 = 0.10 714285 714285 ...},{} then \\spad{prefixRagits(x)=[1,{}0]}.")) (|fractRagits| (((|Stream| (|Integer|)) $) "\\spad{fractRagits(rx)} returns the ragits of the fractional part of a radix expansion.")) (|wholeRagits| (((|List| (|Integer|)) $) "\\spad{wholeRagits(rx)} returns the ragits of the integer part of a radix expansion.")) (|fractionPart| (((|Fraction| (|Integer|)) $) "\\spad{fractionPart(rx)} returns the fractional part of a radix expansion.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| (-562) (QUOTE (-904))) (|HasCategory| (-562) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| (-562) (QUOTE (-144))) (|HasCategory| (-562) (QUOTE (-146))) (|HasCategory| (-562) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-562) (QUOTE (-1017))) (|HasCategory| (-562) (QUOTE (-815))) (-4037 (|HasCategory| (-562) (QUOTE (-815))) (|HasCategory| (-562) (QUOTE (-845)))) (|HasCategory| (-562) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| (-562) (QUOTE (-1143))) (|HasCategory| (-562) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| (-562) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| (-562) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| (-562) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| (-562) (QUOTE (-232))) (|HasCategory| (-562) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| (-562) (LIST (QUOTE -513) (QUOTE (-1168)) (QUOTE (-562)))) (|HasCategory| (-562) (LIST (QUOTE -308) (QUOTE (-562)))) (|HasCategory| (-562) (LIST (QUOTE -285) (QUOTE (-562)) (QUOTE (-562)))) (|HasCategory| (-562) (QUOTE (-306))) (|HasCategory| (-562) (QUOTE (-544))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| (-562) (LIST (QUOTE -635) (QUOTE (-562)))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-562) (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-562) (QUOTE (-904)))) (|HasCategory| (-562) (QUOTE (-144)))))
(-1000)
((|constructor| (NIL "This package provides tools for creating radix expansions.")) (|radix| (((|Any|) (|Fraction| (|Integer|)) (|Integer|)) "\\spad{radix(x,{}b)} converts \\spad{x} to a radix expansion in base \\spad{b}.")))
@@ -3947,7 +3947,7 @@ NIL
(-1004 A S)
((|constructor| (NIL "A recursive aggregate over a type \\spad{S} is a model for a a directed graph containing values of type \\spad{S}. Recursively,{} a recursive aggregate is a {\\em node} consisting of a \\spadfun{value} from \\spad{S} and 0 or more \\spadfun{children} which are recursive aggregates. A node with no children is called a \\spadfun{leaf} node. A recursive aggregate may be cyclic for which some operations as noted may go into an infinite loop.")) (|setvalue!| ((|#2| $ |#2|) "\\spad{setvalue!(u,{}x)} sets the value of node \\spad{u} to \\spad{x}.")) (|setelt| ((|#2| $ "value" |#2|) "\\spad{setelt(a,{}\"value\",{}x)} (also written \\axiom{a . value \\spad{:=} \\spad{x}}) is equivalent to \\axiom{setvalue!(a,{}\\spad{x})}")) (|setchildren!| (($ $ (|List| $)) "\\spad{setchildren!(u,{}v)} replaces the current children of node \\spad{u} with the members of \\spad{v} in left-to-right order.")) (|node?| (((|Boolean|) $ $) "\\spad{node?(u,{}v)} tests if node \\spad{u} is contained in node \\spad{v} (either as a child,{} a child of a child,{} etc.).")) (|child?| (((|Boolean|) $ $) "\\spad{child?(u,{}v)} tests if node \\spad{u} is a child of node \\spad{v}.")) (|distance| (((|Integer|) $ $) "\\spad{distance(u,{}v)} returns the path length (an integer) from node \\spad{u} to \\spad{v}.")) (|leaves| (((|List| |#2|) $) "\\spad{leaves(t)} returns the list of values in obtained by visiting the nodes of tree \\axiom{\\spad{t}} in left-to-right order.")) (|cyclic?| (((|Boolean|) $) "\\spad{cyclic?(u)} tests if \\spad{u} has a cycle.")) (|elt| ((|#2| $ "value") "\\spad{elt(u,{}\"value\")} (also written: \\axiom{a. value}) is equivalent to \\axiom{value(a)}.")) (|value| ((|#2| $) "\\spad{value(u)} returns the value of the node \\spad{u}.")) (|leaf?| (((|Boolean|) $) "\\spad{leaf?(u)} tests if \\spad{u} is a terminal node.")) (|nodes| (((|List| $) $) "\\spad{nodes(u)} returns a list of all of the nodes of aggregate \\spad{u}.")) (|children| (((|List| $) $) "\\spad{children(u)} returns a list of the children of aggregate \\spad{u}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4403)) (|HasCategory| |#2| (QUOTE (-1092))))
+((|HasAttribute| |#1| (QUOTE -4404)) (|HasCategory| |#2| (QUOTE (-1092))))
(-1005 S)
((|constructor| (NIL "A recursive aggregate over a type \\spad{S} is a model for a a directed graph containing values of type \\spad{S}. Recursively,{} a recursive aggregate is a {\\em node} consisting of a \\spadfun{value} from \\spad{S} and 0 or more \\spadfun{children} which are recursive aggregates. A node with no children is called a \\spadfun{leaf} node. A recursive aggregate may be cyclic for which some operations as noted may go into an infinite loop.")) (|setvalue!| ((|#1| $ |#1|) "\\spad{setvalue!(u,{}x)} sets the value of node \\spad{u} to \\spad{x}.")) (|setelt| ((|#1| $ "value" |#1|) "\\spad{setelt(a,{}\"value\",{}x)} (also written \\axiom{a . value \\spad{:=} \\spad{x}}) is equivalent to \\axiom{setvalue!(a,{}\\spad{x})}")) (|setchildren!| (($ $ (|List| $)) "\\spad{setchildren!(u,{}v)} replaces the current children of node \\spad{u} with the members of \\spad{v} in left-to-right order.")) (|node?| (((|Boolean|) $ $) "\\spad{node?(u,{}v)} tests if node \\spad{u} is contained in node \\spad{v} (either as a child,{} a child of a child,{} etc.).")) (|child?| (((|Boolean|) $ $) "\\spad{child?(u,{}v)} tests if node \\spad{u} is a child of node \\spad{v}.")) (|distance| (((|Integer|) $ $) "\\spad{distance(u,{}v)} returns the path length (an integer) from node \\spad{u} to \\spad{v}.")) (|leaves| (((|List| |#1|) $) "\\spad{leaves(t)} returns the list of values in obtained by visiting the nodes of tree \\axiom{\\spad{t}} in left-to-right order.")) (|cyclic?| (((|Boolean|) $) "\\spad{cyclic?(u)} tests if \\spad{u} has a cycle.")) (|elt| ((|#1| $ "value") "\\spad{elt(u,{}\"value\")} (also written: \\axiom{a. value}) is equivalent to \\axiom{value(a)}.")) (|value| ((|#1| $) "\\spad{value(u)} returns the value of the node \\spad{u}.")) (|leaf?| (((|Boolean|) $) "\\spad{leaf?(u)} tests if \\spad{u} is a terminal node.")) (|nodes| (((|List| $) $) "\\spad{nodes(u)} returns a list of all of the nodes of aggregate \\spad{u}.")) (|children| (((|List| $) $) "\\spad{children(u)} returns a list of the children of aggregate \\spad{u}.")))
NIL
@@ -3958,21 +3958,21 @@ NIL
NIL
(-1007)
((|constructor| (NIL "\\axiomType{RealClosedField} provides common acces functions for all real closed fields.")) (|approximate| (((|Fraction| (|Integer|)) $ $) "\\axiom{approximate(\\spad{n},{}\\spad{p})} gives an approximation of \\axiom{\\spad{n}} that has precision \\axiom{\\spad{p}}")) (|rename| (($ $ (|OutputForm|)) "\\axiom{rename(\\spad{x},{}name)} gives a new number that prints as name")) (|rename!| (($ $ (|OutputForm|)) "\\axiom{rename!(\\spad{x},{}name)} changes the way \\axiom{\\spad{x}} is printed")) (|sqrt| (($ (|Integer|)) "\\axiom{sqrt(\\spad{x})} is \\axiom{\\spad{x} \\spad{**} (1/2)}") (($ (|Fraction| (|Integer|))) "\\axiom{sqrt(\\spad{x})} is \\axiom{\\spad{x} \\spad{**} (1/2)}") (($ $) "\\axiom{sqrt(\\spad{x})} is \\axiom{\\spad{x} \\spad{**} (1/2)}") (($ $ (|PositiveInteger|)) "\\axiom{sqrt(\\spad{x},{}\\spad{n})} is \\axiom{\\spad{x} \\spad{**} (1/n)}")) (|allRootsOf| (((|List| $) (|Polynomial| (|Integer|))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|Polynomial| $)) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|SparseUnivariatePolynomial| (|Integer|))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|SparseUnivariatePolynomial| (|Fraction| (|Integer|)))) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely") (((|List| $) (|SparseUnivariatePolynomial| $)) "\\axiom{allRootsOf(pol)} creates all the roots of \\axiom{pol} naming each uniquely")) (|rootOf| (((|Union| $ "failed") (|SparseUnivariatePolynomial| $) (|PositiveInteger|)) "\\axiom{rootOf(pol,{}\\spad{n})} creates the \\spad{n}th root for the order of \\axiom{pol} and gives it unique name") (((|Union| $ "failed") (|SparseUnivariatePolynomial| $) (|PositiveInteger|) (|OutputForm|)) "\\axiom{rootOf(pol,{}\\spad{n},{}name)} creates the \\spad{n}th root for the order of \\axiom{pol} and names it \\axiom{name}")) (|mainValue| (((|Union| (|SparseUnivariatePolynomial| $) "failed") $) "\\axiom{mainValue(\\spad{x})} is the expression of \\axiom{\\spad{x}} in terms of \\axiom{SparseUnivariatePolynomial(\\$)}")) (|mainDefiningPolynomial| (((|Union| (|SparseUnivariatePolynomial| $) "failed") $) "\\axiom{mainDefiningPolynomial(\\spad{x})} is the defining polynomial for the main algebraic quantity of \\axiom{\\spad{x}}")) (|mainForm| (((|Union| (|OutputForm|) "failed") $) "\\axiom{mainForm(\\spad{x})} is the main algebraic quantity name of \\axiom{\\spad{x}}")))
-((-4395 . T) (-4400 . T) (-4394 . T) (-4397 . T) (-4396 . T) ((-4404 "*") . T) (-4399 . T))
+((-4396 . T) (-4401 . T) (-4395 . T) (-4398 . T) (-4397 . T) ((-4405 "*") . T) (-4400 . T))
NIL
-(-1008 R -3197)
+(-1008 R -3196)
((|constructor| (NIL "\\indented{1}{Risch differential equation,{} elementary case.} Author: Manuel Bronstein Date Created: 1 February 1988 Date Last Updated: 2 November 1995 Keywords: elementary,{} function,{} integration.")) (|rischDE| (((|Record| (|:| |ans| |#2|) (|:| |right| |#2|) (|:| |sol?| (|Boolean|))) (|Integer|) |#2| |#2| (|Symbol|) (|Mapping| (|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|List| |#2|)) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) "\\spad{rischDE(n,{} f,{} g,{} x,{} lim,{} ext)} returns \\spad{[y,{} h,{} b]} such that \\spad{dy/dx + n df/dx y = h} and \\spad{b := h = g}. The equation \\spad{dy/dx + n df/dx y = g} has no solution if \\spad{h \\~~= g} (\\spad{y} is a partial solution in that case). Notes: \\spad{lim} is a limited integration function,{} and ext is an extended integration function.")))
NIL
NIL
-(-1009 R -3197)
+(-1009 R -3196)
((|constructor| (NIL "\\indented{1}{Risch differential equation,{} elementary case.} Author: Manuel Bronstein Date Created: 12 August 1992 Date Last Updated: 17 August 1992 Keywords: elementary,{} function,{} integration.")) (|rischDEsys| (((|Union| (|List| |#2|) "failed") (|Integer|) |#2| |#2| |#2| (|Symbol|) (|Mapping| (|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|List| |#2|)) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) "\\spad{rischDEsys(n,{} f,{} g_1,{} g_2,{} x,{}lim,{}ext)} returns \\spad{y_1.y_2} such that \\spad{(dy1/dx,{}dy2/dx) + ((0,{} - n df/dx),{}(n df/dx,{}0)) (y1,{}y2) = (g1,{}g2)} if \\spad{y_1,{}y_2} exist,{} \"failed\" otherwise. \\spad{lim} is a limited integration function,{} \\spad{ext} is an extended integration function.")))
NIL
NIL
-(-1010 -3197 UP)
+(-1010 -3196 UP)
((|constructor| (NIL "\\indented{1}{Risch differential equation,{} transcendental case.} Author: Manuel Bronstein Date Created: Jan 1988 Date Last Updated: 2 November 1995")) (|polyRDE| (((|Union| (|:| |ans| (|Record| (|:| |ans| |#2|) (|:| |nosol| (|Boolean|)))) (|:| |eq| (|Record| (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (|Integer|)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (|Integer|) (|Mapping| |#2| |#2|)) "\\spad{polyRDE(a,{} B,{} C,{} n,{} D)} returns either: 1. \\spad{[Q,{} b]} such that \\spad{degree(Q) <= n} and \\indented{3}{\\spad{a Q'+ B Q = C} if \\spad{b = true},{} \\spad{Q} is a partial solution} \\indented{3}{otherwise.} 2. \\spad{[B1,{} C1,{} m,{} \\alpha,{} \\beta]} such that any polynomial solution \\indented{3}{of degree at most \\spad{n} of \\spad{A Q' + BQ = C} must be of the form} \\indented{3}{\\spad{Q = \\alpha H + \\beta} where \\spad{degree(H) <= m} and} \\indented{3}{\\spad{H} satisfies \\spad{H' + B1 H = C1}.} \\spad{D} is the derivation to use.")) (|baseRDE| (((|Record| (|:| |ans| (|Fraction| |#2|)) (|:| |nosol| (|Boolean|))) (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{baseRDE(f,{} g)} returns a \\spad{[y,{} b]} such that \\spad{y' + fy = g} if \\spad{b = true},{} \\spad{y} is a partial solution otherwise (no solution in that case). \\spad{D} is the derivation to use.")) (|monomRDE| (((|Union| (|Record| (|:| |a| |#2|) (|:| |b| (|Fraction| |#2|)) (|:| |c| (|Fraction| |#2|)) (|:| |t| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{monomRDE(f,{}g,{}D)} returns \\spad{[A,{} B,{} C,{} T]} such that \\spad{y' + f y = g} has a solution if and only if \\spad{y = Q / T},{} where \\spad{Q} satisfies \\spad{A Q' + B Q = C} and has no normal pole. A and \\spad{T} are polynomials and \\spad{B} and \\spad{C} have no normal poles. \\spad{D} is the derivation to use.")))
NIL
NIL
-(-1011 -3197 UP)
+(-1011 -3196 UP)
((|constructor| (NIL "\\indented{1}{Risch differential equation system,{} transcendental case.} Author: Manuel Bronstein Date Created: 17 August 1992 Date Last Updated: 3 February 1994")) (|baseRDEsys| (((|Union| (|List| (|Fraction| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{baseRDEsys(f,{} g1,{} g2)} returns fractions \\spad{y_1.y_2} such that \\spad{(y1',{} y2') + ((0,{} -f),{} (f,{} 0)) (y1,{}y2) = (g1,{}g2)} if \\spad{y_1,{}y_2} exist,{} \"failed\" otherwise.")) (|monomRDEsys| (((|Union| (|Record| (|:| |a| |#2|) (|:| |b| (|Fraction| |#2|)) (|:| |h| |#2|) (|:| |c1| (|Fraction| |#2|)) (|:| |c2| (|Fraction| |#2|)) (|:| |t| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{monomRDEsys(f,{}g1,{}g2,{}D)} returns \\spad{[A,{} B,{} H,{} C1,{} C2,{} T]} such that \\spad{(y1',{} y2') + ((0,{} -f),{} (f,{} 0)) (y1,{}y2) = (g1,{}g2)} has a solution if and only if \\spad{y1 = Q1 / T,{} y2 = Q2 / T},{} where \\spad{B,{}C1,{}C2,{}Q1,{}Q2} have no normal poles and satisfy A \\spad{(Q1',{} Q2') + ((H,{} -B),{} (B,{} H)) (Q1,{}Q2) = (C1,{}C2)} \\spad{D} is the derivation to use.")))
NIL
NIL
@@ -4006,9 +4006,9 @@ NIL
NIL
(-1019 |TheField|)
((|constructor| (NIL "This domain implements the real closure of an ordered field.")) (|relativeApprox| (((|Fraction| (|Integer|)) $ $) "\\axiom{relativeApprox(\\spad{n},{}\\spad{p})} gives a relative approximation of \\axiom{\\spad{n}} that has precision \\axiom{\\spad{p}}")) (|mainCharacterization| (((|Union| (|RightOpenIntervalRootCharacterization| $ (|SparseUnivariatePolynomial| $)) "failed") $) "\\axiom{mainCharacterization(\\spad{x})} is the main algebraic quantity of \\axiom{\\spad{x}} (\\axiom{SEG})")) (|algebraicOf| (($ (|RightOpenIntervalRootCharacterization| $ (|SparseUnivariatePolynomial| $)) (|OutputForm|)) "\\axiom{algebraicOf(char)} is the external number")))
-((-4395 . T) (-4400 . T) (-4394 . T) (-4397 . T) (-4396 . T) ((-4404 "*") . T) (-4399 . T))
+((-4396 . T) (-4401 . T) (-4395 . T) (-4398 . T) (-4397 . T) ((-4405 "*") . T) (-4400 . T))
((-4037 (|HasCategory| (-406 (-562)) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| (-406 (-562)) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-406 (-562)) (LIST (QUOTE -1033) (QUOTE (-562)))))
-(-1020 -3197 L)
+(-1020 -3196 L)
((|constructor| (NIL "\\spadtype{ReductionOfOrder} provides functions for reducing the order of linear ordinary differential equations once some solutions are known.")) (|ReduceOrder| (((|Record| (|:| |eq| |#2|) (|:| |op| (|List| |#1|))) |#2| (|List| |#1|)) "\\spad{ReduceOrder(op,{} [f1,{}...,{}fk])} returns \\spad{[op1,{}[g1,{}...,{}gk]]} such that for any solution \\spad{z} of \\spad{op1 z = 0},{} \\spad{y = gk \\int(g_{k-1} \\int(... \\int(g1 \\int z)...)} is a solution of \\spad{op y = 0}. Each \\spad{\\spad{fi}} must satisfy \\spad{op \\spad{fi} = 0}.") ((|#2| |#2| |#1|) "\\spad{ReduceOrder(op,{} s)} returns \\spad{op1} such that for any solution \\spad{z} of \\spad{op1 z = 0},{} \\spad{y = s \\int z} is a solution of \\spad{op y = 0}. \\spad{s} must satisfy \\spad{op s = 0}.")))
NIL
NIL
@@ -4018,12 +4018,12 @@ NIL
((|HasCategory| |#1| (QUOTE (-1092))))
(-1022 R E V P)
((|constructor| (NIL "This domain provides an implementation of regular chains. Moreover,{} the operation \\axiomOpFrom{zeroSetSplit}{RegularTriangularSetCategory} is an implementation of a new algorithm for solving polynomial systems by means of regular chains.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|preprocess| (((|Record| (|:| |val| (|List| |#4|)) (|:| |towers| (|List| $))) (|List| |#4|) (|Boolean|) (|Boolean|)) "\\axiom{pre_process(\\spad{lp},{}\\spad{b1},{}\\spad{b2})} is an internal subroutine,{} exported only for developement.")) (|internalZeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{internalZeroSetSplit(\\spad{lp},{}\\spad{b1},{}\\spad{b2},{}\\spad{b3})} is an internal subroutine,{} exported only for developement.")) (|zeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}\\spad{b1},{}\\spad{b2}.\\spad{b3},{}\\spad{b4})} is an internal subroutine,{} exported only for developement.") (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}clos?,{}info?)} has the same specifications as \\axiomOpFrom{zeroSetSplit}{RegularTriangularSetCategory}. Moreover,{} if \\axiom{clos?} then solves in the sense of the Zariski closure else solves in the sense of the regular zeros. If \\axiom{info?} then do print messages during the computations.")) (|internalAugment| (((|List| $) |#4| $ (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{internalAugment(\\spad{p},{}\\spad{ts},{}\\spad{b1},{}\\spad{b2},{}\\spad{b3},{}\\spad{b4},{}\\spad{b5})} is an internal subroutine,{} exported only for developement.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#4| (LIST (QUOTE -609) (QUOTE (-857)))))
(-1023 R)
((|constructor| (NIL "RepresentationPackage1 provides functions for representation theory for finite groups and algebras. The package creates permutation representations and uses tensor products and its symmetric and antisymmetric components to create new representations of larger degree from given ones. Note: instead of having parameters from \\spadtype{Permutation} this package allows list notation of permutations as well: \\spadignore{e.g.} \\spad{[1,{}4,{}3,{}2]} denotes permutes 2 and 4 and fixes 1 and 3.")) (|permutationRepresentation| (((|List| (|Matrix| (|Integer|))) (|List| (|List| (|Integer|)))) "\\spad{permutationRepresentation([pi1,{}...,{}pik],{}n)} returns the list of matrices {\\em [(deltai,{}pi1(i)),{}...,{}(deltai,{}pik(i))]} if the permutations {\\em pi1},{}...,{}{\\em pik} are in list notation and are permuting {\\em {1,{}2,{}...,{}n}}.") (((|List| (|Matrix| (|Integer|))) (|List| (|Permutation| (|Integer|))) (|Integer|)) "\\spad{permutationRepresentation([pi1,{}...,{}pik],{}n)} returns the list of matrices {\\em [(deltai,{}pi1(i)),{}...,{}(deltai,{}pik(i))]} (Kronecker delta) for the permutations {\\em pi1,{}...,{}pik} of {\\em {1,{}2,{}...,{}n}}.") (((|Matrix| (|Integer|)) (|List| (|Integer|))) "\\spad{permutationRepresentation(\\spad{pi},{}n)} returns the matrix {\\em (deltai,{}\\spad{pi}(i))} (Kronecker delta) if the permutation {\\em \\spad{pi}} is in list notation and permutes {\\em {1,{}2,{}...,{}n}}.") (((|Matrix| (|Integer|)) (|Permutation| (|Integer|)) (|Integer|)) "\\spad{permutationRepresentation(\\spad{pi},{}n)} returns the matrix {\\em (deltai,{}\\spad{pi}(i))} (Kronecker delta) for a permutation {\\em \\spad{pi}} of {\\em {1,{}2,{}...,{}n}}.")) (|tensorProduct| (((|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|))) "\\spad{tensorProduct([a1,{}...ak])} calculates the list of Kronecker products of each matrix {\\em \\spad{ai}} with itself for {1 \\spad{<=} \\spad{i} \\spad{<=} \\spad{k}}. Note: If the list of matrices corresponds to a group representation (repr. of generators) of one group,{} then these matrices correspond to the tensor product of the representation with itself.") (((|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{tensorProduct(a)} calculates the Kronecker product of the matrix {\\em a} with itself.") (((|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|))) "\\spad{tensorProduct([a1,{}...,{}ak],{}[b1,{}...,{}bk])} calculates the list of Kronecker products of the matrices {\\em \\spad{ai}} and {\\em \\spad{bi}} for {1 \\spad{<=} \\spad{i} \\spad{<=} \\spad{k}}. Note: If each list of matrices corresponds to a group representation (repr. of generators) of one group,{} then these matrices correspond to the tensor product of the two representations.") (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{tensorProduct(a,{}b)} calculates the Kronecker product of the matrices {\\em a} and \\spad{b}. Note: if each matrix corresponds to a group representation (repr. of generators) of one group,{} then these matrices correspond to the tensor product of the two representations.")) (|symmetricTensors| (((|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|PositiveInteger|)) "\\spad{symmetricTensors(la,{}n)} applies to each \\spad{m}-by-\\spad{m} square matrix in the list {\\em la} the irreducible,{} polynomial representation of the general linear group {\\em GLm} which corresponds to the partition {\\em (n,{}0,{}...,{}0)} of \\spad{n}. Error: if the matrices in {\\em la} are not square matrices. Note: this corresponds to the symmetrization of the representation with the trivial representation of the symmetric group {\\em Sn}. The carrier spaces of the representation are the symmetric tensors of the \\spad{n}-fold tensor product.") (((|Matrix| |#1|) (|Matrix| |#1|) (|PositiveInteger|)) "\\spad{symmetricTensors(a,{}n)} applies to the \\spad{m}-by-\\spad{m} square matrix {\\em a} the irreducible,{} polynomial representation of the general linear group {\\em GLm} which corresponds to the partition {\\em (n,{}0,{}...,{}0)} of \\spad{n}. Error: if {\\em a} is not a square matrix. Note: this corresponds to the symmetrization of the representation with the trivial representation of the symmetric group {\\em Sn}. The carrier spaces of the representation are the symmetric tensors of the \\spad{n}-fold tensor product.")) (|createGenericMatrix| (((|Matrix| (|Polynomial| |#1|)) (|NonNegativeInteger|)) "\\spad{createGenericMatrix(m)} creates a square matrix of dimension \\spad{k} whose entry at the \\spad{i}-th row and \\spad{j}-th column is the indeterminate {\\em x[i,{}j]} (double subscripted).")) (|antisymmetricTensors| (((|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|PositiveInteger|)) "\\spad{antisymmetricTensors(la,{}n)} applies to each \\spad{m}-by-\\spad{m} square matrix in the list {\\em la} the irreducible,{} polynomial representation of the general linear group {\\em GLm} which corresponds to the partition {\\em (1,{}1,{}...,{}1,{}0,{}0,{}...,{}0)} of \\spad{n}. Error: if \\spad{n} is greater than \\spad{m}. Note: this corresponds to the symmetrization of the representation with the sign representation of the symmetric group {\\em Sn}. The carrier spaces of the representation are the antisymmetric tensors of the \\spad{n}-fold tensor product.") (((|Matrix| |#1|) (|Matrix| |#1|) (|PositiveInteger|)) "\\spad{antisymmetricTensors(a,{}n)} applies to the square matrix {\\em a} the irreducible,{} polynomial representation of the general linear group {\\em GLm},{} where \\spad{m} is the number of rows of {\\em a},{} which corresponds to the partition {\\em (1,{}1,{}...,{}1,{}0,{}0,{}...,{}0)} of \\spad{n}. Error: if \\spad{n} is greater than \\spad{m}. Note: this corresponds to the symmetrization of the representation with the sign representation of the symmetric group {\\em Sn}. The carrier spaces of the representation are the antisymmetric tensors of the \\spad{n}-fold tensor product.")))
NIL
-((|HasAttribute| |#1| (QUOTE (-4404 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4405 "*"))))
(-1024 R)
((|constructor| (NIL "RepresentationPackage2 provides functions for working with modular representations of finite groups and algebra. The routines in this package are created,{} using ideas of \\spad{R}. Parker,{} (the meat-Axe) to get smaller representations from bigger ones,{} \\spadignore{i.e.} finding sub- and factormodules,{} or to show,{} that such the representations are irreducible. Note: most functions are randomized functions of Las Vegas type \\spadignore{i.e.} every answer is correct,{} but with small probability the algorithm fails to get an answer.")) (|scanOneDimSubspaces| (((|Vector| |#1|) (|List| (|Vector| |#1|)) (|Integer|)) "\\spad{scanOneDimSubspaces(basis,{}n)} gives a canonical representative of the {\\em n}\\spad{-}th one-dimensional subspace of the vector space generated by the elements of {\\em basis},{} all from {\\em R**n}. The coefficients of the representative are of shape {\\em (0,{}...,{}0,{}1,{}*,{}...,{}*)},{} {\\em *} in \\spad{R}. If the size of \\spad{R} is \\spad{q},{} then there are {\\em (q**n-1)/(q-1)} of them. We first reduce \\spad{n} modulo this number,{} then find the largest \\spad{i} such that {\\em +/[q**i for i in 0..i-1] <= n}. Subtracting this sum of powers from \\spad{n} results in an \\spad{i}-digit number to \\spad{basis} \\spad{q}. This fills the positions of the stars.")) (|meatAxe| (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|PositiveInteger|)) "\\spad{meatAxe(aG,{} numberOfTries)} calls {\\em meatAxe(aG,{}true,{}numberOfTries,{}7)}. Notes: 7 covers the case of three-dimensional kernels over the field with 2 elements.") (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|Boolean|)) "\\spad{meatAxe(aG,{} randomElements)} calls {\\em meatAxe(aG,{}false,{}6,{}7)},{} only using Parker\\spad{'s} fingerprints,{} if {\\em randomElemnts} is \\spad{false}. If it is \\spad{true},{} it calls {\\em meatAxe(aG,{}true,{}25,{}7)},{} only using random elements. Note: the choice of 25 was rather arbitrary. Also,{} 7 covers the case of three-dimensional kernels over the field with 2 elements.") (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|))) "\\spad{meatAxe(aG)} calls {\\em meatAxe(aG,{}false,{}25,{}7)} returns a 2-list of representations as follows. All matrices of argument \\spad{aG} are assumed to be square and of equal size. Then \\spad{aG} generates a subalgebra,{} say \\spad{A},{} of the algebra of all square matrices of dimension \\spad{n}. {\\em V R} is an A-module in the usual way. meatAxe(\\spad{aG}) creates at most 25 random elements of the algebra,{} tests them for singularity. If singular,{} it tries at most 7 elements of its kernel to generate a proper submodule. If successful a list which contains first the list of the representations of the submodule,{} then a list of the representations of the factor module is returned. Otherwise,{} if we know that all the kernel is already scanned,{} Norton\\spad{'s} irreducibility test can be used either to prove irreducibility or to find the splitting. Notes: the first 6 tries use Parker\\spad{'s} fingerprints. Also,{} 7 covers the case of three-dimensional kernels over the field with 2 elements.") (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|Boolean|) (|Integer|) (|Integer|)) "\\spad{meatAxe(aG,{}randomElements,{}numberOfTries,{} maxTests)} returns a 2-list of representations as follows. All matrices of argument \\spad{aG} are assumed to be square and of equal size. Then \\spad{aG} generates a subalgebra,{} say \\spad{A},{} of the algebra of all square matrices of dimension \\spad{n}. {\\em V R} is an A-module in the usual way. meatAxe(\\spad{aG},{}\\spad{numberOfTries},{} maxTests) creates at most {\\em numberOfTries} random elements of the algebra,{} tests them for singularity. If singular,{} it tries at most {\\em maxTests} elements of its kernel to generate a proper submodule. If successful,{} a 2-list is returned: first,{} a list containing first the list of the representations of the submodule,{} then a list of the representations of the factor module. Otherwise,{} if we know that all the kernel is already scanned,{} Norton\\spad{'s} irreducibility test can be used either to prove irreducibility or to find the splitting. If {\\em randomElements} is {\\em false},{} the first 6 tries use Parker\\spad{'s} fingerprints.")) (|split| (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|Vector| (|Vector| |#1|))) "\\spad{split(aG,{}submodule)} uses a proper \\spad{submodule} of {\\em R**n} to create the representations of the \\spad{submodule} and of the factor module.") (((|List| (|List| (|Matrix| |#1|))) (|List| (|Matrix| |#1|)) (|Vector| |#1|)) "\\spad{split(aG,{} vector)} returns a subalgebra \\spad{A} of all square matrix of dimension \\spad{n} as a list of list of matrices,{} generated by the list of matrices \\spad{aG},{} where \\spad{n} denotes both the size of vector as well as the dimension of each of the square matrices. {\\em V R} is an A-module in the natural way. split(\\spad{aG},{} vector) then checks whether the cyclic submodule generated by {\\em vector} is a proper submodule of {\\em V R}. If successful,{} it returns a two-element list,{} which contains first the list of the representations of the submodule,{} then the list of the representations of the factor module. If the vector generates the whole module,{} a one-element list of the old representation is given. Note: a later version this should call the other split.")) (|isAbsolutelyIrreducible?| (((|Boolean|) (|List| (|Matrix| |#1|))) "\\spad{isAbsolutelyIrreducible?(aG)} calls {\\em isAbsolutelyIrreducible?(aG,{}25)}. Note: the choice of 25 was rather arbitrary.") (((|Boolean|) (|List| (|Matrix| |#1|)) (|Integer|)) "\\spad{isAbsolutelyIrreducible?(aG,{} numberOfTries)} uses Norton\\spad{'s} irreducibility test to check for absolute irreduciblity,{} assuming if a one-dimensional kernel is found. As no field extension changes create \"new\" elements in a one-dimensional space,{} the criterium stays \\spad{true} for every extension. The method looks for one-dimensionals only by creating random elements (no fingerprints) since a run of {\\em meatAxe} would have proved absolute irreducibility anyway.")) (|areEquivalent?| (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|Integer|)) "\\spad{areEquivalent?(aG0,{}aG1,{}numberOfTries)} calls {\\em areEquivalent?(aG0,{}aG1,{}true,{}25)}. Note: the choice of 25 was rather arbitrary.") (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|))) "\\spad{areEquivalent?(aG0,{}aG1)} calls {\\em areEquivalent?(aG0,{}aG1,{}true,{}25)}. Note: the choice of 25 was rather arbitrary.") (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|List| (|Matrix| |#1|)) (|Boolean|) (|Integer|)) "\\spad{areEquivalent?(aG0,{}aG1,{}randomelements,{}numberOfTries)} tests whether the two lists of matrices,{} all assumed of same square shape,{} can be simultaneously conjugated by a non-singular matrix. If these matrices represent the same group generators,{} the representations are equivalent. The algorithm tries {\\em numberOfTries} times to create elements in the generated algebras in the same fashion. If their ranks differ,{} they are not equivalent. If an isomorphism is assumed,{} then the kernel of an element of the first algebra is mapped to the kernel of the corresponding element in the second algebra. Now consider the one-dimensional ones. If they generate the whole space (\\spadignore{e.g.} irreducibility !) we use {\\em standardBasisOfCyclicSubmodule} to create the only possible transition matrix. The method checks whether the matrix conjugates all corresponding matrices from {\\em aGi}. The way to choose the singular matrices is as in {\\em meatAxe}. If the two representations are equivalent,{} this routine returns the transformation matrix {\\em TM} with {\\em aG0.i * TM = TM * aG1.i} for all \\spad{i}. If the representations are not equivalent,{} a small 0-matrix is returned. Note: the case with different sets of group generators cannot be handled.")) (|standardBasisOfCyclicSubmodule| (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|Vector| |#1|)) "\\spad{standardBasisOfCyclicSubmodule(lm,{}v)} returns a matrix as follows. It is assumed that the size \\spad{n} of the vector equals the number of rows and columns of the matrices. Then the matrices generate a subalgebra,{} say \\spad{A},{} of the algebra of all square matrices of dimension \\spad{n}. {\\em V R} is an \\spad{A}-module in the natural way. standardBasisOfCyclicSubmodule(\\spad{lm},{}\\spad{v}) calculates a matrix whose non-zero column vectors are the \\spad{R}-Basis of {\\em Av} achieved in the way as described in section 6 of \\spad{R}. A. Parker\\spad{'s} \"The Meat-Axe\". Note: in contrast to {\\em cyclicSubmodule},{} the result is not in echelon form.")) (|cyclicSubmodule| (((|Vector| (|Vector| |#1|)) (|List| (|Matrix| |#1|)) (|Vector| |#1|)) "\\spad{cyclicSubmodule(lm,{}v)} generates a basis as follows. It is assumed that the size \\spad{n} of the vector equals the number of rows and columns of the matrices. Then the matrices generate a subalgebra,{} say \\spad{A},{} of the algebra of all square matrices of dimension \\spad{n}. {\\em V R} is an \\spad{A}-module in the natural way. cyclicSubmodule(\\spad{lm},{}\\spad{v}) generates the \\spad{R}-Basis of {\\em Av} as described in section 6 of \\spad{R}. A. Parker\\spad{'s} \"The Meat-Axe\". Note: in contrast to the description in \"The Meat-Axe\" and to {\\em standardBasisOfCyclicSubmodule} the result is in echelon form.")) (|createRandomElement| (((|Matrix| |#1|) (|List| (|Matrix| |#1|)) (|Matrix| |#1|)) "\\spad{createRandomElement(aG,{}x)} creates a random element of the group algebra generated by {\\em aG}.")) (|completeEchelonBasis| (((|Matrix| |#1|) (|Vector| (|Vector| |#1|))) "\\spad{completeEchelonBasis(lv)} completes the basis {\\em lv} assumed to be in echelon form of a subspace of {\\em R**n} (\\spad{n} the length of all the vectors in {\\em lv}) with unit vectors to a basis of {\\em R**n}. It is assumed that the argument is not an empty vector and that it is not the basis of the 0-subspace. Note: the rows of the result correspond to the vectors of the basis.")))
NIL
@@ -4044,14 +4044,14 @@ NIL
((|constructor| (NIL "This package provides coercions for the special types \\spadtype{Exit} and \\spadtype{Void}.")) (|coerce| ((|#1| (|Exit|)) "\\spad{coerce(e)} is never really evaluated. This coercion is used for formal type correctness when a function will not return directly to its caller.") (((|Void|) |#1|) "\\spad{coerce(s)} throws all information about \\spad{s} away. This coercion allows values of any type to appear in contexts where they will not be used. For example,{} it allows the resolution of different types in the \\spad{then} and \\spad{else} branches when an \\spad{if} is in a context where the resulting value is not used.")))
NIL
NIL
-(-1029 -3197 |Expon| |VarSet| |FPol| |LFPol|)
+(-1029 -3196 |Expon| |VarSet| |FPol| |LFPol|)
((|constructor| (NIL "ResidueRing is the quotient of a polynomial ring by an ideal. The ideal is given as a list of generators. The elements of the domain are equivalence classes expressed in terms of reduced elements")) (|lift| ((|#4| $) "\\spad{lift(x)} return the canonical representative of the equivalence class \\spad{x}")) (|coerce| (($ |#4|) "\\spad{coerce(f)} produces the equivalence class of \\spad{f} in the residue ring")) (|reduce| (($ |#4|) "\\spad{reduce(f)} produces the equivalence class of \\spad{f} in the residue ring")))
-(((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1030)
((|constructor| (NIL "A domain used to return the results from a call to the NAG Library. It prints as a list of names and types,{} though the user may choose to display values automatically if he or she wishes.")) (|showArrayValues| (((|Boolean|) (|Boolean|)) "\\spad{showArrayValues(true)} forces the values of array components to be \\indented{1}{displayed rather than just their types.}")) (|showScalarValues| (((|Boolean|) (|Boolean|)) "\\spad{showScalarValues(true)} forces the values of scalar components to be \\indented{1}{displayed rather than just their types.}")))
-((-4402 . T) (-4403 . T))
-((-12 (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2694) (QUOTE (-52))))))) (-4037 (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (QUOTE (-1092))) (|HasCategory| (-52) (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -308) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (QUOTE (-1092))) (|HasCategory| (-1168) (QUOTE (-845))) (|HasCategory| (-52) (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))))
+((-4403 . T) (-4404 . T))
+((-12 (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2693) (QUOTE (-52))))))) (-4037 (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (QUOTE (-1092))) (|HasCategory| (-52) (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -308) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (QUOTE (-1092))) (|HasCategory| (-1168) (QUOTE (-845))) (|HasCategory| (-52) (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))))
(-1031)
((|constructor| (NIL "This domain represents `return' expressions.")) (|expression| (((|SpadAst|) $) "\\spad{expression(e)} returns the expression returned by `e'.")))
NIL
@@ -4094,7 +4094,7 @@ NIL
NIL
(-1041 R |ls|)
((|constructor| (NIL "A domain for regular chains (\\spadignore{i.e.} regular triangular sets) over a \\spad{Gcd}-Domain and with a fix list of variables. This is just a front-end for the \\spadtype{RegularTriangularSet} domain constructor.")) (|zeroSetSplit| (((|List| $) (|List| (|NewSparseMultivariatePolynomial| |#1| (|OrderedVariableList| |#2|))) (|Boolean|) (|Boolean|)) "\\spad{zeroSetSplit(lp,{}clos?,{}info?)} returns a list \\spad{lts} of regular chains such that the union of the closures of their regular zero sets equals the affine variety associated with \\spad{lp}. Moreover,{} if \\spad{clos?} is \\spad{false} then the union of the regular zero set of the \\spad{ts} (for \\spad{ts} in \\spad{lts}) equals this variety. If \\spad{info?} is \\spad{true} then some information is displayed during the computations. See \\axiomOpFrom{zeroSetSplit}{RegularTriangularSet}.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-12 (|HasCategory| (-775 |#1| (-859 |#2|)) (QUOTE (-1092))) (|HasCategory| (-775 |#1| (-859 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -775) (|devaluate| |#1|) (LIST (QUOTE -859) (|devaluate| |#2|)))))) (|HasCategory| (-775 |#1| (-859 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-775 |#1| (-859 |#2|)) (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| (-859 |#2|) (QUOTE (-367))) (|HasCategory| (-775 |#1| (-859 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))))
(-1042)
((|constructor| (NIL "This package exports integer distributions")) (|ridHack1| (((|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{ridHack1(i,{}j,{}k,{}l)} \\undocumented")) (|geometric| (((|Mapping| (|Integer|)) |RationalNumber|) "\\spad{geometric(f)} \\undocumented")) (|poisson| (((|Mapping| (|Integer|)) |RationalNumber|) "\\spad{poisson(f)} \\undocumented")) (|binomial| (((|Mapping| (|Integer|)) (|Integer|) |RationalNumber|) "\\spad{binomial(n,{}f)} \\undocumented")) (|uniform| (((|Mapping| (|Integer|)) (|Segment| (|Integer|))) "\\spad{uniform(s)} \\undocumented")))
@@ -4106,9 +4106,9 @@ NIL
NIL
(-1044)
((|constructor| (NIL "The category of rings with unity,{} always associative,{} but not necessarily commutative.")) (|unitsKnown| ((|attribute|) "recip truly yields reciprocal or \"failed\" if not a unit. Note: \\spad{recip(0) = \"failed\"}.")) (|characteristic| (((|NonNegativeInteger|)) "\\spad{characteristic()} returns the characteristic of the ring this is the smallest positive integer \\spad{n} such that \\spad{n*x=0} for all \\spad{x} in the ring,{} or zero if no such \\spad{n} exists.")))
-((-4399 . T))
+((-4400 . T))
NIL
-(-1045 |xx| -3197)
+(-1045 |xx| -3196)
((|constructor| (NIL "This package exports rational interpolation algorithms")))
NIL
NIL
@@ -4118,11 +4118,11 @@ NIL
((|HasCategory| |#4| (QUOTE (-306))) (|HasCategory| |#4| (QUOTE (-362))) (|HasCategory| |#4| (QUOTE (-554))) (|HasCategory| |#4| (QUOTE (-171))))
(-1047 |m| |n| R |Row| |Col|)
((|constructor| (NIL "\\spadtype{RectangularMatrixCategory} is a category of matrices of fixed dimensions. The dimensions of the matrix will be parameters of the domain. Domains in this category will be \\spad{R}-modules and will be non-mutable.")) (|nullSpace| (((|List| |#5|) $) "\\spad{nullSpace(m)}+ returns a basis for the null space of the matrix \\spad{m}.")) (|nullity| (((|NonNegativeInteger|) $) "\\spad{nullity(m)} returns the nullity of the matrix \\spad{m}. This is the dimension of the null space of the matrix \\spad{m}.")) (|rank| (((|NonNegativeInteger|) $) "\\spad{rank(m)} returns the rank of the matrix \\spad{m}.")) (|rowEchelon| (($ $) "\\spad{rowEchelon(m)} returns the row echelon form of the matrix \\spad{m}.")) (/ (($ $ |#3|) "\\spad{m/r} divides the elements of \\spad{m} by \\spad{r}. Error: if \\spad{r = 0}.")) (|exquo| (((|Union| $ "failed") $ |#3|) "\\spad{exquo(m,{}r)} computes the exact quotient of the elements of \\spad{m} by \\spad{r},{} returning \\axiom{\"failed\"} if this is not possible.")) (|map| (($ (|Mapping| |#3| |#3| |#3|) $ $) "\\spad{map(f,{}a,{}b)} returns \\spad{c},{} where \\spad{c} is such that \\spad{c(i,{}j) = f(a(i,{}j),{}b(i,{}j))} for all \\spad{i},{} \\spad{j}.") (($ (|Mapping| |#3| |#3|) $) "\\spad{map(f,{}a)} returns \\spad{b},{} where \\spad{b(i,{}j) = a(i,{}j)} for all \\spad{i},{} \\spad{j}.")) (|column| ((|#5| $ (|Integer|)) "\\spad{column(m,{}j)} returns the \\spad{j}th column of the matrix \\spad{m}. Error: if the index outside the proper range.")) (|row| ((|#4| $ (|Integer|)) "\\spad{row(m,{}i)} returns the \\spad{i}th row of the matrix \\spad{m}. Error: if the index is outside the proper range.")) (|qelt| ((|#3| $ (|Integer|) (|Integer|)) "\\spad{qelt(m,{}i,{}j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the matrix \\spad{m}. Note: there is NO error check to determine if indices are in the proper ranges.")) (|elt| ((|#3| $ (|Integer|) (|Integer|) |#3|) "\\spad{elt(m,{}i,{}j,{}r)} returns the element in the \\spad{i}th row and \\spad{j}th column of the matrix \\spad{m},{} if \\spad{m} has an \\spad{i}th row and a \\spad{j}th column,{} and returns \\spad{r} otherwise.") ((|#3| $ (|Integer|) (|Integer|)) "\\spad{elt(m,{}i,{}j)} returns the element in the \\spad{i}th row and \\spad{j}th column of the matrix \\spad{m}. Error: if indices are outside the proper ranges.")) (|listOfLists| (((|List| (|List| |#3|)) $) "\\spad{listOfLists(m)} returns the rows of the matrix \\spad{m} as a list of lists.")) (|ncols| (((|NonNegativeInteger|) $) "\\spad{ncols(m)} returns the number of columns in the matrix \\spad{m}.")) (|nrows| (((|NonNegativeInteger|) $) "\\spad{nrows(m)} returns the number of rows in the matrix \\spad{m}.")) (|maxColIndex| (((|Integer|) $) "\\spad{maxColIndex(m)} returns the index of the 'last' column of the matrix \\spad{m}.")) (|minColIndex| (((|Integer|) $) "\\spad{minColIndex(m)} returns the index of the 'first' column of the matrix \\spad{m}.")) (|maxRowIndex| (((|Integer|) $) "\\spad{maxRowIndex(m)} returns the index of the 'last' row of the matrix \\spad{m}.")) (|minRowIndex| (((|Integer|) $) "\\spad{minRowIndex(m)} returns the index of the 'first' row of the matrix \\spad{m}.")) (|antisymmetric?| (((|Boolean|) $) "\\spad{antisymmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and antisymmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = -m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|symmetric?| (((|Boolean|) $) "\\spad{symmetric?(m)} returns \\spad{true} if the matrix \\spad{m} is square and symmetric (\\spadignore{i.e.} \\spad{m[i,{}j] = m[j,{}i]} for all \\spad{i} and \\spad{j}) and \\spad{false} otherwise.")) (|diagonal?| (((|Boolean|) $) "\\spad{diagonal?(m)} returns \\spad{true} if the matrix \\spad{m} is square and diagonal (\\spadignore{i.e.} all entries of \\spad{m} not on the diagonal are zero) and \\spad{false} otherwise.")) (|square?| (((|Boolean|) $) "\\spad{square?(m)} returns \\spad{true} if \\spad{m} is a square matrix (\\spadignore{i.e.} if \\spad{m} has the same number of rows as columns) and \\spad{false} otherwise.")) (|matrix| (($ (|List| (|List| |#3|))) "\\spad{matrix(l)} converts the list of lists \\spad{l} to a matrix,{} where the list of lists is viewed as a list of the rows of the matrix.")) (|finiteAggregate| ((|attribute|) "matrices are finite")))
-((-4402 . T) (-4397 . T) (-4396 . T))
+((-4403 . T) (-4398 . T) (-4397 . T))
NIL
(-1048 |m| |n| R)
((|constructor| (NIL "\\spadtype{RectangularMatrix} is a matrix domain where the number of rows and the number of columns are parameters of the domain.")) (|rectangularMatrix| (($ (|Matrix| |#3|)) "\\spad{rectangularMatrix(m)} converts a matrix of type \\spadtype{Matrix} to a matrix of type \\spad{RectangularMatrix}.")))
-((-4402 . T) (-4397 . T) (-4396 . T))
+((-4403 . T) (-4398 . T) (-4397 . T))
((-4037 (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|))))) (|HasCategory| |#3| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-362)))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (QUOTE (-306))) (|HasCategory| |#3| (QUOTE (-554))) (|HasCategory| |#3| (QUOTE (-171))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -609) (QUOTE (-857)))))
(-1049 |m| |n| R1 |Row1| |Col1| M1 R2 |Row2| |Col2| M2)
((|constructor| (NIL "\\spadtype{RectangularMatrixCategoryFunctions2} provides functions between two matrix domains. The functions provided are \\spadfun{map} and \\spadfun{reduce}.")) (|reduce| ((|#7| (|Mapping| |#7| |#3| |#7|) |#6| |#7|) "\\spad{reduce(f,{}m,{}r)} returns a matrix \\spad{n} where \\spad{n[i,{}j] = f(m[i,{}j],{}r)} for all indices spad{\\spad{i}} and \\spad{j}.")) (|map| ((|#10| (|Mapping| |#7| |#3|) |#6|) "\\spad{map(f,{}m)} applies the function \\spad{f} to the elements of the matrix \\spad{m}.")))
@@ -4142,7 +4142,7 @@ NIL
NIL
(-1053)
((|constructor| (NIL "The real number system category is intended as a model for the real numbers. The real numbers form an ordered normed field. Note that we have purposely not included \\spadtype{DifferentialRing} or the elementary functions (see \\spadtype{TranscendentalFunctionCategory}) in the definition.")) (|abs| (($ $) "\\spad{abs x} returns the absolute value of \\spad{x}.")) (|round| (($ $) "\\spad{round x} computes the integer closest to \\spad{x}.")) (|truncate| (($ $) "\\spad{truncate x} returns the integer between \\spad{x} and 0 closest to \\spad{x}.")) (|fractionPart| (($ $) "\\spad{fractionPart x} returns the fractional part of \\spad{x}.")) (|wholePart| (((|Integer|) $) "\\spad{wholePart x} returns the integer part of \\spad{x}.")) (|floor| (($ $) "\\spad{floor x} returns the largest integer \\spad{<= x}.")) (|ceiling| (($ $) "\\spad{ceiling x} returns the small integer \\spad{>= x}.")) (|norm| (($ $) "\\spad{norm x} returns the same as absolute value.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1054 |TheField| |ThePolDom|)
((|constructor| (NIL "\\axiomType{RightOpenIntervalRootCharacterization} provides work with interval root coding.")) (|relativeApprox| ((|#1| |#2| $ |#1|) "\\axiom{relativeApprox(exp,{}\\spad{c},{}\\spad{p}) = a} is relatively close to exp as a polynomial in \\spad{c} ip to precision \\spad{p}")) (|mightHaveRoots| (((|Boolean|) |#2| $) "\\axiom{mightHaveRoots(\\spad{p},{}\\spad{r})} is \\spad{false} if \\axiom{\\spad{p}.\\spad{r}} is not 0")) (|refine| (($ $) "\\axiom{refine(rootChar)} shrinks isolating interval around \\axiom{rootChar}")) (|middle| ((|#1| $) "\\axiom{middle(rootChar)} is the middle of the isolating interval")) (|size| ((|#1| $) "The size of the isolating interval")) (|right| ((|#1| $) "\\axiom{right(rootChar)} is the right bound of the isolating interval")) (|left| ((|#1| $) "\\axiom{left(rootChar)} is the left bound of the isolating interval")))
@@ -4150,19 +4150,19 @@ NIL
NIL
(-1055)
((|constructor| (NIL "\\spadtype{RomanNumeral} provides functions for converting \\indented{1}{integers to roman numerals.}")) (|roman| (($ (|Integer|)) "\\spad{roman(n)} creates a roman numeral for \\spad{n}.") (($ (|Symbol|)) "\\spad{roman(n)} creates a roman numeral for symbol \\spad{n}.")) (|noetherian| ((|attribute|) "ascending chain condition on ideals.")) (|canonicalsClosed| ((|attribute|) "two positives multiply to give positive.")) (|canonical| ((|attribute|) "mathematical equality is data structure equality.")))
-((-4390 . T) (-4394 . T) (-4389 . T) (-4400 . T) (-4401 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4391 . T) (-4395 . T) (-4390 . T) (-4401 . T) (-4402 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1056)
((|constructor| (NIL "\\axiomType{RoutinesTable} implements a database and associated tuning mechanisms for a set of known NAG routines")) (|recoverAfterFail| (((|Union| (|String|) "failed") $ (|String|) (|Integer|)) "\\spad{recoverAfterFail(routs,{}routineName,{}ifailValue)} acts on the instructions given by the ifail list")) (|showTheRoutinesTable| (($) "\\spad{showTheRoutinesTable()} returns the current table of NAG routines.")) (|deleteRoutine!| (($ $ (|Symbol|)) "\\spad{deleteRoutine!(R,{}s)} destructively deletes the given routine from the current database of NAG routines")) (|getExplanations| (((|List| (|String|)) $ (|String|)) "\\spad{getExplanations(R,{}s)} gets the explanations of the output parameters for the given NAG routine.")) (|getMeasure| (((|Float|) $ (|Symbol|)) "\\spad{getMeasure(R,{}s)} gets the current value of the maximum measure for the given NAG routine.")) (|changeMeasure| (($ $ (|Symbol|) (|Float|)) "\\spad{changeMeasure(R,{}s,{}newValue)} changes the maximum value for a measure of the given NAG routine.")) (|changeThreshhold| (($ $ (|Symbol|) (|Float|)) "\\spad{changeThreshhold(R,{}s,{}newValue)} changes the value below which,{} given a NAG routine generating a higher measure,{} the routines will make no attempt to generate a measure.")) (|selectMultiDimensionalRoutines| (($ $) "\\spad{selectMultiDimensionalRoutines(R)} chooses only those routines from the database which are designed for use with multi-dimensional expressions")) (|selectNonFiniteRoutines| (($ $) "\\spad{selectNonFiniteRoutines(R)} chooses only those routines from the database which are designed for use with non-finite expressions.")) (|selectSumOfSquaresRoutines| (($ $) "\\spad{selectSumOfSquaresRoutines(R)} chooses only those routines from the database which are designed for use with sums of squares")) (|selectFiniteRoutines| (($ $) "\\spad{selectFiniteRoutines(R)} chooses only those routines from the database which are designed for use with finite expressions")) (|selectODEIVPRoutines| (($ $) "\\spad{selectODEIVPRoutines(R)} chooses only those routines from the database which are for the solution of ODE\\spad{'s}")) (|selectPDERoutines| (($ $) "\\spad{selectPDERoutines(R)} chooses only those routines from the database which are for the solution of PDE\\spad{'s}")) (|selectOptimizationRoutines| (($ $) "\\spad{selectOptimizationRoutines(R)} chooses only those routines from the database which are for integration")) (|selectIntegrationRoutines| (($ $) "\\spad{selectIntegrationRoutines(R)} chooses only those routines from the database which are for integration")) (|routines| (($) "\\spad{routines()} initialises a database of known NAG routines")) (|concat| (($ $ $) "\\spad{concat(x,{}y)} merges two tables \\spad{x} and \\spad{y}")))
-((-4402 . T) (-4403 . T))
-((-12 (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2694) (QUOTE (-52))))))) (-4037 (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (QUOTE (-1092))) (|HasCategory| (-52) (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -308) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (QUOTE (-1092))) (|HasCategory| (-1168) (QUOTE (-845))) (|HasCategory| (-52) (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))))
+((-4403 . T) (-4404 . T))
+((-12 (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2693) (QUOTE (-52))))))) (-4037 (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (QUOTE (-1092))) (|HasCategory| (-52) (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| (-52) (QUOTE (-1092))) (|HasCategory| (-52) (LIST (QUOTE -308) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (QUOTE (-1092))) (|HasCategory| (-1168) (QUOTE (-845))) (|HasCategory| (-52) (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-52) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (LIST (QUOTE -609) (QUOTE (-857)))))
(-1057 S R E V)
((|constructor| (NIL "A category for general multi-variate polynomials with coefficients in a ring,{} variables in an ordered set,{} and exponents from an ordered abelian monoid,{} with a \\axiomOp{sup} operation. When not constant,{} such a polynomial is viewed as a univariate polynomial in its main variable \\spad{w}. \\spad{r}. \\spad{t}. to the total ordering on the elements in the ordered set,{} so that some operations usually defined for univariate polynomials make sense here.")) (|mainSquareFreePart| (($ $) "\\axiom{mainSquareFreePart(\\spad{p})} returns the square free part of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|mainPrimitivePart| (($ $) "\\axiom{mainPrimitivePart(\\spad{p})} returns the primitive part of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|mainContent| (($ $) "\\axiom{mainContent(\\spad{p})} returns the content of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|primitivePart!| (($ $) "\\axiom{primitivePart!(\\spad{p})} replaces \\axiom{\\spad{p}} by its primitive part.")) (|gcd| ((|#2| |#2| $) "\\axiom{\\spad{gcd}(\\spad{r},{}\\spad{p})} returns the \\spad{gcd} of \\axiom{\\spad{r}} and the content of \\axiom{\\spad{p}}.")) (|nextsubResultant2| (($ $ $ $ $) "\\axiom{nextsubResultant2(\\spad{p},{}\\spad{q},{}\\spad{z},{}\\spad{s})} is the multivariate version of the operation \\axiomOpFrom{next_sousResultant2}{PseudoRemainderSequence} from the \\axiomType{PseudoRemainderSequence} constructor.")) (|LazardQuotient2| (($ $ $ $ (|NonNegativeInteger|)) "\\axiom{LazardQuotient2(\\spad{p},{}a,{}\\spad{b},{}\\spad{n})} returns \\axiom{(a**(\\spad{n}-1) * \\spad{p}) exquo \\spad{b**}(\\spad{n}-1)} assuming that this quotient does not fail.")) (|LazardQuotient| (($ $ $ (|NonNegativeInteger|)) "\\axiom{LazardQuotient(a,{}\\spad{b},{}\\spad{n})} returns \\axiom{a**n exquo \\spad{b**}(\\spad{n}-1)} assuming that this quotient does not fail.")) (|lastSubResultant| (($ $ $) "\\axiom{lastSubResultant(a,{}\\spad{b})} returns the last non-zero subresultant of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}}.")) (|subResultantChain| (((|List| $) $ $) "\\axiom{subResultantChain(a,{}\\spad{b})},{} where \\axiom{a} and \\axiom{\\spad{b}} are not contant polynomials with the same main variable,{} returns the subresultant chain of \\axiom{a} and \\axiom{\\spad{b}}.")) (|resultant| (($ $ $) "\\axiom{resultant(a,{}\\spad{b})} computes the resultant of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}}.")) (|halfExtendedSubResultantGcd2| (((|Record| (|:| |gcd| $) (|:| |coef2| $)) $ $) "\\axiom{halfExtendedSubResultantGcd2(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}\\spad{cb}]} if \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{}\\spad{cb}]} otherwise produces an error.")) (|halfExtendedSubResultantGcd1| (((|Record| (|:| |gcd| $) (|:| |coef1| $)) $ $) "\\axiom{halfExtendedSubResultantGcd1(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca]} if \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{}\\spad{cb}]} otherwise produces an error.")) (|extendedSubResultantGcd| (((|Record| (|:| |gcd| $) (|:| |coef1| $) (|:| |coef2| $)) $ $) "\\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[ca,{}\\spad{cb},{}\\spad{r}]} such that \\axiom{\\spad{r}} is \\axiom{subResultantGcd(a,{}\\spad{b})} and we have \\axiom{ca * a + \\spad{cb} * \\spad{cb} = \\spad{r}} .")) (|subResultantGcd| (($ $ $) "\\axiom{subResultantGcd(a,{}\\spad{b})} computes a \\spad{gcd} of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}} with coefficients in the fraction field of the polynomial ring generated by their other variables over \\axiom{\\spad{R}}.")) (|exactQuotient!| (($ $ $) "\\axiom{exactQuotient!(a,{}\\spad{b})} replaces \\axiom{a} by \\axiom{exactQuotient(a,{}\\spad{b})}") (($ $ |#2|) "\\axiom{exactQuotient!(\\spad{p},{}\\spad{r})} replaces \\axiom{\\spad{p}} by \\axiom{exactQuotient(\\spad{p},{}\\spad{r})}.")) (|exactQuotient| (($ $ $) "\\axiom{exactQuotient(a,{}\\spad{b})} computes the exact quotient of \\axiom{a} by \\axiom{\\spad{b}},{} which is assumed to be a divisor of \\axiom{a}. No error is returned if this exact quotient fails!") (($ $ |#2|) "\\axiom{exactQuotient(\\spad{p},{}\\spad{r})} computes the exact quotient of \\axiom{\\spad{p}} by \\axiom{\\spad{r}},{} which is assumed to be a divisor of \\axiom{\\spad{p}}. No error is returned if this exact quotient fails!")) (|primPartElseUnitCanonical!| (($ $) "\\axiom{primPartElseUnitCanonical!(\\spad{p})} replaces \\axiom{\\spad{p}} by \\axiom{primPartElseUnitCanonical(\\spad{p})}.")) (|primPartElseUnitCanonical| (($ $) "\\axiom{primPartElseUnitCanonical(\\spad{p})} returns \\axiom{primitivePart(\\spad{p})} if \\axiom{\\spad{R}} is a \\spad{gcd}-domain,{} otherwise \\axiom{unitCanonical(\\spad{p})}.")) (|convert| (($ (|Polynomial| |#2|)) "\\axiom{convert(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}},{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}.") (($ (|Polynomial| (|Integer|))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}") (($ (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}.")) (|retract| (($ (|Polynomial| |#2|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| |#2|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| |#2|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.")) (|retractIfCan| (((|Union| $ "failed") (|Polynomial| |#2|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| |#2|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| |#2|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.")) (|initiallyReduce| (($ $ $) "\\axiom{initiallyReduce(a,{}\\spad{b})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{initiallyReduced?(\\spad{r},{}\\spad{b})} holds and there exists an integer \\axiom{\\spad{e}} such that \\axiom{init(\\spad{b})^e a - \\spad{r}} is zero modulo \\axiom{\\spad{b}}.")) (|headReduce| (($ $ $) "\\axiom{headReduce(a,{}\\spad{b})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{headReduced?(\\spad{r},{}\\spad{b})} holds and there exists an integer \\axiom{\\spad{e}} such that \\axiom{init(\\spad{b})^e a - \\spad{r}} is zero modulo \\axiom{\\spad{b}}.")) (|lazyResidueClass| (((|Record| (|:| |polnum| $) (|:| |polden| $) (|:| |power| (|NonNegativeInteger|))) $ $) "\\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{p},{}\\spad{q},{}\\spad{n}]} where \\axiom{\\spad{p} / q**n} represents the residue class of \\axiom{a} modulo \\axiom{\\spad{b}} and \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and \\axiom{\\spad{q}} is \\axiom{init(\\spad{b})}.")) (|monicModulo| (($ $ $) "\\axiom{monicModulo(a,{}\\spad{b})} computes \\axiom{a mod \\spad{b}},{} if \\axiom{\\spad{b}} is monic as univariate polynomial in its main variable.")) (|pseudoDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{pseudoDivide(a,{}\\spad{b})} computes \\axiom{[pquo(a,{}\\spad{b}),{}prem(a,{}\\spad{b})]},{} both polynomials viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}},{} if \\axiom{\\spad{b}} is not a constant polynomial.")) (|lazyPseudoDivide| (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $ |#4|) "\\axiom{lazyPseudoDivide(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b},{}\\spad{v})},{} \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b},{}\\spad{v})} and \\axiom{\\spad{q}} is the pseudo-quotient computed in this lazy pseudo-division.") (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}] = lazyPremWithDefault(a,{}\\spad{b})} and \\axiom{\\spad{q}} is the pseudo-quotient computed in this lazy pseudo-division.")) (|lazyPremWithDefault| (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |remainder| $)) $ $ |#4|) "\\axiom{lazyPremWithDefault(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b},{}\\spad{v})} and \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b},{}\\spad{v})}.") (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |remainder| $)) $ $) "\\axiom{lazyPremWithDefault(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b})} and \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b})}.")) (|lazyPquo| (($ $ $ |#4|) "\\axiom{lazyPquo(a,{}\\spad{b},{}\\spad{v})} returns the polynomial \\axiom{\\spad{q}} such that \\axiom{lazyPseudoDivide(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}.") (($ $ $) "\\axiom{lazyPquo(a,{}\\spad{b})} returns the polynomial \\axiom{\\spad{q}} such that \\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}.")) (|lazyPrem| (($ $ $ |#4|) "\\axiom{lazyPrem(a,{}\\spad{b},{}\\spad{v})} returns the polynomial \\axiom{\\spad{r}} reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} viewed as univariate polynomials in the variable \\axiom{\\spad{v}} such that \\axiom{\\spad{b}} divides \\axiom{init(\\spad{b})^e a - \\spad{r}} where \\axiom{\\spad{e}} is the number of steps of this pseudo-division.") (($ $ $) "\\axiom{lazyPrem(a,{}\\spad{b})} returns the polynomial \\axiom{\\spad{r}} reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and such that \\axiom{\\spad{b}} divides \\axiom{init(\\spad{b})^e a - \\spad{r}} where \\axiom{\\spad{e}} is the number of steps of this pseudo-division.")) (|pquo| (($ $ $ |#4|) "\\axiom{pquo(a,{}\\spad{b},{}\\spad{v})} computes the pseudo-quotient of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in \\axiom{\\spad{v}}.") (($ $ $) "\\axiom{pquo(a,{}\\spad{b})} computes the pseudo-quotient of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}}.")) (|prem| (($ $ $ |#4|) "\\axiom{prem(a,{}\\spad{b},{}\\spad{v})} computes the pseudo-remainder of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in \\axiom{\\spad{v}}.") (($ $ $) "\\axiom{prem(a,{}\\spad{b})} computes the pseudo-remainder of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}}.")) (|normalized?| (((|Boolean|) $ (|List| $)) "\\axiom{normalized?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{normalized?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{normalized?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{a} and its iterated initials have degree zero \\spad{w}.\\spad{r}.\\spad{t}. the main variable of \\axiom{\\spad{b}}")) (|initiallyReduced?| (((|Boolean|) $ (|List| $)) "\\axiom{initiallyReduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{initiallyReduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{initiallyReduced?(a,{}\\spad{b})} returns \\spad{false} iff there exists an iterated initial of \\axiom{a} which is not reduced \\spad{w}.\\spad{r}.\\spad{t} \\axiom{\\spad{b}}.")) (|headReduced?| (((|Boolean|) $ (|List| $)) "\\axiom{headReduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{headReduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{headReduced?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{degree(head(a),{}mvar(\\spad{b})) < mdeg(\\spad{b})}.")) (|reduced?| (((|Boolean|) $ (|List| $)) "\\axiom{reduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{reduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{reduced?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{degree(a,{}mvar(\\spad{b})) < mdeg(\\spad{b})}.")) (|supRittWu?| (((|Boolean|) $ $) "\\axiom{supRittWu?(a,{}\\spad{b})} returns \\spad{true} if \\axiom{a} is greater than \\axiom{\\spad{b}} \\spad{w}.\\spad{r}.\\spad{t}. the Ritt and Wu Wen Tsun ordering using the refinement of Lazard.")) (|infRittWu?| (((|Boolean|) $ $) "\\axiom{infRittWu?(a,{}\\spad{b})} returns \\spad{true} if \\axiom{a} is less than \\axiom{\\spad{b}} \\spad{w}.\\spad{r}.\\spad{t}. the Ritt and Wu Wen Tsun ordering using the refinement of Lazard.")) (|RittWuCompare| (((|Union| (|Boolean|) "failed") $ $) "\\axiom{RittWuCompare(a,{}\\spad{b})} returns \\axiom{\"failed\"} if \\axiom{a} and \\axiom{\\spad{b}} have same rank \\spad{w}.\\spad{r}.\\spad{t}. Ritt and Wu Wen Tsun ordering using the refinement of Lazard,{} otherwise returns \\axiom{infRittWu?(a,{}\\spad{b})}.")) (|mainMonomials| (((|List| $) $) "\\axiom{mainMonomials(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns [1],{} otherwise returns the list of the monomials of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mainCoefficients| (((|List| $) $) "\\axiom{mainCoefficients(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns [\\spad{p}],{} otherwise returns the list of the coefficients of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|leastMonomial| (($ $) "\\axiom{leastMonomial(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{1},{} otherwise,{} the monomial of \\axiom{\\spad{p}} with lowest degree,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mainMonomial| (($ $) "\\axiom{mainMonomial(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{1},{} otherwise,{} \\axiom{mvar(\\spad{p})} raised to the power \\axiom{mdeg(\\spad{p})}.")) (|quasiMonic?| (((|Boolean|) $) "\\axiom{quasiMonic?(\\spad{p})} returns \\spad{false} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns \\spad{true} iff the initial of \\axiom{\\spad{p}} lies in the base ring \\axiom{\\spad{R}}.")) (|monic?| (((|Boolean|) $) "\\axiom{monic?(\\spad{p})} returns \\spad{false} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns \\spad{true} iff \\axiom{\\spad{p}} is monic as a univariate polynomial in its main variable.")) (|reductum| (($ $ |#4|) "\\axiom{reductum(\\spad{p},{}\\spad{v})} returns the reductum of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in \\axiom{\\spad{v}}.")) (|leadingCoefficient| (($ $ |#4|) "\\axiom{leadingCoefficient(\\spad{p},{}\\spad{v})} returns the leading coefficient of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as A univariate polynomial in \\axiom{\\spad{v}}.")) (|deepestInitial| (($ $) "\\axiom{deepestInitial(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns the last term of \\axiom{iteratedInitials(\\spad{p})}.")) (|iteratedInitials| (((|List| $) $) "\\axiom{iteratedInitials(\\spad{p})} returns \\axiom{[]} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns the list of the iterated initials of \\axiom{\\spad{p}}.")) (|deepestTail| (($ $) "\\axiom{deepestTail(\\spad{p})} returns \\axiom{0} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns tail(\\spad{p}),{} if \\axiom{tail(\\spad{p})} belongs to \\axiom{\\spad{R}} or \\axiom{mvar(tail(\\spad{p})) < mvar(\\spad{p})},{} otherwise returns \\axiom{deepestTail(tail(\\spad{p}))}.")) (|tail| (($ $) "\\axiom{tail(\\spad{p})} returns its reductum,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|head| (($ $) "\\axiom{head(\\spad{p})} returns \\axiom{\\spad{p}} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its leading term (monomial in the AXIOM sense),{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|init| (($ $) "\\axiom{init(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its leading coefficient,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mdeg| (((|NonNegativeInteger|) $) "\\axiom{mdeg(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{0},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{0},{} otherwise,{} returns the degree of \\axiom{\\spad{p}} in its main variable.")) (|mvar| ((|#4| $) "\\axiom{mvar(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its main variable \\spad{w}. \\spad{r}. \\spad{t}. to the total ordering on the elements in \\axiom{\\spad{V}}.")))
NIL
((|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-544))) (|HasCategory| |#2| (LIST (QUOTE -38) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -987) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-1168)))))
(-1058 R E V)
((|constructor| (NIL "A category for general multi-variate polynomials with coefficients in a ring,{} variables in an ordered set,{} and exponents from an ordered abelian monoid,{} with a \\axiomOp{sup} operation. When not constant,{} such a polynomial is viewed as a univariate polynomial in its main variable \\spad{w}. \\spad{r}. \\spad{t}. to the total ordering on the elements in the ordered set,{} so that some operations usually defined for univariate polynomials make sense here.")) (|mainSquareFreePart| (($ $) "\\axiom{mainSquareFreePart(\\spad{p})} returns the square free part of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|mainPrimitivePart| (($ $) "\\axiom{mainPrimitivePart(\\spad{p})} returns the primitive part of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|mainContent| (($ $) "\\axiom{mainContent(\\spad{p})} returns the content of \\axiom{\\spad{p}} viewed as a univariate polynomial in its main variable and with coefficients in the polynomial ring generated by its other variables over \\axiom{\\spad{R}}.")) (|primitivePart!| (($ $) "\\axiom{primitivePart!(\\spad{p})} replaces \\axiom{\\spad{p}} by its primitive part.")) (|gcd| ((|#1| |#1| $) "\\axiom{\\spad{gcd}(\\spad{r},{}\\spad{p})} returns the \\spad{gcd} of \\axiom{\\spad{r}} and the content of \\axiom{\\spad{p}}.")) (|nextsubResultant2| (($ $ $ $ $) "\\axiom{nextsubResultant2(\\spad{p},{}\\spad{q},{}\\spad{z},{}\\spad{s})} is the multivariate version of the operation \\axiomOpFrom{next_sousResultant2}{PseudoRemainderSequence} from the \\axiomType{PseudoRemainderSequence} constructor.")) (|LazardQuotient2| (($ $ $ $ (|NonNegativeInteger|)) "\\axiom{LazardQuotient2(\\spad{p},{}a,{}\\spad{b},{}\\spad{n})} returns \\axiom{(a**(\\spad{n}-1) * \\spad{p}) exquo \\spad{b**}(\\spad{n}-1)} assuming that this quotient does not fail.")) (|LazardQuotient| (($ $ $ (|NonNegativeInteger|)) "\\axiom{LazardQuotient(a,{}\\spad{b},{}\\spad{n})} returns \\axiom{a**n exquo \\spad{b**}(\\spad{n}-1)} assuming that this quotient does not fail.")) (|lastSubResultant| (($ $ $) "\\axiom{lastSubResultant(a,{}\\spad{b})} returns the last non-zero subresultant of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}}.")) (|subResultantChain| (((|List| $) $ $) "\\axiom{subResultantChain(a,{}\\spad{b})},{} where \\axiom{a} and \\axiom{\\spad{b}} are not contant polynomials with the same main variable,{} returns the subresultant chain of \\axiom{a} and \\axiom{\\spad{b}}.")) (|resultant| (($ $ $) "\\axiom{resultant(a,{}\\spad{b})} computes the resultant of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}}.")) (|halfExtendedSubResultantGcd2| (((|Record| (|:| |gcd| $) (|:| |coef2| $)) $ $) "\\axiom{halfExtendedSubResultantGcd2(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}\\spad{cb}]} if \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{}\\spad{cb}]} otherwise produces an error.")) (|halfExtendedSubResultantGcd1| (((|Record| (|:| |gcd| $) (|:| |coef1| $)) $ $) "\\axiom{halfExtendedSubResultantGcd1(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca]} if \\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[\\spad{g},{}ca,{}\\spad{cb}]} otherwise produces an error.")) (|extendedSubResultantGcd| (((|Record| (|:| |gcd| $) (|:| |coef1| $) (|:| |coef2| $)) $ $) "\\axiom{extendedSubResultantGcd(a,{}\\spad{b})} returns \\axiom{[ca,{}\\spad{cb},{}\\spad{r}]} such that \\axiom{\\spad{r}} is \\axiom{subResultantGcd(a,{}\\spad{b})} and we have \\axiom{ca * a + \\spad{cb} * \\spad{cb} = \\spad{r}} .")) (|subResultantGcd| (($ $ $) "\\axiom{subResultantGcd(a,{}\\spad{b})} computes a \\spad{gcd} of \\axiom{a} and \\axiom{\\spad{b}} where \\axiom{a} and \\axiom{\\spad{b}} are assumed to have the same main variable \\axiom{\\spad{v}} and are viewed as univariate polynomials in \\axiom{\\spad{v}} with coefficients in the fraction field of the polynomial ring generated by their other variables over \\axiom{\\spad{R}}.")) (|exactQuotient!| (($ $ $) "\\axiom{exactQuotient!(a,{}\\spad{b})} replaces \\axiom{a} by \\axiom{exactQuotient(a,{}\\spad{b})}") (($ $ |#1|) "\\axiom{exactQuotient!(\\spad{p},{}\\spad{r})} replaces \\axiom{\\spad{p}} by \\axiom{exactQuotient(\\spad{p},{}\\spad{r})}.")) (|exactQuotient| (($ $ $) "\\axiom{exactQuotient(a,{}\\spad{b})} computes the exact quotient of \\axiom{a} by \\axiom{\\spad{b}},{} which is assumed to be a divisor of \\axiom{a}. No error is returned if this exact quotient fails!") (($ $ |#1|) "\\axiom{exactQuotient(\\spad{p},{}\\spad{r})} computes the exact quotient of \\axiom{\\spad{p}} by \\axiom{\\spad{r}},{} which is assumed to be a divisor of \\axiom{\\spad{p}}. No error is returned if this exact quotient fails!")) (|primPartElseUnitCanonical!| (($ $) "\\axiom{primPartElseUnitCanonical!(\\spad{p})} replaces \\axiom{\\spad{p}} by \\axiom{primPartElseUnitCanonical(\\spad{p})}.")) (|primPartElseUnitCanonical| (($ $) "\\axiom{primPartElseUnitCanonical(\\spad{p})} returns \\axiom{primitivePart(\\spad{p})} if \\axiom{\\spad{R}} is a \\spad{gcd}-domain,{} otherwise \\axiom{unitCanonical(\\spad{p})}.")) (|convert| (($ (|Polynomial| |#1|)) "\\axiom{convert(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}},{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}.") (($ (|Polynomial| (|Integer|))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}") (($ (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{convert(\\spad{p})} returns the same as \\axiom{retract(\\spad{p})}.")) (|retract| (($ (|Polynomial| |#1|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| |#1|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| |#1|)) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Integer|))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.") (($ (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{retract(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if \\axiom{retractIfCan(\\spad{p})} does not return \"failed\",{} otherwise an error is produced.")) (|retractIfCan| (((|Union| $ "failed") (|Polynomial| |#1|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| |#1|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| |#1|)) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Integer|))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.") (((|Union| $ "failed") (|Polynomial| (|Fraction| (|Integer|)))) "\\axiom{retractIfCan(\\spad{p})} returns \\axiom{\\spad{p}} as an element of the current domain if all its variables belong to \\axiom{\\spad{V}}.")) (|initiallyReduce| (($ $ $) "\\axiom{initiallyReduce(a,{}\\spad{b})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{initiallyReduced?(\\spad{r},{}\\spad{b})} holds and there exists an integer \\axiom{\\spad{e}} such that \\axiom{init(\\spad{b})^e a - \\spad{r}} is zero modulo \\axiom{\\spad{b}}.")) (|headReduce| (($ $ $) "\\axiom{headReduce(a,{}\\spad{b})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{headReduced?(\\spad{r},{}\\spad{b})} holds and there exists an integer \\axiom{\\spad{e}} such that \\axiom{init(\\spad{b})^e a - \\spad{r}} is zero modulo \\axiom{\\spad{b}}.")) (|lazyResidueClass| (((|Record| (|:| |polnum| $) (|:| |polden| $) (|:| |power| (|NonNegativeInteger|))) $ $) "\\axiom{lazyResidueClass(a,{}\\spad{b})} returns \\axiom{[\\spad{p},{}\\spad{q},{}\\spad{n}]} where \\axiom{\\spad{p} / q**n} represents the residue class of \\axiom{a} modulo \\axiom{\\spad{b}} and \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and \\axiom{\\spad{q}} is \\axiom{init(\\spad{b})}.")) (|monicModulo| (($ $ $) "\\axiom{monicModulo(a,{}\\spad{b})} computes \\axiom{a mod \\spad{b}},{} if \\axiom{\\spad{b}} is monic as univariate polynomial in its main variable.")) (|pseudoDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{pseudoDivide(a,{}\\spad{b})} computes \\axiom{[pquo(a,{}\\spad{b}),{}prem(a,{}\\spad{b})]},{} both polynomials viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}},{} if \\axiom{\\spad{b}} is not a constant polynomial.")) (|lazyPseudoDivide| (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $ |#3|) "\\axiom{lazyPseudoDivide(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b},{}\\spad{v})},{} \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b},{}\\spad{v})} and \\axiom{\\spad{q}} is the pseudo-quotient computed in this lazy pseudo-division.") (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]} such that \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}] = lazyPremWithDefault(a,{}\\spad{b})} and \\axiom{\\spad{q}} is the pseudo-quotient computed in this lazy pseudo-division.")) (|lazyPremWithDefault| (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |remainder| $)) $ $ |#3|) "\\axiom{lazyPremWithDefault(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b},{}\\spad{v})} and \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b},{}\\spad{v})}.") (((|Record| (|:| |coef| $) (|:| |gap| (|NonNegativeInteger|)) (|:| |remainder| $)) $ $) "\\axiom{lazyPremWithDefault(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{r}]} such that \\axiom{\\spad{r} = lazyPrem(a,{}\\spad{b})} and \\axiom{(c**g)\\spad{*r} = prem(a,{}\\spad{b})}.")) (|lazyPquo| (($ $ $ |#3|) "\\axiom{lazyPquo(a,{}\\spad{b},{}\\spad{v})} returns the polynomial \\axiom{\\spad{q}} such that \\axiom{lazyPseudoDivide(a,{}\\spad{b},{}\\spad{v})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}.") (($ $ $) "\\axiom{lazyPquo(a,{}\\spad{b})} returns the polynomial \\axiom{\\spad{q}} such that \\axiom{lazyPseudoDivide(a,{}\\spad{b})} returns \\axiom{[\\spad{c},{}\\spad{g},{}\\spad{q},{}\\spad{r}]}.")) (|lazyPrem| (($ $ $ |#3|) "\\axiom{lazyPrem(a,{}\\spad{b},{}\\spad{v})} returns the polynomial \\axiom{\\spad{r}} reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} viewed as univariate polynomials in the variable \\axiom{\\spad{v}} such that \\axiom{\\spad{b}} divides \\axiom{init(\\spad{b})^e a - \\spad{r}} where \\axiom{\\spad{e}} is the number of steps of this pseudo-division.") (($ $ $) "\\axiom{lazyPrem(a,{}\\spad{b})} returns the polynomial \\axiom{\\spad{r}} reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{b}} and such that \\axiom{\\spad{b}} divides \\axiom{init(\\spad{b})^e a - \\spad{r}} where \\axiom{\\spad{e}} is the number of steps of this pseudo-division.")) (|pquo| (($ $ $ |#3|) "\\axiom{pquo(a,{}\\spad{b},{}\\spad{v})} computes the pseudo-quotient of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in \\axiom{\\spad{v}}.") (($ $ $) "\\axiom{pquo(a,{}\\spad{b})} computes the pseudo-quotient of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}}.")) (|prem| (($ $ $ |#3|) "\\axiom{prem(a,{}\\spad{b},{}\\spad{v})} computes the pseudo-remainder of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in \\axiom{\\spad{v}}.") (($ $ $) "\\axiom{prem(a,{}\\spad{b})} computes the pseudo-remainder of \\axiom{a} by \\axiom{\\spad{b}},{} both viewed as univariate polynomials in the main variable of \\axiom{\\spad{b}}.")) (|normalized?| (((|Boolean|) $ (|List| $)) "\\axiom{normalized?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{normalized?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{normalized?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{a} and its iterated initials have degree zero \\spad{w}.\\spad{r}.\\spad{t}. the main variable of \\axiom{\\spad{b}}")) (|initiallyReduced?| (((|Boolean|) $ (|List| $)) "\\axiom{initiallyReduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{initiallyReduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{initiallyReduced?(a,{}\\spad{b})} returns \\spad{false} iff there exists an iterated initial of \\axiom{a} which is not reduced \\spad{w}.\\spad{r}.\\spad{t} \\axiom{\\spad{b}}.")) (|headReduced?| (((|Boolean|) $ (|List| $)) "\\axiom{headReduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{headReduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{headReduced?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{degree(head(a),{}mvar(\\spad{b})) < mdeg(\\spad{b})}.")) (|reduced?| (((|Boolean|) $ (|List| $)) "\\axiom{reduced?(\\spad{q},{}\\spad{lp})} returns \\spad{true} iff \\axiom{reduced?(\\spad{q},{}\\spad{p})} holds for every \\axiom{\\spad{p}} in \\axiom{\\spad{lp}}.") (((|Boolean|) $ $) "\\axiom{reduced?(a,{}\\spad{b})} returns \\spad{true} iff \\axiom{degree(a,{}mvar(\\spad{b})) < mdeg(\\spad{b})}.")) (|supRittWu?| (((|Boolean|) $ $) "\\axiom{supRittWu?(a,{}\\spad{b})} returns \\spad{true} if \\axiom{a} is greater than \\axiom{\\spad{b}} \\spad{w}.\\spad{r}.\\spad{t}. the Ritt and Wu Wen Tsun ordering using the refinement of Lazard.")) (|infRittWu?| (((|Boolean|) $ $) "\\axiom{infRittWu?(a,{}\\spad{b})} returns \\spad{true} if \\axiom{a} is less than \\axiom{\\spad{b}} \\spad{w}.\\spad{r}.\\spad{t}. the Ritt and Wu Wen Tsun ordering using the refinement of Lazard.")) (|RittWuCompare| (((|Union| (|Boolean|) "failed") $ $) "\\axiom{RittWuCompare(a,{}\\spad{b})} returns \\axiom{\"failed\"} if \\axiom{a} and \\axiom{\\spad{b}} have same rank \\spad{w}.\\spad{r}.\\spad{t}. Ritt and Wu Wen Tsun ordering using the refinement of Lazard,{} otherwise returns \\axiom{infRittWu?(a,{}\\spad{b})}.")) (|mainMonomials| (((|List| $) $) "\\axiom{mainMonomials(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns [1],{} otherwise returns the list of the monomials of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mainCoefficients| (((|List| $) $) "\\axiom{mainCoefficients(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns [\\spad{p}],{} otherwise returns the list of the coefficients of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|leastMonomial| (($ $) "\\axiom{leastMonomial(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{1},{} otherwise,{} the monomial of \\axiom{\\spad{p}} with lowest degree,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mainMonomial| (($ $) "\\axiom{mainMonomial(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{\\spad{O}},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{1},{} otherwise,{} \\axiom{mvar(\\spad{p})} raised to the power \\axiom{mdeg(\\spad{p})}.")) (|quasiMonic?| (((|Boolean|) $) "\\axiom{quasiMonic?(\\spad{p})} returns \\spad{false} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns \\spad{true} iff the initial of \\axiom{\\spad{p}} lies in the base ring \\axiom{\\spad{R}}.")) (|monic?| (((|Boolean|) $) "\\axiom{monic?(\\spad{p})} returns \\spad{false} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns \\spad{true} iff \\axiom{\\spad{p}} is monic as a univariate polynomial in its main variable.")) (|reductum| (($ $ |#3|) "\\axiom{reductum(\\spad{p},{}\\spad{v})} returns the reductum of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in \\axiom{\\spad{v}}.")) (|leadingCoefficient| (($ $ |#3|) "\\axiom{leadingCoefficient(\\spad{p},{}\\spad{v})} returns the leading coefficient of \\axiom{\\spad{p}},{} where \\axiom{\\spad{p}} is viewed as A univariate polynomial in \\axiom{\\spad{v}}.")) (|deepestInitial| (($ $) "\\axiom{deepestInitial(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns the last term of \\axiom{iteratedInitials(\\spad{p})}.")) (|iteratedInitials| (((|List| $) $) "\\axiom{iteratedInitials(\\spad{p})} returns \\axiom{[]} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns the list of the iterated initials of \\axiom{\\spad{p}}.")) (|deepestTail| (($ $) "\\axiom{deepestTail(\\spad{p})} returns \\axiom{0} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns tail(\\spad{p}),{} if \\axiom{tail(\\spad{p})} belongs to \\axiom{\\spad{R}} or \\axiom{mvar(tail(\\spad{p})) < mvar(\\spad{p})},{} otherwise returns \\axiom{deepestTail(tail(\\spad{p}))}.")) (|tail| (($ $) "\\axiom{tail(\\spad{p})} returns its reductum,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|head| (($ $) "\\axiom{head(\\spad{p})} returns \\axiom{\\spad{p}} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its leading term (monomial in the AXIOM sense),{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|init| (($ $) "\\axiom{init(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its leading coefficient,{} where \\axiom{\\spad{p}} is viewed as a univariate polynomial in its main variable.")) (|mdeg| (((|NonNegativeInteger|) $) "\\axiom{mdeg(\\spad{p})} returns an error if \\axiom{\\spad{p}} is \\axiom{0},{} otherwise,{} if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}} returns \\axiom{0},{} otherwise,{} returns the degree of \\axiom{\\spad{p}} in its main variable.")) (|mvar| ((|#3| $) "\\axiom{mvar(\\spad{p})} returns an error if \\axiom{\\spad{p}} belongs to \\axiom{\\spad{R}},{} otherwise returns its main variable \\spad{w}. \\spad{r}. \\spad{t}. to the total ordering on the elements in \\axiom{\\spad{V}}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
NIL
(-1059)
((|constructor| (NIL "This domain represents the `repeat' iterator syntax.")) (|body| (((|SpadAst|) $) "\\spad{body(e)} returns the body of the loop `e'.")) (|iterators| (((|List| (|SpadAst|)) $) "\\spad{iterators(e)} returns the list of iterators controlling the loop `e'.")))
@@ -4186,7 +4186,7 @@ NIL
NIL
(-1064 R E V P)
((|constructor| (NIL "The category of regular triangular sets,{} introduced under the name regular chains in [1] (and other papers). In [3] it is proved that regular triangular sets and towers of simple extensions of a field are equivalent notions. In the following definitions,{} all polynomials and ideals are taken from the polynomial ring \\spad{k[x1,{}...,{}xn]} where \\spad{k} is the fraction field of \\spad{R}. The triangular set \\spad{[t1,{}...,{}tm]} is regular iff for every \\spad{i} the initial of \\spad{ti+1} is invertible in the tower of simple extensions associated with \\spad{[t1,{}...,{}\\spad{ti}]}. A family \\spad{[T1,{}...,{}Ts]} of regular triangular sets is a split of Kalkbrener of a given ideal \\spad{I} iff the radical of \\spad{I} is equal to the intersection of the radical ideals generated by the saturated ideals of the \\spad{[T1,{}...,{}\\spad{Ti}]}. A family \\spad{[T1,{}...,{}Ts]} of regular triangular sets is a split of Kalkbrener of a given triangular set \\spad{T} iff it is a split of Kalkbrener of the saturated ideal of \\spad{T}. Let \\spad{K} be an algebraic closure of \\spad{k}. Assume that \\spad{V} is finite with cardinality \\spad{n} and let \\spad{A} be the affine space \\spad{K^n}. For a regular triangular set \\spad{T} let denote by \\spad{W(T)} the set of regular zeros of \\spad{T}. A family \\spad{[T1,{}...,{}Ts]} of regular triangular sets is a split of Lazard of a given subset \\spad{S} of \\spad{A} iff the union of the \\spad{W(\\spad{Ti})} contains \\spad{S} and is contained in the closure of \\spad{S} (\\spad{w}.\\spad{r}.\\spad{t}. Zariski topology). A family \\spad{[T1,{}...,{}Ts]} of regular triangular sets is a split of Lazard of a given triangular set \\spad{T} if it is a split of Lazard of \\spad{W(T)}. Note that if \\spad{[T1,{}...,{}Ts]} is a split of Lazard of \\spad{T} then it is also a split of Kalkbrener of \\spad{T}. The converse is \\spad{false}. This category provides operations related to both kinds of splits,{} the former being related to ideals decomposition whereas the latter deals with varieties decomposition. See the example illustrating the \\spadtype{RegularTriangularSet} constructor for more explanations about decompositions by means of regular triangular sets. \\newline References : \\indented{1}{[1] \\spad{M}. KALKBRENER \"Three contributions to elimination theory\"} \\indented{5}{\\spad{Phd} Thesis,{} University of Linz,{} Austria,{} 1991.} \\indented{1}{[2] \\spad{M}. KALKBRENER \"Algorithmic properties of polynomial rings\"} \\indented{5}{Journal of Symbol. Comp. 1998} \\indented{1}{[3] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)} \\indented{1}{[4] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|zeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|)) "\\spad{zeroSetSplit(lp,{}clos?)} returns \\spad{lts} a split of Kalkbrener of the radical ideal associated with \\spad{lp}. If \\spad{clos?} is \\spad{false},{} it is also a decomposition of the variety associated with \\spad{lp} into the regular zero set of the \\spad{ts} in \\spad{lts} (or,{} in other words,{} a split of Lazard of this variety). See the example illustrating the \\spadtype{RegularTriangularSet} constructor for more explanations about decompositions by means of regular triangular sets.")) (|extend| (((|List| $) (|List| |#4|) (|List| $)) "\\spad{extend(lp,{}lts)} returns the same as \\spad{concat([extend(lp,{}ts) for ts in lts])|}") (((|List| $) (|List| |#4|) $) "\\spad{extend(lp,{}ts)} returns \\spad{ts} if \\spad{empty? lp} \\spad{extend(p,{}ts)} if \\spad{lp = [p]} else \\spad{extend(first lp,{} extend(rest lp,{} ts))}") (((|List| $) |#4| (|List| $)) "\\spad{extend(p,{}lts)} returns the same as \\spad{concat([extend(p,{}ts) for ts in lts])|}") (((|List| $) |#4| $) "\\spad{extend(p,{}ts)} assumes that \\spad{p} is a non-constant polynomial whose main variable is greater than any variable of \\spad{ts}. Then it returns a split of Kalkbrener of \\spad{ts+p}. This may not be \\spad{ts+p} itself,{} if for instance \\spad{ts+p} is not a regular triangular set.")) (|internalAugment| (($ (|List| |#4|) $) "\\spad{internalAugment(lp,{}ts)} returns \\spad{ts} if \\spad{lp} is empty otherwise returns \\spad{internalAugment(rest lp,{} internalAugment(first lp,{} ts))}") (($ |#4| $) "\\spad{internalAugment(p,{}ts)} assumes that \\spad{augment(p,{}ts)} returns a singleton and returns it.")) (|augment| (((|List| $) (|List| |#4|) (|List| $)) "\\spad{augment(lp,{}lts)} returns the same as \\spad{concat([augment(lp,{}ts) for ts in lts])}") (((|List| $) (|List| |#4|) $) "\\spad{augment(lp,{}ts)} returns \\spad{ts} if \\spad{empty? lp},{} \\spad{augment(p,{}ts)} if \\spad{lp = [p]},{} otherwise \\spad{augment(first lp,{} augment(rest lp,{} ts))}") (((|List| $) |#4| (|List| $)) "\\spad{augment(p,{}lts)} returns the same as \\spad{concat([augment(p,{}ts) for ts in lts])}") (((|List| $) |#4| $) "\\spad{augment(p,{}ts)} assumes that \\spad{p} is a non-constant polynomial whose main variable is greater than any variable of \\spad{ts}. This operation assumes also that if \\spad{p} is added to \\spad{ts} the resulting set,{} say \\spad{ts+p},{} is a regular triangular set. Then it returns a split of Kalkbrener of \\spad{ts+p}. This may not be \\spad{ts+p} itself,{} if for instance \\spad{ts+p} is required to be square-free.")) (|intersect| (((|List| $) |#4| (|List| $)) "\\spad{intersect(p,{}lts)} returns the same as \\spad{intersect([p],{}lts)}") (((|List| $) (|List| |#4|) (|List| $)) "\\spad{intersect(lp,{}lts)} returns the same as \\spad{concat([intersect(lp,{}ts) for ts in lts])|}") (((|List| $) (|List| |#4|) $) "\\spad{intersect(lp,{}ts)} returns \\spad{lts} a split of Lazard of the intersection of the affine variety associated with \\spad{lp} and the regular zero set of \\spad{ts}.") (((|List| $) |#4| $) "\\spad{intersect(p,{}ts)} returns the same as \\spad{intersect([p],{}ts)}")) (|squareFreePart| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| $))) |#4| $) "\\spad{squareFreePart(p,{}ts)} returns \\spad{lpwt} such that \\spad{lpwt.i.val} is a square-free polynomial \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower},{} this polynomial being associated with \\spad{p} modulo \\spad{lpwt.i.tower},{} for every \\spad{i}. Moreover,{} the list of the \\spad{lpwt.i.tower} is a split of Kalkbrener of \\spad{ts}. WARNING: This assumes that \\spad{p} is a non-constant polynomial such that if \\spad{p} is added to \\spad{ts},{} then the resulting set is a regular triangular set.")) (|lastSubResultant| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| $))) |#4| |#4| $) "\\spad{lastSubResultant(p1,{}p2,{}ts)} returns \\spad{lpwt} such that \\spad{lpwt.i.val} is a quasi-monic \\spad{gcd} of \\spad{p1} and \\spad{p2} \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower},{} for every \\spad{i},{} and such that the list of the \\spad{lpwt.i.tower} is a split of Kalkbrener of \\spad{ts}. Moreover,{} if \\spad{p1} and \\spad{p2} do not have a non-trivial \\spad{gcd} \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower} then \\spad{lpwt.i.val} is the resultant of these polynomials \\spad{w}.\\spad{r}.\\spad{t}. \\spad{lpwt.i.tower}. This assumes that \\spad{p1} and \\spad{p2} have the same maim variable and that this variable is greater that any variable occurring in \\spad{ts}.")) (|lastSubResultantElseSplit| (((|Union| |#4| (|List| $)) |#4| |#4| $) "\\spad{lastSubResultantElseSplit(p1,{}p2,{}ts)} returns either \\spad{g} a quasi-monic \\spad{gcd} of \\spad{p1} and \\spad{p2} \\spad{w}.\\spad{r}.\\spad{t}. the \\spad{ts} or a split of Kalkbrener of \\spad{ts}. This assumes that \\spad{p1} and \\spad{p2} have the same maim variable and that this variable is greater that any variable occurring in \\spad{ts}.")) (|invertibleSet| (((|List| $) |#4| $) "\\spad{invertibleSet(p,{}ts)} returns a split of Kalkbrener of the quotient ideal of the ideal \\axiom{\\spad{I}} by \\spad{p} where \\spad{I} is the radical of saturated of \\spad{ts}.")) (|invertible?| (((|Boolean|) |#4| $) "\\spad{invertible?(p,{}ts)} returns \\spad{true} iff \\spad{p} is invertible in the tower associated with \\spad{ts}.") (((|List| (|Record| (|:| |val| (|Boolean|)) (|:| |tower| $))) |#4| $) "\\spad{invertible?(p,{}ts)} returns \\spad{lbwt} where \\spad{lbwt.i} is the result of \\spad{invertibleElseSplit?(p,{}lbwt.i.tower)} and the list of the \\spad{(lqrwt.i).tower} is a split of Kalkbrener of \\spad{ts}.")) (|invertibleElseSplit?| (((|Union| (|Boolean|) (|List| $)) |#4| $) "\\spad{invertibleElseSplit?(p,{}ts)} returns \\spad{true} (resp. \\spad{false}) if \\spad{p} is invertible in the tower associated with \\spad{ts} or returns a split of Kalkbrener of \\spad{ts}.")) (|purelyAlgebraicLeadingMonomial?| (((|Boolean|) |#4| $) "\\spad{purelyAlgebraicLeadingMonomial?(p,{}ts)} returns \\spad{true} iff the main variable of any non-constant iterarted initial of \\spad{p} is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}.")) (|algebraicCoefficients?| (((|Boolean|) |#4| $) "\\spad{algebraicCoefficients?(p,{}ts)} returns \\spad{true} iff every variable of \\spad{p} which is not the main one of \\spad{p} is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}.")) (|purelyTranscendental?| (((|Boolean|) |#4| $) "\\spad{purelyTranscendental?(p,{}ts)} returns \\spad{true} iff every variable of \\spad{p} is not algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}")) (|purelyAlgebraic?| (((|Boolean|) $) "\\spad{purelyAlgebraic?(ts)} returns \\spad{true} iff for every algebraic variable \\spad{v} of \\spad{ts} we have \\spad{algebraicCoefficients?(t_v,{}ts_v_-)} where \\spad{ts_v} is \\axiomOpFrom{select}{TriangularSetCategory}(\\spad{ts},{}\\spad{v}) and \\spad{ts_v_-} is \\axiomOpFrom{collectUnder}{TriangularSetCategory}(\\spad{ts},{}\\spad{v}).") (((|Boolean|) |#4| $) "\\spad{purelyAlgebraic?(p,{}ts)} returns \\spad{true} iff every variable of \\spad{p} is algebraic \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts}.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
NIL
(-1065 R E V P TS)
((|constructor| (NIL "An internal package for computing gcds and resultants of univariate polynomials with coefficients in a tower of simple extensions of a field.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA and \\spad{R}. RIOBOO \"Computations of \\spad{gcd} over} \\indented{5}{algebraic towers of simple extensions\" In proceedings of AAECC11} \\indented{5}{Paris,{} 1995.} \\indented{1}{[2] \\spad{M}. MORENO MAZA \"Calculs de pgcd au-dessus des tours} \\indented{5}{d'extensions simples et resolution des systemes d'equations} \\indented{5}{algebriques\" These,{} Universite \\spad{P}.etM. Curie,{} Paris,{} 1997.} \\indented{1}{[3] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")) (|toseSquareFreePart| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#5|) "\\axiom{toseSquareFreePart(\\spad{p},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{squareFreePart}{RegularTriangularSetCategory}.")) (|toseInvertibleSet| (((|List| |#5|) |#4| |#5|) "\\axiom{toseInvertibleSet(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{invertibleSet}{RegularTriangularSetCategory}.")) (|toseInvertible?| (((|List| (|Record| (|:| |val| (|Boolean|)) (|:| |tower| |#5|))) |#4| |#5|) "\\axiom{toseInvertible?(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{invertible?}{RegularTriangularSetCategory}.") (((|Boolean|) |#4| |#5|) "\\axiom{toseInvertible?(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{invertible?}{RegularTriangularSetCategory}.")) (|toseLastSubResultant| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#4| |#5|) "\\axiom{toseLastSubResultant(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} has the same specifications as \\axiomOpFrom{lastSubResultant}{RegularTriangularSetCategory}.")) (|integralLastSubResultant| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#4| |#5|) "\\axiom{integralLastSubResultant(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} is an internal subroutine,{} exported only for developement.")) (|internalLastSubResultant| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) (|List| (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|))) |#3| (|Boolean|)) "\\axiom{internalLastSubResultant(lpwt,{}\\spad{v},{}flag)} is an internal subroutine,{} exported only for developement.") (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#4| |#5| (|Boolean|) (|Boolean|)) "\\axiom{internalLastSubResultant(\\spad{p1},{}\\spad{p2},{}\\spad{ts},{}inv?,{}break?)} is an internal subroutine,{} exported only for developement.")) (|prepareSubResAlgo| (((|List| (|Record| (|:| |val| (|List| |#4|)) (|:| |tower| |#5|))) |#4| |#4| |#5|) "\\axiom{prepareSubResAlgo(\\spad{p1},{}\\spad{p2},{}\\spad{ts})} is an internal subroutine,{} exported only for developement.")) (|stopTableInvSet!| (((|Void|)) "\\axiom{stopTableInvSet!()} is an internal subroutine,{} exported only for developement.")) (|startTableInvSet!| (((|Void|) (|String|) (|String|) (|String|)) "\\axiom{startTableInvSet!(\\spad{s1},{}\\spad{s2},{}\\spad{s3})} is an internal subroutine,{} exported only for developement.")) (|stopTableGcd!| (((|Void|)) "\\axiom{stopTableGcd!()} is an internal subroutine,{} exported only for developement.")) (|startTableGcd!| (((|Void|) (|String|) (|String|) (|String|)) "\\axiom{startTableGcd!(\\spad{s1},{}\\spad{s2},{}\\spad{s3})} is an internal subroutine,{} exported only for developement.")))
@@ -4200,11 +4200,11 @@ NIL
((|constructor| (NIL "This domain implements named rules")) (|name| (((|Symbol|) $) "\\spad{name(x)} returns the symbol")))
NIL
NIL
-(-1068 |Base| R -3197)
+(-1068 |Base| R -3196)
((|constructor| (NIL "\\indented{1}{Rules for the pattern matcher} Author: Manuel Bronstein Date Created: 24 Oct 1988 Date Last Updated: 26 October 1993 Keywords: pattern,{} matching,{} rule.")) (|quotedOperators| (((|List| (|Symbol|)) $) "\\spad{quotedOperators(r)} returns the list of operators on the right hand side of \\spad{r} that are considered quoted,{} that is they are not evaluated during any rewrite,{} but just applied formally to their arguments.")) (|elt| ((|#3| $ |#3| (|PositiveInteger|)) "\\spad{elt(r,{}f,{}n)} or \\spad{r}(\\spad{f},{} \\spad{n}) applies the rule \\spad{r} to \\spad{f} at most \\spad{n} times.")) (|rhs| ((|#3| $) "\\spad{rhs(r)} returns the right hand side of the rule \\spad{r}.")) (|lhs| ((|#3| $) "\\spad{lhs(r)} returns the left hand side of the rule \\spad{r}.")) (|pattern| (((|Pattern| |#1|) $) "\\spad{pattern(r)} returns the pattern corresponding to the left hand side of the rule \\spad{r}.")) (|suchThat| (($ $ (|List| (|Symbol|)) (|Mapping| (|Boolean|) (|List| |#3|))) "\\spad{suchThat(r,{} [a1,{}...,{}an],{} f)} returns the rewrite rule \\spad{r} with the predicate \\spad{f(a1,{}...,{}an)} attached to it.")) (|rule| (($ |#3| |#3| (|List| (|Symbol|))) "\\spad{rule(f,{} g,{} [f1,{}...,{}fn])} creates the rewrite rule \\spad{f == eval(eval(g,{} g is f),{} [f1,{}...,{}fn])},{} that is a rule with left-hand side \\spad{f} and right-hand side \\spad{g}; The symbols \\spad{f1},{}...,{}\\spad{fn} are the operators that are considered quoted,{} that is they are not evaluated during any rewrite,{} but just applied formally to their arguments.") (($ |#3| |#3|) "\\spad{rule(f,{} g)} creates the rewrite rule: \\spad{f == eval(g,{} g is f)},{} with left-hand side \\spad{f} and right-hand side \\spad{g}.")))
NIL
NIL
-(-1069 |Base| R -3197)
+(-1069 |Base| R -3196)
((|constructor| (NIL "A ruleset is a set of pattern matching rules grouped together.")) (|elt| ((|#3| $ |#3| (|PositiveInteger|)) "\\spad{elt(r,{}f,{}n)} or \\spad{r}(\\spad{f},{} \\spad{n}) applies all the rules of \\spad{r} to \\spad{f} at most \\spad{n} times.")) (|rules| (((|List| (|RewriteRule| |#1| |#2| |#3|)) $) "\\spad{rules(r)} returns the rules contained in \\spad{r}.")) (|ruleset| (($ (|List| (|RewriteRule| |#1| |#2| |#3|))) "\\spad{ruleset([r1,{}...,{}rn])} creates the rule set \\spad{{r1,{}...,{}rn}}.")))
NIL
NIL
@@ -4218,7 +4218,7 @@ NIL
NIL
(-1072 R UP M)
((|constructor| (NIL "Domain which represents simple algebraic extensions of arbitrary rings. The first argument to the domain,{} \\spad{R},{} is the underlying ring,{} the second argument is a domain of univariate polynomials over \\spad{K},{} while the last argument specifies the defining minimal polynomial. The elements of the domain are canonically represented as polynomials of degree less than that of the minimal polynomial with coefficients in \\spad{R}. The second argument is both the type of the third argument and the underlying representation used by \\spadtype{SAE} itself.")))
-((-4395 |has| |#1| (-362)) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 |has| |#1| (-362)) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-348))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-348)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-367))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-348)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#1| (QUOTE (-348))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (QUOTE (-362)))))
(-1073 UP SAE UPA)
((|constructor| (NIL "Factorization of univariate polynomials with coefficients in an algebraic extension of \\spadtype{Fraction Polynomial Integer}.")) (|factor| (((|Factored| |#3|) |#3|) "\\spad{factor(p)} returns a prime factorisation of \\spad{p}.")))
@@ -4246,8 +4246,8 @@ NIL
NIL
(-1079 R)
((|constructor| (NIL "\\spadtype{SequentialDifferentialPolynomial} implements an ordinary differential polynomial ring in arbitrary number of differential indeterminates,{} with coefficients in a ring. The ranking on the differential indeterminate is sequential. \\blankline")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-904))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1080 (-1168)) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-1080 (-1168)) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-1080 (-1168)) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-1080 (-1168)) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-1080 (-1168)) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasAttribute| |#1| (QUOTE -4400)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-904))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1080 (-1168)) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-1080 (-1168)) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-1080 (-1168)) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-1080 (-1168)) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-1080 (-1168)) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-232))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasAttribute| |#1| (QUOTE -4401)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
(-1080 S)
((|constructor| (NIL "\\spadtype{OrderlyDifferentialVariable} adds a commonly used sequential ranking to the set of derivatives of an ordered list of differential indeterminates. A sequential ranking is a ranking \\spadfun{<} of the derivatives with the property that for any derivative \\spad{v},{} there are only a finite number of derivatives \\spad{u} with \\spad{u} \\spadfun{<} \\spad{v}. This domain belongs to \\spadtype{DifferentialVariableCategory}. It defines \\spadfun{weight} to be just \\spadfun{order},{} and it defines a sequential ranking \\spadfun{<} on derivatives \\spad{u} by the lexicographic order on the pair (\\spadfun{variable}(\\spad{u}),{} \\spadfun{order}(\\spad{u})).")))
NIL
@@ -4290,7 +4290,7 @@ NIL
NIL
(-1090 S)
((|constructor| (NIL "A set category lists a collection of set-theoretic operations useful for both finite sets and multisets. Note however that finite sets are distinct from multisets. Although the operations defined for set categories are common to both,{} the relationship between the two cannot be described by inclusion or inheritance.")) (|union| (($ |#1| $) "\\spad{union(x,{}u)} returns the set aggregate \\spad{u} with the element \\spad{x} added. If \\spad{u} already contains \\spad{x},{} \\axiom{union(\\spad{x},{}\\spad{u})} returns a copy of \\spad{u}.") (($ $ |#1|) "\\spad{union(u,{}x)} returns the set aggregate \\spad{u} with the element \\spad{x} added. If \\spad{u} already contains \\spad{x},{} \\axiom{union(\\spad{u},{}\\spad{x})} returns a copy of \\spad{u}.") (($ $ $) "\\spad{union(u,{}v)} returns the set aggregate of elements which are members of either set aggregate \\spad{u} or \\spad{v}.")) (|subset?| (((|Boolean|) $ $) "\\spad{subset?(u,{}v)} tests if \\spad{u} is a subset of \\spad{v}. Note: equivalent to \\axiom{reduce(and,{}{member?(\\spad{x},{}\\spad{v}) for \\spad{x} in \\spad{u}},{}\\spad{true},{}\\spad{false})}.")) (|symmetricDifference| (($ $ $) "\\spad{symmetricDifference(u,{}v)} returns the set aggregate of elements \\spad{x} which are members of set aggregate \\spad{u} or set aggregate \\spad{v} but not both. If \\spad{u} and \\spad{v} have no elements in common,{} \\axiom{symmetricDifference(\\spad{u},{}\\spad{v})} returns a copy of \\spad{u}. Note: \\axiom{symmetricDifference(\\spad{u},{}\\spad{v}) = union(difference(\\spad{u},{}\\spad{v}),{}difference(\\spad{v},{}\\spad{u}))}")) (|difference| (($ $ |#1|) "\\spad{difference(u,{}x)} returns the set aggregate \\spad{u} with element \\spad{x} removed. If \\spad{u} does not contain \\spad{x},{} a copy of \\spad{u} is returned. Note: \\axiom{difference(\\spad{s},{} \\spad{x}) = difference(\\spad{s},{} {\\spad{x}})}.") (($ $ $) "\\spad{difference(u,{}v)} returns the set aggregate \\spad{w} consisting of elements in set aggregate \\spad{u} but not in set aggregate \\spad{v}. If \\spad{u} and \\spad{v} have no elements in common,{} \\axiom{difference(\\spad{u},{}\\spad{v})} returns a copy of \\spad{u}. Note: equivalent to the notation (not currently supported) \\axiom{{\\spad{x} for \\spad{x} in \\spad{u} | not member?(\\spad{x},{}\\spad{v})}}.")) (|intersect| (($ $ $) "\\spad{intersect(u,{}v)} returns the set aggregate \\spad{w} consisting of elements common to both set aggregates \\spad{u} and \\spad{v}. Note: equivalent to the notation (not currently supported) {\\spad{x} for \\spad{x} in \\spad{u} | member?(\\spad{x},{}\\spad{v})}.")) (|set| (($ (|List| |#1|)) "\\spad{set([x,{}y,{}...,{}z])} creates a set aggregate containing items \\spad{x},{}\\spad{y},{}...,{}\\spad{z}.") (($) "\\spad{set()}\\$\\spad{D} creates an empty set aggregate of type \\spad{D}.")) (|brace| (($ (|List| |#1|)) "\\spad{brace([x,{}y,{}...,{}z])} creates a set aggregate containing items \\spad{x},{}\\spad{y},{}...,{}\\spad{z}. This form is considered obsolete. Use \\axiomFun{set} instead.") (($) "\\spad{brace()}\\$\\spad{D} (otherwise written {}\\$\\spad{D}) creates an empty set aggregate of type \\spad{D}. This form is considered obsolete. Use \\axiomFun{set} instead.")) (|part?| (((|Boolean|) $ $) "\\spad{s} < \\spad{t} returns \\spad{true} if all elements of set aggregate \\spad{s} are also elements of set aggregate \\spad{t}.")))
-((-4392 . T))
+((-4393 . T))
NIL
(-1091 S)
((|constructor| (NIL "\\spadtype{SetCategory} is the basic category for describing a collection of elements with \\spadop{=} (equality) and \\spadfun{coerce} to output form. \\blankline Conditional Attributes: \\indented{3}{canonical\\tab{15}data structure equality is the same as \\spadop{=}}")) (|latex| (((|String|) $) "\\spad{latex(s)} returns a LaTeX-printable output representation of \\spad{s}.")) (|hash| (((|SingleInteger|) $) "\\spad{hash(s)} calculates a hash code for \\spad{s}.")))
@@ -4306,7 +4306,7 @@ NIL
NIL
(-1094 S)
((|constructor| (NIL "A set over a domain \\spad{D} models the usual mathematical notion of a finite set of elements from \\spad{D}. Sets are unordered collections of distinct elements (that is,{} order and duplication does not matter). The notation \\spad{set [a,{}b,{}c]} can be used to create a set and the usual operations such as union and intersection are available to form new sets. In our implementation,{} \\Language{} maintains the entries in sorted order. Specifically,{} the parts function returns the entries as a list in ascending order and the extract operation returns the maximum entry. Given two sets \\spad{s} and \\spad{t} where \\spad{\\#s = m} and \\spad{\\#t = n},{} the complexity of \\indented{2}{\\spad{s = t} is \\spad{O(min(n,{}m))}} \\indented{2}{\\spad{s < t} is \\spad{O(max(n,{}m))}} \\indented{2}{\\spad{union(s,{}t)},{} \\spad{intersect(s,{}t)},{} \\spad{minus(s,{}t)},{} \\spad{symmetricDifference(s,{}t)} is \\spad{O(max(n,{}m))}} \\indented{2}{\\spad{member(x,{}t)} is \\spad{O(n log n)}} \\indented{2}{\\spad{insert(x,{}t)} and \\spad{remove(x,{}t)} is \\spad{O(n)}}")))
-((-4402 . T) (-4392 . T) (-4403 . T))
+((-4403 . T) (-4393 . T) (-4404 . T))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-367))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
(-1095 |Str| |Sym| |Int| |Flt| |Expr|)
((|constructor| (NIL "This category allows the manipulation of Lisp values while keeping the grunge fairly localized.")) (|elt| (($ $ (|List| (|Integer|))) "\\spad{elt((a1,{}...,{}an),{} [i1,{}...,{}im])} returns \\spad{(a_i1,{}...,{}a_im)}.") (($ $ (|Integer|)) "\\spad{elt((a1,{}...,{}an),{} i)} returns \\spad{\\spad{ai}}.")) (|#| (((|Integer|) $) "\\spad{\\#((a1,{}...,{}an))} returns \\spad{n}.")) (|cdr| (($ $) "\\spad{cdr((a1,{}...,{}an))} returns \\spad{(a2,{}...,{}an)}.")) (|car| (($ $) "\\spad{car((a1,{}...,{}an))} returns a1.")) (|expr| ((|#5| $) "\\spad{expr(s)} returns \\spad{s} as an element of Expr; Error: if \\spad{s} is not an atom that also belongs to Expr.")) (|float| ((|#4| $) "\\spad{float(s)} returns \\spad{s} as an element of \\spad{Flt}; Error: if \\spad{s} is not an atom that also belongs to \\spad{Flt}.")) (|integer| ((|#3| $) "\\spad{integer(s)} returns \\spad{s} as an element of Int. Error: if \\spad{s} is not an atom that also belongs to Int.")) (|symbol| ((|#2| $) "\\spad{symbol(s)} returns \\spad{s} as an element of \\spad{Sym}. Error: if \\spad{s} is not an atom that also belongs to \\spad{Sym}.")) (|string| ((|#1| $) "\\spad{string(s)} returns \\spad{s} as an element of \\spad{Str}. Error: if \\spad{s} is not an atom that also belongs to \\spad{Str}.")) (|destruct| (((|List| $) $) "\\spad{destruct((a1,{}...,{}an))} returns the list [a1,{}...,{}an].")) (|float?| (((|Boolean|) $) "\\spad{float?(s)} is \\spad{true} if \\spad{s} is an atom and belong to \\spad{Flt}.")) (|integer?| (((|Boolean|) $) "\\spad{integer?(s)} is \\spad{true} if \\spad{s} is an atom and belong to Int.")) (|symbol?| (((|Boolean|) $) "\\spad{symbol?(s)} is \\spad{true} if \\spad{s} is an atom and belong to \\spad{Sym}.")) (|string?| (((|Boolean|) $) "\\spad{string?(s)} is \\spad{true} if \\spad{s} is an atom and belong to \\spad{Str}.")) (|list?| (((|Boolean|) $) "\\spad{list?(s)} is \\spad{true} if \\spad{s} is a Lisp list,{} possibly ().")) (|pair?| (((|Boolean|) $) "\\spad{pair?(s)} is \\spad{true} if \\spad{s} has is a non-null Lisp list.")) (|atom?| (((|Boolean|) $) "\\spad{atom?(s)} is \\spad{true} if \\spad{s} is a Lisp atom.")) (|null?| (((|Boolean|) $) "\\spad{null?(s)} is \\spad{true} if \\spad{s} is the \\spad{S}-expression ().")) (|eq| (((|Boolean|) $ $) "\\spad{eq(s,{} t)} is \\spad{true} if EQ(\\spad{s},{}\\spad{t}) is \\spad{true} in Lisp.")))
@@ -4334,7 +4334,7 @@ NIL
NIL
(-1101 R E V P)
((|constructor| (NIL "The category of square-free regular triangular sets. A regular triangular set \\spad{ts} is square-free if the \\spad{gcd} of any polynomial \\spad{p} in \\spad{ts} and \\spad{differentiate(p,{}mvar(p))} \\spad{w}.\\spad{r}.\\spad{t}. \\axiomOpFrom{collectUnder}{TriangularSetCategory}(\\spad{ts},{}\\axiomOpFrom{mvar}{RecursivePolynomialCategory}(\\spad{p})) has degree zero \\spad{w}.\\spad{r}.\\spad{t}. \\spad{mvar(p)}. Thus any square-free regular set defines a tower of square-free simple extensions.\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991} \\indented{1}{[2] \\spad{M}. KALKBRENER \"Algorithmic properties of polynomial rings\"} \\indented{5}{Habilitation Thesis,{} ETZH,{} Zurich,{} 1995.} \\indented{1}{[3] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
NIL
(-1102)
((|constructor| (NIL "SymmetricGroupCombinatoricFunctions contains combinatoric functions concerning symmetric groups and representation theory: list young tableaus,{} improper partitions,{} subsets bijection of Coleman.")) (|unrankImproperPartitions1| (((|List| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{unrankImproperPartitions1(n,{}m,{}k)} computes the {\\em k}\\spad{-}th improper partition of nonnegative \\spad{n} in at most \\spad{m} nonnegative parts ordered as follows: first,{} in reverse lexicographically according to their non-zero parts,{} then according to their positions (\\spadignore{i.e.} lexicographical order using {\\em subSet}: {\\em [3,{}0,{}0] < [0,{}3,{}0] < [0,{}0,{}3] < [2,{}1,{}0] < [2,{}0,{}1] < [0,{}2,{}1] < [1,{}2,{}0] < [1,{}0,{}2] < [0,{}1,{}2] < [1,{}1,{}1]}). Note: counting of subtrees is done by {\\em numberOfImproperPartitionsInternal}.")) (|unrankImproperPartitions0| (((|List| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{unrankImproperPartitions0(n,{}m,{}k)} computes the {\\em k}\\spad{-}th improper partition of nonnegative \\spad{n} in \\spad{m} nonnegative parts in reverse lexicographical order. Example: {\\em [0,{}0,{}3] < [0,{}1,{}2] < [0,{}2,{}1] < [0,{}3,{}0] < [1,{}0,{}2] < [1,{}1,{}1] < [1,{}2,{}0] < [2,{}0,{}1] < [2,{}1,{}0] < [3,{}0,{}0]}. Error: if \\spad{k} is negative or too big. Note: counting of subtrees is done by \\spadfunFrom{numberOfImproperPartitions}{SymmetricGroupCombinatoricFunctions}.")) (|subSet| (((|List| (|Integer|)) (|Integer|) (|Integer|) (|Integer|)) "\\spad{subSet(n,{}m,{}k)} calculates the {\\em k}\\spad{-}th {\\em m}-subset of the set {\\em 0,{}1,{}...,{}(n-1)} in the lexicographic order considered as a decreasing map from {\\em 0,{}...,{}(m-1)} into {\\em 0,{}...,{}(n-1)}. See \\spad{S}.\\spad{G}. Williamson: Theorem 1.60. Error: if not {\\em (0 <= m <= n and 0 < = k < (n choose m))}.")) (|numberOfImproperPartitions| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{numberOfImproperPartitions(n,{}m)} computes the number of partitions of the nonnegative integer \\spad{n} in \\spad{m} nonnegative parts with regarding the order (improper partitions). Example: {\\em numberOfImproperPartitions (3,{}3)} is 10,{} since {\\em [0,{}0,{}3],{} [0,{}1,{}2],{} [0,{}2,{}1],{} [0,{}3,{}0],{} [1,{}0,{}2],{} [1,{}1,{}1],{} [1,{}2,{}0],{} [2,{}0,{}1],{} [2,{}1,{}0],{} [3,{}0,{}0]} are the possibilities. Note: this operation has a recursive implementation.")) (|nextPartition| (((|Vector| (|Integer|)) (|List| (|Integer|)) (|Vector| (|Integer|)) (|Integer|)) "\\spad{nextPartition(gamma,{}part,{}number)} generates the partition of {\\em number} which follows {\\em part} according to the right-to-left lexicographical order. The partition has the property that its components do not exceed the corresponding components of {\\em gamma}. the first partition is achieved by {\\em part=[]}. Also,{} {\\em []} indicates that {\\em part} is the last partition.") (((|Vector| (|Integer|)) (|Vector| (|Integer|)) (|Vector| (|Integer|)) (|Integer|)) "\\spad{nextPartition(gamma,{}part,{}number)} generates the partition of {\\em number} which follows {\\em part} according to the right-to-left lexicographical order. The partition has the property that its components do not exceed the corresponding components of {\\em gamma}. The first partition is achieved by {\\em part=[]}. Also,{} {\\em []} indicates that {\\em part} is the last partition.")) (|nextLatticePermutation| (((|List| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|Boolean|)) "\\spad{nextLatticePermutation(lambda,{}lattP,{}constructNotFirst)} generates the lattice permutation according to the proper partition {\\em lambda} succeeding the lattice permutation {\\em lattP} in lexicographical order as long as {\\em constructNotFirst} is \\spad{true}. If {\\em constructNotFirst} is \\spad{false},{} the first lattice permutation is returned. The result {\\em nil} indicates that {\\em lattP} has no successor.")) (|nextColeman| (((|Matrix| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|Matrix| (|Integer|))) "\\spad{nextColeman(alpha,{}beta,{}C)} generates the next Coleman matrix of column sums {\\em alpha} and row sums {\\em beta} according to the lexicographical order from bottom-to-top. The first Coleman matrix is achieved by {\\em C=new(1,{}1,{}0)}. Also,{} {\\em new(1,{}1,{}0)} indicates that \\spad{C} is the last Coleman matrix.")) (|makeYoungTableau| (((|Matrix| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{makeYoungTableau(lambda,{}gitter)} computes for a given lattice permutation {\\em gitter} and for an improper partition {\\em lambda} the corresponding standard tableau of shape {\\em lambda}. Notes: see {\\em listYoungTableaus}. The entries are from {\\em 0,{}...,{}n-1}.")) (|listYoungTableaus| (((|List| (|Matrix| (|Integer|))) (|List| (|Integer|))) "\\spad{listYoungTableaus(lambda)} where {\\em lambda} is a proper partition generates the list of all standard tableaus of shape {\\em lambda} by means of lattice permutations. The numbers of the lattice permutation are interpreted as column labels. Hence the contents of these lattice permutations are the conjugate of {\\em lambda}. Notes: the functions {\\em nextLatticePermutation} and {\\em makeYoungTableau} are used. The entries are from {\\em 0,{}...,{}n-1}.")) (|inverseColeman| (((|List| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|Matrix| (|Integer|))) "\\spad{inverseColeman(alpha,{}beta,{}C)}: there is a bijection from the set of matrices having nonnegative entries and row sums {\\em alpha},{} column sums {\\em beta} to the set of {\\em Salpha - Sbeta} double cosets of the symmetric group {\\em Sn}. ({\\em Salpha} is the Young subgroup corresponding to the improper partition {\\em alpha}). For such a matrix \\spad{C},{} inverseColeman(\\spad{alpha},{}\\spad{beta},{}\\spad{C}) calculates the lexicographical smallest {\\em \\spad{pi}} in the corresponding double coset. Note: the resulting permutation {\\em \\spad{pi}} of {\\em {1,{}2,{}...,{}n}} is given in list form. Notes: the inverse of this map is {\\em coleman}. For details,{} see James/Kerber.")) (|coleman| (((|Matrix| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|)) (|List| (|Integer|))) "\\spad{coleman(alpha,{}beta,{}\\spad{pi})}: there is a bijection from the set of matrices having nonnegative entries and row sums {\\em alpha},{} column sums {\\em beta} to the set of {\\em Salpha - Sbeta} double cosets of the symmetric group {\\em Sn}. ({\\em Salpha} is the Young subgroup corresponding to the improper partition {\\em alpha}). For a representing element {\\em \\spad{pi}} of such a double coset,{} coleman(\\spad{alpha},{}\\spad{beta},{}\\spad{pi}) generates the Coleman-matrix corresponding to {\\em alpha,{} beta,{} \\spad{pi}}. Note: The permutation {\\em \\spad{pi}} of {\\em {1,{}2,{}...,{}n}} has to be given in list form. Note: the inverse of this map is {\\em inverseColeman} (if {\\em \\spad{pi}} is the lexicographical smallest permutation in the coset). For details see James/Kerber.")))
@@ -4350,8 +4350,8 @@ NIL
NIL
(-1105 |dimtot| |dim1| S)
((|constructor| (NIL "\\indented{2}{This type represents the finite direct or cartesian product of an} underlying ordered component type. The vectors are ordered as if they were split into two blocks. The dim1 parameter specifies the length of the first block. The ordering is lexicographic between the blocks but acts like \\spadtype{HomogeneousDirectProduct} within each block. This type is a suitable third argument for \\spadtype{GeneralDistributedMultivariatePolynomial}.")))
-((-4396 |has| |#3| (-1044)) (-4397 |has| |#3| (-1044)) (-4399 |has| |#3| (-6 -4399)) ((-4404 "*") |has| |#3| (-171)) (-4402 . T))
-((-4037 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1092)))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#3| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#3| (QUOTE (-362))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-1044)))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-362)))) (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (QUOTE (-788))) (-4037 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (QUOTE (-843)))) (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (QUOTE (-171))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-1044)))) (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (QUOTE (-1092)))) (-4037 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-1044)))) (-4037 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-1044)))) (-4037 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-1044)))) (-4037 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-130)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-171)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-232)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-362)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-367)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-721)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-788)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-843)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1044)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1092))))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1044))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| (-562) (QUOTE (-845))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168))))) (-4037 (|HasCategory| |#3| (QUOTE (-1044))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1092)))) (|HasAttribute| |#3| (QUOTE -4399)) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))))
+((-4397 |has| |#3| (-1044)) (-4398 |has| |#3| (-1044)) (-4400 |has| |#3| (-6 -4400)) ((-4405 "*") |has| |#3| (-171)) (-4403 . T))
+((-4037 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1092)))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#3| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#3| (QUOTE (-362))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-1044)))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-362)))) (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (QUOTE (-788))) (-4037 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (QUOTE (-843)))) (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (QUOTE (-171))) (-4037 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-1044)))) (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (-4037 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (QUOTE (-1092)))) (-4037 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-1044)))) (-4037 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-1044)))) (-4037 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (QUOTE (-1044)))) (-4037 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-130)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-171)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-232)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-362)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-367)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-721)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-788)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-843)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1044)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1092))))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1044))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-171))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-362))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-721))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-788))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-843))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))))) (|HasCategory| (-562) (QUOTE (-845))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (QUOTE (-232))) (|HasCategory| |#3| (QUOTE (-1044)))) (-12 (|HasCategory| |#3| (QUOTE (-1044))) (|HasCategory| |#3| (LIST (QUOTE -895) (QUOTE (-1168))))) (-4037 (|HasCategory| |#3| (QUOTE (-1044))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562)))))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#3| (QUOTE (-1092)))) (|HasAttribute| |#3| (QUOTE -4400)) (|HasCategory| |#3| (QUOTE (-130))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#3| (QUOTE (-1092))) (|HasCategory| |#3| (LIST (QUOTE -308) (|devaluate| |#3|)))))
(-1106 R |x|)
((|constructor| (NIL "This package produces functions for counting etc. real roots of univariate polynomials in \\spad{x} over \\spad{R},{} which must be an OrderedIntegralDomain")) (|countRealRootsMultiple| (((|Integer|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{countRealRootsMultiple(p)} says how many real roots \\spad{p} has,{} counted with multiplicity")) (|SturmHabichtMultiple| (((|Integer|) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{SturmHabichtMultiple(p1,{}p2)} computes \\spad{c_}{+}\\spad{-c_}{-} where \\spad{c_}{+} is the number of real roots of \\spad{p1} with p2>0 and \\spad{c_}{-} is the number of real roots of \\spad{p1} with p2<0. If p2=1 what you get is the number of real roots of \\spad{p1}.")) (|countRealRoots| (((|Integer|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{countRealRoots(p)} says how many real roots \\spad{p} has")) (|SturmHabicht| (((|Integer|) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{SturmHabicht(p1,{}p2)} computes \\spad{c_}{+}\\spad{-c_}{-} where \\spad{c_}{+} is the number of real roots of \\spad{p1} with p2>0 and \\spad{c_}{-} is the number of real roots of \\spad{p1} with p2<0. If p2=1 what you get is the number of real roots of \\spad{p1}.")) (|SturmHabichtCoefficients| (((|List| |#1|) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{SturmHabichtCoefficients(p1,{}p2)} computes the principal Sturm-Habicht coefficients of \\spad{p1} and \\spad{p2}")) (|SturmHabichtSequence| (((|List| (|UnivariatePolynomial| |#2| |#1|)) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{SturmHabichtSequence(p1,{}p2)} computes the Sturm-Habicht sequence of \\spad{p1} and \\spad{p2}")) (|subresultantSequence| (((|List| (|UnivariatePolynomial| |#2| |#1|)) (|UnivariatePolynomial| |#2| |#1|) (|UnivariatePolynomial| |#2| |#1|)) "\\spad{subresultantSequence(p1,{}p2)} computes the (standard) subresultant sequence of \\spad{p1} and \\spad{p2}")))
NIL
@@ -4360,7 +4360,7 @@ NIL
((|constructor| (NIL "This domain represents a signature AST. A signature AST \\indented{2}{is a description of an exported operation,{} \\spadignore{e.g.} its name,{} result} \\indented{2}{type,{} and the list of its argument types.}")) (|signature| (((|Signature|) $) "\\spad{signature(s)} returns AST of the declared signature for \\spad{`s'}.")) (|name| (((|Identifier|) $) "\\spad{name(s)} returns the name of the signature \\spad{`s'}.")) (|signatureAst| (($ (|Identifier|) (|Signature|)) "\\spad{signatureAst(n,{}s,{}t)} builds the signature AST \\spad{n:} \\spad{s} \\spad{->} \\spad{t}")))
NIL
NIL
-(-1108 R -3197)
+(-1108 R -3196)
((|constructor| (NIL "This package provides functions to determine the sign of an elementary function around a point or infinity.")) (|sign| (((|Union| (|Integer|) "failed") |#2| (|Symbol|) |#2| (|String|)) "\\spad{sign(f,{} x,{} a,{} s)} returns the sign of \\spad{f} as \\spad{x} nears \\spad{a} from below if \\spad{s} is \"left\",{} or above if \\spad{s} is \"right\".") (((|Union| (|Integer|) "failed") |#2| (|Symbol|) (|OrderedCompletion| |#2|)) "\\spad{sign(f,{} x,{} a)} returns the sign of \\spad{f} as \\spad{x} nears \\spad{a},{} from both sides if \\spad{a} is finite.") (((|Union| (|Integer|) "failed") |#2|) "\\spad{sign(f)} returns the sign of \\spad{f} if it is constant everywhere.")))
NIL
NIL
@@ -4378,19 +4378,19 @@ NIL
NIL
(-1112)
((|constructor| (NIL "SingleInteger is intended to support machine integer arithmetic.")) (|Or| (($ $ $) "\\spad{Or(n,{}m)} returns the bit-by-bit logical {\\em or} of the single integers \\spad{n} and \\spad{m}.")) (|And| (($ $ $) "\\spad{And(n,{}m)} returns the bit-by-bit logical {\\em and} of the single integers \\spad{n} and \\spad{m}.")) (|Not| (($ $) "\\spad{Not(n)} returns the bit-by-bit logical {\\em not} of the single integer \\spad{n}.")) (|xor| (($ $ $) "\\spad{xor(n,{}m)} returns the bit-by-bit logical {\\em xor} of the single integers \\spad{n} and \\spad{m}.")) (|not| (($ $) "\\spad{not(n)} returns the bit-by-bit logical {\\em not} of the single integer \\spad{n}.")) (|noetherian| ((|attribute|) "\\spad{noetherian} all ideals are finitely generated (in fact principal).")) (|canonicalsClosed| ((|attribute|) "\\spad{canonicalClosed} means two positives multiply to give positive.")) (|canonical| ((|attribute|) "\\spad{canonical} means that mathematical equality is implied by data structure equality.")))
-((-4390 . T) (-4394 . T) (-4389 . T) (-4400 . T) (-4401 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4391 . T) (-4395 . T) (-4390 . T) (-4401 . T) (-4402 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1113 S)
((|constructor| (NIL "A stack is a bag where the last item inserted is the first item extracted.")) (|depth| (((|NonNegativeInteger|) $) "\\spad{depth(s)} returns the number of elements of stack \\spad{s}. Note: \\axiom{depth(\\spad{s}) = \\spad{#s}}.")) (|top| ((|#1| $) "\\spad{top(s)} returns the top element \\spad{x} from \\spad{s}; \\spad{s} remains unchanged. Note: Use \\axiom{pop!(\\spad{s})} to obtain \\spad{x} and remove it from \\spad{s}.")) (|pop!| ((|#1| $) "\\spad{pop!(s)} returns the top element \\spad{x},{} destructively removing \\spad{x} from \\spad{s}. Note: Use \\axiom{top(\\spad{s})} to obtain \\spad{x} without removing it from \\spad{s}. Error: if \\spad{s} is empty.")) (|push!| ((|#1| |#1| $) "\\spad{push!(x,{}s)} pushes \\spad{x} onto stack \\spad{s},{} \\spadignore{i.e.} destructively changing \\spad{s} so as to have a new first (top) element \\spad{x}. Afterwards,{} pop!(\\spad{s}) produces \\spad{x} and pop!(\\spad{s}) produces the original \\spad{s}.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
NIL
(-1114 S |ndim| R |Row| |Col|)
((|constructor| (NIL "\\spadtype{SquareMatrixCategory} is a general square matrix category which allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and colums returned as objects of type Col.")) (** (($ $ (|Integer|)) "\\spad{m**n} computes an integral power of the matrix \\spad{m}. Error: if the matrix is not invertible.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m},{} if that matrix is invertible and returns \"failed\" otherwise.")) (|minordet| ((|#3| $) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors.")) (|determinant| ((|#3| $) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}.")) (* ((|#4| |#4| $) "\\spad{r * x} is the product of the row vector \\spad{r} and the matrix \\spad{x}. Error: if the dimensions are incompatible.") ((|#5| $ |#5|) "\\spad{x * c} is the product of the matrix \\spad{x} and the column vector \\spad{c}. Error: if the dimensions are incompatible.")) (|diagonalProduct| ((|#3| $) "\\spad{diagonalProduct(m)} returns the product of the elements on the diagonal of the matrix \\spad{m}.")) (|trace| ((|#3| $) "\\spad{trace(m)} returns the trace of the matrix \\spad{m}. this is the sum of the elements on the diagonal of the matrix \\spad{m}.")) (|diagonal| ((|#4| $) "\\spad{diagonal(m)} returns a row consisting of the elements on the diagonal of the matrix \\spad{m}.")) (|diagonalMatrix| (($ (|List| |#3|)) "\\spad{diagonalMatrix(l)} returns a diagonal matrix with the elements of \\spad{l} on the diagonal.")) (|scalarMatrix| (($ |#3|) "\\spad{scalarMatrix(r)} returns an \\spad{n}-by-\\spad{n} matrix with \\spad{r}\\spad{'s} on the diagonal and zeroes elsewhere.")))
NIL
-((|HasCategory| |#3| (QUOTE (-362))) (|HasAttribute| |#3| (QUOTE (-4404 "*"))) (|HasCategory| |#3| (QUOTE (-171))))
+((|HasCategory| |#3| (QUOTE (-362))) (|HasAttribute| |#3| (QUOTE (-4405 "*"))) (|HasCategory| |#3| (QUOTE (-171))))
(-1115 |ndim| R |Row| |Col|)
((|constructor| (NIL "\\spadtype{SquareMatrixCategory} is a general square matrix category which allows different representations and indexing schemes. Rows and columns may be extracted with rows returned as objects of type Row and colums returned as objects of type Col.")) (** (($ $ (|Integer|)) "\\spad{m**n} computes an integral power of the matrix \\spad{m}. Error: if the matrix is not invertible.")) (|inverse| (((|Union| $ "failed") $) "\\spad{inverse(m)} returns the inverse of the matrix \\spad{m},{} if that matrix is invertible and returns \"failed\" otherwise.")) (|minordet| ((|#2| $) "\\spad{minordet(m)} computes the determinant of the matrix \\spad{m} using minors.")) (|determinant| ((|#2| $) "\\spad{determinant(m)} returns the determinant of the matrix \\spad{m}.")) (* ((|#3| |#3| $) "\\spad{r * x} is the product of the row vector \\spad{r} and the matrix \\spad{x}. Error: if the dimensions are incompatible.") ((|#4| $ |#4|) "\\spad{x * c} is the product of the matrix \\spad{x} and the column vector \\spad{c}. Error: if the dimensions are incompatible.")) (|diagonalProduct| ((|#2| $) "\\spad{diagonalProduct(m)} returns the product of the elements on the diagonal of the matrix \\spad{m}.")) (|trace| ((|#2| $) "\\spad{trace(m)} returns the trace of the matrix \\spad{m}. this is the sum of the elements on the diagonal of the matrix \\spad{m}.")) (|diagonal| ((|#3| $) "\\spad{diagonal(m)} returns a row consisting of the elements on the diagonal of the matrix \\spad{m}.")) (|diagonalMatrix| (($ (|List| |#2|)) "\\spad{diagonalMatrix(l)} returns a diagonal matrix with the elements of \\spad{l} on the diagonal.")) (|scalarMatrix| (($ |#2|) "\\spad{scalarMatrix(r)} returns an \\spad{n}-by-\\spad{n} matrix with \\spad{r}\\spad{'s} on the diagonal and zeroes elsewhere.")))
-((-4402 . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4403 . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1116 R |Row| |Col| M)
((|constructor| (NIL "\\spadtype{SmithNormalForm} is a package which provides some standard canonical forms for matrices.")) (|diophantineSystem| (((|Record| (|:| |particular| (|Union| |#3| "failed")) (|:| |basis| (|List| |#3|))) |#4| |#3|) "\\spad{diophantineSystem(A,{}B)} returns a particular integer solution and an integer basis of the equation \\spad{AX = B}.")) (|completeSmith| (((|Record| (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) "\\spad{completeSmith} returns a record that contains the Smith normal form \\spad{H} of the matrix and the left and right equivalence matrices \\spad{U} and \\spad{V} such that U*m*v = \\spad{H}")) (|smith| ((|#4| |#4|) "\\spad{smith(m)} returns the Smith Normal form of the matrix \\spad{m}.")) (|completeHermite| (((|Record| (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) "\\spad{completeHermite} returns a record that contains the Hermite normal form \\spad{H} of the matrix and the equivalence matrix \\spad{U} such that U*m = \\spad{H}")) (|hermite| ((|#4| |#4|) "\\spad{hermite(m)} returns the Hermite normal form of the matrix \\spad{m}.")))
@@ -4398,17 +4398,17 @@ NIL
NIL
(-1117 R |VarSet|)
((|constructor| (NIL "\\indented{2}{This type is the basic representation of sparse recursive multivariate} polynomials. It is parameterized by the coefficient ring and the variable set which may be infinite. The variable ordering is determined by the variable set parameter. The coefficient ring may be non-commutative,{} but the variables are assumed to commute.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-904))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362))) (|HasAttribute| |#1| (QUOTE -4400)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-904))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362))) (|HasAttribute| |#1| (QUOTE -4401)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
(-1118 |Coef| |Var| SMP)
((|constructor| (NIL "This domain provides multivariate Taylor series with variables from an arbitrary ordered set. A Taylor series is represented by a stream of polynomials from the polynomial domain \\spad{SMP}. The \\spad{n}th element of the stream is a form of degree \\spad{n}. SMTS is an internal domain.")) (|fintegrate| (($ (|Mapping| $) |#2| |#1|) "\\spad{fintegrate(f,{}v,{}c)} is the integral of \\spad{f()} with respect \\indented{1}{to \\spad{v} and having \\spad{c} as the constant of integration.} \\indented{1}{The evaluation of \\spad{f()} is delayed.}")) (|integrate| (($ $ |#2| |#1|) "\\spad{integrate(s,{}v,{}c)} is the integral of \\spad{s} with respect \\indented{1}{to \\spad{v} and having \\spad{c} as the constant of integration.}")) (|csubst| (((|Mapping| (|Stream| |#3|) |#3|) (|List| |#2|) (|List| (|Stream| |#3|))) "\\spad{csubst(a,{}b)} is for internal use only")) (* (($ |#3| $) "\\spad{smp*ts} multiplies a TaylorSeries by a monomial \\spad{SMP}.")) (|coerce| (($ |#3|) "\\spad{coerce(poly)} regroups the terms by total degree and forms a series.") (($ |#2|) "\\spad{coerce(var)} converts a variable to a Taylor series")) (|coefficient| ((|#3| $ (|NonNegativeInteger|)) "\\spad{coefficient(s,{} n)} gives the terms of total degree \\spad{n}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4397 . T) (-4396 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4398 . T) (-4397 . T) (-4400 . T))
((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-362))))
(-1119 R E V P)
((|constructor| (NIL "The category of square-free and normalized triangular sets. Thus,{} up to the primitivity axiom of [1],{} these sets are Lazard triangular sets.\\newline References : \\indented{1}{[1] \\spad{D}. LAZARD \"A new method for solving algebraic systems of} \\indented{5}{positive dimension\" Discr. App. Math. 33:147-160,{}1991}")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
NIL
-(-1120 UP -3197)
+(-1120 UP -3196)
((|constructor| (NIL "This package factors the formulas out of the general solve code,{} allowing their recursive use over different domains. Care is taken to introduce few radicals so that radical extension domains can more easily simplify the results.")) (|aQuartic| ((|#2| |#2| |#2| |#2| |#2| |#2|) "\\spad{aQuartic(f,{}g,{}h,{}i,{}k)} \\undocumented")) (|aCubic| ((|#2| |#2| |#2| |#2| |#2|) "\\spad{aCubic(f,{}g,{}h,{}j)} \\undocumented")) (|aQuadratic| ((|#2| |#2| |#2| |#2|) "\\spad{aQuadratic(f,{}g,{}h)} \\undocumented")) (|aLinear| ((|#2| |#2| |#2|) "\\spad{aLinear(f,{}g)} \\undocumented")) (|quartic| (((|List| |#2|) |#2| |#2| |#2| |#2| |#2|) "\\spad{quartic(f,{}g,{}h,{}i,{}j)} \\undocumented") (((|List| |#2|) |#1|) "\\spad{quartic(u)} \\undocumented")) (|cubic| (((|List| |#2|) |#2| |#2| |#2| |#2|) "\\spad{cubic(f,{}g,{}h,{}i)} \\undocumented") (((|List| |#2|) |#1|) "\\spad{cubic(u)} \\undocumented")) (|quadratic| (((|List| |#2|) |#2| |#2| |#2|) "\\spad{quadratic(f,{}g,{}h)} \\undocumented") (((|List| |#2|) |#1|) "\\spad{quadratic(u)} \\undocumented")) (|linear| (((|List| |#2|) |#2| |#2|) "\\spad{linear(f,{}g)} \\undocumented") (((|List| |#2|) |#1|) "\\spad{linear(u)} \\undocumented")) (|mapSolve| (((|Record| (|:| |solns| (|List| |#2|)) (|:| |maps| (|List| (|Record| (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (|Mapping| |#2| |#2|)) "\\spad{mapSolve(u,{}f)} \\undocumented")) (|particularSolution| ((|#2| |#1|) "\\spad{particularSolution(u)} \\undocumented")) (|solve| (((|List| |#2|) |#1|) "\\spad{solve(u)} \\undocumented")))
NIL
NIL
@@ -4462,19 +4462,19 @@ NIL
NIL
(-1133 V C)
((|constructor| (NIL "This domain exports a modest implementation of splitting trees. Spliiting trees are needed when the evaluation of some quantity under some hypothesis requires to split the hypothesis into sub-cases. For instance by adding some new hypothesis on one hand and its negation on another hand. The computations are terminated is a splitting tree \\axiom{a} when \\axiom{status(value(a))} is \\axiom{\\spad{true}}. Thus,{} if for the splitting tree \\axiom{a} the flag \\axiom{status(value(a))} is \\axiom{\\spad{true}},{} then \\axiom{status(value(\\spad{d}))} is \\axiom{\\spad{true}} for any subtree \\axiom{\\spad{d}} of \\axiom{a}. This property of splitting trees is called the termination condition. If no vertex in a splitting tree \\axiom{a} is equal to another,{} \\axiom{a} is said to satisfy the no-duplicates condition. The splitting tree \\axiom{a} will satisfy this condition if nodes are added to \\axiom{a} by mean of \\axiom{splitNodeOf!} and if \\axiom{construct} is only used to create the root of \\axiom{a} with no children.")) (|splitNodeOf!| (($ $ $ (|List| (|SplittingNode| |#1| |#2|)) (|Mapping| (|Boolean|) |#2| |#2|)) "\\axiom{splitNodeOf!(\\spad{l},{}a,{}\\spad{ls},{}sub?)} returns \\axiom{a} where the children list of \\axiom{\\spad{l}} has been set to \\axiom{[[\\spad{s}]\\$\\% for \\spad{s} in \\spad{ls} | not subNodeOf?(\\spad{s},{}a,{}sub?)]}. Thus,{} if \\axiom{\\spad{l}} is not a node of \\axiom{a},{} this latter splitting tree is unchanged.") (($ $ $ (|List| (|SplittingNode| |#1| |#2|))) "\\axiom{splitNodeOf!(\\spad{l},{}a,{}\\spad{ls})} returns \\axiom{a} where the children list of \\axiom{\\spad{l}} has been set to \\axiom{[[\\spad{s}]\\$\\% for \\spad{s} in \\spad{ls} | not nodeOf?(\\spad{s},{}a)]}. Thus,{} if \\axiom{\\spad{l}} is not a node of \\axiom{a},{} this latter splitting tree is unchanged.")) (|remove!| (($ (|SplittingNode| |#1| |#2|) $) "\\axiom{remove!(\\spad{s},{}a)} replaces a by remove(\\spad{s},{}a)")) (|remove| (($ (|SplittingNode| |#1| |#2|) $) "\\axiom{remove(\\spad{s},{}a)} returns the splitting tree obtained from a by removing every sub-tree \\axiom{\\spad{b}} such that \\axiom{value(\\spad{b})} and \\axiom{\\spad{s}} have the same value,{} condition and status.")) (|subNodeOf?| (((|Boolean|) (|SplittingNode| |#1| |#2|) $ (|Mapping| (|Boolean|) |#2| |#2|)) "\\axiom{subNodeOf?(\\spad{s},{}a,{}sub?)} returns \\spad{true} iff for some node \\axiom{\\spad{n}} in \\axiom{a} we have \\axiom{\\spad{s} = \\spad{n}} or \\axiom{status(\\spad{n})} and \\axiom{subNode?(\\spad{s},{}\\spad{n},{}sub?)}.")) (|nodeOf?| (((|Boolean|) (|SplittingNode| |#1| |#2|) $) "\\axiom{nodeOf?(\\spad{s},{}a)} returns \\spad{true} iff some node of \\axiom{a} is equal to \\axiom{\\spad{s}}")) (|result| (((|List| (|Record| (|:| |val| |#1|) (|:| |tower| |#2|))) $) "\\axiom{result(a)} where \\axiom{\\spad{ls}} is the leaves list of \\axiom{a} returns \\axiom{[[value(\\spad{s}),{}condition(\\spad{s})]\\$\\spad{VT} for \\spad{s} in \\spad{ls}]} if the computations are terminated in \\axiom{a} else an error is produced.")) (|conditions| (((|List| |#2|) $) "\\axiom{conditions(a)} returns the list of the conditions of the leaves of a")) (|construct| (($ |#1| |#2| |#1| (|List| |#2|)) "\\axiom{construct(\\spad{v1},{}\\spad{t},{}\\spad{v2},{}\\spad{lt})} creates a splitting tree with value (\\spadignore{i.e.} root vertex) given by \\axiom{[\\spad{v},{}\\spad{t}]\\$\\spad{S}} and with children list given by \\axiom{[[[\\spad{v},{}\\spad{t}]\\$\\spad{S}]\\$\\% for \\spad{s} in \\spad{ls}]}.") (($ |#1| |#2| (|List| (|SplittingNode| |#1| |#2|))) "\\axiom{construct(\\spad{v},{}\\spad{t},{}\\spad{ls})} creates a splitting tree with value (\\spadignore{i.e.} root vertex) given by \\axiom{[\\spad{v},{}\\spad{t}]\\$\\spad{S}} and with children list given by \\axiom{[[\\spad{s}]\\$\\% for \\spad{s} in \\spad{ls}]}.") (($ |#1| |#2| (|List| $)) "\\axiom{construct(\\spad{v},{}\\spad{t},{}la)} creates a splitting tree with value (\\spadignore{i.e.} root vertex) given by \\axiom{[\\spad{v},{}\\spad{t}]\\$\\spad{S}} and with \\axiom{la} as children list.") (($ (|SplittingNode| |#1| |#2|)) "\\axiom{construct(\\spad{s})} creates a splitting tree with value (\\spadignore{i.e.} root vertex) given by \\axiom{\\spad{s}} and no children. Thus,{} if the status of \\axiom{\\spad{s}} is \\spad{false},{} \\axiom{[\\spad{s}]} represents the starting point of the evaluation \\axiom{value(\\spad{s})} under the hypothesis \\axiom{condition(\\spad{s})}.")) (|updateStatus!| (($ $) "\\axiom{updateStatus!(a)} returns a where the status of the vertices are updated to satisfy the \"termination condition\".")) (|extractSplittingLeaf| (((|Union| $ "failed") $) "\\axiom{extractSplittingLeaf(a)} returns the left most leaf (as a tree) whose status is \\spad{false} if any,{} else \"failed\" is returned.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| (-1132 |#1| |#2|) (LIST (QUOTE -308) (LIST (QUOTE -1132) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1132 |#1| |#2|) (QUOTE (-1092)))) (|HasCategory| (-1132 |#1| |#2|) (QUOTE (-1092))) (-4037 (|HasCategory| (-1132 |#1| |#2|) (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| (-1132 |#1| |#2|) (LIST (QUOTE -308) (LIST (QUOTE -1132) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1132 |#1| |#2|) (QUOTE (-1092))))) (|HasCategory| (-1132 |#1| |#2|) (LIST (QUOTE -609) (QUOTE (-857)))))
(-1134 |ndim| R)
((|constructor| (NIL "\\spadtype{SquareMatrix} is a matrix domain of square matrices,{} where the number of rows (= number of columns) is a parameter of the type.")) (|unitsKnown| ((|attribute|) "the invertible matrices are simply the matrices whose determinants are units in the Ring \\spad{R}.")) (|central| ((|attribute|) "the elements of the Ring \\spad{R},{} viewed as diagonal matrices,{} commute with all matrices and,{} indeed,{} are the only matrices which commute with all matrices.")) (|squareMatrix| (($ (|Matrix| |#2|)) "\\spad{squareMatrix(m)} converts a matrix of type \\spadtype{Matrix} to a matrix of type \\spadtype{SquareMatrix}.")) (|transpose| (($ $) "\\spad{transpose(m)} returns the transpose of the matrix \\spad{m}.")) (|new| (($ |#2|) "\\spad{new(c)} constructs a new \\spadtype{SquareMatrix} object of dimension \\spad{ndim} with initial entries equal to \\spad{c}.")))
-((-4399 . T) (-4391 |has| |#2| (-6 (-4404 "*"))) (-4402 . T) (-4396 . T) (-4397 . T))
-((|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasAttribute| |#2| (QUOTE (-4404 "*"))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (QUOTE (-306))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-362))) (-4037 (|HasAttribute| |#2| (QUOTE (-4404 "*"))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-232)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-171))))
+((-4400 . T) (-4392 |has| |#2| (-6 (-4405 "*"))) (-4403 . T) (-4397 . T) (-4398 . T))
+((|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasAttribute| |#2| (QUOTE (-4405 "*"))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (-12 (|HasCategory| |#2| (QUOTE (-232))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (QUOTE (-306))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-362))) (-4037 (|HasAttribute| |#2| (QUOTE (-4405 "*"))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-232)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-171))))
(-1135 S)
((|constructor| (NIL "A string aggregate is a category for strings,{} that is,{} one dimensional arrays of characters.")) (|elt| (($ $ $) "\\spad{elt(s,{}t)} returns the concatenation of \\spad{s} and \\spad{t}. It is provided to allow juxtaposition of strings to work as concatenation. For example,{} \\axiom{\"smoo\" \"shed\"} returns \\axiom{\"smooshed\"}.")) (|rightTrim| (($ $ (|CharacterClass|)) "\\spad{rightTrim(s,{}cc)} returns \\spad{s} with all trailing occurences of characters in \\spad{cc} deleted. For example,{} \\axiom{rightTrim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"(abc\"}.") (($ $ (|Character|)) "\\spad{rightTrim(s,{}c)} returns \\spad{s} with all trailing occurrences of \\spad{c} deleted. For example,{} \\axiom{rightTrim(\" abc \",{} char \" \")} returns \\axiom{\" abc\"}.")) (|leftTrim| (($ $ (|CharacterClass|)) "\\spad{leftTrim(s,{}cc)} returns \\spad{s} with all leading characters in \\spad{cc} deleted. For example,{} \\axiom{leftTrim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"abc)\"}.") (($ $ (|Character|)) "\\spad{leftTrim(s,{}c)} returns \\spad{s} with all leading characters \\spad{c} deleted. For example,{} \\axiom{leftTrim(\" abc \",{} char \" \")} returns \\axiom{\"abc \"}.")) (|trim| (($ $ (|CharacterClass|)) "\\spad{trim(s,{}cc)} returns \\spad{s} with all characters in \\spad{cc} deleted from right and left ends. For example,{} \\axiom{trim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"abc\"}.") (($ $ (|Character|)) "\\spad{trim(s,{}c)} returns \\spad{s} with all characters \\spad{c} deleted from right and left ends. For example,{} \\axiom{trim(\" abc \",{} char \" \")} returns \\axiom{\"abc\"}.")) (|split| (((|List| $) $ (|CharacterClass|)) "\\spad{split(s,{}cc)} returns a list of substrings delimited by characters in \\spad{cc}.") (((|List| $) $ (|Character|)) "\\spad{split(s,{}c)} returns a list of substrings delimited by character \\spad{c}.")) (|coerce| (($ (|Character|)) "\\spad{coerce(c)} returns \\spad{c} as a string \\spad{s} with the character \\spad{c}.")) (|position| (((|Integer|) (|CharacterClass|) $ (|Integer|)) "\\spad{position(cc,{}t,{}i)} returns the position \\axiom{\\spad{j} \\spad{>=} \\spad{i}} in \\spad{t} of the first character belonging to \\spad{cc}.") (((|Integer|) $ $ (|Integer|)) "\\spad{position(s,{}t,{}i)} returns the position \\spad{j} of the substring \\spad{s} in string \\spad{t},{} where \\axiom{\\spad{j} \\spad{>=} \\spad{i}} is required.")) (|replace| (($ $ (|UniversalSegment| (|Integer|)) $) "\\spad{replace(s,{}i..j,{}t)} replaces the substring \\axiom{\\spad{s}(\\spad{i}..\\spad{j})} of \\spad{s} by string \\spad{t}.")) (|match?| (((|Boolean|) $ $ (|Character|)) "\\spad{match?(s,{}t,{}c)} tests if \\spad{s} matches \\spad{t} except perhaps for multiple and consecutive occurrences of character \\spad{c}. Typically \\spad{c} is the blank character.")) (|match| (((|NonNegativeInteger|) $ $ (|Character|)) "\\spad{match(p,{}s,{}wc)} tests if pattern \\axiom{\\spad{p}} matches subject \\axiom{\\spad{s}} where \\axiom{\\spad{wc}} is a wild card character. If no match occurs,{} the index \\axiom{0} is returned; otheriwse,{} the value returned is the first index of the first character in the subject matching the subject (excluding that matched by an initial wild-card). For example,{} \\axiom{match(\"*to*\",{}\"yorktown\",{}\\spad{\"*\"})} returns \\axiom{5} indicating a successful match starting at index \\axiom{5} of \\axiom{\"yorktown\"}.")) (|substring?| (((|Boolean|) $ $ (|Integer|)) "\\spad{substring?(s,{}t,{}i)} tests if \\spad{s} is a substring of \\spad{t} beginning at index \\spad{i}. Note: \\axiom{substring?(\\spad{s},{}\\spad{t},{}0) = prefix?(\\spad{s},{}\\spad{t})}.")) (|suffix?| (((|Boolean|) $ $) "\\spad{suffix?(s,{}t)} tests if the string \\spad{s} is the final substring of \\spad{t}. Note: \\axiom{suffix?(\\spad{s},{}\\spad{t}) \\spad{==} reduce(and,{}[\\spad{s}.\\spad{i} = \\spad{t}.(\\spad{n} - \\spad{m} + \\spad{i}) for \\spad{i} in 0..maxIndex \\spad{s}])} where \\spad{m} and \\spad{n} denote the maxIndex of \\spad{s} and \\spad{t} respectively.")) (|prefix?| (((|Boolean|) $ $) "\\spad{prefix?(s,{}t)} tests if the string \\spad{s} is the initial substring of \\spad{t}. Note: \\axiom{prefix?(\\spad{s},{}\\spad{t}) \\spad{==} reduce(and,{}[\\spad{s}.\\spad{i} = \\spad{t}.\\spad{i} for \\spad{i} in 0..maxIndex \\spad{s}])}.")) (|upperCase!| (($ $) "\\spad{upperCase!(s)} destructively replaces the alphabetic characters in \\spad{s} by upper case characters.")) (|upperCase| (($ $) "\\spad{upperCase(s)} returns the string with all characters in upper case.")) (|lowerCase!| (($ $) "\\spad{lowerCase!(s)} destructively replaces the alphabetic characters in \\spad{s} by lower case.")) (|lowerCase| (($ $) "\\spad{lowerCase(s)} returns the string with all characters in lower case.")))
NIL
NIL
(-1136)
((|constructor| (NIL "A string aggregate is a category for strings,{} that is,{} one dimensional arrays of characters.")) (|elt| (($ $ $) "\\spad{elt(s,{}t)} returns the concatenation of \\spad{s} and \\spad{t}. It is provided to allow juxtaposition of strings to work as concatenation. For example,{} \\axiom{\"smoo\" \"shed\"} returns \\axiom{\"smooshed\"}.")) (|rightTrim| (($ $ (|CharacterClass|)) "\\spad{rightTrim(s,{}cc)} returns \\spad{s} with all trailing occurences of characters in \\spad{cc} deleted. For example,{} \\axiom{rightTrim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"(abc\"}.") (($ $ (|Character|)) "\\spad{rightTrim(s,{}c)} returns \\spad{s} with all trailing occurrences of \\spad{c} deleted. For example,{} \\axiom{rightTrim(\" abc \",{} char \" \")} returns \\axiom{\" abc\"}.")) (|leftTrim| (($ $ (|CharacterClass|)) "\\spad{leftTrim(s,{}cc)} returns \\spad{s} with all leading characters in \\spad{cc} deleted. For example,{} \\axiom{leftTrim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"abc)\"}.") (($ $ (|Character|)) "\\spad{leftTrim(s,{}c)} returns \\spad{s} with all leading characters \\spad{c} deleted. For example,{} \\axiom{leftTrim(\" abc \",{} char \" \")} returns \\axiom{\"abc \"}.")) (|trim| (($ $ (|CharacterClass|)) "\\spad{trim(s,{}cc)} returns \\spad{s} with all characters in \\spad{cc} deleted from right and left ends. For example,{} \\axiom{trim(\"(abc)\",{} charClass \"()\")} returns \\axiom{\"abc\"}.") (($ $ (|Character|)) "\\spad{trim(s,{}c)} returns \\spad{s} with all characters \\spad{c} deleted from right and left ends. For example,{} \\axiom{trim(\" abc \",{} char \" \")} returns \\axiom{\"abc\"}.")) (|split| (((|List| $) $ (|CharacterClass|)) "\\spad{split(s,{}cc)} returns a list of substrings delimited by characters in \\spad{cc}.") (((|List| $) $ (|Character|)) "\\spad{split(s,{}c)} returns a list of substrings delimited by character \\spad{c}.")) (|coerce| (($ (|Character|)) "\\spad{coerce(c)} returns \\spad{c} as a string \\spad{s} with the character \\spad{c}.")) (|position| (((|Integer|) (|CharacterClass|) $ (|Integer|)) "\\spad{position(cc,{}t,{}i)} returns the position \\axiom{\\spad{j} \\spad{>=} \\spad{i}} in \\spad{t} of the first character belonging to \\spad{cc}.") (((|Integer|) $ $ (|Integer|)) "\\spad{position(s,{}t,{}i)} returns the position \\spad{j} of the substring \\spad{s} in string \\spad{t},{} where \\axiom{\\spad{j} \\spad{>=} \\spad{i}} is required.")) (|replace| (($ $ (|UniversalSegment| (|Integer|)) $) "\\spad{replace(s,{}i..j,{}t)} replaces the substring \\axiom{\\spad{s}(\\spad{i}..\\spad{j})} of \\spad{s} by string \\spad{t}.")) (|match?| (((|Boolean|) $ $ (|Character|)) "\\spad{match?(s,{}t,{}c)} tests if \\spad{s} matches \\spad{t} except perhaps for multiple and consecutive occurrences of character \\spad{c}. Typically \\spad{c} is the blank character.")) (|match| (((|NonNegativeInteger|) $ $ (|Character|)) "\\spad{match(p,{}s,{}wc)} tests if pattern \\axiom{\\spad{p}} matches subject \\axiom{\\spad{s}} where \\axiom{\\spad{wc}} is a wild card character. If no match occurs,{} the index \\axiom{0} is returned; otheriwse,{} the value returned is the first index of the first character in the subject matching the subject (excluding that matched by an initial wild-card). For example,{} \\axiom{match(\"*to*\",{}\"yorktown\",{}\\spad{\"*\"})} returns \\axiom{5} indicating a successful match starting at index \\axiom{5} of \\axiom{\"yorktown\"}.")) (|substring?| (((|Boolean|) $ $ (|Integer|)) "\\spad{substring?(s,{}t,{}i)} tests if \\spad{s} is a substring of \\spad{t} beginning at index \\spad{i}. Note: \\axiom{substring?(\\spad{s},{}\\spad{t},{}0) = prefix?(\\spad{s},{}\\spad{t})}.")) (|suffix?| (((|Boolean|) $ $) "\\spad{suffix?(s,{}t)} tests if the string \\spad{s} is the final substring of \\spad{t}. Note: \\axiom{suffix?(\\spad{s},{}\\spad{t}) \\spad{==} reduce(and,{}[\\spad{s}.\\spad{i} = \\spad{t}.(\\spad{n} - \\spad{m} + \\spad{i}) for \\spad{i} in 0..maxIndex \\spad{s}])} where \\spad{m} and \\spad{n} denote the maxIndex of \\spad{s} and \\spad{t} respectively.")) (|prefix?| (((|Boolean|) $ $) "\\spad{prefix?(s,{}t)} tests if the string \\spad{s} is the initial substring of \\spad{t}. Note: \\axiom{prefix?(\\spad{s},{}\\spad{t}) \\spad{==} reduce(and,{}[\\spad{s}.\\spad{i} = \\spad{t}.\\spad{i} for \\spad{i} in 0..maxIndex \\spad{s}])}.")) (|upperCase!| (($ $) "\\spad{upperCase!(s)} destructively replaces the alphabetic characters in \\spad{s} by upper case characters.")) (|upperCase| (($ $) "\\spad{upperCase(s)} returns the string with all characters in upper case.")) (|lowerCase!| (($ $) "\\spad{lowerCase!(s)} destructively replaces the alphabetic characters in \\spad{s} by lower case.")) (|lowerCase| (($ $) "\\spad{lowerCase(s)} returns the string with all characters in lower case.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
NIL
(-1137 R E V P TS)
((|constructor| (NIL "A package providing a new algorithm for solving polynomial systems by means of regular chains. Two ways of solving are provided: in the sense of Zariski closure (like in Kalkbrener\\spad{'s} algorithm) or in the sense of the regular zeros (like in Wu,{} Wang or Lazard- Moreno methods). This algorithm is valid for nay type of regular set. It does not care about the way a polynomial is added in an regular set,{} or how two quasi-components are compared (by an inclusion-test),{} or how the invertibility test is made in the tower of simple extensions associated with a regular set. These operations are realized respectively by the domain \\spad{TS} and the packages \\spad{QCMPPK(R,{}E,{}V,{}P,{}TS)} and \\spad{RSETGCD(R,{}E,{}V,{}P,{}TS)}. The same way it does not care about the way univariate polynomial gcds (with coefficients in the tower of simple extensions associated with a regular set) are computed. The only requirement is that these gcds need to have invertible initials (normalized or not). WARNING. There is no need for a user to call diectly any operation of this package since they can be accessed by the domain \\axiomType{\\spad{TS}}. Thus,{} the operations of this package are not documented.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.}")))
@@ -4482,11 +4482,11 @@ NIL
NIL
(-1138 R E V P)
((|constructor| (NIL "This domain provides an implementation of square-free regular chains. Moreover,{} the operation \\axiomOpFrom{zeroSetSplit}{SquareFreeRegularTriangularSetCategory} is an implementation of a new algorithm for solving polynomial systems by means of regular chains.\\newline References : \\indented{1}{[1] \\spad{M}. MORENO MAZA \"A new algorithm for computing triangular} \\indented{5}{decomposition of algebraic varieties\" NAG Tech. Rep. 4/98.} \\indented{2}{Version: 2}")) (|preprocess| (((|Record| (|:| |val| (|List| |#4|)) (|:| |towers| (|List| $))) (|List| |#4|) (|Boolean|) (|Boolean|)) "\\axiom{pre_process(\\spad{lp},{}\\spad{b1},{}\\spad{b2})} is an internal subroutine,{} exported only for developement.")) (|internalZeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{internalZeroSetSplit(\\spad{lp},{}\\spad{b1},{}\\spad{b2},{}\\spad{b3})} is an internal subroutine,{} exported only for developement.")) (|zeroSetSplit| (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}\\spad{b1},{}\\spad{b2}.\\spad{b3},{}\\spad{b4})} is an internal subroutine,{} exported only for developement.") (((|List| $) (|List| |#4|) (|Boolean|) (|Boolean|)) "\\axiom{zeroSetSplit(\\spad{lp},{}clos?,{}info?)} has the same specifications as \\axiomOpFrom{zeroSetSplit}{RegularTriangularSetCategory} from \\spadtype{RegularTriangularSetCategory} Moreover,{} if \\axiom{clos?} then solves in the sense of the Zariski closure else solves in the sense of the regular zeros. If \\axiom{info?} then do print messages during the computations.")) (|internalAugment| (((|List| $) |#4| $ (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|) (|Boolean|)) "\\axiom{internalAugment(\\spad{p},{}\\spad{ts},{}\\spad{b1},{}\\spad{b2},{}\\spad{b3},{}\\spad{b4},{}\\spad{b5})} is an internal subroutine,{} exported only for developement.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#4| (LIST (QUOTE -609) (QUOTE (-857)))))
(-1139 S)
((|constructor| (NIL "Linked List implementation of a Stack")) (|stack| (($ (|List| |#1|)) "\\spad{stack([x,{}y,{}...,{}z])} creates a stack with first (top) element \\spad{x},{} second element \\spad{y},{}...,{}and last element \\spad{z}.")))
-((-4402 . T) (-4403 . T))
+((-4403 . T) (-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-1140 A S)
((|constructor| (NIL "A stream aggregate is a linear aggregate which possibly has an infinite number of elements. A basic domain constructor which builds stream aggregates is \\spadtype{Stream}. From streams,{} a number of infinite structures such power series can be built. A stream aggregate may also be infinite since it may be cyclic. For example,{} see \\spadtype{DecimalExpansion}.")) (|possiblyInfinite?| (((|Boolean|) $) "\\spad{possiblyInfinite?(s)} tests if the stream \\spad{s} could possibly have an infinite number of elements. Note: for many datatypes,{} \\axiom{possiblyInfinite?(\\spad{s}) = not explictlyFinite?(\\spad{s})}.")) (|explicitlyFinite?| (((|Boolean|) $) "\\spad{explicitlyFinite?(s)} tests if the stream has a finite number of elements,{} and \\spad{false} otherwise. Note: for many datatypes,{} \\axiom{explicitlyFinite?(\\spad{s}) = not possiblyInfinite?(\\spad{s})}.")))
@@ -4498,8 +4498,8 @@ NIL
NIL
(-1142 |Key| |Ent| |dent|)
((|constructor| (NIL "A sparse table has a default entry,{} which is returned if no other value has been explicitly stored for a key.")))
-((-4403 . T))
-((-12 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2694) (|devaluate| |#2|)))))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-845))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))))
+((-4404 . T))
+((-12 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2693) (|devaluate| |#2|)))))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-845))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))))
(-1143)
((|constructor| (NIL "A class of objects which can be 'stepped through'. Repeated applications of \\spadfun{nextItem} is guaranteed never to return duplicate items and only return \"failed\" after exhausting all elements of the domain. This assumes that the sequence starts with \\spad{init()}. For infinite domains,{} repeated application of \\spadfun{nextItem} is not required to reach all possible domain elements starting from any initial element. \\blankline Conditional attributes: \\indented{2}{infinite\\tab{15}repeated \\spad{nextItem}\\spad{'s} are never \"failed\".}")) (|nextItem| (((|Union| $ "failed") $) "\\spad{nextItem(x)} returns the next item,{} or \"failed\" if domain is exhausted.")) (|init| (($) "\\spad{init()} chooses an initial object for stepping.")))
NIL
@@ -4522,20 +4522,20 @@ NIL
NIL
(-1148 S)
((|constructor| (NIL "A stream is an implementation of an infinite sequence using a list of terms that have been computed and a function closure to compute additional terms when needed.")) (|filterUntil| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{filterUntil(p,{}s)} returns \\spad{[x0,{}x1,{}...,{}x(n)]} where \\spad{s = [x0,{}x1,{}x2,{}..]} and \\spad{n} is the smallest index such that \\spad{p(xn) = true}.")) (|filterWhile| (($ (|Mapping| (|Boolean|) |#1|) $) "\\spad{filterWhile(p,{}s)} returns \\spad{[x0,{}x1,{}...,{}x(n-1)]} where \\spad{s = [x0,{}x1,{}x2,{}..]} and \\spad{n} is the smallest index such that \\spad{p(xn) = false}.")) (|generate| (($ (|Mapping| |#1| |#1|) |#1|) "\\spad{generate(f,{}x)} creates an infinite stream whose first element is \\spad{x} and whose \\spad{n}th element (\\spad{n > 1}) is \\spad{f} applied to the previous element. Note: \\spad{generate(f,{}x) = [x,{}f(x),{}f(f(x)),{}...]}.") (($ (|Mapping| |#1|)) "\\spad{generate(f)} creates an infinite stream all of whose elements are equal to \\spad{f()}. Note: \\spad{generate(f) = [f(),{}f(),{}f(),{}...]}.")) (|setrest!| (($ $ (|Integer|) $) "\\spad{setrest!(x,{}n,{}y)} sets rest(\\spad{x},{}\\spad{n}) to \\spad{y}. The function will expand cycles if necessary.")) (|showAll?| (((|Boolean|)) "\\spad{showAll?()} returns \\spad{true} if all computed entries of streams will be displayed.")) (|showAllElements| (((|OutputForm|) $) "\\spad{showAllElements(s)} creates an output form which displays all computed elements.")) (|output| (((|Void|) (|Integer|) $) "\\spad{output(n,{}st)} computes and displays the first \\spad{n} entries of \\spad{st}.")) (|cons| (($ |#1| $) "\\spad{cons(a,{}s)} returns a stream whose \\spad{first} is \\spad{a} and whose \\spad{rest} is \\spad{s}. Note: \\spad{cons(a,{}s) = concat(a,{}s)}.")) (|delay| (($ (|Mapping| $)) "\\spad{delay(f)} creates a stream with a lazy evaluation defined by function \\spad{f}. Caution: This function can only be called in compiled code.")) (|findCycle| (((|Record| (|:| |cycle?| (|Boolean|)) (|:| |prefix| (|NonNegativeInteger|)) (|:| |period| (|NonNegativeInteger|))) (|NonNegativeInteger|) $) "\\spad{findCycle(n,{}st)} determines if \\spad{st} is periodic within \\spad{n}.")) (|repeating?| (((|Boolean|) (|List| |#1|) $) "\\spad{repeating?(l,{}s)} returns \\spad{true} if a stream \\spad{s} is periodic with period \\spad{l},{} and \\spad{false} otherwise.")) (|repeating| (($ (|List| |#1|)) "\\spad{repeating(l)} is a repeating stream whose period is the list \\spad{l}.")) (|shallowlyMutable| ((|attribute|) "one may destructively alter a stream by assigning new values to its entries.")))
-((-4403 . T))
+((-4404 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-1149)
((|constructor| (NIL "A category for string-like objects")) (|string| (($ (|Integer|)) "\\spad{string(i)} returns the decimal representation of \\spad{i} in a string")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
NIL
(-1150)
NIL
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| (-143) (QUOTE (-845))) (|HasCategory| (-143) (LIST (QUOTE -308) (QUOTE (-143))))) (-12 (|HasCategory| (-143) (QUOTE (-1092))) (|HasCategory| (-143) (LIST (QUOTE -308) (QUOTE (-143)))))) (|HasCategory| (-143) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| (-143) (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| (-143) (QUOTE (-1092))) (|HasCategory| (-143) (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| (-143) (QUOTE (-1092))) (|HasCategory| (-143) (LIST (QUOTE -308) (QUOTE (-143))))))
(-1151 |Entry|)
((|constructor| (NIL "This domain provides tables where the keys are strings. A specialized hash function for strings is used.")))
-((-4402 . T) (-4403 . T))
-((-12 (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (QUOTE (-1150))) (LIST (QUOTE |:|) (QUOTE -2694) (|devaluate| |#1|)))))) (-4037 (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (QUOTE (-1092))) (|HasCategory| (-1150) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (LIST (QUOTE -609) (QUOTE (-857)))))
+((-4403 . T) (-4404 . T))
+((-12 (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (QUOTE (-1150))) (LIST (QUOTE |:|) (QUOTE -2693) (|devaluate| |#1|)))))) (-4037 (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (QUOTE (-1092))) (|HasCategory| (-1150) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (LIST (QUOTE -609) (QUOTE (-857)))))
(-1152 A)
((|constructor| (NIL "StreamTaylorSeriesOperations implements Taylor series arithmetic,{} where a Taylor series is represented by a stream of its coefficients.")) (|power| (((|Stream| |#1|) |#1| (|Stream| |#1|)) "\\spad{power(a,{}f)} returns the power series \\spad{f} raised to the power \\spad{a}.")) (|lazyGintegrate| (((|Stream| |#1|) (|Mapping| |#1| (|Integer|)) |#1| (|Mapping| (|Stream| |#1|))) "\\spad{lazyGintegrate(f,{}r,{}g)} is used for fixed point computations.")) (|mapdiv| (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{mapdiv([a0,{}a1,{}..],{}[b0,{}b1,{}..])} returns \\spad{[a0/b0,{}a1/b1,{}..]}.")) (|powern| (((|Stream| |#1|) (|Fraction| (|Integer|)) (|Stream| |#1|)) "\\spad{powern(r,{}f)} raises power series \\spad{f} to the power \\spad{r}.")) (|nlde| (((|Stream| |#1|) (|Stream| (|Stream| |#1|))) "\\spad{nlde(u)} solves a first order non-linear differential equation described by \\spad{u} of the form \\spad{[[b<0,{}0>,{}b<0,{}1>,{}...],{}[b<1,{}0>,{}b<1,{}1>,{}.],{}...]}. the differential equation has the form \\spad{y' = sum(i=0 to infinity,{}j=0 to infinity,{}b<i,{}j>*(x**i)*(y**j))}.")) (|lazyIntegrate| (((|Stream| |#1|) |#1| (|Mapping| (|Stream| |#1|))) "\\spad{lazyIntegrate(r,{}f)} is a local function used for fixed point computations.")) (|integrate| (((|Stream| |#1|) |#1| (|Stream| |#1|)) "\\spad{integrate(r,{}a)} returns the integral of the power series \\spad{a} with respect to the power series variableintegration where \\spad{r} denotes the constant of integration. Thus \\spad{integrate(a,{}[a0,{}a1,{}a2,{}...]) = [a,{}a0,{}a1/2,{}a2/3,{}...]}.")) (|invmultisect| (((|Stream| |#1|) (|Integer|) (|Integer|) (|Stream| |#1|)) "\\spad{invmultisect(a,{}b,{}st)} substitutes \\spad{x**((a+b)*n)} for \\spad{x**n} and multiplies by \\spad{x**b}.")) (|multisect| (((|Stream| |#1|) (|Integer|) (|Integer|) (|Stream| |#1|)) "\\spad{multisect(a,{}b,{}st)} selects the coefficients of \\spad{x**((a+b)*n+a)},{} and changes them to \\spad{x**n}.")) (|generalLambert| (((|Stream| |#1|) (|Stream| |#1|) (|Integer|) (|Integer|)) "\\spad{generalLambert(f(x),{}a,{}d)} returns \\spad{f(x**a) + f(x**(a + d)) + f(x**(a + 2 d)) + ...}. \\spad{f(x)} should have zero constant coefficient and \\spad{a} and \\spad{d} should be positive.")) (|evenlambert| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{evenlambert(st)} computes \\spad{f(x**2) + f(x**4) + f(x**6) + ...} if \\spad{st} is a stream representing \\spad{f(x)}. This function is used for computing infinite products. If \\spad{f(x)} is a power series with constant coefficient 1,{} then \\spad{prod(f(x**(2*n)),{}n=1..infinity) = exp(evenlambert(log(f(x))))}.")) (|oddlambert| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{oddlambert(st)} computes \\spad{f(x) + f(x**3) + f(x**5) + ...} if \\spad{st} is a stream representing \\spad{f(x)}. This function is used for computing infinite products. If \\spad{f}(\\spad{x}) is a power series with constant coefficient 1 then \\spad{prod(f(x**(2*n-1)),{}n=1..infinity) = exp(oddlambert(log(f(x))))}.")) (|lambert| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{lambert(st)} computes \\spad{f(x) + f(x**2) + f(x**3) + ...} if \\spad{st} is a stream representing \\spad{f(x)}. This function is used for computing infinite products. If \\spad{f(x)} is a power series with constant coefficient 1 then \\spad{prod(f(x**n),{}n = 1..infinity) = exp(lambert(log(f(x))))}.")) (|addiag| (((|Stream| |#1|) (|Stream| (|Stream| |#1|))) "\\spad{addiag(x)} performs diagonal addition of a stream of streams. if \\spad{x} = \\spad{[[a<0,{}0>,{}a<0,{}1>,{}..],{}[a<1,{}0>,{}a<1,{}1>,{}..],{}[a<2,{}0>,{}a<2,{}1>,{}..],{}..]} and \\spad{addiag(x) = [b<0,{}b<1>,{}...],{} then b<k> = sum(i+j=k,{}a<i,{}j>)}.")) (|revert| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{revert(a)} computes the inverse of a power series \\spad{a} with respect to composition. the series should have constant coefficient 0 and first order coefficient 1.")) (|lagrange| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{lagrange(g)} produces the power series for \\spad{f} where \\spad{f} is implicitly defined as \\spad{f(z) = z*g(f(z))}.")) (|compose| (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{compose(a,{}b)} composes the power series \\spad{a} with the power series \\spad{b}.")) (|eval| (((|Stream| |#1|) (|Stream| |#1|) |#1|) "\\spad{eval(a,{}r)} returns a stream of partial sums of the power series \\spad{a} evaluated at the power series variable equal to \\spad{r}.")) (|coerce| (((|Stream| |#1|) |#1|) "\\spad{coerce(r)} converts a ring element \\spad{r} to a stream with one element.")) (|gderiv| (((|Stream| |#1|) (|Mapping| |#1| (|Integer|)) (|Stream| |#1|)) "\\spad{gderiv(f,{}[a0,{}a1,{}a2,{}..])} returns \\spad{[f(0)*a0,{}f(1)*a1,{}f(2)*a2,{}..]}.")) (|deriv| (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{deriv(a)} returns the derivative of the power series with respect to the power series variable. Thus \\spad{deriv([a0,{}a1,{}a2,{}...])} returns \\spad{[a1,{}2 a2,{}3 a3,{}...]}.")) (|mapmult| (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{mapmult([a0,{}a1,{}..],{}[b0,{}b1,{}..])} returns \\spad{[a0*b0,{}a1*b1,{}..]}.")) (|int| (((|Stream| |#1|) |#1|) "\\spad{int(r)} returns [\\spad{r},{}\\spad{r+1},{}\\spad{r+2},{}...],{} where \\spad{r} is a ring element.")) (|oddintegers| (((|Stream| (|Integer|)) (|Integer|)) "\\spad{oddintegers(n)} returns \\spad{[n,{}n+2,{}n+4,{}...]}.")) (|integers| (((|Stream| (|Integer|)) (|Integer|)) "\\spad{integers(n)} returns \\spad{[n,{}n+1,{}n+2,{}...]}.")) (|monom| (((|Stream| |#1|) |#1| (|Integer|)) "\\spad{monom(deg,{}coef)} is a monomial of degree \\spad{deg} with coefficient \\spad{coef}.")) (|recip| (((|Union| (|Stream| |#1|) "failed") (|Stream| |#1|)) "\\spad{recip(a)} returns the power series reciprocal of \\spad{a},{} or \"failed\" if not possible.")) (/ (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{a / b} returns the power series quotient of \\spad{a} by \\spad{b}. An error message is returned if \\spad{b} is not invertible. This function is used in fixed point computations.")) (|exquo| (((|Union| (|Stream| |#1|) "failed") (|Stream| |#1|) (|Stream| |#1|)) "\\spad{exquo(a,{}b)} returns the power series quotient of \\spad{a} by \\spad{b},{} if the quotient exists,{} and \"failed\" otherwise")) (* (((|Stream| |#1|) (|Stream| |#1|) |#1|) "\\spad{a * r} returns the power series scalar multiplication of \\spad{a} by \\spad{r:} \\spad{[a0,{}a1,{}...] * r = [a0 * r,{}a1 * r,{}...]}") (((|Stream| |#1|) |#1| (|Stream| |#1|)) "\\spad{r * a} returns the power series scalar multiplication of \\spad{r} by \\spad{a}: \\spad{r * [a0,{}a1,{}...] = [r * a0,{}r * a1,{}...]}") (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{a * b} returns the power series (Cauchy) product of \\spad{a} and \\spad{b:} \\spad{[a0,{}a1,{}...] * [b0,{}b1,{}...] = [c0,{}c1,{}...]} where \\spad{ck = sum(i + j = k,{}\\spad{ai} * bk)}.")) (- (((|Stream| |#1|) (|Stream| |#1|)) "\\spad{- a} returns the power series negative of \\spad{a}: \\spad{- [a0,{}a1,{}...] = [- a0,{}- a1,{}...]}") (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{a - b} returns the power series difference of \\spad{a} and \\spad{b}: \\spad{[a0,{}a1,{}..] - [b0,{}b1,{}..] = [a0 - b0,{}a1 - b1,{}..]}")) (+ (((|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) "\\spad{a + b} returns the power series sum of \\spad{a} and \\spad{b}: \\spad{[a0,{}a1,{}..] + [b0,{}b1,{}..] = [a0 + b0,{}a1 + b1,{}..]}")))
NIL
@@ -4566,9 +4566,9 @@ NIL
NIL
(-1159 |Coef| |var| |cen|)
((|constructor| (NIL "Sparse Laurent series in one variable \\indented{2}{\\spadtype{SparseUnivariateLaurentSeries} is a domain representing Laurent} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spad{SparseUnivariateLaurentSeries(Integer,{}x,{}3)} represents Laurent} \\indented{2}{series in \\spad{(x - 3)} with integer coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Laurent series.")))
-(((-4404 "*") -4037 (-2246 (|has| |#1| (-362)) (|has| (-1166 |#1| |#2| |#3|) (-815))) (|has| |#1| (-171)) (-2246 (|has| |#1| (-362)) (|has| (-1166 |#1| |#2| |#3|) (-904)))) (-4395 -4037 (-2246 (|has| |#1| (-362)) (|has| (-1166 |#1| |#2| |#3|) (-815))) (|has| |#1| (-554)) (-2246 (|has| |#1| (-362)) (|has| (-1166 |#1| |#2| |#3|) (-904)))) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4396 . T) (-4397 . T) (-4399 . T))
-((-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-1017))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-1143))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -308) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -513) (QUOTE (-1168)) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-144)))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-146)))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|)))))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-232))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|))))) (|HasCategory| (-562) (QUOTE (-1104))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-362))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-1017))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-362))))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-1143))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -308) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -513) (QUOTE (-1168)) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -4054) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -2667) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1402) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-144))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-171)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-144)))))
-(-1160 R -3197)
+(((-4405 "*") -4037 (-2245 (|has| |#1| (-362)) (|has| (-1166 |#1| |#2| |#3|) (-815))) (|has| |#1| (-171)) (-2245 (|has| |#1| (-362)) (|has| (-1166 |#1| |#2| |#3|) (-904)))) (-4396 -4037 (-2245 (|has| |#1| (-362)) (|has| (-1166 |#1| |#2| |#3|) (-815))) (|has| |#1| (-554)) (-2245 (|has| |#1| (-362)) (|has| (-1166 |#1| |#2| |#3|) (-904)))) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4397 . T) (-4398 . T) (-4400 . T))
+((-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-1017))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-1143))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -308) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -513) (QUOTE (-1168)) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-144)))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-146)))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|)))))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-232))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|))))) (|HasCategory| (-562) (QUOTE (-1104))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-362))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-1017))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-362))))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-1143))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -308) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -513) (QUOTE (-1168)) (LIST (QUOTE -1166) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -4053) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -3081) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1401) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-144))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-171)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1166 |#1| |#2| |#3|) (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-144)))))
+(-1160 R -3196)
((|constructor| (NIL "computes sums of top-level expressions.")) (|sum| ((|#2| |#2| (|SegmentBinding| |#2|)) "\\spad{sum(f(n),{} n = a..b)} returns \\spad{f}(a) + \\spad{f}(a+1) + ... + \\spad{f}(\\spad{b}).") ((|#2| |#2| (|Symbol|)) "\\spad{sum(a(n),{} n)} returns A(\\spad{n}) such that A(\\spad{n+1}) - A(\\spad{n}) = a(\\spad{n}).")))
NIL
NIL
@@ -4586,16 +4586,16 @@ NIL
NIL
(-1164 R)
((|constructor| (NIL "This domain represents univariate polynomials over arbitrary (not necessarily commutative) coefficient rings. The variable is unspecified so that the variable displays as \\spad{?} on output. If it is necessary to specify the variable name,{} use type \\spadtype{UnivariatePolynomial}. The representation is sparse in the sense that only non-zero terms are represented.")) (|fmecg| (($ $ (|NonNegativeInteger|) |#1| $) "\\spad{fmecg(p1,{}e,{}r,{}p2)} finds \\spad{X} : \\spad{p1} - \\spad{r} * X**e * \\spad{p2}")) (|outputForm| (((|OutputForm|) $ (|OutputForm|)) "\\spad{outputForm(p,{}var)} converts the SparseUnivariatePolynomial \\spad{p} to an output form (see \\spadtype{OutputForm}) printed as a polynomial in the output form variable.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4398 |has| |#1| (-362)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-1143))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-232))) (|HasAttribute| |#1| (QUOTE -4400)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4399 |has| |#1| (-362)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-1143))) (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-232))) (|HasAttribute| |#1| (QUOTE -4401)) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144)))))
(-1165 |Coef| |var| |cen|)
((|constructor| (NIL "Sparse Puiseux series in one variable \\indented{2}{\\spadtype{SparseUnivariatePuiseuxSeries} is a domain representing Puiseux} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spad{SparseUnivariatePuiseuxSeries(Integer,{}x,{}3)} represents Puiseux} \\indented{2}{series in \\spad{(x - 3)} with \\spadtype{Integer} coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|)))) (|HasCategory| (-406 (-562)) (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasSignature| |#1| (LIST (QUOTE -4054) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -2667) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1402) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|)))) (|HasCategory| (-406 (-562)) (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasSignature| |#1| (LIST (QUOTE -4053) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -3081) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1401) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))))
(-1166 |Coef| |var| |cen|)
((|constructor| (NIL "Sparse Taylor series in one variable \\indented{2}{\\spadtype{SparseUnivariateTaylorSeries} is a domain representing Taylor} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spadtype{SparseUnivariateTaylorSeries}(Integer,{}\\spad{x},{}3) represents Taylor} \\indented{2}{series in \\spad{(x - 3)} with \\spadtype{Integer} coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x),{}x)} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} computes the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|univariatePolynomial| (((|UnivariatePolynomial| |#2| |#1|) $ (|NonNegativeInteger|)) "\\spad{univariatePolynomial(f,{}k)} returns a univariate polynomial \\indented{1}{consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.}")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a \\indented{1}{Taylor series.}") (($ (|UnivariatePolynomial| |#2| |#1|)) "\\spad{coerce(p)} converts a univariate polynomial \\spad{p} in the variable \\spad{var} to a univariate Taylor series in \\spad{var}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-766)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-766)) (|devaluate| |#1|)))) (|HasCategory| (-766) (QUOTE (-1104))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-766))))) (|HasSignature| |#1| (LIST (QUOTE -4054) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-766))))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -2667) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1402) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-766)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-766)) (|devaluate| |#1|)))) (|HasCategory| (-766) (QUOTE (-1104))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-766))))) (|HasSignature| |#1| (LIST (QUOTE -4053) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-766))))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -3081) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1401) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))))
(-1167)
((|constructor| (NIL "This domain builds representations of boolean expressions for use with the \\axiomType{FortranCode} domain.")) (NOT (($ $) "\\spad{NOT(x)} returns the \\axiomType{Switch} expression representing \\spad{\\~~x}.") (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{NOT(x)} returns the \\axiomType{Switch} expression representing \\spad{\\~~x}.")) (AND (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{AND(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x and y}.")) (EQ (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{EQ(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x = y}.")) (OR (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{OR(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x or y}.")) (GE (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{GE(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x>=y}.")) (LE (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{LE(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x<=y}.")) (GT (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{GT(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x>y}.")) (LT (($ (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $)) (|Union| (|:| I (|Expression| (|Integer|))) (|:| F (|Expression| (|Float|))) (|:| CF (|Expression| (|Complex| (|Float|)))) (|:| |switch| $))) "\\spad{LT(x,{}y)} returns the \\axiomType{Switch} expression representing \\spad{x<y}.")) (|coerce| (($ (|Symbol|)) "\\spad{coerce(s)} \\undocumented{}")))
NIL
@@ -4610,8 +4610,8 @@ NIL
NIL
(-1170 R)
((|constructor| (NIL "This domain implements symmetric polynomial")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-6 -4400)) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| (-966) (QUOTE (-130))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasAttribute| |#1| (QUOTE -4400)))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-6 -4401)) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-451))) (-12 (|HasCategory| (-966) (QUOTE (-130))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasAttribute| |#1| (QUOTE -4401)))
(-1171)
((|constructor| (NIL "Creates and manipulates one global symbol table for FORTRAN code generation,{} containing details of types,{} dimensions,{} and argument lists.")) (|symbolTableOf| (((|SymbolTable|) (|Symbol|) $) "\\spad{symbolTableOf(f,{}tab)} returns the symbol table of \\spad{f}")) (|argumentListOf| (((|List| (|Symbol|)) (|Symbol|) $) "\\spad{argumentListOf(f,{}tab)} returns the argument list of \\spad{f}")) (|returnTypeOf| (((|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void")) (|Symbol|) $) "\\spad{returnTypeOf(f,{}tab)} returns the type of the object returned by \\spad{f}")) (|empty| (($) "\\spad{empty()} creates a new,{} empty symbol table.")) (|printTypes| (((|Void|) (|Symbol|)) "\\spad{printTypes(tab)} produces FORTRAN type declarations from \\spad{tab},{} on the current FORTRAN output stream")) (|printHeader| (((|Void|)) "\\spad{printHeader()} produces the FORTRAN header for the current subprogram in the global symbol table on the current FORTRAN output stream.") (((|Void|) (|Symbol|)) "\\spad{printHeader(f)} produces the FORTRAN header for subprogram \\spad{f} in the global symbol table on the current FORTRAN output stream.") (((|Void|) (|Symbol|) $) "\\spad{printHeader(f,{}tab)} produces the FORTRAN header for subprogram \\spad{f} in symbol table \\spad{tab} on the current FORTRAN output stream.")) (|returnType!| (((|Void|) (|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void"))) "\\spad{returnType!(t)} declares that the return type of he current subprogram in the global symbol table is \\spad{t}.") (((|Void|) (|Symbol|) (|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void"))) "\\spad{returnType!(f,{}t)} declares that the return type of subprogram \\spad{f} in the global symbol table is \\spad{t}.") (((|Void|) (|Symbol|) (|Union| (|:| |fst| (|FortranScalarType|)) (|:| |void| "void")) $) "\\spad{returnType!(f,{}t,{}tab)} declares that the return type of subprogram \\spad{f} in symbol table \\spad{tab} is \\spad{t}.")) (|argumentList!| (((|Void|) (|List| (|Symbol|))) "\\spad{argumentList!(l)} declares that the argument list for the current subprogram in the global symbol table is \\spad{l}.") (((|Void|) (|Symbol|) (|List| (|Symbol|))) "\\spad{argumentList!(f,{}l)} declares that the argument list for subprogram \\spad{f} in the global symbol table is \\spad{l}.") (((|Void|) (|Symbol|) (|List| (|Symbol|)) $) "\\spad{argumentList!(f,{}l,{}tab)} declares that the argument list for subprogram \\spad{f} in symbol table \\spad{tab} is \\spad{l}.")) (|endSubProgram| (((|Symbol|)) "\\spad{endSubProgram()} asserts that we are no longer processing the current subprogram.")) (|currentSubProgram| (((|Symbol|)) "\\spad{currentSubProgram()} returns the name of the current subprogram being processed")) (|newSubProgram| (((|Void|) (|Symbol|)) "\\spad{newSubProgram(f)} asserts that from now on type declarations are part of subprogram \\spad{f}.")) (|declare!| (((|FortranType|) (|Symbol|) (|FortranType|) (|Symbol|)) "\\spad{declare!(u,{}t,{}asp)} declares the parameter \\spad{u} to have type \\spad{t} in \\spad{asp}.") (((|FortranType|) (|Symbol|) (|FortranType|)) "\\spad{declare!(u,{}t)} declares the parameter \\spad{u} to have type \\spad{t} in the current level of the symbol table.") (((|FortranType|) (|List| (|Symbol|)) (|FortranType|) (|Symbol|) $) "\\spad{declare!(u,{}t,{}asp,{}tab)} declares the parameters \\spad{u} of subprogram \\spad{asp} to have type \\spad{t} in symbol table \\spad{tab}.") (((|FortranType|) (|Symbol|) (|FortranType|) (|Symbol|) $) "\\spad{declare!(u,{}t,{}asp,{}tab)} declares the parameter \\spad{u} of subprogram \\spad{asp} to have type \\spad{t} in symbol table \\spad{tab}.")) (|clearTheSymbolTable| (((|Void|) (|Symbol|)) "\\spad{clearTheSymbolTable(x)} removes the symbol \\spad{x} from the table") (((|Void|)) "\\spad{clearTheSymbolTable()} clears the current symbol table.")) (|showTheSymbolTable| (($) "\\spad{showTheSymbolTable()} returns the current symbol table.")))
NIL
@@ -4650,8 +4650,8 @@ NIL
NIL
(-1180 |Key| |Entry|)
((|constructor| (NIL "This is the general purpose table type. The keys are hashed to look up the entries. This creates a \\spadtype{HashTable} if equal for the Key domain is consistent with Lisp EQUAL otherwise an \\spadtype{AssociationList}")))
-((-4402 . T) (-4403 . T))
-((-12 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2320) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2694) (|devaluate| |#2|)))))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))))
+((-4403 . T) (-4404 . T))
+((-12 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -308) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2319) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2693) (|devaluate| |#2|)))))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| |#2| (QUOTE (-1092)))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -610) (QUOTE (-535)))) (-12 (|HasCategory| |#2| (QUOTE (-1092))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#2| (QUOTE (-1092))) (-4037 (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#2| (LIST (QUOTE -609) (QUOTE (-857)))) (|HasCategory| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (LIST (QUOTE -609) (QUOTE (-857)))))
(-1181 R)
((|constructor| (NIL "Expands tangents of sums and scalar products.")) (|tanNa| ((|#1| |#1| (|Integer|)) "\\spad{tanNa(a,{} n)} returns \\spad{f(a)} such that if \\spad{a = tan(u)} then \\spad{f(a) = tan(n * u)}.")) (|tanAn| (((|SparseUnivariatePolynomial| |#1|) |#1| (|PositiveInteger|)) "\\spad{tanAn(a,{} n)} returns \\spad{P(x)} such that if \\spad{a = tan(u)} then \\spad{P(tan(u/n)) = 0}.")) (|tanSum| ((|#1| (|List| |#1|)) "\\spad{tanSum([a1,{}...,{}an])} returns \\spad{f(a1,{}...,{}an)} such that if \\spad{\\spad{ai} = tan(\\spad{ui})} then \\spad{f(a1,{}...,{}an) = tan(u1 + ... + un)}.")))
NIL
@@ -4662,7 +4662,7 @@ NIL
NIL
(-1183 |Key| |Entry|)
((|constructor| (NIL "A table aggregate is a model of a table,{} \\spadignore{i.e.} a discrete many-to-one mapping from keys to entries.")) (|map| (($ (|Mapping| |#2| |#2| |#2|) $ $) "\\spad{map(fn,{}t1,{}t2)} creates a new table \\spad{t} from given tables \\spad{t1} and \\spad{t2} with elements \\spad{fn}(\\spad{x},{}\\spad{y}) where \\spad{x} and \\spad{y} are corresponding elements from \\spad{t1} and \\spad{t2} respectively.")) (|table| (($ (|List| (|Record| (|:| |key| |#1|) (|:| |entry| |#2|)))) "\\spad{table([x,{}y,{}...,{}z])} creates a table consisting of entries \\axiom{\\spad{x},{}\\spad{y},{}...,{}\\spad{z}}.") (($) "\\spad{table()}\\$\\spad{T} creates an empty table of type \\spad{T}.")) (|setelt| ((|#2| $ |#1| |#2|) "\\spad{setelt(t,{}k,{}e)} (also written \\axiom{\\spad{t}.\\spad{k} \\spad{:=} \\spad{e}}) is equivalent to \\axiom{(insert([\\spad{k},{}\\spad{e}],{}\\spad{t}); \\spad{e})}.")))
-((-4403 . T))
+((-4404 . T))
NIL
(-1184 |Key| |Entry|)
((|constructor| (NIL "\\axiom{TabulatedComputationPackage(Key ,{}Entry)} provides some modest support for dealing with operations with type \\axiom{Key \\spad{->} Entry}. The result of such operations can be stored and retrieved with this package by using a hash-table. The user does not need to worry about the management of this hash-table. However,{} onnly one hash-table is built by calling \\axiom{TabulatedComputationPackage(Key ,{}Entry)}.")) (|insert!| (((|Void|) |#1| |#2|) "\\axiom{insert!(\\spad{x},{}\\spad{y})} stores the item whose key is \\axiom{\\spad{x}} and whose entry is \\axiom{\\spad{y}}.")) (|extractIfCan| (((|Union| |#2| "failed") |#1|) "\\axiom{extractIfCan(\\spad{x})} searches the item whose key is \\axiom{\\spad{x}}.")) (|makingStats?| (((|Boolean|)) "\\axiom{makingStats?()} returns \\spad{true} iff the statisitics process is running.")) (|printingInfo?| (((|Boolean|)) "\\axiom{printingInfo?()} returns \\spad{true} iff messages are printed when manipulating items from the hash-table.")) (|usingTable?| (((|Boolean|)) "\\axiom{usingTable?()} returns \\spad{true} iff the hash-table is used")) (|clearTable!| (((|Void|)) "\\axiom{clearTable!()} clears the hash-table and assumes that it will no longer be used.")) (|printStats!| (((|Void|)) "\\axiom{printStats!()} prints the statistics.")) (|startStats!| (((|Void|) (|String|)) "\\axiom{startStats!(\\spad{x})} initializes the statisitics process and sets the comments to display when statistics are printed")) (|printInfo!| (((|Void|) (|String|) (|String|)) "\\axiom{printInfo!(\\spad{x},{}\\spad{y})} initializes the mesages to be printed when manipulating items from the hash-table. If a key is retrieved then \\axiom{\\spad{x}} is displayed. If an item is stored then \\axiom{\\spad{y}} is displayed.")) (|initTable!| (((|Void|)) "\\axiom{initTable!()} initializes the hash-table.")))
@@ -4702,7 +4702,7 @@ NIL
NIL
(-1193 S)
((|constructor| (NIL "\\spadtype{Tree(S)} is a basic domains of tree structures. Each tree is either empty or else is a {\\it node} consisting of a value and a list of (sub)trees.")) (|cyclicParents| (((|List| $) $) "\\spad{cyclicParents(t)} returns a list of cycles that are parents of \\spad{t}.")) (|cyclicEqual?| (((|Boolean|) $ $) "\\spad{cyclicEqual?(t1,{} t2)} tests of two cyclic trees have the same structure.")) (|cyclicEntries| (((|List| $) $) "\\spad{cyclicEntries(t)} returns a list of top-level cycles in tree \\spad{t}.")) (|cyclicCopy| (($ $) "\\spad{cyclicCopy(l)} makes a copy of a (possibly) cyclic tree \\spad{l}.")) (|cyclic?| (((|Boolean|) $) "\\spad{cyclic?(t)} tests if \\spad{t} is a cyclic tree.")) (|tree| (($ |#1|) "\\spad{tree(nd)} creates a tree with value \\spad{nd},{} and no children") (($ (|List| |#1|)) "\\spad{tree(ls)} creates a tree from a list of elements of \\spad{s}.") (($ |#1| (|List| $)) "\\spad{tree(nd,{}ls)} creates a tree with value \\spad{nd},{} and children \\spad{ls}.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1092))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
(-1194 S)
((|constructor| (NIL "Category for the trigonometric functions.")) (|tan| (($ $) "\\spad{tan(x)} returns the tangent of \\spad{x}.")) (|sin| (($ $) "\\spad{sin(x)} returns the sine of \\spad{x}.")) (|sec| (($ $) "\\spad{sec(x)} returns the secant of \\spad{x}.")) (|csc| (($ $) "\\spad{csc(x)} returns the cosecant of \\spad{x}.")) (|cot| (($ $) "\\spad{cot(x)} returns the cotangent of \\spad{x}.")) (|cos| (($ $) "\\spad{cos(x)} returns the cosine of \\spad{x}.")))
@@ -4712,7 +4712,7 @@ NIL
((|constructor| (NIL "Category for the trigonometric functions.")) (|tan| (($ $) "\\spad{tan(x)} returns the tangent of \\spad{x}.")) (|sin| (($ $) "\\spad{sin(x)} returns the sine of \\spad{x}.")) (|sec| (($ $) "\\spad{sec(x)} returns the secant of \\spad{x}.")) (|csc| (($ $) "\\spad{csc(x)} returns the cosecant of \\spad{x}.")) (|cot| (($ $) "\\spad{cot(x)} returns the cotangent of \\spad{x}.")) (|cos| (($ $) "\\spad{cos(x)} returns the cosine of \\spad{x}.")))
NIL
NIL
-(-1196 R -3197)
+(-1196 R -3196)
((|constructor| (NIL "\\spadtype{TrigonometricManipulations} provides transformations from trigonometric functions to complex exponentials and logarithms,{} and back.")) (|complexForm| (((|Complex| |#2|) |#2|) "\\spad{complexForm(f)} returns \\spad{[real f,{} imag f]}.")) (|real?| (((|Boolean|) |#2|) "\\spad{real?(f)} returns \\spad{true} if \\spad{f = real f}.")) (|imag| ((|#2| |#2|) "\\spad{imag(f)} returns the imaginary part of \\spad{f} where \\spad{f} is a complex function.")) (|real| ((|#2| |#2|) "\\spad{real(f)} returns the real part of \\spad{f} where \\spad{f} is a complex function.")) (|trigs| ((|#2| |#2|) "\\spad{trigs(f)} rewrites all the complex logs and exponentials appearing in \\spad{f} in terms of trigonometric functions.")) (|complexElementary| ((|#2| |#2| (|Symbol|)) "\\spad{complexElementary(f,{} x)} rewrites the kernels of \\spad{f} involving \\spad{x} in terms of the 2 fundamental complex transcendental elementary functions: \\spad{log,{} exp}.") ((|#2| |#2|) "\\spad{complexElementary(f)} rewrites \\spad{f} in terms of the 2 fundamental complex transcendental elementary functions: \\spad{log,{} exp}.")) (|complexNormalize| ((|#2| |#2| (|Symbol|)) "\\spad{complexNormalize(f,{} x)} rewrites \\spad{f} using the least possible number of complex independent kernels involving \\spad{x}.") ((|#2| |#2|) "\\spad{complexNormalize(f)} rewrites \\spad{f} using the least possible number of complex independent kernels.")))
NIL
NIL
@@ -4720,7 +4720,7 @@ NIL
((|constructor| (NIL "This package provides functions that compute \"fraction-free\" inverses of upper and lower triangular matrices over a integral domain. By \"fraction-free inverses\" we mean the following: given a matrix \\spad{B} with entries in \\spad{R} and an element \\spad{d} of \\spad{R} such that \\spad{d} * inv(\\spad{B}) also has entries in \\spad{R},{} we return \\spad{d} * inv(\\spad{B}). Thus,{} it is not necessary to pass to the quotient field in any of our computations.")) (|LowTriBddDenomInv| ((|#4| |#4| |#1|) "\\spad{LowTriBddDenomInv(B,{}d)} returns \\spad{M},{} where \\spad{B} is a non-singular lower triangular matrix and \\spad{d} is an element of \\spad{R} such that \\spad{M = d * inv(B)} has entries in \\spad{R}.")) (|UpTriBddDenomInv| ((|#4| |#4| |#1|) "\\spad{UpTriBddDenomInv(B,{}d)} returns \\spad{M},{} where \\spad{B} is a non-singular upper triangular matrix and \\spad{d} is an element of \\spad{R} such that \\spad{M = d * inv(B)} has entries in \\spad{R}.")))
NIL
NIL
-(-1198 R -3197)
+(-1198 R -3196)
((|constructor| (NIL "TranscendentalManipulations provides functions to simplify and expand expressions involving transcendental operators.")) (|expandTrigProducts| ((|#2| |#2|) "\\spad{expandTrigProducts(e)} replaces \\axiom{sin(\\spad{x})*sin(\\spad{y})} by \\spad{(cos(x-y)-cos(x+y))/2},{} \\axiom{cos(\\spad{x})*cos(\\spad{y})} by \\spad{(cos(x-y)+cos(x+y))/2},{} and \\axiom{sin(\\spad{x})*cos(\\spad{y})} by \\spad{(sin(x-y)+sin(x+y))/2}. Note that this operation uses the pattern matcher and so is relatively expensive. To avoid getting into an infinite loop the transformations are applied at most ten times.")) (|removeSinhSq| ((|#2| |#2|) "\\spad{removeSinhSq(f)} converts every \\spad{sinh(u)**2} appearing in \\spad{f} into \\spad{1 - cosh(x)**2},{} and also reduces higher powers of \\spad{sinh(u)} with that formula.")) (|removeCoshSq| ((|#2| |#2|) "\\spad{removeCoshSq(f)} converts every \\spad{cosh(u)**2} appearing in \\spad{f} into \\spad{1 - sinh(x)**2},{} and also reduces higher powers of \\spad{cosh(u)} with that formula.")) (|removeSinSq| ((|#2| |#2|) "\\spad{removeSinSq(f)} converts every \\spad{sin(u)**2} appearing in \\spad{f} into \\spad{1 - cos(x)**2},{} and also reduces higher powers of \\spad{sin(u)} with that formula.")) (|removeCosSq| ((|#2| |#2|) "\\spad{removeCosSq(f)} converts every \\spad{cos(u)**2} appearing in \\spad{f} into \\spad{1 - sin(x)**2},{} and also reduces higher powers of \\spad{cos(u)} with that formula.")) (|coth2tanh| ((|#2| |#2|) "\\spad{coth2tanh(f)} converts every \\spad{coth(u)} appearing in \\spad{f} into \\spad{1/tanh(u)}.")) (|cot2tan| ((|#2| |#2|) "\\spad{cot2tan(f)} converts every \\spad{cot(u)} appearing in \\spad{f} into \\spad{1/tan(u)}.")) (|tanh2coth| ((|#2| |#2|) "\\spad{tanh2coth(f)} converts every \\spad{tanh(u)} appearing in \\spad{f} into \\spad{1/coth(u)}.")) (|tan2cot| ((|#2| |#2|) "\\spad{tan2cot(f)} converts every \\spad{tan(u)} appearing in \\spad{f} into \\spad{1/cot(u)}.")) (|tanh2trigh| ((|#2| |#2|) "\\spad{tanh2trigh(f)} converts every \\spad{tanh(u)} appearing in \\spad{f} into \\spad{sinh(u)/cosh(u)}.")) (|tan2trig| ((|#2| |#2|) "\\spad{tan2trig(f)} converts every \\spad{tan(u)} appearing in \\spad{f} into \\spad{sin(u)/cos(u)}.")) (|sinh2csch| ((|#2| |#2|) "\\spad{sinh2csch(f)} converts every \\spad{sinh(u)} appearing in \\spad{f} into \\spad{1/csch(u)}.")) (|sin2csc| ((|#2| |#2|) "\\spad{sin2csc(f)} converts every \\spad{sin(u)} appearing in \\spad{f} into \\spad{1/csc(u)}.")) (|sech2cosh| ((|#2| |#2|) "\\spad{sech2cosh(f)} converts every \\spad{sech(u)} appearing in \\spad{f} into \\spad{1/cosh(u)}.")) (|sec2cos| ((|#2| |#2|) "\\spad{sec2cos(f)} converts every \\spad{sec(u)} appearing in \\spad{f} into \\spad{1/cos(u)}.")) (|csch2sinh| ((|#2| |#2|) "\\spad{csch2sinh(f)} converts every \\spad{csch(u)} appearing in \\spad{f} into \\spad{1/sinh(u)}.")) (|csc2sin| ((|#2| |#2|) "\\spad{csc2sin(f)} converts every \\spad{csc(u)} appearing in \\spad{f} into \\spad{1/sin(u)}.")) (|coth2trigh| ((|#2| |#2|) "\\spad{coth2trigh(f)} converts every \\spad{coth(u)} appearing in \\spad{f} into \\spad{cosh(u)/sinh(u)}.")) (|cot2trig| ((|#2| |#2|) "\\spad{cot2trig(f)} converts every \\spad{cot(u)} appearing in \\spad{f} into \\spad{cos(u)/sin(u)}.")) (|cosh2sech| ((|#2| |#2|) "\\spad{cosh2sech(f)} converts every \\spad{cosh(u)} appearing in \\spad{f} into \\spad{1/sech(u)}.")) (|cos2sec| ((|#2| |#2|) "\\spad{cos2sec(f)} converts every \\spad{cos(u)} appearing in \\spad{f} into \\spad{1/sec(u)}.")) (|expandLog| ((|#2| |#2|) "\\spad{expandLog(f)} converts every \\spad{log(a/b)} appearing in \\spad{f} into \\spad{log(a) - log(b)},{} and every \\spad{log(a*b)} into \\spad{log(a) + log(b)}..")) (|expandPower| ((|#2| |#2|) "\\spad{expandPower(f)} converts every power \\spad{(a/b)**c} appearing in \\spad{f} into \\spad{a**c * b**(-c)}.")) (|simplifyLog| ((|#2| |#2|) "\\spad{simplifyLog(f)} converts every \\spad{log(a) - log(b)} appearing in \\spad{f} into \\spad{log(a/b)},{} every \\spad{log(a) + log(b)} into \\spad{log(a*b)} and every \\spad{n*log(a)} into \\spad{log(a^n)}.")) (|simplifyExp| ((|#2| |#2|) "\\spad{simplifyExp(f)} converts every product \\spad{exp(a)*exp(b)} appearing in \\spad{f} into \\spad{exp(a+b)}.")) (|htrigs| ((|#2| |#2|) "\\spad{htrigs(f)} converts all the exponentials in \\spad{f} into hyperbolic sines and cosines.")) (|simplify| ((|#2| |#2|) "\\spad{simplify(f)} performs the following simplifications on \\spad{f:}\\begin{items} \\item 1. rewrites trigs and hyperbolic trigs in terms of \\spad{sin} ,{}\\spad{cos},{} \\spad{sinh},{} \\spad{cosh}. \\item 2. rewrites \\spad{sin**2} and \\spad{sinh**2} in terms of \\spad{cos} and \\spad{cosh},{} \\item 3. rewrites \\spad{exp(a)*exp(b)} as \\spad{exp(a+b)}. \\item 4. rewrites \\spad{(a**(1/n))**m * (a**(1/s))**t} as a single power of a single radical of \\spad{a}. \\end{items}")) (|expand| ((|#2| |#2|) "\\spad{expand(f)} performs the following expansions on \\spad{f:}\\begin{items} \\item 1. logs of products are expanded into sums of logs,{} \\item 2. trigonometric and hyperbolic trigonometric functions of sums are expanded into sums of products of trigonometric and hyperbolic trigonometric functions. \\item 3. formal powers of the form \\spad{(a/b)**c} are expanded into \\spad{a**c * b**(-c)}. \\end{items}")))
NIL
((-12 (|HasCategory| |#1| (LIST (QUOTE -610) (LIST (QUOTE -887) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -881) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -881) (|devaluate| |#1|)))))
@@ -4730,11 +4730,11 @@ NIL
((|HasCategory| |#4| (QUOTE (-367))))
(-1200 R E V P)
((|constructor| (NIL "The category of triangular sets of multivariate polynomials with coefficients in an integral domain. Let \\axiom{\\spad{R}} be an integral domain and \\axiom{\\spad{V}} a finite ordered set of variables,{} say \\axiom{\\spad{X1} < \\spad{X2} < ... < \\spad{Xn}}. A set \\axiom{\\spad{S}} of polynomials in \\axiom{\\spad{R}[\\spad{X1},{}\\spad{X2},{}...,{}\\spad{Xn}]} is triangular if no elements of \\axiom{\\spad{S}} lies in \\axiom{\\spad{R}},{} and if two distinct elements of \\axiom{\\spad{S}} have distinct main variables. Note that the empty set is a triangular set. A triangular set is not necessarily a (lexicographical) Groebner basis and the notion of reduction related to triangular sets is based on the recursive view of polynomials. We recall this notion here and refer to [1] for more details. A polynomial \\axiom{\\spad{P}} is reduced \\spad{w}.\\spad{r}.\\spad{t} a non-constant polynomial \\axiom{\\spad{Q}} if the degree of \\axiom{\\spad{P}} in the main variable of \\axiom{\\spad{Q}} is less than the main degree of \\axiom{\\spad{Q}}. A polynomial \\axiom{\\spad{P}} is reduced \\spad{w}.\\spad{r}.\\spad{t} a triangular set \\axiom{\\spad{T}} if it is reduced \\spad{w}.\\spad{r}.\\spad{t}. every polynomial of \\axiom{\\spad{T}}. \\newline References : \\indented{1}{[1] \\spad{P}. AUBRY,{} \\spad{D}. LAZARD and \\spad{M}. MORENO MAZA \"On the Theories} \\indented{5}{of Triangular Sets\" Journal of Symbol. Comp. (to appear)}")) (|coHeight| (((|NonNegativeInteger|) $) "\\axiom{coHeight(\\spad{ts})} returns \\axiom{size()\\spad{\\$}\\spad{V}} minus \\axiom{\\spad{\\#}\\spad{ts}}.")) (|extend| (($ $ |#4|) "\\axiom{extend(\\spad{ts},{}\\spad{p})} returns a triangular set which encodes the simple extension by \\axiom{\\spad{p}} of the extension of the base field defined by \\axiom{\\spad{ts}},{} according to the properties of triangular sets of the current category If the required properties do not hold an error is returned.")) (|extendIfCan| (((|Union| $ "failed") $ |#4|) "\\axiom{extendIfCan(\\spad{ts},{}\\spad{p})} returns a triangular set which encodes the simple extension by \\axiom{\\spad{p}} of the extension of the base field defined by \\axiom{\\spad{ts}},{} according to the properties of triangular sets of the current domain. If the required properties do not hold then \"failed\" is returned. This operation encodes in some sense the properties of the triangular sets of the current category. Is is used to implement the \\axiom{construct} operation to guarantee that every triangular set build from a list of polynomials has the required properties.")) (|select| (((|Union| |#4| "failed") $ |#3|) "\\axiom{select(\\spad{ts},{}\\spad{v})} returns the polynomial of \\axiom{\\spad{ts}} with \\axiom{\\spad{v}} as main variable,{} if any.")) (|algebraic?| (((|Boolean|) |#3| $) "\\axiom{algebraic?(\\spad{v},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{v}} is the main variable of some polynomial in \\axiom{\\spad{ts}}.")) (|algebraicVariables| (((|List| |#3|) $) "\\axiom{algebraicVariables(\\spad{ts})} returns the decreasingly sorted list of the main variables of the polynomials of \\axiom{\\spad{ts}}.")) (|rest| (((|Union| $ "failed") $) "\\axiom{rest(\\spad{ts})} returns the polynomials of \\axiom{\\spad{ts}} with smaller main variable than \\axiom{mvar(\\spad{ts})} if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \"failed\"")) (|last| (((|Union| |#4| "failed") $) "\\axiom{last(\\spad{ts})} returns the polynomial of \\axiom{\\spad{ts}} with smallest main variable if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \\axiom{\"failed\"}.")) (|first| (((|Union| |#4| "failed") $) "\\axiom{first(\\spad{ts})} returns the polynomial of \\axiom{\\spad{ts}} with greatest main variable if \\axiom{\\spad{ts}} is not empty,{} otherwise returns \\axiom{\"failed\"}.")) (|zeroSetSplitIntoTriangularSystems| (((|List| (|Record| (|:| |close| $) (|:| |open| (|List| |#4|)))) (|List| |#4|)) "\\axiom{zeroSetSplitIntoTriangularSystems(\\spad{lp})} returns a list of triangular systems \\axiom{[[\\spad{ts1},{}\\spad{qs1}],{}...,{}[\\spad{tsn},{}\\spad{qsn}]]} such that the zero set of \\axiom{\\spad{lp}} is the union of the closures of the \\axiom{W_i} where \\axiom{W_i} consists of the zeros of \\axiom{\\spad{ts}} which do not cancel any polynomial in \\axiom{qsi}.")) (|zeroSetSplit| (((|List| $) (|List| |#4|)) "\\axiom{zeroSetSplit(\\spad{lp})} returns a list \\axiom{\\spad{lts}} of triangular sets such that the zero set of \\axiom{\\spad{lp}} is the union of the closures of the regular zero sets of the members of \\axiom{\\spad{lts}}.")) (|reduceByQuasiMonic| ((|#4| |#4| $) "\\axiom{reduceByQuasiMonic(\\spad{p},{}\\spad{ts})} returns the same as \\axiom{remainder(\\spad{p},{}collectQuasiMonic(\\spad{ts})).polnum}.")) (|collectQuasiMonic| (($ $) "\\axiom{collectQuasiMonic(\\spad{ts})} returns the subset of \\axiom{\\spad{ts}} consisting of the polynomials with initial in \\axiom{\\spad{R}}.")) (|removeZero| ((|#4| |#4| $) "\\axiom{removeZero(\\spad{p},{}\\spad{ts})} returns \\axiom{0} if \\axiom{\\spad{p}} reduces to \\axiom{0} by pseudo-division \\spad{w}.\\spad{r}.\\spad{t} \\axiom{\\spad{ts}} otherwise returns a polynomial \\axiom{\\spad{q}} computed from \\axiom{\\spad{p}} by removing any coefficient in \\axiom{\\spad{p}} reducing to \\axiom{0}.")) (|initiallyReduce| ((|#4| |#4| $) "\\axiom{initiallyReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{initiallyReduced?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|headReduce| ((|#4| |#4| $) "\\axiom{headReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{headReduce?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|stronglyReduce| ((|#4| |#4| $) "\\axiom{stronglyReduce(\\spad{p},{}\\spad{ts})} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{stronglyReduced?(\\spad{r},{}\\spad{ts})} holds and there exists some product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}.")) (|rewriteSetWithReduction| (((|List| |#4|) (|List| |#4|) $ (|Mapping| |#4| |#4| |#4|) (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{rewriteSetWithReduction(\\spad{lp},{}\\spad{ts},{}redOp,{}redOp?)} returns a list \\axiom{\\spad{lq}} of polynomials such that \\axiom{[reduce(\\spad{p},{}\\spad{ts},{}redOp,{}redOp?) for \\spad{p} in \\spad{lp}]} and \\axiom{\\spad{lp}} have the same zeros inside the regular zero set of \\axiom{\\spad{ts}}. Moreover,{} for every polynomial \\axiom{\\spad{q}} in \\axiom{\\spad{lq}} and every polynomial \\axiom{\\spad{t}} in \\axiom{\\spad{ts}} \\axiom{redOp?(\\spad{q},{}\\spad{t})} holds and there exists a polynomial \\axiom{\\spad{p}} in the ideal generated by \\axiom{\\spad{lp}} and a product \\axiom{\\spad{h}} of \\axiom{initials(\\spad{ts})} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}. The operation \\axiom{redOp} must satisfy the following conditions. For every \\axiom{\\spad{p}} and \\axiom{\\spad{q}} we have \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|reduce| ((|#4| |#4| $ (|Mapping| |#4| |#4| |#4|) (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{reduce(\\spad{p},{}\\spad{ts},{}redOp,{}redOp?)} returns a polynomial \\axiom{\\spad{r}} such that \\axiom{redOp?(\\spad{r},{}\\spad{p})} holds for every \\axiom{\\spad{p}} of \\axiom{\\spad{ts}} and there exists some product \\axiom{\\spad{h}} of the initials of the members of \\axiom{\\spad{ts}} such that \\axiom{\\spad{h*p} - \\spad{r}} lies in the ideal generated by \\axiom{\\spad{ts}}. The operation \\axiom{redOp} must satisfy the following conditions. For every \\axiom{\\spad{p}} and \\axiom{\\spad{q}} we have \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|autoReduced?| (((|Boolean|) $ (|Mapping| (|Boolean|) |#4| (|List| |#4|))) "\\axiom{autoReduced?(\\spad{ts},{}redOp?)} returns \\spad{true} iff every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to every other in the sense of \\axiom{redOp?}")) (|initiallyReduced?| (((|Boolean|) $) "\\spad{initiallyReduced?(ts)} returns \\spad{true} iff for every element \\axiom{\\spad{p}} of \\axiom{\\spad{ts}} \\axiom{\\spad{p}} and all its iterated initials are reduced \\spad{w}.\\spad{r}.\\spad{t}. to the other elements of \\axiom{\\spad{ts}} with the same main variable.") (((|Boolean|) |#4| $) "\\axiom{initiallyReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} and all its iterated initials are reduced \\spad{w}.\\spad{r}.\\spad{t}. to the elements of \\axiom{\\spad{ts}} with the same main variable.")) (|headReduced?| (((|Boolean|) $) "\\spad{headReduced?(ts)} returns \\spad{true} iff the head of every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to any other element of \\axiom{\\spad{ts}}.") (((|Boolean|) |#4| $) "\\axiom{headReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff the head of \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|stronglyReduced?| (((|Boolean|) $) "\\axiom{stronglyReduced?(\\spad{ts})} returns \\spad{true} iff every element of \\axiom{\\spad{ts}} is reduced \\spad{w}.\\spad{r}.\\spad{t} to any other element of \\axiom{\\spad{ts}}.") (((|Boolean|) |#4| $) "\\axiom{stronglyReduced?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. \\axiom{\\spad{ts}}.")) (|reduced?| (((|Boolean|) |#4| $ (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{reduced?(\\spad{p},{}\\spad{ts},{}redOp?)} returns \\spad{true} iff \\axiom{\\spad{p}} is reduced \\spad{w}.\\spad{r}.\\spad{t}. in the sense of the operation \\axiom{redOp?},{} that is if for every \\axiom{\\spad{t}} in \\axiom{\\spad{ts}} \\axiom{redOp?(\\spad{p},{}\\spad{t})} holds.")) (|normalized?| (((|Boolean|) $) "\\axiom{normalized?(\\spad{ts})} returns \\spad{true} iff for every axiom{\\spad{p}} in axiom{\\spad{ts}} we have \\axiom{normalized?(\\spad{p},{}us)} where \\axiom{us} is \\axiom{collectUnder(\\spad{ts},{}mvar(\\spad{p}))}.") (((|Boolean|) |#4| $) "\\axiom{normalized?(\\spad{p},{}\\spad{ts})} returns \\spad{true} iff \\axiom{\\spad{p}} and all its iterated initials have degree zero \\spad{w}.\\spad{r}.\\spad{t}. the main variables of the polynomials of \\axiom{\\spad{ts}}")) (|quasiComponent| (((|Record| (|:| |close| (|List| |#4|)) (|:| |open| (|List| |#4|))) $) "\\axiom{quasiComponent(\\spad{ts})} returns \\axiom{[\\spad{lp},{}\\spad{lq}]} where \\axiom{\\spad{lp}} is the list of the members of \\axiom{\\spad{ts}} and \\axiom{\\spad{lq}}is \\axiom{initials(\\spad{ts})}.")) (|degree| (((|NonNegativeInteger|) $) "\\axiom{degree(\\spad{ts})} returns the product of main degrees of the members of \\axiom{\\spad{ts}}.")) (|initials| (((|List| |#4|) $) "\\axiom{initials(\\spad{ts})} returns the list of the non-constant initials of the members of \\axiom{\\spad{ts}}.")) (|basicSet| (((|Union| (|Record| (|:| |bas| $) (|:| |top| (|List| |#4|))) "failed") (|List| |#4|) (|Mapping| (|Boolean|) |#4|) (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{basicSet(\\spad{ps},{}pred?,{}redOp?)} returns the same as \\axiom{basicSet(\\spad{qs},{}redOp?)} where \\axiom{\\spad{qs}} consists of the polynomials of \\axiom{\\spad{ps}} satisfying property \\axiom{pred?}.") (((|Union| (|Record| (|:| |bas| $) (|:| |top| (|List| |#4|))) "failed") (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|)) "\\axiom{basicSet(\\spad{ps},{}redOp?)} returns \\axiom{[\\spad{bs},{}\\spad{ts}]} where \\axiom{concat(\\spad{bs},{}\\spad{ts})} is \\axiom{\\spad{ps}} and \\axiom{\\spad{bs}} is a basic set in Wu Wen Tsun sense of \\axiom{\\spad{ps}} \\spad{w}.\\spad{r}.\\spad{t} the reduction-test \\axiom{redOp?},{} if no non-zero constant polynomial lie in \\axiom{\\spad{ps}},{} otherwise \\axiom{\"failed\"} is returned.")) (|infRittWu?| (((|Boolean|) $ $) "\\axiom{infRittWu?(\\spad{ts1},{}\\spad{ts2})} returns \\spad{true} iff \\axiom{\\spad{ts2}} has higher rank than \\axiom{\\spad{ts1}} in Wu Wen Tsun sense.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
NIL
(-1201 |Coef|)
((|constructor| (NIL "\\spadtype{TaylorSeries} is a general multivariate Taylor series domain over the ring Coef and with variables of type Symbol.")) (|fintegrate| (($ (|Mapping| $) (|Symbol|) |#1|) "\\spad{fintegrate(f,{}v,{}c)} is the integral of \\spad{f()} with respect \\indented{1}{to \\spad{v} and having \\spad{c} as the constant of integration.} \\indented{1}{The evaluation of \\spad{f()} is delayed.}")) (|integrate| (($ $ (|Symbol|) |#1|) "\\spad{integrate(s,{}v,{}c)} is the integral of \\spad{s} with respect \\indented{1}{to \\spad{v} and having \\spad{c} as the constant of integration.}")) (|coerce| (($ (|Polynomial| |#1|)) "\\spad{coerce(s)} regroups terms of \\spad{s} by total degree \\indented{1}{and forms a series.}") (($ (|Symbol|)) "\\spad{coerce(s)} converts a variable to a Taylor series")) (|coefficient| (((|Polynomial| |#1|) $ (|NonNegativeInteger|)) "\\spad{coefficient(s,{} n)} gives the terms of total degree \\spad{n}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4397 . T) (-4396 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4398 . T) (-4397 . T) (-4400 . T))
((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-144))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-362))))
(-1202 |Curve|)
((|constructor| (NIL "\\indented{2}{Package for constructing tubes around 3-dimensional parametric curves.} Domain of tubes around 3-dimensional parametric curves.")) (|tube| (($ |#1| (|List| (|List| (|Point| (|DoubleFloat|)))) (|Boolean|)) "\\spad{tube(c,{}ll,{}b)} creates a tube of the domain \\spadtype{TubePlot} from a space curve \\spad{c} of the category \\spadtype{PlottableSpaceCurveCategory},{} a list of lists of points (loops) \\spad{ll} and a boolean \\spad{b} which if \\spad{true} indicates a closed tube,{} or if \\spad{false} an open tube.")) (|setClosed| (((|Boolean|) $ (|Boolean|)) "\\spad{setClosed(t,{}b)} declares the given tube plot \\spad{t} to be closed if \\spad{b} is \\spad{true},{} or if \\spad{b} is \\spad{false},{} \\spad{t} is set to be open.")) (|open?| (((|Boolean|) $) "\\spad{open?(t)} tests whether the given tube plot \\spad{t} is open.")) (|closed?| (((|Boolean|) $) "\\spad{closed?(t)} tests whether the given tube plot \\spad{t} is closed.")) (|listLoops| (((|List| (|List| (|Point| (|DoubleFloat|)))) $) "\\spad{listLoops(t)} returns the list of lists of points,{} or the 'loops',{} of the given tube plot \\spad{t}.")) (|getCurve| ((|#1| $) "\\spad{getCurve(t)} returns the \\spadtype{PlottableSpaceCurveCategory} representing the parametric curve of the given tube plot \\spad{t}.")))
@@ -4748,7 +4748,7 @@ NIL
((|constructor| (NIL "\\indented{1}{This domain is used to interface with the interpreter\\spad{'s} notion} of comma-delimited sequences of values.")) (|length| (((|NonNegativeInteger|) $) "\\spad{length(x)} returns the number of elements in tuple \\spad{x}")) (|select| ((|#1| $ (|NonNegativeInteger|)) "\\spad{select(x,{}n)} returns the \\spad{n}-th element of tuple \\spad{x}. tuples are 0-based")))
NIL
((|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))))
-(-1205 -3197)
+(-1205 -3196)
((|constructor| (NIL "A basic package for the factorization of bivariate polynomials over a finite field. The functions here represent the base step for the multivariate factorizer.")) (|twoFactor| (((|Factored| (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|)) (|Integer|)) "\\spad{twoFactor(p,{}n)} returns the factorisation of polynomial \\spad{p},{} a sparse univariate polynomial (sup) over a sup over \\spad{F}. Also,{} \\spad{p} is assumed primitive and square-free and \\spad{n} is the degree of the inner variable of \\spad{p} (maximum of the degrees of the coefficients of \\spad{p}).")) (|generalSqFr| (((|Factored| (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) "\\spad{generalSqFr(p)} returns the square-free factorisation of polynomial \\spad{p},{} a sparse univariate polynomial (sup) over a sup over \\spad{F}.")) (|generalTwoFactor| (((|Factored| (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|))) "\\spad{generalTwoFactor(p)} returns the factorisation of polynomial \\spad{p},{} a sparse univariate polynomial (sup) over a sup over \\spad{F}.")))
NIL
NIL
@@ -4774,7 +4774,7 @@ NIL
NIL
(-1211)
((|constructor| (NIL "A constructive unique factorization domain,{} \\spadignore{i.e.} where we can constructively factor members into a product of a finite number of irreducible elements.")) (|factor| (((|Factored| $) $) "\\spad{factor(x)} returns the factorization of \\spad{x} into irreducibles.")) (|squareFreePart| (($ $) "\\spad{squareFreePart(x)} returns a product of prime factors of \\spad{x} each taken with multiplicity one.")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(x)} returns the square-free factorization of \\spad{x} \\spadignore{i.e.} such that the factors are pairwise relatively prime and each has multiple prime factors.")) (|prime?| (((|Boolean|) $) "\\spad{prime?(x)} tests if \\spad{x} can never be written as the product of two non-units of the ring,{} \\spadignore{i.e.} \\spad{x} is an irreducible element.")))
-((-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1212)
((|constructor| (NIL "This domain is a datatype for (unsigned) integer values of precision 16 bits.")))
@@ -4794,7 +4794,7 @@ NIL
NIL
(-1216 |Coef|)
((|constructor| (NIL "\\spadtype{UnivariateLaurentSeriesCategory} is the category of Laurent series in one variable.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 1. We may integrate a series when we can divide coefficients by integers.")) (|rationalFunction| (((|Fraction| (|Polynomial| |#1|)) $ (|Integer|) (|Integer|)) "\\spad{rationalFunction(f,{}k1,{}k2)} returns a rational function consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (((|Fraction| (|Polynomial| |#1|)) $ (|Integer|)) "\\spad{rationalFunction(f,{}k)} returns a rational function consisting of the sum of all terms of \\spad{f} of degree \\spad{<=} \\spad{k}.")) (|multiplyCoefficients| (($ (|Mapping| |#1| (|Integer|)) $) "\\spad{multiplyCoefficients(f,{}sum(n = n0..infinity,{}a[n] * x**n)) = sum(n = 0..infinity,{}f(n) * a[n] * x**n)}. This function is used when Puiseux series are represented by a Laurent series and an exponent.")) (|series| (($ (|Stream| (|Record| (|:| |k| (|Integer|)) (|:| |c| |#1|)))) "\\spad{series(st)} creates a series from a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1217 S |Coef| UTS)
((|constructor| (NIL "This is a category of univariate Laurent series constructed from univariate Taylor series. A Laurent series is represented by a pair \\spad{[n,{}f(x)]},{} where \\spad{n} is an arbitrary integer and \\spad{f(x)} is a Taylor series. This pair represents the Laurent series \\spad{x**n * f(x)}.")) (|taylorIfCan| (((|Union| |#3| "failed") $) "\\spad{taylorIfCan(f(x))} converts the Laurent series \\spad{f(x)} to a Taylor series,{} if possible. If this is not possible,{} \"failed\" is returned.")) (|taylor| ((|#3| $) "\\spad{taylor(f(x))} converts the Laurent series \\spad{f}(\\spad{x}) to a Taylor series,{} if possible. Error: if this is not possible.")) (|removeZeroes| (($ (|Integer|) $) "\\spad{removeZeroes(n,{}f(x))} removes up to \\spad{n} leading zeroes from the Laurent series \\spad{f(x)}. A Laurent series is represented by (1) an exponent and (2) a Taylor series which may have leading zero coefficients. When the Taylor series has a leading zero coefficient,{} the 'leading zero' is removed from the Laurent series as follows: the series is rewritten by increasing the exponent by 1 and dividing the Taylor series by its variable.") (($ $) "\\spad{removeZeroes(f(x))} removes leading zeroes from the representation of the Laurent series \\spad{f(x)}. A Laurent series is represented by (1) an exponent and (2) a Taylor series which may have leading zero coefficients. When the Taylor series has a leading zero coefficient,{} the 'leading zero' is removed from the Laurent series as follows: the series is rewritten by increasing the exponent by 1 and dividing the Taylor series by its variable. Note: \\spad{removeZeroes(f)} removes all leading zeroes from \\spad{f}")) (|taylorRep| ((|#3| $) "\\spad{taylorRep(f(x))} returns \\spad{g(x)},{} where \\spad{f = x**n * g(x)} is represented by \\spad{[n,{}g(x)]}.")) (|degree| (((|Integer|) $) "\\spad{degree(f(x))} returns the degree of the lowest order term of \\spad{f(x)},{} which may have zero as a coefficient.")) (|laurent| (($ (|Integer|) |#3|) "\\spad{laurent(n,{}f(x))} returns \\spad{x**n * f(x)}.")))
@@ -4802,16 +4802,16 @@ NIL
((|HasCategory| |#2| (QUOTE (-362))))
(-1218 |Coef| UTS)
((|constructor| (NIL "This is a category of univariate Laurent series constructed from univariate Taylor series. A Laurent series is represented by a pair \\spad{[n,{}f(x)]},{} where \\spad{n} is an arbitrary integer and \\spad{f(x)} is a Taylor series. This pair represents the Laurent series \\spad{x**n * f(x)}.")) (|taylorIfCan| (((|Union| |#2| "failed") $) "\\spad{taylorIfCan(f(x))} converts the Laurent series \\spad{f(x)} to a Taylor series,{} if possible. If this is not possible,{} \"failed\" is returned.")) (|taylor| ((|#2| $) "\\spad{taylor(f(x))} converts the Laurent series \\spad{f}(\\spad{x}) to a Taylor series,{} if possible. Error: if this is not possible.")) (|removeZeroes| (($ (|Integer|) $) "\\spad{removeZeroes(n,{}f(x))} removes up to \\spad{n} leading zeroes from the Laurent series \\spad{f(x)}. A Laurent series is represented by (1) an exponent and (2) a Taylor series which may have leading zero coefficients. When the Taylor series has a leading zero coefficient,{} the 'leading zero' is removed from the Laurent series as follows: the series is rewritten by increasing the exponent by 1 and dividing the Taylor series by its variable.") (($ $) "\\spad{removeZeroes(f(x))} removes leading zeroes from the representation of the Laurent series \\spad{f(x)}. A Laurent series is represented by (1) an exponent and (2) a Taylor series which may have leading zero coefficients. When the Taylor series has a leading zero coefficient,{} the 'leading zero' is removed from the Laurent series as follows: the series is rewritten by increasing the exponent by 1 and dividing the Taylor series by its variable. Note: \\spad{removeZeroes(f)} removes all leading zeroes from \\spad{f}")) (|taylorRep| ((|#2| $) "\\spad{taylorRep(f(x))} returns \\spad{g(x)},{} where \\spad{f = x**n * g(x)} is represented by \\spad{[n,{}g(x)]}.")) (|degree| (((|Integer|) $) "\\spad{degree(f(x))} returns the degree of the lowest order term of \\spad{f(x)},{} which may have zero as a coefficient.")) (|laurent| (($ (|Integer|) |#2|) "\\spad{laurent(n,{}f(x))} returns \\spad{x**n * f(x)}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1219 |Coef| UTS)
((|constructor| (NIL "This package enables one to construct a univariate Laurent series domain from a univariate Taylor series domain. Univariate Laurent series are represented by a pair \\spad{[n,{}f(x)]},{} where \\spad{n} is an arbitrary integer and \\spad{f(x)} is a Taylor series. This pair represents the Laurent series \\spad{x**n * f(x)}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4396 . T) (-4397 . T) (-4399 . T))
-((-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-815)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-845)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-904)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1017)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1143)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168)))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-144))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-144))))) (-4037 (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-146))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-232)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|))))) (|HasCategory| (-562) (QUOTE (-1104))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-362))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-904)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1017)))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-815)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-815)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-845))))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-815)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-845)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-904)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1017)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1143)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168)))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1143)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -4054) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -2667) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1402) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-845)))) (|HasCategory| |#2| (QUOTE (-904))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-544)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-306)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-144))))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4397 . T) (-4398 . T) (-4400 . T))
+((-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-815)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-845)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-904)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1017)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1143)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168)))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-144))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-144))))) (-4037 (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-146))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-232)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|))))) (|HasCategory| (-562) (QUOTE (-1104))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-362))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-904)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1017)))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-815)))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-815)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-845))))) (-4037 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-815)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-845)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-904)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1017)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1143)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-1168)))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1143)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -285) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -308) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -513) (QUOTE (-1168)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -4053) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -3081) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1401) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-845)))) (|HasCategory| |#2| (QUOTE (-904))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-544)))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-306)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#1| (QUOTE (-144))) (-12 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-144))))))
(-1220 |Coef| |var| |cen|)
((|constructor| (NIL "Dense Laurent series in one variable \\indented{2}{\\spadtype{UnivariateLaurentSeries} is a domain representing Laurent} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spad{UnivariateLaurentSeries(Integer,{}x,{}3)} represents Laurent series in} \\indented{2}{\\spad{(x - 3)} with integer coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a Laurent series.")))
-(((-4404 "*") -4037 (-2246 (|has| |#1| (-362)) (|has| (-1248 |#1| |#2| |#3|) (-815))) (|has| |#1| (-171)) (-2246 (|has| |#1| (-362)) (|has| (-1248 |#1| |#2| |#3|) (-904)))) (-4395 -4037 (-2246 (|has| |#1| (-362)) (|has| (-1248 |#1| |#2| |#3|) (-815))) (|has| |#1| (-554)) (-2246 (|has| |#1| (-362)) (|has| (-1248 |#1| |#2| |#3|) (-904)))) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4396 . T) (-4397 . T) (-4399 . T))
-((-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-1017))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-1143))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -308) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -513) (QUOTE (-1168)) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-144)))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-146)))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|)))))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-232))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|))))) (|HasCategory| (-562) (QUOTE (-1104))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-362))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-1017))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-362))))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-1143))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -308) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -513) (QUOTE (-1168)) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -4054) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -2667) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1402) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-144))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-171)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-144)))))
+(((-4405 "*") -4037 (-2245 (|has| |#1| (-362)) (|has| (-1248 |#1| |#2| |#3|) (-815))) (|has| |#1| (-171)) (-2245 (|has| |#1| (-362)) (|has| (-1248 |#1| |#2| |#3|) (-904)))) (-4396 -4037 (-2245 (|has| |#1| (-362)) (|has| (-1248 |#1| |#2| |#3|) (-815))) (|has| |#1| (-554)) (-2245 (|has| |#1| (-362)) (|has| (-1248 |#1| |#2| |#3|) (-904)))) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4397 . T) (-4398 . T) (-4400 . T))
+((-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-1017))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-1143))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -308) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -513) (QUOTE (-1168)) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-144)))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-146)))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|)))))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-232))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-562)) (|devaluate| |#1|))))) (|HasCategory| (-562) (QUOTE (-1104))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-362))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-1168)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-1017))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-362))))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-1143))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -285) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -308) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -513) (QUOTE (-1168)) (LIST (QUOTE -1248) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -4053) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-562))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -3081) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1401) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-544))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-306))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-144))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-815))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-171)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-904))) (|HasCategory| |#1| (QUOTE (-362)))) (-12 (|HasCategory| (-1248 |#1| |#2| |#3|) (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-362)))) (|HasCategory| |#1| (QUOTE (-144)))))
(-1221 ZP)
((|constructor| (NIL "Package for the factorization of univariate polynomials with integer coefficients. The factorization is done by \"lifting\" (HENSEL) the factorization over a finite field.")) (|henselFact| (((|Record| (|:| |contp| (|Integer|)) (|:| |factors| (|List| (|Record| (|:| |irr| |#1|) (|:| |pow| (|Integer|)))))) |#1| (|Boolean|)) "\\spad{henselFact(m,{}flag)} returns the factorization of \\spad{m},{} FinalFact is a Record \\spad{s}.\\spad{t}. FinalFact.contp=content \\spad{m},{} FinalFact.factors=List of irreducible factors of \\spad{m} with exponent ,{} if \\spad{flag} =true the polynomial is assumed square free.")) (|factorSquareFree| (((|Factored| |#1|) |#1|) "\\spad{factorSquareFree(m)} returns the factorization of \\spad{m} square free polynomial")) (|factor| (((|Factored| |#1|) |#1|) "\\spad{factor(m)} returns the factorization of \\spad{m}")))
NIL
@@ -4846,8 +4846,8 @@ NIL
NIL
(-1229 |x| R)
((|constructor| (NIL "This domain represents univariate polynomials in some symbol over arbitrary (not necessarily commutative) coefficient rings. The representation is sparse in the sense that only non-zero terms are represented.")) (|fmecg| (($ $ (|NonNegativeInteger|) |#2| $) "\\spad{fmecg(p1,{}e,{}r,{}p2)} finds \\spad{X} : \\spad{p1} - \\spad{r} * X**e * \\spad{p2}")))
-(((-4404 "*") |has| |#2| (-171)) (-4395 |has| |#2| (-554)) (-4398 |has| |#2| (-362)) (-4400 |has| |#2| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#2| (QUOTE (-904))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-554)))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1143))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasAttribute| |#2| (QUOTE -4400)) (|HasCategory| |#2| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-144)))))
+(((-4405 "*") |has| |#2| (-171)) (-4396 |has| |#2| (-554)) (-4399 |has| |#2| (-362)) (-4401 |has| |#2| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#2| (QUOTE (-904))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-554)))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-378)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-378))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -881) (QUOTE (-562)))) (|HasCategory| |#2| (LIST (QUOTE -881) (QUOTE (-562))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-378)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -610) (LIST (QUOTE -887) (QUOTE (-562)))))) (-12 (|HasCategory| (-1074) (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#2| (LIST (QUOTE -610) (QUOTE (-535))))) (|HasCategory| |#2| (QUOTE (-845))) (|HasCategory| |#2| (LIST (QUOTE -635) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (QUOTE (-562)))) (-4037 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| |#2| (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (-4037 (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-1143))) (|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasCategory| |#2| (QUOTE (-232))) (|HasAttribute| |#2| (QUOTE -4401)) (|HasCategory| |#2| (QUOTE (-451))) (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (-4037 (-12 (|HasCategory| $ (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-904)))) (|HasCategory| |#2| (QUOTE (-144)))))
(-1230 R PR S PS)
((|constructor| (NIL "Mapping from polynomials over \\spad{R} to polynomials over \\spad{S} given a map from \\spad{R} to \\spad{S} assumed to send zero to zero.")) (|map| ((|#4| (|Mapping| |#3| |#1|) |#2|) "\\spad{map(f,{} p)} takes a function \\spad{f} from \\spad{R} to \\spad{S},{} and applies it to each (non-zero) coefficient of a polynomial \\spad{p} over \\spad{R},{} getting a new polynomial over \\spad{S}. Note: since the map is not applied to zero elements,{} it may map zero to zero.")))
NIL
@@ -4858,15 +4858,15 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362))) (|HasCategory| |#2| (QUOTE (-451))) (|HasCategory| |#2| (QUOTE (-554))) (|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (QUOTE (-1143))))
(-1232 R)
((|constructor| (NIL "The category of univariate polynomials over a ring \\spad{R}. No particular model is assumed - implementations can be either sparse or dense.")) (|integrate| (($ $) "\\spad{integrate(p)} integrates the univariate polynomial \\spad{p} with respect to its distinguished variable.")) (|additiveValuation| ((|attribute|) "euclideanSize(a*b) = euclideanSize(a) + euclideanSize(\\spad{b})")) (|separate| (((|Record| (|:| |primePart| $) (|:| |commonPart| $)) $ $) "\\spad{separate(p,{} q)} returns \\spad{[a,{} b]} such that polynomial \\spad{p = a b} and \\spad{a} is relatively prime to \\spad{q}.")) (|pseudoDivide| (((|Record| (|:| |coef| |#1|) (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{pseudoDivide(p,{}q)} returns \\spad{[c,{} q,{} r]},{} when \\spad{p' := p*lc(q)**(deg p - deg q + 1) = c * p} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|pseudoQuotient| (($ $ $) "\\spad{pseudoQuotient(p,{}q)} returns \\spad{r},{} the quotient when \\spad{p' := p*lc(q)**(deg p - deg q + 1)} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|composite| (((|Union| (|Fraction| $) "failed") (|Fraction| $) $) "\\spad{composite(f,{} q)} returns \\spad{h} if \\spad{f} = \\spad{h}(\\spad{q}),{} and \"failed\" is no such \\spad{h} exists.") (((|Union| $ "failed") $ $) "\\spad{composite(p,{} q)} returns \\spad{h} if \\spad{p = h(q)},{} and \"failed\" no such \\spad{h} exists.")) (|subResultantGcd| (($ $ $) "\\spad{subResultantGcd(p,{}q)} computes the \\spad{gcd} of the polynomials \\spad{p} and \\spad{q} using the SubResultant \\spad{GCD} algorithm.")) (|order| (((|NonNegativeInteger|) $ $) "\\spad{order(p,{} q)} returns the largest \\spad{n} such that \\spad{q**n} divides polynomial \\spad{p} \\spadignore{i.e.} the order of \\spad{p(x)} at \\spad{q(x)=0}.")) (|elt| ((|#1| (|Fraction| $) |#1|) "\\spad{elt(a,{}r)} evaluates the fraction of univariate polynomials \\spad{a} with the distinguished variable replaced by the constant \\spad{r}.") (((|Fraction| $) (|Fraction| $) (|Fraction| $)) "\\spad{elt(a,{}b)} evaluates the fraction of univariate polynomials \\spad{a} with the distinguished variable replaced by \\spad{b}.")) (|resultant| ((|#1| $ $) "\\spad{resultant(p,{}q)} returns the resultant of the polynomials \\spad{p} and \\spad{q}.")) (|discriminant| ((|#1| $) "\\spad{discriminant(p)} returns the discriminant of the polynomial \\spad{p}.")) (|differentiate| (($ $ (|Mapping| |#1| |#1|) $) "\\spad{differentiate(p,{} d,{} x')} extends the \\spad{R}-derivation \\spad{d} to an extension \\spad{D} in \\spad{R[x]} where \\spad{Dx} is given by \\spad{x'},{} and returns \\spad{Dp}.")) (|pseudoRemainder| (($ $ $) "\\spad{pseudoRemainder(p,{}q)} = \\spad{r},{} for polynomials \\spad{p} and \\spad{q},{} returns the remainder when \\spad{p' := p*lc(q)**(deg p - deg q + 1)} is pseudo right-divided by \\spad{q},{} \\spadignore{i.e.} \\spad{p' = s q + r}.")) (|shiftLeft| (($ $ (|NonNegativeInteger|)) "\\spad{shiftLeft(p,{}n)} returns \\spad{p * monomial(1,{}n)}")) (|shiftRight| (($ $ (|NonNegativeInteger|)) "\\spad{shiftRight(p,{}n)} returns \\spad{monicDivide(p,{}monomial(1,{}n)).quotient}")) (|karatsubaDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ (|NonNegativeInteger|)) "\\spad{karatsubaDivide(p,{}n)} returns the same as \\spad{monicDivide(p,{}monomial(1,{}n))}")) (|monicDivide| (((|Record| (|:| |quotient| $) (|:| |remainder| $)) $ $) "\\spad{monicDivide(p,{}q)} divide the polynomial \\spad{p} by the monic polynomial \\spad{q},{} returning the pair \\spad{[quotient,{} remainder]}. Error: if \\spad{q} isn\\spad{'t} monic.")) (|divideExponents| (((|Union| $ "failed") $ (|NonNegativeInteger|)) "\\spad{divideExponents(p,{}n)} returns a new polynomial resulting from dividing all exponents of the polynomial \\spad{p} by the non negative integer \\spad{n},{} or \"failed\" if some exponent is not exactly divisible by \\spad{n}.")) (|multiplyExponents| (($ $ (|NonNegativeInteger|)) "\\spad{multiplyExponents(p,{}n)} returns a new polynomial resulting from multiplying all exponents of the polynomial \\spad{p} by the non negative integer \\spad{n}.")) (|unmakeSUP| (($ (|SparseUnivariatePolynomial| |#1|)) "\\spad{unmakeSUP(sup)} converts \\spad{sup} of type \\spadtype{SparseUnivariatePolynomial(R)} to be a member of the given type. Note: converse of makeSUP.")) (|makeSUP| (((|SparseUnivariatePolynomial| |#1|) $) "\\spad{makeSUP(p)} converts the polynomial \\spad{p} to be of type SparseUnivariatePolynomial over the same coefficients.")) (|vectorise| (((|Vector| |#1|) $ (|NonNegativeInteger|)) "\\spad{vectorise(p,{} n)} returns \\spad{[a0,{}...,{}a(n-1)]} where \\spad{p = a0 + a1*x + ... + a(n-1)*x**(n-1)} + higher order terms. The degree of polynomial \\spad{p} can be different from \\spad{n-1}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4398 |has| |#1| (-362)) (-4400 |has| |#1| (-6 -4400)) (-4397 . T) (-4396 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4399 |has| |#1| (-362)) (-4401 |has| |#1| (-6 -4401)) (-4398 . T) (-4397 . T) (-4400 . T))
NIL
(-1233 S |Coef| |Expon|)
((|constructor| (NIL "\\spadtype{UnivariatePowerSeriesCategory} is the most general univariate power series category with exponents in an ordered abelian monoid. Note: this category exports a substitution function if it is possible to multiply exponents. Note: this category exports a derivative operation if it is possible to multiply coefficients by exponents.")) (|eval| (((|Stream| |#2|) $ |#2|) "\\spad{eval(f,{}a)} evaluates a power series at a value in the ground ring by returning a stream of partial sums.")) (|extend| (($ $ |#3|) "\\spad{extend(f,{}n)} causes all terms of \\spad{f} of degree \\spad{<=} \\spad{n} to be computed.")) (|approximate| ((|#2| $ |#3|) "\\spad{approximate(f)} returns a truncated power series with the series variable viewed as an element of the coefficient domain.")) (|truncate| (($ $ |#3| |#3|) "\\spad{truncate(f,{}k1,{}k2)} returns a (finite) power series consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (($ $ |#3|) "\\spad{truncate(f,{}k)} returns a (finite) power series consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|order| ((|#3| $ |#3|) "\\spad{order(f,{}n) = min(m,{}n)},{} where \\spad{m} is the degree of the lowest order non-zero term in \\spad{f}.") ((|#3| $) "\\spad{order(f)} is the degree of the lowest order non-zero term in \\spad{f}. This will result in an infinite loop if \\spad{f} has no non-zero terms.")) (|multiplyExponents| (($ $ (|PositiveInteger|)) "\\spad{multiplyExponents(f,{}n)} multiplies all exponents of the power series \\spad{f} by the positive integer \\spad{n}.")) (|center| ((|#2| $) "\\spad{center(f)} returns the point about which the series \\spad{f} is expanded.")) (|variable| (((|Symbol|) $) "\\spad{variable(f)} returns the (unique) power series variable of the power series \\spad{f}.")) (|elt| ((|#2| $ |#3|) "\\spad{elt(f(x),{}r)} returns the coefficient of the term of degree \\spad{r} in \\spad{f(x)}. This is the same as the function \\spadfun{coefficient}.")) (|terms| (((|Stream| (|Record| (|:| |k| |#3|) (|:| |c| |#2|))) $) "\\spad{terms(f(x))} returns a stream of non-zero terms,{} where a a term is an exponent-coefficient pair. The terms in the stream are ordered by increasing order of exponents.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1104))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -4054) (LIST (|devaluate| |#2|) (QUOTE (-1168))))))
+((|HasCategory| |#2| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1104))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -4053) (LIST (|devaluate| |#2|) (QUOTE (-1168))))))
(-1234 |Coef| |Expon|)
((|constructor| (NIL "\\spadtype{UnivariatePowerSeriesCategory} is the most general univariate power series category with exponents in an ordered abelian monoid. Note: this category exports a substitution function if it is possible to multiply exponents. Note: this category exports a derivative operation if it is possible to multiply coefficients by exponents.")) (|eval| (((|Stream| |#1|) $ |#1|) "\\spad{eval(f,{}a)} evaluates a power series at a value in the ground ring by returning a stream of partial sums.")) (|extend| (($ $ |#2|) "\\spad{extend(f,{}n)} causes all terms of \\spad{f} of degree \\spad{<=} \\spad{n} to be computed.")) (|approximate| ((|#1| $ |#2|) "\\spad{approximate(f)} returns a truncated power series with the series variable viewed as an element of the coefficient domain.")) (|truncate| (($ $ |#2| |#2|) "\\spad{truncate(f,{}k1,{}k2)} returns a (finite) power series consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (($ $ |#2|) "\\spad{truncate(f,{}k)} returns a (finite) power series consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|order| ((|#2| $ |#2|) "\\spad{order(f,{}n) = min(m,{}n)},{} where \\spad{m} is the degree of the lowest order non-zero term in \\spad{f}.") ((|#2| $) "\\spad{order(f)} is the degree of the lowest order non-zero term in \\spad{f}. This will result in an infinite loop if \\spad{f} has no non-zero terms.")) (|multiplyExponents| (($ $ (|PositiveInteger|)) "\\spad{multiplyExponents(f,{}n)} multiplies all exponents of the power series \\spad{f} by the positive integer \\spad{n}.")) (|center| ((|#1| $) "\\spad{center(f)} returns the point about which the series \\spad{f} is expanded.")) (|variable| (((|Symbol|) $) "\\spad{variable(f)} returns the (unique) power series variable of the power series \\spad{f}.")) (|elt| ((|#1| $ |#2|) "\\spad{elt(f(x),{}r)} returns the coefficient of the term of degree \\spad{r} in \\spad{f(x)}. This is the same as the function \\spadfun{coefficient}.")) (|terms| (((|Stream| (|Record| (|:| |k| |#2|) (|:| |c| |#1|))) $) "\\spad{terms(f(x))} returns a stream of non-zero terms,{} where a a term is an exponent-coefficient pair. The terms in the stream are ordered by increasing order of exponents.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1235 RC P)
((|constructor| (NIL "This package provides for square-free decomposition of univariate polynomials over arbitrary rings,{} \\spadignore{i.e.} a partial factorization such that each factor is a product of irreducibles with multiplicity one and the factors are pairwise relatively prime. If the ring has characteristic zero,{} the result is guaranteed to satisfy this condition. If the ring is an infinite ring of finite characteristic,{} then it may not be possible to decide when polynomials contain factors which are \\spad{p}th powers. In this case,{} the flag associated with that polynomial is set to \"nil\" (meaning that that polynomials are not guaranteed to be square-free).")) (|BumInSepFFE| (((|Record| (|:| |flg| (|Union| "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (|Integer|))) (|Record| (|:| |flg| (|Union| "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (|Integer|)))) "\\spad{BumInSepFFE(f)} is a local function,{} exported only because it has multiple conditional definitions.")) (|squareFreePart| ((|#2| |#2|) "\\spad{squareFreePart(p)} returns a polynomial which has the same irreducible factors as the univariate polynomial \\spad{p},{} but each factor has multiplicity one.")) (|squareFree| (((|Factored| |#2|) |#2|) "\\spad{squareFree(p)} computes the square-free factorization of the univariate polynomial \\spad{p}. Each factor has no repeated roots,{} and the factors are pairwise relatively prime.")) (|gcd| (($ $ $) "\\spad{gcd(p,{}q)} computes the greatest-common-divisor of \\spad{p} and \\spad{q}.")))
@@ -4878,7 +4878,7 @@ NIL
NIL
(-1237 |Coef|)
((|constructor| (NIL "\\spadtype{UnivariatePuiseuxSeriesCategory} is the category of Puiseux series in one variable.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}var)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{var}.") (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 1. We may integrate a series when we can divide coefficients by rational numbers.")) (|multiplyExponents| (($ $ (|Fraction| (|Integer|))) "\\spad{multiplyExponents(f,{}r)} multiplies all exponents of the power series \\spad{f} by the positive rational number \\spad{r}.")) (|series| (($ (|NonNegativeInteger|) (|Stream| (|Record| (|:| |k| (|Fraction| (|Integer|))) (|:| |c| |#1|)))) "\\spad{series(n,{}st)} creates a series from a common denomiator and a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents and \\spad{n} should be a common denominator for the exponents in the stream of terms.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1238 S |Coef| ULS)
((|constructor| (NIL "This is a category of univariate Puiseux series constructed from univariate Laurent series. A Puiseux series is represented by a pair \\spad{[r,{}f(x)]},{} where \\spad{r} is a positive rational number and \\spad{f(x)} is a Laurent series. This pair represents the Puiseux series \\spad{f(x^r)}.")) (|laurentIfCan| (((|Union| |#3| "failed") $) "\\spad{laurentIfCan(f(x))} converts the Puiseux series \\spad{f(x)} to a Laurent series if possible. If this is not possible,{} \"failed\" is returned.")) (|laurent| ((|#3| $) "\\spad{laurent(f(x))} converts the Puiseux series \\spad{f(x)} to a Laurent series if possible. Error: if this is not possible.")) (|degree| (((|Fraction| (|Integer|)) $) "\\spad{degree(f(x))} returns the degree of the leading term of the Puiseux series \\spad{f(x)},{} which may have zero as a coefficient.")) (|laurentRep| ((|#3| $) "\\spad{laurentRep(f(x))} returns \\spad{g(x)} where the Puiseux series \\spad{f(x) = g(x^r)} is represented by \\spad{[r,{}g(x)]}.")) (|rationalPower| (((|Fraction| (|Integer|)) $) "\\spad{rationalPower(f(x))} returns \\spad{r} where the Puiseux series \\spad{f(x) = g(x^r)}.")) (|puiseux| (($ (|Fraction| (|Integer|)) |#3|) "\\spad{puiseux(r,{}f(x))} returns \\spad{f(x^r)}.")))
@@ -4886,24 +4886,24 @@ NIL
NIL
(-1239 |Coef| ULS)
((|constructor| (NIL "This is a category of univariate Puiseux series constructed from univariate Laurent series. A Puiseux series is represented by a pair \\spad{[r,{}f(x)]},{} where \\spad{r} is a positive rational number and \\spad{f(x)} is a Laurent series. This pair represents the Puiseux series \\spad{f(x^r)}.")) (|laurentIfCan| (((|Union| |#2| "failed") $) "\\spad{laurentIfCan(f(x))} converts the Puiseux series \\spad{f(x)} to a Laurent series if possible. If this is not possible,{} \"failed\" is returned.")) (|laurent| ((|#2| $) "\\spad{laurent(f(x))} converts the Puiseux series \\spad{f(x)} to a Laurent series if possible. Error: if this is not possible.")) (|degree| (((|Fraction| (|Integer|)) $) "\\spad{degree(f(x))} returns the degree of the leading term of the Puiseux series \\spad{f(x)},{} which may have zero as a coefficient.")) (|laurentRep| ((|#2| $) "\\spad{laurentRep(f(x))} returns \\spad{g(x)} where the Puiseux series \\spad{f(x) = g(x^r)} is represented by \\spad{[r,{}g(x)]}.")) (|rationalPower| (((|Fraction| (|Integer|)) $) "\\spad{rationalPower(f(x))} returns \\spad{r} where the Puiseux series \\spad{f(x) = g(x^r)}.")) (|puiseux| (($ (|Fraction| (|Integer|)) |#2|) "\\spad{puiseux(r,{}f(x))} returns \\spad{f(x^r)}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1240 |Coef| ULS)
((|constructor| (NIL "This package enables one to construct a univariate Puiseux series domain from a univariate Laurent series domain. Univariate Puiseux series are represented by a pair \\spad{[r,{}f(x)]},{} where \\spad{r} is a positive rational number and \\spad{f(x)} is a Laurent series. This pair represents the Puiseux series \\spad{f(x^r)}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|)))) (|HasCategory| (-406 (-562)) (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasSignature| |#1| (LIST (QUOTE -4054) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -2667) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1402) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|)))) (|HasCategory| (-406 (-562)) (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasSignature| |#1| (LIST (QUOTE -4053) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -3081) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1401) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))))
(-1241 |Coef| |var| |cen|)
((|constructor| (NIL "Dense Puiseux series in one variable \\indented{2}{\\spadtype{UnivariatePuiseuxSeries} is a domain representing Puiseux} \\indented{2}{series in one variable with coefficients in an arbitrary ring.\\space{2}The} \\indented{2}{parameters of the type specify the coefficient ring,{} the power series} \\indented{2}{variable,{} and the center of the power series expansion.\\space{2}For example,{}} \\indented{2}{\\spad{UnivariatePuiseuxSeries(Integer,{}x,{}3)} represents Puiseux series in} \\indented{2}{\\spad{(x - 3)} with \\spadtype{Integer} coefficients.}")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} returns the derivative of \\spad{f(x)} with respect to \\spad{x}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4400 |has| |#1| (-362)) (-4394 |has| |#1| (-362)) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|)))) (|HasCategory| (-406 (-562)) (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasSignature| |#1| (LIST (QUOTE -4054) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -2667) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1402) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4401 |has| |#1| (-362)) (-4395 |has| |#1| (-362)) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#1| (QUOTE (-171))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562))) (|devaluate| |#1|)))) (|HasCategory| (-406 (-562)) (QUOTE (-1104))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-4037 (|HasCategory| |#1| (QUOTE (-362))) (|HasCategory| |#1| (QUOTE (-554)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasSignature| |#1| (LIST (QUOTE -4053) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -406) (QUOTE (-562)))))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -3081) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1401) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))))
(-1242 R FE |var| |cen|)
((|constructor| (NIL "UnivariatePuiseuxSeriesWithExponentialSingularity is a domain used to represent functions with essential singularities. Objects in this domain are sums,{} where each term in the sum is a univariate Puiseux series times the exponential of a univariate Puiseux series. Thus,{} the elements of this domain are sums of expressions of the form \\spad{g(x) * exp(f(x))},{} where \\spad{g}(\\spad{x}) is a univariate Puiseux series and \\spad{f}(\\spad{x}) is a univariate Puiseux series with no terms of non-negative degree.")) (|dominantTerm| (((|Union| (|Record| (|:| |%term| (|Record| (|:| |%coef| (|UnivariatePuiseuxSeries| |#2| |#3| |#4|)) (|:| |%expon| (|ExponentialOfUnivariatePuiseuxSeries| |#2| |#3| |#4|)) (|:| |%expTerms| (|List| (|Record| (|:| |k| (|Fraction| (|Integer|))) (|:| |c| |#2|)))))) (|:| |%type| (|String|))) "failed") $) "\\spad{dominantTerm(f(var))} returns the term that dominates the limiting behavior of \\spad{f(var)} as \\spad{var -> cen+} together with a \\spadtype{String} which briefly describes that behavior. The value of the \\spadtype{String} will be \\spad{\"zero\"} (resp. \\spad{\"infinity\"}) if the term tends to zero (resp. infinity) exponentially and will \\spad{\"series\"} if the term is a Puiseux series.")) (|limitPlus| (((|Union| (|OrderedCompletion| |#2|) "failed") $) "\\spad{limitPlus(f(var))} returns \\spad{limit(var -> cen+,{}f(var))}.")))
-(((-4404 "*") |has| (-1241 |#2| |#3| |#4|) (-171)) (-4395 |has| (-1241 |#2| |#3| |#4|) (-554)) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") |has| (-1241 |#2| |#3| |#4|) (-171)) (-4396 |has| (-1241 |#2| |#3| |#4|) (-554)) (-4397 . T) (-4398 . T) (-4400 . T))
((|HasCategory| (-1241 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-1241 |#2| |#3| |#4|) (QUOTE (-144))) (|HasCategory| (-1241 |#2| |#3| |#4|) (QUOTE (-146))) (|HasCategory| (-1241 |#2| |#3| |#4|) (QUOTE (-171))) (-4037 (|HasCategory| (-1241 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-1241 |#2| |#3| |#4|) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562)))))) (|HasCategory| (-1241 |#2| |#3| |#4|) (LIST (QUOTE -1033) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| (-1241 |#2| |#3| |#4|) (LIST (QUOTE -1033) (QUOTE (-562)))) (|HasCategory| (-1241 |#2| |#3| |#4|) (QUOTE (-362))) (|HasCategory| (-1241 |#2| |#3| |#4|) (QUOTE (-451))) (|HasCategory| (-1241 |#2| |#3| |#4|) (QUOTE (-554))))
(-1243 A S)
((|constructor| (NIL "A unary-recursive aggregate is a one where nodes may have either 0 or 1 children. This aggregate models,{} though not precisely,{} a linked list possibly with a single cycle. A node with one children models a non-empty list,{} with the \\spadfun{value} of the list designating the head,{} or \\spadfun{first},{} of the list,{} and the child designating the tail,{} or \\spadfun{rest},{} of the list. A node with no child then designates the empty list. Since these aggregates are recursive aggregates,{} they may be cyclic.")) (|split!| (($ $ (|Integer|)) "\\spad{split!(u,{}n)} splits \\spad{u} into two aggregates: \\axiom{\\spad{v} = rest(\\spad{u},{}\\spad{n})} and \\axiom{\\spad{w} = first(\\spad{u},{}\\spad{n})},{} returning \\axiom{\\spad{v}}. Note: afterwards \\axiom{rest(\\spad{u},{}\\spad{n})} returns \\axiom{empty()}.")) (|setlast!| ((|#2| $ |#2|) "\\spad{setlast!(u,{}x)} destructively changes the last element of \\spad{u} to \\spad{x}.")) (|setrest!| (($ $ $) "\\spad{setrest!(u,{}v)} destructively changes the rest of \\spad{u} to \\spad{v}.")) (|setelt| ((|#2| $ "last" |#2|) "\\spad{setelt(u,{}\"last\",{}x)} (also written: \\axiom{\\spad{u}.last \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setlast!(\\spad{u},{}\\spad{v})}.") (($ $ "rest" $) "\\spad{setelt(u,{}\"rest\",{}v)} (also written: \\axiom{\\spad{u}.rest \\spad{:=} \\spad{v}}) is equivalent to \\axiom{setrest!(\\spad{u},{}\\spad{v})}.") ((|#2| $ "first" |#2|) "\\spad{setelt(u,{}\"first\",{}x)} (also written: \\axiom{\\spad{u}.first \\spad{:=} \\spad{x}}) is equivalent to \\axiom{setfirst!(\\spad{u},{}\\spad{x})}.")) (|setfirst!| ((|#2| $ |#2|) "\\spad{setfirst!(u,{}x)} destructively changes the first element of a to \\spad{x}.")) (|cycleSplit!| (($ $) "\\spad{cycleSplit!(u)} splits the aggregate by dropping off the cycle. The value returned is the cycle entry,{} or nil if none exists. For example,{} if \\axiom{\\spad{w} = concat(\\spad{u},{}\\spad{v})} is the cyclic list where \\spad{v} is the head of the cycle,{} \\axiom{cycleSplit!(\\spad{w})} will drop \\spad{v} off \\spad{w} thus destructively changing \\spad{w} to \\spad{u},{} and returning \\spad{v}.")) (|concat!| (($ $ |#2|) "\\spad{concat!(u,{}x)} destructively adds element \\spad{x} to the end of \\spad{u}. Note: \\axiom{concat!(a,{}\\spad{x}) = setlast!(a,{}[\\spad{x}])}.") (($ $ $) "\\spad{concat!(u,{}v)} destructively concatenates \\spad{v} to the end of \\spad{u}. Note: \\axiom{concat!(\\spad{u},{}\\spad{v}) = setlast_!(\\spad{u},{}\\spad{v})}.")) (|cycleTail| (($ $) "\\spad{cycleTail(u)} returns the last node in the cycle,{} or empty if none exists.")) (|cycleLength| (((|NonNegativeInteger|) $) "\\spad{cycleLength(u)} returns the length of a top-level cycle contained in aggregate \\spad{u},{} or 0 is \\spad{u} has no such cycle.")) (|cycleEntry| (($ $) "\\spad{cycleEntry(u)} returns the head of a top-level cycle contained in aggregate \\spad{u},{} or \\axiom{empty()} if none exists.")) (|third| ((|#2| $) "\\spad{third(u)} returns the third element of \\spad{u}. Note: \\axiom{third(\\spad{u}) = first(rest(rest(\\spad{u})))}.")) (|second| ((|#2| $) "\\spad{second(u)} returns the second element of \\spad{u}. Note: \\axiom{second(\\spad{u}) = first(rest(\\spad{u}))}.")) (|tail| (($ $) "\\spad{tail(u)} returns the last node of \\spad{u}. Note: if \\spad{u} is \\axiom{shallowlyMutable},{} \\axiom{setrest(tail(\\spad{u}),{}\\spad{v}) = concat(\\spad{u},{}\\spad{v})}.")) (|last| (($ $ (|NonNegativeInteger|)) "\\spad{last(u,{}n)} returns a copy of the last \\spad{n} (\\axiom{\\spad{n} \\spad{>=} 0}) nodes of \\spad{u}. Note: \\axiom{last(\\spad{u},{}\\spad{n})} is a list of \\spad{n} elements.") ((|#2| $) "\\spad{last(u)} resturn the last element of \\spad{u}. Note: for lists,{} \\axiom{last(\\spad{u}) = \\spad{u} . (maxIndex \\spad{u}) = \\spad{u} . (\\# \\spad{u} - 1)}.")) (|rest| (($ $ (|NonNegativeInteger|)) "\\spad{rest(u,{}n)} returns the \\axiom{\\spad{n}}th (\\spad{n} \\spad{>=} 0) node of \\spad{u}. Note: \\axiom{rest(\\spad{u},{}0) = \\spad{u}}.") (($ $) "\\spad{rest(u)} returns an aggregate consisting of all but the first element of \\spad{u} (equivalently,{} the next node of \\spad{u}).")) (|elt| ((|#2| $ "last") "\\spad{elt(u,{}\"last\")} (also written: \\axiom{\\spad{u} . last}) is equivalent to last \\spad{u}.") (($ $ "rest") "\\spad{elt(\\%,{}\"rest\")} (also written: \\axiom{\\spad{u}.rest}) is equivalent to \\axiom{rest \\spad{u}}.") ((|#2| $ "first") "\\spad{elt(u,{}\"first\")} (also written: \\axiom{\\spad{u} . first}) is equivalent to first \\spad{u}.")) (|first| (($ $ (|NonNegativeInteger|)) "\\spad{first(u,{}n)} returns a copy of the first \\spad{n} (\\axiom{\\spad{n} \\spad{>=} 0}) elements of \\spad{u}.") ((|#2| $) "\\spad{first(u)} returns the first element of \\spad{u} (equivalently,{} the value at the current node).")) (|concat| (($ |#2| $) "\\spad{concat(x,{}u)} returns aggregate consisting of \\spad{x} followed by the elements of \\spad{u}. Note: if \\axiom{\\spad{v} = concat(\\spad{x},{}\\spad{u})} then \\axiom{\\spad{x} = first \\spad{v}} and \\axiom{\\spad{u} = rest \\spad{v}}.") (($ $ $) "\\spad{concat(u,{}v)} returns an aggregate \\spad{w} consisting of the elements of \\spad{u} followed by the elements of \\spad{v}. Note: \\axiom{\\spad{v} = rest(\\spad{w},{}\\#a)}.")))
NIL
-((|HasAttribute| |#1| (QUOTE -4403)))
+((|HasAttribute| |#1| (QUOTE -4404)))
(-1244 S)
((|constructor| (NIL "A unary-recursive aggregate is a one where nodes may have either 0 or 1 children. This aggregate models,{} though not precisely,{} a linked list possibly with a single cycle. A node with one children models a non-empty list,{} with the \\spadfun{value} of the list designating the head,{} or \\spadfun{first},{} of the list,{} and the child designating the tail,{} or \\spadfun{rest},{} of the list. A node with no child then designates the empty list. Since these aggregates are recursive aggregates,{} they may be cyclic.")) (|split!| (($ $ (|Integer|)) "\\spad{split!(u,{}n)} splits \\spad{u} into two aggregates: \\axiom{\\spad{v} = rest(\\spad{u},{}\\spad{n})} and \\axiom{\\spad{w} = first(\\spad{u},{}\\spad{n})},{} returning \\axiom{\\spad{v}}. Note: afterwards \\axiom{rest(\\spad{u},{}\\spad{n})} returns \\axiom{empty()}.")) (|setlast!| ((|#1| $ |#1|) "\\spad{setlast!(u,{}x)} destructively changes the last element of \\spad{u} to \\spad{x}.")) (|setrest!| (($ $ $) "\\spad{setrest!(u,{}v)} destructively changes the rest of \\spad{u} to \\spad{v}.")) (|setelt| ((|#1| $ "last" |#1|) "\\spad{setelt(u,{}\"last\",{}x)} (also written: \\axiom{\\spad{u}.last \\spad{:=} \\spad{b}}) is equivalent to \\axiom{setlast!(\\spad{u},{}\\spad{v})}.") (($ $ "rest" $) "\\spad{setelt(u,{}\"rest\",{}v)} (also written: \\axiom{\\spad{u}.rest \\spad{:=} \\spad{v}}) is equivalent to \\axiom{setrest!(\\spad{u},{}\\spad{v})}.") ((|#1| $ "first" |#1|) "\\spad{setelt(u,{}\"first\",{}x)} (also written: \\axiom{\\spad{u}.first \\spad{:=} \\spad{x}}) is equivalent to \\axiom{setfirst!(\\spad{u},{}\\spad{x})}.")) (|setfirst!| ((|#1| $ |#1|) "\\spad{setfirst!(u,{}x)} destructively changes the first element of a to \\spad{x}.")) (|cycleSplit!| (($ $) "\\spad{cycleSplit!(u)} splits the aggregate by dropping off the cycle. The value returned is the cycle entry,{} or nil if none exists. For example,{} if \\axiom{\\spad{w} = concat(\\spad{u},{}\\spad{v})} is the cyclic list where \\spad{v} is the head of the cycle,{} \\axiom{cycleSplit!(\\spad{w})} will drop \\spad{v} off \\spad{w} thus destructively changing \\spad{w} to \\spad{u},{} and returning \\spad{v}.")) (|concat!| (($ $ |#1|) "\\spad{concat!(u,{}x)} destructively adds element \\spad{x} to the end of \\spad{u}. Note: \\axiom{concat!(a,{}\\spad{x}) = setlast!(a,{}[\\spad{x}])}.") (($ $ $) "\\spad{concat!(u,{}v)} destructively concatenates \\spad{v} to the end of \\spad{u}. Note: \\axiom{concat!(\\spad{u},{}\\spad{v}) = setlast_!(\\spad{u},{}\\spad{v})}.")) (|cycleTail| (($ $) "\\spad{cycleTail(u)} returns the last node in the cycle,{} or empty if none exists.")) (|cycleLength| (((|NonNegativeInteger|) $) "\\spad{cycleLength(u)} returns the length of a top-level cycle contained in aggregate \\spad{u},{} or 0 is \\spad{u} has no such cycle.")) (|cycleEntry| (($ $) "\\spad{cycleEntry(u)} returns the head of a top-level cycle contained in aggregate \\spad{u},{} or \\axiom{empty()} if none exists.")) (|third| ((|#1| $) "\\spad{third(u)} returns the third element of \\spad{u}. Note: \\axiom{third(\\spad{u}) = first(rest(rest(\\spad{u})))}.")) (|second| ((|#1| $) "\\spad{second(u)} returns the second element of \\spad{u}. Note: \\axiom{second(\\spad{u}) = first(rest(\\spad{u}))}.")) (|tail| (($ $) "\\spad{tail(u)} returns the last node of \\spad{u}. Note: if \\spad{u} is \\axiom{shallowlyMutable},{} \\axiom{setrest(tail(\\spad{u}),{}\\spad{v}) = concat(\\spad{u},{}\\spad{v})}.")) (|last| (($ $ (|NonNegativeInteger|)) "\\spad{last(u,{}n)} returns a copy of the last \\spad{n} (\\axiom{\\spad{n} \\spad{>=} 0}) nodes of \\spad{u}. Note: \\axiom{last(\\spad{u},{}\\spad{n})} is a list of \\spad{n} elements.") ((|#1| $) "\\spad{last(u)} resturn the last element of \\spad{u}. Note: for lists,{} \\axiom{last(\\spad{u}) = \\spad{u} . (maxIndex \\spad{u}) = \\spad{u} . (\\# \\spad{u} - 1)}.")) (|rest| (($ $ (|NonNegativeInteger|)) "\\spad{rest(u,{}n)} returns the \\axiom{\\spad{n}}th (\\spad{n} \\spad{>=} 0) node of \\spad{u}. Note: \\axiom{rest(\\spad{u},{}0) = \\spad{u}}.") (($ $) "\\spad{rest(u)} returns an aggregate consisting of all but the first element of \\spad{u} (equivalently,{} the next node of \\spad{u}).")) (|elt| ((|#1| $ "last") "\\spad{elt(u,{}\"last\")} (also written: \\axiom{\\spad{u} . last}) is equivalent to last \\spad{u}.") (($ $ "rest") "\\spad{elt(\\%,{}\"rest\")} (also written: \\axiom{\\spad{u}.rest}) is equivalent to \\axiom{rest \\spad{u}}.") ((|#1| $ "first") "\\spad{elt(u,{}\"first\")} (also written: \\axiom{\\spad{u} . first}) is equivalent to first \\spad{u}.")) (|first| (($ $ (|NonNegativeInteger|)) "\\spad{first(u,{}n)} returns a copy of the first \\spad{n} (\\axiom{\\spad{n} \\spad{>=} 0}) elements of \\spad{u}.") ((|#1| $) "\\spad{first(u)} returns the first element of \\spad{u} (equivalently,{} the value at the current node).")) (|concat| (($ |#1| $) "\\spad{concat(x,{}u)} returns aggregate consisting of \\spad{x} followed by the elements of \\spad{u}. Note: if \\axiom{\\spad{v} = concat(\\spad{x},{}\\spad{u})} then \\axiom{\\spad{x} = first \\spad{v}} and \\axiom{\\spad{u} = rest \\spad{v}}.") (($ $ $) "\\spad{concat(u,{}v)} returns an aggregate \\spad{w} consisting of the elements of \\spad{u} followed by the elements of \\spad{v}. Note: \\axiom{\\spad{v} = rest(\\spad{w},{}\\#a)}.")))
NIL
@@ -4915,20 +4915,20 @@ NIL
(-1246 S |Coef|)
((|constructor| (NIL "\\spadtype{UnivariateTaylorSeriesCategory} is the category of Taylor series in one variable.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (** (($ $ |#2|) "\\spad{f(x) ** a} computes a power of a power series. When the coefficient ring is a field,{} we may raise a series to an exponent from the coefficient ring provided that the constant coefficient of the series is 1.")) (|polynomial| (((|Polynomial| |#2|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{polynomial(f,{}k1,{}k2)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (((|Polynomial| |#2|) $ (|NonNegativeInteger|)) "\\spad{polynomial(f,{}k)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|multiplyCoefficients| (($ (|Mapping| |#2| (|Integer|)) $) "\\spad{multiplyCoefficients(f,{}sum(n = 0..infinity,{}a[n] * x**n))} returns \\spad{sum(n = 0..infinity,{}f(n) * a[n] * x**n)}. This function is used when Laurent series are represented by a Taylor series and an order.")) (|quoByVar| (($ $) "\\spad{quoByVar(a0 + a1 x + a2 x**2 + ...)} returns \\spad{a1 + a2 x + a3 x**2 + ...} Thus,{} this function substracts the constant term and divides by the series variable. This function is used when Laurent series are represented by a Taylor series and an order.")) (|coefficients| (((|Stream| |#2|) $) "\\spad{coefficients(a0 + a1 x + a2 x**2 + ...)} returns a stream of coefficients: \\spad{[a0,{}a1,{}a2,{}...]}. The entries of the stream may be zero.")) (|series| (($ (|Stream| |#2|)) "\\spad{series([a0,{}a1,{}a2,{}...])} is the Taylor series \\spad{a0 + a1 x + a2 x**2 + ...}.") (($ (|Stream| (|Record| (|:| |k| (|NonNegativeInteger|)) (|:| |c| |#2|)))) "\\spad{series(st)} creates a series from a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents.")))
NIL
-((|HasCategory| |#2| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-954))) (|HasCategory| |#2| (QUOTE (-1192))) (|HasSignature| |#2| (LIST (QUOTE -1402) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -2667) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1168))))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362))))
+((|HasCategory| |#2| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#2| (QUOTE (-954))) (|HasCategory| |#2| (QUOTE (-1192))) (|HasSignature| |#2| (LIST (QUOTE -1401) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -3081) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1168))))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#2| (QUOTE (-362))))
(-1247 |Coef|)
((|constructor| (NIL "\\spadtype{UnivariateTaylorSeriesCategory} is the category of Taylor series in one variable.")) (|integrate| (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $ (|Symbol|)) "\\spad{integrate(f(x),{}y)} returns an anti-derivative of the power series \\spad{f(x)} with respect to the variable \\spad{y}.") (($ $) "\\spad{integrate(f(x))} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (** (($ $ |#1|) "\\spad{f(x) ** a} computes a power of a power series. When the coefficient ring is a field,{} we may raise a series to an exponent from the coefficient ring provided that the constant coefficient of the series is 1.")) (|polynomial| (((|Polynomial| |#1|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{polynomial(f,{}k1,{}k2)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{d} with \\spad{k1 <= d <= k2}.") (((|Polynomial| |#1|) $ (|NonNegativeInteger|)) "\\spad{polynomial(f,{}k)} returns a polynomial consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.")) (|multiplyCoefficients| (($ (|Mapping| |#1| (|Integer|)) $) "\\spad{multiplyCoefficients(f,{}sum(n = 0..infinity,{}a[n] * x**n))} returns \\spad{sum(n = 0..infinity,{}f(n) * a[n] * x**n)}. This function is used when Laurent series are represented by a Taylor series and an order.")) (|quoByVar| (($ $) "\\spad{quoByVar(a0 + a1 x + a2 x**2 + ...)} returns \\spad{a1 + a2 x + a3 x**2 + ...} Thus,{} this function substracts the constant term and divides by the series variable. This function is used when Laurent series are represented by a Taylor series and an order.")) (|coefficients| (((|Stream| |#1|) $) "\\spad{coefficients(a0 + a1 x + a2 x**2 + ...)} returns a stream of coefficients: \\spad{[a0,{}a1,{}a2,{}...]}. The entries of the stream may be zero.")) (|series| (($ (|Stream| |#1|)) "\\spad{series([a0,{}a1,{}a2,{}...])} is the Taylor series \\spad{a0 + a1 x + a2 x**2 + ...}.") (($ (|Stream| (|Record| (|:| |k| (|NonNegativeInteger|)) (|:| |c| |#1|)))) "\\spad{series(st)} creates a series from a stream of non-zero terms,{} where a term is an exponent-coefficient pair. The terms in the stream should be ordered by increasing order of exponents.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1248 |Coef| |var| |cen|)
((|constructor| (NIL "Dense Taylor series in one variable \\spadtype{UnivariateTaylorSeries} is a domain representing Taylor series in one variable with coefficients in an arbitrary ring. The parameters of the type specify the coefficient ring,{} the power series variable,{} and the center of the power series expansion. For example,{} \\spadtype{UnivariateTaylorSeries}(Integer,{}\\spad{x},{}3) represents Taylor series in \\spad{(x - 3)} with \\spadtype{Integer} coefficients.")) (|integrate| (($ $ (|Variable| |#2|)) "\\spad{integrate(f(x),{}x)} returns an anti-derivative of the power series \\spad{f(x)} with constant coefficient 0. We may integrate a series when we can divide coefficients by integers.")) (|invmultisect| (($ (|Integer|) (|Integer|) $) "\\spad{invmultisect(a,{}b,{}f(x))} substitutes \\spad{x^((a+b)*n)} \\indented{1}{for \\spad{x^n} and multiples by \\spad{x^b}.}")) (|multisect| (($ (|Integer|) (|Integer|) $) "\\spad{multisect(a,{}b,{}f(x))} selects the coefficients of \\indented{1}{\\spad{x^((a+b)*n+a)},{} and changes this monomial to \\spad{x^n}.}")) (|revert| (($ $) "\\spad{revert(f(x))} returns a Taylor series \\spad{g(x)} such that \\spad{f(g(x)) = g(f(x)) = x}. Series \\spad{f(x)} should have constant coefficient 0 and 1st order coefficient 1.")) (|generalLambert| (($ $ (|Integer|) (|Integer|)) "\\spad{generalLambert(f(x),{}a,{}d)} returns \\spad{f(x^a) + f(x^(a + d)) + \\indented{1}{f(x^(a + 2 d)) + ... }. \\spad{f(x)} should have zero constant} \\indented{1}{coefficient and \\spad{a} and \\spad{d} should be positive.}")) (|evenlambert| (($ $) "\\spad{evenlambert(f(x))} returns \\spad{f(x^2) + f(x^4) + f(x^6) + ...}. \\indented{1}{\\spad{f(x)} should have a zero constant coefficient.} \\indented{1}{This function is used for computing infinite products.} \\indented{1}{If \\spad{f(x)} is a Taylor series with constant term 1,{} then} \\indented{1}{\\spad{product(n=1..infinity,{}f(x^(2*n))) = exp(log(evenlambert(f(x))))}.}")) (|oddlambert| (($ $) "\\spad{oddlambert(f(x))} returns \\spad{f(x) + f(x^3) + f(x^5) + ...}. \\indented{1}{\\spad{f(x)} should have a zero constant coefficient.} \\indented{1}{This function is used for computing infinite products.} \\indented{1}{If \\spad{f(x)} is a Taylor series with constant term 1,{} then} \\indented{1}{\\spad{product(n=1..infinity,{}f(x^(2*n-1)))=exp(log(oddlambert(f(x))))}.}")) (|lambert| (($ $) "\\spad{lambert(f(x))} returns \\spad{f(x) + f(x^2) + f(x^3) + ...}. \\indented{1}{This function is used for computing infinite products.} \\indented{1}{\\spad{f(x)} should have zero constant coefficient.} \\indented{1}{If \\spad{f(x)} is a Taylor series with constant term 1,{} then} \\indented{1}{\\spad{product(n = 1..infinity,{}f(x^n)) = exp(log(lambert(f(x))))}.}")) (|lagrange| (($ $) "\\spad{lagrange(g(x))} produces the Taylor series for \\spad{f(x)} \\indented{1}{where \\spad{f(x)} is implicitly defined as \\spad{f(x) = x*g(f(x))}.}")) (|differentiate| (($ $ (|Variable| |#2|)) "\\spad{differentiate(f(x),{}x)} computes the derivative of \\spad{f(x)} with respect to \\spad{x}.")) (|univariatePolynomial| (((|UnivariatePolynomial| |#2| |#1|) $ (|NonNegativeInteger|)) "\\spad{univariatePolynomial(f,{}k)} returns a univariate polynomial \\indented{1}{consisting of the sum of all terms of \\spad{f} of degree \\spad{<= k}.}")) (|coerce| (($ (|Variable| |#2|)) "\\spad{coerce(var)} converts the series variable \\spad{var} into a \\indented{1}{Taylor series.}") (($ (|UnivariatePolynomial| |#2| |#1|)) "\\spad{coerce(p)} converts a univariate polynomial \\spad{p} in the variable \\spad{var} to a univariate Taylor series in \\spad{var}.")))
-(((-4404 "*") |has| |#1| (-171)) (-4395 |has| |#1| (-554)) (-4396 . T) (-4397 . T) (-4399 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-766)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-766)) (|devaluate| |#1|)))) (|HasCategory| (-766) (QUOTE (-1104))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-766))))) (|HasSignature| |#1| (LIST (QUOTE -4054) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-766))))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -2667) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1402) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))))
+(((-4405 "*") |has| |#1| (-171)) (-4396 |has| |#1| (-554)) (-4397 . T) (-4398 . T) (-4400 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasCategory| |#1| (QUOTE (-554))) (-4037 (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-554)))) (|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-144))) (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (LIST (QUOTE -895) (QUOTE (-1168)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-766)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-766)) (|devaluate| |#1|)))) (|HasCategory| (-766) (QUOTE (-1104))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-766))))) (|HasSignature| |#1| (LIST (QUOTE -4053) (LIST (|devaluate| |#1|) (QUOTE (-1168)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-766))))) (|HasCategory| |#1| (QUOTE (-362))) (-4037 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-954))) (|HasCategory| |#1| (QUOTE (-1192))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasSignature| |#1| (LIST (QUOTE -3081) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1168))))) (|HasSignature| |#1| (LIST (QUOTE -1401) (LIST (LIST (QUOTE -639) (QUOTE (-1168))) (|devaluate| |#1|)))))))
(-1249 |Coef| UTS)
((|constructor| (NIL "\\indented{1}{This package provides Taylor series solutions to regular} linear or non-linear ordinary differential equations of arbitrary order.")) (|mpsode| (((|List| |#2|) (|List| |#1|) (|List| (|Mapping| |#2| (|List| |#2|)))) "\\spad{mpsode(r,{}f)} solves the system of differential equations \\spad{dy[i]/dx =f[i] [x,{}y[1],{}y[2],{}...,{}y[n]]},{} \\spad{y[i](a) = r[i]} for \\spad{i} in 1..\\spad{n}.")) (|ode| ((|#2| (|Mapping| |#2| (|List| |#2|)) (|List| |#1|)) "\\spad{ode(f,{}cl)} is the solution to \\spad{y<n>=f(y,{}y',{}..,{}y<n-1>)} such that \\spad{y<i>(a) = cl.i} for \\spad{i} in 1..\\spad{n}.")) (|ode2| ((|#2| (|Mapping| |#2| |#2| |#2|) |#1| |#1|) "\\spad{ode2(f,{}c0,{}c1)} is the solution to \\spad{y'' = f(y,{}y')} such that \\spad{y(a) = c0} and \\spad{y'(a) = c1}.")) (|ode1| ((|#2| (|Mapping| |#2| |#2|) |#1|) "\\spad{ode1(f,{}c)} is the solution to \\spad{y' = f(y)} such that \\spad{y(a) = c}.")) (|fixedPointExquo| ((|#2| |#2| |#2|) "\\spad{fixedPointExquo(f,{}g)} computes the exact quotient of \\spad{f} and \\spad{g} using a fixed point computation.")) (|stFuncN| (((|Mapping| (|Stream| |#1|) (|List| (|Stream| |#1|))) (|Mapping| |#2| (|List| |#2|))) "\\spad{stFuncN(f)} is a local function xported due to compiler problem. This function is of no interest to the top-level user.")) (|stFunc2| (((|Mapping| (|Stream| |#1|) (|Stream| |#1|) (|Stream| |#1|)) (|Mapping| |#2| |#2| |#2|)) "\\spad{stFunc2(f)} is a local function exported due to compiler problem. This function is of no interest to the top-level user.")) (|stFunc1| (((|Mapping| (|Stream| |#1|) (|Stream| |#1|)) (|Mapping| |#2| |#2|)) "\\spad{stFunc1(f)} is a local function exported due to compiler problem. This function is of no interest to the top-level user.")))
NIL
NIL
-(-1250 -3197 UP L UTS)
+(-1250 -3196 UP L UTS)
((|constructor| (NIL "\\spad{RUTSodetools} provides tools to interface with the series \\indented{1}{ODE solver when presented with linear ODEs.}")) (RF2UTS ((|#4| (|Fraction| |#2|)) "\\spad{RF2UTS(f)} converts \\spad{f} to a Taylor series.")) (LODO2FUN (((|Mapping| |#4| (|List| |#4|)) |#3|) "\\spad{LODO2FUN(op)} returns the function to pass to the series ODE solver in order to solve \\spad{op y = 0}.")) (UTS2UP ((|#2| |#4| (|NonNegativeInteger|)) "\\spad{UTS2UP(s,{} n)} converts the first \\spad{n} terms of \\spad{s} to a univariate polynomial.")) (UP2UTS ((|#4| |#2|) "\\spad{UP2UTS(p)} converts \\spad{p} to a Taylor series.")))
NIL
((|HasCategory| |#1| (QUOTE (-554))))
@@ -4946,7 +4946,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-997))) (|HasCategory| |#2| (QUOTE (-1044))) (|HasCategory| |#2| (QUOTE (-721))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-25))))
(-1254 R)
((|constructor| (NIL "\\spadtype{VectorCategory} represents the type of vector like objects,{} \\spadignore{i.e.} finite sequences indexed by some finite segment of the integers. The operations available on vectors depend on the structure of the underlying components. Many operations from the component domain are defined for vectors componentwise. It can by assumed that extraction or updating components can be done in constant time.")) (|magnitude| ((|#1| $) "\\spad{magnitude(v)} computes the sqrt(dot(\\spad{v},{}\\spad{v})),{} \\spadignore{i.e.} the length")) (|length| ((|#1| $) "\\spad{length(v)} computes the sqrt(dot(\\spad{v},{}\\spad{v})),{} \\spadignore{i.e.} the magnitude")) (|cross| (($ $ $) "vectorProduct(\\spad{u},{}\\spad{v}) constructs the cross product of \\spad{u} and \\spad{v}. Error: if \\spad{u} and \\spad{v} are not of length 3.")) (|outerProduct| (((|Matrix| |#1|) $ $) "\\spad{outerProduct(u,{}v)} constructs the matrix whose (\\spad{i},{}\\spad{j})\\spad{'}th element is \\spad{u}(\\spad{i})\\spad{*v}(\\spad{j}).")) (|dot| ((|#1| $ $) "\\spad{dot(x,{}y)} computes the inner product of the two vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.")) (* (($ $ |#1|) "\\spad{y * r} multiplies each component of the vector \\spad{y} by the element \\spad{r}.") (($ |#1| $) "\\spad{r * y} multiplies the element \\spad{r} times each component of the vector \\spad{y}.") (($ (|Integer|) $) "\\spad{n * y} multiplies each component of the vector \\spad{y} by the integer \\spad{n}.")) (- (($ $ $) "\\spad{x - y} returns the component-wise difference of the vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.") (($ $) "\\spad{-x} negates all components of the vector \\spad{x}.")) (|zero| (($ (|NonNegativeInteger|)) "\\spad{zero(n)} creates a zero vector of length \\spad{n}.")) (+ (($ $ $) "\\spad{x + y} returns the component-wise sum of the vectors \\spad{x} and \\spad{y}. Error: if \\spad{x} and \\spad{y} are not of the same length.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
NIL
(-1255 A B)
((|constructor| (NIL "\\indented{2}{This package provides operations which all take as arguments} vectors of elements of some type \\spad{A} and functions from \\spad{A} to another of type \\spad{B}. The operations all iterate over their vector argument and either return a value of type \\spad{B} or a vector over \\spad{B}.")) (|map| (((|Union| (|Vector| |#2|) "failed") (|Mapping| (|Union| |#2| "failed") |#1|) (|Vector| |#1|)) "\\spad{map(f,{} v)} applies the function \\spad{f} to every element of the vector \\spad{v} producing a new vector containing the values or \\spad{\"failed\"}.") (((|Vector| |#2|) (|Mapping| |#2| |#1|) (|Vector| |#1|)) "\\spad{map(f,{} v)} applies the function \\spad{f} to every element of the vector \\spad{v} producing a new vector containing the values.")) (|reduce| ((|#2| (|Mapping| |#2| |#1| |#2|) (|Vector| |#1|) |#2|) "\\spad{reduce(func,{}vec,{}ident)} combines the elements in \\spad{vec} using the binary function \\spad{func}. Argument \\spad{ident} is returned if \\spad{vec} is empty.")) (|scan| (((|Vector| |#2|) (|Mapping| |#2| |#1| |#2|) (|Vector| |#1|) |#2|) "\\spad{scan(func,{}vec,{}ident)} creates a new vector whose elements are the result of applying reduce to the binary function \\spad{func},{} increasing initial subsequences of the vector \\spad{vec},{} and the element \\spad{ident}.")))
@@ -4954,7 +4954,7 @@ NIL
NIL
(-1256 R)
((|constructor| (NIL "This type represents vector like objects with varying lengths and indexed by a finite segment of integers starting at 1.")) (|vector| (($ (|List| |#1|)) "\\spad{vector(l)} converts the list \\spad{l} to a vector.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-4037 (-12 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|))))) (-4037 (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857))))) (|HasCategory| |#1| (LIST (QUOTE -610) (QUOTE (-535)))) (-4037 (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092)))) (|HasCategory| |#1| (QUOTE (-845))) (|HasCategory| (-562) (QUOTE (-845))) (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-721))) (|HasCategory| |#1| (QUOTE (-1044))) (-12 (|HasCategory| |#1| (QUOTE (-997))) (|HasCategory| |#1| (QUOTE (-1044)))) (|HasCategory| |#1| (LIST (QUOTE -609) (QUOTE (-857)))) (-12 (|HasCategory| |#1| (QUOTE (-1092))) (|HasCategory| |#1| (LIST (QUOTE -308) (|devaluate| |#1|)))))
(-1257)
((|constructor| (NIL "TwoDimensionalViewport creates viewports to display graphs.")) (|coerce| (((|OutputForm|) $) "\\spad{coerce(v)} returns the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport} as output of the domain \\spadtype{OutputForm}.")) (|key| (((|Integer|) $) "\\spad{key(v)} returns the process ID number of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport}.")) (|reset| (((|Void|) $) "\\spad{reset(v)} sets the current state of the graph characteristics of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} back to their initial settings.")) (|write| (((|String|) $ (|String|) (|List| (|String|))) "\\spad{write(v,{}s,{}lf)} takes the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data files for \\spad{v} and the optional file types indicated by the list \\spad{lf}.") (((|String|) $ (|String|) (|String|)) "\\spad{write(v,{}s,{}f)} takes the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data files for \\spad{v} and an optional file type \\spad{f}.") (((|String|) $ (|String|)) "\\spad{write(v,{}s)} takes the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} and creates a directory indicated by \\spad{s},{} which contains the graph data files for \\spad{v}.")) (|resize| (((|Void|) $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{resize(v,{}w,{}h)} displays the two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} with a width of \\spad{w} and a height of \\spad{h},{} keeping the upper left-hand corner position unchanged.")) (|update| (((|Void|) $ (|GraphImage|) (|PositiveInteger|)) "\\spad{update(v,{}gr,{}n)} drops the graph \\spad{gr} in slot \\spad{n} of viewport \\spad{v}. The graph \\spad{gr} must have been transmitted already and acquired an integer key.")) (|move| (((|Void|) $ (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{move(v,{}x,{}y)} displays the two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} with the upper left-hand corner of the viewport window at the screen coordinate position \\spad{x},{} \\spad{y}.")) (|show| (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{show(v,{}n,{}s)} displays the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the graph if \\spad{s} is \"off\".")) (|translate| (((|Void|) $ (|PositiveInteger|) (|Float|) (|Float|)) "\\spad{translate(v,{}n,{}dx,{}dy)} displays the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} translated by \\spad{dx} in the \\spad{x}-coordinate direction from the center of the viewport,{} and by \\spad{dy} in the \\spad{y}-coordinate direction from the center. Setting \\spad{dx} and \\spad{dy} to \\spad{0} places the center of the graph at the center of the viewport.")) (|scale| (((|Void|) $ (|PositiveInteger|) (|Float|) (|Float|)) "\\spad{scale(v,{}n,{}sx,{}sy)} displays the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} scaled by the factor \\spad{sx} in the \\spad{x}-coordinate direction and by the factor \\spad{sy} in the \\spad{y}-coordinate direction.")) (|dimensions| (((|Void|) $ (|NonNegativeInteger|) (|NonNegativeInteger|) (|PositiveInteger|) (|PositiveInteger|)) "\\spad{dimensions(v,{}x,{}y,{}width,{}height)} sets the position of the upper left-hand corner of the two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} to the window coordinate \\spad{x},{} \\spad{y},{} and sets the dimensions of the window to that of \\spad{width},{} \\spad{height}. The new dimensions are not displayed until the function \\spadfun{makeViewport2D} is executed again for \\spad{v}.")) (|close| (((|Void|) $) "\\spad{close(v)} closes the viewport window of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} and terminates the corresponding process ID.")) (|controlPanel| (((|Void|) $ (|String|)) "\\spad{controlPanel(v,{}s)} displays the control panel of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or hides the control panel if \\spad{s} is \"off\".")) (|connect| (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{connect(v,{}n,{}s)} displays the lines connecting the graph points in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the lines if \\spad{s} is \"off\".")) (|region| (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{region(v,{}n,{}s)} displays the bounding box of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the bounding box if \\spad{s} is \"off\".")) (|points| (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{points(v,{}n,{}s)} displays the points of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the points if \\spad{s} is \"off\".")) (|units| (((|Void|) $ (|PositiveInteger|) (|Palette|)) "\\spad{units(v,{}n,{}c)} displays the units of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} with the units color set to the given palette color \\spad{c}.") (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{units(v,{}n,{}s)} displays the units of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the units if \\spad{s} is \"off\".")) (|axes| (((|Void|) $ (|PositiveInteger|) (|Palette|)) "\\spad{axes(v,{}n,{}c)} displays the axes of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} with the axes color set to the given palette color \\spad{c}.") (((|Void|) $ (|PositiveInteger|) (|String|)) "\\spad{axes(v,{}n,{}s)} displays the axes of the graph in field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} if \\spad{s} is \"on\",{} or does not display the axes if \\spad{s} is \"off\".")) (|getGraph| (((|GraphImage|) $ (|PositiveInteger|)) "\\spad{getGraph(v,{}n)} returns the graph which is of the domain \\spadtype{GraphImage} which is located in graph field \\spad{n} of the given two-dimensional viewport,{} \\spad{v},{} which is of the domain \\spadtype{TwoDimensionalViewport}.")) (|putGraph| (((|Void|) $ (|GraphImage|) (|PositiveInteger|)) "\\spad{putGraph(v,{}\\spad{gi},{}n)} sets the graph field indicated by \\spad{n},{} of the indicated two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport},{} to be the graph,{} \\spad{\\spad{gi}} of domain \\spadtype{GraphImage}. The contents of viewport,{} \\spad{v},{} will contain \\spad{\\spad{gi}} when the function \\spadfun{makeViewport2D} is called to create the an updated viewport \\spad{v}.")) (|title| (((|Void|) $ (|String|)) "\\spad{title(v,{}s)} changes the title which is shown in the two-dimensional viewport window,{} \\spad{v} of domain \\spadtype{TwoDimensionalViewport}.")) (|graphs| (((|Vector| (|Union| (|GraphImage|) "undefined")) $) "\\spad{graphs(v)} returns a vector,{} or list,{} which is a union of all the graphs,{} of the domain \\spadtype{GraphImage},{} which are allocated for the two-dimensional viewport,{} \\spad{v},{} of domain \\spadtype{TwoDimensionalViewport}. Those graphs which have no data are labeled \"undefined\",{} otherwise their contents are shown.")) (|graphStates| (((|Vector| (|Record| (|:| |scaleX| (|DoubleFloat|)) (|:| |scaleY| (|DoubleFloat|)) (|:| |deltaX| (|DoubleFloat|)) (|:| |deltaY| (|DoubleFloat|)) (|:| |points| (|Integer|)) (|:| |connect| (|Integer|)) (|:| |spline| (|Integer|)) (|:| |axes| (|Integer|)) (|:| |axesColor| (|Palette|)) (|:| |units| (|Integer|)) (|:| |unitsColor| (|Palette|)) (|:| |showing| (|Integer|)))) $) "\\spad{graphStates(v)} returns and shows a listing of a record containing the current state of the characteristics of each of the ten graph records in the given two-dimensional viewport,{} \\spad{v},{} which is of domain \\spadtype{TwoDimensionalViewport}.")) (|graphState| (((|Void|) $ (|PositiveInteger|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Palette|) (|Integer|) (|Palette|) (|Integer|)) "\\spad{graphState(v,{}num,{}sX,{}sY,{}dX,{}dY,{}pts,{}lns,{}box,{}axes,{}axesC,{}un,{}unC,{}cP)} sets the state of the characteristics for the graph indicated by \\spad{num} in the given two-dimensional viewport \\spad{v},{} of domain \\spadtype{TwoDimensionalViewport},{} to the values given as parameters. The scaling of the graph in the \\spad{x} and \\spad{y} component directions is set to be \\spad{sX} and \\spad{sY}; the window translation in the \\spad{x} and \\spad{y} component directions is set to be \\spad{dX} and \\spad{dY}; The graph points,{} lines,{} bounding \\spad{box},{} \\spad{axes},{} or units will be shown in the viewport if their given parameters \\spad{pts},{} \\spad{lns},{} \\spad{box},{} \\spad{axes} or \\spad{un} are set to be \\spad{1},{} but will not be shown if they are set to \\spad{0}. The color of the \\spad{axes} and the color of the units are indicated by the palette colors \\spad{axesC} and \\spad{unC} respectively. To display the control panel when the viewport window is displayed,{} set \\spad{cP} to \\spad{1},{} otherwise set it to \\spad{0}.")) (|options| (($ $ (|List| (|DrawOption|))) "\\spad{options(v,{}lopt)} takes the given two-dimensional viewport,{} \\spad{v},{} of the domain \\spadtype{TwoDimensionalViewport} and returns \\spad{v} with it\\spad{'s} draw options modified to be those which are indicated in the given list,{} \\spad{lopt} of domain \\spadtype{DrawOption}.") (((|List| (|DrawOption|)) $) "\\spad{options(v)} takes the given two-dimensional viewport,{} \\spad{v},{} of the domain \\spadtype{TwoDimensionalViewport} and returns a list containing the draw options from the domain \\spadtype{DrawOption} for \\spad{v}.")) (|makeViewport2D| (($ (|GraphImage|) (|List| (|DrawOption|))) "\\spad{makeViewport2D(\\spad{gi},{}lopt)} creates and displays a viewport window of the domain \\spadtype{TwoDimensionalViewport} whose graph field is assigned to be the given graph,{} \\spad{\\spad{gi}},{} of domain \\spadtype{GraphImage},{} and whose options field is set to be the list of options,{} \\spad{lopt} of domain \\spadtype{DrawOption}.") (($ $) "\\spad{makeViewport2D(v)} takes the given two-dimensional viewport,{} \\spad{v},{} of the domain \\spadtype{TwoDimensionalViewport} and displays a viewport window on the screen which contains the contents of \\spad{v}.")) (|viewport2D| (($) "\\spad{viewport2D()} returns an undefined two-dimensional viewport of the domain \\spadtype{TwoDimensionalViewport} whose contents are empty.")) (|getPickedPoints| (((|List| (|Point| (|DoubleFloat|))) $) "\\spad{getPickedPoints(x)} returns a list of small floats for the points the user interactively picked on the viewport for full integration into the system,{} some design issues need to be addressed: \\spadignore{e.g.} how to go through the GraphImage interface,{} how to default to graphs,{} etc.")))
@@ -4982,13 +4982,13 @@ NIL
NIL
(-1263 S)
((|constructor| (NIL "Vector Spaces (not necessarily finite dimensional) over a field.")) (|dimension| (((|CardinalNumber|)) "\\spad{dimension()} returns the dimensionality of the vector space.")) (/ (($ $ |#1|) "\\spad{x/y} divides the vector \\spad{x} by the scalar \\spad{y}.")))
-((-4397 . T) (-4396 . T))
+((-4398 . T) (-4397 . T))
NIL
(-1264 R)
((|constructor| (NIL "This package implements the Weierstrass preparation theorem \\spad{f} or multivariate power series. weierstrass(\\spad{v},{}\\spad{p}) where \\spad{v} is a variable,{} and \\spad{p} is a TaylorSeries(\\spad{R}) in which the terms of lowest degree \\spad{s} must include c*v**s where \\spad{c} is a constant,{}\\spad{s>0},{} is a list of TaylorSeries coefficients A[\\spad{i}] of the equivalent polynomial A = A[0] + A[1]\\spad{*v} + A[2]*v**2 + ... + A[\\spad{s}-1]*v**(\\spad{s}-1) + v**s such that p=A*B ,{} \\spad{B} being a TaylorSeries of minimum degree 0")) (|qqq| (((|Mapping| (|Stream| (|TaylorSeries| |#1|)) (|Stream| (|TaylorSeries| |#1|))) (|NonNegativeInteger|) (|TaylorSeries| |#1|) (|Stream| (|TaylorSeries| |#1|))) "\\spad{qqq(n,{}s,{}st)} is used internally.")) (|weierstrass| (((|List| (|TaylorSeries| |#1|)) (|Symbol|) (|TaylorSeries| |#1|)) "\\spad{weierstrass(v,{}ts)} where \\spad{v} is a variable and \\spad{ts} is \\indented{1}{a TaylorSeries,{} impements the Weierstrass Preparation} \\indented{1}{Theorem. The result is a list of TaylorSeries that} \\indented{1}{are the coefficients of the equivalent series.}")) (|clikeUniv| (((|Mapping| (|SparseUnivariatePolynomial| (|Polynomial| |#1|)) (|Polynomial| |#1|)) (|Symbol|)) "\\spad{clikeUniv(v)} is used internally.")) (|sts2stst| (((|Stream| (|Stream| (|Polynomial| |#1|))) (|Symbol|) (|Stream| (|Polynomial| |#1|))) "\\spad{sts2stst(v,{}s)} is used internally.")) (|cfirst| (((|Mapping| (|Stream| (|Polynomial| |#1|)) (|Stream| (|Polynomial| |#1|))) (|NonNegativeInteger|)) "\\spad{cfirst n} is used internally.")) (|crest| (((|Mapping| (|Stream| (|Polynomial| |#1|)) (|Stream| (|Polynomial| |#1|))) (|NonNegativeInteger|)) "\\spad{crest n} is used internally.")))
NIL
NIL
-(-1265 K R UP -3197)
+(-1265 K R UP -3196)
((|constructor| (NIL "In this package \\spad{K} is a finite field,{} \\spad{R} is a ring of univariate polynomials over \\spad{K},{} and \\spad{F} is a framed algebra over \\spad{R}. The package provides a function to compute the integral closure of \\spad{R} in the quotient field of \\spad{F} as well as a function to compute a \"local integral basis\" at a specific prime.")) (|localIntegralBasis| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|))) |#2|) "\\spad{integralBasis(p)} returns a record \\spad{[basis,{}basisDen,{}basisInv]} containing information regarding the local integral closure of \\spad{R} at the prime \\spad{p} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the local integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")) (|integralBasis| (((|Record| (|:| |basis| (|Matrix| |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (|Matrix| |#2|)))) "\\spad{integralBasis()} returns a record \\spad{[basis,{}basisDen,{}basisInv]} containing information regarding the integral closure of \\spad{R} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,{}w2,{}...,{}wn}. If \\spad{basis} is the matrix \\spad{(aij,{} i = 1..n,{} j = 1..n)},{} then the \\spad{i}th element of the integral basis is \\spad{\\spad{vi} = (1/basisDen) * sum(aij * wj,{} j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of \\spad{basis} contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix \\spad{basisInv} contains the coordinates of \\spad{\\spad{wi}} with respect to the basis \\spad{v1,{}...,{}vn}: if \\spad{basisInv} is the matrix \\spad{(bij,{} i = 1..n,{} j = 1..n)},{} then \\spad{\\spad{wi} = sum(bij * vj,{} j = 1..n)}.")))
NIL
NIL
@@ -5002,56 +5002,56 @@ NIL
NIL
(-1268 R |VarSet| E P |vl| |wl| |wtlevel|)
((|constructor| (NIL "This domain represents truncated weighted polynomials over a general (not necessarily commutative) polynomial type. The variables must be specified,{} as must the weights. The representation is sparse in the sense that only non-zero terms are represented.")) (|changeWeightLevel| (((|Void|) (|NonNegativeInteger|)) "\\spad{changeWeightLevel(n)} changes the weight level to the new value given: \\spad{NB:} previously calculated terms are not affected")) (/ (((|Union| $ "failed") $ $) "\\spad{x/y} division (only works if minimum weight of divisor is zero,{} and if \\spad{R} is a Field)")))
-((-4397 |has| |#1| (-171)) (-4396 |has| |#1| (-171)) (-4399 . T))
+((-4398 |has| |#1| (-171)) (-4397 |has| |#1| (-171)) (-4400 . T))
((|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))))
(-1269 R E V P)
((|constructor| (NIL "A domain constructor of the category \\axiomType{GeneralTriangularSet}. The only requirement for a list of polynomials to be a member of such a domain is the following: no polynomial is constant and two distinct polynomials have distinct main variables. Such a triangular set may not be auto-reduced or consistent. The \\axiomOpFrom{construct}{WuWenTsunTriangularSet} operation does not check the previous requirement. Triangular sets are stored as sorted lists \\spad{w}.\\spad{r}.\\spad{t}. the main variables of their members. Furthermore,{} this domain exports operations dealing with the characteristic set method of Wu Wen Tsun and some optimizations mainly proposed by Dong Ming Wang.\\newline References : \\indented{1}{[1] \\spad{W}. \\spad{T}. WU \"A Zero Structure Theorem for polynomial equations solving\"} \\indented{6}{\\spad{MM} Research Preprints,{} 1987.} \\indented{1}{[2] \\spad{D}. \\spad{M}. WANG \"An implementation of the characteristic set method in Maple\"} \\indented{6}{Proc. DISCO'92. Bath,{} England.}")) (|characteristicSerie| (((|List| $) (|List| |#4|)) "\\axiom{characteristicSerie(\\spad{ps})} returns the same as \\axiom{characteristicSerie(\\spad{ps},{}initiallyReduced?,{}initiallyReduce)}.") (((|List| $) (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{characteristicSerie(\\spad{ps},{}redOp?,{}redOp)} returns a list \\axiom{\\spad{lts}} of triangular sets such that the zero set of \\axiom{\\spad{ps}} is the union of the regular zero sets of the members of \\axiom{\\spad{lts}}. This is made by the Ritt and Wu Wen Tsun process applying the operation \\axiom{characteristicSet(\\spad{ps},{}redOp?,{}redOp)} to compute characteristic sets in Wu Wen Tsun sense.")) (|characteristicSet| (((|Union| $ "failed") (|List| |#4|)) "\\axiom{characteristicSet(\\spad{ps})} returns the same as \\axiom{characteristicSet(\\spad{ps},{}initiallyReduced?,{}initiallyReduce)}.") (((|Union| $ "failed") (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{characteristicSet(\\spad{ps},{}redOp?,{}redOp)} returns a non-contradictory characteristic set of \\axiom{\\spad{ps}} in Wu Wen Tsun sense \\spad{w}.\\spad{r}.\\spad{t} the reduction-test \\axiom{redOp?} (using \\axiom{redOp} to reduce polynomials \\spad{w}.\\spad{r}.\\spad{t} a \\axiom{redOp?} basic set),{} if no non-zero constant polynomial appear during those reductions,{} else \\axiom{\"failed\"} is returned. The operations \\axiom{redOp} and \\axiom{redOp?} must satisfy the following conditions: \\axiom{redOp?(redOp(\\spad{p},{}\\spad{q}),{}\\spad{q})} holds for every polynomials \\axiom{\\spad{p},{}\\spad{q}} and there exists an integer \\axiom{\\spad{e}} and a polynomial \\axiom{\\spad{f}} such that we have \\axiom{init(\\spad{q})^e*p = \\spad{f*q} + redOp(\\spad{p},{}\\spad{q})}.")) (|medialSet| (((|Union| $ "failed") (|List| |#4|)) "\\axiom{medial(\\spad{ps})} returns the same as \\axiom{medialSet(\\spad{ps},{}initiallyReduced?,{}initiallyReduce)}.") (((|Union| $ "failed") (|List| |#4|) (|Mapping| (|Boolean|) |#4| |#4|) (|Mapping| |#4| |#4| |#4|)) "\\axiom{medialSet(\\spad{ps},{}redOp?,{}redOp)} returns \\axiom{\\spad{bs}} a basic set (in Wu Wen Tsun sense \\spad{w}.\\spad{r}.\\spad{t} the reduction-test \\axiom{redOp?}) of some set generating the same ideal as \\axiom{\\spad{ps}} (with rank not higher than any basic set of \\axiom{\\spad{ps}}),{} if no non-zero constant polynomials appear during the computatioms,{} else \\axiom{\"failed\"} is returned. In the former case,{} \\axiom{\\spad{bs}} has to be understood as a candidate for being a characteristic set of \\axiom{\\spad{ps}}. In the original algorithm,{} \\axiom{\\spad{bs}} is simply a basic set of \\axiom{\\spad{ps}}.")))
-((-4403 . T) (-4402 . T))
+((-4404 . T) (-4403 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#4| (LIST (QUOTE -308) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -610) (QUOTE (-535)))) (|HasCategory| |#4| (QUOTE (-1092))) (|HasCategory| |#1| (QUOTE (-554))) (|HasCategory| |#3| (QUOTE (-367))) (|HasCategory| |#4| (LIST (QUOTE -609) (QUOTE (-857)))))
(-1270 R)
((|constructor| (NIL "This is the category of algebras over non-commutative rings. It is used by constructors of non-commutative algebras such as: \\indented{4}{\\spadtype{XPolynomialRing}.} \\indented{4}{\\spadtype{XFreeAlgebra}} Author: Michel Petitot (petitot@lifl.\\spad{fr})")))
-((-4396 . T) (-4397 . T) (-4399 . T))
+((-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1271 |vl| R)
((|constructor| (NIL "\\indented{2}{This type supports distributed multivariate polynomials} whose variables do not commute. The coefficient ring may be non-commutative too. However,{} coefficients and variables commute.")))
-((-4399 . T) (-4395 |has| |#2| (-6 -4395)) (-4397 . T) (-4396 . T))
-((|HasCategory| |#2| (QUOTE (-171))) (|HasAttribute| |#2| (QUOTE -4395)))
+((-4400 . T) (-4396 |has| |#2| (-6 -4396)) (-4398 . T) (-4397 . T))
+((|HasCategory| |#2| (QUOTE (-171))) (|HasAttribute| |#2| (QUOTE -4396)))
(-1272 R |VarSet| XPOLY)
((|constructor| (NIL "This package provides computations of logarithms and exponentials for polynomials in non-commutative variables. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|Hausdorff| ((|#3| |#3| |#3| (|NonNegativeInteger|)) "\\axiom{Hausdorff(a,{}\\spad{b},{}\\spad{n})} returns log(exp(a)*exp(\\spad{b})) truncated at order \\axiom{\\spad{n}}.")) (|log| ((|#3| |#3| (|NonNegativeInteger|)) "\\axiom{log(\\spad{p},{} \\spad{n})} returns the logarithm of \\axiom{\\spad{p}} truncated at order \\axiom{\\spad{n}}.")) (|exp| ((|#3| |#3| (|NonNegativeInteger|)) "\\axiom{exp(\\spad{p},{} \\spad{n})} returns the exponential of \\axiom{\\spad{p}} truncated at order \\axiom{\\spad{n}}.")))
NIL
NIL
(-1273 |vl| R)
((|constructor| (NIL "This category specifies opeations for polynomials and formal series with non-commutative variables.")) (|varList| (((|List| |#1|) $) "\\spad{varList(x)} returns the list of variables which appear in \\spad{x}.")) (|map| (($ (|Mapping| |#2| |#2|) $) "\\spad{map(fn,{}x)} returns \\spad{Sum(fn(r_i) w_i)} if \\spad{x} writes \\spad{Sum(r_i w_i)}.")) (|sh| (($ $ (|NonNegativeInteger|)) "\\spad{sh(x,{}n)} returns the shuffle power of \\spad{x} to the \\spad{n}.") (($ $ $) "\\spad{sh(x,{}y)} returns the shuffle-product of \\spad{x} by \\spad{y}. This multiplication is associative and commutative.")) (|quasiRegular| (($ $) "\\spad{quasiRegular(x)} return \\spad{x} minus its constant term.")) (|quasiRegular?| (((|Boolean|) $) "\\spad{quasiRegular?(x)} return \\spad{true} if \\spad{constant(x)} is zero.")) (|constant| ((|#2| $) "\\spad{constant(x)} returns the constant term of \\spad{x}.")) (|constant?| (((|Boolean|) $) "\\spad{constant?(x)} returns \\spad{true} if \\spad{x} is constant.")) (|coerce| (($ |#1|) "\\spad{coerce(v)} returns \\spad{v}.")) (|mirror| (($ $) "\\spad{mirror(x)} returns \\spad{Sum(r_i mirror(w_i))} if \\spad{x} writes \\spad{Sum(r_i w_i)}.")) (|monomial?| (((|Boolean|) $) "\\spad{monomial?(x)} returns \\spad{true} if \\spad{x} is a monomial")) (|monom| (($ (|OrderedFreeMonoid| |#1|) |#2|) "\\spad{monom(w,{}r)} returns the product of the word \\spad{w} by the coefficient \\spad{r}.")) (|rquo| (($ $ $) "\\spad{rquo(x,{}y)} returns the right simplification of \\spad{x} by \\spad{y}.") (($ $ (|OrderedFreeMonoid| |#1|)) "\\spad{rquo(x,{}w)} returns the right simplification of \\spad{x} by \\spad{w}.") (($ $ |#1|) "\\spad{rquo(x,{}v)} returns the right simplification of \\spad{x} by the variable \\spad{v}.")) (|lquo| (($ $ $) "\\spad{lquo(x,{}y)} returns the left simplification of \\spad{x} by \\spad{y}.") (($ $ (|OrderedFreeMonoid| |#1|)) "\\spad{lquo(x,{}w)} returns the left simplification of \\spad{x} by the word \\spad{w}.") (($ $ |#1|) "\\spad{lquo(x,{}v)} returns the left simplification of \\spad{x} by the variable \\spad{v}.")) (|coef| ((|#2| $ $) "\\spad{coef(x,{}y)} returns scalar product of \\spad{x} by \\spad{y},{} the set of words being regarded as an orthogonal basis.") ((|#2| $ (|OrderedFreeMonoid| |#1|)) "\\spad{coef(x,{}w)} returns the coefficient of the word \\spad{w} in \\spad{x}.")) (|mindegTerm| (((|Record| (|:| |k| (|OrderedFreeMonoid| |#1|)) (|:| |c| |#2|)) $) "\\spad{mindegTerm(x)} returns the term whose word is \\spad{mindeg(x)}.")) (|mindeg| (((|OrderedFreeMonoid| |#1|) $) "\\spad{mindeg(x)} returns the little word which appears in \\spad{x}. Error if \\spad{x=0}.")) (* (($ $ |#2|) "\\spad{x * r} returns the product of \\spad{x} by \\spad{r}. Usefull if \\spad{R} is a non-commutative Ring.") (($ |#1| $) "\\spad{v * x} returns the product of a variable \\spad{x} by \\spad{x}.")))
-((-4395 |has| |#2| (-6 -4395)) (-4397 . T) (-4396 . T) (-4399 . T))
+((-4396 |has| |#2| (-6 -4396)) (-4398 . T) (-4397 . T) (-4400 . T))
NIL
-(-1274 S -3197)
+(-1274 S -3196)
((|constructor| (NIL "ExtensionField {\\em F} is the category of fields which extend the field \\spad{F}")) (|Frobenius| (($ $ (|NonNegativeInteger|)) "\\spad{Frobenius(a,{}s)} returns \\spad{a**(q**s)} where \\spad{q} is the size()\\$\\spad{F}.") (($ $) "\\spad{Frobenius(a)} returns \\spad{a ** q} where \\spad{q} is the \\spad{size()\\$F}.")) (|transcendenceDegree| (((|NonNegativeInteger|)) "\\spad{transcendenceDegree()} returns the transcendence degree of the field extension,{} 0 if the extension is algebraic.")) (|extensionDegree| (((|OnePointCompletion| (|PositiveInteger|))) "\\spad{extensionDegree()} returns the degree of the field extension if the extension is algebraic,{} and \\spad{infinity} if it is not.")) (|degree| (((|OnePointCompletion| (|PositiveInteger|)) $) "\\spad{degree(a)} returns the degree of minimal polynomial of an element \\spad{a} if \\spad{a} is algebraic with respect to the ground field \\spad{F},{} and \\spad{infinity} otherwise.")) (|inGroundField?| (((|Boolean|) $) "\\spad{inGroundField?(a)} tests whether an element \\spad{a} is already in the ground field \\spad{F}.")) (|transcendent?| (((|Boolean|) $) "\\spad{transcendent?(a)} tests whether an element \\spad{a} is transcendent with respect to the ground field \\spad{F}.")) (|algebraic?| (((|Boolean|) $) "\\spad{algebraic?(a)} tests whether an element \\spad{a} is algebraic with respect to the ground field \\spad{F}.")))
NIL
((|HasCategory| |#2| (QUOTE (-367))) (|HasCategory| |#2| (QUOTE (-144))) (|HasCategory| |#2| (QUOTE (-146))))
-(-1275 -3197)
+(-1275 -3196)
((|constructor| (NIL "ExtensionField {\\em F} is the category of fields which extend the field \\spad{F}")) (|Frobenius| (($ $ (|NonNegativeInteger|)) "\\spad{Frobenius(a,{}s)} returns \\spad{a**(q**s)} where \\spad{q} is the size()\\$\\spad{F}.") (($ $) "\\spad{Frobenius(a)} returns \\spad{a ** q} where \\spad{q} is the \\spad{size()\\$F}.")) (|transcendenceDegree| (((|NonNegativeInteger|)) "\\spad{transcendenceDegree()} returns the transcendence degree of the field extension,{} 0 if the extension is algebraic.")) (|extensionDegree| (((|OnePointCompletion| (|PositiveInteger|))) "\\spad{extensionDegree()} returns the degree of the field extension if the extension is algebraic,{} and \\spad{infinity} if it is not.")) (|degree| (((|OnePointCompletion| (|PositiveInteger|)) $) "\\spad{degree(a)} returns the degree of minimal polynomial of an element \\spad{a} if \\spad{a} is algebraic with respect to the ground field \\spad{F},{} and \\spad{infinity} otherwise.")) (|inGroundField?| (((|Boolean|) $) "\\spad{inGroundField?(a)} tests whether an element \\spad{a} is already in the ground field \\spad{F}.")) (|transcendent?| (((|Boolean|) $) "\\spad{transcendent?(a)} tests whether an element \\spad{a} is transcendent with respect to the ground field \\spad{F}.")) (|algebraic?| (((|Boolean|) $) "\\spad{algebraic?(a)} tests whether an element \\spad{a} is algebraic with respect to the ground field \\spad{F}.")))
-((-4394 . T) (-4400 . T) (-4395 . T) ((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+((-4395 . T) (-4401 . T) (-4396 . T) ((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
(-1276 |VarSet| R)
((|constructor| (NIL "This domain constructor implements polynomials in non-commutative variables written in the Poincare-Birkhoff-Witt basis from the Lyndon basis. These polynomials can be used to compute Baker-Campbell-Hausdorff relations. \\newline Author: Michel Petitot (petitot@lifl.\\spad{fr}).")) (|log| (($ $ (|NonNegativeInteger|)) "\\axiom{log(\\spad{p},{}\\spad{n})} returns the logarithm of \\axiom{\\spad{p}} (truncated up to order \\axiom{\\spad{n}}).")) (|exp| (($ $ (|NonNegativeInteger|)) "\\axiom{exp(\\spad{p},{}\\spad{n})} returns the exponential of \\axiom{\\spad{p}} (truncated up to order \\axiom{\\spad{n}}).")) (|product| (($ $ $ (|NonNegativeInteger|)) "\\axiom{product(a,{}\\spad{b},{}\\spad{n})} returns \\axiom{a*b} (truncated up to order \\axiom{\\spad{n}}).")) (|LiePolyIfCan| (((|Union| (|LiePolynomial| |#1| |#2|) "failed") $) "\\axiom{LiePolyIfCan(\\spad{p})} return \\axiom{\\spad{p}} if \\axiom{\\spad{p}} is a Lie polynomial.")) (|coerce| (((|XRecursivePolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{p})} returns \\axiom{\\spad{p}} as a recursive polynomial.") (((|XDistributedPolynomial| |#1| |#2|) $) "\\axiom{coerce(\\spad{p})} returns \\axiom{\\spad{p}} as a distributed polynomial.") (($ (|LiePolynomial| |#1| |#2|)) "\\axiom{coerce(\\spad{p})} returns \\axiom{\\spad{p}}.")))
-((-4395 |has| |#2| (-6 -4395)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -712) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasAttribute| |#2| (QUOTE -4395)))
+((-4396 |has| |#2| (-6 -4396)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#2| (QUOTE (-171))) (|HasCategory| |#2| (LIST (QUOTE -712) (LIST (QUOTE -406) (QUOTE (-562))))) (|HasAttribute| |#2| (QUOTE -4396)))
(-1277 |vl| R)
((|constructor| (NIL "The Category of polynomial rings with non-commutative variables. The coefficient ring may be non-commutative too. However coefficients commute with vaiables.")) (|trunc| (($ $ (|NonNegativeInteger|)) "\\spad{trunc(p,{}n)} returns the polynomial \\spad{p} truncated at order \\spad{n}.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(p)} returns the degree of \\spad{p}. \\indented{1}{Note that the degree of a word is its length.}")) (|maxdeg| (((|OrderedFreeMonoid| |#1|) $) "\\spad{maxdeg(p)} returns the greatest leading word in the support of \\spad{p}.")))
-((-4395 |has| |#2| (-6 -4395)) (-4397 . T) (-4396 . T) (-4399 . T))
+((-4396 |has| |#2| (-6 -4396)) (-4398 . T) (-4397 . T) (-4400 . T))
NIL
(-1278 R)
((|constructor| (NIL "\\indented{2}{This type supports multivariate polynomials} whose set of variables is \\spadtype{Symbol}. The representation is recursive. The coefficient ring may be non-commutative and the variables do not commute. However,{} coefficients and variables commute.")))
-((-4395 |has| |#1| (-6 -4395)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#1| (QUOTE (-171))) (|HasAttribute| |#1| (QUOTE -4395)))
+((-4396 |has| |#1| (-6 -4396)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#1| (QUOTE (-171))) (|HasAttribute| |#1| (QUOTE -4396)))
(-1279 R E)
((|constructor| (NIL "This domain represents generalized polynomials with coefficients (from a not necessarily commutative ring),{} and words belonging to an arbitrary \\spadtype{OrderedMonoid}. This type is used,{} for instance,{} by the \\spadtype{XDistributedPolynomial} domain constructor where the Monoid is free.")) (|canonicalUnitNormal| ((|attribute|) "canonicalUnitNormal guarantees that the function unitCanonical returns the same representative for all associates of any particular element.")) (/ (($ $ |#1|) "\\spad{p/r} returns \\spad{p*(1/r)}.")) (|map| (($ (|Mapping| |#1| |#1|) $) "\\spad{map(fn,{}x)} returns \\spad{Sum(fn(r_i) w_i)} if \\spad{x} writes \\spad{Sum(r_i w_i)}.")) (|quasiRegular| (($ $) "\\spad{quasiRegular(x)} return \\spad{x} minus its constant term.")) (|quasiRegular?| (((|Boolean|) $) "\\spad{quasiRegular?(x)} return \\spad{true} if \\spad{constant(p)} is zero.")) (|constant| ((|#1| $) "\\spad{constant(p)} return the constant term of \\spad{p}.")) (|constant?| (((|Boolean|) $) "\\spad{constant?(p)} tests whether the polynomial \\spad{p} belongs to the coefficient ring.")) (|coef| ((|#1| $ |#2|) "\\spad{coef(p,{}e)} extracts the coefficient of the monomial \\spad{e}. Returns zero if \\spad{e} is not present.")) (|reductum| (($ $) "\\spad{reductum(p)} returns \\spad{p} minus its leading term. An error is produced if \\spad{p} is zero.")) (|mindeg| ((|#2| $) "\\spad{mindeg(p)} returns the smallest word occurring in the polynomial \\spad{p} with a non-zero coefficient. An error is produced if \\spad{p} is zero.")) (|maxdeg| ((|#2| $) "\\spad{maxdeg(p)} returns the greatest word occurring in the polynomial \\spad{p} with a non-zero coefficient. An error is produced if \\spad{p} is zero.")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\# p} returns the number of terms in \\spad{p}.")) (* (($ $ |#1|) "\\spad{p*r} returns the product of \\spad{p} by \\spad{r}.")))
-((-4399 . T) (-4400 |has| |#1| (-6 -4400)) (-4395 |has| |#1| (-6 -4395)) (-4397 . T) (-4396 . T))
-((|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasAttribute| |#1| (QUOTE -4399)) (|HasAttribute| |#1| (QUOTE -4400)) (|HasAttribute| |#1| (QUOTE -4395)))
+((-4400 . T) (-4401 |has| |#1| (-6 -4401)) (-4396 |has| |#1| (-6 -4396)) (-4398 . T) (-4397 . T))
+((|HasCategory| |#1| (QUOTE (-171))) (|HasCategory| |#1| (QUOTE (-362))) (|HasAttribute| |#1| (QUOTE -4400)) (|HasAttribute| |#1| (QUOTE -4401)) (|HasAttribute| |#1| (QUOTE -4396)))
(-1280 |VarSet| R)
((|constructor| (NIL "\\indented{2}{This type supports multivariate polynomials} whose variables do not commute. The representation is recursive. The coefficient ring may be non-commutative. Coefficients and variables commute.")) (|RemainderList| (((|List| (|Record| (|:| |k| |#1|) (|:| |c| $))) $) "\\spad{RemainderList(p)} returns the regular part of \\spad{p} as a list of terms.")) (|unexpand| (($ (|XDistributedPolynomial| |#1| |#2|)) "\\spad{unexpand(p)} returns \\spad{p} in recursive form.")) (|expand| (((|XDistributedPolynomial| |#1| |#2|) $) "\\spad{expand(p)} returns \\spad{p} in distributed form.")))
-((-4395 |has| |#2| (-6 -4395)) (-4397 . T) (-4396 . T) (-4399 . T))
-((|HasCategory| |#2| (QUOTE (-171))) (|HasAttribute| |#2| (QUOTE -4395)))
+((-4396 |has| |#2| (-6 -4396)) (-4398 . T) (-4397 . T) (-4400 . T))
+((|HasCategory| |#2| (QUOTE (-171))) (|HasAttribute| |#2| (QUOTE -4396)))
(-1281 A)
((|constructor| (NIL "This package implements fixed-point computations on streams.")) (Y (((|List| (|Stream| |#1|)) (|Mapping| (|List| (|Stream| |#1|)) (|List| (|Stream| |#1|))) (|Integer|)) "\\spad{Y(g,{}n)} computes a fixed point of the function \\spad{g},{} where \\spad{g} takes a list of \\spad{n} streams and returns a list of \\spad{n} streams.") (((|Stream| |#1|) (|Mapping| (|Stream| |#1|) (|Stream| |#1|))) "\\spad{Y(f)} computes a fixed point of the function \\spad{f}.")))
NIL
@@ -5066,7 +5066,7 @@ NIL
NIL
(-1284 |p|)
((|constructor| (NIL "IntegerMod(\\spad{n}) creates the ring of integers reduced modulo the integer \\spad{n}.")))
-(((-4404 "*") . T) (-4396 . T) (-4397 . T) (-4399 . T))
+(((-4405 "*") . T) (-4397 . T) (-4398 . T) (-4400 . T))
NIL
NIL
NIL
@@ -5084,4 +5084,4 @@ NIL
NIL
NIL
NIL
-((-3 NIL 2281904 2281909 2281914 2281919) (-2 NIL 2281884 2281889 2281894 2281899) (-1 NIL 2281864 2281869 2281874 2281879) (0 NIL 2281844 2281849 2281854 2281859) (-1284 "ZMOD.spad" 2281653 2281666 2281782 2281839) (-1283 "ZLINDEP.spad" 2280697 2280708 2281643 2281648) (-1282 "ZDSOLVE.spad" 2270546 2270568 2280687 2280692) (-1281 "YSTREAM.spad" 2270039 2270050 2270536 2270541) (-1280 "XRPOLY.spad" 2269259 2269279 2269895 2269964) (-1279 "XPR.spad" 2267050 2267063 2268977 2269076) (-1278 "XPOLY.spad" 2266605 2266616 2266906 2266975) (-1277 "XPOLYC.spad" 2265922 2265938 2266531 2266600) (-1276 "XPBWPOLY.spad" 2264359 2264379 2265702 2265771) (-1275 "XF.spad" 2262820 2262835 2264261 2264354) (-1274 "XF.spad" 2261261 2261278 2262704 2262709) (-1273 "XFALG.spad" 2258285 2258301 2261187 2261256) (-1272 "XEXPPKG.spad" 2257536 2257562 2258275 2258280) (-1271 "XDPOLY.spad" 2257150 2257166 2257392 2257461) (-1270 "XALG.spad" 2256810 2256821 2257106 2257145) (-1269 "WUTSET.spad" 2252649 2252666 2256456 2256483) (-1268 "WP.spad" 2251848 2251892 2252507 2252574) (-1267 "WHILEAST.spad" 2251646 2251655 2251838 2251843) (-1266 "WHEREAST.spad" 2251317 2251326 2251636 2251641) (-1265 "WFFINTBS.spad" 2248880 2248902 2251307 2251312) (-1264 "WEIER.spad" 2247094 2247105 2248870 2248875) (-1263 "VSPACE.spad" 2246767 2246778 2247062 2247089) (-1262 "VSPACE.spad" 2246460 2246473 2246757 2246762) (-1261 "VOID.spad" 2246137 2246146 2246450 2246455) (-1260 "VIEW.spad" 2243759 2243768 2246127 2246132) (-1259 "VIEWDEF.spad" 2238956 2238965 2243749 2243754) (-1258 "VIEW3D.spad" 2222791 2222800 2238946 2238951) (-1257 "VIEW2D.spad" 2210528 2210537 2222781 2222786) (-1256 "VECTOR.spad" 2209203 2209214 2209454 2209481) (-1255 "VECTOR2.spad" 2207830 2207843 2209193 2209198) (-1254 "VECTCAT.spad" 2205730 2205741 2207798 2207825) (-1253 "VECTCAT.spad" 2203438 2203451 2205508 2205513) (-1252 "VARIABLE.spad" 2203218 2203233 2203428 2203433) (-1251 "UTYPE.spad" 2202862 2202871 2203208 2203213) (-1250 "UTSODETL.spad" 2202155 2202179 2202818 2202823) (-1249 "UTSODE.spad" 2200343 2200363 2202145 2202150) (-1248 "UTS.spad" 2195132 2195160 2198810 2198907) (-1247 "UTSCAT.spad" 2192583 2192599 2195030 2195127) (-1246 "UTSCAT.spad" 2189678 2189696 2192127 2192132) (-1245 "UTS2.spad" 2189271 2189306 2189668 2189673) (-1244 "URAGG.spad" 2183903 2183914 2189261 2189266) (-1243 "URAGG.spad" 2178499 2178512 2183859 2183864) (-1242 "UPXSSING.spad" 2176142 2176168 2177580 2177713) (-1241 "UPXS.spad" 2173290 2173318 2174274 2174423) (-1240 "UPXSCONS.spad" 2171047 2171067 2171422 2171571) (-1239 "UPXSCCA.spad" 2169612 2169632 2170893 2171042) (-1238 "UPXSCCA.spad" 2168319 2168341 2169602 2169607) (-1237 "UPXSCAT.spad" 2166900 2166916 2168165 2168314) (-1236 "UPXS2.spad" 2166441 2166494 2166890 2166895) (-1235 "UPSQFREE.spad" 2164853 2164867 2166431 2166436) (-1234 "UPSCAT.spad" 2162446 2162470 2164751 2164848) (-1233 "UPSCAT.spad" 2159745 2159771 2162052 2162057) (-1232 "UPOLYC.spad" 2154723 2154734 2159587 2159740) (-1231 "UPOLYC.spad" 2149593 2149606 2154459 2154464) (-1230 "UPOLYC2.spad" 2149062 2149081 2149583 2149588) (-1229 "UP.spad" 2146219 2146234 2146612 2146765) (-1228 "UPMP.spad" 2145109 2145122 2146209 2146214) (-1227 "UPDIVP.spad" 2144672 2144686 2145099 2145104) (-1226 "UPDECOMP.spad" 2142909 2142923 2144662 2144667) (-1225 "UPCDEN.spad" 2142116 2142132 2142899 2142904) (-1224 "UP2.spad" 2141478 2141499 2142106 2142111) (-1223 "UNISEG.spad" 2140831 2140842 2141397 2141402) (-1222 "UNISEG2.spad" 2140324 2140337 2140787 2140792) (-1221 "UNIFACT.spad" 2139425 2139437 2140314 2140319) (-1220 "ULS.spad" 2129977 2130005 2131070 2131499) (-1219 "ULSCONS.spad" 2122371 2122391 2122743 2122892) (-1218 "ULSCCAT.spad" 2120100 2120120 2122217 2122366) (-1217 "ULSCCAT.spad" 2117937 2117959 2120056 2120061) (-1216 "ULSCAT.spad" 2116153 2116169 2117783 2117932) (-1215 "ULS2.spad" 2115665 2115718 2116143 2116148) (-1214 "UINT8.spad" 2115542 2115551 2115655 2115660) (-1213 "UINT32.spad" 2115418 2115427 2115532 2115537) (-1212 "UINT16.spad" 2115294 2115303 2115408 2115413) (-1211 "UFD.spad" 2114359 2114368 2115220 2115289) (-1210 "UFD.spad" 2113486 2113497 2114349 2114354) (-1209 "UDVO.spad" 2112333 2112342 2113476 2113481) (-1208 "UDPO.spad" 2109760 2109771 2112289 2112294) (-1207 "TYPE.spad" 2109692 2109701 2109750 2109755) (-1206 "TYPEAST.spad" 2109611 2109620 2109682 2109687) (-1205 "TWOFACT.spad" 2108261 2108276 2109601 2109606) (-1204 "TUPLE.spad" 2107745 2107756 2108160 2108165) (-1203 "TUBETOOL.spad" 2104582 2104591 2107735 2107740) (-1202 "TUBE.spad" 2103223 2103240 2104572 2104577) (-1201 "TS.spad" 2101812 2101828 2102788 2102885) (-1200 "TSETCAT.spad" 2088939 2088956 2101780 2101807) (-1199 "TSETCAT.spad" 2076052 2076071 2088895 2088900) (-1198 "TRMANIP.spad" 2070418 2070435 2075758 2075763) (-1197 "TRIMAT.spad" 2069377 2069402 2070408 2070413) (-1196 "TRIGMNIP.spad" 2067894 2067911 2069367 2069372) (-1195 "TRIGCAT.spad" 2067406 2067415 2067884 2067889) (-1194 "TRIGCAT.spad" 2066916 2066927 2067396 2067401) (-1193 "TREE.spad" 2065487 2065498 2066523 2066550) (-1192 "TRANFUN.spad" 2065318 2065327 2065477 2065482) (-1191 "TRANFUN.spad" 2065147 2065158 2065308 2065313) (-1190 "TOPSP.spad" 2064821 2064830 2065137 2065142) (-1189 "TOOLSIGN.spad" 2064484 2064495 2064811 2064816) (-1188 "TEXTFILE.spad" 2063041 2063050 2064474 2064479) (-1187 "TEX.spad" 2060173 2060182 2063031 2063036) (-1186 "TEX1.spad" 2059729 2059740 2060163 2060168) (-1185 "TEMUTL.spad" 2059284 2059293 2059719 2059724) (-1184 "TBCMPPK.spad" 2057377 2057400 2059274 2059279) (-1183 "TBAGG.spad" 2056413 2056436 2057357 2057372) (-1182 "TBAGG.spad" 2055457 2055482 2056403 2056408) (-1181 "TANEXP.spad" 2054833 2054844 2055447 2055452) (-1180 "TABLE.spad" 2053244 2053267 2053514 2053541) (-1179 "TABLEAU.spad" 2052725 2052736 2053234 2053239) (-1178 "TABLBUMP.spad" 2049508 2049519 2052715 2052720) (-1177 "SYSTEM.spad" 2048782 2048791 2049498 2049503) (-1176 "SYSSOLP.spad" 2046255 2046266 2048772 2048777) (-1175 "SYSNNI.spad" 2045431 2045442 2046245 2046250) (-1174 "SYSINT.spad" 2044904 2044915 2045421 2045426) (-1173 "SYNTAX.spad" 2041174 2041183 2044894 2044899) (-1172 "SYMTAB.spad" 2039230 2039239 2041164 2041169) (-1171 "SYMS.spad" 2035215 2035224 2039220 2039225) (-1170 "SYMPOLY.spad" 2034222 2034233 2034304 2034431) (-1169 "SYMFUNC.spad" 2033697 2033708 2034212 2034217) (-1168 "SYMBOL.spad" 2031124 2031133 2033687 2033692) (-1167 "SWITCH.spad" 2027881 2027890 2031114 2031119) (-1166 "SUTS.spad" 2024780 2024808 2026348 2026445) (-1165 "SUPXS.spad" 2021915 2021943 2022912 2023061) (-1164 "SUP.spad" 2018684 2018695 2019465 2019618) (-1163 "SUPFRACF.spad" 2017789 2017807 2018674 2018679) (-1162 "SUP2.spad" 2017179 2017192 2017779 2017784) (-1161 "SUMRF.spad" 2016145 2016156 2017169 2017174) (-1160 "SUMFS.spad" 2015778 2015795 2016135 2016140) (-1159 "SULS.spad" 2006317 2006345 2007423 2007852) (-1158 "SUCHTAST.spad" 2006086 2006095 2006307 2006312) (-1157 "SUCH.spad" 2005766 2005781 2006076 2006081) (-1156 "SUBSPACE.spad" 1997773 1997788 2005756 2005761) (-1155 "SUBRESP.spad" 1996933 1996947 1997729 1997734) (-1154 "STTF.spad" 1993032 1993048 1996923 1996928) (-1153 "STTFNC.spad" 1989500 1989516 1993022 1993027) (-1152 "STTAYLOR.spad" 1981898 1981909 1989381 1989386) (-1151 "STRTBL.spad" 1980403 1980420 1980552 1980579) (-1150 "STRING.spad" 1979812 1979821 1979826 1979853) (-1149 "STRICAT.spad" 1979600 1979609 1979780 1979807) (-1148 "STREAM.spad" 1976458 1976469 1979125 1979140) (-1147 "STREAM3.spad" 1976003 1976018 1976448 1976453) (-1146 "STREAM2.spad" 1975071 1975084 1975993 1975998) (-1145 "STREAM1.spad" 1974775 1974786 1975061 1975066) (-1144 "STINPROD.spad" 1973681 1973697 1974765 1974770) (-1143 "STEP.spad" 1972882 1972891 1973671 1973676) (-1142 "STBL.spad" 1971408 1971436 1971575 1971590) (-1141 "STAGG.spad" 1970483 1970494 1971398 1971403) (-1140 "STAGG.spad" 1969556 1969569 1970473 1970478) (-1139 "STACK.spad" 1968907 1968918 1969163 1969190) (-1138 "SREGSET.spad" 1966611 1966628 1968553 1968580) (-1137 "SRDCMPK.spad" 1965156 1965176 1966601 1966606) (-1136 "SRAGG.spad" 1960253 1960262 1965124 1965151) (-1135 "SRAGG.spad" 1955370 1955381 1960243 1960248) (-1134 "SQMATRIX.spad" 1952986 1953004 1953902 1953989) (-1133 "SPLTREE.spad" 1947538 1947551 1952422 1952449) (-1132 "SPLNODE.spad" 1944126 1944139 1947528 1947533) (-1131 "SPFCAT.spad" 1942903 1942912 1944116 1944121) (-1130 "SPECOUT.spad" 1941453 1941462 1942893 1942898) (-1129 "SPADXPT.spad" 1933592 1933601 1941443 1941448) (-1128 "spad-parser.spad" 1933057 1933066 1933582 1933587) (-1127 "SPADAST.spad" 1932758 1932767 1933047 1933052) (-1126 "SPACEC.spad" 1916771 1916782 1932748 1932753) (-1125 "SPACE3.spad" 1916547 1916558 1916761 1916766) (-1124 "SORTPAK.spad" 1916092 1916105 1916503 1916508) (-1123 "SOLVETRA.spad" 1913849 1913860 1916082 1916087) (-1122 "SOLVESER.spad" 1912369 1912380 1913839 1913844) (-1121 "SOLVERAD.spad" 1908379 1908390 1912359 1912364) (-1120 "SOLVEFOR.spad" 1906799 1906817 1908369 1908374) (-1119 "SNTSCAT.spad" 1906399 1906416 1906767 1906794) (-1118 "SMTS.spad" 1904659 1904685 1905964 1906061) (-1117 "SMP.spad" 1902098 1902118 1902488 1902615) (-1116 "SMITH.spad" 1900941 1900966 1902088 1902093) (-1115 "SMATCAT.spad" 1899051 1899081 1900885 1900936) (-1114 "SMATCAT.spad" 1897093 1897125 1898929 1898934) (-1113 "SKAGG.spad" 1896054 1896065 1897061 1897088) (-1112 "SINT.spad" 1894880 1894889 1895920 1896049) (-1111 "SIMPAN.spad" 1894608 1894617 1894870 1894875) (-1110 "SIG.spad" 1893936 1893945 1894598 1894603) (-1109 "SIGNRF.spad" 1893044 1893055 1893926 1893931) (-1108 "SIGNEF.spad" 1892313 1892330 1893034 1893039) (-1107 "SIGAST.spad" 1891694 1891703 1892303 1892308) (-1106 "SHP.spad" 1889612 1889627 1891650 1891655) (-1105 "SHDP.spad" 1879323 1879350 1879832 1879963) (-1104 "SGROUP.spad" 1878931 1878940 1879313 1879318) (-1103 "SGROUP.spad" 1878537 1878548 1878921 1878926) (-1102 "SGCF.spad" 1871418 1871427 1878527 1878532) (-1101 "SFRTCAT.spad" 1870346 1870363 1871386 1871413) (-1100 "SFRGCD.spad" 1869409 1869429 1870336 1870341) (-1099 "SFQCMPK.spad" 1864046 1864066 1869399 1869404) (-1098 "SFORT.spad" 1863481 1863495 1864036 1864041) (-1097 "SEXOF.spad" 1863324 1863364 1863471 1863476) (-1096 "SEX.spad" 1863216 1863225 1863314 1863319) (-1095 "SEXCAT.spad" 1860767 1860807 1863206 1863211) (-1094 "SET.spad" 1859067 1859078 1860188 1860227) (-1093 "SETMN.spad" 1857501 1857518 1859057 1859062) (-1092 "SETCAT.spad" 1856986 1856995 1857491 1857496) (-1091 "SETCAT.spad" 1856469 1856480 1856976 1856981) (-1090 "SETAGG.spad" 1852990 1853001 1856449 1856464) (-1089 "SETAGG.spad" 1849519 1849532 1852980 1852985) (-1088 "SEQAST.spad" 1849222 1849231 1849509 1849514) (-1087 "SEGXCAT.spad" 1848344 1848357 1849212 1849217) (-1086 "SEG.spad" 1848157 1848168 1848263 1848268) (-1085 "SEGCAT.spad" 1847064 1847075 1848147 1848152) (-1084 "SEGBIND.spad" 1846136 1846147 1847019 1847024) (-1083 "SEGBIND2.spad" 1845832 1845845 1846126 1846131) (-1082 "SEGAST.spad" 1845546 1845555 1845822 1845827) (-1081 "SEG2.spad" 1844971 1844984 1845502 1845507) (-1080 "SDVAR.spad" 1844247 1844258 1844961 1844966) (-1079 "SDPOL.spad" 1841637 1841648 1841928 1842055) (-1078 "SCPKG.spad" 1839716 1839727 1841627 1841632) (-1077 "SCOPE.spad" 1838861 1838870 1839706 1839711) (-1076 "SCACHE.spad" 1837543 1837554 1838851 1838856) (-1075 "SASTCAT.spad" 1837452 1837461 1837533 1837538) (-1074 "SAOS.spad" 1837324 1837333 1837442 1837447) (-1073 "SAERFFC.spad" 1837037 1837057 1837314 1837319) (-1072 "SAE.spad" 1835212 1835228 1835823 1835958) (-1071 "SAEFACT.spad" 1834913 1834933 1835202 1835207) (-1070 "RURPK.spad" 1832554 1832570 1834903 1834908) (-1069 "RULESET.spad" 1831995 1832019 1832544 1832549) (-1068 "RULE.spad" 1830199 1830223 1831985 1831990) (-1067 "RULECOLD.spad" 1830051 1830064 1830189 1830194) (-1066 "RSTRCAST.spad" 1829768 1829777 1830041 1830046) (-1065 "RSETGCD.spad" 1826146 1826166 1829758 1829763) (-1064 "RSETCAT.spad" 1815930 1815947 1826114 1826141) (-1063 "RSETCAT.spad" 1805734 1805753 1815920 1815925) (-1062 "RSDCMPK.spad" 1804186 1804206 1805724 1805729) (-1061 "RRCC.spad" 1802570 1802600 1804176 1804181) (-1060 "RRCC.spad" 1800952 1800984 1802560 1802565) (-1059 "RPTAST.spad" 1800654 1800663 1800942 1800947) (-1058 "RPOLCAT.spad" 1780014 1780029 1800522 1800649) (-1057 "RPOLCAT.spad" 1759088 1759105 1779598 1779603) (-1056 "ROUTINE.spad" 1754951 1754960 1757735 1757762) (-1055 "ROMAN.spad" 1754279 1754288 1754817 1754946) (-1054 "ROIRC.spad" 1753359 1753391 1754269 1754274) (-1053 "RNS.spad" 1752262 1752271 1753261 1753354) (-1052 "RNS.spad" 1751251 1751262 1752252 1752257) (-1051 "RNG.spad" 1750986 1750995 1751241 1751246) (-1050 "RMODULE.spad" 1750624 1750635 1750976 1750981) (-1049 "RMCAT2.spad" 1750032 1750089 1750614 1750619) (-1048 "RMATRIX.spad" 1748856 1748875 1749199 1749238) (-1047 "RMATCAT.spad" 1744389 1744420 1748812 1748851) (-1046 "RMATCAT.spad" 1739812 1739845 1744237 1744242) (-1045 "RINTERP.spad" 1739700 1739720 1739802 1739807) (-1044 "RING.spad" 1739170 1739179 1739680 1739695) (-1043 "RING.spad" 1738648 1738659 1739160 1739165) (-1042 "RIDIST.spad" 1738032 1738041 1738638 1738643) (-1041 "RGCHAIN.spad" 1736611 1736627 1737517 1737544) (-1040 "RGBCSPC.spad" 1736392 1736404 1736601 1736606) (-1039 "RGBCMDL.spad" 1735922 1735934 1736382 1736387) (-1038 "RF.spad" 1733536 1733547 1735912 1735917) (-1037 "RFFACTOR.spad" 1732998 1733009 1733526 1733531) (-1036 "RFFACT.spad" 1732733 1732745 1732988 1732993) (-1035 "RFDIST.spad" 1731721 1731730 1732723 1732728) (-1034 "RETSOL.spad" 1731138 1731151 1731711 1731716) (-1033 "RETRACT.spad" 1730566 1730577 1731128 1731133) (-1032 "RETRACT.spad" 1729992 1730005 1730556 1730561) (-1031 "RETAST.spad" 1729804 1729813 1729982 1729987) (-1030 "RESULT.spad" 1727864 1727873 1728451 1728478) (-1029 "RESRING.spad" 1727211 1727258 1727802 1727859) (-1028 "RESLATC.spad" 1726535 1726546 1727201 1727206) (-1027 "REPSQ.spad" 1726264 1726275 1726525 1726530) (-1026 "REP.spad" 1723816 1723825 1726254 1726259) (-1025 "REPDB.spad" 1723521 1723532 1723806 1723811) (-1024 "REP2.spad" 1713093 1713104 1723363 1723368) (-1023 "REP1.spad" 1707083 1707094 1713043 1713048) (-1022 "REGSET.spad" 1704880 1704897 1706729 1706756) (-1021 "REF.spad" 1704209 1704220 1704835 1704840) (-1020 "REDORDER.spad" 1703385 1703402 1704199 1704204) (-1019 "RECLOS.spad" 1702168 1702188 1702872 1702965) (-1018 "REALSOLV.spad" 1701300 1701309 1702158 1702163) (-1017 "REAL.spad" 1701172 1701181 1701290 1701295) (-1016 "REAL0Q.spad" 1698454 1698469 1701162 1701167) (-1015 "REAL0.spad" 1695282 1695297 1698444 1698449) (-1014 "RDUCEAST.spad" 1695003 1695012 1695272 1695277) (-1013 "RDIV.spad" 1694654 1694679 1694993 1694998) (-1012 "RDIST.spad" 1694217 1694228 1694644 1694649) (-1011 "RDETRS.spad" 1693013 1693031 1694207 1694212) (-1010 "RDETR.spad" 1691120 1691138 1693003 1693008) (-1009 "RDEEFS.spad" 1690193 1690210 1691110 1691115) (-1008 "RDEEF.spad" 1689189 1689206 1690183 1690188) (-1007 "RCFIELD.spad" 1686375 1686384 1689091 1689184) (-1006 "RCFIELD.spad" 1683647 1683658 1686365 1686370) (-1005 "RCAGG.spad" 1681559 1681570 1683637 1683642) (-1004 "RCAGG.spad" 1679398 1679411 1681478 1681483) (-1003 "RATRET.spad" 1678758 1678769 1679388 1679393) (-1002 "RATFACT.spad" 1678450 1678462 1678748 1678753) (-1001 "RANDSRC.spad" 1677769 1677778 1678440 1678445) (-1000 "RADUTIL.spad" 1677523 1677532 1677759 1677764) (-999 "RADIX.spad" 1674425 1674438 1675990 1676083) (-998 "RADFF.spad" 1672839 1672875 1672957 1673113) (-997 "RADCAT.spad" 1672433 1672441 1672829 1672834) (-996 "RADCAT.spad" 1672025 1672035 1672423 1672428) (-995 "QUEUE.spad" 1671368 1671378 1671632 1671659) (-994 "QUAT.spad" 1669950 1669960 1670292 1670357) (-993 "QUATCT2.spad" 1669569 1669587 1669940 1669945) (-992 "QUATCAT.spad" 1667734 1667744 1669499 1669564) (-991 "QUATCAT.spad" 1665650 1665662 1667417 1667422) (-990 "QUAGG.spad" 1664476 1664486 1665618 1665645) (-989 "QQUTAST.spad" 1664245 1664253 1664466 1664471) (-988 "QFORM.spad" 1663708 1663722 1664235 1664240) (-987 "QFCAT.spad" 1662411 1662421 1663610 1663703) (-986 "QFCAT.spad" 1660705 1660717 1661906 1661911) (-985 "QFCAT2.spad" 1660396 1660412 1660695 1660700) (-984 "QEQUAT.spad" 1659953 1659961 1660386 1660391) (-983 "QCMPACK.spad" 1654700 1654719 1659943 1659948) (-982 "QALGSET.spad" 1650775 1650807 1654614 1654619) (-981 "QALGSET2.spad" 1648771 1648789 1650765 1650770) (-980 "PWFFINTB.spad" 1646081 1646102 1648761 1648766) (-979 "PUSHVAR.spad" 1645410 1645429 1646071 1646076) (-978 "PTRANFN.spad" 1641536 1641546 1645400 1645405) (-977 "PTPACK.spad" 1638624 1638634 1641526 1641531) (-976 "PTFUNC2.spad" 1638445 1638459 1638614 1638619) (-975 "PTCAT.spad" 1637694 1637704 1638413 1638440) (-974 "PSQFR.spad" 1637001 1637025 1637684 1637689) (-973 "PSEUDLIN.spad" 1635859 1635869 1636991 1636996) (-972 "PSETPK.spad" 1621292 1621308 1635737 1635742) (-971 "PSETCAT.spad" 1615212 1615235 1621272 1621287) (-970 "PSETCAT.spad" 1609106 1609131 1615168 1615173) (-969 "PSCURVE.spad" 1608089 1608097 1609096 1609101) (-968 "PSCAT.spad" 1606856 1606885 1607987 1608084) (-967 "PSCAT.spad" 1605713 1605744 1606846 1606851) (-966 "PRTITION.spad" 1604658 1604666 1605703 1605708) (-965 "PRTDAST.spad" 1604377 1604385 1604648 1604653) (-964 "PRS.spad" 1593939 1593956 1604333 1604338) (-963 "PRQAGG.spad" 1593370 1593380 1593907 1593934) (-962 "PROPLOG.spad" 1592773 1592781 1593360 1593365) (-961 "PROPFRML.spad" 1590691 1590702 1592763 1592768) (-960 "PROPERTY.spad" 1590185 1590193 1590681 1590686) (-959 "PRODUCT.spad" 1587865 1587877 1588151 1588206) (-958 "PR.spad" 1586251 1586263 1586956 1587083) (-957 "PRINT.spad" 1586003 1586011 1586241 1586246) (-956 "PRIMES.spad" 1584254 1584264 1585993 1585998) (-955 "PRIMELT.spad" 1582235 1582249 1584244 1584249) (-954 "PRIMCAT.spad" 1581858 1581866 1582225 1582230) (-953 "PRIMARR.spad" 1580863 1580873 1581041 1581068) (-952 "PRIMARR2.spad" 1579586 1579598 1580853 1580858) (-951 "PREASSOC.spad" 1578958 1578970 1579576 1579581) (-950 "PPCURVE.spad" 1578095 1578103 1578948 1578953) (-949 "PORTNUM.spad" 1577870 1577878 1578085 1578090) (-948 "POLYROOT.spad" 1576699 1576721 1577826 1577831) (-947 "POLY.spad" 1573996 1574006 1574513 1574640) (-946 "POLYLIFT.spad" 1573257 1573280 1573986 1573991) (-945 "POLYCATQ.spad" 1571359 1571381 1573247 1573252) (-944 "POLYCAT.spad" 1564765 1564786 1571227 1571354) (-943 "POLYCAT.spad" 1557473 1557496 1563937 1563942) (-942 "POLY2UP.spad" 1556921 1556935 1557463 1557468) (-941 "POLY2.spad" 1556516 1556528 1556911 1556916) (-940 "POLUTIL.spad" 1555457 1555486 1556472 1556477) (-939 "POLTOPOL.spad" 1554205 1554220 1555447 1555452) (-938 "POINT.spad" 1553044 1553054 1553131 1553158) (-937 "PNTHEORY.spad" 1549710 1549718 1553034 1553039) (-936 "PMTOOLS.spad" 1548467 1548481 1549700 1549705) (-935 "PMSYM.spad" 1548012 1548022 1548457 1548462) (-934 "PMQFCAT.spad" 1547599 1547613 1548002 1548007) (-933 "PMPRED.spad" 1547068 1547082 1547589 1547594) (-932 "PMPREDFS.spad" 1546512 1546534 1547058 1547063) (-931 "PMPLCAT.spad" 1545582 1545600 1546444 1546449) (-930 "PMLSAGG.spad" 1545163 1545177 1545572 1545577) (-929 "PMKERNEL.spad" 1544730 1544742 1545153 1545158) (-928 "PMINS.spad" 1544306 1544316 1544720 1544725) (-927 "PMFS.spad" 1543879 1543897 1544296 1544301) (-926 "PMDOWN.spad" 1543165 1543179 1543869 1543874) (-925 "PMASS.spad" 1542177 1542185 1543155 1543160) (-924 "PMASSFS.spad" 1541146 1541162 1542167 1542172) (-923 "PLOTTOOL.spad" 1540926 1540934 1541136 1541141) (-922 "PLOT.spad" 1535757 1535765 1540916 1540921) (-921 "PLOT3D.spad" 1532177 1532185 1535747 1535752) (-920 "PLOT1.spad" 1531318 1531328 1532167 1532172) (-919 "PLEQN.spad" 1518534 1518561 1531308 1531313) (-918 "PINTERP.spad" 1518150 1518169 1518524 1518529) (-917 "PINTERPA.spad" 1517932 1517948 1518140 1518145) (-916 "PI.spad" 1517539 1517547 1517906 1517927) (-915 "PID.spad" 1516495 1516503 1517465 1517534) (-914 "PICOERCE.spad" 1516152 1516162 1516485 1516490) (-913 "PGROEB.spad" 1514749 1514763 1516142 1516147) (-912 "PGE.spad" 1506002 1506010 1514739 1514744) (-911 "PGCD.spad" 1504884 1504901 1505992 1505997) (-910 "PFRPAC.spad" 1504027 1504037 1504874 1504879) (-909 "PFR.spad" 1500684 1500694 1503929 1504022) (-908 "PFOTOOLS.spad" 1499942 1499958 1500674 1500679) (-907 "PFOQ.spad" 1499312 1499330 1499932 1499937) (-906 "PFO.spad" 1498731 1498758 1499302 1499307) (-905 "PF.spad" 1498305 1498317 1498536 1498629) (-904 "PFECAT.spad" 1495971 1495979 1498231 1498300) (-903 "PFECAT.spad" 1493665 1493675 1495927 1495932) (-902 "PFBRU.spad" 1491535 1491547 1493655 1493660) (-901 "PFBR.spad" 1489073 1489096 1491525 1491530) (-900 "PERM.spad" 1484754 1484764 1488903 1488918) (-899 "PERMGRP.spad" 1479490 1479500 1484744 1484749) (-898 "PERMCAT.spad" 1478042 1478052 1479470 1479485) (-897 "PERMAN.spad" 1476574 1476588 1478032 1478037) (-896 "PENDTREE.spad" 1475913 1475923 1476203 1476208) (-895 "PDRING.spad" 1474404 1474414 1475893 1475908) (-894 "PDRING.spad" 1472903 1472915 1474394 1474399) (-893 "PDEPROB.spad" 1471918 1471926 1472893 1472898) (-892 "PDEPACK.spad" 1465920 1465928 1471908 1471913) (-891 "PDECOMP.spad" 1465382 1465399 1465910 1465915) (-890 "PDECAT.spad" 1463736 1463744 1465372 1465377) (-889 "PCOMP.spad" 1463587 1463600 1463726 1463731) (-888 "PBWLB.spad" 1462169 1462186 1463577 1463582) (-887 "PATTERN.spad" 1456600 1456610 1462159 1462164) (-886 "PATTERN2.spad" 1456336 1456348 1456590 1456595) (-885 "PATTERN1.spad" 1454638 1454654 1456326 1456331) (-884 "PATRES.spad" 1452185 1452197 1454628 1454633) (-883 "PATRES2.spad" 1451847 1451861 1452175 1452180) (-882 "PATMATCH.spad" 1450004 1450035 1451555 1451560) (-881 "PATMAB.spad" 1449429 1449439 1449994 1449999) (-880 "PATLRES.spad" 1448513 1448527 1449419 1449424) (-879 "PATAB.spad" 1448277 1448287 1448503 1448508) (-878 "PARTPERM.spad" 1445639 1445647 1448267 1448272) (-877 "PARSURF.spad" 1445067 1445095 1445629 1445634) (-876 "PARSU2.spad" 1444862 1444878 1445057 1445062) (-875 "script-parser.spad" 1444382 1444390 1444852 1444857) (-874 "PARSCURV.spad" 1443810 1443838 1444372 1444377) (-873 "PARSC2.spad" 1443599 1443615 1443800 1443805) (-872 "PARPCURV.spad" 1443057 1443085 1443589 1443594) (-871 "PARPC2.spad" 1442846 1442862 1443047 1443052) (-870 "PAN2EXPR.spad" 1442258 1442266 1442836 1442841) (-869 "PALETTE.spad" 1441228 1441236 1442248 1442253) (-868 "PAIR.spad" 1440211 1440224 1440816 1440821) (-867 "PADICRC.spad" 1437541 1437559 1438716 1438809) (-866 "PADICRAT.spad" 1435556 1435568 1435777 1435870) (-865 "PADIC.spad" 1435251 1435263 1435482 1435551) (-864 "PADICCT.spad" 1433792 1433804 1435177 1435246) (-863 "PADEPAC.spad" 1432471 1432490 1433782 1433787) (-862 "PADE.spad" 1431211 1431227 1432461 1432466) (-861 "OWP.spad" 1430451 1430481 1431069 1431136) (-860 "OVERSET.spad" 1430024 1430032 1430441 1430446) (-859 "OVAR.spad" 1429805 1429828 1430014 1430019) (-858 "OUT.spad" 1428889 1428897 1429795 1429800) (-857 "OUTFORM.spad" 1418185 1418193 1428879 1428884) (-856 "OUTBFILE.spad" 1417603 1417611 1418175 1418180) (-855 "OUTBCON.spad" 1416601 1416609 1417593 1417598) (-854 "OUTBCON.spad" 1415597 1415607 1416591 1416596) (-853 "OSI.spad" 1415072 1415080 1415587 1415592) (-852 "OSGROUP.spad" 1414990 1414998 1415062 1415067) (-851 "ORTHPOL.spad" 1413451 1413461 1414907 1414912) (-850 "OREUP.spad" 1412904 1412932 1413131 1413170) (-849 "ORESUP.spad" 1412203 1412227 1412584 1412623) (-848 "OREPCTO.spad" 1410022 1410034 1412123 1412128) (-847 "OREPCAT.spad" 1404079 1404089 1409978 1410017) (-846 "OREPCAT.spad" 1398026 1398038 1403927 1403932) (-845 "ORDSET.spad" 1397192 1397200 1398016 1398021) (-844 "ORDSET.spad" 1396356 1396366 1397182 1397187) (-843 "ORDRING.spad" 1395746 1395754 1396336 1396351) (-842 "ORDRING.spad" 1395144 1395154 1395736 1395741) (-841 "ORDMON.spad" 1394999 1395007 1395134 1395139) (-840 "ORDFUNS.spad" 1394125 1394141 1394989 1394994) (-839 "ORDFIN.spad" 1393945 1393953 1394115 1394120) (-838 "ORDCOMP.spad" 1392410 1392420 1393492 1393521) (-837 "ORDCOMP2.spad" 1391695 1391707 1392400 1392405) (-836 "OPTPROB.spad" 1390333 1390341 1391685 1391690) (-835 "OPTPACK.spad" 1382718 1382726 1390323 1390328) (-834 "OPTCAT.spad" 1380393 1380401 1382708 1382713) (-833 "OPSIG.spad" 1380045 1380053 1380383 1380388) (-832 "OPQUERY.spad" 1379594 1379602 1380035 1380040) (-831 "OP.spad" 1379336 1379346 1379416 1379483) (-830 "OPERCAT.spad" 1378924 1378934 1379326 1379331) (-829 "OPERCAT.spad" 1378510 1378522 1378914 1378919) (-828 "ONECOMP.spad" 1377255 1377265 1378057 1378086) (-827 "ONECOMP2.spad" 1376673 1376685 1377245 1377250) (-826 "OMSERVER.spad" 1375675 1375683 1376663 1376668) (-825 "OMSAGG.spad" 1375463 1375473 1375631 1375670) (-824 "OMPKG.spad" 1374075 1374083 1375453 1375458) (-823 "OM.spad" 1373040 1373048 1374065 1374070) (-822 "OMLO.spad" 1372465 1372477 1372926 1372965) (-821 "OMEXPR.spad" 1372299 1372309 1372455 1372460) (-820 "OMERR.spad" 1371842 1371850 1372289 1372294) (-819 "OMERRK.spad" 1370876 1370884 1371832 1371837) (-818 "OMENC.spad" 1370220 1370228 1370866 1370871) (-817 "OMDEV.spad" 1364509 1364517 1370210 1370215) (-816 "OMCONN.spad" 1363918 1363926 1364499 1364504) (-815 "OINTDOM.spad" 1363681 1363689 1363844 1363913) (-814 "OFMONOID.spad" 1359868 1359878 1363671 1363676) (-813 "ODVAR.spad" 1359129 1359139 1359858 1359863) (-812 "ODR.spad" 1358773 1358799 1358941 1359090) (-811 "ODPOL.spad" 1356119 1356129 1356459 1356586) (-810 "ODP.spad" 1345966 1345986 1346339 1346470) (-809 "ODETOOLS.spad" 1344549 1344568 1345956 1345961) (-808 "ODESYS.spad" 1342199 1342216 1344539 1344544) (-807 "ODERTRIC.spad" 1338140 1338157 1342156 1342161) (-806 "ODERED.spad" 1337527 1337551 1338130 1338135) (-805 "ODERAT.spad" 1335078 1335095 1337517 1337522) (-804 "ODEPRRIC.spad" 1331969 1331991 1335068 1335073) (-803 "ODEPROB.spad" 1331226 1331234 1331959 1331964) (-802 "ODEPRIM.spad" 1328500 1328522 1331216 1331221) (-801 "ODEPAL.spad" 1327876 1327900 1328490 1328495) (-800 "ODEPACK.spad" 1314478 1314486 1327866 1327871) (-799 "ODEINT.spad" 1313909 1313925 1314468 1314473) (-798 "ODEIFTBL.spad" 1311304 1311312 1313899 1313904) (-797 "ODEEF.spad" 1306671 1306687 1311294 1311299) (-796 "ODECONST.spad" 1306190 1306208 1306661 1306666) (-795 "ODECAT.spad" 1304786 1304794 1306180 1306185) (-794 "OCT.spad" 1302924 1302934 1303640 1303679) (-793 "OCTCT2.spad" 1302568 1302589 1302914 1302919) (-792 "OC.spad" 1300342 1300352 1302524 1302563) (-791 "OC.spad" 1297841 1297853 1300025 1300030) (-790 "OCAMON.spad" 1297689 1297697 1297831 1297836) (-789 "OASGP.spad" 1297504 1297512 1297679 1297684) (-788 "OAMONS.spad" 1297024 1297032 1297494 1297499) (-787 "OAMON.spad" 1296885 1296893 1297014 1297019) (-786 "OAGROUP.spad" 1296747 1296755 1296875 1296880) (-785 "NUMTUBE.spad" 1296334 1296350 1296737 1296742) (-784 "NUMQUAD.spad" 1284196 1284204 1296324 1296329) (-783 "NUMODE.spad" 1275332 1275340 1284186 1284191) (-782 "NUMINT.spad" 1272890 1272898 1275322 1275327) (-781 "NUMFMT.spad" 1271730 1271738 1272880 1272885) (-780 "NUMERIC.spad" 1263802 1263812 1271535 1271540) (-779 "NTSCAT.spad" 1262304 1262320 1263770 1263797) (-778 "NTPOLFN.spad" 1261849 1261859 1262221 1262226) (-777 "NSUP.spad" 1254859 1254869 1259399 1259552) (-776 "NSUP2.spad" 1254251 1254263 1254849 1254854) (-775 "NSMP.spad" 1250446 1250465 1250754 1250881) (-774 "NREP.spad" 1248818 1248832 1250436 1250441) (-773 "NPCOEF.spad" 1248064 1248084 1248808 1248813) (-772 "NORMRETR.spad" 1247662 1247701 1248054 1248059) (-771 "NORMPK.spad" 1245564 1245583 1247652 1247657) (-770 "NORMMA.spad" 1245252 1245278 1245554 1245559) (-769 "NONE.spad" 1244993 1245001 1245242 1245247) (-768 "NONE1.spad" 1244669 1244679 1244983 1244988) (-767 "NODE1.spad" 1244138 1244154 1244659 1244664) (-766 "NNI.spad" 1243025 1243033 1244112 1244133) (-765 "NLINSOL.spad" 1241647 1241657 1243015 1243020) (-764 "NIPROB.spad" 1240188 1240196 1241637 1241642) (-763 "NFINTBAS.spad" 1237648 1237665 1240178 1240183) (-762 "NETCLT.spad" 1237622 1237633 1237638 1237643) (-761 "NCODIV.spad" 1235820 1235836 1237612 1237617) (-760 "NCNTFRAC.spad" 1235462 1235476 1235810 1235815) (-759 "NCEP.spad" 1233622 1233636 1235452 1235457) (-758 "NASRING.spad" 1233218 1233226 1233612 1233617) (-757 "NASRING.spad" 1232812 1232822 1233208 1233213) (-756 "NARNG.spad" 1232156 1232164 1232802 1232807) (-755 "NARNG.spad" 1231498 1231508 1232146 1232151) (-754 "NAGSP.spad" 1230571 1230579 1231488 1231493) (-753 "NAGS.spad" 1220096 1220104 1230561 1230566) (-752 "NAGF07.spad" 1218489 1218497 1220086 1220091) (-751 "NAGF04.spad" 1212721 1212729 1218479 1218484) (-750 "NAGF02.spad" 1206530 1206538 1212711 1212716) (-749 "NAGF01.spad" 1202133 1202141 1206520 1206525) (-748 "NAGE04.spad" 1195593 1195601 1202123 1202128) (-747 "NAGE02.spad" 1185935 1185943 1195583 1195588) (-746 "NAGE01.spad" 1181819 1181827 1185925 1185930) (-745 "NAGD03.spad" 1179739 1179747 1181809 1181814) (-744 "NAGD02.spad" 1172270 1172278 1179729 1179734) (-743 "NAGD01.spad" 1166383 1166391 1172260 1172265) (-742 "NAGC06.spad" 1162170 1162178 1166373 1166378) (-741 "NAGC05.spad" 1160639 1160647 1162160 1162165) (-740 "NAGC02.spad" 1159894 1159902 1160629 1160634) (-739 "NAALG.spad" 1159429 1159439 1159862 1159889) (-738 "NAALG.spad" 1158984 1158996 1159419 1159424) (-737 "MULTSQFR.spad" 1155942 1155959 1158974 1158979) (-736 "MULTFACT.spad" 1155325 1155342 1155932 1155937) (-735 "MTSCAT.spad" 1153359 1153380 1155223 1155320) (-734 "MTHING.spad" 1153016 1153026 1153349 1153354) (-733 "MSYSCMD.spad" 1152450 1152458 1153006 1153011) (-732 "MSET.spad" 1150392 1150402 1152156 1152195) (-731 "MSETAGG.spad" 1150237 1150247 1150360 1150387) (-730 "MRING.spad" 1147208 1147220 1149945 1150012) (-729 "MRF2.spad" 1146776 1146790 1147198 1147203) (-728 "MRATFAC.spad" 1146322 1146339 1146766 1146771) (-727 "MPRFF.spad" 1144352 1144371 1146312 1146317) (-726 "MPOLY.spad" 1141787 1141802 1142146 1142273) (-725 "MPCPF.spad" 1141051 1141070 1141777 1141782) (-724 "MPC3.spad" 1140866 1140906 1141041 1141046) (-723 "MPC2.spad" 1140508 1140541 1140856 1140861) (-722 "MONOTOOL.spad" 1138843 1138860 1140498 1140503) (-721 "MONOID.spad" 1138162 1138170 1138833 1138838) (-720 "MONOID.spad" 1137479 1137489 1138152 1138157) (-719 "MONOGEN.spad" 1136225 1136238 1137339 1137474) (-718 "MONOGEN.spad" 1134993 1135008 1136109 1136114) (-717 "MONADWU.spad" 1133007 1133015 1134983 1134988) (-716 "MONADWU.spad" 1131019 1131029 1132997 1133002) (-715 "MONAD.spad" 1130163 1130171 1131009 1131014) (-714 "MONAD.spad" 1129305 1129315 1130153 1130158) (-713 "MOEBIUS.spad" 1127991 1128005 1129285 1129300) (-712 "MODULE.spad" 1127861 1127871 1127959 1127986) (-711 "MODULE.spad" 1127751 1127763 1127851 1127856) (-710 "MODRING.spad" 1127082 1127121 1127731 1127746) (-709 "MODOP.spad" 1125741 1125753 1126904 1126971) (-708 "MODMONOM.spad" 1125470 1125488 1125731 1125736) (-707 "MODMON.spad" 1122229 1122245 1122948 1123101) (-706 "MODFIELD.spad" 1121587 1121626 1122131 1122224) (-705 "MMLFORM.spad" 1120447 1120455 1121577 1121582) (-704 "MMAP.spad" 1120187 1120221 1120437 1120442) (-703 "MLO.spad" 1118614 1118624 1120143 1120182) (-702 "MLIFT.spad" 1117186 1117203 1118604 1118609) (-701 "MKUCFUNC.spad" 1116719 1116737 1117176 1117181) (-700 "MKRECORD.spad" 1116321 1116334 1116709 1116714) (-699 "MKFUNC.spad" 1115702 1115712 1116311 1116316) (-698 "MKFLCFN.spad" 1114658 1114668 1115692 1115697) (-697 "MKCHSET.spad" 1114523 1114533 1114648 1114653) (-696 "MKBCFUNC.spad" 1114008 1114026 1114513 1114518) (-695 "MINT.spad" 1113447 1113455 1113910 1114003) (-694 "MHROWRED.spad" 1111948 1111958 1113437 1113442) (-693 "MFLOAT.spad" 1110464 1110472 1111838 1111943) (-692 "MFINFACT.spad" 1109864 1109886 1110454 1110459) (-691 "MESH.spad" 1107596 1107604 1109854 1109859) (-690 "MDDFACT.spad" 1105789 1105799 1107586 1107591) (-689 "MDAGG.spad" 1105076 1105086 1105769 1105784) (-688 "MCMPLX.spad" 1101062 1101070 1101676 1101865) (-687 "MCDEN.spad" 1100270 1100282 1101052 1101057) (-686 "MCALCFN.spad" 1097372 1097398 1100260 1100265) (-685 "MAYBE.spad" 1096656 1096667 1097362 1097367) (-684 "MATSTOR.spad" 1093932 1093942 1096646 1096651) (-683 "MATRIX.spad" 1092636 1092646 1093120 1093147) (-682 "MATLIN.spad" 1089962 1089986 1092520 1092525) (-681 "MATCAT.spad" 1081547 1081569 1089930 1089957) (-680 "MATCAT.spad" 1073004 1073028 1081389 1081394) (-679 "MATCAT2.spad" 1072272 1072320 1072994 1072999) (-678 "MAPPKG3.spad" 1071171 1071185 1072262 1072267) (-677 "MAPPKG2.spad" 1070505 1070517 1071161 1071166) (-676 "MAPPKG1.spad" 1069323 1069333 1070495 1070500) (-675 "MAPPAST.spad" 1068636 1068644 1069313 1069318) (-674 "MAPHACK3.spad" 1068444 1068458 1068626 1068631) (-673 "MAPHACK2.spad" 1068209 1068221 1068434 1068439) (-672 "MAPHACK1.spad" 1067839 1067849 1068199 1068204) (-671 "MAGMA.spad" 1065629 1065646 1067829 1067834) (-670 "MACROAST.spad" 1065208 1065216 1065619 1065624) (-669 "M3D.spad" 1062904 1062914 1064586 1064591) (-668 "LZSTAGG.spad" 1060132 1060142 1062894 1062899) (-667 "LZSTAGG.spad" 1057358 1057370 1060122 1060127) (-666 "LWORD.spad" 1054063 1054080 1057348 1057353) (-665 "LSTAST.spad" 1053847 1053855 1054053 1054058) (-664 "LSQM.spad" 1052073 1052087 1052471 1052522) (-663 "LSPP.spad" 1051606 1051623 1052063 1052068) (-662 "LSMP.spad" 1050446 1050474 1051596 1051601) (-661 "LSMP1.spad" 1048250 1048264 1050436 1050441) (-660 "LSAGG.spad" 1047919 1047929 1048218 1048245) (-659 "LSAGG.spad" 1047608 1047620 1047909 1047914) (-658 "LPOLY.spad" 1046562 1046581 1047464 1047533) (-657 "LPEFRAC.spad" 1045819 1045829 1046552 1046557) (-656 "LO.spad" 1045220 1045234 1045753 1045780) (-655 "LOGIC.spad" 1044822 1044830 1045210 1045215) (-654 "LOGIC.spad" 1044422 1044432 1044812 1044817) (-653 "LODOOPS.spad" 1043340 1043352 1044412 1044417) (-652 "LODO.spad" 1042724 1042740 1043020 1043059) (-651 "LODOF.spad" 1041768 1041785 1042681 1042686) (-650 "LODOCAT.spad" 1040426 1040436 1041724 1041763) (-649 "LODOCAT.spad" 1039082 1039094 1040382 1040387) (-648 "LODO2.spad" 1038355 1038367 1038762 1038801) (-647 "LODO1.spad" 1037755 1037765 1038035 1038074) (-646 "LODEEF.spad" 1036527 1036545 1037745 1037750) (-645 "LNAGG.spad" 1032329 1032339 1036517 1036522) (-644 "LNAGG.spad" 1028095 1028107 1032285 1032290) (-643 "LMOPS.spad" 1024831 1024848 1028085 1028090) (-642 "LMODULE.spad" 1024473 1024483 1024821 1024826) (-641 "LMDICT.spad" 1023756 1023766 1024024 1024051) (-640 "LITERAL.spad" 1023662 1023673 1023746 1023751) (-639 "LIST.spad" 1021380 1021390 1022809 1022836) (-638 "LIST3.spad" 1020671 1020685 1021370 1021375) (-637 "LIST2.spad" 1019311 1019323 1020661 1020666) (-636 "LIST2MAP.spad" 1016188 1016200 1019301 1019306) (-635 "LINEXP.spad" 1015620 1015630 1016168 1016183) (-634 "LINDEP.spad" 1014397 1014409 1015532 1015537) (-633 "LIMITRF.spad" 1012311 1012321 1014387 1014392) (-632 "LIMITPS.spad" 1011194 1011207 1012301 1012306) (-631 "LIE.spad" 1009208 1009220 1010484 1010629) (-630 "LIECAT.spad" 1008684 1008694 1009134 1009203) (-629 "LIECAT.spad" 1008188 1008200 1008640 1008645) (-628 "LIB.spad" 1006236 1006244 1006847 1006862) (-627 "LGROBP.spad" 1003589 1003608 1006226 1006231) (-626 "LF.spad" 1002508 1002524 1003579 1003584) (-625 "LFCAT.spad" 1001527 1001535 1002498 1002503) (-624 "LEXTRIPK.spad" 997030 997045 1001517 1001522) (-623 "LEXP.spad" 995033 995060 997010 997025) (-622 "LETAST.spad" 994732 994740 995023 995028) (-621 "LEADCDET.spad" 993116 993133 994722 994727) (-620 "LAZM3PK.spad" 991820 991842 993106 993111) (-619 "LAUPOL.spad" 990509 990522 991413 991482) (-618 "LAPLACE.spad" 990082 990098 990499 990504) (-617 "LA.spad" 989522 989536 990004 990043) (-616 "LALG.spad" 989298 989308 989502 989517) (-615 "LALG.spad" 989082 989094 989288 989293) (-614 "KVTFROM.spad" 988817 988827 989072 989077) (-613 "KTVLOGIC.spad" 988240 988248 988807 988812) (-612 "KRCFROM.spad" 987978 987988 988230 988235) (-611 "KOVACIC.spad" 986691 986708 987968 987973) (-610 "KONVERT.spad" 986413 986423 986681 986686) (-609 "KOERCE.spad" 986150 986160 986403 986408) (-608 "KERNEL.spad" 984685 984695 985934 985939) (-607 "KERNEL2.spad" 984388 984400 984675 984680) (-606 "KDAGG.spad" 983491 983513 984368 984383) (-605 "KDAGG.spad" 982602 982626 983481 983486) (-604 "KAFILE.spad" 981565 981581 981800 981827) (-603 "JORDAN.spad" 979392 979404 980855 981000) (-602 "JOINAST.spad" 979086 979094 979382 979387) (-601 "JAVACODE.spad" 978952 978960 979076 979081) (-600 "IXAGG.spad" 977075 977099 978942 978947) (-599 "IXAGG.spad" 975053 975079 976922 976927) (-598 "IVECTOR.spad" 973824 973839 973979 974006) (-597 "ITUPLE.spad" 972969 972979 973814 973819) (-596 "ITRIGMNP.spad" 971780 971799 972959 972964) (-595 "ITFUN3.spad" 971274 971288 971770 971775) (-594 "ITFUN2.spad" 971004 971016 971264 971269) (-593 "ITAYLOR.spad" 968796 968811 970840 970965) (-592 "ISUPS.spad" 961207 961222 967770 967867) (-591 "ISUMP.spad" 960704 960720 961197 961202) (-590 "ISTRING.spad" 959707 959720 959873 959900) (-589 "ISAST.spad" 959426 959434 959697 959702) (-588 "IRURPK.spad" 958139 958158 959416 959421) (-587 "IRSN.spad" 956099 956107 958129 958134) (-586 "IRRF2F.spad" 954574 954584 956055 956060) (-585 "IRREDFFX.spad" 954175 954186 954564 954569) (-584 "IROOT.spad" 952506 952516 954165 954170) (-583 "IR.spad" 950295 950309 952361 952388) (-582 "IR2.spad" 949315 949331 950285 950290) (-581 "IR2F.spad" 948515 948531 949305 949310) (-580 "IPRNTPK.spad" 948275 948283 948505 948510) (-579 "IPF.spad" 947840 947852 948080 948173) (-578 "IPADIC.spad" 947601 947627 947766 947835) (-577 "IP4ADDR.spad" 947158 947166 947591 947596) (-576 "IOMODE.spad" 946779 946787 947148 947153) (-575 "IOBFILE.spad" 946140 946148 946769 946774) (-574 "IOBCON.spad" 946005 946013 946130 946135) (-573 "INVLAPLA.spad" 945650 945666 945995 946000) (-572 "INTTR.spad" 938896 938913 945640 945645) (-571 "INTTOOLS.spad" 936607 936623 938470 938475) (-570 "INTSLPE.spad" 935913 935921 936597 936602) (-569 "INTRVL.spad" 935479 935489 935827 935908) (-568 "INTRF.spad" 933843 933857 935469 935474) (-567 "INTRET.spad" 933275 933285 933833 933838) (-566 "INTRAT.spad" 931950 931967 933265 933270) (-565 "INTPM.spad" 930313 930329 931593 931598) (-564 "INTPAF.spad" 928081 928099 930245 930250) (-563 "INTPACK.spad" 918391 918399 928071 928076) (-562 "INT.spad" 917752 917760 918245 918386) (-561 "INTHERTR.spad" 917018 917035 917742 917747) (-560 "INTHERAL.spad" 916684 916708 917008 917013) (-559 "INTHEORY.spad" 913097 913105 916674 916679) (-558 "INTG0.spad" 906560 906578 913029 913034) (-557 "INTFTBL.spad" 900589 900597 906550 906555) (-556 "INTFACT.spad" 899648 899658 900579 900584) (-555 "INTEF.spad" 897963 897979 899638 899643) (-554 "INTDOM.spad" 896578 896586 897889 897958) (-553 "INTDOM.spad" 895255 895265 896568 896573) (-552 "INTCAT.spad" 893508 893518 895169 895250) (-551 "INTBIT.spad" 893011 893019 893498 893503) (-550 "INTALG.spad" 892193 892220 893001 893006) (-549 "INTAF.spad" 891685 891701 892183 892188) (-548 "INTABL.spad" 890203 890234 890366 890393) (-547 "INT8.spad" 890083 890091 890193 890198) (-546 "INT32.spad" 889962 889970 890073 890078) (-545 "INT16.spad" 889841 889849 889952 889957) (-544 "INS.spad" 887308 887316 889743 889836) (-543 "INS.spad" 884861 884871 887298 887303) (-542 "INPSIGN.spad" 884295 884308 884851 884856) (-541 "INPRODPF.spad" 883361 883380 884285 884290) (-540 "INPRODFF.spad" 882419 882443 883351 883356) (-539 "INNMFACT.spad" 881390 881407 882409 882414) (-538 "INMODGCD.spad" 880874 880904 881380 881385) (-537 "INFSP.spad" 879159 879181 880864 880869) (-536 "INFPROD0.spad" 878209 878228 879149 879154) (-535 "INFORM.spad" 875370 875378 878199 878204) (-534 "INFORM1.spad" 874995 875005 875360 875365) (-533 "INFINITY.spad" 874547 874555 874985 874990) (-532 "INETCLTS.spad" 874524 874532 874537 874542) (-531 "INEP.spad" 873056 873078 874514 874519) (-530 "INDE.spad" 872785 872802 873046 873051) (-529 "INCRMAPS.spad" 872206 872216 872775 872780) (-528 "INBFILE.spad" 871278 871286 872196 872201) (-527 "INBFF.spad" 867048 867059 871268 871273) (-526 "INBCON.spad" 865336 865344 867038 867043) (-525 "INBCON.spad" 863622 863632 865326 865331) (-524 "INAST.spad" 863287 863295 863612 863617) (-523 "IMPTAST.spad" 862995 863003 863277 863282) (-522 "IMATRIX.spad" 861940 861966 862452 862479) (-521 "IMATQF.spad" 861034 861078 861896 861901) (-520 "IMATLIN.spad" 859639 859663 860990 860995) (-519 "ILIST.spad" 858295 858310 858822 858849) (-518 "IIARRAY2.spad" 857683 857721 857902 857929) (-517 "IFF.spad" 857093 857109 857364 857457) (-516 "IFAST.spad" 856707 856715 857083 857088) (-515 "IFARRAY.spad" 854194 854209 855890 855917) (-514 "IFAMON.spad" 854056 854073 854150 854155) (-513 "IEVALAB.spad" 853445 853457 854046 854051) (-512 "IEVALAB.spad" 852832 852846 853435 853440) (-511 "IDPO.spad" 852630 852642 852822 852827) (-510 "IDPOAMS.spad" 852386 852398 852620 852625) (-509 "IDPOAM.spad" 852106 852118 852376 852381) (-508 "IDPC.spad" 851040 851052 852096 852101) (-507 "IDPAM.spad" 850785 850797 851030 851035) (-506 "IDPAG.spad" 850532 850544 850775 850780) (-505 "IDENT.spad" 850304 850312 850522 850527) (-504 "IDECOMP.spad" 847541 847559 850294 850299) (-503 "IDEAL.spad" 842464 842503 847476 847481) (-502 "ICDEN.spad" 841615 841631 842454 842459) (-501 "ICARD.spad" 840804 840812 841605 841610) (-500 "IBPTOOLS.spad" 839397 839414 840794 840799) (-499 "IBITS.spad" 838596 838609 839033 839060) (-498 "IBATOOL.spad" 835471 835490 838586 838591) (-497 "IBACHIN.spad" 833958 833973 835461 835466) (-496 "IARRAY2.spad" 832946 832972 833565 833592) (-495 "IARRAY1.spad" 831991 832006 832129 832156) (-494 "IAN.spad" 830204 830212 831807 831900) (-493 "IALGFACT.spad" 829805 829838 830194 830199) (-492 "HYPCAT.spad" 829229 829237 829795 829800) (-491 "HYPCAT.spad" 828651 828661 829219 829224) (-490 "HOSTNAME.spad" 828459 828467 828641 828646) (-489 "HOMOTOP.spad" 828202 828212 828449 828454) (-488 "HOAGG.spad" 825470 825480 828192 828197) (-487 "HOAGG.spad" 822513 822525 825237 825242) (-486 "HEXADEC.spad" 820615 820623 820980 821073) (-485 "HEUGCD.spad" 819630 819641 820605 820610) (-484 "HELLFDIV.spad" 819220 819244 819620 819625) (-483 "HEAP.spad" 818612 818622 818827 818854) (-482 "HEADAST.spad" 818143 818151 818602 818607) (-481 "HDP.spad" 807986 808002 808363 808494) (-480 "HDMP.spad" 805162 805177 805780 805907) (-479 "HB.spad" 803399 803407 805152 805157) (-478 "HASHTBL.spad" 801869 801900 802080 802107) (-477 "HASAST.spad" 801585 801593 801859 801864) (-476 "HACKPI.spad" 801068 801076 801487 801580) (-475 "GTSET.spad" 800007 800023 800714 800741) (-474 "GSTBL.spad" 798526 798561 798700 798715) (-473 "GSERIES.spad" 795693 795720 796658 796807) (-472 "GROUP.spad" 794962 794970 795673 795688) (-471 "GROUP.spad" 794239 794249 794952 794957) (-470 "GROEBSOL.spad" 792727 792748 794229 794234) (-469 "GRMOD.spad" 791298 791310 792717 792722) (-468 "GRMOD.spad" 789867 789881 791288 791293) (-467 "GRIMAGE.spad" 782472 782480 789857 789862) (-466 "GRDEF.spad" 780851 780859 782462 782467) (-465 "GRAY.spad" 779310 779318 780841 780846) (-464 "GRALG.spad" 778357 778369 779300 779305) (-463 "GRALG.spad" 777402 777416 778347 778352) (-462 "GPOLSET.spad" 776856 776879 777084 777111) (-461 "GOSPER.spad" 776121 776139 776846 776851) (-460 "GMODPOL.spad" 775259 775286 776089 776116) (-459 "GHENSEL.spad" 774328 774342 775249 775254) (-458 "GENUPS.spad" 770429 770442 774318 774323) (-457 "GENUFACT.spad" 770006 770016 770419 770424) (-456 "GENPGCD.spad" 769590 769607 769996 770001) (-455 "GENMFACT.spad" 769042 769061 769580 769585) (-454 "GENEEZ.spad" 766981 766994 769032 769037) (-453 "GDMP.spad" 763999 764016 764775 764902) (-452 "GCNAALG.spad" 757894 757921 763793 763860) (-451 "GCDDOM.spad" 757066 757074 757820 757889) (-450 "GCDDOM.spad" 756300 756310 757056 757061) (-449 "GB.spad" 753818 753856 756256 756261) (-448 "GBINTERN.spad" 749838 749876 753808 753813) (-447 "GBF.spad" 745595 745633 749828 749833) (-446 "GBEUCLID.spad" 743469 743507 745585 745590) (-445 "GAUSSFAC.spad" 742766 742774 743459 743464) (-444 "GALUTIL.spad" 741088 741098 742722 742727) (-443 "GALPOLYU.spad" 739534 739547 741078 741083) (-442 "GALFACTU.spad" 737699 737718 739524 739529) (-441 "GALFACT.spad" 727832 727843 737689 737694) (-440 "FVFUN.spad" 724855 724863 727822 727827) (-439 "FVC.spad" 723907 723915 724845 724850) (-438 "FUNDESC.spad" 723585 723593 723897 723902) (-437 "FUNCTION.spad" 723434 723446 723575 723580) (-436 "FT.spad" 721727 721735 723424 723429) (-435 "FTEM.spad" 720890 720898 721717 721722) (-434 "FSUPFACT.spad" 719790 719809 720826 720831) (-433 "FST.spad" 717876 717884 719780 719785) (-432 "FSRED.spad" 717354 717370 717866 717871) (-431 "FSPRMELT.spad" 716178 716194 717311 717316) (-430 "FSPECF.spad" 714255 714271 716168 716173) (-429 "FS.spad" 708317 708327 714030 714250) (-428 "FS.spad" 702157 702169 707872 707877) (-427 "FSINT.spad" 701815 701831 702147 702152) (-426 "FSERIES.spad" 701002 701014 701635 701734) (-425 "FSCINT.spad" 700315 700331 700992 700997) (-424 "FSAGG.spad" 699432 699442 700271 700310) (-423 "FSAGG.spad" 698511 698523 699352 699357) (-422 "FSAGG2.spad" 697210 697226 698501 698506) (-421 "FS2UPS.spad" 691693 691727 697200 697205) (-420 "FS2.spad" 691338 691354 691683 691688) (-419 "FS2EXPXP.spad" 690461 690484 691328 691333) (-418 "FRUTIL.spad" 689403 689413 690451 690456) (-417 "FR.spad" 683097 683107 688427 688496) (-416 "FRNAALG.spad" 678184 678194 683039 683092) (-415 "FRNAALG.spad" 673283 673295 678140 678145) (-414 "FRNAAF2.spad" 672737 672755 673273 673278) (-413 "FRMOD.spad" 672131 672161 672668 672673) (-412 "FRIDEAL.spad" 671326 671347 672111 672126) (-411 "FRIDEAL2.spad" 670928 670960 671316 671321) (-410 "FRETRCT.spad" 670439 670449 670918 670923) (-409 "FRETRCT.spad" 669816 669828 670297 670302) (-408 "FRAMALG.spad" 668144 668157 669772 669811) (-407 "FRAMALG.spad" 666504 666519 668134 668139) (-406 "FRAC.spad" 663603 663613 664006 664179) (-405 "FRAC2.spad" 663206 663218 663593 663598) (-404 "FR2.spad" 662540 662552 663196 663201) (-403 "FPS.spad" 659349 659357 662430 662535) (-402 "FPS.spad" 656186 656196 659269 659274) (-401 "FPC.spad" 655228 655236 656088 656181) (-400 "FPC.spad" 654356 654366 655218 655223) (-399 "FPATMAB.spad" 654118 654128 654346 654351) (-398 "FPARFRAC.spad" 652591 652608 654108 654113) (-397 "FORTRAN.spad" 651097 651140 652581 652586) (-396 "FORT.spad" 650026 650034 651087 651092) (-395 "FORTFN.spad" 647196 647204 650016 650021) (-394 "FORTCAT.spad" 646880 646888 647186 647191) (-393 "FORMULA.spad" 644344 644352 646870 646875) (-392 "FORMULA1.spad" 643823 643833 644334 644339) (-391 "FORDER.spad" 643514 643538 643813 643818) (-390 "FOP.spad" 642715 642723 643504 643509) (-389 "FNLA.spad" 642139 642161 642683 642710) (-388 "FNCAT.spad" 640726 640734 642129 642134) (-387 "FNAME.spad" 640618 640626 640716 640721) (-386 "FMTC.spad" 640416 640424 640544 640613) (-385 "FMONOID.spad" 637471 637481 640372 640377) (-384 "FM.spad" 637166 637178 637405 637432) (-383 "FMFUN.spad" 634196 634204 637156 637161) (-382 "FMC.spad" 633248 633256 634186 634191) (-381 "FMCAT.spad" 630902 630920 633216 633243) (-380 "FM1.spad" 630259 630271 630836 630863) (-379 "FLOATRP.spad" 627980 627994 630249 630254) (-378 "FLOAT.spad" 621268 621276 627846 627975) (-377 "FLOATCP.spad" 618685 618699 621258 621263) (-376 "FLINEXP.spad" 618397 618407 618665 618680) (-375 "FLINEXP.spad" 618063 618075 618333 618338) (-374 "FLASORT.spad" 617383 617395 618053 618058) (-373 "FLALG.spad" 615029 615048 617309 617378) (-372 "FLAGG.spad" 612047 612057 615009 615024) (-371 "FLAGG.spad" 608966 608978 611930 611935) (-370 "FLAGG2.spad" 607647 607663 608956 608961) (-369 "FINRALG.spad" 605676 605689 607603 607642) (-368 "FINRALG.spad" 603631 603646 605560 605565) (-367 "FINITE.spad" 602783 602791 603621 603626) (-366 "FINAALG.spad" 591764 591774 602725 602778) (-365 "FINAALG.spad" 580757 580769 591720 591725) (-364 "FILE.spad" 580340 580350 580747 580752) (-363 "FILECAT.spad" 578858 578875 580330 580335) (-362 "FIELD.spad" 578264 578272 578760 578853) (-361 "FIELD.spad" 577756 577766 578254 578259) (-360 "FGROUP.spad" 576365 576375 577736 577751) (-359 "FGLMICPK.spad" 575152 575167 576355 576360) (-358 "FFX.spad" 574527 574542 574868 574961) (-357 "FFSLPE.spad" 574016 574037 574517 574522) (-356 "FFPOLY.spad" 565268 565279 574006 574011) (-355 "FFPOLY2.spad" 564328 564345 565258 565263) (-354 "FFP.spad" 563725 563745 564044 564137) (-353 "FF.spad" 563173 563189 563406 563499) (-352 "FFNBX.spad" 561685 561705 562889 562982) (-351 "FFNBP.spad" 560198 560215 561401 561494) (-350 "FFNB.spad" 558663 558684 559879 559972) (-349 "FFINTBAS.spad" 556077 556096 558653 558658) (-348 "FFIELDC.spad" 553652 553660 555979 556072) (-347 "FFIELDC.spad" 551313 551323 553642 553647) (-346 "FFHOM.spad" 550061 550078 551303 551308) (-345 "FFF.spad" 547496 547507 550051 550056) (-344 "FFCGX.spad" 546343 546363 547212 547305) (-343 "FFCGP.spad" 545232 545252 546059 546152) (-342 "FFCG.spad" 544024 544045 544913 545006) (-341 "FFCAT.spad" 537051 537073 543863 544019) (-340 "FFCAT.spad" 530157 530181 536971 536976) (-339 "FFCAT2.spad" 529902 529942 530147 530152) (-338 "FEXPR.spad" 521611 521657 529658 529697) (-337 "FEVALAB.spad" 521317 521327 521601 521606) (-336 "FEVALAB.spad" 520808 520820 521094 521099) (-335 "FDIV.spad" 520250 520274 520798 520803) (-334 "FDIVCAT.spad" 518292 518316 520240 520245) (-333 "FDIVCAT.spad" 516332 516358 518282 518287) (-332 "FDIV2.spad" 515986 516026 516322 516327) (-331 "FCPAK1.spad" 514539 514547 515976 515981) (-330 "FCOMP.spad" 513918 513928 514529 514534) (-329 "FC.spad" 503833 503841 513908 513913) (-328 "FAXF.spad" 496768 496782 503735 503828) (-327 "FAXF.spad" 489755 489771 496724 496729) (-326 "FARRAY.spad" 487901 487911 488938 488965) (-325 "FAMR.spad" 486021 486033 487799 487896) (-324 "FAMR.spad" 484125 484139 485905 485910) (-323 "FAMONOID.spad" 483775 483785 484079 484084) (-322 "FAMONC.spad" 481997 482009 483765 483770) (-321 "FAGROUP.spad" 481603 481613 481893 481920) (-320 "FACUTIL.spad" 479799 479816 481593 481598) (-319 "FACTFUNC.spad" 478975 478985 479789 479794) (-318 "EXPUPXS.spad" 475808 475831 477107 477256) (-317 "EXPRTUBE.spad" 473036 473044 475798 475803) (-316 "EXPRODE.spad" 469908 469924 473026 473031) (-315 "EXPR.spad" 465183 465193 465897 466304) (-314 "EXPR2UPS.spad" 461275 461288 465173 465178) (-313 "EXPR2.spad" 460978 460990 461265 461270) (-312 "EXPEXPAN.spad" 457916 457941 458550 458643) (-311 "EXIT.spad" 457587 457595 457906 457911) (-310 "EXITAST.spad" 457323 457331 457577 457582) (-309 "EVALCYC.spad" 456781 456795 457313 457318) (-308 "EVALAB.spad" 456345 456355 456771 456776) (-307 "EVALAB.spad" 455907 455919 456335 456340) (-306 "EUCDOM.spad" 453449 453457 455833 455902) (-305 "EUCDOM.spad" 451053 451063 453439 453444) (-304 "ESTOOLS.spad" 442893 442901 451043 451048) (-303 "ESTOOLS2.spad" 442494 442508 442883 442888) (-302 "ESTOOLS1.spad" 442179 442190 442484 442489) (-301 "ES.spad" 434726 434734 442169 442174) (-300 "ES.spad" 427179 427189 434624 434629) (-299 "ESCONT.spad" 423952 423960 427169 427174) (-298 "ESCONT1.spad" 423701 423713 423942 423947) (-297 "ES2.spad" 423196 423212 423691 423696) (-296 "ES1.spad" 422762 422778 423186 423191) (-295 "ERROR.spad" 420083 420091 422752 422757) (-294 "EQTBL.spad" 418555 418577 418764 418791) (-293 "EQ.spad" 413429 413439 416228 416340) (-292 "EQ2.spad" 413145 413157 413419 413424) (-291 "EP.spad" 409459 409469 413135 413140) (-290 "ENV.spad" 408161 408169 409449 409454) (-289 "ENTIRER.spad" 407829 407837 408105 408156) (-288 "EMR.spad" 407030 407071 407755 407824) (-287 "ELTAGG.spad" 405270 405289 407020 407025) (-286 "ELTAGG.spad" 403474 403495 405226 405231) (-285 "ELTAB.spad" 402921 402939 403464 403469) (-284 "ELFUTS.spad" 402300 402319 402911 402916) (-283 "ELEMFUN.spad" 401989 401997 402290 402295) (-282 "ELEMFUN.spad" 401676 401686 401979 401984) (-281 "ELAGG.spad" 399619 399629 401656 401671) (-280 "ELAGG.spad" 397499 397511 399538 399543) (-279 "ELABEXPR.spad" 396430 396438 397489 397494) (-278 "EFUPXS.spad" 393206 393236 396386 396391) (-277 "EFULS.spad" 390042 390065 393162 393167) (-276 "EFSTRUC.spad" 387997 388013 390032 390037) (-275 "EF.spad" 382763 382779 387987 387992) (-274 "EAB.spad" 381039 381047 382753 382758) (-273 "E04UCFA.spad" 380575 380583 381029 381034) (-272 "E04NAFA.spad" 380152 380160 380565 380570) (-271 "E04MBFA.spad" 379732 379740 380142 380147) (-270 "E04JAFA.spad" 379268 379276 379722 379727) (-269 "E04GCFA.spad" 378804 378812 379258 379263) (-268 "E04FDFA.spad" 378340 378348 378794 378799) (-267 "E04DGFA.spad" 377876 377884 378330 378335) (-266 "E04AGNT.spad" 373718 373726 377866 377871) (-265 "DVARCAT.spad" 370403 370413 373708 373713) (-264 "DVARCAT.spad" 367086 367098 370393 370398) (-263 "DSMP.spad" 364517 364531 364822 364949) (-262 "DROPT.spad" 358462 358470 364507 364512) (-261 "DROPT1.spad" 358125 358135 358452 358457) (-260 "DROPT0.spad" 352952 352960 358115 358120) (-259 "DRAWPT.spad" 351107 351115 352942 352947) (-258 "DRAW.spad" 343707 343720 351097 351102) (-257 "DRAWHACK.spad" 343015 343025 343697 343702) (-256 "DRAWCX.spad" 340457 340465 343005 343010) (-255 "DRAWCURV.spad" 339994 340009 340447 340452) (-254 "DRAWCFUN.spad" 329166 329174 339984 339989) (-253 "DQAGG.spad" 327334 327344 329134 329161) (-252 "DPOLCAT.spad" 322675 322691 327202 327329) (-251 "DPOLCAT.spad" 318102 318120 322631 322636) (-250 "DPMO.spad" 310328 310344 310466 310767) (-249 "DPMM.spad" 302567 302585 302692 302993) (-248 "DOMCTOR.spad" 302459 302467 302557 302562) (-247 "DOMAIN.spad" 301590 301598 302449 302454) (-246 "DMP.spad" 298812 298827 299384 299511) (-245 "DLP.spad" 298160 298170 298802 298807) (-244 "DLIST.spad" 296739 296749 297343 297370) (-243 "DLAGG.spad" 295150 295160 296729 296734) (-242 "DIVRING.spad" 294692 294700 295094 295145) (-241 "DIVRING.spad" 294278 294288 294682 294687) (-240 "DISPLAY.spad" 292458 292466 294268 294273) (-239 "DIRPROD.spad" 282038 282054 282678 282809) (-238 "DIRPROD2.spad" 280846 280864 282028 282033) (-237 "DIRPCAT.spad" 279788 279804 280710 280841) (-236 "DIRPCAT.spad" 278459 278477 279383 279388) (-235 "DIOSP.spad" 277284 277292 278449 278454) (-234 "DIOPS.spad" 276268 276278 277264 277279) (-233 "DIOPS.spad" 275226 275238 276224 276229) (-232 "DIFRING.spad" 274518 274526 275206 275221) (-231 "DIFRING.spad" 273818 273828 274508 274513) (-230 "DIFEXT.spad" 272977 272987 273798 273813) (-229 "DIFEXT.spad" 272053 272065 272876 272881) (-228 "DIAGG.spad" 271683 271693 272033 272048) (-227 "DIAGG.spad" 271321 271333 271673 271678) (-226 "DHMATRIX.spad" 269625 269635 270778 270805) (-225 "DFSFUN.spad" 263033 263041 269615 269620) (-224 "DFLOAT.spad" 259754 259762 262923 263028) (-223 "DFINTTLS.spad" 257963 257979 259744 259749) (-222 "DERHAM.spad" 255873 255905 257943 257958) (-221 "DEQUEUE.spad" 255191 255201 255480 255507) (-220 "DEGRED.spad" 254806 254820 255181 255186) (-219 "DEFINTRF.spad" 252331 252341 254796 254801) (-218 "DEFINTEF.spad" 250827 250843 252321 252326) (-217 "DEFAST.spad" 250195 250203 250817 250822) (-216 "DECIMAL.spad" 248301 248309 248662 248755) (-215 "DDFACT.spad" 246100 246117 248291 248296) (-214 "DBLRESP.spad" 245698 245722 246090 246095) (-213 "DBASE.spad" 244352 244362 245688 245693) (-212 "DATAARY.spad" 243814 243827 244342 244347) (-211 "D03FAFA.spad" 243642 243650 243804 243809) (-210 "D03EEFA.spad" 243462 243470 243632 243637) (-209 "D03AGNT.spad" 242542 242550 243452 243457) (-208 "D02EJFA.spad" 242004 242012 242532 242537) (-207 "D02CJFA.spad" 241482 241490 241994 241999) (-206 "D02BHFA.spad" 240972 240980 241472 241477) (-205 "D02BBFA.spad" 240462 240470 240962 240967) (-204 "D02AGNT.spad" 235266 235274 240452 240457) (-203 "D01WGTS.spad" 233585 233593 235256 235261) (-202 "D01TRNS.spad" 233562 233570 233575 233580) (-201 "D01GBFA.spad" 233084 233092 233552 233557) (-200 "D01FCFA.spad" 232606 232614 233074 233079) (-199 "D01ASFA.spad" 232074 232082 232596 232601) (-198 "D01AQFA.spad" 231520 231528 232064 232069) (-197 "D01APFA.spad" 230944 230952 231510 231515) (-196 "D01ANFA.spad" 230438 230446 230934 230939) (-195 "D01AMFA.spad" 229948 229956 230428 230433) (-194 "D01ALFA.spad" 229488 229496 229938 229943) (-193 "D01AKFA.spad" 229014 229022 229478 229483) (-192 "D01AJFA.spad" 228537 228545 229004 229009) (-191 "D01AGNT.spad" 224596 224604 228527 228532) (-190 "CYCLOTOM.spad" 224102 224110 224586 224591) (-189 "CYCLES.spad" 220934 220942 224092 224097) (-188 "CVMP.spad" 220351 220361 220924 220929) (-187 "CTRIGMNP.spad" 218841 218857 220341 220346) (-186 "CTOR.spad" 218536 218544 218831 218836) (-185 "CTORKIND.spad" 218139 218147 218526 218531) (-184 "CTORCAT.spad" 217594 217602 218129 218134) (-183 "CTORCAT.spad" 217047 217057 217584 217589) (-182 "CTORCALL.spad" 216627 216635 217037 217042) (-181 "CSTTOOLS.spad" 215870 215883 216617 216622) (-180 "CRFP.spad" 209574 209587 215860 215865) (-179 "CRCEAST.spad" 209294 209302 209564 209569) (-178 "CRAPACK.spad" 208337 208347 209284 209289) (-177 "CPMATCH.spad" 207837 207852 208262 208267) (-176 "CPIMA.spad" 207542 207561 207827 207832) (-175 "COORDSYS.spad" 202435 202445 207532 207537) (-174 "CONTOUR.spad" 201837 201845 202425 202430) (-173 "CONTFRAC.spad" 197449 197459 201739 201832) (-172 "CONDUIT.spad" 197207 197215 197439 197444) (-171 "COMRING.spad" 196881 196889 197145 197202) (-170 "COMPPROP.spad" 196395 196403 196871 196876) (-169 "COMPLPAT.spad" 196162 196177 196385 196390) (-168 "COMPLEX.spad" 190198 190208 190442 190691) (-167 "COMPLEX2.spad" 189911 189923 190188 190193) (-166 "COMPFACT.spad" 189513 189527 189901 189906) (-165 "COMPCAT.spad" 187651 187661 189259 189508) (-164 "COMPCAT.spad" 185470 185482 187080 187085) (-163 "COMMUPC.spad" 185216 185234 185460 185465) (-162 "COMMONOP.spad" 184749 184757 185206 185211) (-161 "COMM.spad" 184558 184566 184739 184744) (-160 "COMMAAST.spad" 184321 184329 184548 184553) (-159 "COMBOPC.spad" 183226 183234 184311 184316) (-158 "COMBINAT.spad" 181971 181981 183216 183221) (-157 "COMBF.spad" 179339 179355 181961 181966) (-156 "COLOR.spad" 178176 178184 179329 179334) (-155 "COLONAST.spad" 177842 177850 178166 178171) (-154 "CMPLXRT.spad" 177551 177568 177832 177837) (-153 "CLLCTAST.spad" 177213 177221 177541 177546) (-152 "CLIP.spad" 173305 173313 177203 177208) (-151 "CLIF.spad" 171944 171960 173261 173300) (-150 "CLAGG.spad" 168429 168439 171934 171939) (-149 "CLAGG.spad" 164785 164797 168292 168297) (-148 "CINTSLPE.spad" 164110 164123 164775 164780) (-147 "CHVAR.spad" 162188 162210 164100 164105) (-146 "CHARZ.spad" 162103 162111 162168 162183) (-145 "CHARPOL.spad" 161611 161621 162093 162098) (-144 "CHARNZ.spad" 161364 161372 161591 161606) (-143 "CHAR.spad" 159232 159240 161354 161359) (-142 "CFCAT.spad" 158548 158556 159222 159227) (-141 "CDEN.spad" 157706 157720 158538 158543) (-140 "CCLASS.spad" 155855 155863 157117 157156) (-139 "CATEGORY.spad" 154945 154953 155845 155850) (-138 "CATCTOR.spad" 154836 154844 154935 154940) (-137 "CATAST.spad" 154463 154471 154826 154831) (-136 "CASEAST.spad" 154177 154185 154453 154458) (-135 "CARTEN.spad" 149280 149304 154167 154172) (-134 "CARTEN2.spad" 148666 148693 149270 149275) (-133 "CARD.spad" 145955 145963 148640 148661) (-132 "CAPSLAST.spad" 145729 145737 145945 145950) (-131 "CACHSET.spad" 145351 145359 145719 145724) (-130 "CABMON.spad" 144904 144912 145341 145346) (-129 "BYTE.spad" 144325 144333 144894 144899) (-128 "BYTEBUF.spad" 142157 142165 143494 143521) (-127 "BTREE.spad" 141226 141236 141764 141791) (-126 "BTOURN.spad" 140229 140239 140833 140860) (-125 "BTCAT.spad" 139617 139627 140197 140224) (-124 "BTCAT.spad" 139025 139037 139607 139612) (-123 "BTAGG.spad" 138147 138155 138993 139020) (-122 "BTAGG.spad" 137289 137299 138137 138142) (-121 "BSTREE.spad" 136024 136034 136896 136923) (-120 "BRILL.spad" 134219 134230 136014 136019) (-119 "BRAGG.spad" 133143 133153 134209 134214) (-118 "BRAGG.spad" 132031 132043 133099 133104) (-117 "BPADICRT.spad" 130012 130024 130267 130360) (-116 "BPADIC.spad" 129676 129688 129938 130007) (-115 "BOUNDZRO.spad" 129332 129349 129666 129671) (-114 "BOP.spad" 124796 124804 129322 129327) (-113 "BOP1.spad" 122182 122192 124752 124757) (-112 "BOOLEAN.spad" 121506 121514 122172 122177) (-111 "BMODULE.spad" 121218 121230 121474 121501) (-110 "BITS.spad" 120637 120645 120854 120881) (-109 "BINDING.spad" 120056 120064 120627 120632) (-108 "BINARY.spad" 118167 118175 118523 118616) (-107 "BGAGG.spad" 117364 117374 118147 118162) (-106 "BGAGG.spad" 116569 116581 117354 117359) (-105 "BFUNCT.spad" 116133 116141 116549 116564) (-104 "BEZOUT.spad" 115267 115294 116083 116088) (-103 "BBTREE.spad" 112086 112096 114874 114901) (-102 "BASTYPE.spad" 111758 111766 112076 112081) (-101 "BASTYPE.spad" 111428 111438 111748 111753) (-100 "BALFACT.spad" 110867 110880 111418 111423) (-99 "AUTOMOR.spad" 110314 110323 110847 110862) (-98 "ATTREG.spad" 107033 107040 110066 110309) (-97 "ATTRBUT.spad" 103056 103063 107013 107028) (-96 "ATTRAST.spad" 102773 102780 103046 103051) (-95 "ATRIG.spad" 102243 102250 102763 102768) (-94 "ATRIG.spad" 101711 101720 102233 102238) (-93 "ASTCAT.spad" 101615 101622 101701 101706) (-92 "ASTCAT.spad" 101517 101526 101605 101610) (-91 "ASTACK.spad" 100850 100859 101124 101151) (-90 "ASSOCEQ.spad" 99650 99661 100806 100811) (-89 "ASP9.spad" 98731 98744 99640 99645) (-88 "ASP8.spad" 97774 97787 98721 98726) (-87 "ASP80.spad" 97096 97109 97764 97769) (-86 "ASP7.spad" 96256 96269 97086 97091) (-85 "ASP78.spad" 95707 95720 96246 96251) (-84 "ASP77.spad" 95076 95089 95697 95702) (-83 "ASP74.spad" 94168 94181 95066 95071) (-82 "ASP73.spad" 93439 93452 94158 94163) (-81 "ASP6.spad" 92306 92319 93429 93434) (-80 "ASP55.spad" 90815 90828 92296 92301) (-79 "ASP50.spad" 88632 88645 90805 90810) (-78 "ASP4.spad" 87927 87940 88622 88627) (-77 "ASP49.spad" 86926 86939 87917 87922) (-76 "ASP42.spad" 85333 85372 86916 86921) (-75 "ASP41.spad" 83912 83951 85323 85328) (-74 "ASP35.spad" 82900 82913 83902 83907) (-73 "ASP34.spad" 82201 82214 82890 82895) (-72 "ASP33.spad" 81761 81774 82191 82196) (-71 "ASP31.spad" 80901 80914 81751 81756) (-70 "ASP30.spad" 79793 79806 80891 80896) (-69 "ASP29.spad" 79259 79272 79783 79788) (-68 "ASP28.spad" 70532 70545 79249 79254) (-67 "ASP27.spad" 69429 69442 70522 70527) (-66 "ASP24.spad" 68516 68529 69419 69424) (-65 "ASP20.spad" 67980 67993 68506 68511) (-64 "ASP1.spad" 67361 67374 67970 67975) (-63 "ASP19.spad" 62047 62060 67351 67356) (-62 "ASP12.spad" 61461 61474 62037 62042) (-61 "ASP10.spad" 60732 60745 61451 61456) (-60 "ARRAY2.spad" 60092 60101 60339 60366) (-59 "ARRAY1.spad" 58927 58936 59275 59302) (-58 "ARRAY12.spad" 57596 57607 58917 58922) (-57 "ARR2CAT.spad" 53258 53279 57564 57591) (-56 "ARR2CAT.spad" 48940 48963 53248 53253) (-55 "ARITY.spad" 48508 48515 48930 48935) (-54 "APPRULE.spad" 47752 47774 48498 48503) (-53 "APPLYORE.spad" 47367 47380 47742 47747) (-52 "ANY.spad" 45709 45716 47357 47362) (-51 "ANY1.spad" 44780 44789 45699 45704) (-50 "ANTISYM.spad" 43219 43235 44760 44775) (-49 "ANON.spad" 42916 42923 43209 43214) (-48 "AN.spad" 41217 41224 42732 42825) (-47 "AMR.spad" 39396 39407 41115 41212) (-46 "AMR.spad" 37412 37425 39133 39138) (-45 "ALIST.spad" 34824 34845 35174 35201) (-44 "ALGSC.spad" 33947 33973 34696 34749) (-43 "ALGPKG.spad" 29656 29667 33903 33908) (-42 "ALGMFACT.spad" 28845 28859 29646 29651) (-41 "ALGMANIP.spad" 26265 26280 28642 28647) (-40 "ALGFF.spad" 24580 24607 24797 24953) (-39 "ALGFACT.spad" 23701 23711 24570 24575) (-38 "ALGEBRA.spad" 23534 23543 23657 23696) (-37 "ALGEBRA.spad" 23399 23410 23524 23529) (-36 "ALAGG.spad" 22909 22930 23367 23394) (-35 "AHYP.spad" 22290 22297 22899 22904) (-34 "AGG.spad" 20599 20606 22280 22285) (-33 "AGG.spad" 18872 18881 20555 20560) (-32 "AF.spad" 17297 17312 18807 18812) (-31 "ADDAST.spad" 16975 16982 17287 17292) (-30 "ACPLOT.spad" 15546 15553 16965 16970) (-29 "ACFS.spad" 13297 13306 15448 15541) (-28 "ACFS.spad" 11134 11145 13287 13292) (-27 "ACF.spad" 7736 7743 11036 11129) (-26 "ACF.spad" 4424 4433 7726 7731) (-25 "ABELSG.spad" 3965 3972 4414 4419) (-24 "ABELSG.spad" 3504 3513 3955 3960) (-23 "ABELMON.spad" 3047 3054 3494 3499) (-22 "ABELMON.spad" 2588 2597 3037 3042) (-21 "ABELGRP.spad" 2160 2167 2578 2583) (-20 "ABELGRP.spad" 1730 1739 2150 2155) (-19 "A1AGG.spad" 870 879 1698 1725) (-18 "A1AGG.spad" 30 41 860 865)) \ No newline at end of file
+((-3 NIL 2282316 2282321 2282326 2282331) (-2 NIL 2282296 2282301 2282306 2282311) (-1 NIL 2282276 2282281 2282286 2282291) (0 NIL 2282256 2282261 2282266 2282271) (-1284 "ZMOD.spad" 2282065 2282078 2282194 2282251) (-1283 "ZLINDEP.spad" 2281109 2281120 2282055 2282060) (-1282 "ZDSOLVE.spad" 2270958 2270980 2281099 2281104) (-1281 "YSTREAM.spad" 2270451 2270462 2270948 2270953) (-1280 "XRPOLY.spad" 2269671 2269691 2270307 2270376) (-1279 "XPR.spad" 2267462 2267475 2269389 2269488) (-1278 "XPOLY.spad" 2267017 2267028 2267318 2267387) (-1277 "XPOLYC.spad" 2266334 2266350 2266943 2267012) (-1276 "XPBWPOLY.spad" 2264771 2264791 2266114 2266183) (-1275 "XF.spad" 2263232 2263247 2264673 2264766) (-1274 "XF.spad" 2261673 2261690 2263116 2263121) (-1273 "XFALG.spad" 2258697 2258713 2261599 2261668) (-1272 "XEXPPKG.spad" 2257948 2257974 2258687 2258692) (-1271 "XDPOLY.spad" 2257562 2257578 2257804 2257873) (-1270 "XALG.spad" 2257222 2257233 2257518 2257557) (-1269 "WUTSET.spad" 2253061 2253078 2256868 2256895) (-1268 "WP.spad" 2252260 2252304 2252919 2252986) (-1267 "WHILEAST.spad" 2252058 2252067 2252250 2252255) (-1266 "WHEREAST.spad" 2251729 2251738 2252048 2252053) (-1265 "WFFINTBS.spad" 2249292 2249314 2251719 2251724) (-1264 "WEIER.spad" 2247506 2247517 2249282 2249287) (-1263 "VSPACE.spad" 2247179 2247190 2247474 2247501) (-1262 "VSPACE.spad" 2246872 2246885 2247169 2247174) (-1261 "VOID.spad" 2246549 2246558 2246862 2246867) (-1260 "VIEW.spad" 2244171 2244180 2246539 2246544) (-1259 "VIEWDEF.spad" 2239368 2239377 2244161 2244166) (-1258 "VIEW3D.spad" 2223203 2223212 2239358 2239363) (-1257 "VIEW2D.spad" 2210940 2210949 2223193 2223198) (-1256 "VECTOR.spad" 2209615 2209626 2209866 2209893) (-1255 "VECTOR2.spad" 2208242 2208255 2209605 2209610) (-1254 "VECTCAT.spad" 2206142 2206153 2208210 2208237) (-1253 "VECTCAT.spad" 2203850 2203863 2205920 2205925) (-1252 "VARIABLE.spad" 2203630 2203645 2203840 2203845) (-1251 "UTYPE.spad" 2203274 2203283 2203620 2203625) (-1250 "UTSODETL.spad" 2202567 2202591 2203230 2203235) (-1249 "UTSODE.spad" 2200755 2200775 2202557 2202562) (-1248 "UTS.spad" 2195544 2195572 2199222 2199319) (-1247 "UTSCAT.spad" 2192995 2193011 2195442 2195539) (-1246 "UTSCAT.spad" 2190090 2190108 2192539 2192544) (-1245 "UTS2.spad" 2189683 2189718 2190080 2190085) (-1244 "URAGG.spad" 2184315 2184326 2189673 2189678) (-1243 "URAGG.spad" 2178911 2178924 2184271 2184276) (-1242 "UPXSSING.spad" 2176554 2176580 2177992 2178125) (-1241 "UPXS.spad" 2173702 2173730 2174686 2174835) (-1240 "UPXSCONS.spad" 2171459 2171479 2171834 2171983) (-1239 "UPXSCCA.spad" 2170024 2170044 2171305 2171454) (-1238 "UPXSCCA.spad" 2168731 2168753 2170014 2170019) (-1237 "UPXSCAT.spad" 2167312 2167328 2168577 2168726) (-1236 "UPXS2.spad" 2166853 2166906 2167302 2167307) (-1235 "UPSQFREE.spad" 2165265 2165279 2166843 2166848) (-1234 "UPSCAT.spad" 2162858 2162882 2165163 2165260) (-1233 "UPSCAT.spad" 2160157 2160183 2162464 2162469) (-1232 "UPOLYC.spad" 2155135 2155146 2159999 2160152) (-1231 "UPOLYC.spad" 2150005 2150018 2154871 2154876) (-1230 "UPOLYC2.spad" 2149474 2149493 2149995 2150000) (-1229 "UP.spad" 2146631 2146646 2147024 2147177) (-1228 "UPMP.spad" 2145521 2145534 2146621 2146626) (-1227 "UPDIVP.spad" 2145084 2145098 2145511 2145516) (-1226 "UPDECOMP.spad" 2143321 2143335 2145074 2145079) (-1225 "UPCDEN.spad" 2142528 2142544 2143311 2143316) (-1224 "UP2.spad" 2141890 2141911 2142518 2142523) (-1223 "UNISEG.spad" 2141243 2141254 2141809 2141814) (-1222 "UNISEG2.spad" 2140736 2140749 2141199 2141204) (-1221 "UNIFACT.spad" 2139837 2139849 2140726 2140731) (-1220 "ULS.spad" 2130389 2130417 2131482 2131911) (-1219 "ULSCONS.spad" 2122783 2122803 2123155 2123304) (-1218 "ULSCCAT.spad" 2120512 2120532 2122629 2122778) (-1217 "ULSCCAT.spad" 2118349 2118371 2120468 2120473) (-1216 "ULSCAT.spad" 2116565 2116581 2118195 2118344) (-1215 "ULS2.spad" 2116077 2116130 2116555 2116560) (-1214 "UINT8.spad" 2115954 2115963 2116067 2116072) (-1213 "UINT32.spad" 2115830 2115839 2115944 2115949) (-1212 "UINT16.spad" 2115706 2115715 2115820 2115825) (-1211 "UFD.spad" 2114771 2114780 2115632 2115701) (-1210 "UFD.spad" 2113898 2113909 2114761 2114766) (-1209 "UDVO.spad" 2112745 2112754 2113888 2113893) (-1208 "UDPO.spad" 2110172 2110183 2112701 2112706) (-1207 "TYPE.spad" 2110104 2110113 2110162 2110167) (-1206 "TYPEAST.spad" 2110023 2110032 2110094 2110099) (-1205 "TWOFACT.spad" 2108673 2108688 2110013 2110018) (-1204 "TUPLE.spad" 2108157 2108168 2108572 2108577) (-1203 "TUBETOOL.spad" 2104994 2105003 2108147 2108152) (-1202 "TUBE.spad" 2103635 2103652 2104984 2104989) (-1201 "TS.spad" 2102224 2102240 2103200 2103297) (-1200 "TSETCAT.spad" 2089351 2089368 2102192 2102219) (-1199 "TSETCAT.spad" 2076464 2076483 2089307 2089312) (-1198 "TRMANIP.spad" 2070830 2070847 2076170 2076175) (-1197 "TRIMAT.spad" 2069789 2069814 2070820 2070825) (-1196 "TRIGMNIP.spad" 2068306 2068323 2069779 2069784) (-1195 "TRIGCAT.spad" 2067818 2067827 2068296 2068301) (-1194 "TRIGCAT.spad" 2067328 2067339 2067808 2067813) (-1193 "TREE.spad" 2065899 2065910 2066935 2066962) (-1192 "TRANFUN.spad" 2065730 2065739 2065889 2065894) (-1191 "TRANFUN.spad" 2065559 2065570 2065720 2065725) (-1190 "TOPSP.spad" 2065233 2065242 2065549 2065554) (-1189 "TOOLSIGN.spad" 2064896 2064907 2065223 2065228) (-1188 "TEXTFILE.spad" 2063453 2063462 2064886 2064891) (-1187 "TEX.spad" 2060585 2060594 2063443 2063448) (-1186 "TEX1.spad" 2060141 2060152 2060575 2060580) (-1185 "TEMUTL.spad" 2059696 2059705 2060131 2060136) (-1184 "TBCMPPK.spad" 2057789 2057812 2059686 2059691) (-1183 "TBAGG.spad" 2056825 2056848 2057769 2057784) (-1182 "TBAGG.spad" 2055869 2055894 2056815 2056820) (-1181 "TANEXP.spad" 2055245 2055256 2055859 2055864) (-1180 "TABLE.spad" 2053656 2053679 2053926 2053953) (-1179 "TABLEAU.spad" 2053137 2053148 2053646 2053651) (-1178 "TABLBUMP.spad" 2049920 2049931 2053127 2053132) (-1177 "SYSTEM.spad" 2049194 2049203 2049910 2049915) (-1176 "SYSSOLP.spad" 2046667 2046678 2049184 2049189) (-1175 "SYSNNI.spad" 2045843 2045854 2046657 2046662) (-1174 "SYSINT.spad" 2045316 2045327 2045833 2045838) (-1173 "SYNTAX.spad" 2041586 2041595 2045306 2045311) (-1172 "SYMTAB.spad" 2039642 2039651 2041576 2041581) (-1171 "SYMS.spad" 2035627 2035636 2039632 2039637) (-1170 "SYMPOLY.spad" 2034634 2034645 2034716 2034843) (-1169 "SYMFUNC.spad" 2034109 2034120 2034624 2034629) (-1168 "SYMBOL.spad" 2031536 2031545 2034099 2034104) (-1167 "SWITCH.spad" 2028293 2028302 2031526 2031531) (-1166 "SUTS.spad" 2025192 2025220 2026760 2026857) (-1165 "SUPXS.spad" 2022327 2022355 2023324 2023473) (-1164 "SUP.spad" 2019096 2019107 2019877 2020030) (-1163 "SUPFRACF.spad" 2018201 2018219 2019086 2019091) (-1162 "SUP2.spad" 2017591 2017604 2018191 2018196) (-1161 "SUMRF.spad" 2016557 2016568 2017581 2017586) (-1160 "SUMFS.spad" 2016190 2016207 2016547 2016552) (-1159 "SULS.spad" 2006729 2006757 2007835 2008264) (-1158 "SUCHTAST.spad" 2006498 2006507 2006719 2006724) (-1157 "SUCH.spad" 2006178 2006193 2006488 2006493) (-1156 "SUBSPACE.spad" 1998185 1998200 2006168 2006173) (-1155 "SUBRESP.spad" 1997345 1997359 1998141 1998146) (-1154 "STTF.spad" 1993444 1993460 1997335 1997340) (-1153 "STTFNC.spad" 1989912 1989928 1993434 1993439) (-1152 "STTAYLOR.spad" 1982310 1982321 1989793 1989798) (-1151 "STRTBL.spad" 1980815 1980832 1980964 1980991) (-1150 "STRING.spad" 1980224 1980233 1980238 1980265) (-1149 "STRICAT.spad" 1980012 1980021 1980192 1980219) (-1148 "STREAM.spad" 1976870 1976881 1979537 1979552) (-1147 "STREAM3.spad" 1976415 1976430 1976860 1976865) (-1146 "STREAM2.spad" 1975483 1975496 1976405 1976410) (-1145 "STREAM1.spad" 1975187 1975198 1975473 1975478) (-1144 "STINPROD.spad" 1974093 1974109 1975177 1975182) (-1143 "STEP.spad" 1973294 1973303 1974083 1974088) (-1142 "STBL.spad" 1971820 1971848 1971987 1972002) (-1141 "STAGG.spad" 1970895 1970906 1971810 1971815) (-1140 "STAGG.spad" 1969968 1969981 1970885 1970890) (-1139 "STACK.spad" 1969319 1969330 1969575 1969602) (-1138 "SREGSET.spad" 1967023 1967040 1968965 1968992) (-1137 "SRDCMPK.spad" 1965568 1965588 1967013 1967018) (-1136 "SRAGG.spad" 1960665 1960674 1965536 1965563) (-1135 "SRAGG.spad" 1955782 1955793 1960655 1960660) (-1134 "SQMATRIX.spad" 1953398 1953416 1954314 1954401) (-1133 "SPLTREE.spad" 1947950 1947963 1952834 1952861) (-1132 "SPLNODE.spad" 1944538 1944551 1947940 1947945) (-1131 "SPFCAT.spad" 1943315 1943324 1944528 1944533) (-1130 "SPECOUT.spad" 1941865 1941874 1943305 1943310) (-1129 "SPADXPT.spad" 1934004 1934013 1941855 1941860) (-1128 "spad-parser.spad" 1933469 1933478 1933994 1933999) (-1127 "SPADAST.spad" 1933170 1933179 1933459 1933464) (-1126 "SPACEC.spad" 1917183 1917194 1933160 1933165) (-1125 "SPACE3.spad" 1916959 1916970 1917173 1917178) (-1124 "SORTPAK.spad" 1916504 1916517 1916915 1916920) (-1123 "SOLVETRA.spad" 1914261 1914272 1916494 1916499) (-1122 "SOLVESER.spad" 1912781 1912792 1914251 1914256) (-1121 "SOLVERAD.spad" 1908791 1908802 1912771 1912776) (-1120 "SOLVEFOR.spad" 1907211 1907229 1908781 1908786) (-1119 "SNTSCAT.spad" 1906811 1906828 1907179 1907206) (-1118 "SMTS.spad" 1905071 1905097 1906376 1906473) (-1117 "SMP.spad" 1902510 1902530 1902900 1903027) (-1116 "SMITH.spad" 1901353 1901378 1902500 1902505) (-1115 "SMATCAT.spad" 1899463 1899493 1901297 1901348) (-1114 "SMATCAT.spad" 1897505 1897537 1899341 1899346) (-1113 "SKAGG.spad" 1896466 1896477 1897473 1897500) (-1112 "SINT.spad" 1895292 1895301 1896332 1896461) (-1111 "SIMPAN.spad" 1895020 1895029 1895282 1895287) (-1110 "SIG.spad" 1894348 1894357 1895010 1895015) (-1109 "SIGNRF.spad" 1893456 1893467 1894338 1894343) (-1108 "SIGNEF.spad" 1892725 1892742 1893446 1893451) (-1107 "SIGAST.spad" 1892106 1892115 1892715 1892720) (-1106 "SHP.spad" 1890024 1890039 1892062 1892067) (-1105 "SHDP.spad" 1879735 1879762 1880244 1880375) (-1104 "SGROUP.spad" 1879343 1879352 1879725 1879730) (-1103 "SGROUP.spad" 1878949 1878960 1879333 1879338) (-1102 "SGCF.spad" 1871830 1871839 1878939 1878944) (-1101 "SFRTCAT.spad" 1870758 1870775 1871798 1871825) (-1100 "SFRGCD.spad" 1869821 1869841 1870748 1870753) (-1099 "SFQCMPK.spad" 1864458 1864478 1869811 1869816) (-1098 "SFORT.spad" 1863893 1863907 1864448 1864453) (-1097 "SEXOF.spad" 1863736 1863776 1863883 1863888) (-1096 "SEX.spad" 1863628 1863637 1863726 1863731) (-1095 "SEXCAT.spad" 1861179 1861219 1863618 1863623) (-1094 "SET.spad" 1859479 1859490 1860600 1860639) (-1093 "SETMN.spad" 1857913 1857930 1859469 1859474) (-1092 "SETCAT.spad" 1857398 1857407 1857903 1857908) (-1091 "SETCAT.spad" 1856881 1856892 1857388 1857393) (-1090 "SETAGG.spad" 1853402 1853413 1856861 1856876) (-1089 "SETAGG.spad" 1849931 1849944 1853392 1853397) (-1088 "SEQAST.spad" 1849634 1849643 1849921 1849926) (-1087 "SEGXCAT.spad" 1848756 1848769 1849624 1849629) (-1086 "SEG.spad" 1848569 1848580 1848675 1848680) (-1085 "SEGCAT.spad" 1847476 1847487 1848559 1848564) (-1084 "SEGBIND.spad" 1846548 1846559 1847431 1847436) (-1083 "SEGBIND2.spad" 1846244 1846257 1846538 1846543) (-1082 "SEGAST.spad" 1845958 1845967 1846234 1846239) (-1081 "SEG2.spad" 1845383 1845396 1845914 1845919) (-1080 "SDVAR.spad" 1844659 1844670 1845373 1845378) (-1079 "SDPOL.spad" 1842049 1842060 1842340 1842467) (-1078 "SCPKG.spad" 1840128 1840139 1842039 1842044) (-1077 "SCOPE.spad" 1839273 1839282 1840118 1840123) (-1076 "SCACHE.spad" 1837955 1837966 1839263 1839268) (-1075 "SASTCAT.spad" 1837864 1837873 1837945 1837950) (-1074 "SAOS.spad" 1837736 1837745 1837854 1837859) (-1073 "SAERFFC.spad" 1837449 1837469 1837726 1837731) (-1072 "SAE.spad" 1835624 1835640 1836235 1836370) (-1071 "SAEFACT.spad" 1835325 1835345 1835614 1835619) (-1070 "RURPK.spad" 1832966 1832982 1835315 1835320) (-1069 "RULESET.spad" 1832407 1832431 1832956 1832961) (-1068 "RULE.spad" 1830611 1830635 1832397 1832402) (-1067 "RULECOLD.spad" 1830463 1830476 1830601 1830606) (-1066 "RSTRCAST.spad" 1830180 1830189 1830453 1830458) (-1065 "RSETGCD.spad" 1826558 1826578 1830170 1830175) (-1064 "RSETCAT.spad" 1816342 1816359 1826526 1826553) (-1063 "RSETCAT.spad" 1806146 1806165 1816332 1816337) (-1062 "RSDCMPK.spad" 1804598 1804618 1806136 1806141) (-1061 "RRCC.spad" 1802982 1803012 1804588 1804593) (-1060 "RRCC.spad" 1801364 1801396 1802972 1802977) (-1059 "RPTAST.spad" 1801066 1801075 1801354 1801359) (-1058 "RPOLCAT.spad" 1780426 1780441 1800934 1801061) (-1057 "RPOLCAT.spad" 1759500 1759517 1780010 1780015) (-1056 "ROUTINE.spad" 1755363 1755372 1758147 1758174) (-1055 "ROMAN.spad" 1754691 1754700 1755229 1755358) (-1054 "ROIRC.spad" 1753771 1753803 1754681 1754686) (-1053 "RNS.spad" 1752674 1752683 1753673 1753766) (-1052 "RNS.spad" 1751663 1751674 1752664 1752669) (-1051 "RNG.spad" 1751398 1751407 1751653 1751658) (-1050 "RMODULE.spad" 1751036 1751047 1751388 1751393) (-1049 "RMCAT2.spad" 1750444 1750501 1751026 1751031) (-1048 "RMATRIX.spad" 1749268 1749287 1749611 1749650) (-1047 "RMATCAT.spad" 1744801 1744832 1749224 1749263) (-1046 "RMATCAT.spad" 1740224 1740257 1744649 1744654) (-1045 "RINTERP.spad" 1740112 1740132 1740214 1740219) (-1044 "RING.spad" 1739582 1739591 1740092 1740107) (-1043 "RING.spad" 1739060 1739071 1739572 1739577) (-1042 "RIDIST.spad" 1738444 1738453 1739050 1739055) (-1041 "RGCHAIN.spad" 1737023 1737039 1737929 1737956) (-1040 "RGBCSPC.spad" 1736804 1736816 1737013 1737018) (-1039 "RGBCMDL.spad" 1736334 1736346 1736794 1736799) (-1038 "RF.spad" 1733948 1733959 1736324 1736329) (-1037 "RFFACTOR.spad" 1733410 1733421 1733938 1733943) (-1036 "RFFACT.spad" 1733145 1733157 1733400 1733405) (-1035 "RFDIST.spad" 1732133 1732142 1733135 1733140) (-1034 "RETSOL.spad" 1731550 1731563 1732123 1732128) (-1033 "RETRACT.spad" 1730978 1730989 1731540 1731545) (-1032 "RETRACT.spad" 1730404 1730417 1730968 1730973) (-1031 "RETAST.spad" 1730216 1730225 1730394 1730399) (-1030 "RESULT.spad" 1728276 1728285 1728863 1728890) (-1029 "RESRING.spad" 1727623 1727670 1728214 1728271) (-1028 "RESLATC.spad" 1726947 1726958 1727613 1727618) (-1027 "REPSQ.spad" 1726676 1726687 1726937 1726942) (-1026 "REP.spad" 1724228 1724237 1726666 1726671) (-1025 "REPDB.spad" 1723933 1723944 1724218 1724223) (-1024 "REP2.spad" 1713505 1713516 1723775 1723780) (-1023 "REP1.spad" 1707495 1707506 1713455 1713460) (-1022 "REGSET.spad" 1705292 1705309 1707141 1707168) (-1021 "REF.spad" 1704621 1704632 1705247 1705252) (-1020 "REDORDER.spad" 1703797 1703814 1704611 1704616) (-1019 "RECLOS.spad" 1702580 1702600 1703284 1703377) (-1018 "REALSOLV.spad" 1701712 1701721 1702570 1702575) (-1017 "REAL.spad" 1701584 1701593 1701702 1701707) (-1016 "REAL0Q.spad" 1698866 1698881 1701574 1701579) (-1015 "REAL0.spad" 1695694 1695709 1698856 1698861) (-1014 "RDUCEAST.spad" 1695415 1695424 1695684 1695689) (-1013 "RDIV.spad" 1695066 1695091 1695405 1695410) (-1012 "RDIST.spad" 1694629 1694640 1695056 1695061) (-1011 "RDETRS.spad" 1693425 1693443 1694619 1694624) (-1010 "RDETR.spad" 1691532 1691550 1693415 1693420) (-1009 "RDEEFS.spad" 1690605 1690622 1691522 1691527) (-1008 "RDEEF.spad" 1689601 1689618 1690595 1690600) (-1007 "RCFIELD.spad" 1686787 1686796 1689503 1689596) (-1006 "RCFIELD.spad" 1684059 1684070 1686777 1686782) (-1005 "RCAGG.spad" 1681971 1681982 1684049 1684054) (-1004 "RCAGG.spad" 1679810 1679823 1681890 1681895) (-1003 "RATRET.spad" 1679170 1679181 1679800 1679805) (-1002 "RATFACT.spad" 1678862 1678874 1679160 1679165) (-1001 "RANDSRC.spad" 1678181 1678190 1678852 1678857) (-1000 "RADUTIL.spad" 1677935 1677944 1678171 1678176) (-999 "RADIX.spad" 1674837 1674850 1676402 1676495) (-998 "RADFF.spad" 1673251 1673287 1673369 1673525) (-997 "RADCAT.spad" 1672845 1672853 1673241 1673246) (-996 "RADCAT.spad" 1672437 1672447 1672835 1672840) (-995 "QUEUE.spad" 1671780 1671790 1672044 1672071) (-994 "QUAT.spad" 1670362 1670372 1670704 1670769) (-993 "QUATCT2.spad" 1669981 1669999 1670352 1670357) (-992 "QUATCAT.spad" 1668146 1668156 1669911 1669976) (-991 "QUATCAT.spad" 1666062 1666074 1667829 1667834) (-990 "QUAGG.spad" 1664888 1664898 1666030 1666057) (-989 "QQUTAST.spad" 1664657 1664665 1664878 1664883) (-988 "QFORM.spad" 1664120 1664134 1664647 1664652) (-987 "QFCAT.spad" 1662823 1662833 1664022 1664115) (-986 "QFCAT.spad" 1661117 1661129 1662318 1662323) (-985 "QFCAT2.spad" 1660808 1660824 1661107 1661112) (-984 "QEQUAT.spad" 1660365 1660373 1660798 1660803) (-983 "QCMPACK.spad" 1655112 1655131 1660355 1660360) (-982 "QALGSET.spad" 1651187 1651219 1655026 1655031) (-981 "QALGSET2.spad" 1649183 1649201 1651177 1651182) (-980 "PWFFINTB.spad" 1646493 1646514 1649173 1649178) (-979 "PUSHVAR.spad" 1645822 1645841 1646483 1646488) (-978 "PTRANFN.spad" 1641948 1641958 1645812 1645817) (-977 "PTPACK.spad" 1639036 1639046 1641938 1641943) (-976 "PTFUNC2.spad" 1638857 1638871 1639026 1639031) (-975 "PTCAT.spad" 1638106 1638116 1638825 1638852) (-974 "PSQFR.spad" 1637413 1637437 1638096 1638101) (-973 "PSEUDLIN.spad" 1636271 1636281 1637403 1637408) (-972 "PSETPK.spad" 1621704 1621720 1636149 1636154) (-971 "PSETCAT.spad" 1615624 1615647 1621684 1621699) (-970 "PSETCAT.spad" 1609518 1609543 1615580 1615585) (-969 "PSCURVE.spad" 1608501 1608509 1609508 1609513) (-968 "PSCAT.spad" 1607268 1607297 1608399 1608496) (-967 "PSCAT.spad" 1606125 1606156 1607258 1607263) (-966 "PRTITION.spad" 1605070 1605078 1606115 1606120) (-965 "PRTDAST.spad" 1604789 1604797 1605060 1605065) (-964 "PRS.spad" 1594351 1594368 1604745 1604750) (-963 "PRQAGG.spad" 1593782 1593792 1594319 1594346) (-962 "PROPLOG.spad" 1593185 1593193 1593772 1593777) (-961 "PROPFRML.spad" 1591103 1591114 1593175 1593180) (-960 "PROPERTY.spad" 1590597 1590605 1591093 1591098) (-959 "PRODUCT.spad" 1588277 1588289 1588563 1588618) (-958 "PR.spad" 1586663 1586675 1587368 1587495) (-957 "PRINT.spad" 1586415 1586423 1586653 1586658) (-956 "PRIMES.spad" 1584666 1584676 1586405 1586410) (-955 "PRIMELT.spad" 1582647 1582661 1584656 1584661) (-954 "PRIMCAT.spad" 1582270 1582278 1582637 1582642) (-953 "PRIMARR.spad" 1581275 1581285 1581453 1581480) (-952 "PRIMARR2.spad" 1579998 1580010 1581265 1581270) (-951 "PREASSOC.spad" 1579370 1579382 1579988 1579993) (-950 "PPCURVE.spad" 1578507 1578515 1579360 1579365) (-949 "PORTNUM.spad" 1578282 1578290 1578497 1578502) (-948 "POLYROOT.spad" 1577111 1577133 1578238 1578243) (-947 "POLY.spad" 1574408 1574418 1574925 1575052) (-946 "POLYLIFT.spad" 1573669 1573692 1574398 1574403) (-945 "POLYCATQ.spad" 1571771 1571793 1573659 1573664) (-944 "POLYCAT.spad" 1565177 1565198 1571639 1571766) (-943 "POLYCAT.spad" 1557885 1557908 1564349 1564354) (-942 "POLY2UP.spad" 1557333 1557347 1557875 1557880) (-941 "POLY2.spad" 1556928 1556940 1557323 1557328) (-940 "POLUTIL.spad" 1555869 1555898 1556884 1556889) (-939 "POLTOPOL.spad" 1554617 1554632 1555859 1555864) (-938 "POINT.spad" 1553456 1553466 1553543 1553570) (-937 "PNTHEORY.spad" 1550122 1550130 1553446 1553451) (-936 "PMTOOLS.spad" 1548879 1548893 1550112 1550117) (-935 "PMSYM.spad" 1548424 1548434 1548869 1548874) (-934 "PMQFCAT.spad" 1548011 1548025 1548414 1548419) (-933 "PMPRED.spad" 1547480 1547494 1548001 1548006) (-932 "PMPREDFS.spad" 1546924 1546946 1547470 1547475) (-931 "PMPLCAT.spad" 1545994 1546012 1546856 1546861) (-930 "PMLSAGG.spad" 1545575 1545589 1545984 1545989) (-929 "PMKERNEL.spad" 1545142 1545154 1545565 1545570) (-928 "PMINS.spad" 1544718 1544728 1545132 1545137) (-927 "PMFS.spad" 1544291 1544309 1544708 1544713) (-926 "PMDOWN.spad" 1543577 1543591 1544281 1544286) (-925 "PMASS.spad" 1542589 1542597 1543567 1543572) (-924 "PMASSFS.spad" 1541558 1541574 1542579 1542584) (-923 "PLOTTOOL.spad" 1541338 1541346 1541548 1541553) (-922 "PLOT.spad" 1536169 1536177 1541328 1541333) (-921 "PLOT3D.spad" 1532589 1532597 1536159 1536164) (-920 "PLOT1.spad" 1531730 1531740 1532579 1532584) (-919 "PLEQN.spad" 1518946 1518973 1531720 1531725) (-918 "PINTERP.spad" 1518562 1518581 1518936 1518941) (-917 "PINTERPA.spad" 1518344 1518360 1518552 1518557) (-916 "PI.spad" 1517951 1517959 1518318 1518339) (-915 "PID.spad" 1516907 1516915 1517877 1517946) (-914 "PICOERCE.spad" 1516564 1516574 1516897 1516902) (-913 "PGROEB.spad" 1515161 1515175 1516554 1516559) (-912 "PGE.spad" 1506414 1506422 1515151 1515156) (-911 "PGCD.spad" 1505296 1505313 1506404 1506409) (-910 "PFRPAC.spad" 1504439 1504449 1505286 1505291) (-909 "PFR.spad" 1501096 1501106 1504341 1504434) (-908 "PFOTOOLS.spad" 1500354 1500370 1501086 1501091) (-907 "PFOQ.spad" 1499724 1499742 1500344 1500349) (-906 "PFO.spad" 1499143 1499170 1499714 1499719) (-905 "PF.spad" 1498717 1498729 1498948 1499041) (-904 "PFECAT.spad" 1496383 1496391 1498643 1498712) (-903 "PFECAT.spad" 1494077 1494087 1496339 1496344) (-902 "PFBRU.spad" 1491947 1491959 1494067 1494072) (-901 "PFBR.spad" 1489485 1489508 1491937 1491942) (-900 "PERM.spad" 1485166 1485176 1489315 1489330) (-899 "PERMGRP.spad" 1479902 1479912 1485156 1485161) (-898 "PERMCAT.spad" 1478454 1478464 1479882 1479897) (-897 "PERMAN.spad" 1476986 1477000 1478444 1478449) (-896 "PENDTREE.spad" 1476325 1476335 1476615 1476620) (-895 "PDRING.spad" 1474816 1474826 1476305 1476320) (-894 "PDRING.spad" 1473315 1473327 1474806 1474811) (-893 "PDEPROB.spad" 1472330 1472338 1473305 1473310) (-892 "PDEPACK.spad" 1466332 1466340 1472320 1472325) (-891 "PDECOMP.spad" 1465794 1465811 1466322 1466327) (-890 "PDECAT.spad" 1464148 1464156 1465784 1465789) (-889 "PCOMP.spad" 1463999 1464012 1464138 1464143) (-888 "PBWLB.spad" 1462581 1462598 1463989 1463994) (-887 "PATTERN.spad" 1457012 1457022 1462571 1462576) (-886 "PATTERN2.spad" 1456748 1456760 1457002 1457007) (-885 "PATTERN1.spad" 1455050 1455066 1456738 1456743) (-884 "PATRES.spad" 1452597 1452609 1455040 1455045) (-883 "PATRES2.spad" 1452259 1452273 1452587 1452592) (-882 "PATMATCH.spad" 1450416 1450447 1451967 1451972) (-881 "PATMAB.spad" 1449841 1449851 1450406 1450411) (-880 "PATLRES.spad" 1448925 1448939 1449831 1449836) (-879 "PATAB.spad" 1448689 1448699 1448915 1448920) (-878 "PARTPERM.spad" 1446051 1446059 1448679 1448684) (-877 "PARSURF.spad" 1445479 1445507 1446041 1446046) (-876 "PARSU2.spad" 1445274 1445290 1445469 1445474) (-875 "script-parser.spad" 1444794 1444802 1445264 1445269) (-874 "PARSCURV.spad" 1444222 1444250 1444784 1444789) (-873 "PARSC2.spad" 1444011 1444027 1444212 1444217) (-872 "PARPCURV.spad" 1443469 1443497 1444001 1444006) (-871 "PARPC2.spad" 1443258 1443274 1443459 1443464) (-870 "PAN2EXPR.spad" 1442670 1442678 1443248 1443253) (-869 "PALETTE.spad" 1441640 1441648 1442660 1442665) (-868 "PAIR.spad" 1440623 1440636 1441228 1441233) (-867 "PADICRC.spad" 1437953 1437971 1439128 1439221) (-866 "PADICRAT.spad" 1435968 1435980 1436189 1436282) (-865 "PADIC.spad" 1435663 1435675 1435894 1435963) (-864 "PADICCT.spad" 1434204 1434216 1435589 1435658) (-863 "PADEPAC.spad" 1432883 1432902 1434194 1434199) (-862 "PADE.spad" 1431623 1431639 1432873 1432878) (-861 "OWP.spad" 1430863 1430893 1431481 1431548) (-860 "OVERSET.spad" 1430436 1430444 1430853 1430858) (-859 "OVAR.spad" 1430217 1430240 1430426 1430431) (-858 "OUT.spad" 1429301 1429309 1430207 1430212) (-857 "OUTFORM.spad" 1418597 1418605 1429291 1429296) (-856 "OUTBFILE.spad" 1418015 1418023 1418587 1418592) (-855 "OUTBCON.spad" 1417013 1417021 1418005 1418010) (-854 "OUTBCON.spad" 1416009 1416019 1417003 1417008) (-853 "OSI.spad" 1415484 1415492 1415999 1416004) (-852 "OSGROUP.spad" 1415402 1415410 1415474 1415479) (-851 "ORTHPOL.spad" 1413863 1413873 1415319 1415324) (-850 "OREUP.spad" 1413316 1413344 1413543 1413582) (-849 "ORESUP.spad" 1412615 1412639 1412996 1413035) (-848 "OREPCTO.spad" 1410434 1410446 1412535 1412540) (-847 "OREPCAT.spad" 1404491 1404501 1410390 1410429) (-846 "OREPCAT.spad" 1398438 1398450 1404339 1404344) (-845 "ORDSET.spad" 1397604 1397612 1398428 1398433) (-844 "ORDSET.spad" 1396768 1396778 1397594 1397599) (-843 "ORDRING.spad" 1396158 1396166 1396748 1396763) (-842 "ORDRING.spad" 1395556 1395566 1396148 1396153) (-841 "ORDMON.spad" 1395411 1395419 1395546 1395551) (-840 "ORDFUNS.spad" 1394537 1394553 1395401 1395406) (-839 "ORDFIN.spad" 1394357 1394365 1394527 1394532) (-838 "ORDCOMP.spad" 1392822 1392832 1393904 1393933) (-837 "ORDCOMP2.spad" 1392107 1392119 1392812 1392817) (-836 "OPTPROB.spad" 1390745 1390753 1392097 1392102) (-835 "OPTPACK.spad" 1383130 1383138 1390735 1390740) (-834 "OPTCAT.spad" 1380805 1380813 1383120 1383125) (-833 "OPSIG.spad" 1380457 1380465 1380795 1380800) (-832 "OPQUERY.spad" 1380006 1380014 1380447 1380452) (-831 "OP.spad" 1379748 1379758 1379828 1379895) (-830 "OPERCAT.spad" 1379336 1379346 1379738 1379743) (-829 "OPERCAT.spad" 1378922 1378934 1379326 1379331) (-828 "ONECOMP.spad" 1377667 1377677 1378469 1378498) (-827 "ONECOMP2.spad" 1377085 1377097 1377657 1377662) (-826 "OMSERVER.spad" 1376087 1376095 1377075 1377080) (-825 "OMSAGG.spad" 1375875 1375885 1376043 1376082) (-824 "OMPKG.spad" 1374487 1374495 1375865 1375870) (-823 "OM.spad" 1373452 1373460 1374477 1374482) (-822 "OMLO.spad" 1372877 1372889 1373338 1373377) (-821 "OMEXPR.spad" 1372711 1372721 1372867 1372872) (-820 "OMERR.spad" 1372254 1372262 1372701 1372706) (-819 "OMERRK.spad" 1371288 1371296 1372244 1372249) (-818 "OMENC.spad" 1370632 1370640 1371278 1371283) (-817 "OMDEV.spad" 1364921 1364929 1370622 1370627) (-816 "OMCONN.spad" 1364330 1364338 1364911 1364916) (-815 "OINTDOM.spad" 1364093 1364101 1364256 1364325) (-814 "OFMONOID.spad" 1360280 1360290 1364083 1364088) (-813 "ODVAR.spad" 1359541 1359551 1360270 1360275) (-812 "ODR.spad" 1359185 1359211 1359353 1359502) (-811 "ODPOL.spad" 1356531 1356541 1356871 1356998) (-810 "ODP.spad" 1346378 1346398 1346751 1346882) (-809 "ODETOOLS.spad" 1344961 1344980 1346368 1346373) (-808 "ODESYS.spad" 1342611 1342628 1344951 1344956) (-807 "ODERTRIC.spad" 1338552 1338569 1342568 1342573) (-806 "ODERED.spad" 1337939 1337963 1338542 1338547) (-805 "ODERAT.spad" 1335490 1335507 1337929 1337934) (-804 "ODEPRRIC.spad" 1332381 1332403 1335480 1335485) (-803 "ODEPROB.spad" 1331638 1331646 1332371 1332376) (-802 "ODEPRIM.spad" 1328912 1328934 1331628 1331633) (-801 "ODEPAL.spad" 1328288 1328312 1328902 1328907) (-800 "ODEPACK.spad" 1314890 1314898 1328278 1328283) (-799 "ODEINT.spad" 1314321 1314337 1314880 1314885) (-798 "ODEIFTBL.spad" 1311716 1311724 1314311 1314316) (-797 "ODEEF.spad" 1307083 1307099 1311706 1311711) (-796 "ODECONST.spad" 1306602 1306620 1307073 1307078) (-795 "ODECAT.spad" 1305198 1305206 1306592 1306597) (-794 "OCT.spad" 1303336 1303346 1304052 1304091) (-793 "OCTCT2.spad" 1302980 1303001 1303326 1303331) (-792 "OC.spad" 1300754 1300764 1302936 1302975) (-791 "OC.spad" 1298253 1298265 1300437 1300442) (-790 "OCAMON.spad" 1298101 1298109 1298243 1298248) (-789 "OASGP.spad" 1297916 1297924 1298091 1298096) (-788 "OAMONS.spad" 1297436 1297444 1297906 1297911) (-787 "OAMON.spad" 1297297 1297305 1297426 1297431) (-786 "OAGROUP.spad" 1297159 1297167 1297287 1297292) (-785 "NUMTUBE.spad" 1296746 1296762 1297149 1297154) (-784 "NUMQUAD.spad" 1284608 1284616 1296736 1296741) (-783 "NUMODE.spad" 1275744 1275752 1284598 1284603) (-782 "NUMINT.spad" 1273302 1273310 1275734 1275739) (-781 "NUMFMT.spad" 1272142 1272150 1273292 1273297) (-780 "NUMERIC.spad" 1264214 1264224 1271947 1271952) (-779 "NTSCAT.spad" 1262716 1262732 1264182 1264209) (-778 "NTPOLFN.spad" 1262261 1262271 1262633 1262638) (-777 "NSUP.spad" 1255271 1255281 1259811 1259964) (-776 "NSUP2.spad" 1254663 1254675 1255261 1255266) (-775 "NSMP.spad" 1250858 1250877 1251166 1251293) (-774 "NREP.spad" 1249230 1249244 1250848 1250853) (-773 "NPCOEF.spad" 1248476 1248496 1249220 1249225) (-772 "NORMRETR.spad" 1248074 1248113 1248466 1248471) (-771 "NORMPK.spad" 1245976 1245995 1248064 1248069) (-770 "NORMMA.spad" 1245664 1245690 1245966 1245971) (-769 "NONE.spad" 1245405 1245413 1245654 1245659) (-768 "NONE1.spad" 1245081 1245091 1245395 1245400) (-767 "NODE1.spad" 1244550 1244566 1245071 1245076) (-766 "NNI.spad" 1243437 1243445 1244524 1244545) (-765 "NLINSOL.spad" 1242059 1242069 1243427 1243432) (-764 "NIPROB.spad" 1240600 1240608 1242049 1242054) (-763 "NFINTBAS.spad" 1238060 1238077 1240590 1240595) (-762 "NETCLT.spad" 1238034 1238045 1238050 1238055) (-761 "NCODIV.spad" 1236232 1236248 1238024 1238029) (-760 "NCNTFRAC.spad" 1235874 1235888 1236222 1236227) (-759 "NCEP.spad" 1234034 1234048 1235864 1235869) (-758 "NASRING.spad" 1233630 1233638 1234024 1234029) (-757 "NASRING.spad" 1233224 1233234 1233620 1233625) (-756 "NARNG.spad" 1232568 1232576 1233214 1233219) (-755 "NARNG.spad" 1231910 1231920 1232558 1232563) (-754 "NAGSP.spad" 1230983 1230991 1231900 1231905) (-753 "NAGS.spad" 1220508 1220516 1230973 1230978) (-752 "NAGF07.spad" 1218901 1218909 1220498 1220503) (-751 "NAGF04.spad" 1213133 1213141 1218891 1218896) (-750 "NAGF02.spad" 1206942 1206950 1213123 1213128) (-749 "NAGF01.spad" 1202545 1202553 1206932 1206937) (-748 "NAGE04.spad" 1196005 1196013 1202535 1202540) (-747 "NAGE02.spad" 1186347 1186355 1195995 1196000) (-746 "NAGE01.spad" 1182231 1182239 1186337 1186342) (-745 "NAGD03.spad" 1180151 1180159 1182221 1182226) (-744 "NAGD02.spad" 1172682 1172690 1180141 1180146) (-743 "NAGD01.spad" 1166795 1166803 1172672 1172677) (-742 "NAGC06.spad" 1162582 1162590 1166785 1166790) (-741 "NAGC05.spad" 1161051 1161059 1162572 1162577) (-740 "NAGC02.spad" 1160306 1160314 1161041 1161046) (-739 "NAALG.spad" 1159841 1159851 1160274 1160301) (-738 "NAALG.spad" 1159396 1159408 1159831 1159836) (-737 "MULTSQFR.spad" 1156354 1156371 1159386 1159391) (-736 "MULTFACT.spad" 1155737 1155754 1156344 1156349) (-735 "MTSCAT.spad" 1153771 1153792 1155635 1155732) (-734 "MTHING.spad" 1153428 1153438 1153761 1153766) (-733 "MSYSCMD.spad" 1152862 1152870 1153418 1153423) (-732 "MSET.spad" 1150804 1150814 1152568 1152607) (-731 "MSETAGG.spad" 1150649 1150659 1150772 1150799) (-730 "MRING.spad" 1147620 1147632 1150357 1150424) (-729 "MRF2.spad" 1147188 1147202 1147610 1147615) (-728 "MRATFAC.spad" 1146734 1146751 1147178 1147183) (-727 "MPRFF.spad" 1144764 1144783 1146724 1146729) (-726 "MPOLY.spad" 1142199 1142214 1142558 1142685) (-725 "MPCPF.spad" 1141463 1141482 1142189 1142194) (-724 "MPC3.spad" 1141278 1141318 1141453 1141458) (-723 "MPC2.spad" 1140920 1140953 1141268 1141273) (-722 "MONOTOOL.spad" 1139255 1139272 1140910 1140915) (-721 "MONOID.spad" 1138574 1138582 1139245 1139250) (-720 "MONOID.spad" 1137891 1137901 1138564 1138569) (-719 "MONOGEN.spad" 1136637 1136650 1137751 1137886) (-718 "MONOGEN.spad" 1135405 1135420 1136521 1136526) (-717 "MONADWU.spad" 1133419 1133427 1135395 1135400) (-716 "MONADWU.spad" 1131431 1131441 1133409 1133414) (-715 "MONAD.spad" 1130575 1130583 1131421 1131426) (-714 "MONAD.spad" 1129717 1129727 1130565 1130570) (-713 "MOEBIUS.spad" 1128403 1128417 1129697 1129712) (-712 "MODULE.spad" 1128273 1128283 1128371 1128398) (-711 "MODULE.spad" 1128163 1128175 1128263 1128268) (-710 "MODRING.spad" 1127494 1127533 1128143 1128158) (-709 "MODOP.spad" 1126153 1126165 1127316 1127383) (-708 "MODMONOM.spad" 1125882 1125900 1126143 1126148) (-707 "MODMON.spad" 1122641 1122657 1123360 1123513) (-706 "MODFIELD.spad" 1121999 1122038 1122543 1122636) (-705 "MMLFORM.spad" 1120859 1120867 1121989 1121994) (-704 "MMAP.spad" 1120599 1120633 1120849 1120854) (-703 "MLO.spad" 1119026 1119036 1120555 1120594) (-702 "MLIFT.spad" 1117598 1117615 1119016 1119021) (-701 "MKUCFUNC.spad" 1117131 1117149 1117588 1117593) (-700 "MKRECORD.spad" 1116733 1116746 1117121 1117126) (-699 "MKFUNC.spad" 1116114 1116124 1116723 1116728) (-698 "MKFLCFN.spad" 1115070 1115080 1116104 1116109) (-697 "MKCHSET.spad" 1114935 1114945 1115060 1115065) (-696 "MKBCFUNC.spad" 1114420 1114438 1114925 1114930) (-695 "MINT.spad" 1113859 1113867 1114322 1114415) (-694 "MHROWRED.spad" 1112360 1112370 1113849 1113854) (-693 "MFLOAT.spad" 1110876 1110884 1112250 1112355) (-692 "MFINFACT.spad" 1110276 1110298 1110866 1110871) (-691 "MESH.spad" 1108008 1108016 1110266 1110271) (-690 "MDDFACT.spad" 1106201 1106211 1107998 1108003) (-689 "MDAGG.spad" 1105488 1105498 1106181 1106196) (-688 "MCMPLX.spad" 1101474 1101482 1102088 1102277) (-687 "MCDEN.spad" 1100682 1100694 1101464 1101469) (-686 "MCALCFN.spad" 1097784 1097810 1100672 1100677) (-685 "MAYBE.spad" 1097068 1097079 1097774 1097779) (-684 "MATSTOR.spad" 1094344 1094354 1097058 1097063) (-683 "MATRIX.spad" 1093048 1093058 1093532 1093559) (-682 "MATLIN.spad" 1090374 1090398 1092932 1092937) (-681 "MATCAT.spad" 1081959 1081981 1090342 1090369) (-680 "MATCAT.spad" 1073416 1073440 1081801 1081806) (-679 "MATCAT2.spad" 1072684 1072732 1073406 1073411) (-678 "MAPPKG3.spad" 1071583 1071597 1072674 1072679) (-677 "MAPPKG2.spad" 1070917 1070929 1071573 1071578) (-676 "MAPPKG1.spad" 1069735 1069745 1070907 1070912) (-675 "MAPPAST.spad" 1069048 1069056 1069725 1069730) (-674 "MAPHACK3.spad" 1068856 1068870 1069038 1069043) (-673 "MAPHACK2.spad" 1068621 1068633 1068846 1068851) (-672 "MAPHACK1.spad" 1068251 1068261 1068611 1068616) (-671 "MAGMA.spad" 1066041 1066058 1068241 1068246) (-670 "MACROAST.spad" 1065620 1065628 1066031 1066036) (-669 "M3D.spad" 1063316 1063326 1064998 1065003) (-668 "LZSTAGG.spad" 1060544 1060554 1063306 1063311) (-667 "LZSTAGG.spad" 1057770 1057782 1060534 1060539) (-666 "LWORD.spad" 1054475 1054492 1057760 1057765) (-665 "LSTAST.spad" 1054259 1054267 1054465 1054470) (-664 "LSQM.spad" 1052485 1052499 1052883 1052934) (-663 "LSPP.spad" 1052018 1052035 1052475 1052480) (-662 "LSMP.spad" 1050858 1050886 1052008 1052013) (-661 "LSMP1.spad" 1048662 1048676 1050848 1050853) (-660 "LSAGG.spad" 1048331 1048341 1048630 1048657) (-659 "LSAGG.spad" 1048020 1048032 1048321 1048326) (-658 "LPOLY.spad" 1046974 1046993 1047876 1047945) (-657 "LPEFRAC.spad" 1046231 1046241 1046964 1046969) (-656 "LO.spad" 1045632 1045646 1046165 1046192) (-655 "LOGIC.spad" 1045234 1045242 1045622 1045627) (-654 "LOGIC.spad" 1044834 1044844 1045224 1045229) (-653 "LODOOPS.spad" 1043752 1043764 1044824 1044829) (-652 "LODO.spad" 1043136 1043152 1043432 1043471) (-651 "LODOF.spad" 1042180 1042197 1043093 1043098) (-650 "LODOCAT.spad" 1040838 1040848 1042136 1042175) (-649 "LODOCAT.spad" 1039494 1039506 1040794 1040799) (-648 "LODO2.spad" 1038767 1038779 1039174 1039213) (-647 "LODO1.spad" 1038167 1038177 1038447 1038486) (-646 "LODEEF.spad" 1036939 1036957 1038157 1038162) (-645 "LNAGG.spad" 1032741 1032751 1036929 1036934) (-644 "LNAGG.spad" 1028507 1028519 1032697 1032702) (-643 "LMOPS.spad" 1025243 1025260 1028497 1028502) (-642 "LMODULE.spad" 1024885 1024895 1025233 1025238) (-641 "LMDICT.spad" 1024168 1024178 1024436 1024463) (-640 "LITERAL.spad" 1024074 1024085 1024158 1024163) (-639 "LIST.spad" 1021792 1021802 1023221 1023248) (-638 "LIST3.spad" 1021083 1021097 1021782 1021787) (-637 "LIST2.spad" 1019723 1019735 1021073 1021078) (-636 "LIST2MAP.spad" 1016600 1016612 1019713 1019718) (-635 "LINEXP.spad" 1016032 1016042 1016580 1016595) (-634 "LINDEP.spad" 1014809 1014821 1015944 1015949) (-633 "LIMITRF.spad" 1012723 1012733 1014799 1014804) (-632 "LIMITPS.spad" 1011606 1011619 1012713 1012718) (-631 "LIE.spad" 1009620 1009632 1010896 1011041) (-630 "LIECAT.spad" 1009096 1009106 1009546 1009615) (-629 "LIECAT.spad" 1008600 1008612 1009052 1009057) (-628 "LIB.spad" 1006648 1006656 1007259 1007274) (-627 "LGROBP.spad" 1004001 1004020 1006638 1006643) (-626 "LF.spad" 1002920 1002936 1003991 1003996) (-625 "LFCAT.spad" 1001939 1001947 1002910 1002915) (-624 "LEXTRIPK.spad" 997442 997457 1001929 1001934) (-623 "LEXP.spad" 995445 995472 997422 997437) (-622 "LETAST.spad" 995144 995152 995435 995440) (-621 "LEADCDET.spad" 993528 993545 995134 995139) (-620 "LAZM3PK.spad" 992232 992254 993518 993523) (-619 "LAUPOL.spad" 990921 990934 991825 991894) (-618 "LAPLACE.spad" 990494 990510 990911 990916) (-617 "LA.spad" 989934 989948 990416 990455) (-616 "LALG.spad" 989710 989720 989914 989929) (-615 "LALG.spad" 989494 989506 989700 989705) (-614 "KVTFROM.spad" 989229 989239 989484 989489) (-613 "KTVLOGIC.spad" 988652 988660 989219 989224) (-612 "KRCFROM.spad" 988390 988400 988642 988647) (-611 "KOVACIC.spad" 987103 987120 988380 988385) (-610 "KONVERT.spad" 986825 986835 987093 987098) (-609 "KOERCE.spad" 986562 986572 986815 986820) (-608 "KERNEL.spad" 985097 985107 986346 986351) (-607 "KERNEL2.spad" 984800 984812 985087 985092) (-606 "KDAGG.spad" 983903 983925 984780 984795) (-605 "KDAGG.spad" 983014 983038 983893 983898) (-604 "KAFILE.spad" 981977 981993 982212 982239) (-603 "JORDAN.spad" 979804 979816 981267 981412) (-602 "JOINAST.spad" 979498 979506 979794 979799) (-601 "JAVACODE.spad" 979364 979372 979488 979493) (-600 "IXAGG.spad" 977487 977511 979354 979359) (-599 "IXAGG.spad" 975465 975491 977334 977339) (-598 "IVECTOR.spad" 974236 974251 974391 974418) (-597 "ITUPLE.spad" 973381 973391 974226 974231) (-596 "ITRIGMNP.spad" 972192 972211 973371 973376) (-595 "ITFUN3.spad" 971686 971700 972182 972187) (-594 "ITFUN2.spad" 971416 971428 971676 971681) (-593 "ITAYLOR.spad" 969208 969223 971252 971377) (-592 "ISUPS.spad" 961619 961634 968182 968279) (-591 "ISUMP.spad" 961116 961132 961609 961614) (-590 "ISTRING.spad" 960119 960132 960285 960312) (-589 "ISAST.spad" 959838 959846 960109 960114) (-588 "IRURPK.spad" 958551 958570 959828 959833) (-587 "IRSN.spad" 956511 956519 958541 958546) (-586 "IRRF2F.spad" 954986 954996 956467 956472) (-585 "IRREDFFX.spad" 954587 954598 954976 954981) (-584 "IROOT.spad" 952918 952928 954577 954582) (-583 "IR.spad" 950707 950721 952773 952800) (-582 "IR2.spad" 949727 949743 950697 950702) (-581 "IR2F.spad" 948927 948943 949717 949722) (-580 "IPRNTPK.spad" 948687 948695 948917 948922) (-579 "IPF.spad" 948252 948264 948492 948585) (-578 "IPADIC.spad" 948013 948039 948178 948247) (-577 "IP4ADDR.spad" 947570 947578 948003 948008) (-576 "IOMODE.spad" 947191 947199 947560 947565) (-575 "IOBFILE.spad" 946552 946560 947181 947186) (-574 "IOBCON.spad" 946417 946425 946542 946547) (-573 "INVLAPLA.spad" 946062 946078 946407 946412) (-572 "INTTR.spad" 939308 939325 946052 946057) (-571 "INTTOOLS.spad" 937019 937035 938882 938887) (-570 "INTSLPE.spad" 936325 936333 937009 937014) (-569 "INTRVL.spad" 935891 935901 936239 936320) (-568 "INTRF.spad" 934255 934269 935881 935886) (-567 "INTRET.spad" 933687 933697 934245 934250) (-566 "INTRAT.spad" 932362 932379 933677 933682) (-565 "INTPM.spad" 930725 930741 932005 932010) (-564 "INTPAF.spad" 928493 928511 930657 930662) (-563 "INTPACK.spad" 918803 918811 928483 928488) (-562 "INT.spad" 918164 918172 918657 918798) (-561 "INTHERTR.spad" 917430 917447 918154 918159) (-560 "INTHERAL.spad" 917096 917120 917420 917425) (-559 "INTHEORY.spad" 913509 913517 917086 917091) (-558 "INTG0.spad" 906972 906990 913441 913446) (-557 "INTFTBL.spad" 901001 901009 906962 906967) (-556 "INTFACT.spad" 900060 900070 900991 900996) (-555 "INTEF.spad" 898375 898391 900050 900055) (-554 "INTDOM.spad" 896990 896998 898301 898370) (-553 "INTDOM.spad" 895667 895677 896980 896985) (-552 "INTCAT.spad" 893920 893930 895581 895662) (-551 "INTBIT.spad" 893423 893431 893910 893915) (-550 "INTALG.spad" 892605 892632 893413 893418) (-549 "INTAF.spad" 892097 892113 892595 892600) (-548 "INTABL.spad" 890615 890646 890778 890805) (-547 "INT8.spad" 890495 890503 890605 890610) (-546 "INT32.spad" 890374 890382 890485 890490) (-545 "INT16.spad" 890253 890261 890364 890369) (-544 "INS.spad" 887720 887728 890155 890248) (-543 "INS.spad" 885273 885283 887710 887715) (-542 "INPSIGN.spad" 884707 884720 885263 885268) (-541 "INPRODPF.spad" 883773 883792 884697 884702) (-540 "INPRODFF.spad" 882831 882855 883763 883768) (-539 "INNMFACT.spad" 881802 881819 882821 882826) (-538 "INMODGCD.spad" 881286 881316 881792 881797) (-537 "INFSP.spad" 879571 879593 881276 881281) (-536 "INFPROD0.spad" 878621 878640 879561 879566) (-535 "INFORM.spad" 875782 875790 878611 878616) (-534 "INFORM1.spad" 875407 875417 875772 875777) (-533 "INFINITY.spad" 874959 874967 875397 875402) (-532 "INETCLTS.spad" 874936 874944 874949 874954) (-531 "INEP.spad" 873468 873490 874926 874931) (-530 "INDE.spad" 873197 873214 873458 873463) (-529 "INCRMAPS.spad" 872618 872628 873187 873192) (-528 "INBFILE.spad" 871690 871698 872608 872613) (-527 "INBFF.spad" 867460 867471 871680 871685) (-526 "INBCON.spad" 865748 865756 867450 867455) (-525 "INBCON.spad" 864034 864044 865738 865743) (-524 "INAST.spad" 863699 863707 864024 864029) (-523 "IMPTAST.spad" 863407 863415 863689 863694) (-522 "IMATRIX.spad" 862352 862378 862864 862891) (-521 "IMATQF.spad" 861446 861490 862308 862313) (-520 "IMATLIN.spad" 860051 860075 861402 861407) (-519 "ILIST.spad" 858707 858722 859234 859261) (-518 "IIARRAY2.spad" 858095 858133 858314 858341) (-517 "IFF.spad" 857505 857521 857776 857869) (-516 "IFAST.spad" 857119 857127 857495 857500) (-515 "IFARRAY.spad" 854606 854621 856302 856329) (-514 "IFAMON.spad" 854468 854485 854562 854567) (-513 "IEVALAB.spad" 853857 853869 854458 854463) (-512 "IEVALAB.spad" 853244 853258 853847 853852) (-511 "IDPO.spad" 853042 853054 853234 853239) (-510 "IDPOAMS.spad" 852798 852810 853032 853037) (-509 "IDPOAM.spad" 852518 852530 852788 852793) (-508 "IDPC.spad" 851452 851464 852508 852513) (-507 "IDPAM.spad" 851197 851209 851442 851447) (-506 "IDPAG.spad" 850944 850956 851187 851192) (-505 "IDENT.spad" 850716 850724 850934 850939) (-504 "IDECOMP.spad" 847953 847971 850706 850711) (-503 "IDEAL.spad" 842876 842915 847888 847893) (-502 "ICDEN.spad" 842027 842043 842866 842871) (-501 "ICARD.spad" 841216 841224 842017 842022) (-500 "IBPTOOLS.spad" 839809 839826 841206 841211) (-499 "IBITS.spad" 839008 839021 839445 839472) (-498 "IBATOOL.spad" 835883 835902 838998 839003) (-497 "IBACHIN.spad" 834370 834385 835873 835878) (-496 "IARRAY2.spad" 833358 833384 833977 834004) (-495 "IARRAY1.spad" 832403 832418 832541 832568) (-494 "IAN.spad" 830616 830624 832219 832312) (-493 "IALGFACT.spad" 830217 830250 830606 830611) (-492 "HYPCAT.spad" 829641 829649 830207 830212) (-491 "HYPCAT.spad" 829063 829073 829631 829636) (-490 "HOSTNAME.spad" 828871 828879 829053 829058) (-489 "HOMOTOP.spad" 828614 828624 828861 828866) (-488 "HOAGG.spad" 825882 825892 828604 828609) (-487 "HOAGG.spad" 822925 822937 825649 825654) (-486 "HEXADEC.spad" 821027 821035 821392 821485) (-485 "HEUGCD.spad" 820042 820053 821017 821022) (-484 "HELLFDIV.spad" 819632 819656 820032 820037) (-483 "HEAP.spad" 819024 819034 819239 819266) (-482 "HEADAST.spad" 818555 818563 819014 819019) (-481 "HDP.spad" 808398 808414 808775 808906) (-480 "HDMP.spad" 805574 805589 806192 806319) (-479 "HB.spad" 803811 803819 805564 805569) (-478 "HASHTBL.spad" 802281 802312 802492 802519) (-477 "HASAST.spad" 801997 802005 802271 802276) (-476 "HACKPI.spad" 801480 801488 801899 801992) (-475 "GTSET.spad" 800419 800435 801126 801153) (-474 "GSTBL.spad" 798938 798973 799112 799127) (-473 "GSERIES.spad" 796105 796132 797070 797219) (-472 "GROUP.spad" 795374 795382 796085 796100) (-471 "GROUP.spad" 794651 794661 795364 795369) (-470 "GROEBSOL.spad" 793139 793160 794641 794646) (-469 "GRMOD.spad" 791710 791722 793129 793134) (-468 "GRMOD.spad" 790279 790293 791700 791705) (-467 "GRIMAGE.spad" 782884 782892 790269 790274) (-466 "GRDEF.spad" 781263 781271 782874 782879) (-465 "GRAY.spad" 779722 779730 781253 781258) (-464 "GRALG.spad" 778769 778781 779712 779717) (-463 "GRALG.spad" 777814 777828 778759 778764) (-462 "GPOLSET.spad" 777268 777291 777496 777523) (-461 "GOSPER.spad" 776533 776551 777258 777263) (-460 "GMODPOL.spad" 775671 775698 776501 776528) (-459 "GHENSEL.spad" 774740 774754 775661 775666) (-458 "GENUPS.spad" 770841 770854 774730 774735) (-457 "GENUFACT.spad" 770418 770428 770831 770836) (-456 "GENPGCD.spad" 770002 770019 770408 770413) (-455 "GENMFACT.spad" 769454 769473 769992 769997) (-454 "GENEEZ.spad" 767393 767406 769444 769449) (-453 "GDMP.spad" 764411 764428 765187 765314) (-452 "GCNAALG.spad" 758306 758333 764205 764272) (-451 "GCDDOM.spad" 757478 757486 758232 758301) (-450 "GCDDOM.spad" 756712 756722 757468 757473) (-449 "GB.spad" 754230 754268 756668 756673) (-448 "GBINTERN.spad" 750250 750288 754220 754225) (-447 "GBF.spad" 746007 746045 750240 750245) (-446 "GBEUCLID.spad" 743881 743919 745997 746002) (-445 "GAUSSFAC.spad" 743178 743186 743871 743876) (-444 "GALUTIL.spad" 741500 741510 743134 743139) (-443 "GALPOLYU.spad" 739946 739959 741490 741495) (-442 "GALFACTU.spad" 738111 738130 739936 739941) (-441 "GALFACT.spad" 728244 728255 738101 738106) (-440 "FVFUN.spad" 725267 725275 728234 728239) (-439 "FVC.spad" 724319 724327 725257 725262) (-438 "FUNDESC.spad" 723997 724005 724309 724314) (-437 "FUNCTION.spad" 723846 723858 723987 723992) (-436 "FT.spad" 722139 722147 723836 723841) (-435 "FTEM.spad" 721302 721310 722129 722134) (-434 "FSUPFACT.spad" 720202 720221 721238 721243) (-433 "FST.spad" 718288 718296 720192 720197) (-432 "FSRED.spad" 717766 717782 718278 718283) (-431 "FSPRMELT.spad" 716590 716606 717723 717728) (-430 "FSPECF.spad" 714667 714683 716580 716585) (-429 "FS.spad" 708729 708739 714442 714662) (-428 "FS.spad" 702569 702581 708284 708289) (-427 "FSINT.spad" 702227 702243 702559 702564) (-426 "FSERIES.spad" 701414 701426 702047 702146) (-425 "FSCINT.spad" 700727 700743 701404 701409) (-424 "FSAGG.spad" 699844 699854 700683 700722) (-423 "FSAGG.spad" 698923 698935 699764 699769) (-422 "FSAGG2.spad" 697622 697638 698913 698918) (-421 "FS2UPS.spad" 692105 692139 697612 697617) (-420 "FS2.spad" 691750 691766 692095 692100) (-419 "FS2EXPXP.spad" 690873 690896 691740 691745) (-418 "FRUTIL.spad" 689815 689825 690863 690868) (-417 "FR.spad" 683509 683519 688839 688908) (-416 "FRNAALG.spad" 678596 678606 683451 683504) (-415 "FRNAALG.spad" 673695 673707 678552 678557) (-414 "FRNAAF2.spad" 673149 673167 673685 673690) (-413 "FRMOD.spad" 672543 672573 673080 673085) (-412 "FRIDEAL.spad" 671738 671759 672523 672538) (-411 "FRIDEAL2.spad" 671340 671372 671728 671733) (-410 "FRETRCT.spad" 670851 670861 671330 671335) (-409 "FRETRCT.spad" 670228 670240 670709 670714) (-408 "FRAMALG.spad" 668556 668569 670184 670223) (-407 "FRAMALG.spad" 666916 666931 668546 668551) (-406 "FRAC.spad" 664015 664025 664418 664591) (-405 "FRAC2.spad" 663618 663630 664005 664010) (-404 "FR2.spad" 662952 662964 663608 663613) (-403 "FPS.spad" 659761 659769 662842 662947) (-402 "FPS.spad" 656598 656608 659681 659686) (-401 "FPC.spad" 655640 655648 656500 656593) (-400 "FPC.spad" 654768 654778 655630 655635) (-399 "FPATMAB.spad" 654530 654540 654758 654763) (-398 "FPARFRAC.spad" 653003 653020 654520 654525) (-397 "FORTRAN.spad" 651509 651552 652993 652998) (-396 "FORT.spad" 650438 650446 651499 651504) (-395 "FORTFN.spad" 647608 647616 650428 650433) (-394 "FORTCAT.spad" 647292 647300 647598 647603) (-393 "FORMULA.spad" 644756 644764 647282 647287) (-392 "FORMULA1.spad" 644235 644245 644746 644751) (-391 "FORDER.spad" 643926 643950 644225 644230) (-390 "FOP.spad" 643127 643135 643916 643921) (-389 "FNLA.spad" 642551 642573 643095 643122) (-388 "FNCAT.spad" 641138 641146 642541 642546) (-387 "FNAME.spad" 641030 641038 641128 641133) (-386 "FMTC.spad" 640828 640836 640956 641025) (-385 "FMONOID.spad" 637883 637893 640784 640789) (-384 "FM.spad" 637578 637590 637817 637844) (-383 "FMFUN.spad" 634608 634616 637568 637573) (-382 "FMC.spad" 633660 633668 634598 634603) (-381 "FMCAT.spad" 631314 631332 633628 633655) (-380 "FM1.spad" 630671 630683 631248 631275) (-379 "FLOATRP.spad" 628392 628406 630661 630666) (-378 "FLOAT.spad" 621680 621688 628258 628387) (-377 "FLOATCP.spad" 619097 619111 621670 621675) (-376 "FLINEXP.spad" 618809 618819 619077 619092) (-375 "FLINEXP.spad" 618475 618487 618745 618750) (-374 "FLASORT.spad" 617795 617807 618465 618470) (-373 "FLALG.spad" 615441 615460 617721 617790) (-372 "FLAGG.spad" 612459 612469 615421 615436) (-371 "FLAGG.spad" 609378 609390 612342 612347) (-370 "FLAGG2.spad" 608059 608075 609368 609373) (-369 "FINRALG.spad" 606088 606101 608015 608054) (-368 "FINRALG.spad" 604043 604058 605972 605977) (-367 "FINITE.spad" 603195 603203 604033 604038) (-366 "FINAALG.spad" 592176 592186 603137 603190) (-365 "FINAALG.spad" 581169 581181 592132 592137) (-364 "FILE.spad" 580752 580762 581159 581164) (-363 "FILECAT.spad" 579270 579287 580742 580747) (-362 "FIELD.spad" 578676 578684 579172 579265) (-361 "FIELD.spad" 578168 578178 578666 578671) (-360 "FGROUP.spad" 576777 576787 578148 578163) (-359 "FGLMICPK.spad" 575564 575579 576767 576772) (-358 "FFX.spad" 574939 574954 575280 575373) (-357 "FFSLPE.spad" 574428 574449 574929 574934) (-356 "FFPOLY.spad" 565680 565691 574418 574423) (-355 "FFPOLY2.spad" 564740 564757 565670 565675) (-354 "FFP.spad" 564137 564157 564456 564549) (-353 "FF.spad" 563585 563601 563818 563911) (-352 "FFNBX.spad" 562097 562117 563301 563394) (-351 "FFNBP.spad" 560610 560627 561813 561906) (-350 "FFNB.spad" 559075 559096 560291 560384) (-349 "FFINTBAS.spad" 556489 556508 559065 559070) (-348 "FFIELDC.spad" 554064 554072 556391 556484) (-347 "FFIELDC.spad" 551725 551735 554054 554059) (-346 "FFHOM.spad" 550473 550490 551715 551720) (-345 "FFF.spad" 547908 547919 550463 550468) (-344 "FFCGX.spad" 546755 546775 547624 547717) (-343 "FFCGP.spad" 545644 545664 546471 546564) (-342 "FFCG.spad" 544436 544457 545325 545418) (-341 "FFCAT.spad" 537463 537485 544275 544431) (-340 "FFCAT.spad" 530569 530593 537383 537388) (-339 "FFCAT2.spad" 530314 530354 530559 530564) (-338 "FEXPR.spad" 522023 522069 530070 530109) (-337 "FEVALAB.spad" 521729 521739 522013 522018) (-336 "FEVALAB.spad" 521220 521232 521506 521511) (-335 "FDIV.spad" 520662 520686 521210 521215) (-334 "FDIVCAT.spad" 518704 518728 520652 520657) (-333 "FDIVCAT.spad" 516744 516770 518694 518699) (-332 "FDIV2.spad" 516398 516438 516734 516739) (-331 "FCPAK1.spad" 514951 514959 516388 516393) (-330 "FCOMP.spad" 514330 514340 514941 514946) (-329 "FC.spad" 504245 504253 514320 514325) (-328 "FAXF.spad" 497180 497194 504147 504240) (-327 "FAXF.spad" 490167 490183 497136 497141) (-326 "FARRAY.spad" 488313 488323 489350 489377) (-325 "FAMR.spad" 486433 486445 488211 488308) (-324 "FAMR.spad" 484537 484551 486317 486322) (-323 "FAMONOID.spad" 484187 484197 484491 484496) (-322 "FAMONC.spad" 482409 482421 484177 484182) (-321 "FAGROUP.spad" 482015 482025 482305 482332) (-320 "FACUTIL.spad" 480211 480228 482005 482010) (-319 "FACTFUNC.spad" 479387 479397 480201 480206) (-318 "EXPUPXS.spad" 476220 476243 477519 477668) (-317 "EXPRTUBE.spad" 473448 473456 476210 476215) (-316 "EXPRODE.spad" 470320 470336 473438 473443) (-315 "EXPR.spad" 465595 465605 466309 466716) (-314 "EXPR2UPS.spad" 461687 461700 465585 465590) (-313 "EXPR2.spad" 461390 461402 461677 461682) (-312 "EXPEXPAN.spad" 458328 458353 458962 459055) (-311 "EXIT.spad" 457999 458007 458318 458323) (-310 "EXITAST.spad" 457735 457743 457989 457994) (-309 "EVALCYC.spad" 457193 457207 457725 457730) (-308 "EVALAB.spad" 456757 456767 457183 457188) (-307 "EVALAB.spad" 456319 456331 456747 456752) (-306 "EUCDOM.spad" 453861 453869 456245 456314) (-305 "EUCDOM.spad" 451465 451475 453851 453856) (-304 "ESTOOLS.spad" 443305 443313 451455 451460) (-303 "ESTOOLS2.spad" 442906 442920 443295 443300) (-302 "ESTOOLS1.spad" 442591 442602 442896 442901) (-301 "ES.spad" 435138 435146 442581 442586) (-300 "ES.spad" 427591 427601 435036 435041) (-299 "ESCONT.spad" 424364 424372 427581 427586) (-298 "ESCONT1.spad" 424113 424125 424354 424359) (-297 "ES2.spad" 423608 423624 424103 424108) (-296 "ES1.spad" 423174 423190 423598 423603) (-295 "ERROR.spad" 420495 420503 423164 423169) (-294 "EQTBL.spad" 418967 418989 419176 419203) (-293 "EQ.spad" 413841 413851 416640 416752) (-292 "EQ2.spad" 413557 413569 413831 413836) (-291 "EP.spad" 409871 409881 413547 413552) (-290 "ENV.spad" 408573 408581 409861 409866) (-289 "ENTIRER.spad" 408241 408249 408517 408568) (-288 "EMR.spad" 407442 407483 408167 408236) (-287 "ELTAGG.spad" 405682 405701 407432 407437) (-286 "ELTAGG.spad" 403886 403907 405638 405643) (-285 "ELTAB.spad" 403333 403351 403876 403881) (-284 "ELFUTS.spad" 402712 402731 403323 403328) (-283 "ELEMFUN.spad" 402401 402409 402702 402707) (-282 "ELEMFUN.spad" 402088 402098 402391 402396) (-281 "ELAGG.spad" 400031 400041 402068 402083) (-280 "ELAGG.spad" 397911 397923 399950 399955) (-279 "ELABEXPR.spad" 396842 396850 397901 397906) (-278 "EFUPXS.spad" 393618 393648 396798 396803) (-277 "EFULS.spad" 390454 390477 393574 393579) (-276 "EFSTRUC.spad" 388409 388425 390444 390449) (-275 "EF.spad" 383175 383191 388399 388404) (-274 "EAB.spad" 381451 381459 383165 383170) (-273 "E04UCFA.spad" 380987 380995 381441 381446) (-272 "E04NAFA.spad" 380564 380572 380977 380982) (-271 "E04MBFA.spad" 380144 380152 380554 380559) (-270 "E04JAFA.spad" 379680 379688 380134 380139) (-269 "E04GCFA.spad" 379216 379224 379670 379675) (-268 "E04FDFA.spad" 378752 378760 379206 379211) (-267 "E04DGFA.spad" 378288 378296 378742 378747) (-266 "E04AGNT.spad" 374130 374138 378278 378283) (-265 "DVARCAT.spad" 370815 370825 374120 374125) (-264 "DVARCAT.spad" 367498 367510 370805 370810) (-263 "DSMP.spad" 364929 364943 365234 365361) (-262 "DROPT.spad" 358874 358882 364919 364924) (-261 "DROPT1.spad" 358537 358547 358864 358869) (-260 "DROPT0.spad" 353364 353372 358527 358532) (-259 "DRAWPT.spad" 351519 351527 353354 353359) (-258 "DRAW.spad" 344119 344132 351509 351514) (-257 "DRAWHACK.spad" 343427 343437 344109 344114) (-256 "DRAWCX.spad" 340869 340877 343417 343422) (-255 "DRAWCURV.spad" 340406 340421 340859 340864) (-254 "DRAWCFUN.spad" 329578 329586 340396 340401) (-253 "DQAGG.spad" 327746 327756 329546 329573) (-252 "DPOLCAT.spad" 323087 323103 327614 327741) (-251 "DPOLCAT.spad" 318514 318532 323043 323048) (-250 "DPMO.spad" 310740 310756 310878 311179) (-249 "DPMM.spad" 302979 302997 303104 303405) (-248 "DOMCTOR.spad" 302871 302879 302969 302974) (-247 "DOMAIN.spad" 302002 302010 302861 302866) (-246 "DMP.spad" 299224 299239 299796 299923) (-245 "DLP.spad" 298572 298582 299214 299219) (-244 "DLIST.spad" 297151 297161 297755 297782) (-243 "DLAGG.spad" 295562 295572 297141 297146) (-242 "DIVRING.spad" 295104 295112 295506 295557) (-241 "DIVRING.spad" 294690 294700 295094 295099) (-240 "DISPLAY.spad" 292870 292878 294680 294685) (-239 "DIRPROD.spad" 282450 282466 283090 283221) (-238 "DIRPROD2.spad" 281258 281276 282440 282445) (-237 "DIRPCAT.spad" 280200 280216 281122 281253) (-236 "DIRPCAT.spad" 278871 278889 279795 279800) (-235 "DIOSP.spad" 277696 277704 278861 278866) (-234 "DIOPS.spad" 276680 276690 277676 277691) (-233 "DIOPS.spad" 275638 275650 276636 276641) (-232 "DIFRING.spad" 274930 274938 275618 275633) (-231 "DIFRING.spad" 274230 274240 274920 274925) (-230 "DIFEXT.spad" 273389 273399 274210 274225) (-229 "DIFEXT.spad" 272465 272477 273288 273293) (-228 "DIAGG.spad" 272095 272105 272445 272460) (-227 "DIAGG.spad" 271733 271745 272085 272090) (-226 "DHMATRIX.spad" 270037 270047 271190 271217) (-225 "DFSFUN.spad" 263445 263453 270027 270032) (-224 "DFLOAT.spad" 260166 260174 263335 263440) (-223 "DFINTTLS.spad" 258375 258391 260156 260161) (-222 "DERHAM.spad" 256285 256317 258355 258370) (-221 "DEQUEUE.spad" 255603 255613 255892 255919) (-220 "DEGRED.spad" 255218 255232 255593 255598) (-219 "DEFINTRF.spad" 252743 252753 255208 255213) (-218 "DEFINTEF.spad" 251239 251255 252733 252738) (-217 "DEFAST.spad" 250607 250615 251229 251234) (-216 "DECIMAL.spad" 248713 248721 249074 249167) (-215 "DDFACT.spad" 246512 246529 248703 248708) (-214 "DBLRESP.spad" 246110 246134 246502 246507) (-213 "DBASE.spad" 244764 244774 246100 246105) (-212 "DATAARY.spad" 244226 244239 244754 244759) (-211 "D03FAFA.spad" 244054 244062 244216 244221) (-210 "D03EEFA.spad" 243874 243882 244044 244049) (-209 "D03AGNT.spad" 242954 242962 243864 243869) (-208 "D02EJFA.spad" 242416 242424 242944 242949) (-207 "D02CJFA.spad" 241894 241902 242406 242411) (-206 "D02BHFA.spad" 241384 241392 241884 241889) (-205 "D02BBFA.spad" 240874 240882 241374 241379) (-204 "D02AGNT.spad" 235678 235686 240864 240869) (-203 "D01WGTS.spad" 233997 234005 235668 235673) (-202 "D01TRNS.spad" 233974 233982 233987 233992) (-201 "D01GBFA.spad" 233496 233504 233964 233969) (-200 "D01FCFA.spad" 233018 233026 233486 233491) (-199 "D01ASFA.spad" 232486 232494 233008 233013) (-198 "D01AQFA.spad" 231932 231940 232476 232481) (-197 "D01APFA.spad" 231356 231364 231922 231927) (-196 "D01ANFA.spad" 230850 230858 231346 231351) (-195 "D01AMFA.spad" 230360 230368 230840 230845) (-194 "D01ALFA.spad" 229900 229908 230350 230355) (-193 "D01AKFA.spad" 229426 229434 229890 229895) (-192 "D01AJFA.spad" 228949 228957 229416 229421) (-191 "D01AGNT.spad" 225008 225016 228939 228944) (-190 "CYCLOTOM.spad" 224514 224522 224998 225003) (-189 "CYCLES.spad" 221346 221354 224504 224509) (-188 "CVMP.spad" 220763 220773 221336 221341) (-187 "CTRIGMNP.spad" 219253 219269 220753 220758) (-186 "CTOR.spad" 218948 218956 219243 219248) (-185 "CTORKIND.spad" 218551 218559 218938 218943) (-184 "CTORCAT.spad" 217800 217808 218541 218546) (-183 "CTORCAT.spad" 217047 217057 217790 217795) (-182 "CTORCALL.spad" 216627 216635 217037 217042) (-181 "CSTTOOLS.spad" 215870 215883 216617 216622) (-180 "CRFP.spad" 209574 209587 215860 215865) (-179 "CRCEAST.spad" 209294 209302 209564 209569) (-178 "CRAPACK.spad" 208337 208347 209284 209289) (-177 "CPMATCH.spad" 207837 207852 208262 208267) (-176 "CPIMA.spad" 207542 207561 207827 207832) (-175 "COORDSYS.spad" 202435 202445 207532 207537) (-174 "CONTOUR.spad" 201837 201845 202425 202430) (-173 "CONTFRAC.spad" 197449 197459 201739 201832) (-172 "CONDUIT.spad" 197207 197215 197439 197444) (-171 "COMRING.spad" 196881 196889 197145 197202) (-170 "COMPPROP.spad" 196395 196403 196871 196876) (-169 "COMPLPAT.spad" 196162 196177 196385 196390) (-168 "COMPLEX.spad" 190198 190208 190442 190691) (-167 "COMPLEX2.spad" 189911 189923 190188 190193) (-166 "COMPFACT.spad" 189513 189527 189901 189906) (-165 "COMPCAT.spad" 187651 187661 189259 189508) (-164 "COMPCAT.spad" 185470 185482 187080 187085) (-163 "COMMUPC.spad" 185216 185234 185460 185465) (-162 "COMMONOP.spad" 184749 184757 185206 185211) (-161 "COMM.spad" 184558 184566 184739 184744) (-160 "COMMAAST.spad" 184321 184329 184548 184553) (-159 "COMBOPC.spad" 183226 183234 184311 184316) (-158 "COMBINAT.spad" 181971 181981 183216 183221) (-157 "COMBF.spad" 179339 179355 181961 181966) (-156 "COLOR.spad" 178176 178184 179329 179334) (-155 "COLONAST.spad" 177842 177850 178166 178171) (-154 "CMPLXRT.spad" 177551 177568 177832 177837) (-153 "CLLCTAST.spad" 177213 177221 177541 177546) (-152 "CLIP.spad" 173305 173313 177203 177208) (-151 "CLIF.spad" 171944 171960 173261 173300) (-150 "CLAGG.spad" 168429 168439 171934 171939) (-149 "CLAGG.spad" 164785 164797 168292 168297) (-148 "CINTSLPE.spad" 164110 164123 164775 164780) (-147 "CHVAR.spad" 162188 162210 164100 164105) (-146 "CHARZ.spad" 162103 162111 162168 162183) (-145 "CHARPOL.spad" 161611 161621 162093 162098) (-144 "CHARNZ.spad" 161364 161372 161591 161606) (-143 "CHAR.spad" 159232 159240 161354 161359) (-142 "CFCAT.spad" 158548 158556 159222 159227) (-141 "CDEN.spad" 157706 157720 158538 158543) (-140 "CCLASS.spad" 155855 155863 157117 157156) (-139 "CATEGORY.spad" 154945 154953 155845 155850) (-138 "CATCTOR.spad" 154836 154844 154935 154940) (-137 "CATAST.spad" 154463 154471 154826 154831) (-136 "CASEAST.spad" 154177 154185 154453 154458) (-135 "CARTEN.spad" 149280 149304 154167 154172) (-134 "CARTEN2.spad" 148666 148693 149270 149275) (-133 "CARD.spad" 145955 145963 148640 148661) (-132 "CAPSLAST.spad" 145729 145737 145945 145950) (-131 "CACHSET.spad" 145351 145359 145719 145724) (-130 "CABMON.spad" 144904 144912 145341 145346) (-129 "BYTE.spad" 144325 144333 144894 144899) (-128 "BYTEBUF.spad" 142157 142165 143494 143521) (-127 "BTREE.spad" 141226 141236 141764 141791) (-126 "BTOURN.spad" 140229 140239 140833 140860) (-125 "BTCAT.spad" 139617 139627 140197 140224) (-124 "BTCAT.spad" 139025 139037 139607 139612) (-123 "BTAGG.spad" 138147 138155 138993 139020) (-122 "BTAGG.spad" 137289 137299 138137 138142) (-121 "BSTREE.spad" 136024 136034 136896 136923) (-120 "BRILL.spad" 134219 134230 136014 136019) (-119 "BRAGG.spad" 133143 133153 134209 134214) (-118 "BRAGG.spad" 132031 132043 133099 133104) (-117 "BPADICRT.spad" 130012 130024 130267 130360) (-116 "BPADIC.spad" 129676 129688 129938 130007) (-115 "BOUNDZRO.spad" 129332 129349 129666 129671) (-114 "BOP.spad" 124796 124804 129322 129327) (-113 "BOP1.spad" 122182 122192 124752 124757) (-112 "BOOLEAN.spad" 121506 121514 122172 122177) (-111 "BMODULE.spad" 121218 121230 121474 121501) (-110 "BITS.spad" 120637 120645 120854 120881) (-109 "BINDING.spad" 120056 120064 120627 120632) (-108 "BINARY.spad" 118167 118175 118523 118616) (-107 "BGAGG.spad" 117364 117374 118147 118162) (-106 "BGAGG.spad" 116569 116581 117354 117359) (-105 "BFUNCT.spad" 116133 116141 116549 116564) (-104 "BEZOUT.spad" 115267 115294 116083 116088) (-103 "BBTREE.spad" 112086 112096 114874 114901) (-102 "BASTYPE.spad" 111758 111766 112076 112081) (-101 "BASTYPE.spad" 111428 111438 111748 111753) (-100 "BALFACT.spad" 110867 110880 111418 111423) (-99 "AUTOMOR.spad" 110314 110323 110847 110862) (-98 "ATTREG.spad" 107033 107040 110066 110309) (-97 "ATTRBUT.spad" 103056 103063 107013 107028) (-96 "ATTRAST.spad" 102773 102780 103046 103051) (-95 "ATRIG.spad" 102243 102250 102763 102768) (-94 "ATRIG.spad" 101711 101720 102233 102238) (-93 "ASTCAT.spad" 101615 101622 101701 101706) (-92 "ASTCAT.spad" 101517 101526 101605 101610) (-91 "ASTACK.spad" 100850 100859 101124 101151) (-90 "ASSOCEQ.spad" 99650 99661 100806 100811) (-89 "ASP9.spad" 98731 98744 99640 99645) (-88 "ASP8.spad" 97774 97787 98721 98726) (-87 "ASP80.spad" 97096 97109 97764 97769) (-86 "ASP7.spad" 96256 96269 97086 97091) (-85 "ASP78.spad" 95707 95720 96246 96251) (-84 "ASP77.spad" 95076 95089 95697 95702) (-83 "ASP74.spad" 94168 94181 95066 95071) (-82 "ASP73.spad" 93439 93452 94158 94163) (-81 "ASP6.spad" 92306 92319 93429 93434) (-80 "ASP55.spad" 90815 90828 92296 92301) (-79 "ASP50.spad" 88632 88645 90805 90810) (-78 "ASP4.spad" 87927 87940 88622 88627) (-77 "ASP49.spad" 86926 86939 87917 87922) (-76 "ASP42.spad" 85333 85372 86916 86921) (-75 "ASP41.spad" 83912 83951 85323 85328) (-74 "ASP35.spad" 82900 82913 83902 83907) (-73 "ASP34.spad" 82201 82214 82890 82895) (-72 "ASP33.spad" 81761 81774 82191 82196) (-71 "ASP31.spad" 80901 80914 81751 81756) (-70 "ASP30.spad" 79793 79806 80891 80896) (-69 "ASP29.spad" 79259 79272 79783 79788) (-68 "ASP28.spad" 70532 70545 79249 79254) (-67 "ASP27.spad" 69429 69442 70522 70527) (-66 "ASP24.spad" 68516 68529 69419 69424) (-65 "ASP20.spad" 67980 67993 68506 68511) (-64 "ASP1.spad" 67361 67374 67970 67975) (-63 "ASP19.spad" 62047 62060 67351 67356) (-62 "ASP12.spad" 61461 61474 62037 62042) (-61 "ASP10.spad" 60732 60745 61451 61456) (-60 "ARRAY2.spad" 60092 60101 60339 60366) (-59 "ARRAY1.spad" 58927 58936 59275 59302) (-58 "ARRAY12.spad" 57596 57607 58917 58922) (-57 "ARR2CAT.spad" 53258 53279 57564 57591) (-56 "ARR2CAT.spad" 48940 48963 53248 53253) (-55 "ARITY.spad" 48508 48515 48930 48935) (-54 "APPRULE.spad" 47752 47774 48498 48503) (-53 "APPLYORE.spad" 47367 47380 47742 47747) (-52 "ANY.spad" 45709 45716 47357 47362) (-51 "ANY1.spad" 44780 44789 45699 45704) (-50 "ANTISYM.spad" 43219 43235 44760 44775) (-49 "ANON.spad" 42916 42923 43209 43214) (-48 "AN.spad" 41217 41224 42732 42825) (-47 "AMR.spad" 39396 39407 41115 41212) (-46 "AMR.spad" 37412 37425 39133 39138) (-45 "ALIST.spad" 34824 34845 35174 35201) (-44 "ALGSC.spad" 33947 33973 34696 34749) (-43 "ALGPKG.spad" 29656 29667 33903 33908) (-42 "ALGMFACT.spad" 28845 28859 29646 29651) (-41 "ALGMANIP.spad" 26265 26280 28642 28647) (-40 "ALGFF.spad" 24580 24607 24797 24953) (-39 "ALGFACT.spad" 23701 23711 24570 24575) (-38 "ALGEBRA.spad" 23534 23543 23657 23696) (-37 "ALGEBRA.spad" 23399 23410 23524 23529) (-36 "ALAGG.spad" 22909 22930 23367 23394) (-35 "AHYP.spad" 22290 22297 22899 22904) (-34 "AGG.spad" 20599 20606 22280 22285) (-33 "AGG.spad" 18872 18881 20555 20560) (-32 "AF.spad" 17297 17312 18807 18812) (-31 "ADDAST.spad" 16975 16982 17287 17292) (-30 "ACPLOT.spad" 15546 15553 16965 16970) (-29 "ACFS.spad" 13297 13306 15448 15541) (-28 "ACFS.spad" 11134 11145 13287 13292) (-27 "ACF.spad" 7736 7743 11036 11129) (-26 "ACF.spad" 4424 4433 7726 7731) (-25 "ABELSG.spad" 3965 3972 4414 4419) (-24 "ABELSG.spad" 3504 3513 3955 3960) (-23 "ABELMON.spad" 3047 3054 3494 3499) (-22 "ABELMON.spad" 2588 2597 3037 3042) (-21 "ABELGRP.spad" 2160 2167 2578 2583) (-20 "ABELGRP.spad" 1730 1739 2150 2155) (-19 "A1AGG.spad" 870 879 1698 1725) (-18 "A1AGG.spad" 30 41 860 865)) \ No newline at end of file
diff --git a/src/share/algebra/category.daase b/src/share/algebra/category.daase
index 7d2ad6a5..9c3dd555 100644
--- a/src/share/algebra/category.daase
+++ b/src/share/algebra/category.daase
@@ -1,6 +1,6 @@
-(162070 . 3442535953)
-(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((#0=(-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) #0#) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))))
+(162070 . 3442698070)
+(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((#0=(-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) #0#) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))))
((((-562)) . T) (($) -4037 (|has| |#1| (-306)) (|has| |#1| (-362)) (|has| |#1| (-348)) (|has| |#1| (-554))) (((-406 (-562))) -4037 (|has| |#1| (-362)) (|has| |#1| (-348)) (|has| |#1| (-1033 (-406 (-562))))) ((|#1|) . T))
(((|#2| |#2|) . T))
((((-562)) . T))
@@ -52,7 +52,7 @@
(((|#1| (-530 (-1168))) . T))
(((#0=(-865 |#1|) #0#) . T) ((#1=(-406 (-562)) #1#) . T) (($ $) . T))
((((-1150)) . T) (((-857)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(|has| |#4| (-367))
(|has| |#3| (-367))
(((|#1|) . T))
@@ -68,7 +68,7 @@
((((-562)) . T) (((-406 (-562))) -4037 (|has| |#2| (-38 (-406 (-562)))) (|has| |#2| (-1033 (-406 (-562))))) ((|#2|) . T) (($) -4037 (|has| |#2| (-451)) (|has| |#2| (-554)) (|has| |#2| (-904))) (((-859 |#1|)) . T))
(-4037 (|has| |#1| (-362)) (|has| |#1| (-554)))
(-4037 (|has| |#1| (-362)) (|has| |#1| (-554)))
-((((-2 (|:| -2466 |#1|) (|:| -1960 |#2|))) . T))
+((((-2 (|:| -2464 |#1|) (|:| -1300 |#2|))) . T))
((($) . T))
((((-562)) . T) (((-406 (-562))) -4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))) ((|#1|) . T) (($) -4037 (|has| |#1| (-451)) (|has| |#1| (-554)) (|has| |#1| (-904))) (((-1168)) . T))
((((-857)) -4037 (|has| |#1| (-609 (-857))) (|has| |#1| (-845)) (|has| |#1| (-1092))))
@@ -112,7 +112,7 @@
(|has| |#1| (-367))
(((|#1|) . T))
(((|#1|) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(((|#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))
((((-857)) . T))
(((|#1| |#2|) . T))
@@ -236,8 +236,8 @@
(((|#1|) . T))
((((-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) (((-562)) |has| |#1| (-1033 (-562))) ((|#1|) . T))
(((|#1|) . T) (((-562)) |has| |#1| (-635 (-562))))
-(((|#2|) . T) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
-(((|#1|) . T) (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) . T))
+(((|#2|) . T) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
+(((|#1|) . T) (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) . T))
(|has| |#1| (-554))
((((-562)) -4037 (|has| |#4| (-171)) (|has| |#4| (-843)) (-12 (|has| |#4| (-1033 (-562))) (|has| |#4| (-1092))) (|has| |#4| (-1044))) ((|#4|) -4037 (|has| |#4| (-171)) (|has| |#4| (-1092))) (((-406 (-562))) -12 (|has| |#4| (-1033 (-406 (-562)))) (|has| |#4| (-1092))))
((((-562)) -4037 (|has| |#3| (-171)) (|has| |#3| (-843)) (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092))) (|has| |#3| (-1044))) ((|#3|) -4037 (|has| |#3| (-171)) (|has| |#3| (-1092))) (((-406 (-562))) -12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092))))
@@ -264,11 +264,11 @@
((((-535)) |has| |#2| (-610 (-535))) (((-887 (-378))) |has| |#2| (-610 (-887 (-378)))) (((-887 (-562))) |has| |#2| (-610 (-887 (-562)))))
((((-857)) . T))
(((|#1| |#2| |#3| |#4|) . T))
-((((-2 (|:| -2466 |#1|) (|:| -1960 |#2|))) . T) (((-857)) . T))
+((((-2 (|:| -2464 |#1|) (|:| -1300 |#2|))) . T) (((-857)) . T))
((((-535)) |has| |#1| (-610 (-535))) (((-887 (-378))) |has| |#1| (-610 (-887 (-378)))) (((-887 (-562))) |has| |#1| (-610 (-887 (-562)))))
(((|#4|) -4037 (|has| |#4| (-171)) (|has| |#4| (-362)) (|has| |#4| (-1044))) (($) |has| |#4| (-171)))
(((|#3|) -4037 (|has| |#3| (-171)) (|has| |#3| (-362)) (|has| |#3| (-1044))) (($) |has| |#3| (-171)))
-((((-2 (|:| -2466 |#1|) (|:| -1960 |#2|))) . T))
+((((-2 (|:| -2464 |#1|) (|:| -1300 |#2|))) . T))
((((-857)) . T))
((((-857)) . T))
((((-535)) . T) (((-562)) . T) (((-887 (-562))) . T) (((-378)) . T) (((-224)) . T))
@@ -276,7 +276,7 @@
(((|#1|) . T) (((-562)) |has| |#1| (-1033 (-562))) (((-406 (-562))) |has| |#1| (-1033 (-406 (-562)))))
((($) . T) (((-406 (-562))) |has| |#2| (-38 (-406 (-562)))) ((|#2|) . T))
((((-406 $) (-406 $)) |has| |#2| (-554)) (($ $) . T) ((|#2| |#2|) . T))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) . T))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) . T))
(((|#1|) . T))
(|has| |#2| (-904))
((((-1150) (-52)) . T))
@@ -312,7 +312,7 @@
(((|#1|) . T))
(((|#2| |#2|) . T))
(|has| |#1| (-1143))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) . T))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) . T))
(|has| (-1242 |#1| |#2| |#3| |#4|) (-144))
(|has| (-1242 |#1| |#2| |#3| |#4|) (-146))
(|has| |#1| (-144))
@@ -330,10 +330,10 @@
((($) . T) ((|#1|) . T))
(((|#2|) |has| |#2| (-1044)))
((((-857)) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((#0=(-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) #0#) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((#0=(-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) #0#) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))))
(((|#1|) . T))
-((((-1256 (-338 (-4066) (-4066 (QUOTE X)) (-693)))) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((#0=(-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) #0#) |has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))))
+((((-1256 (-338 (-4064) (-4064 (QUOTE X)) (-693)))) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((#0=(-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) #0#) |has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))))
((((-857)) . T))
((((-562) |#1|) . T))
((((-535)) -12 (|has| |#1| (-610 (-535))) (|has| |#2| (-610 (-535)))) (((-887 (-378))) -12 (|has| |#1| (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378))))) (((-887 (-562))) -12 (|has| |#1| (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562))))))
@@ -430,11 +430,11 @@
((((-143)) . T))
(((|#3|) |has| |#3| (-1092)) (((-562)) -12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092))) (((-406 (-562))) -12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092))))
((((-857)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(((|#1|) . T))
((((-857)) -4037 (|has| |#1| (-609 (-857))) (|has| |#1| (-845)) (|has| |#1| (-1092))))
((((-535)) |has| |#1| (-610 (-535))))
-((((-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) . T))
+((((-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) . T))
(|has| |#1| (-362))
((((-1173)) . T))
(-4037 (|has| |#1| (-21)) (|has| |#1| (-843)))
@@ -444,13 +444,13 @@
(|has| |#1| (-843))
(-4037 (|has| |#1| (-845)) (|has| |#1| (-1092)))
((((-857)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-535)) |has| |#1| (-610 (-535))))
(((|#1| |#2|) . T))
((((-1168)) -12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168)))))
((((-1150) |#1|) . T))
(((|#1| |#2| |#3| (-530 |#3|)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(|has| |#1| (-367))
(|has| |#1| (-367))
(|has| |#1| (-367))
@@ -654,7 +654,7 @@
(((|#4| |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))
(((|#2|) . T) (((-562)) |has| |#2| (-1033 (-562))) (((-406 (-562))) |has| |#2| (-1033 (-406 (-562)))))
(((|#3| |#3|) -12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092))))
-(((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))))
(((|#1|) . T))
(((|#1| |#2|) . T))
((($) . T))
@@ -662,7 +662,7 @@
(((|#2|) . T))
(((|#3|) . T))
(-4037 (|has| |#1| (-845)) (|has| |#1| (-1092)))
-(((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))))
(((|#2|) . T))
((((-857)) -4037 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-609 (-857))) (|has| |#2| (-171)) (|has| |#2| (-362)) (|has| |#2| (-367)) (|has| |#2| (-721)) (|has| |#2| (-788)) (|has| |#2| (-843)) (|has| |#2| (-1044)) (|has| |#2| (-1092))) (((-1256 |#2|)) . T))
((((-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((|#1|) . T) (((-562)) . T) (($) . T))
@@ -742,9 +742,9 @@
(-4037 (|has| |#1| (-451)) (|has| |#1| (-904)))
((((-562) |#2|) . T))
((((-857)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(((|#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))
((($) -4037 (|has| |#3| (-171)) (|has| |#3| (-843)) (|has| |#3| (-1044))) ((|#3|) -4037 (|has| |#3| (-171)) (|has| |#3| (-362)) (|has| |#3| (-1044))))
((((-562) |#1|) . T))
@@ -759,11 +759,11 @@
(|has| |#1| (-554))
(|has| |#1| (-38 (-406 (-562))))
(|has| |#1| (-38 (-406 (-562))))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-857)) . T))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) . T))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) . T))
(|has| |#1| (-38 (-406 (-562))))
-((((-387) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) . T))
+((((-387) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) . T))
(|has| |#1| (-38 (-406 (-562))))
(|has| |#2| (-1143))
(-4037 (|has| |#1| (-362)) (|has| |#1| (-554)))
@@ -982,7 +982,7 @@
(|has| |#2| (-171))
(((|#1| |#2|) . T))
(-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))
-(((|#2|) . T) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(-4037 (|has| |#3| (-788)) (|has| |#3| (-843)))
(-4037 (|has| |#3| (-788)) (|has| |#3| (-843)))
((((-857)) . T))
@@ -1013,10 +1013,10 @@
(((|#1| (-406 (-562))) . T))
(((|#3|) . T) (((-608 $)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(((|#1|) . T))
(((|#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-562)) -4037 (|has| |#2| (-171)) (|has| |#2| (-843)) (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092))) (|has| |#2| (-1044))) ((|#2|) -4037 (|has| |#2| (-171)) (|has| |#2| (-1092))) (((-406 (-562))) -12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092))))
(((|#1|) . T) (((-406 (-562))) . T) (($) . T))
((($ $) . T) ((|#2| $) . T))
@@ -1025,8 +1025,8 @@
((((-857)) . T))
((((-857)) . T))
(((|#1| |#1|) . T))
-(((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))))
-(((|#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) |has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))))
+(((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))))
+(((|#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) |has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))))
((((-857)) . T))
(((|#1|) . T))
(((|#3| |#3|) . T))
@@ -1039,7 +1039,7 @@
(|has| |#1| (-1092))
(((|#2| |#2|) -4037 (|has| |#2| (-171)) (|has| |#2| (-362)) (|has| |#2| (-1044))) (($ $) |has| |#2| (-171)))
(((|#2|) -4037 (|has| |#2| (-171)) (|has| |#2| (-362))))
-((((-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T) ((|#1| |#2|) . T))
+((((-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T) ((|#1| |#2|) . T))
(((|#2|) -4037 (|has| |#2| (-171)) (|has| |#2| (-362)) (|has| |#2| (-1044))) (($) |has| |#2| (-171)))
((((-1173)) . T))
((((-766)) . T))
@@ -1072,7 +1072,7 @@
(-4037 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-171)) (|has| |#2| (-362)) (|has| |#2| (-367)) (|has| |#2| (-721)) (|has| |#2| (-788)) (|has| |#2| (-843)) (|has| |#2| (-1044)) (|has| |#2| (-1092)))
(-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))
(|has| |#2| (-1143))
-(((#0=(-52)) . T) (((-2 (|:| -2320 (-1168)) (|:| -2694 #0#))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2319 (-1168)) (|:| -2693 #0#))) . T))
(((|#1| |#2|) . T))
(-4037 (|has| |#3| (-171)) (|has| |#3| (-843)) (|has| |#3| (-1044)))
(((|#1| (-562) (-1074)) . T))
@@ -1099,7 +1099,7 @@
((((-562)) -4037 (|has| |#3| (-171)) (|has| |#3| (-843)) (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092))) (|has| |#3| (-1044))) ((|#3|) -4037 (|has| |#3| (-171)) (|has| |#3| (-1092))) (((-406 (-562))) -12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092))))
(((|#1|) . T))
(((|#4|) . T) (((-857)) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((#0=(-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) #0#) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((#0=(-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) #0#) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))))
(|has| |#1| (-554))
(((|#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))
((((-857)) . T))
@@ -1159,7 +1159,7 @@
(-12 (|has| |#1| (-788)) (|has| |#2| (-788)))
(-4037 (|has| |#2| (-171)) (|has| |#2| (-843)) (|has| |#2| (-1044)))
(((|#2|) . T) (($) . T))
-(((|#2|) . T) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(|has| |#1| (-1192))
(((#0=(-562) #0#) . T) ((#1=(-406 (-562)) #1#) . T) (($ $) . T))
((((-406 (-562))) . T) (($) . T))
@@ -1189,7 +1189,7 @@
((($) . T) (((-406 (-562))) -4037 (|has| |#1| (-362)) (|has| |#1| (-348))) ((|#1|) . T))
(-4037 (|has| |#1| (-171)) (|has| |#1| (-554)))
((($) . T))
-(((#0=(-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) #0#) |has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))))
+(((#0=(-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) #0#) |has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))))
(|has| |#2| (-845))
((($) . T))
(((|#2|) |has| |#2| (-1092)))
@@ -1202,10 +1202,10 @@
((((-562)) |has| #0=(-406 |#2|) (-635 (-562))) ((#0#) . T))
((($) . T) (((-562)) . T))
((((-562) (-143)) . T))
-((((-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T) ((|#1| |#2|) . T))
+((((-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T) ((|#1| |#2|) . T))
((((-406 (-562))) . T) (($) . T))
(((|#1|) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-857)) . T))
((((-905 |#1|)) . T))
(|has| |#1| (-362))
@@ -1232,7 +1232,7 @@
((((-857)) . T))
((($) . T))
(((|#2|) . T) (($) . T))
-((((-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T) ((|#1| |#2|) . T))
+((((-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T) ((|#1| |#2|) . T))
(((|#1|) . T))
(((|#1|) |has| |#1| (-171)))
((($) |has| |#1| (-554)) ((|#1|) |has| |#1| (-171)) (((-406 (-562))) |has| |#1| (-38 (-406 (-562)))))
@@ -1246,7 +1246,7 @@
(((|#1|) . T))
((((-535)) |has| |#1| (-610 (-535))) (((-887 (-378))) |has| |#1| (-610 (-887 (-378)))) (((-887 (-562))) |has| |#1| (-610 (-887 (-562)))))
((((-857)) . T))
-(((|#2|) . T) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-505)) . T))
(|has| |#2| (-843))
((((-505)) . T))
@@ -1275,7 +1275,7 @@
(((|#1|) . T))
(((|#2|) . T))
((((-1168)) |has| (-406 |#2|) (-895 (-1168))))
-(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((#0=(-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) #0#) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((#0=(-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) #0#) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))))
((($) . T))
((($) . T))
(((|#2|) . T))
@@ -1286,7 +1286,7 @@
(((|#2|) . T) (((-562)) . T))
((((-857)) . T))
((((-857)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T) ((|#2|) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T) ((|#2|) . T))
((((-857)) . T))
((((-857)) . T))
((((-1150) (-1168) (-562) (-224) (-857)) . T))
@@ -1375,7 +1375,7 @@
((((-994 |#1|)) . T) ((|#1|) . T))
((((-857)) . T))
((((-857)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-406 (-562))) . T) (((-406 |#1|)) . T) ((|#1|) . T) (($) . T))
(((|#1| (-1164 |#1|)) . T))
((((-562)) . T) (($) . T) (((-406 (-562))) . T))
@@ -1383,7 +1383,7 @@
(|has| |#1| (-845))
(((|#2|) . T))
((((-562)) . T) (($) . T) (((-406 (-562))) . T))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) . T))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) . T))
((((-562) |#2|) . T))
((((-857)) -4037 (|has| |#1| (-609 (-857))) (|has| |#1| (-1092))))
(((|#2|) . T))
@@ -1398,7 +1398,7 @@
(|has| |#1| (-1092))
(|has| |#1| (-38 (-406 (-562))))
(|has| |#1| (-38 (-406 (-562))))
-(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((#0=(-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) #0#) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((#0=(-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) #0#) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))))
(((|#2| |#2|) . T))
(|has| |#1| (-38 (-406 (-562))))
(((|#2|) . T))
@@ -1433,7 +1433,7 @@
(((|#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))
(((|#1| |#2|) . T))
((((-562) (-143)) . T))
-(((#0=(-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) #0#) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))
+(((#0=(-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) #0#) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))
((($) -4037 (|has| |#1| (-451)) (|has| |#1| (-554)) (|has| |#1| (-904))) ((|#1|) |has| |#1| (-171)) (((-406 (-562))) |has| |#1| (-38 (-406 (-562)))))
(|has| |#1| (-845))
(((|#2| (-766) (-1074)) . T))
@@ -1477,7 +1477,7 @@
((((-387) (-1150)) . T))
((($) |has| |#1| (-554)) ((|#1|) |has| |#1| (-171)) (((-406 (-562))) |has| |#1| (-38 (-406 (-562)))))
((((-857)) -4037 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-609 (-857))) (|has| |#2| (-171)) (|has| |#2| (-362)) (|has| |#2| (-367)) (|has| |#2| (-721)) (|has| |#2| (-788)) (|has| |#2| (-843)) (|has| |#2| (-1044)) (|has| |#2| (-1092))) (((-1256 |#2|)) . T))
-(((#0=(-52)) . T) (((-2 (|:| -2320 (-1150)) (|:| -2694 #0#))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2319 (-1150)) (|:| -2693 #0#))) . T))
(((|#1|) . T))
((((-857)) . T))
(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))
@@ -1526,11 +1526,11 @@
(|has| |#1| (-146))
(((|#1|) . T))
(((|#2|) . T))
-(((|#1|) . T) (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
-((((-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) . T))
+(((|#1|) . T) (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
+((((-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) . T))
((((-1166 |#1| |#2| |#3|)) |has| |#1| (-362)))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-1168) (-52)) . T))
((($ $) . T))
(((|#1| (-562)) . T))
@@ -1577,11 +1577,11 @@
(|has| |#1| (-38 (-406 (-562))))
(-4037 (|has| |#1| (-362)) (|has| |#1| (-348)))
(|has| |#1| (-38 (-406 (-562))))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-1168)) |has| |#1| (-895 (-1168))) (((-1074)) . T))
(((|#1|) . T))
(|has| |#1| (-843))
-(((#0=(-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) #0#) |has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))))))
+(((#0=(-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) #0#) |has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))))))
(((|#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))
(|has| |#1| (-1092))
((((-857)) . T) (((-1173)) . T))
@@ -1627,7 +1627,7 @@
(((|#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))
(((|#1|) . T))
(((|#1| |#2|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((#0=(-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) #0#) |has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))))
+(((|#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((#0=(-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) #0#) |has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))))
(-4037 (|has| |#2| (-451)) (|has| |#2| (-904)))
(-4037 (|has| |#1| (-451)) (|has| |#1| (-904)))
(((|#1|) . T) (($) . T))
@@ -1652,7 +1652,7 @@
((((-406 (-562))) -4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-362))) (($) -4037 (|has| |#1| (-362)) (|has| |#1| (-554))) (((-1166 |#1| |#2| |#3|)) |has| |#1| (-362)) ((|#1|) |has| |#1| (-171)))
(((|#1|) |has| |#1| (-171)) (((-406 (-562))) -4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-362))) (($) -4037 (|has| |#1| (-362)) (|has| |#1| (-554))))
((($) |has| |#1| (-554)) ((|#1|) |has| |#1| (-171)) (((-406 (-562))) |has| |#1| (-38 (-406 (-562)))))
-((((-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) . T))
+((((-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) . T))
((((-406 |#2|)) . T) (((-406 (-562))) . T) (($) . T))
((((-666 |#1|)) . T))
(((|#1| |#2| |#3| |#4|) . T))
@@ -1720,7 +1720,7 @@
(((|#1|) . T))
(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))
((($ $) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((($ $) . T))
((((-562) (-112)) . T))
((($) . T))
@@ -1749,7 +1749,7 @@
(((|#1| (-1220 |#1| |#2| |#3|)) . T))
(((|#1| (-766)) . T))
(((|#1|) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-857)) . T))
(|has| |#1| (-1092))
((((-1150) |#1|) . T))
@@ -1788,7 +1788,7 @@
(|has| |#1| (-554))
(((|#1|) . T))
((((-857)) . T))
-(((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))))
(((|#1|) |has| |#1| (-171)))
((($) |has| |#1| (-554)) ((|#1|) |has| |#1| (-171)) (((-406 (-562))) |has| |#1| (-38 (-406 (-562)))))
(((|#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))
@@ -1807,7 +1807,7 @@
(|has| |#1| (-843))
(((|#1| (-562) (-1074)) . T))
(-4037 (|has| |#1| (-895 (-1168))) (|has| |#1| (-1044)))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(((|#1| (-406 (-562)) (-1074)) . T))
(((|#1| (-766) (-1074)) . T))
(|has| |#1| (-845))
@@ -1825,11 +1825,11 @@
(|has| |#1| (-1092))
((((-562)) -12 (|has| |#1| (-362)) (|has| |#2| (-635 (-562)))) ((|#2|) |has| |#1| (-362)))
(-4037 (|has| |#2| (-25)) (|has| |#2| (-130)) (|has| |#2| (-171)) (|has| |#2| (-362)) (|has| |#2| (-367)) (|has| |#2| (-721)) (|has| |#2| (-788)) (|has| |#2| (-843)) (|has| |#2| (-1044)) (|has| |#2| (-1092)))
-((((-683 (-338 (-4066) (-4066 (QUOTE X) (QUOTE HESS)) (-693)))) . T))
+((((-683 (-338 (-4064) (-4064 (QUOTE X) (QUOTE HESS)) (-693)))) . T))
(((|#2|) |has| |#2| (-171)))
(((|#1|) |has| |#1| (-171)))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) . T))
((((-857)) . T))
(|has| |#3| (-843))
((((-857)) . T))
@@ -1843,9 +1843,9 @@
(((|#2|) |has| |#2| (-362)))
((($) . T) ((|#1|) . T) (((-406 (-562))) |has| |#1| (-362)))
(|has| |#1| (-845))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(((|#2|) . T))
-((((-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) |has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))))
+((((-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) |has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))))
(-4037 (|has| |#1| (-451)) (|has| |#1| (-904)))
(((|#2|) . T) (((-562)) |has| |#2| (-635 (-562))))
((((-857)) . T))
@@ -1895,7 +1895,7 @@
((((-639 |#1|)) . T))
(|has| |#1| (-904))
(((|#2|) |has| |#2| (-1044)))
-(((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))))
(|has| |#1| (-362))
(((|#1|) |has| |#1| (-171)))
(((|#1| |#1|) . T))
@@ -1946,14 +1946,14 @@
((((-112)) |has| |#1| (-1092)) (((-857)) -4037 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-171)) (|has| |#1| (-362)) (|has| |#1| (-472)) (|has| |#1| (-721)) (|has| |#1| (-895 (-1168))) (|has| |#1| (-1044)) (|has| |#1| (-1104)) (|has| |#1| (-1092))))
(((|#1|) . T) (($) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) . T))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) . T))
((((-857)) . T))
((((-562) |#1|) . T))
((((-857)) . T))
((((-693)) . T) (((-406 (-562))) . T) (((-562)) . T))
(((|#1| |#1|) |has| |#1| (-171)))
(((|#2|) . T))
-(((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))))
((((-378)) . T))
((((-693)) . T))
((((-406 (-562))) . #0=(|has| |#2| (-362))) (($) . #0#))
@@ -1972,7 +1972,7 @@
(((|#3|) |has| |#3| (-1044)))
((((-1168)) |has| |#2| (-895 (-1168))))
((((-857)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-406 (-562))) . T) (($) . T))
(|has| |#1| (-472))
(|has| |#1| (-367))
@@ -2000,11 +2000,11 @@
(|has| |#1| (-38 (-406 (-562))))
(|has| |#1| (-38 (-406 (-562))))
(|has| |#1| (-845))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) . T))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) . T))
(((|#1| |#2|) . T))
(|has| |#1| (-146))
(|has| |#1| (-144))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) ((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) ((|#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))
(((|#2|) . T))
(((|#3|) . T))
((((-116 |#1|)) . T))
@@ -2022,7 +2022,7 @@
((((-535)) |has| |#1| (-610 (-535))) (((-887 (-562))) |has| |#1| (-610 (-887 (-562)))) (((-887 (-378))) |has| |#1| (-610 (-887 (-378)))) (((-378)) . #0=(|has| |#1| (-1017))) (((-224)) . #0#))
(((|#1|) |has| |#1| (-362)))
((((-857)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((($ $) . T) (((-608 $) $) . T))
(-4037 (|has| |#1| (-362)) (|has| |#1| (-554)))
((($) . T) (((-1242 |#1| |#2| |#3| |#4|)) . T) (((-406 (-562))) . T))
@@ -2084,7 +2084,7 @@
((((-947 |#1|)) . T) (((-857)) . T))
(((|#3|) . T))
(((|#1| |#1|) . T) (($ $) -4037 (|has| |#1| (-289)) (|has| |#1| (-362))) ((#0=(-406 (-562)) #0#) |has| |#1| (-362)))
-((((-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) . T))
+((((-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) . T))
((((-947 |#1|)) . T))
((($) . T))
((((-562) |#1|) . T))
@@ -2124,7 +2124,7 @@
((($) -4037 (|has| |#1| (-362)) (|has| |#1| (-348))) (((-406 (-562))) -4037 (|has| |#1| (-362)) (|has| |#1| (-348))) ((|#1|) . T))
((((-562)) . T))
(|has| |#1| (-38 (-406 (-562))))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) |has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))))))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) |has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))))))
(((|#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))
(|has| |#1| (-843))
(|has| |#1| (-38 (-406 (-562))))
@@ -2166,10 +2166,10 @@
((($) -4037 (|has| |#1| (-171)) (|has| |#1| (-362)) (|has| |#1| (-451)) (|has| |#1| (-554)) (|has| |#1| (-904))) ((|#1|) . T) (((-406 (-562))) |has| |#1| (-38 (-406 (-562)))))
((((-535)) |has| |#4| (-610 (-535))))
((((-857)) . T) (((-639 |#4|)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(((|#1|) . T))
(|has| |#1| (-843))
-(((|#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) |has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))))
+(((|#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) |has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))))
(|has| |#1| (-1092))
(|has| |#1| (-362))
(|has| |#1| (-845))
@@ -2211,7 +2211,7 @@
((((-857)) . T))
((((-857)) . T))
((((-535)) |has| |#1| (-610 (-535))))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-1168) |#1|) |has| |#1| (-513 (-1168) |#1|)) ((|#1| |#1|) |has| |#1| (-308 |#1|)))
(((|#1|) -4037 (|has| |#1| (-171)) (|has| |#1| (-362))))
((((-315 |#1|)) . T))
@@ -2239,7 +2239,7 @@
(|has| |#1| (-554))
(((|#2|) . T))
((((-562)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(((|#1|) . T))
(-4037 (|has| |#1| (-144)) (|has| |#1| (-146)) (|has| |#1| (-171)) (|has| |#1| (-554)) (|has| |#1| (-1044)))
((((-579 |#1|)) . T))
@@ -2250,7 +2250,7 @@
((($) . T))
(((|#1|) . T))
((((-857)) . T))
-(((|#2|) |has| |#2| (-6 (-4404 "*"))))
+(((|#2|) |has| |#2| (-6 (-4405 "*"))))
(((|#1|) . T))
(((|#1|) . T))
(((|#3|) . T))
@@ -2351,21 +2351,21 @@
(((|#1|) |has| |#1| (-171)))
((((-857)) . T))
(((|#4| |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))
-(((|#2|) -4037 (|has| |#2| (-6 (-4404 "*"))) (|has| |#2| (-171))))
+(((|#2|) -4037 (|has| |#2| (-6 (-4405 "*"))) (|has| |#2| (-171))))
(-4037 (|has| |#2| (-451)) (|has| |#2| (-554)) (|has| |#2| (-904)))
(-4037 (|has| |#1| (-451)) (|has| |#1| (-554)) (|has| |#1| (-904)))
(|has| |#2| (-845))
(|has| |#2| (-904))
(|has| |#1| (-904))
(((|#2|) |has| |#2| (-171)))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-1248 |#1| |#2| |#3|)) |has| |#1| (-362)))
((((-857)) . T))
((((-857)) . T))
((((-535)) . T) (((-562)) . T) (((-887 (-562))) . T) (((-378)) . T) (((-224)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) . T))
(((|#1|) . T))
((((-857)) . T))
(((|#1| |#2|) . T))
@@ -2387,7 +2387,7 @@
((((-857)) . T))
((((-857)) . T))
((((-186)) . T) (((-857)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(((|#2| |#2|) . T) ((|#1| |#1|) . T))
((((-857)) . T))
((((-857)) . T))
@@ -2400,7 +2400,7 @@
((((-857)) . T))
((((-1150)) . T))
((((-1168) |#1|) |has| |#1| (-513 (-1168) |#1|)) ((|#1| |#1|) |has| |#1| (-308 |#1|)))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) . T))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) . T))
(|has| |#1| (-845))
((((-857)) . T))
((((-535)) |has| |#1| (-610 (-535))))
@@ -2457,8 +2457,8 @@
(-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))
(-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))
(-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))
-((((-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) . T))
-(((#0=(-52)) . T) (((-2 (|:| -2320 (-1168)) (|:| -2694 #0#))) . T))
+((((-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2319 (-1168)) (|:| -2693 #0#))) . T))
(|has| |#1| (-348))
((((-562)) . T))
((((-857)) . T))
@@ -2535,7 +2535,7 @@
(|has| |#2| (-1017))
((($) . T))
(|has| |#1| (-904))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((($) . T))
(((|#2|) . T))
(((|#1|) . T))
@@ -2561,7 +2561,7 @@
((((-406 (-562))) . T))
(-4037 (|has| |#1| (-451)) (|has| |#1| (-554)) (|has| |#1| (-904)))
((((-1150)) . T) (((-857)) . T))
-(((#0=(-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) #0#) |has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))))
+(((#0=(-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) #0#) |has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))))
((((-1150)) . T))
(|has| |#1| (-904))
(|has| |#2| (-362))
@@ -2597,7 +2597,7 @@
(((|#2|) |has| |#1| (-362)))
(((|#2|) |has| |#1| (-362)))
((((-562)) . T) (($) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(((|#1|) . T))
(((|#1|) |has| |#1| (-171)))
(((|#1|) . T))
@@ -2637,9 +2637,9 @@
(((|#2|) . T))
(((|#2|) . T))
(-4037 (|has| |#2| (-171)) (|has| |#2| (-721)) (|has| |#2| (-843)) (|has| |#2| (-1044)))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(|has| |#1| (-38 (-406 (-562))))
(((|#1| |#2|) . T))
(|has| |#1| (-38 (-406 (-562))))
@@ -2761,7 +2761,7 @@
(|has| |#2| (-362))
((((-579 |#1|)) . T) (((-406 (-562))) . T) (($) . T) (((-562)) . T))
((((-562)) . T) (((-406 (-562))) . T) (($) . T))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) . T))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) . T))
(((|#1|) . T))
(((|#1|) . T) (((-562)) . T))
(((|#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))
@@ -2791,7 +2791,7 @@
((((-579 |#1|)) . T) (($) . T) (((-406 (-562))) . T))
((($) . T) (((-406 (-562))) . T))
((($) . T) (((-406 (-562))) . T))
-(((|#2|) |has| |#2| (-6 (-4404 "*"))))
+(((|#2|) |has| |#2| (-6 (-4405 "*"))))
(((|#1|) . T))
((((-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((|#1|) . T) (((-562)) . T))
(((|#1|) . T))
@@ -2819,7 +2819,7 @@
((($) -4037 (|has| |#1| (-171)) (|has| |#1| (-451)) (|has| |#1| (-554)) (|has| |#1| (-904))) ((|#1|) . T) (((-406 (-562))) |has| |#1| (-38 (-406 (-562)))))
((((-857)) . T))
(((|#1|) . T))
-((((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) . T))
+((((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -2936,7 +2936,7 @@
(((|#1|) . T))
((((-857)) . T))
(|has| |#2| (-904))
-((((-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) . T))
+((((-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) . T))
((((-535)) |has| |#2| (-610 (-535))) (((-887 (-378))) |has| |#2| (-610 (-887 (-378)))) (((-887 (-562))) |has| |#2| (-610 (-887 (-562)))))
((((-857)) . T))
((((-857)) . T))
@@ -3119,7 +3119,7 @@
((((-1206)) . T) (((-857)) . T) (((-1173)) . T))
((((-1173)) . T))
((((-1173)) . T))
-((((-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) |has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))))
+((((-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) |has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))))
(-4037 (|has| |#2| (-451)) (|has| |#2| (-554)) (|has| |#2| (-904)))
((((-562) |#1|) . T))
((((-562) |#1|) . T))
@@ -3311,7 +3311,7 @@
(-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788))))
((((-562)) . T))
((((-562)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(((|#1| |#2|) . T))
(((|#1|) . T))
(-4037 (|has| |#2| (-171)) (|has| |#2| (-721)) (|has| |#2| (-843)) (|has| |#2| (-1044)))
@@ -3411,11 +3411,11 @@
((((-1166 |#1| |#2| |#3|)) |has| |#1| (-362)))
((((-1132 |#1| |#2|)) . T))
((((-1166 |#1| |#2| |#3|)) |has| |#1| (-362)))
-(((|#2|) . T) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
-((((-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) . T))
+(((|#2|) . T) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
+((((-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) . T))
((($) . T))
(|has| |#1| (-1017))
-(((|#2|) . T) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
((((-857)) . T))
((((-535)) |has| |#2| (-610 (-535))) (((-887 (-562))) |has| |#2| (-610 (-887 (-562)))) (((-887 (-378))) |has| |#2| (-610 (-887 (-378)))) (((-378)) . #0=(|has| |#2| (-1017))) (((-224)) . #0#))
((((-293 |#3|)) . T))
@@ -3469,7 +3469,7 @@
((((-857)) . T))
((((-857)) . T))
(((|#1| (-530 |#2|)) . T))
-((((-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) . T))
+((((-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) . T))
((((-562) (-129)) . T))
(((|#1| (-562)) . T))
(((|#1| (-406 (-562))) . T))
@@ -3505,7 +3505,7 @@
(((|#1| |#2|) . T))
((((-1150) |#1|) . T))
((((-406 |#2|)) . T))
-((((-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T))
+((((-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T))
(|has| |#1| (-554))
(|has| |#1| (-554))
((($) . T) ((|#2|) . T))
@@ -3533,7 +3533,7 @@
(((|#1| |#2| |#3| |#4|) . T))
(((#0=(-1132 |#1| |#2|) #0#) |has| (-1132 |#1| |#2|) (-308 (-1132 |#1| |#2|))))
(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((#0=(-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) #0#) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((#0=(-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) #0#) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))))
(((#0=(-116 |#1|)) |has| #0# (-308 #0#)))
((($ $) . T))
(-4037 (|has| |#1| (-845)) (|has| |#1| (-1092)))
diff --git a/src/share/algebra/compress.daase b/src/share/algebra/compress.daase
index 8ff9c59d..5f51ab94 100644
--- a/src/share/algebra/compress.daase
+++ b/src/share/algebra/compress.daase
@@ -1,6 +1,6 @@
-(30 . 3442535945)
-(4405 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
+(30 . 3442698062)
+(4406 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
ATTRIBUTE |package| |domain| |category| CATEGORY |nobranch| AND |Join|
|ofType| SIGNATURE "failed" "algebra" |OneDimensionalArrayAggregate&|
|OneDimensionalArrayAggregate| |AbelianGroup&| |AbelianGroup|
@@ -477,662 +477,662 @@
|XPolynomial| |XPolynomialRing| |XRecursivePolynomial|
|ParadoxicalCombinatorsForStreams| |ZeroDimensionalSolvePackage|
|IntegerLinearDependence| |IntegerMod| |Enumeration| |Mapping|
- |Record| |Union| |conditionP| |externalList| |rational|
- |positiveRemainder| |exptMod| |changeThreshhold| |cTan| |iisin|
- |forLoop| |fortranLiteral| |f02bbf| |recoverAfterFail| |approxSqrt|
- |readLineIfCan!| |lfextlimint| |mapGen| |leftDiscriminant|
- |fractRadix| |slash| |multiple?| |reduceLODE| |inf|
- |componentUpperBound| |multiEuclidean| |OMgetSymbol|
- |monomialIntegrate| |powern| |normal?| |complexIntegrate| |rotatey|
- |ignore?| |iiacoth| |powerAssociative?| |primitive?| |e02dff|
- |addBadValue| |nor| |patternMatchTimes| |normalise| |exponents|
- |divisor| |reverseLex| |s17def| |fortran| |exprToGenUPS| |npcoef|
- |antisymmetric?| |nonSingularModel| |extendedResultant| |startStats!|
- |sncndn| |setIntersection| |midpoint| |selectPDERoutines|
- |OMgetInteger| |closeComponent| |infinite?| |radicalEigenvectors|
- |droot| |consnewpol| |setUnion| |stoseInvertible?| |factorial|
- |characteristicSet| |extend| |loopPoints| |OMgetAtp| |tanNa| |B1solve|
- |routines| |intcompBasis| |apply| |mapMatrixIfCan| |pointColorDefault|
- |vspace| |basisOfMiddleNucleus| |imagi| |ideal| |baseRDEsys|
- |currentEnv| |commutativeEquality| |nil| |upperCase?| |convergents|
- |e04naf| |setClosed| |exportedOperators| |chainSubResultants|
- |constantKernel| |monomial| |rightPower| |f01brf| |insertBottom!|
- |size| |paren| |karatsuba| |call| |cross| |intPatternMatch|
- |getStream| |ScanFloatIgnoreSpaces| |multivariate| |hconcat|
- |torsion?| |diophantineSystem| |postfix| |sort| |commutative?|
- |product| |OMcloseConn| |sorted?| |solveLinear| |createGenericMatrix|
- |variables| UTS2UP |zerosOf| |nthr| |approximate| |function|
- |infRittWu?| |chvar| |primitivePart!| |cAsin| |redPol|
- |quasiAlgebraicSet| |d03faf| |monicModulo| |id| |optpair| |complex|
- |resultantEuclidean| |qelt| |first| |evaluateInverse| |clipSurface|
- |twist| |insertRoot!| |usingTable?| |linear| |OMUnknownSymbol?|
- |normalizedAssociate| |internalAugment| |qsetelt| |birth| |eval|
- |rest| |HermiteIntegrate| |semiSubResultantGcdEuclidean1|
- |outputAsScript| |sn| |symmetricPower| |shallowExpand|
- |fortranCharacter| |asinIfCan| |table| |elseBranch| |unitNormal|
- |identification| |substitute| |random| |xRange| |close| |printInfo!|
- |paraboloidal| |zeroDimensional?| |polynomial| |coleman|
- |algebraicDecompose| |s17adf| |new| |removeDuplicates| |point|
- |pdf2df| |yRange| |cot2trig| |connect| |obj| |intermediateResultsIF|
- |createMultiplicationMatrix| |leadingTerm| |taylor| |expandPower|
- |clearDenominator| |search| |prepareSubResAlgo| |cup| |remove|
- |getConstant| |readBytes!| |zRange| |display| |cylindrical| |cache|
- |script| BY |doubleFloatFormat| |laurent| |setMinPoints3D| |bat|
- |block| |getGraph| |map!| |varselect| |dAndcExp| |rationalFunction|
- |pushuconst| |tower| |pushdterm| |constant| |primitivePart| |puiseux|
- |getVariableOrder| |rk4qc| |rootOf| |series| |last| |qsetelt!|
- |setref| |numFunEvals3D| |subSet| |drawComplex| |factors| |solid|
- |setvalue!| |OMlistCDs| |tensorProduct| |assoc|
- |reducedContinuedFraction| |generalizedEigenvectors|
- |genericLeftTrace| |nextColeman| |keys| |nextsousResultant2| |tex|
- |fortranReal| |times!| |inv| |viewWriteDefault| |limitedIntegrate|
- |subresultantSequence| |scopes| |divideExponents|
- |useSingleFactorBound| |headReduce| |idealSimplify| |ground?|
- |leftDivide| |imagK| |zoom| |iprint| |curve| |linkToFortran| |input|
- |d02bhf| |cotIfCan| |diagonal?| |mat| |isPlus| |ground| |normalForm|
- |leftMult| |d01amf| |min| |tubeRadius| |splitSquarefree| |library|
- |BumInSepFFE| |fortranComplex| |iiatan| |gcdcofact| |noKaratsuba|
- |leadingMonomial| |subTriSet?| |complexNumeric| |adjoint| |lcm|
- |minimalPolynomial| |acsch| |solveInField| |collect|
- |linearlyDependent?| |index?| |maximumExponent| |showArrayValues|
- |leadingCoefficient| |evenlambert| |rules| |upperCase| |euclideanSize|
- |indicialEquations| |factorGroebnerBasis| |mainValue| |backOldPos|
- |mapUp!| |kernels| |leadingExponent| |rischDE| |primitiveMonomials|
- |permutations| |left| |nonQsign| |range| |cAcsc| |append| |subMatrix|
- |dmpToHdmp| |completeHensel| |rangePascalTriangle| |safetyMargin|
- |dimensionsOf| |univariate| |super| |reductum| |right| |clikeUniv|
- |rootRadius| |overlap| |gcd| |trueEqual| |set|
- |lastSubResultantElseSplit| |merge| |divisorCascade| |augment|
- |pointColor| |lowerCase!| |false| |lazyPseudoRemainder| |seriesSolve|
- |integerIfCan| |solve1| |cosSinInfo| |basisOfRightNucleus| |bringDown|
- |closed?| |complementaryBasis| |sum| |semiIndiceSubResultantEuclidean|
- |s21baf| |isExpt| |argumentList!| |impliesOperands| |exponentialOrder|
- |getMeasure| |intensity| |univariatePolynomials| |factor|
- |traceMatrix| |primextendedint| |lagrange| |leftRemainder|
- |semiResultantEuclideannaif| |functionIsOscillatory| |splitLinear|
- |sqrt| |permutationRepresentation| |int| |complexRoots|
- |fortranLogical| |f02akf| |predicates| |lambert| |setFieldInfo|
- |rootProduct| |df2fi| |palglimint0| |numeric| |thetaCoord| |real|
- |saturate| |distdfact| |leftFactorIfCan| |list?| |makeResult| |lp|
- |monicRightDivide| |genericRightTrace| |radical| |cAtan| |reseed|
- |member?| |imag| |leftRegularRepresentation| |ptree|
- |subscriptedVariables| |argscript| |trigs| |eigenMatrix| |minPoly|
- |decrease| |directProduct| |leftNorm| |leftUnits| |multMonom|
- |realEigenvectors| |OMputEndError| |symmetricRemainder| |mapDown!|
- |clearTable!| |showSummary| |sequences| |increase| |UpTriBddDenomInv|
- |setFormula!| |iipow| |numberOfMonomials| |cycles| |generalSqFr|
- |tValues| |constantOpIfCan| |acscIfCan| |subNodeOf?| |specialTrigs|
- |e01sef| |brace| |addPointLast| |deepExpand| |groebSolve|
- |innerSolve1| |equivOperands| |hash| |mathieu12| |showAttributes|
- |chiSquare| |vconcat| |monomRDEsys| |coord| |destruct| |getOrder|
- |setright!| |branchPoint?| |parts| |resultantEuclideannaif| |show|
- |count| |var1StepsDefault| |subHeight| |rationalIfCan| |bat1|
- |modularGcdPrimitive| |OMgetEndAtp| |symbol| = |resultantReduit|
- |xCoord| |numberOfImproperPartitions| |readInt8!| |monicLeftDivide|
- |makeprod| |imagj| |functionIsContinuousAtEndPoints| |nlde| |unravel|
- |leviCivitaSymbol| |expression| |any?| |pToDmp| |perfectSquare?|
- |semiSubResultantGcdEuclidean2| |trace| |cot2tan| |rightRank| |lo|
- |newSubProgram| F2FG |modifyPointData| |highCommonTerms| |pole?|
- |integer| |d01gbf| < |acothIfCan| |legendre| |exquo| |every?|
- |printStats!| |newLine| |incr| |ScanRoman| |identity|
- |SturmHabichtMultiple| |doubleResultant| |qfactor| > |div| |cosh2sech|
- |radPoly| |is?| |tanh2coth| |removeCosSq| |satisfy?|
- |stoseSquareFreePart| |iiacsch| |subscript| |rootSplit| |limitedint|
- <= |opeval| |quo| |constantOperator| |generalPosition| |c06fuf|
- |fortranDouble| |c06fpf| |removeIrreducibleRedundantFactors|
- |halfExtendedResultant1| |mainForm| |distFact| |separateFactors| >=
- |label| |sample| |superHeight| |mathieu22| |rightFactorIfCan|
- |duplicates?| |read!| |ref| |curveColor|
- |initializeGroupForWordProblem| |invmod| |screenResolution3D| |rem|
- |collectUpper| |equiv?| |invertibleSet| |setProperty| |rootPoly|
- |tubePlot| |simplifyLog| |infieldIntegrate| |predicate| |zeroOf| |zag|
- |bezoutDiscriminant| |fortranInteger| |inR?| |imagE|
- |parabolicCylindrical| |iiabs| |totalfract| |redpps|
- |axesColorDefault| |doubleRank| |genericLeftNorm| |symmetricGroup| +
- |numFunEvals| |leadingIdeal| |currentSubProgram| |multiset|
- |listLoops| |setVariableOrder| |combineFeatureCompatibility|
- |graphStates| |hMonic| |xn| |normalElement| |linearDependence| -
- |initiallyReduce| |readByte!| |lastSubResultant| |subresultantVector|
- |copyInto!| |showFortranOutputStack| |assign| |oddintegers| |maxint|
- |ScanArabic| / |makeop| |readIfCan!| |open?| |coth2tanh| |binding|
- |idealiserMatrix| |lflimitedint| |completeSmith| |besselK| |c06gbf|
- |nthExpon| |OMgetFloat| |triangulate| |symbol?| |term| |inconsistent?|
- |constructor| |rationalPoint?| |iilog| |fi2df| |weights| |trunc|
- |mkIntegral| |parabolic| |lazyPseudoQuotient| |euclideanGroebner|
- |inRadical?| |OMmakeConn| |sqfree| |monomials| |readInt32!| |nthRoot|
- |lazyEvaluate| |indiceSubResultantEuclidean| |binarySearchTree|
- |option| |rightRemainder| |realEigenvalues| |tanIfCan|
- |defineProperty| |order| |addMatchRestricted| |structuralConstants|
- |moreAlgebraic?| |extract!| |complexForm| |trailingCoefficient|
- |reciprocalPolynomial| |computeCycleLength| |cAcos| |OMputEndBVar|
- |commutator| |members| |parameters| |palgextint|
- |antisymmetricTensors| |setEpilogue!| |commonDenominator| |nothing|
- |e02bdf| |roughSubIdeal?| |d02kef| |shuffle| |selectOrPolynomials|
- |rename!| |f04axf| |imagk| |leadingIndex| |setRow!| |weight|
- |internalZeroSetSplit| |setOrder| |bag| |readable?| |number?| |equiv|
- |setOfMinN| |var2StepsDefault| |terms| |derivative| |safeFloor|
- |makeEq| |s17acf| |lift| |showTypeInOutput| |fortranCompilerName|
- |branchPointAtInfinity?| |OMopenFile| |minPoints3D| |sincos|
- |invertibleElseSplit?| |matrixConcat3D| |zero?| |rowEchelonLocal|
- |univariate?| |reduce| |polar| |one?| |regularRepresentation|
- |ScanFloatIgnoreSpacesIfCan| |exponent| |FormatRoman| |complexZeros|
- |outputGeneral| |SFunction| |rightScalarTimes!| |fullDisplay|
- |outputList| |rightTrim| |f02fjf| |s17dlf| |nthFractionalTerm|
- |calcRanges| |viewWriteAvailable| |bivariateSLPEBR| |biRank| |gcdprim|
- |continuedFraction| |balancedBinaryTree| |style| |leftTrim|
- |antiCommutative?| |integral| |Lazard2| |complexElementary| |Is|
- |totalDegree| |ran| |sPol| |hclf| |minPoints| |printStatement|
- |definingEquations| |central?| |primPartElseUnitCanonical|
- |outputForm| |triangularSystems| |s17dhf| |reducedDiscriminant|
- |lookup| |c06gqf| |cAcot| |iExquo| |cExp| |univariatePolynomial|
- |build| |symFunc| |permanent| |generalTwoFactor| |oddlambert| |low|
- |findCycle| |boundOfCauchy| UP2UTS |factorAndSplit|
- |decreasePrecision| |realRoots| |explicitlyFinite?| |decompose|
- |showTheSymbolTable| |restorePrecision| |invertible?| |divideIfCan|
- |socf2socdf| |transcendent?| |problemPoints| |leftMinimalPolynomial|
- |iicoth| |sech2cosh| |graphImage| |cCos| |tRange| |sinhcosh| |li|
- |binaryTree| |createIrreduciblePoly| |stopMusserTrials|
- |factorsOfDegree| |stoseInvertibleSetsqfreg| |weakBiRank| |reorder|
- |OMgetBVar| |isTimes| |iicsch| |HenselLift| |indiceSubResultant|
- |bindings| |algint| |OMgetEndApp| |green| |sizeMultiplication|
- |c06ecf| |updatF| |OMgetType| |returnType!| |aCubic| |mathieu24|
- |iicosh| |cyclePartition| |bipolar| |curve?| |rootSimp|
- |halfExtendedSubResultantGcd1| |f02ajf| |karatsubaOnce| |shellSort|
- |c06gcf| |tubeRadiusDefault| |poisson| |getExplanations| |adaptive3D?|
- |mainVariable?| |shiftRoots| |meshPar1Var| |presub|
- |leftExactQuotient| |minimumDegree| |iteratedInitials| |hessian|
- |component| |divide| |iiacos| |and?| |singularAtInfinity?|
- |splitNodeOf!| |d02bbf| |complexEigenvectors| |e04fdf| |Beta| |hi|
- |leftAlternative?| |normDeriv2| |eulerE| |indices| |exactQuotient|
- |ellipticCylindrical| |definingPolynomial| |quotient| |rowEch|
- |c06frf| |showAllElements| |numberOfFactors| |s19acf| |pushdown|
- |listConjugateBases| |froot| |particularSolution|
- |fullPartialFraction| |localAbs| |updateStatus!| |moebius|
- |setPosition| |imaginary| |signAround| |exprex| |OMsupportsCD?|
- |genus| |rightUnit| |harmonic| |factorByRecursion| |nextSublist|
- |quatern| |knownInfBasis| |elRow2!| |eyeDistance| |e02baf|
- |radicalSimplify| |mathieu11| |gramschmidt| |symmetricDifference|
- |perfectNthPower?| |minimumExponent| |recur| |quadraticForm| |nand|
- |pr2dmp| |repeating| |nthFlag| |lyndon| |elliptic?| |linSolve|
- |setTopPredicate| |normalizeAtInfinity| |primlimitedint|
- |jordanAlgebra?| |useSingleFactorBound?| |lex| |dioSolve| |iiacosh|
- |iibinom| |solveid| |ip4Address| |maxrow| |test| |unitNormalize|
- |symmetricSquare| |printingInfo?| |tan2cot| |f04jgf| |eulerPhi|
- |e02agf| |clipParametric| |s21bcf| |maxrank| |f02aaf| |PDESolve|
- |limit| |generate| |leadingCoefficientRicDE| |top!| |rdregime|
- |palgextint0| |measure| |rank| |findBinding| |hermite| |split|
- |bounds| |prefix| |selectFiniteRoutines| |toseInvertibleSet|
- |returnTypeOf| |clipPointsDefault| |randnum| |lighting|
- |GospersMethod| |string?| |associatedSystem| |swapRows!|
- |leftExtendedGcd| |airyBi| |OMputInteger| |OMreadStr| |depth|
- |leftRank| |messagePrint| |extendedSubResultantGcd| |f04asf| |e04jaf|
- |genericRightNorm| |evenInfiniteProduct| |att2Result| |showTheIFTable|
- |squareMatrix| |arbitrary| |basisOfLeftAnnihilator| |corrPoly|
- |roughUnitIdeal?| |patternVariable| |setProperties!|
- |outputBinaryFile| |column| |showRegion| |identitySquareMatrix|
- |sortConstraints| |lowerPolynomial| |mappingAst| |rootPower|
- |Vectorise| |double?| |null| |lquo| |d01bbf| |s17ajf| |hspace|
- |setScreenResolution| |iiasec| |rightDivide|
- |stoseIntegralLastSubResultant| |critMonD1| |nil?| |zeroDim?|
- |innerEigenvectors| |computeBasis| |OMreceive|
- |halfExtendedSubResultantGcd2| |not| |legendreP| |character?|
- |createThreeSpace| |external?| |dim| |readInt16!| |sumOfDivisors|
- |uniform01| |startTableInvSet!| |and| |norm| |setValue!|
- |LazardQuotient| |s14baf| |setPredicates| |radicalEigenvalues|
- |cyclicGroup| |split!| |or| |complete|
- |removeRoughlyRedundantFactorsInContents| |frobenius|
- |setAttributeButtonStep| |meatAxe| |sh| |mathieu23| |s13acf|
- |remainder| |xor| |rCoord| |quasiComponent| |critT| |setLabelValue|
- |e01bgf| |createNormalPoly| |tubePointsDefault| |inputBinaryFile|
- |e01saf| |qualifier| |case| |sign| |diag| |squareFreePrim| |minordet|
- |OMputObject| |outputSpacing| |createPrimitiveElement| |cTanh|
- |exactQuotient!| |Zero| |laurentIfCan| |rubiksGroup| |univariateSolve|
- |aLinear| |swap| |bezoutMatrix| |polyred| |One| |totalGroebner|
- |cycleLength| |directSum| |/\\|
- |generalizedContinuumHypothesisAssumed?| |gethi| |setProperty!|
- |exQuo| |sqfrFactor| |zeroSetSplit| |partitions|
- |nativeModuleExtension| |returns| |\\/| |horizConcat| |lazyPquo|
- |monic?| |solveLinearPolynomialEquationByRecursion| |ksec| |expIfCan|
- |mainCharacterization| |extractClosed| |finiteBound| |nullSpace|
- |removeCoshSq| |key| |complexNumericIfCan| |delay| |makeSketch|
- |unary?| |viewport2D| |s18aff| |getSyntaxFormsFromFile| |center|
- |strongGenerators| |subset?| |categoryFrame| |limitPlus|
- |partialQuotients| |OMsetEncoding| |dn| |filename| |addMatch|
- |polygon| |monicRightFactorIfCan| |iiasinh| |alphabetic?|
- |appendPoint| |elt| |overlabel| |fintegrate| |coerceS| |hexDigit|
- |nextNormalPoly| |not?| |second| |LyndonWordsList1| |plot| |iisinh|
- |toseInvertible?| |rightNorm| |stFuncN| |curry| |parse| |third|
- |zeroVector| |f04faf| |polarCoordinates| |tablePow| |logGamma|
- |OMencodingXML| |e02daf| |alphabetic| |quotedOperators| |getOperands|
- |representationType| |laplacian| |dec| |leftScalarTimes!| |acoshIfCan|
- |pseudoQuotient| |point?| |numberOfFractionalTerms| |mesh| |quickSort|
- |rightAlternative?| |mkAnswer| |semiResultantReduitEuclidean|
- |trace2PowMod| |c06eaf| |curveColorPalette| |absolutelyIrreducible?|
- |removeZero| |lintgcd| |deepestTail| |acschIfCan| |enqueue!|
- |showScalarValues| |linearAssociatedExp| |lazyGintegrate| |viewport3D|
- |e04gcf| |topPredicate| |infiniteProduct| |laguerreL| |qroot|
- |polyPart| |palgRDE0| |f01rdf| |expr| |e02zaf| |reducedSystem|
- |innerint| |heap| |bytes| |pquo| |entries| |shanksDiscLogAlgorithm|
- |reopen!| |lazyVariations| |rquo| |kmax| |e02aef| |measure2Result|
- |OMencodingSGML| |systemCommand| |kind| |rightTrace| |e02akf|
- |cyclic?| |numberOfDivisors| |wrregime| |unmakeSUP| |element?|
- |fixedPoint| |palgintegrate| |op| |nextPrimitivePoly| |logical?|
- |removeSquaresIfCan| |reduceBasisAtInfinity| |associator| |divisors|
- |localIntegralBasis| |e01daf| |stack| |scaleRoots| |RittWuCompare|
- |se2rfi| |variable| |extractPoint| |aQuartic| |reverse!|
- |abelianGroup| |complement| |complex?| |normal|
- |inverseIntegralMatrixAtInfinity| |maxColIndex| |iterators|
- |discriminant| |printHeader| |selectSumOfSquaresRoutines|
- |genericLeftTraceForm| |deleteRoutine!| |domainOf| |lexGroebner|
- |stoseInvertibleSetreg| |nilFactor| |changeWeightLevel|
- |primextintfrac| |index| |swapColumns!| |isOpen?| |argumentListOf|
- |iiasin| |extractProperty| |integral?| |basisOfCommutingElements|
- |f02agf| |writeUInt8!| |viewZoomDefault| |sylvesterMatrix|
- |OMunhandledSymbol| |OMclose| |radix| |endSubProgram|
- |extendedIntegrate| |infinityNorm| |compiledFunction| |ode1|
- |nextLatticePermutation| |loadNativeModule| |rightLcm|
- |replaceKthElement| |elRow1!| |OMreadFile| |leftQuotient| |lowerCase?|
- |union| |inverseLaplace| |zeroMatrix| |pair| |startTable!|
- |eigenvalues| |leadingSupport| |minset| |expandTrigProducts| |axes|
- |mulmod| |numberOfComputedEntries| |stoseInternalLastSubResultant|
- |createPrimitivePoly| |createPrimitiveNormalPoly| |orthonormalBasis|
- |bivariate?| |stopTableGcd!| |cCoth| |zCoord| |showIntensityFunctions|
- |s14abf| |ListOfTerms| |OMputVariable| |OMputEndAtp| |lSpaceBasis|
- |systemSizeIF| |validExponential| |rowEchelon| |extractIfCan|
- |listBranches| |callForm?| |dark| |principalIdeal| |f02xef|
- |transpose| |s13aaf| |double| |minPol| |patternMatch| |value| |seed|
- |exprHasWeightCosWXorSinWX| |Ei| |complexSolve| |roughBase?|
- |rewriteIdealWithHeadRemainder| |cyclicSubmodule| |coordinate|
- |removeSuperfluousQuasiComponents| |copy!| |rightRecip| |presuper|
- |primeFactor| |graphCurves| |bottom!| |doubleDisc|
- |getMultiplicationTable| |f04qaf| |degreeSubResultantEuclidean|
- |scalarMatrix| |repeating?| |polynomialZeros| |truncate| |cyclic|
- |clearFortranOutputStack| |zeroSetSplitIntoTriangularSystems|
- |palgint0| |pade| |dimensions| |removeSinSq| |triangSolve| |spherical|
- |removeRedundantFactorsInPols| |distance| |sizeLess?| |equality|
- |nthRootIfCan| |log2| |normalized?| |capacity| |getlo| |OMParseError?|
- |LyndonWordsList| |scan| |characteristic| |jordanAdmissible?| |mindeg|
- |newTypeLists| |writeLine!| |invmultisect| |retractable?|
- |lazyPremWithDefault| |rule| |check| |primintegrate| |df2st|
- |sinh2csch| |quadratic?| |prinshINFO| |say| |anticoord| |c02agf|
- |e01bff| |bumptab| |s17ahf| |monicCompleteDecompose| |cyclotomic|
- |declare!| |asinhIfCan| |ceiling| |linear?| |factorFraction|
- |interpolate| |ddFact| |arrayStack| |pmComplexintegrate|
- |OMgetEndBVar| |fortranCarriageReturn| |cycleTail| |roman|
- |extendedint| |polygon?| |UnVectorise| |normalizeIfCan|
- |groebnerIdeal| |lllp| |c05pbf| |pseudoDivide| |monicDivide|
- |createNormalElement| |rdHack1| |critMTonD1| |OMputEndAttr|
- |basisOfLeftNucloid| |OMputBind| |dfRange| |realZeros| |traverse|
- |updatD| |mapUnivariateIfCan| |numericIfCan| |setImagSteps| |makeCrit|
- |quadratic| |symmetricProduct| |connectTo| |prime| |f01ref| |mdeg|
- |notelem| |reducedForm| |showTheFTable| |eof?| |romberg| |univcase|
- |void| |reset| |basicSet| |reflect| |vertConcat| |omError| |formula|
- |cCot| |sayLength| |rowEchLocal| |partition| |unvectorise|
- |indicialEquationAtInfinity| |e01bef| |drawStyle| |normal01|
- |flagFactor| |integrate| |cyclicEqual?| |segment|
- |leftCharacteristicPolynomial| |duplicates| |write| |merge!| |cAsinh|
- |companionBlocks| |hyperelliptic| |reverse| |s18acf|
- |integralRepresents| |critB| |createZechTable| |interval| |save|
- |directory| |Nul| |goodPoint| |setfirst!| |makeCos| |crushedSet|
- |cAsech| |curryLeft| |checkForZero| |e04ycf| |entry| |rotatez|
- |integralMatrixAtInfinity| |internalInfRittWu?| |mainPrimitivePart|
- |nrows| |nextIrreduciblePoly| |normFactors| |components|
- |rightExtendedGcd| |stFunc2| |pdf2ef| |selectPolynomials| |rur|
- |quasiMonic?| |ncols| |denomRicDE| |certainlySubVariety?| |tanAn|
- |useEisensteinCriterion| |currentCategoryFrame| |OMgetEndAttr| |fill!|
- |prime?| |comment| |wordsForStrongGenerators| |nodes|
- |principalAncestors| |maxPoints3D| |failed?| |removeZeroes|
- |checkPrecision| |ReduceOrder| |factorSquareFreeByRecursion| |debug3D|
- |oddInfiniteProduct| |buildSyntax| |whileLoop| |term?| |complexExpand|
- |expt| |partialNumerators| |fractionPart| |push!| |parents| |color|
- |unparse| |gcdPolynomial| |fortranTypeOf| |leftRankPolynomial|
- |upperCase!| |stiffnessAndStabilityFactor| |box|
- |inputOutputBinaryFile| |viewThetaDefault| |stripCommentsAndBlanks|
- |iidsum| |prevPrime| |addiag| |rationalPoints| |prod| |flatten|
- |solveLinearlyOverQ| |linearMatrix| |addPoint| |escape| |OMconnectTCP|
- |rootBound| |pow| |d02ejf| |purelyAlgebraic?| |leadingBasisTerm|
- |headReduced?| |concat| |internalSubPolSet?| |groebner| |setStatus|
- |expintfldpoly| |orbit| |semiDiscriminantEuclidean|
- |selectIntegrationRoutines| |top| |denomLODE| |cothIfCan| |endOfFile?|
- |moduloP| |PollardSmallFactor| |OMgetString| |whatInfinity|
- |minRowIndex| |basisOfLeftNucleus| |generalizedInverse| |child|
- |expenseOfEvaluation| |linGenPos| |graphs| |cSec| |digamma|
- |ramified?| |numberOfVariables| |permutation| |csc2sin|
- |unitCanonical| |true| |squareFreePart| |characteristicSerie|
- |makeViewport3D| |exprToUPS| |anfactor| |belong?| |setErrorBound|
- |charthRoot| |iterationVar| |cap| |s20adf| |jacobiIdentity?| |lyndon?|
- |aspFilename| |OMgetApp| |d01alf| |Hausdorff| |cSinh| |iicot|
- |extension| |e02gaf| |rightDiscriminant| |expint| |charClass|
- |optional?| |lists| |listOfLists| |e04mbf| |prefixRagits|
- |processTemplate| |argument| |viewDefaults| |getButtonValue|
- |compactFraction| |henselFact| |OMwrite| |quoByVar| |resultant|
- |mapExponents| |trapezoidal| |conjug| |rewriteSetWithReduction|
- |extractTop!| |outerProduct| |edf2df| |contains?| |vectorise|
- |signature| |f01qdf| |leastMonomial| |LyndonBasis| |atom?|
- |associative?| |flexibleArray| |varList| |clipBoolean| |d03eef|
- |e02def| |variationOfParameters| |sts2stst| |tanintegrate| |byte|
- |totalLex| |coerceP| |OMReadError?| |generalLambert| |credPol|
- |points| |mapExpon| |getIdentifier| |perfectSqrt| |constantLeft|
- |nary?| |transform| |Aleph| |pToHdmp| |rightUnits| |principal?|
- |operator| |inverseColeman| |delete!| |rk4a| |delete| |s21bdf|
- |sumOfKthPowerDivisors| |setEmpty!| |btwFact| |matrix| |c06ekf|
- |shade| |genericPosition| |mainContent| |initiallyReduced?| |ipow|
- |numerators| |d01apf| |vedf2vef| |composites|
- |unrankImproperPartitions1| |shiftRight| |algDsolve| |host| |pile|
- |accuracyIF| |setProperties| |KrullNumber| |minimize| |s19aaf|
- |children| |optimize| |pushucoef| |position!| |removeRedundantFactors|
- |zero| |f02axf| |latex| |packageCall| |power!| |OMUnknownCD?|
- |setchildren!| |symbolIfCan| |llprop| |nextPrimitiveNormalPoly|
- |squareFree| |associates?| |badValues| |lazyPseudoDivide| |reduction|
- |And| |parametersOf| |viewSizeDefault| |bit?| |cscIfCan| |sequence|
- |sdf2lst| |physicalLength!| |neglist| |critpOrder| |singRicDE| |Or|
- |atanhIfCan| |finite?| |ridHack1| |digit?| |lfintegrate| |cond|
- |atrapezoidal| |Not| |colorDef| |approximants| |generateIrredPoly|
- |rewriteIdealWithQuasiMonicGenerators| |gcdcofactprim|
- |probablyZeroDim?| |symmetric?| |primintfldpoly| |mainCoefficients|
- |useNagFunctions| |bracket| |symmetricTensors| |OMgetEndObject|
- |weighted| |plus| |resetBadValues| |orbits| |cyclicParents|
- |rightCharacteristicPolynomial| |cfirst| |rightRegularRepresentation|
- |plotPolar| |shallowCopy| |balancedFactorisation| |revert|
- |discriminantEuclidean| |selectOptimizationRoutines| |conical|
- |empty?| |getRef| |changeMeasure| |quotientByP| |cosh|
- |integralDerivationMatrix| |integralBasisAtInfinity| |multinomial|
- |computeInt| |log10| |gcdPrimitive| |mainSquareFreePart| LODO2FUN
- |rotate| |tanh| |qqq| |cAcsch| |leftPower| |contours| |max|
- |coth2trigh| |topFortranOutputStack| |fortranLiteralLine| |cAcosh|
- |bitand| |rightMult| |e01baf| |coth| |times| |setColumn!|
- |OMputSymbol| |e04ucf| |taylorIfCan| |isQuotient| |seriesToOutputForm|
- |modifyPoint| |bitior| |changeBase| |setrest!| |f01bsf| |sech|
- |rangeIsFinite| |var2Steps| |useEisensteinCriterion?| |medialSet|
- |orOperands| |torsionIfCan| |ParCond| |fixedDivisor| |csch| |ode2|
- |leftTraceMatrix| |squareFreePolynomial| |part?| |shiftLeft| |e01sff|
- |schema| |initTable!| |expandLog| |asinh| |numberOfChildren|
- |rational?| |compose| |genericLeftMinimalPolynomial| |frst| |elem?|
- |outputArgs| |rightExactQuotient| |OMgetAttr| |infLex?| |acosh|
- |monom| |bombieriNorm| |nextPrime| |evaluate| |stronglyReduce|
- |rischNormalize| |dmpToP| |swap!| |resetVariableOrder|
- |zeroDimPrimary?| |atanh| |errorKind| |lastSubResultantEuclidean|
- |iiasech| |d02cjf| |height| |inrootof| |figureUnits| |head| |pop!|
- |fglmIfCan| |acoth| |write!| |move| |groebnerFactorize|
- |LyndonCoordinates| |cn| |factorials| |solid?| |f02bjf| |common|
- |magnitude| |nsqfree| |asech| |rotatex| |asecIfCan| |wronskianMatrix|
- |region| |homogeneous?| |over| |imagJ| |tree| |arity|
- |completeEchelonBasis| |squareFreeLexTriangular| |e02ddf| |thenBranch|
- |repSq| |simpleBounds?| |writable?| |declare| |multiple| |subPolSet?|
- |stopTable!| |putGraph| |schwerpunkt| |choosemon| |untab| |debug|
- |relativeApprox| |applyQuote| |normalizedDivide| |pureLex| |epilogue|
- |rotate!| |subspace| |select!| |idealiser| |inGroundField?| D
- |unrankImproperPartitions0| |octon| |fortranDoubleComplex|
- |sumSquares| |d01anf| |quasiRegular?| |tail| |pomopo!|
- |numberOfNormalPoly| |exprHasLogarithmicWeights| |hasPredicate?|
- |nthFactor| |s17dcf| |listexp| |rk4f| |odd?| |addmod| |f01qcf|
- |randomLC| |LiePolyIfCan| |symbolTable| |radicalOfLeftTraceForm|
- |subResultantsChain| |graeffe| |ruleset| |SturmHabichtSequence|
- |lowerCase| |infix| |isOp| |firstDenom| |secIfCan| |iitan| |sec2cos|
- |generator| |tab1| |palgLODE| |phiCoord| |lazyIrreducibleFactors|
- |getCurve| |blue| |pair?| |inHallBasis?| |cycleRagits|
- |viewPhiDefault| |LagrangeInterpolation| |bernoulli|
- |matrixDimensions| |simpson| |palgint| |superscript| |subst|
- |basisOfNucleus| |pushNewContour| |recolor|
- |genericRightMinimalPolynomial| |acosIfCan| |suchThat| Y
- |goodnessOfFit| |internal?| |e02bcf| |mainDefiningPolynomial|
- |pushFortranOutputStack| |localUnquote| |bitTruth| |semicolonSeparate|
- |setLength!| |rischDEsys| |iisqrt2| |iiGamma| |colorFunction|
- |hdmpToDmp| |derivationCoordinates| |edf2fi| |physicalLength|
- |genericRightTraceForm| |internalLastSubResultant| |readUInt32!|
- |polyRDE| |testDim| |lineColorDefault| |popFortranOutputStack| F
- |csubst| |antiAssociative?| |tanhIfCan| |clip| |writeInt8!|
- |constantToUnaryFunction| FG2F |stoseInvertibleSet|
- |internalIntegrate| |print| |meshFun2Var| |definingInequation| |atoms|
- |coercePreimagesImages| |dualSignature| |f2df| |subtractIfCan|
- |mapBivariate| |setMinPoints| |resolve| |isPower| |outputAsFortran|
- |square?| |primPartElseUnitCanonical!| |create3Space|
- |transcendentalDecompose| |morphism| |setleft!| |setRealSteps|
- |d03edf| |deref| |eigenvectors| |f02awf| |objects| |pointData|
- |factorsOfCyclicGroupSize| |newReduc| |f07fef| |getBadValues|
- |nullary?| |countRealRoots| |s18def| |rarrow| |base|
- |monicDecomposeIfCan| |resetNew| |pointLists| |makeSeries|
- |branchIfCan| |mapmult| |OMconnOutDevice| |hasSolution?| |setTex!|
- |find| |positiveSolve| |gbasis| |name| |dihedral| RF2UTS
- |unprotectedRemoveRedundantFactors| |subResultantGcd| |deepCopy|
- |setLegalFortranSourceExtensions| |binomial| |inspect| |real?|
- |datalist| |body| |possiblyInfinite?| |charpol| |padicallyExpand|
- |kroneckerDelta| |normalize| |normalDenom| |simplifyExp|
- |halfExtendedResultant2| |collectUnder| |factorset|
- |subResultantGcdEuclidean| |collectQuasiMonic| |primlimintfrac|
- |LowTriBddDenomInv| |digits| |lazyIntegrate| |cycle| |twoFactor| **
- |transcendenceDegree| |approxNthRoot| |laguerre| |logpart| |less?|
- |stop| |semiResultantEuclidean2| |more?| |innerSolve| |ParCondList| ~
- |rootKerSimp| |insert| |d01gaf| |cos2sec| |badNum| |weierstrass|
- |iiexp| |lfextendedint| |wreath| |quasiMonicPolynomials|
- |numberOfIrreduciblePoly| |listOfMonoms| |c02aff| |modularGcd|
- |extendIfCan| EQ |df2ef| |s19abf| |cLog| |setAdaptive3D| |open|
- |condition| |allRootsOf| |denominators| |dmp2rfi| |edf2ef|
- |lfinfieldint| |sturmSequence| |queue| |f02adf| |rk4| |precision|
- |level| |port| |LazardQuotient2| |OMbindTCP| |imagI| |completeEval|
- |rootOfIrreduciblePoly| |leftZero| |eq?| |musserTrials|
- |expextendedint| |smith| |irreducibleFactor| |hitherPlane| |eq|
- |trapezoidalo| |mapCoef| |OMputString| |associatedEquations|
- |algebraicSort| |fmecg| |isobaric?| |besselI| |moebiusMu| |bfKeys|
- |tryFunctionalDecomposition| |iter| |t| |f02aff| |ricDsolve| |shift|
- |lprop| |iifact| |push| |discreteLog| |factorOfDegree| |previous|
- |divergence| |bits| |euclideanNormalForm| |OMserve| |prinb|
- |enumerate| |safeCeiling| |mainVariable| |stoseInvertible?sqfreg|
- |multiplyExponents| |lieAlgebra?| |characteristicPolynomial|
- |integer?| |toroidal| |viewPosDefault| |multiEuclideanTree| |sort!|
- |oblateSpheroidal| |preprocess| |category| |wordInGenerators|
- |pleskenSplit| |cosIfCan| |localReal?| |irreducibleFactors| |myDegree|
- |s15aef| |negative?| |OMputEndObject| |property| |domain| |iroot|
- |OMgetBind| |trim| |asimpson| |variable?| |makeFloatFunction| |airyAi|
- |OMgetObject| |andOperands| |package| |s17aef| |rightRankPolynomial|
- |s14aaf| |Lazard| |hue| |clearCache| |taylorQuoByVar|
- |indicialEquation| |factorList| |s21bbf| |rectangularMatrix| |iiacot|
- |pastel| |isAbsolutelyIrreducible?| |checkRur| |cPower| |printCode|
- |hcrf| |mpsode| |numerator| |units| |roughBasicSet| |commaSeparate|
- |clearTheSymbolTable| |exp| |explicitEntries?| |fractionFreeGauss!|
- |arguments| |ocf2ocdf| |cAsec| |diagonalProduct| |integers|
- |meshPar2Var| |supersub| |selectfirst| |elliptic| |quoted?| |d01asf|
- |bernoulliB| |functionIsFracPolynomial?| |qPot| |mergeDifference|
- |diagonalMatrix| |leaf?| |bumptab1| |quasiRegular| |findConstructor|
- |numberOfCycles| |lifting1| |univariatePolynomialsGcds| |bfEntry|
- |listRepresentation| |sinIfCan| |cyclotomicFactorization| |nodeOf?|
- |doublyTransitive?| |separateDegrees| |output| |compile| |scripted?|
- |any| |internalDecompose| |unexpand| |beauzamyBound| |adaptive|
- |f01mcf| |linearPolynomials| |code| |rightMinimalPolynomial|
- |firstSubsetGray| |modularFactor| |setButtonValue| |makeGraphImage|
- |palgRDE| |factorPolynomial| |isList| |hasHi| |rightFactorCandidate|
- |closedCurve| |insertMatch| |tab| |complexNormalize| |iFTable|
- |gderiv| |stiffnessAndStabilityOfODEIF| |setPrologue!| |#|
- |hostPlatform| |inverse| |alphanumeric?| |lexico| |errorInfo| |yellow|
- |compBound| |constDsolve| |setCondition!| |janko2| |c06fqf|
- |blankSeparate| |leftOne| |acotIfCan| |binaryFunction|
- |numericalOptimization| |dom| |setleaves!| |adaptive?| |incrementBy|
- |purelyAlgebraicLeadingMonomial?| |overset?| |prologue| |front|
- |uniform| |modulus| |positive?| |normalDeriv| |entry?| |cartesian|
- |iomode| |nextsubResultant2| |expand| |abs| |makeSin| |refine|
- |primitiveElement| |baseRDE| |node| |iitanh| |outputFixed|
- |coerceListOfPairs| |filterWhile| |monomial?| |lexTriangular| |d02gbf|
- |makeFR| |addPoint2| |setAdaptive| |selectAndPolynomials| |dequeue|
- |increasePrecision| |ranges| |filterUntil| |oneDimensionalArray|
- |binomThmExpt| |computeCycleEntry| GF2FG |cSin| |setStatus!|
- |associatorDependence| |bitCoef| |light| |select| |leastPower|
- |f07fdf| |maxPoints| |resultantReduitEuclidean| |numericalIntegration|
- |sub| |title| |dictionary| |movedPoints| |space| |options| |d02raf|
- |sylvesterSequence| |s18dcf| |firstNumer| |c06gsf| |moduleSum|
- |s17akf| |cRationalPower| |initials| |asechIfCan| |SturmHabicht|
- |squareFreeFactors| |realSolve| |operation| |withPredicates|
- |padicFraction| |pushup| |invertIfCan| |composite| |changeVar|
- |htrigs| |primeFrobenius| |degreePartition| |e| |initial|
- |coordinates| |karatsubaDivide| |reduceByQuasiMonic| |string|
- |reducedQPowers| |degree| |OMgetEndBind| |dominantTerm| |in?| |e02bbf|
- |makeVariable| |plusInfinity| |perfectNthRoot| |areEquivalent?|
- |leastAffineMultiple| |fixedPoints| |ratDenom| |coefChoose|
- |prolateSpheroidal| |upDateBranches| |iisech| |testModulus| |f04maf|
- |minusInfinity| |makeRecord| |d01fcf| |pascalTriangle| |algebraicOf|
- |selectNonFiniteRoutines| |groebner?| |largest| |OMgetError|
- |rootDirectory| |antiCommutator| |dimension| |fibonacci| |setelt!|
- |bipolarCylindrical| |tableau| |alternating| |iisqrt3| |iiacsc|
- |hasoln| |or?| |f04atf| |increment| |makeViewport2D| |e02ahf| |length|
- |palglimint| |pointSizeDefault| |createLowComplexityNormalBasis|
- |alternatingGroup| |rootsOf| |OMopenString| |semiResultantEuclidean1|
- |bandedHessian| |plenaryPower| |polyRicDE| |scripts| |notOperand|
- |middle| |someBasis| |d01aqf| |f02abf| |denominator| |sup| |coerceL|
- |readUInt16!| |bsolve| |explicitlyEmpty?| |unitsColorDefault|
- |conjugate| |lazyResidueClass| |completeHermite| |recip| |setPoly|
- |const| |leftGcd| |parametric?| |elColumn2!| |prepareDecompose|
- |supDimElseRittWu?| |symbolTableOf| |separant| |OMencodingBinary|
- |redPo| |equation| |type| |e02bef| |nthExponent| |numberOfComponents|
- |ffactor| |back| |decimal| |rightQuotient| |lifting| |besselY|
- |readUInt8!| |s18aef| |f02aef| |algebraic?| |rightOne|
- |factorSquareFree| |width| |fillPascalTriangle| |nextItem| |leftUnit|
- |leftFactor| |hex| |difference| |basisOfCentroid| |OMsend|
- |cyclotomicDecomposition| |tryFunctionalDecomposition?| |modTree|
- |headAst| |fixPredicate| |stoseLastSubResultant| |high| |sparsityIF|
- |dihedralGroup| |float?| |list| |summation| |lazy?|
- |toseLastSubResultant| |tanSum| |universe| |s15adf|
- |extractSplittingLeaf| |pointColorPalette| |headRemainder| |geometric|
- |coerceImages| |car| |init| |coHeight| |ef2edf| |exists?|
- |nextSubsetGray| |slex| |jacobi| |leader| |iiatanh| |simpsono|
- |stopTableInvSet!| |cdr| |drawToScale| |linearDependenceOverZ| |arg1|
- |makeUnit| |setMaxPoints3D| |objectOf| |ODESolve| |aQuadratic|
- |algintegrate| |setDifference| |s13adf|
- |semiLastSubResultantEuclidean| |ldf2vmf| |mainVariables| |arg2|
- |delta| |chineseRemainder| |iCompose| |getCode| |printTypes| |power|
- |radicalRoots| |sturmVariationsOf| |toseSquareFreePart|
- |clearTheIFTable| |whitePoint| |f02wef| |ode| |raisePolynomial|
- |determinant| |deepestInitial| |selectODEIVPRoutines| |s19adf|
- |tanh2trigh| |integerBound| |skewSFunction| |conditions| |optional|
- |minus!| |hasTopPredicate?| |expPot| |hermiteH| |FormatArabic|
- |supRittWu?| |generalizedContinuumHypothesisAssumed| |quote|
- |writeBytes!| |conjugates| |match| |distribute| |contract|
- |perspective| |lazyPrem| |result| |generators| |row| |singular?|
- |diagonal| |divideIfCan!| |mightHaveRoots| |substring?| |comparison|
- |even?| |outputMeasure| |makingStats?| |properties| |regime|
- |stoseInvertible?reg| |alphanumeric| |logIfCan| |prinpolINFO|
- |explimitedint| |noncommutativeJordanAlgebra?| |putColorInfo|
- |nullary| |e01bhf| |translate| |mirror| |Gamma| |f04arf|
- |RemainderList| |genericRightDiscriminant| |generic?| |suffix?|
- |sin2csc| |integralBasis| |doubleComplex?| |isConnected?|
- |uncouplingMatrices| |mindegTerm| |iiperm| |OMputError|
- |extractBottom!| |e01sbf| |lambda| |mkcomm| |UP2ifCan| |pattern|
- |padecf| |closedCurve?| |zeroSquareMatrix| |relationsIdeal| |ldf2lst|
- |selectsecond| |numberOfHues| |red| |prefix?| |minrank|
- |createRandomElement| |getMultiplicationMatrix| |youngGroup|
- |roughEqualIdeals?| |isMult| |powmod| |mesh?| |root?|
- |irreducibleRepresentation| |OMputFloat| |sumOfSquares| |ratpart|
- |iicsc| |parent| |heapSort| SEGMENT |getProperties|
- |degreeSubResultant| |tube| |mainExpression| |cycleElt|
- |expressIdealMember| |fortranLinkerArgs| |dequeue!| |getZechTable|
- |maxIndex| |viewDeltaYDefault| |exponential| |drawComplexVectorField|
- |scale| |complexLimit| |subNode?| |c06ebf| |extractIndex| |message|
- |rewriteIdealWithRemainder| |elements| |squareTop| |rroot| |e04dgf|
- |exprToXXP| |changeName| |viewpoint| |linearAssociatedOrder|
- |resultantnaif| |matrixGcd| |setMaxPoints| |e02adf| |mapSolve|
- |removeSinhSq| |diagonals| |content| |unitVector| |iflist2Result|
- |f01rcf| |quartic| |f01maf| |coefficient| |ptFunc| |chebyshevU|
- |scalarTypeOf| |cSech| |getProperty| |parseString| |cycleEntry|
- |setprevious!| |compound?| |getGoodPrime| |fixedPointExquo| |infix?|
- |realElementary| |showTheRoutinesTable| |bothWays| |nullity| |s17dgf|
- |interpret| |generalizedEigenvector| |mapdiv| |cyclicCopy| |basis|
- |d02gaf| |mask| |unit| |psolve| |integralMatrix| |subQuasiComponent?|
- |createNormalPrimitivePoly| |operators| |fracPart| |cAtanh|
- |removeRedundantFactorsInContents| |atanIfCan| |basisOfCenter|
- |binaryTournament| |surface| |replace| |laplace| |mantissa|
- |partialDenominators| |close!| |cons| |setlast!| |clipWithRanges|
- |rationalPower| |genericLeftDiscriminant| |curryRight| |factor1|
- |compdegd| |OMputEndApp| |tanQ| |setScreenResolution3D| |e02ajf|
- |retract| |OMputAtp| |removeSuperfluousCases| |error| |s17agf|
- |writeByte!| |fTable| |f04mcf| |gradient| |overbar| |yCoordinates|
- |vark| |f07aef| |aromberg| |OMsupportsSymbol?| |shufflein| |assert|
- |exp1| |wholeRagits| |elementary| |status| |ratDsolve| |bright|
- |tableForDiscreteLogarithm| |radicalEigenvector|
- |factorSquareFreePolynomial| |bumprow| |insertTop!| |constant?|
- |basisOfRightAnnihilator| |OMread| |makeYoungTableau| |mr| |implies|
- |mapUnivariate| |trigs2explogs| |relerror| |firstUncouplingMatrix|
- |normInvertible?| |remove!| |nonLinearPart| |lepol| |showAll?|
- |vector| |option?| |sin?| |leaves| |signatureAst| |irreducible?|
- |screenResolution| |repeatUntilLoop| |startTableGcd!|
- |noLinearFactor?| |floor| |mkPrim| |stirling2| |optAttributes|
- |represents| |quadraticNorm| |source| |erf| |getDatabase| NOT
- |splitConstant| |OMputAttr| |getMatch| |cschIfCan| |outputAsTex|
- |differentiate| |hypergeometric0F1| |LiePoly| |monomialIntPoly|
- |fprindINFO| |intChoose| |bitLength| |categories| OR |totolex|
- |s01eaf| |yCoord| ~= |lyndonIfCan| |cCosh| |totalDifferential|
- |unaryFunction| |OMencodingUnknown| |monomRDE| |retractIfCan|
- |resetAttributeButtons| AND |reindex| |subResultantChain| |c05nbf|
- |coerce| |child?| |dilog| |identityMatrix| |OMgetVariable| |coshIfCan|
- |null?| |typeList| |copies| |edf2efi| |computePowers| |numer|
- |construct| |scanOneDimSubspaces| |getOperator| |radicalSolve| |df2mf|
- |infieldint| |stosePrepareSubResAlgo| |SturmHabichtCoefficients| |sin|
- |critM| |denom| |mix| |powers| |purelyTranscendental?|
- |selectMultiDimensionalRoutines| |drawCurves| |internalIntegrate0|
- |Si| |target| |removeRoughlyRedundantFactorsInPols| |deriv| |cos|
- |maxRowIndex| |algebraicVariables| |decomposeFunc| |reduced?|
- |BasicMethod| |prem| |OMlistSymbols| |constantCoefficientRicDE|
- |splitDenominator| |tan| |laurentRep| |bandedJacobian| |pi|
- |readLine!| |extendedEuclidean| |round| |primaryDecomp| |makeTerm|
- |s20acf| |insertionSort!| |cot| |continue| |s17aff| |countable?|
- |qinterval| |infinity| |alternative?| |nextPartition| |iicos|
- |constantIfCan| |linears| |sec| |simplify| |extensionDegree| |d01akf|
- |midpoints| |rightZero| |eigenvector| |OMputApp| |rspace| |wholeRadix|
- |integralLastSubResultant| |csc| |goto| |leftLcm| |factorSFBRlcUnit|
- |interReduce| |s18adf| |conditionsForIdempotents| |inc| |asin|
- |userOrdered?| |numberOfPrimitivePoly| |kernel| |concat!| |stFunc1|
- |chiSquare1| |pointPlot| |incrementKthElement| |tan2trig| |ravel|
- |createLowComplexityTable| |solveLinearPolynomialEquation| |acos|
- |map| |leftTrace| * |draw| |enterInCache| |separate| |ratPoly|
- |finiteBasis| |exteriorDifferential| |graphState|
- |brillhartIrreducible?| |singularitiesOf| |reshape| |atan| |palgLODE0|
- |digit| |nextNormalPrimitivePoly| |has?| |trivialIdeal?|
- |rootNormalize| |numberOfComposites| |nthCoef| |acot|
- |interpretString| |palginfieldint| |dot| |setClipValue| |hexDigit?|
- |f2st| |tracePowMod| |asec| |direction| |char| |getPickedPoints|
- |iisec| |internalSubQuasiComponent?| |OMconnInDevice| |f04adf|
- |controlPanel| |lllip| |printInfo| |algSplitSimple|
- |sizePascalTriangle| |acsc| |mainMonomials| |minIndex| |f04mbf|
- |makeObject| |setelt| |cCsc| |bezoutResultant| |linearAssociatedLog|
- |OMputBVar| |dimensionOfIrreducibleRepresentation| |chebyshevT| |sinh|
- |convert| |wordInStrongGenerators| |reify| |algebraicCoefficients?|
- |setsubMatrix!| |expintegrate| |makeMulti| |primes| |update|
- |minColIndex| |outputFloating| |outlineRender| |copy| |coef|
- |multiplyCoefficients| |f01qef| |showClipRegion| |subCase?|
- |taylorRep| |byteBuffer| |brillhartTrials| |minGbasis| |polygamma|
- |toScale| |cyclicEntries| |applyRules| |cardinality| |float|
- |enterPointData| |cCsch| |leftRecip| |complexEigenvalues|
- |ramifiedAtInfinity?| |maxdeg| |generic| |f07adf| |var1Steps|
- |inverseIntegralMatrix| |wholePart| |autoCoerce|
- |rationalApproximation| |polCase| |shrinkable| |An| |autoReduced?|
- |failed| |solveLinearPolynomialEquationByFractions| |c05adf| |d01ajf|
- |removeConstantTerm| |lieAdmissible?| |OMputEndBind| |cAcoth|
- |typeLists| |linearlyDependentOverZ?| |match?| |position| |key?|
- |besselJ| |pseudoRemainder| |exponential1| |binary|
- |integralCoordinates| |critBonD| |stirling1| |imports| |triangular?|
- |tubePoints| |clearTheFTable| |deleteProperty!| |changeNameToObjf|
- |pmintegrate| |bivariatePolynomials| |prindINFO| |rightGcd| |plus!|
- |numberOfOperations| |fractRagits| |kovacic| |iidprod|
- |standardBasisOfCyclicSubmodule| |cubic| |startPolynomial|
- |eisensteinIrreducible?| |semiDegreeSubResultantEuclidean| |rst| |po|
- |just| |freeOf?| |explogs2trigs| |makeSUP| |currentScope| |insert!|
- |resize| |linearPart| |contractSolve| |powerSum| |simplifyPower|
- |countRealRootsMultiple| |empty| |dflist| |module| |comp| |e02dcf|
- |sechIfCan| GE |viewDeltaXDefault| |crest| |lhs| |listYoungTableaus|
- |rewriteSetByReducingWithParticularGenerators| |setnext!| |rombergo|
- |zeroDimPrime?| |partialFraction| |flexible?| GT |multisect|
- |jacobian| |cycleSplit!| |rhs| |generalInfiniteProduct| |diff|
- |singleFactorBound| |pack!| |differentialVariables| |root| |next|
- |size?| LE |groebgen| |mvar| |redmat| |rename| |euler| |mainMonomial|
- |hdmpToP| |bubbleSort!| |integralAtInfinity?| LT |randomR| |create|
- |removeRoughlyRedundantFactorsInPol| |solve| |constantRight|
- |sinhIfCan| |removeDuplicates!| |csch2sinh| |rightTraceMatrix|
- |exprHasAlgebraicWeight| |coefficients| |ord| |implies?| |Ci|
- |permutationGroup| |createMultiplicationTable| |lfunc| |log|
- |solveRetract| |mainKernel| |pdct| |mergeFactors| |unit?|
- |OMgetEndError| |possiblyNewVariety?| |virtualDegree| |Frobenius|
- |submod| |intersect| |stronglyReduced?| |unknown| |node?| |pol|
- |basisOfRightNucloid| |expenseOfEvaluationIF| |nil| |infinite|
- |arbitraryExponent| |approximate| |complex| |shallowMutable|
- |canonical| |noetherian| |central| |partiallyOrderedSet|
- |arbitraryPrecision| |canonicalsClosed| |noZeroDivisors|
- |rightUnitary| |leftUnitary| |additiveValuation| |unitsKnown|
- |canonicalUnitNormal| |multiplicativeValuation| |finiteAggregate|
- |shallowlyMutable| |commutative|) \ No newline at end of file
+ |Record| |Union| |tanintegrate| |cAtanh| |ScanFloatIgnoreSpacesIfCan|
+ |alternating| |polynomialZeros| |clearTheFTable|
+ |functionIsOscillatory| |denominators| |s14baf| |byte|
+ |removeRedundantFactorsInContents| |exponent| |iisqrt3| |truncate|
+ |deleteProperty!| |splitLinear| |setPredicates| |dmp2rfi| |totalLex|
+ |atanIfCan| |FormatRoman| |cyclic| |iiacsc| |changeNameToObjf|
+ |permutationRepresentation| |edf2ef| |radicalEigenvalues|
+ |basisOfCenter| |coerceP| |complexZeros| |clearFortranOutputStack|
+ |hasoln| |pmintegrate| |int| |lfinfieldint| |cyclicGroup|
+ |binaryTournament| |OMReadError?| |forLoop| |outputGeneral| |or?|
+ |zeroSetSplitIntoTriangularSystems| |bivariatePolynomials| |fortran|
+ |complexRoots| |sturmSequence| |split!| |surface| |generalLambert|
+ |fortranLiteral| |SFunction| |setIntersection| |palgint0| |f04atf|
+ |prindINFO| |fortranLogical| |complete| |queue| |credPol| |replace|
+ |setUnion| |rightScalarTimes!| |increment| |pade| |rightGcd| |f02akf|
+ |f02adf| |removeRoughlyRedundantFactorsInContents| |laplace| |points|
+ |fullDisplay| |apply| |makeViewport2D| |dimensions| |plus!|
+ |partialDenominators| |predicates| |frobenius| |rk4| |currentEnv|
+ |mapExpon| |nil| |f02fjf| |e02ahf| |removeSinSq| |numberOfOperations|
+ |setAttributeButtonStep| |lambert| |monomial| |LazardQuotient2|
+ |getIdentifier| |close!| |s17dlf| |size| |palglimint| |triangSolve|
+ |call| |fractRagits| |ideal| |setFieldInfo| |multivariate| |OMbindTCP|
+ |meatAxe| |perfectSqrt| |setlast!| |nthFractionalTerm| |sort|
+ |spherical| |pointSizeDefault| |kovacic| |rootProduct| |baseRDEsys|
+ |variables| |imagI| |sh| |clipWithRanges| |constantLeft| |approximate|
+ |function| |calcRanges| |createLowComplexityNormalBasis|
+ |removeRedundantFactorsInPols| |iidprod| |nary?| |df2fi|
+ |completeEval| |mathieu23| |id| |rationalPower| |complex|
+ |viewWriteAvailable| |qelt| |first| |alternatingGroup| |distance|
+ |standardBasisOfCyclicSubmodule| |rootOfIrreduciblePoly| |palglimint0|
+ |s13acf| |linear| |genericLeftDiscriminant| |transform| |rootsOf|
+ |bivariateSLPEBR| |eval| |rest| |qsetelt| |sizeLess?| |cubic| |Aleph|
+ |thetaCoord| |leftZero| |remainder| |curryRight| |table| |biRank|
+ |equality| |substitute| |random| |xRange| |close| |OMopenString|
+ |startPolynomial| |eq?| |saturate| |factor1| |polynomial| |rCoord|
+ |pToHdmp| |new| |removeDuplicates| |point| |gcdprim| |yRange|
+ |semiResultantEuclidean1| |nthRootIfCan| |obj|
+ |eisensteinIrreducible?| |distdfact| |musserTrials| |rightUnits|
+ |taylor| |quasiComponent| |search| |compdegd| |log2| |remove|
+ |bandedHessian| |continuedFraction| |zRange| |display|
+ |semiDegreeSubResultantEuclidean| |cache| |script| BY |critT|
+ |leftFactorIfCan| |expextendedint| |laurent| |principal?|
+ |OMputEndApp| |balancedBinaryTree| |map!| |plenaryPower| |normalized?|
+ |rst| |tanQ| |setLabelValue| |constant| |list?| |puiseux| |smith|
+ |tower| |operator| |series| |last| |capacity| |style| |qsetelt!|
+ |polyRicDE| |po| |makeResult| |irreducibleFactor| |e01bgf|
+ |setScreenResolution3D| |inverseColeman| |assoc| |getlo|
+ |antiCommutative?| |OMgetAtp| |notOperand| |just| |keys| |tex|
+ |createNormalPoly| |monicRightDivide| |inv| |hitherPlane| |delete!|
+ |e02ajf| |integral| |OMParseError?| |middle| |tanNa| |freeOf?|
+ |ground?| |genericRightTrace| |trapezoidalo| |tubePointsDefault|
+ |rk4a| |OMputAtp| |someBasis| |Lazard2| |input| |LyndonWordsList|
+ |explogs2trigs| |mapCoef| |cAtan| |ground| |inputBinaryFile| |s21bdf|
+ |removeSuperfluousCases| |min| |library| |complexElementary| |d01aqf|
+ |scan| |makeSUP| |sumOfKthPowerDivisors| |e01saf| |reseed|
+ |leadingMonomial| |OMputString| |s17agf| |complexNumeric| |lcm|
+ |f02abf| |Is| |acsch| |characteristic| |currentScope|
+ |associatedEquations| |writeByte!| |member?| |leadingCoefficient|
+ |qualifier| |rules| |setEmpty!| |basisOfMiddleNucleus| |totalDegree|
+ |jordanAdmissible?| |denominator| |insert!| |kernels|
+ |leftRegularRepresentation| |btwFact| |primitiveMonomials|
+ |algebraicSort| |sign| |fTable| |left| |ran| |append| |imagi| |sup|
+ |mindeg| |resize| |diag| |c06ekf| |f04mcf| |super| |reductum| |fmecg|
+ |univariate| |right| |sPol| |coerceL| |gcd| |set| |newTypeLists|
+ |linearPart| |divideExponents| |isobaric?| |squareFreePrim| |gradient|
+ |shade| |false| |hclf| |readUInt16!| |writeLine!| |contractSolve|
+ |useSingleFactorBound| |genericPosition| |minordet| |besselI|
+ |overbar| |sum| |minPoints| |bsolve| |invmultisect| |powerSum|
+ |headReduce| |yCoordinates| |moebiusMu| |OMputObject| |mainContent|
+ |factor| |leftDiscriminant| |explicitlyEmpty?| |retractable?|
+ |simplifyPower| |idealSimplify| |bfKeys| |outputSpacing| |vark| |sqrt|
+ |initiallyReduced?| |nthExpon| |fractRadix| |lazyPremWithDefault|
+ |unitsColorDefault| |countRealRootsMultiple| |leftDivide| |ipow|
+ |createPrimitiveElement| |tryFunctionalDecomposition| |numeric|
+ |f07aef| |real| |OMgetFloat| |slash| |conjugate| |check| |lp| |empty|
+ |imagK| |numerators| |radical| |cTanh| |f02aff| |aromberg| |imag|
+ |triangulate| |ptree| |primintegrate| |lazyResidueClass| |multiple?|
+ |dflist| |zoom| |directProduct| |d01apf| |OMsupportsSymbol?| |symbol?|
+ |df2st| |completeHermite| |reduceLODE| |module| |showSummary| |iprint|
+ |d03edf| |s21bcf| |vedf2vef| |shufflein| |term| |inf| |recip|
+ |sinh2csch| |OMcloseConn| |e02dcf| |curve| |maxrank| |deref| |exp1|
+ |brace| |composites| |inconsistent?| |quadratic?| |sorted?| |setPoly|
+ |componentUpperBound| |hash| |sechIfCan| |eigenvectors|
+ |linkToFortran| |showAttributes| |f02aaf| |wholeRagits| |destruct|
+ |unrankImproperPartitions1| |rationalPoint?| |multiEuclidean| |parts|
+ |solveLinear| |show| |count| |viewDeltaXDefault| |d02bhf| |f02awf|
+ |PDESolve| |elementary| |symbol| |shiftRight| |iilog| |ranges| =
+ |writeUInt8!| |OMgetSymbol| |createGenericMatrix| |crest| |cotIfCan|
+ |limit| |pointData| |algDsolve| |ratDsolve| |expression|
+ |oneDimensionalArray| |fi2df| |monomialIntegrate| |viewZoomDefault|
+ |trace| UTS2UP |lo| |listYoungTableaus| |diagonal?|
+ |factorsOfCyclicGroupSize| |leadingCoefficientRicDE|
+ |tableForDiscreteLogarithm| |host| |integer| |sylvesterMatrix|
+ |weights| |binomThmExpt| < |exquo| |zerosOf| |powern| |incr|
+ |rewriteSetByReducingWithParticularGenerators| |mat| |top!| |newReduc|
+ |computeCycleEntry| > |trunc| |OMunhandledSymbol| |div| |normal?|
+ |nthr| |setnext!| |isPlus| |f07fef| |rdregime| |iicsc| |OMgetString|
+ |mkIntegral| GF2FG <= |OMclose| |quo| |complexIntegrate| |infRittWu?|
+ |rombergo| |normalForm| |palgextint0| |getBadValues| |whatInfinity|
+ |parent| |parabolic| |cSin| >= |label| |radix| |chvar| |rotatey|
+ |zeroDimPrime?| |leftMult| |nullary?| |measure| |heapSort|
+ |minRowIndex| |lazyPseudoQuotient| |rem| |setStatus!| |endSubProgram|
+ |ignore?| |primitivePart!| |basisOfLeftNucleus| |d01amf| |findBinding|
+ |countRealRoots| |getProperties| |predicate| |iiacoth|
+ |euclideanGroebner| |associatorDependence| |extendedIntegrate|
+ |sizePascalTriangle| |cAsin| |tubeRadius| |s18def| |hermite|
+ |generalizedInverse| |degreeSubResultant| |powerAssociative?|
+ |infinityNorm| |inRadical?| |bitCoef| + |redPol| |mainMonomials|
+ |splitSquarefree| |rarrow| |split| |child| |tube| |primitive?|
+ |compiledFunction| |OMmakeConn| - |light| |minIndex|
+ |quasiAlgebraicSet| |BumInSepFFE| |bounds| |monicDecomposeIfCan|
+ |expenseOfEvaluation| |mainExpression| |leastPower| |d03faf| |sqfree|
+ / |ode1| |e02dff| |f04mbf| |fortranComplex| |selectFiniteRoutines|
+ |resetNew| |cycleElt| |linGenPos| |cCsc| |monomials| |conditionP|
+ |f07fdf| |nextLatticePermutation| |addBadValue| |monicModulo|
+ |constructor| |iiatan| |pointLists| |toseInvertibleSet|
+ |expressIdealMember| |graphs| |bezoutResultant| |readInt32!|
+ |externalList| |rightLcm| |maxPoints| |nor| |optpair| |gcdcofact|
+ |makeSeries| |returnTypeOf| |cSec| |fortranLinkerArgs| |option|
+ |linearAssociatedLog| |nthRoot| |resultantReduitEuclidean|
+ |replaceKthElement| |patternMatchTimes| |resultantEuclidean|
+ |noKaratsuba| |clipPointsDefault| |branchIfCan| |dequeue!| |digamma|
+ |intcompBasis| |lazyEvaluate| |elRow1!| |numericalIntegration|
+ |OMputBVar| |evaluateInverse| |normalise| |ramified?| |getZechTable|
+ |subTriSet?| |randnum| |mapmult| |parameters| |nothing|
+ |mapMatrixIfCan| |exponents| |indiceSubResultantEuclidean|
+ |OMreadFile| |sub| |dimensionOfIrreducibleRepresentation|
+ |clipSurface| |adjoint| |OMconnOutDevice| |lighting| |maxIndex|
+ |numberOfVariables| |binarySearchTree| |dictionary| |divisor|
+ |leftQuotient| |twist| |chebyshevT| |minimalPolynomial|
+ |GospersMethod| |hasSolution?| |permutation| |viewDeltaYDefault|
+ |lift| |insertRoot!| |rightRemainder| |lowerCase?| |movedPoints|
+ |wordInStrongGenerators| |reverseLex| |solveInField| |string?|
+ |setTex!| |exponential| |csc2sin| |reduce| |reify| |realEigenvalues|
+ |space| |inverseLaplace| |s17def| |usingTable?| |associatedSystem|
+ |collect| |find| |drawComplexVectorField| |unitCanonical| |outputList|
+ |rightTrim| |exprToGenUPS| |tanIfCan| |zeroMatrix| |d02raf|
+ |algebraicCoefficients?| |OMUnknownSymbol?| |linearlyDependent?|
+ |swapRows!| |positiveSolve| |squareFreePart| |scale| |leftTrim|
+ |setsubMatrix!| |defineProperty| |sylvesterSequence| |startTable!|
+ |normalizedAssociate| |npcoef| |gbasis| |index?| |getStream|
+ |leftExtendedGcd| |complexLimit| |characteristicSerie| |eigenvalues|
+ |order| |expintegrate| |s18dcf| |antisymmetric?| |internalAugment|
+ |dihedral| |maximumExponent| |ScanFloatIgnoreSpaces| |airyBi|
+ |subNode?| |makeViewport3D| |nonSingularModel| |addMatchRestricted|
+ |leadingSupport| |firstNumer| |makeMulti| |birth| |showArrayValues|
+ |OMputInteger| RF2UTS |exprToUPS| |c06ebf| |HermiteIntegrate|
+ |structuralConstants| |c06gsf| |minset| |extendedResultant| |primes|
+ |evenlambert| |OMreadStr| |unprotectedRemoveRedundantFactors|
+ |anfactor| |extractIndex| |moduleSum| |moreAlgebraic?| |minColIndex|
+ |expandTrigProducts| |semiSubResultantGcdEuclidean1| |startStats!|
+ |li| |upperCase| |leftRank| |subResultantGcd| |belong?|
+ |rewriteIdealWithRemainder| |extract!| |sncndn| |s17akf| |axes|
+ |outputFloating| |outputAsScript| |euclideanSize| |messagePrint|
+ |deepCopy| |setErrorBound| |elements| |sn| |complexForm| |mulmod|
+ |cRationalPower| |outlineRender| |midpoint| |indicialEquations|
+ |setLegalFortranSourceExtensions| |extendedSubResultantGcd|
+ |squareTop| |charthRoot| |trailingCoefficient| |symmetricPower|
+ |numberOfComputedEntries| |initials| |multiplyCoefficients|
+ |selectPDERoutines| |factorGroebnerBasis| |f04asf| |binomial|
+ |iterationVar| |rroot| |reciprocalPolynomial| |shallowExpand|
+ |asechIfCan| |stoseInternalLastSubResultant| |f01qef| |OMgetInteger|
+ |mainValue| |inspect| |e04jaf| |cap| |e04dgf| |computeCycleLength|
+ |createPrimitivePoly| |fortranCharacter| |SturmHabicht|
+ |showClipRegion| |closeComponent| |hi| |backOldPos| |genericRightNorm|
+ |real?| |exprToXXP| |s20adf| |createPrimitiveNormalPoly| |cAcos|
+ |squareFreeFactors| |subCase?| |infinite?| |asinIfCan| |mapUp!|
+ |possiblyInfinite?| |evenInfiniteProduct| |changeName|
+ |jacobiIdentity?| |OMputEndBVar| |orthonormalBasis| |realSolve|
+ |taylorRep| |leadingExponent| |att2Result| |charpol| |lyndon?|
+ |viewpoint| |commutator| |withPredicates| |bivariate?| |byteBuffer|
+ |rischDE| |showTheIFTable| |padicallyExpand| |linearAssociatedOrder|
+ |aspFilename| |members| |padicFraction| |stopTableGcd!|
+ |brillhartTrials| |rightPower| |permutations| |kroneckerDelta|
+ |squareMatrix| |OMgetApp| |resultantnaif| |palgextint| |cCoth|
+ |pushup| |minGbasis| |f01brf| |nonQsign| |arbitrary| |normalize|
+ |matrixGcd| |d01alf| |antisymmetricTensors| |invertIfCan| |zCoord|
+ |polygamma| |range| |basisOfLeftAnnihilator| |normalDenom|
+ |setMaxPoints| |Hausdorff| |test| |setEpilogue!|
+ |showIntensityFunctions| |composite| |toScale| |cAcsc| |corrPoly|
+ |simplifyExp| |cSinh| |e02adf| |commonDenominator| |s14abf|
+ |changeVar| |cyclicEntries| |generate| |subMatrix|
+ |halfExtendedResultant2| |roughUnitIdeal?| |iicot| |mapSolve| |rank|
+ |e02bdf| |ListOfTerms| |htrigs| |applyRules| |prefix| |dmpToHdmp|
+ |patternVariable| |collectUnder| |extension| |removeSinhSq|
+ |roughSubIdeal?| |primeFrobenius| |OMputVariable| |cardinality|
+ |setProperties!| |completeHensel| |e02gaf| |factorset| |depth|
+ |diagonals| |d02kef| |degreePartition| |OMputEndAtp| |enterPointData|
+ |rangePascalTriangle| |outputBinaryFile| |subResultantGcdEuclidean|
+ |rightDiscriminant| |content| |consnewpol| |shuffle| |lSpaceBasis|
+ |coordinates| |cCsch| |safetyMargin| |column| |collectQuasiMonic|
+ |expint| |unitVector| |stoseInvertible?| |selectOrPolynomials|
+ |systemSizeIF| |karatsubaDivide| |insertBottom!| |leftRecip|
+ |charClass| |iflist2Result| |dimensionsOf| |primlimintfrac|
+ |showRegion| |approxSqrt| |null| |rename!| |validExponential|
+ |reduceByQuasiMonic| |complexEigenvalues| |paren|
+ |identitySquareMatrix| |f01rcf| |clikeUniv| |LowTriBddDenomInv| |not|
+ |readLineIfCan!| |optional?| |reducedQPowers| |f04axf| |rowEchelon|
+ |dim| |ramifiedAtInfinity?| |rootRadius| |sortConstraints| |digits|
+ |and| |quartic| |listOfLists| |imagk| |extractIfCan| |degree| |maxdeg|
+ |lowerPolynomial| |e04mbf| |lazyIntegrate| |f01maf| |or|
+ |leadingIndex| |OMgetEndBind| |listBranches| |generic| |elseBranch|
+ |mappingAst| |cycle| |xor| |prefixRagits| |coefficient| |setRow!|
+ |callForm?| |dominantTerm| |f07adf| |unitNormal| |rootPower|
+ |processTemplate| |twoFactor| |ptFunc| |case| |weight| |in?| |dark|
+ |var1Steps| |identification| |argument| |Vectorise|
+ |transcendenceDegree| |Zero| |chebyshevU| |e02bbf| |principalIdeal|
+ |inverseIntegralMatrix| |printInfo!| |double?| |scalarTypeOf|
+ |approxNthRoot| |One| |viewDefaults| |invmod| |/\\| |makeVariable|
+ |f02xef| |wholePart| |paraboloidal| |laguerre| |lquo| |getButtonValue|
+ |cSech| |\\/| |screenResolution3D| |perfectNthRoot| |transpose|
+ |rationalApproximation| |zeroDimensional?| |logpart| |d01bbf|
+ |getProperty| |compactFraction| |collectUpper| |s13aaf|
+ |areEquivalent?| |key| |polCase| |coleman| |parseString| |henselFact|
+ |equiv?| |leastAffineMultiple| |minPol| |shrinkable| |center|
+ |algebraicDecompose| |simpson| |froot| |OMwrite| |cycleEntry|
+ |invertibleSet| |filename| |fixedPoints| |patternMatch| |An| |s17adf|
+ |palgint| |particularSolution| |setprevious!| |elt| |quoByVar|
+ |setProperty| |ratDenom| |seed| |not?| |second| |autoReduced?|
+ |pdf2df| |fullPartialFraction| |superscript| |compound?| |resultant|
+ |rootPoly| |parse| |third| |solveLinearPolynomialEquationByFractions|
+ |cot2trig| |basisOfNucleus| |localAbs| |mapExponents| |getGoodPrime|
+ |tubePlot| |entries| |rightFactorCandidate| |c05adf| |dec| |connect|
+ |pushNewContour| |updateStatus!| |trapezoidal| |fixedPointExquo|
+ |simplifyLog| |shanksDiscLogAlgorithm| |closedCurve| |d01ajf|
+ |intermediateResultsIF| |recolor| |moebius| |realElementary| |conjug|
+ |infieldIntegrate| |reopen!| |insertMatch| |removeConstantTerm|
+ |createMultiplicationMatrix| |setPosition|
+ |genericRightMinimalPolynomial| |zeroOf| |lazyVariations| |tab|
+ |lieAdmissible?| |leadingTerm| |imaginary| |acosIfCan|
+ |wordsForStrongGenerators| |diagonal| |expr| |zag| |complexNormalize|
+ |rquo| |OMputEndBind| |expandPower| |signAround| |goodnessOfFit|
+ |divideIfCan!| |nodes| |bezoutDiscriminant| |kmax| |iFTable| |cAcoth|
+ |clearDenominator| |exprex| |internal?| |principalAncestors|
+ |mightHaveRoots| |systemCommand| |kind| |fortranInteger| |e02aef|
+ |gderiv| |prepareSubResAlgo| |e02bcf| |OMsupportsCD?| |comparison|
+ |maxPoints3D| |op| |inR?| |stiffnessAndStabilityOfODEIF|
+ |measure2Result| |midpoints| |cup| |genus| |failed?|
+ |mainDefiningPolynomial| |even?| |stack| |OMencodingSGML| |imagE|
+ |setPrologue!| |variable| |rightZero| |getConstant| |localUnquote|
+ |rightUnit| |outputMeasure| |removeZeroes| |normal|
+ |parabolicCylindrical| |rightTrace| |iterators| |hostPlatform|
+ |eigenvector| |readBytes!| |bitTruth| |harmonic| |ReduceOrder|
+ |makingStats?| |iiabs| |e02akf| |inverse| |index| |OMputApp|
+ |cylindrical| |semicolonSeparate| |factorByRecursion|
+ |factorSquareFreeByRecursion| |regime| |totalfract| |alphanumeric?|
+ |cyclic?| |rspace| |doubleFloatFormat| |setLength!| |nextSublist|
+ |debug3D| |stoseInvertible?reg| |lfextlimint| |redpps|
+ |numberOfDivisors| |lexico| |wholeRadix| |setMinPoints3D|
+ |loadNativeModule| |quatern| |rischDEsys| |alphanumeric|
+ |oddInfiniteProduct| |mapGen| |union| |axesColorDefault| |errorInfo|
+ |wrregime| |pair| |integralLastSubResultant| |bat| |knownInfBasis|
+ |iisqrt2| |logIfCan| |buildSyntax| |doubleRank| |yellow| |unmakeSUP|
+ |goto| |commutativeEquality| |block| |iiGamma| |elRow2!| |whileLoop|
+ |prinpolINFO| |genericLeftNorm| |compBound| |element?| |leftLcm|
+ |upperCase?| |getGraph| |colorFunction| |eyeDistance| |explimitedint|
+ |term?| |symmetricGroup| |fixedPoint| |constDsolve| |factorSFBRlcUnit|
+ |varselect| |e02baf| |hdmpToDmp| |double|
+ |noncommutativeJordanAlgebra?| |complexExpand| |value| |numFunEvals|
+ |palgintegrate| |setCondition!| |interReduce| |dAndcExp|
+ |derivationCoordinates| |radicalSimplify| |putColorInfo| |expt|
+ |leadingIdeal| |nextPrimitivePoly| |janko2| |s18adf|
+ |rationalFunction| |edf2fi| |mathieu11| |partialNumerators| |nullary|
+ |currentSubProgram| |logical?| |c06fqf| |conditionsForIdempotents|
+ |f02bbf| |pushuconst| |physicalLength| |gramschmidt| |e01bhf|
+ |fractionPart| |multiset| |blankSeparate| |removeSquaresIfCan|
+ |recoverAfterFail| |userOrdered?| |convergents| |pushdterm|
+ |genericRightTraceForm| |symmetricDifference| |push!| |mirror|
+ |listLoops| |leftOne| |reduceBasisAtInfinity| |numberOfPrimitivePoly|
+ |e04naf| |primitivePart| |perfectNthPower?| |internalLastSubResultant|
+ |color| |Gamma| |setVariableOrder| |associator| |acotIfCan| |rule|
+ |concat!| |getVariableOrder| |readUInt32!| |minimumExponent| |unparse|
+ |f04arf| |say| |combineFeatureCompatibility| |divisors|
+ |binaryFunction| |stFunc1| |recur| |rk4qc| |polyRDE| |declare!|
+ |gcdPolynomial| |RemainderList| |graphStates| |numericalOptimization|
+ |localIntegralBasis| |chiSquare1| |rootOf| |testDim| |quadraticForm|
+ |genericRightDiscriminant| |fortranTypeOf| |hMonic| |setleaves!|
+ |e01daf| |pointPlot| |setref| |nand| |lineColorDefault|
+ |leftRankPolynomial| |generic?| |xn| |scaleRoots| |adaptive?|
+ |incrementKthElement| |numFunEvals3D| |pr2dmp| |csubst| |upperCase!|
+ |sin2csc| |normalElement| |RittWuCompare|
+ |purelyAlgebraicLeadingMonomial?| |tan2trig| |subSet|
+ |antiAssociative?| |repeating| |stiffnessAndStabilityFactor|
+ |integralBasis| |linearDependence| |se2rfi| |overset?|
+ |createLowComplexityTable| |drawComplex| |nthFlag| |doubleComplex?|
+ |tanhIfCan| |inputOutputBinaryFile| |void| |reset| |initiallyReduce|
+ |extractPoint| |prologue| |solveLinearPolynomialEquation| |formula|
+ |factors| |clip| |lyndon| |isConnected?| |viewThetaDefault|
+ |readByte!| |front| |aQuartic| |leftTrace| |solid| |elliptic?|
+ |writeInt8!| |segment| |uncouplingMatrices| |stripCommentsAndBlanks|
+ |write| |lastSubResultant| |reverse!| |uniform| |enterInCache|
+ |reverse| |setvalue!| |constantToUnaryFunction| |linSolve| |iidsum|
+ |mindegTerm| |save| |directory| |subresultantVector| |modulus|
+ |abelianGroup| |separate| |OMlistCDs| FG2F |setTopPredicate| |iiperm|
+ |prevPrime| |entry| |copyInto!| |complement| |positive?| |ratPoly|
+ |nrows| |tensorProduct| |normalizeAtInfinity| |stoseInvertibleSet|
+ |OMputError| |addiag| |showFortranOutputStack| |normalDeriv|
+ |complex?| |finiteBasis| |ncols| |reducedContinuedFraction|
+ |internalIntegrate| |primlimitedint| |extractBottom!| |rationalPoints|
+ |assign| |inverseIntegralMatrixAtInfinity| |entry?|
+ |exteriorDifferential| |comment| |generalizedEigenvectors|
+ |jordanAlgebra?| |meshFun2Var| |e01sbf| |prod| |checkPrecision|
+ |oddintegers| |cartesian| |maxColIndex| |graphState|
+ |genericLeftTrace| |useSingleFactorBound?| |definingInequation|
+ |mkcomm| |solveLinearlyOverQ| |maxint| |iomode| |discriminant|
+ |brillhartIrreducible?| |parents| |nextColeman| |atoms| |lex|
+ |linearMatrix| |UP2ifCan| |ScanArabic| |box| |nextsubResultant2|
+ |printHeader| |singularitiesOf| |nextsousResultant2| |dioSolve|
+ |coercePreimagesImages| |padecf| |addPoint| |flatten| |makeop|
+ |selectSumOfSquaresRoutines| |abs| |palgLODE0| |fortranReal|
+ |dualSignature| |iiacosh| |escape| |closedCurve?| |makeSin|
+ |readIfCan!| |genericLeftTraceForm| |concat| |digit| |times!|
+ |iibinom| |f2df| |zeroSquareMatrix| |OMconnectTCP| |top| |open?|
+ |refine| |deleteRoutine!| |nextNormalPrimitivePoly| |setClosed|
+ |viewWriteDefault| |subtractIfCan| |solveid| |rootBound|
+ |relationsIdeal| |coth2tanh| |domainOf| |primitiveElement| |has?|
+ |exportedOperators| |limitedIntegrate| |mapBivariate| |ip4Address|
+ |ldf2lst| |pow| |binding| |true| |lexGroebner| |baseRDE|
+ |trivialIdeal?| |subresultantSequence| |setMinPoints| |maxrow|
+ |d02ejf| |selectsecond| |idealiserMatrix| |iitanh|
+ |stoseInvertibleSetreg| |rootNormalize| |scopes| |unitNormalize|
+ |isPower| |numberOfHues| |purelyAlgebraic?| |lflimitedint|
+ |outputFixed| |nilFactor| |numberOfComposites| |symmetricSquare|
+ |square?| |leadingBasisTerm| |red| |lists| |completeSmith|
+ |coerceListOfPairs| |changeWeightLevel| |nthCoef|
+ |primPartElseUnitCanonical!| |printingInfo?| |minrank| |headReduced?|
+ |besselK| |primextintfrac| |monomial?| |interpretString|
+ |create3Space| |tan2cot| |createRandomElement| |internalSubPolSet?|
+ |c06gbf| |outerProduct| |lexTriangular| |swapColumns!|
+ |palginfieldint| |signature| |f04jgf| |transcendentalDecompose|
+ |getMultiplicationMatrix| |groebner| |d02gbf| |varList| |isOpen?|
+ |dot| |morphism| |eulerPhi| |youngGroup| |setStatus| |nlde| |makeFR|
+ |argumentListOf| |setClipValue| |setleft!| |e02agf| |expintfldpoly|
+ |roughEqualIdeals?| |unravel| |iiasin| |addPoint2| |hexDigit?|
+ |clipParametric| |setRealSteps| |isMult| |orbit| |leviCivitaSymbol|
+ |setAdaptive| |extractProperty| |f2st| |powmod|
+ |semiDiscriminantEuclidean| |any?| |delete| |integral?|
+ |selectAndPolynomials| |tracePowMod| |matrix| |OMgetEndApp| |putGraph|
+ |selectIntegrationRoutines| |mesh?| |pToDmp|
+ |basisOfCommutingElements| |dequeue| |direction| |schwerpunkt| |green|
+ |denomLODE| |root?| |perfectSquare?| |increasePrecision| |f02agf|
+ |getPickedPoints| |sizeMultiplication| |choosemon|
+ |irreducibleRepresentation| |cothIfCan|
+ |semiSubResultantGcdEuclidean2| |optimize| |iisec| |c06ecf| |untab|
+ |zero| |OMputFloat| |endOfFile?| |cot2tan| |checkRur|
+ |LyndonWordsList1| |internalSubQuasiComponent?| |updatF|
+ |relativeApprox| |sumOfSquares| |moduloP| |rightRank| |cPower| |plot|
+ |OMconnInDevice| |normalizedDivide| |OMgetType| |And|
+ |PollardSmallFactor| |ratpart| |newSubProgram| |iisinh| |printCode|
+ |f04adf| |pureLex| |Or| |returnType!| F2FG |hcrf| |toseInvertible?|
+ |digit?| |controlPanel| |cond| |Not| |aCubic| |epilogue| |reflect|
+ |exists?| |modifyPointData| |rightNorm| |mpsode| |lllip| |mathieu24|
+ |rotate!| |nextSubsetGray| |vertConcat| |highCommonTerms| |numerator|
+ |stFuncN| |plus| |algSplitSimple| |iicosh| |subspace| |omError| |slex|
+ |pole?| |curry| |roughBasicSet| |select!| |cyclePartition| |jacobi|
+ |cCot| |zeroVector| |d01gbf| |rightCharacteristicPolynomial|
+ |commaSeparate| |c05nbf| |cosh| |bipolar| |idealiser| |sayLength|
+ |iiatanh| |log10| |f04faf| |acothIfCan| |child?| |clearTheSymbolTable|
+ |tanh| |cfirst| |rowEchLocal| |curve?| |inGroundField?| |simpsono|
+ |max| |polarCoordinates| |rightRegularRepresentation| |legendre|
+ |bitand| |explicitEntries?| |identityMatrix| |coth| |times| |rootSimp|
+ |unrankImproperPartitions0| |partition| |stopTableInvSet!|
+ |isQuotient| |tablePow| |every?| |bitior| |fractionFreeGauss!|
+ |OMgetVariable| |plotPolar| |sech| |octon|
+ |halfExtendedSubResultantGcd1| |drawToScale| |unvectorise| |logGamma|
+ |printStats!| |ocf2ocdf| |coshIfCan| |csch| |shallowCopy|
+ |fortranDoubleComplex| |f02ajf| |indicialEquationAtInfinity|
+ |linearDependenceOverZ| |balancedFactorisation| |newLine| |cAsec|
+ |OMencodingXML| |null?| |asinh| |sumSquares| |karatsubaOnce|
+ |makeUnit| |e01bef| |e02daf| |ScanRoman| |acosh| |typeList|
+ |diagonalProduct| |revert| |monom| |shellSort| |d01anf|
+ |setMaxPoints3D| |drawStyle| |alphabetic| |identity| |copies|
+ |integers| |discriminantEuclidean| |atanh| |c06gcf| |quasiRegular?|
+ |objectOf| |normal01| |height| |edf2efi| |SturmHabichtMultiple|
+ |meshPar2Var| |quotedOperators| |selectOptimizationRoutines| |acoth|
+ |pomopo!| |tubeRadiusDefault| |flagFactor| |ODESolve| |cn| |conical|
+ |doubleResultant| |common| |supersub| |getOperands| |computePowers|
+ |asech| |numberOfNormalPoly| |poisson| |aQuadratic| |integrate|
+ |representationType| |qfactor| |selectfirst| |tree|
+ |scanOneDimSubspaces| |empty?| |exprHasLogarithmicWeights|
+ |getExplanations| |algintegrate| |cyclicEqual?| |elliptic| |declare|
+ |cosh2sech| |getRef| |laplacian| |multiple| |getOperator|
+ |leftCharacteristicPolynomial| |hasPredicate?| |adaptive3D?| |s13adf|
+ |debug| |radPoly| |applyQuote| |leftScalarTimes!| |quoted?|
+ |changeMeasure| |radicalSolve| |duplicates| |nthFactor|
+ |mainVariable?| D |semiLastSubResultantEuclidean| |is?| |d01asf|
+ |acoshIfCan| |df2mf| |quotientByP| |tail| |shiftRoots| |s17dcf|
+ |ldf2vmf| |merge!| |tanh2coth| |bernoulliB| |pseudoQuotient|
+ |integralDerivationMatrix| |infieldint| |meshPar1Var| |listexp|
+ |cAsinh| |mainVariables| |symbolTable| |functionIsFracPolynomial?|
+ |removeCosSq| |integralBasisAtInfinity| |point?| |ruleset|
+ |stosePrepareSubResAlgo| |rk4f| |presub| |chineseRemainder|
+ |companionBlocks| |qPot| |satisfy?| |generator|
+ |numberOfFractionalTerms| |multinomial| |SturmHabichtCoefficients|
+ |leftExactQuotient| |odd?| |hyperelliptic| |iCompose|
+ |stoseSquareFreePart| |mergeDifference| |mesh| |computeInt| |critM|
+ |addmod| |minimumDegree| |getCode| |s18acf| |subst| |iiacsch|
+ |quickSort| |mix| |diagonalMatrix| |gcdPrimitive| |suchThat| Y
+ |f01qcf| |iteratedInitials| |integralRepresents| |printTypes|
+ |pushFortranOutputStack| |subscript| |rightAlternative?| |leaf?|
+ |powers| |mainSquareFreePart| |randomLC| |hessian| |critB| |power|
+ |rootSplit| |mkAnswer| |bumptab1| |purelyTranscendental?| LODO2FUN
+ |component| |LiePolyIfCan| |createZechTable| |radicalRoots|
+ |popFortranOutputStack| F |limitedint| |semiResultantReduitEuclidean|
+ |quasiRegular| |selectMultiDimensionalRoutines| |rotate|
+ |radicalOfLeftTraceForm| |interval| |divide| |sturmVariationsOf|
+ |print| |cTan| |opeval| |findConstructor| |trace2PowMod| |drawCurves|
+ |qqq| |Nul| |iiacos| |subResultantsChain| |resolve|
+ |toseSquareFreePart| |outputAsFortran| |constantOperator| |iisin|
+ |c06eaf| |numberOfCycles| |internalIntegrate0| |cAcsch| |karatsuba|
+ |graeffe| |and?| |goodPoint| |clearTheIFTable| |objects|
+ |generalPosition| |curveColorPalette| |lifting1| |Si| |leftPower|
+ |singularAtInfinity?| |SturmHabichtSequence| |whitePoint| |setfirst!|
+ |base| |torsion?| |c06fuf| |absolutelyIrreducible?|
+ |univariatePolynomialsGcds| |removeRoughlyRedundantFactorsInPols|
+ |contours| |cross| |splitNodeOf!| |lowerCase| |makeCos| |f02wef|
+ |fortranDouble| |name| |bfEntry| |removeZero| |deriv| |coth2trigh|
+ |intPatternMatch| |d02bbf| |infix| |crushedSet| |ode| |datalist|
+ |c06fpf| |body| |lintgcd| |listRepresentation| |topFortranOutputStack|
+ |maxRowIndex| |complexEigenvectors| |isOp| |raisePolynomial| |cAsech|
+ |removeIrreducibleRedundantFactors| |sinIfCan| |deepestTail|
+ |fortranLiteralLine| |algebraicVariables| |e04fdf| |firstDenom|
+ |curryLeft| |determinant| ** |halfExtendedResultant1|
+ |cyclotomicFactorization| |acschIfCan| |cAcosh| |decomposeFunc|
+ |checkForZero| |secIfCan| |Beta| |stop| |deepestInitial| ~ |insert|
+ |mainForm| |enqueue!| |nodeOf?| |rightMult| |reduced?| |iitan|
+ |leftAlternative?| |e04ycf| |selectODEIVPRoutines| |distFact|
+ |doublyTransitive?| |showScalarValues| |BasicMethod| |e01baf| EQ
+ |normDeriv2| |sec2cos| |rotatez| |s19adf| |open| |condition|
+ |separateFactors| |separateDegrees| |linearAssociatedExp| |setColumn!|
+ |prem| |eulerE| |tab1| |integralMatrixAtInfinity| |tanh2trigh|
+ |precision| |level| |port| |sample| |lazyGintegrate| |scripted?|
+ |OMputSymbol| |OMlistSymbols| |B1solve| |palgLODE| |indices|
+ |integerBound| |internalInfRittWu?| |eq| |superHeight|
+ |internalDecompose| |viewport3D| |e04ucf| |constantCoefficientRicDE|
+ |routines| |phiCoord| |exactQuotient| |skewSFunction|
+ |mainPrimitivePart| |factorial| |iter| |e04gcf| |mathieu22| |t|
+ |shift| |unexpand| |taylorIfCan| |splitDenominator|
+ |ellipticCylindrical| |operations| |lazyIrreducibleFactors|
+ |nextIrreduciblePoly| |minus!| |previous| |characteristicSet|
+ |rightFactorIfCan| |beauzamyBound| |topPredicate| |seriesToOutputForm|
+ |laurentRep| |definingPolynomial| |getCurve| |normFactors|
+ |hasTopPredicate?| |duplicates?| |adaptive| |infiniteProduct|
+ |bandedJacobian| |modifyPoint| |quotient| |blue| |expPot| |components|
+ |category| |read!| |f01mcf| |laguerreL| |changeBase| |readLine!|
+ |rowEch| |pair?| |rightExtendedGcd| |hermiteH| |property| |domain|
+ |ref| |qroot| |linearPolynomials| |extendedEuclidean| |setrest!|
+ |inHallBasis?| |c06frf| |FormatArabic| |stFunc2| |package|
+ |curveColor| |rightMinimalPolynomial| |polyPart| |f01bsf| |round|
+ |clearCache| |cycleRagits| |showAllElements| |pdf2ef| |supRittWu?|
+ |chainSubResultants| |initializeGroupForWordProblem| |firstSubsetGray|
+ |palgRDE0| |rangeIsFinite| |primaryDecomp|
+ |generalizedContinuumHypothesisAssumed| |numberOfFactors|
+ |viewPhiDefault| |selectPolynomials| |units| |constantKernel|
+ |modularFactor| |f01rdf| |exp| |var2Steps| |makeTerm| |arguments|
+ |s19acf| |LagrangeInterpolation| |quote| |rur| |subscriptedVariables|
+ |setButtonValue| |e02zaf| |useEisensteinCriterion?| |s20acf|
+ |bernoulli| |pushdown| |writeBytes!| |quasiMonic?| |argscript|
+ |makeGraphImage| |reducedSystem| |insertionSort!| |medialSet|
+ |listConjugateBases| |matrixDimensions| |denomRicDE| |conjugates|
+ |trigs| |innerint| |palgRDE| |s17aff| |orOperands| |distribute|
+ |output| |certainlySubVariety?| |compile| |eigenMatrix| |any| |heap|
+ |factorPolynomial| |countable?| |torsionIfCan| |printStatement|
+ |initTable!| |code| |contract| |tanAn| |minPoly| |bytes| |isList|
+ |qinterval| |ParCond| |definingEquations| |expandLog|
+ |useEisensteinCriterion| |perspective| |decrease| |pquo| |hasHi|
+ |alternative?| |fixedDivisor| |central?| |numberOfChildren| |#|
+ |lazyPrem| |currentCategoryFrame| |leftNorm| |nextPartition| |ode2|
+ |rational?| |primPartElseUnitCanonical| |OMgetEndAttr| |generators|
+ |leftUnits| |ricDsolve| |exactQuotient!| |iicos| |leftTraceMatrix|
+ |compose| |outputForm| |dom| |fill!| |row| |multMonom| |incrementBy|
+ |lprop| |laurentIfCan| |constantIfCan| |squareFreePolynomial|
+ |genericLeftMinimalPolynomial| |triangularSystems| |singular?|
+ |prime?| |iifact| |realEigenvectors| |rubiksGroup| |expand|
+ |radicalEigenvectors| |linears| |part?| |frst| |s17dhf| |droot| |node|
+ |push| |OMputEndError| |filterWhile| |univariateSolve| |simplify|
+ |shiftLeft| |elem?| |reducedDiscriminant| |prinshINFO| |const|
+ |discreteLog| |symmetricRemainder| |aLinear| |filterUntil| |e01sff|
+ |extensionDegree| |lookup| |outputArgs| |anticoord| |leftGcd|
+ |mapDown!| |swap| |factorOfDegree| |select| |d01akf| |schema| |c06gqf|
+ |rightExactQuotient| |c02agf| |parametric?| |title| |bezoutMatrix|
+ |clearTable!| |divergence| |options| |cAcot| |OMgetAttr| |elColumn2!|
+ |e01bff| |sequences| |bits| |polyred| |pile| |radicalEigenvector|
+ |iExquo| |infLex?| |prepareDecompose| |bumptab| |increase| |operation|
+ |euclideanNormalForm| |totalGroebner| |accuracyIF|
+ |factorSquareFreePolynomial| |bombieriNorm| |cExp| |s17ahf|
+ |supDimElseRittWu?| |e| |initial| |OMserve| |UpTriBddDenomInv|
+ |cycleLength| |string| |setProperties| |bumprow| |nextPrime|
+ |univariatePolynomial| |symbolTableOf| |monicCompleteDecompose|
+ |setFormula!| |plusInfinity| |prinb| |directSum| |insertTop!|
+ |KrullNumber| |build| |evaluate| |separant| |cyclotomic|
+ |partialFraction| |generalizedContinuumHypothesisAssumed?| |iipow|
+ |minusInfinity| |makeRecord| |enumerate| |minimize| |constant?|
+ |pointColorDefault| |symFunc| |stronglyReduce| |OMencodingBinary|
+ |asinhIfCan| |flexible?| |numberOfMonomials| |gethi| |safeCeiling|
+ |basisOfRightAnnihilator| |s19aaf| |vspace| |rischNormalize|
+ |permanent| |redPo| |ceiling| |multisect| |setProperty!| |cycles|
+ |mainVariable| |length| |OMread| |children| |dmpToP|
+ |generalTwoFactor| |e02bef| |linear?| |jacobian| |exQuo| |generalSqFr|
+ |stoseInvertible?sqfreg| |scripts| |pushucoef| |makeYoungTableau|
+ |swap!| |oddlambert| |nthExponent| |factorFraction| |cycleSplit!|
+ |tValues| |sqfrFactor| |multiplyExponents| |position!| |implies| |low|
+ |resetVariableOrder| |interpolate| |numberOfComponents|
+ |generalInfiniteProduct| |constantOpIfCan| |lieAlgebra?|
+ |zeroSetSplit| |mapUnivariate| |removeRedundantFactors|
+ |zeroDimPrimary?| |findCycle| |ffactor| |ddFact| |diff| |equation|
+ |type| |acscIfCan| |characteristicPolynomial| |partitions|
+ |trigs2explogs| |f02axf| |errorKind| |boundOfCauchy| |arrayStack|
+ |back| |singleFactorBound| |subNodeOf?| |integer?|
+ |nativeModuleExtension| |relerror| |latex| |width|
+ |lastSubResultantEuclidean| UP2UTS |decimal| |pmComplexintegrate|
+ |pack!| |specialTrigs| |toroidal| |returns| |packageCall|
+ |firstUncouplingMatrix| |iiasech| |factorAndSplit| |OMgetEndBVar|
+ |rightQuotient| |differentialVariables| |horizConcat| |e01sef|
+ |viewPosDefault| |list| |power!| |normInvertible?| |decreasePrecision|
+ |d02cjf| |fortranCarriageReturn| |lifting| |root| |multiEuclideanTree|
+ |lazyPquo| |addPointLast| |OMUnknownCD?| |car| |remove!| |init|
+ |inrootof| |realRoots| |besselY| |cycleTail| |size?| |leader| |sort!|
+ |deepExpand| |monic?| |cdr| |nonLinearPart| |setchildren!| |arg1|
+ |figureUnits| |explicitlyFinite?| |readUInt8!| |roman| |groebgen|
+ |oblateSpheroidal| |groebSolve| |setDifference|
+ |solveLinearPolynomialEquationByRecursion| |lepol| |symbolIfCan|
+ |arg2| |delta| |head| |decompose| |extendedint| |s18aef| |mvar|
+ |innerSolve1| |ksec| |preprocess| |llprop| |showAll?| |pop!|
+ |showTheSymbolTable| |f02aef| |polygon?| |redmat| |equivOperands|
+ |wordInGenerators| |expIfCan| |option?| |nextPrimitiveNormalPoly|
+ |conditions| |optional| |fglmIfCan| |restorePrecision| |UnVectorise|
+ |algebraic?| |rename| |mathieu12| |pleskenSplit|
+ |mainCharacterization| |sin?| |squareFree| |match| |rightOne| |write!|
+ |invertible?| |normalizeIfCan| |result| |euler| |chiSquare| |cosIfCan|
+ |extractClosed| |associates?| |signatureAst| |substring?|
+ |divideIfCan| |move| |groebnerIdeal| |factorSquareFree| |properties|
+ |mainMonomial| |vconcat| |finiteBound| |localReal?| |irreducible?|
+ |badValues| |socf2socdf| |groebnerFactorize| |fillPascalTriangle|
+ |lllp| |hdmpToP| |translate| |monomRDEsys| |irreducibleFactors|
+ |nullSpace| |screenResolution| |lazyPseudoDivide| |suffix?|
+ |LyndonCoordinates| |transcendent?| |c05pbf| |nextItem| |bubbleSort!|
+ |coord| |myDegree| |removeCoshSq| |repeatUntilLoop| |reduction|
+ |lambda| |factorials| |problemPoints| |pattern| |leftUnit|
+ |pseudoDivide| |integralAtInfinity?| |getOrder| |s15aef|
+ |complexNumericIfCan| |startTableGcd!| |parametersOf| |prefix?|
+ |solid?| |leftMinimalPolynomial| |leftFactor| |monicDivide| |randomR|
+ |setright!| |rational| |negative?| |delay| |noLinearFactor?|
+ |viewSizeDefault| |iicoth| |f02bjf| |createNormalElement| |hex|
+ SEGMENT |create| |makeSketch| |branchPoint?| |positiveRemainder|
+ |OMputEndObject| |bit?| |floor| |sech2cosh| |magnitude| |rdHack1|
+ |difference| |removeRoughlyRedundantFactorsInPol| |diophantineSystem|
+ |iroot| |resultantEuclideannaif| |unary?| |exptMod| |mkPrim|
+ |cscIfCan| |graphImage| |nsqfree| |message| |basisOfCentroid|
+ |critMTonD1| |solve| |postfix| |changeThreshhold| |var1StepsDefault|
+ |OMgetBind| |viewport2D| |stirling2| |sequence| |rotatex| |cCos|
+ |OMputEndAttr| |OMsend| |constantRight| |commutative?| |subHeight|
+ |s18aff| |trim| |optAttributes| |sdf2lst| |tRange| |asecIfCan|
+ |basisOfLeftNucloid| |cyclotomicDecomposition| |sinhIfCan| |product|
+ |rationalIfCan| |asimpson| |getSyntaxFormsFromFile| |represents|
+ |physicalLength!| |infix?| |wronskianMatrix| |sinhcosh|
+ |tryFunctionalDecomposition?| |OMputBind| |removeDuplicates!|
+ |interpret| |bat1| |strongGenerators| |variable?| |neglist|
+ |quadraticNorm| |mask| |binaryTree| |region| |modTree| |dfRange|
+ |csch2sinh| |modularGcdPrimitive| |makeFloatFunction| |subset?|
+ |critpOrder| |getDatabase| |homogeneous?| |createIrreduciblePoly|
+ |headAst| |realZeros| |rightTraceMatrix| |mantissa| |categoryFrame|
+ |OMgetEndAtp| |cons| |airyAi| |splitConstant| |singRicDE|
+ |stopMusserTrials| |over| |fixPredicate| |traverse|
+ |exprHasAlgebraicWeight| |OMgetObject| |resultantReduit| |retract|
+ |limitPlus| |OMputAttr| |atanhIfCan| |error| |factorsOfDegree| |imagJ|
+ |updatD| |stoseLastSubResultant| |coefficients| |xCoord|
+ |partialQuotients| |andOperands| |finite?| |getMatch| |arity| |assert|
+ |stoseInvertibleSetsqfreg| |mapUnivariateIfCan| |high| |ord| |status|
+ |bright| |numberOfImproperPartitions| |s17aef| |OMsetEncoding|
+ |cschIfCan| |ridHack1| |weakBiRank| |completeEchelonBasis|
+ |sparsityIF| |numericIfCan| |implies?| |mr| |readInt8!| |dn|
+ |rightRankPolynomial| |lfintegrate| |outputAsTex| |reorder|
+ |squareFreeLexTriangular| |setImagSteps| |dihedralGroup| |Ci| |vector|
+ |s14aaf| |monicLeftDivide| |addMatch| |leaves| |hypergeometric0F1|
+ |atrapezoidal| |e02ddf| |OMgetBVar| |makeCrit| |float?|
+ |permutationGroup| |LiePoly| |source| |makeprod| |Lazard| |polygon|
+ |erf| |colorDef| NOT |thenBranch| |isTimes| |summation| |quadratic|
+ |createMultiplicationTable| |differentiate| |imagj| |hue|
+ |monicRightFactorIfCan| |approximants| |monomialIntPoly| |iicsch|
+ |repSq| OR |categories| |symmetricProduct| |lazy?| ~= |lfunc|
+ |functionIsContinuousAtEndPoints| |iiasinh| |taylorQuoByVar|
+ |fprindINFO| |generateIrredPoly| |retractIfCan| |simpleBounds?| AND
+ |HenselLift| |connectTo| |coerce| |toseLastSubResultant|
+ |solveRetract| |alphabetic?| |dilog| |indicialEquation| |hconcat|
+ |intChoose| |rewriteIdealWithQuasiMonicGenerators| |writable?| |numer|
+ |construct| |indiceSubResultant| |prime| |tanSum| |mainKernel|
+ |overlap| |appendPoint| |gcdcofactprim| |factorList| |bitLength| |sin|
+ |bindings| |universe| |subPolSet?| |f01ref| |denom| |pdct| |trueEqual|
+ |totolex| |s21bbf| |target| |overlabel| |probablyZeroDim?| |cos|
+ |algint| |stopTable!| |s15adf| |mdeg| |mergeFactors|
+ |lastSubResultantElseSplit| |s01eaf| |rectangularMatrix| |fintegrate|
+ |symmetric?| |tan| |notelem| |pi| |extractSplittingLeaf| |unit?|
+ |merge| |iiacot| |primintfldpoly| |coerceS| |yCoord| |cot| |continue|
+ |internalZeroSetSplit| |reducedForm| |pointColorPalette| |infinity|
+ |OMgetEndError| |divisorCascade| |hexDigit| |lyndonIfCan| |pastel|
+ |mainCoefficients| |sec| |setOrder| |showTheFTable| |headRemainder|
+ |possiblyNewVariety?| |augment| |useNagFunctions| |nextNormalPoly|
+ |isAbsolutelyIrreducible?| |cCosh| |csc| |bag| |eof?| |geometric|
+ |virtualDegree| |pointColor| |totalDifferential| |inc| |bracket|
+ |asin| |readable?| |kernel| |romberg| |coerceImages| |Frobenius|
+ |lowerCase!| |s17ajf| |less?| |ravel| |unaryFunction|
+ |symmetricTensors| |acos| |map| |number?| * |draw| |univcase|
+ |coHeight| |submod| |lazyPseudoRemainder| |hspace|
+ |semiResultantEuclidean2| |reshape| |OMgetEndObject|
+ |OMencodingUnknown| |atan| |equiv| |ef2edf| |basicSet| |intersect|
+ |seriesSolve| |setScreenResolution| |more?| |monomRDE| |weighted|
+ |acot| |setOfMinN| |stronglyReduced?| |integerIfCan| |iiasec|
+ |innerSolve| |resetAttributeButtons| |resetBadValues| |asec| |char|
+ |var2StepsDefault| |exprHasWeightCosWXorSinWX| |coefChoose| |node?|
+ |solve1| |rightDivide| |ParCondList| |printInfo| |reindex| |orbits|
+ |acsc| |terms| |prolateSpheroidal| |Ei| |makeObject| |setelt| |pol|
+ |cosSinInfo| |rootKerSimp| |stoseIntegralLastSubResultant|
+ |subResultantChain| |sinh| |cyclicParents| |convert| |derivative|
+ |complexSolve| |upDateBranches| |basisOfRightNucloid|
+ |basisOfRightNucleus| |critMonD1| |d01gaf| |update| |safeFloor|
+ |iisech| |roughBase?| |copy| |coef| |expenseOfEvaluationIF|
+ |bringDown| |nil?| |cos2sec| |showTheRoutinesTable|
+ |rewriteSetWithReduction| |makeEq| |testModulus|
+ |rewriteIdealWithHeadRemainder| |closed?| |zeroDim?| |badNum|
+ |extractTop!| |bothWays| |s17acf| |float| |f04maf| |cyclicSubmodule|
+ |complementaryBasis| |innerEigenvectors| |weierstrass| |edf2df|
+ |nullity| |showTypeInOutput| |d01fcf| |coordinate| |autoCoerce|
+ |iiexp| |semiIndiceSubResultantEuclidean| |contains?| |computeBasis|
+ |s17dgf| |failed| |fortranCompilerName| |pascalTriangle|
+ |removeSuperfluousQuasiComponents| |typeLists|
+ |generalizedEigenvector| |s21baf| |lfextendedint| |OMreceive|
+ |vectorise| |match?| |position| |branchPointAtInfinity?| |copy!|
+ |algebraicOf| |linearlyDependentOverZ?| |isExpt| |wreath|
+ |halfExtendedSubResultantGcd2| |f01qdf| |mapdiv| |OMopenFile|
+ |rightRecip| |selectNonFiniteRoutines| |key?| |argumentList!|
+ |legendreP| |quasiMonicPolynomials| |leastMonomial| |cyclicCopy|
+ |minPoints3D| |groebner?| |presuper| |besselJ| |impliesOperands|
+ |numberOfIrreduciblePoly| |character?| |basis| |LyndonBasis| |sincos|
+ |primeFactor| |largest| |pseudoRemainder| |exponentialOrder|
+ |listOfMonoms| |createThreeSpace| |d02gaf| |atom?|
+ |invertibleElseSplit?| |OMgetError| |graphCurves| |exponential1|
+ |getMeasure| |external?| |c02aff| |associative?| |unit| |bottom!|
+ |comp| |matrixConcat3D| GE |rootDirectory| |extend| |binary| |lhs|
+ |intensity| |readInt16!| |modularGcd| |flexibleArray| |psolve|
+ |antiCommutator| |zero?| GT |doubleDisc| |loopPoints|
+ |integralCoordinates| |rhs| |univariatePolynomials| |sumOfDivisors|
+ |extendIfCan| |clipBoolean| |integralMatrix| |next| |rowEchelonLocal|
+ LE |getMultiplicationTable| |dimension| |critBonD| |traceMatrix|
+ |df2ef| |uniform01| |d03eef| |subQuasiComponent?| |univariate?| LT
+ |fibonacci| |f04qaf| |stirling1| |primextendedint| |s19abf|
+ |startTableInvSet!| |createNormalPrimitivePoly| |e02def| |polar|
+ |setelt!| |degreeSubResultantEuclidean| |imports| |lagrange| |cLog|
+ |norm| |operators| |variationOfParameters| |log| |one?|
+ |bipolarCylindrical| |scalarMatrix| |triangular?| |leftRemainder|
+ |setAdaptive3D| |setValue!| |fracPart| |sts2stst|
+ |regularRepresentation| |repeating?| |tableau| |tubePoints| |unknown|
+ |semiResultantEuclideannaif| |LazardQuotient| |allRootsOf| |nil|
+ |infinite| |arbitraryExponent| |approximate| |complex|
+ |shallowMutable| |canonical| |noetherian| |central|
+ |partiallyOrderedSet| |arbitraryPrecision| |canonicalsClosed|
+ |noZeroDivisors| |rightUnitary| |leftUnitary| |additiveValuation|
+ |unitsKnown| |canonicalUnitNormal| |multiplicativeValuation|
+ |finiteAggregate| |shallowlyMutable| |commutative|) \ No newline at end of file
diff --git a/src/share/algebra/interp.daase b/src/share/algebra/interp.daase
index ccb3c21c..d9c2c341 100644
--- a/src/share/algebra/interp.daase
+++ b/src/share/algebra/interp.daase
@@ -1,621 +1,621 @@
-(3194540 . 3442535968)
-((-1399 (((-112) (-1 (-112) |#2| |#2|) $) 63) (((-112) $) NIL)) (-3381 (($ (-1 (-112) |#2| |#2|) $) 18) (($ $) NIL)) (-4200 ((|#2| $ (-562) |#2|) NIL) ((|#2| $ (-1223 (-562)) |#2|) 34)) (-2447 (($ $) 59)) (-1955 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 38) ((|#2| (-1 |#2| |#2| |#2|) $) 37)) (-4264 (((-562) (-1 (-112) |#2|) $) 22) (((-562) |#2| $) NIL) (((-562) |#2| $ (-562)) 73)) (-1720 (((-639 |#2|) $) 13)) (-1610 (($ (-1 (-112) |#2| |#2|) $ $) 47) (($ $ $) NIL)) (-1490 (($ (-1 |#2| |#2|) $) 29)) (-4152 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 44)) (-3297 (($ |#2| $ (-562)) NIL) (($ $ $ (-562)) 50)) (-3251 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 24)) (-1763 (((-112) (-1 (-112) |#2|) $) 21)) (-2343 ((|#2| $ (-562) |#2|) NIL) ((|#2| $ (-562)) NIL) (($ $ (-1223 (-562))) 49)) (-2880 (($ $ (-562)) 56) (($ $ (-1223 (-562))) 55)) (-1723 (((-766) (-1 (-112) |#2|) $) 26) (((-766) |#2| $) NIL)) (-1853 (($ $ $ (-562)) 52)) (-4220 (($ $) 51)) (-4066 (($ (-639 |#2|)) 53)) (-2767 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 64) (($ (-639 $)) 62)) (-4054 (((-857) $) 69)) (-1744 (((-112) (-1 (-112) |#2|) $) 20)) (-1731 (((-112) $ $) 72)) (-1759 (((-112) $ $) 75)))
-(((-18 |#1| |#2|) (-10 -8 (-15 -1731 ((-112) |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -1759 ((-112) |#1| |#1|)) (-15 -3381 (|#1| |#1|)) (-15 -3381 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2447 (|#1| |#1|)) (-15 -1853 (|#1| |#1| |#1| (-562))) (-15 -1399 ((-112) |#1|)) (-15 -1610 (|#1| |#1| |#1|)) (-15 -4264 ((-562) |#2| |#1| (-562))) (-15 -4264 ((-562) |#2| |#1|)) (-15 -4264 ((-562) (-1 (-112) |#2|) |#1|)) (-15 -1399 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -1610 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4200 (|#2| |#1| (-1223 (-562)) |#2|)) (-15 -3297 (|#1| |#1| |#1| (-562))) (-15 -3297 (|#1| |#2| |#1| (-562))) (-15 -2880 (|#1| |#1| (-1223 (-562)))) (-15 -2880 (|#1| |#1| (-562))) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -4066 (|#1| (-639 |#2|))) (-15 -3251 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2343 (|#2| |#1| (-562))) (-15 -2343 (|#2| |#1| (-562) |#2|)) (-15 -4200 (|#2| |#1| (-562) |#2|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1720 ((-639 |#2|) |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -1763 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1744 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1490 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4220 (|#1| |#1|))) (-19 |#2|) (-1207)) (T -18))
+(3194856 . 3442698085)
+((-1706 (((-112) (-1 (-112) |#2| |#2|) $) 63) (((-112) $) NIL)) (-3737 (($ (-1 (-112) |#2| |#2|) $) 18) (($ $) NIL)) (-4200 ((|#2| $ (-562) |#2|) NIL) ((|#2| $ (-1223 (-562)) |#2|) 34)) (-2673 (($ $) 59)) (-1954 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 38) ((|#2| (-1 |#2| |#2| |#2|) $) 37)) (-4265 (((-562) (-1 (-112) |#2|) $) 22) (((-562) |#2| $) NIL) (((-562) |#2| $ (-562)) 73)) (-1720 (((-639 |#2|) $) 13)) (-4103 (($ (-1 (-112) |#2| |#2|) $ $) 47) (($ $ $) NIL)) (-1491 (($ (-1 |#2| |#2|) $) 29)) (-4152 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 44)) (-3295 (($ |#2| $ (-562)) NIL) (($ $ $ (-562)) 50)) (-1963 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 24)) (-3008 (((-112) (-1 (-112) |#2|) $) 21)) (-2343 ((|#2| $ (-562) |#2|) NIL) ((|#2| $ (-562)) NIL) (($ $ (-1223 (-562))) 49)) (-2880 (($ $ (-562)) 56) (($ $ (-1223 (-562))) 55)) (-1723 (((-766) (-1 (-112) |#2|) $) 26) (((-766) |#2| $) NIL)) (-2694 (($ $ $ (-562)) 52)) (-4220 (($ $) 51)) (-4064 (($ (-639 |#2|)) 53)) (-2767 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 64) (($ (-639 $)) 62)) (-4053 (((-857) $) 69)) (-2879 (((-112) (-1 (-112) |#2|) $) 20)) (-1733 (((-112) $ $) 72)) (-1761 (((-112) $ $) 75)))
+(((-18 |#1| |#2|) (-10 -8 (-15 -1733 ((-112) |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -1761 ((-112) |#1| |#1|)) (-15 -3737 (|#1| |#1|)) (-15 -3737 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2673 (|#1| |#1|)) (-15 -2694 (|#1| |#1| |#1| (-562))) (-15 -1706 ((-112) |#1|)) (-15 -4103 (|#1| |#1| |#1|)) (-15 -4265 ((-562) |#2| |#1| (-562))) (-15 -4265 ((-562) |#2| |#1|)) (-15 -4265 ((-562) (-1 (-112) |#2|) |#1|)) (-15 -1706 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4103 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4200 (|#2| |#1| (-1223 (-562)) |#2|)) (-15 -3295 (|#1| |#1| |#1| (-562))) (-15 -3295 (|#1| |#2| |#1| (-562))) (-15 -2880 (|#1| |#1| (-1223 (-562)))) (-15 -2880 (|#1| |#1| (-562))) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -4064 (|#1| (-639 |#2|))) (-15 -1963 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2343 (|#2| |#1| (-562))) (-15 -2343 (|#2| |#1| (-562) |#2|)) (-15 -4200 (|#2| |#1| (-562) |#2|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1720 ((-639 |#2|) |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -3008 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2879 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1491 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4220 (|#1| |#1|))) (-19 |#2|) (-1207)) (T -18))
NIL
-(-10 -8 (-15 -1731 ((-112) |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -1759 ((-112) |#1| |#1|)) (-15 -3381 (|#1| |#1|)) (-15 -3381 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2447 (|#1| |#1|)) (-15 -1853 (|#1| |#1| |#1| (-562))) (-15 -1399 ((-112) |#1|)) (-15 -1610 (|#1| |#1| |#1|)) (-15 -4264 ((-562) |#2| |#1| (-562))) (-15 -4264 ((-562) |#2| |#1|)) (-15 -4264 ((-562) (-1 (-112) |#2|) |#1|)) (-15 -1399 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -1610 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4200 (|#2| |#1| (-1223 (-562)) |#2|)) (-15 -3297 (|#1| |#1| |#1| (-562))) (-15 -3297 (|#1| |#2| |#1| (-562))) (-15 -2880 (|#1| |#1| (-1223 (-562)))) (-15 -2880 (|#1| |#1| (-562))) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -4066 (|#1| (-639 |#2|))) (-15 -3251 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2343 (|#2| |#1| (-562))) (-15 -2343 (|#2| |#1| (-562) |#2|)) (-15 -4200 (|#2| |#1| (-562) |#2|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1720 ((-639 |#2|) |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -1763 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1744 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1490 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4220 (|#1| |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3052 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-845)))) (-3381 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4403))) (($ $) 88 (-12 (|has| |#1| (-845)) (|has| $ (-6 -4403))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-845)))) (-4336 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) |#1|) 52 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) 58 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-2447 (($ $) 90 (|has| $ (-6 -4403)))) (-2677 (($ $) 100)) (-1459 (($ $) 78 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#1| $) 77 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) 53 (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) 51)) (-4264 (((-562) (-1 (-112) |#1|) $) 97) (((-562) |#1| $) 96 (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) 95 (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-1458 (($ (-766) |#1|) 69)) (-3292 (((-112) $ (-766)) 9)) (-4197 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 87 (|has| |#1| (-845)))) (-1610 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 86 (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3297 (($ |#1| $ (-562)) 60) (($ $ $ (-562)) 59)) (-2093 (((-639 (-562)) $) 46)) (-1570 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 42 (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2716 (($ $ |#1|) 41 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) 48)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ (-562) |#1|) 50) ((|#1| $ (-562)) 49) (($ $ (-1223 (-562))) 63)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1853 (($ $ $ (-562)) 91 (|has| $ (-6 -4403)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 70)) (-2767 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) 84 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 83 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-1785 (((-112) $ $) 85 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 82 (|has| |#1| (-845)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+(-10 -8 (-15 -1733 ((-112) |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -1761 ((-112) |#1| |#1|)) (-15 -3737 (|#1| |#1|)) (-15 -3737 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2673 (|#1| |#1|)) (-15 -2694 (|#1| |#1| |#1| (-562))) (-15 -1706 ((-112) |#1|)) (-15 -4103 (|#1| |#1| |#1|)) (-15 -4265 ((-562) |#2| |#1| (-562))) (-15 -4265 ((-562) |#2| |#1|)) (-15 -4265 ((-562) (-1 (-112) |#2|) |#1|)) (-15 -1706 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4103 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4200 (|#2| |#1| (-1223 (-562)) |#2|)) (-15 -3295 (|#1| |#1| |#1| (-562))) (-15 -3295 (|#1| |#2| |#1| (-562))) (-15 -2880 (|#1| |#1| (-1223 (-562)))) (-15 -2880 (|#1| |#1| (-562))) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -4064 (|#1| (-639 |#2|))) (-15 -1963 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -2343 (|#2| |#1| (-562))) (-15 -2343 (|#2| |#1| (-562) |#2|)) (-15 -4200 (|#2| |#1| (-562) |#2|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1720 ((-639 |#2|) |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -3008 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2879 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1491 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4220 (|#1| |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3655 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-845)))) (-3737 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4404))) (($ $) 88 (-12 (|has| |#1| (-845)) (|has| $ (-6 -4404))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-845)))) (-3735 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) |#1|) 52 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) 58 (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-2673 (($ $) 90 (|has| $ (-6 -4404)))) (-2676 (($ $) 100)) (-1459 (($ $) 78 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#1| $) 77 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) 53 (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) 51)) (-4265 (((-562) (-1 (-112) |#1|) $) 97) (((-562) |#1| $) 96 (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) 95 (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-1458 (($ (-766) |#1|) 69)) (-4172 (((-112) $ (-766)) 9)) (-1849 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 87 (|has| |#1| (-845)))) (-4103 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 86 (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3295 (($ |#1| $ (-562)) 60) (($ $ $ (-562)) 59)) (-3336 (((-639 (-562)) $) 46)) (-1987 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 42 (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-3510 (($ $ |#1|) 41 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) 48)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ (-562) |#1|) 50) ((|#1| $ (-562)) 49) (($ $ (-1223 (-562))) 63)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-2694 (($ $ $ (-562)) 91 (|has| $ (-6 -4404)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 70)) (-2767 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) 84 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 83 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-1785 (((-112) $ $) 85 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 82 (|has| |#1| (-845)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-19 |#1|) (-139) (-1207)) (T -19))
NIL
-(-13 (-372 |t#1|) (-10 -7 (-6 -4403)))
+(-13 (-372 |t#1|) (-10 -7 (-6 -4404)))
(((-34) . T) ((-102) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845))) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845)) (|has| |#1| (-609 (-857)))) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-285 #0=(-562) |#1|) . T) ((-287 #0# |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-372 |#1|) . T) ((-488 |#1|) . T) ((-600 #0# |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-645 |#1|) . T) ((-845) |has| |#1| (-845)) ((-1092) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845))) ((-1207) . T))
-((-3214 (((-3 $ "failed") $ $) 12)) (-1848 (($ $) NIL) (($ $ $) 9)) (* (($ (-916) $) NIL) (($ (-766) $) 16) (($ (-562) $) 21)))
-(((-20 |#1|) (-10 -8 (-15 * (|#1| (-562) |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 -3214 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|))) (-21)) (T -20))
+((-2781 (((-3 $ "failed") $ $) 12)) (-1847 (($ $) NIL) (($ $ $) 9)) (* (($ (-916) $) NIL) (($ (-766) $) 16) (($ (-562) $) 21)))
+(((-20 |#1|) (-10 -8 (-15 * (|#1| (-562) |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 -2781 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|))) (-21)) (T -20))
NIL
-(-10 -8 (-15 * (|#1| (-562) |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 -3214 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20)))
+(-10 -8 (-15 * (|#1| (-562) |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 -2781 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20)))
(((-21) (-139)) (T -21))
-((-1848 (*1 *1 *1) (-4 *1 (-21))) (-1848 (*1 *1 *1 *1) (-4 *1 (-21))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-562)))))
-(-13 (-130) (-10 -8 (-15 -1848 ($ $)) (-15 -1848 ($ $ $)) (-15 * ($ (-562) $))))
+((-1847 (*1 *1 *1) (-4 *1 (-21))) (-1847 (*1 *1 *1 *1) (-4 *1 (-21))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-21)) (-5 *2 (-562)))))
+(-13 (-130) (-10 -8 (-15 -1847 ($ $)) (-15 -1847 ($ $ $)) (-15 * ($ (-562) $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-1952 (((-112) $) 10)) (-1800 (($) 15)) (* (($ (-916) $) 14) (($ (-766) $) 18)))
-(((-22 |#1|) (-10 -8 (-15 * (|#1| (-766) |#1|)) (-15 -1952 ((-112) |#1|)) (-15 -1800 (|#1|)) (-15 * (|#1| (-916) |#1|))) (-23)) (T -22))
+((-4325 (((-112) $) 10)) (-3329 (($) 15)) (* (($ (-916) $) 14) (($ (-766) $) 18)))
+(((-22 |#1|) (-10 -8 (-15 * (|#1| (-766) |#1|)) (-15 -4325 ((-112) |#1|)) (-15 -3329 (|#1|)) (-15 * (|#1| (-916) |#1|))) (-23)) (T -22))
NIL
-(-10 -8 (-15 * (|#1| (-766) |#1|)) (-15 -1952 ((-112) |#1|)) (-15 -1800 (|#1|)) (-15 * (|#1| (-916) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1800 (($) 17 T CONST)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15)))
+(-10 -8 (-15 * (|#1| (-766) |#1|)) (-15 -4325 ((-112) |#1|)) (-15 -3329 (|#1|)) (-15 * (|#1| (-916) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-3329 (($) 17 T CONST)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15)))
(((-23) (-139)) (T -23))
-((-2286 (*1 *1) (-4 *1 (-23))) (-1800 (*1 *1) (-4 *1 (-23))) (-1952 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-766)))))
-(-13 (-25) (-10 -8 (-15 (-2286) ($) -1497) (-15 -1800 ($) -1497) (-15 -1952 ((-112) $)) (-15 * ($ (-766) $))))
+((-2285 (*1 *1) (-4 *1 (-23))) (-3329 (*1 *1) (-4 *1 (-23))) (-4325 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-766)))))
+(-13 (-25) (-10 -8 (-15 (-2285) ($) -1497) (-15 -3329 ($) -1497) (-15 -4325 ((-112) $)) (-15 * ($ (-766) $))))
(((-25) . T) ((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
((* (($ (-916) $) 10)))
(((-24 |#1|) (-10 -8 (-15 * (|#1| (-916) |#1|))) (-25)) (T -24))
NIL
(-10 -8 (-15 * (|#1| (-916) |#1|)))
-((-4041 (((-112) $ $) 7)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1731 (((-112) $ $) 6)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13)))
+((-4041 (((-112) $ $) 7)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1733 (((-112) $ $) 6)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13)))
(((-25) (-139)) (T -25))
-((-1835 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-916)))))
-(-13 (-1092) (-10 -8 (-15 -1835 ($ $ $)) (-15 * ($ (-916) $))))
+((-1836 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-916)))))
+(-13 (-1092) (-10 -8 (-15 -1836 ($ $ $)) (-15 * ($ (-916) $))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-1404 (((-639 $) (-947 $)) 29) (((-639 $) (-1164 $)) 16) (((-639 $) (-1164 $) (-1168)) 20)) (-1821 (($ (-947 $)) 27) (($ (-1164 $)) 11) (($ (-1164 $) (-1168)) 54)) (-3646 (((-639 $) (-947 $)) 30) (((-639 $) (-1164 $)) 18) (((-639 $) (-1164 $) (-1168)) 19)) (-1502 (($ (-947 $)) 28) (($ (-1164 $)) 13) (($ (-1164 $) (-1168)) NIL)))
-(((-26 |#1|) (-10 -8 (-15 -1404 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -1404 ((-639 |#1|) (-1164 |#1|))) (-15 -1404 ((-639 |#1|) (-947 |#1|))) (-15 -1821 (|#1| (-1164 |#1|) (-1168))) (-15 -1821 (|#1| (-1164 |#1|))) (-15 -1821 (|#1| (-947 |#1|))) (-15 -3646 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -3646 ((-639 |#1|) (-1164 |#1|))) (-15 -3646 ((-639 |#1|) (-947 |#1|))) (-15 -1502 (|#1| (-1164 |#1|) (-1168))) (-15 -1502 (|#1| (-1164 |#1|))) (-15 -1502 (|#1| (-947 |#1|)))) (-27)) (T -26))
+((-1763 (((-639 $) (-947 $)) 29) (((-639 $) (-1164 $)) 16) (((-639 $) (-1164 $) (-1168)) 20)) (-2391 (($ (-947 $)) 27) (($ (-1164 $)) 11) (($ (-1164 $) (-1168)) 54)) (-1431 (((-639 $) (-947 $)) 30) (((-639 $) (-1164 $)) 18) (((-639 $) (-1164 $) (-1168)) 19)) (-2608 (($ (-947 $)) 28) (($ (-1164 $)) 13) (($ (-1164 $) (-1168)) NIL)))
+(((-26 |#1|) (-10 -8 (-15 -1763 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -1763 ((-639 |#1|) (-1164 |#1|))) (-15 -1763 ((-639 |#1|) (-947 |#1|))) (-15 -2391 (|#1| (-1164 |#1|) (-1168))) (-15 -2391 (|#1| (-1164 |#1|))) (-15 -2391 (|#1| (-947 |#1|))) (-15 -1431 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -1431 ((-639 |#1|) (-1164 |#1|))) (-15 -1431 ((-639 |#1|) (-947 |#1|))) (-15 -2608 (|#1| (-1164 |#1|) (-1168))) (-15 -2608 (|#1| (-1164 |#1|))) (-15 -2608 (|#1| (-947 |#1|)))) (-27)) (T -26))
NIL
-(-10 -8 (-15 -1404 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -1404 ((-639 |#1|) (-1164 |#1|))) (-15 -1404 ((-639 |#1|) (-947 |#1|))) (-15 -1821 (|#1| (-1164 |#1|) (-1168))) (-15 -1821 (|#1| (-1164 |#1|))) (-15 -1821 (|#1| (-947 |#1|))) (-15 -3646 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -3646 ((-639 |#1|) (-1164 |#1|))) (-15 -3646 ((-639 |#1|) (-947 |#1|))) (-15 -1502 (|#1| (-1164 |#1|) (-1168))) (-15 -1502 (|#1| (-1164 |#1|))) (-15 -1502 (|#1| (-947 |#1|))))
-((-4041 (((-112) $ $) 7)) (-1404 (((-639 $) (-947 $)) 81) (((-639 $) (-1164 $)) 80) (((-639 $) (-1164 $) (-1168)) 79)) (-1821 (($ (-947 $)) 84) (($ (-1164 $)) 83) (($ (-1164 $) (-1168)) 82)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 74)) (-2921 (((-417 $) $) 73)) (-1643 (($ $) 93)) (-2569 (((-112) $ $) 60)) (-1800 (($) 17 T CONST)) (-3646 (((-639 $) (-947 $)) 87) (((-639 $) (-1164 $)) 86) (((-639 $) (-1164 $) (-1168)) 85)) (-1502 (($ (-947 $)) 90) (($ (-1164 $)) 89) (($ (-1164 $) (-1168)) 88)) (-1811 (($ $ $) 56)) (-3668 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-2717 (((-112) $) 72)) (-1957 (((-112) $) 31)) (-1891 (($ $ (-562)) 92)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 71)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1635 (((-417 $) $) 75)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1577 (((-766) $) 59)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 58)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ $) 66)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70) (($ $ (-406 (-562))) 91)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68)))
+(-10 -8 (-15 -1763 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -1763 ((-639 |#1|) (-1164 |#1|))) (-15 -1763 ((-639 |#1|) (-947 |#1|))) (-15 -2391 (|#1| (-1164 |#1|) (-1168))) (-15 -2391 (|#1| (-1164 |#1|))) (-15 -2391 (|#1| (-947 |#1|))) (-15 -1431 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -1431 ((-639 |#1|) (-1164 |#1|))) (-15 -1431 ((-639 |#1|) (-947 |#1|))) (-15 -2608 (|#1| (-1164 |#1|) (-1168))) (-15 -2608 (|#1| (-1164 |#1|))) (-15 -2608 (|#1| (-947 |#1|))))
+((-4041 (((-112) $ $) 7)) (-1763 (((-639 $) (-947 $)) 81) (((-639 $) (-1164 $)) 80) (((-639 $) (-1164 $) (-1168)) 79)) (-2391 (($ (-947 $)) 84) (($ (-1164 $)) 83) (($ (-1164 $) (-1168)) 82)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 74)) (-3788 (((-417 $) $) 73)) (-1644 (($ $) 93)) (-1436 (((-112) $ $) 60)) (-3329 (($) 17 T CONST)) (-1431 (((-639 $) (-947 $)) 87) (((-639 $) (-1164 $)) 86) (((-639 $) (-1164 $) (-1168)) 85)) (-2608 (($ (-947 $)) 90) (($ (-1164 $)) 89) (($ (-1164 $) (-1168)) 88)) (-1810 (($ $ $) 56)) (-1694 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-3521 (((-112) $) 72)) (-4367 (((-112) $) 31)) (-1895 (($ $ (-562)) 92)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 71)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1635 (((-417 $) $) 75)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-2044 (((-766) $) 59)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 58)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ $) 66)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70) (($ $ (-406 (-562))) 91)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68)))
(((-27) (-139)) (T -27))
-((-1502 (*1 *1 *2) (-12 (-5 *2 (-947 *1)) (-4 *1 (-27)))) (-1502 (*1 *1 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-27)))) (-1502 (*1 *1 *2 *3) (-12 (-5 *2 (-1164 *1)) (-5 *3 (-1168)) (-4 *1 (-27)))) (-3646 (*1 *2 *3) (-12 (-5 *3 (-947 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1)))) (-3646 (*1 *2 *3) (-12 (-5 *3 (-1164 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1)))) (-3646 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *1)) (-5 *4 (-1168)) (-4 *1 (-27)) (-5 *2 (-639 *1)))) (-1821 (*1 *1 *2) (-12 (-5 *2 (-947 *1)) (-4 *1 (-27)))) (-1821 (*1 *1 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-27)))) (-1821 (*1 *1 *2 *3) (-12 (-5 *2 (-1164 *1)) (-5 *3 (-1168)) (-4 *1 (-27)))) (-1404 (*1 *2 *3) (-12 (-5 *3 (-947 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1)))) (-1404 (*1 *2 *3) (-12 (-5 *3 (-1164 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1)))) (-1404 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *1)) (-5 *4 (-1168)) (-4 *1 (-27)) (-5 *2 (-639 *1)))))
-(-13 (-362) (-997) (-10 -8 (-15 -1502 ($ (-947 $))) (-15 -1502 ($ (-1164 $))) (-15 -1502 ($ (-1164 $) (-1168))) (-15 -3646 ((-639 $) (-947 $))) (-15 -3646 ((-639 $) (-1164 $))) (-15 -3646 ((-639 $) (-1164 $) (-1168))) (-15 -1821 ($ (-947 $))) (-15 -1821 ($ (-1164 $))) (-15 -1821 ($ (-1164 $) (-1168))) (-15 -1404 ((-639 $) (-947 $))) (-15 -1404 ((-639 $) (-1164 $))) (-15 -1404 ((-639 $) (-1164 $) (-1168)))))
+((-2608 (*1 *1 *2) (-12 (-5 *2 (-947 *1)) (-4 *1 (-27)))) (-2608 (*1 *1 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-27)))) (-2608 (*1 *1 *2 *3) (-12 (-5 *2 (-1164 *1)) (-5 *3 (-1168)) (-4 *1 (-27)))) (-1431 (*1 *2 *3) (-12 (-5 *3 (-947 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1)))) (-1431 (*1 *2 *3) (-12 (-5 *3 (-1164 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1)))) (-1431 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *1)) (-5 *4 (-1168)) (-4 *1 (-27)) (-5 *2 (-639 *1)))) (-2391 (*1 *1 *2) (-12 (-5 *2 (-947 *1)) (-4 *1 (-27)))) (-2391 (*1 *1 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-27)))) (-2391 (*1 *1 *2 *3) (-12 (-5 *2 (-1164 *1)) (-5 *3 (-1168)) (-4 *1 (-27)))) (-1763 (*1 *2 *3) (-12 (-5 *3 (-947 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1)))) (-1763 (*1 *2 *3) (-12 (-5 *3 (-1164 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1)))) (-1763 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *1)) (-5 *4 (-1168)) (-4 *1 (-27)) (-5 *2 (-639 *1)))))
+(-13 (-362) (-997) (-10 -8 (-15 -2608 ($ (-947 $))) (-15 -2608 ($ (-1164 $))) (-15 -2608 ($ (-1164 $) (-1168))) (-15 -1431 ((-639 $) (-947 $))) (-15 -1431 ((-639 $) (-1164 $))) (-15 -1431 ((-639 $) (-1164 $) (-1168))) (-15 -2391 ($ (-947 $))) (-15 -2391 ($ (-1164 $))) (-15 -2391 ($ (-1164 $) (-1168))) (-15 -1763 ((-639 $) (-947 $))) (-15 -1763 ((-639 $) (-1164 $))) (-15 -1763 ((-639 $) (-1164 $) (-1168)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-612 #0#) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-242) . T) ((-289) . T) ((-306) . T) ((-362) . T) ((-451) . T) ((-554) . T) ((-642 #0#) . T) ((-642 $) . T) ((-712 #0#) . T) ((-712 $) . T) ((-721) . T) ((-915) . T) ((-997) . T) ((-1050 #0#) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1211) . T))
-((-1404 (((-639 $) (-947 $)) NIL) (((-639 $) (-1164 $)) NIL) (((-639 $) (-1164 $) (-1168)) 50) (((-639 $) $) 19) (((-639 $) $ (-1168)) 41)) (-1821 (($ (-947 $)) NIL) (($ (-1164 $)) NIL) (($ (-1164 $) (-1168)) 52) (($ $) 17) (($ $ (-1168)) 37)) (-3646 (((-639 $) (-947 $)) NIL) (((-639 $) (-1164 $)) NIL) (((-639 $) (-1164 $) (-1168)) 48) (((-639 $) $) 15) (((-639 $) $ (-1168)) 43)) (-1502 (($ (-947 $)) NIL) (($ (-1164 $)) NIL) (($ (-1164 $) (-1168)) NIL) (($ $) 12) (($ $ (-1168)) 39)))
-(((-28 |#1| |#2|) (-10 -8 (-15 -1404 ((-639 |#1|) |#1| (-1168))) (-15 -1821 (|#1| |#1| (-1168))) (-15 -1404 ((-639 |#1|) |#1|)) (-15 -1821 (|#1| |#1|)) (-15 -3646 ((-639 |#1|) |#1| (-1168))) (-15 -1502 (|#1| |#1| (-1168))) (-15 -3646 ((-639 |#1|) |#1|)) (-15 -1502 (|#1| |#1|)) (-15 -1404 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -1404 ((-639 |#1|) (-1164 |#1|))) (-15 -1404 ((-639 |#1|) (-947 |#1|))) (-15 -1821 (|#1| (-1164 |#1|) (-1168))) (-15 -1821 (|#1| (-1164 |#1|))) (-15 -1821 (|#1| (-947 |#1|))) (-15 -3646 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -3646 ((-639 |#1|) (-1164 |#1|))) (-15 -3646 ((-639 |#1|) (-947 |#1|))) (-15 -1502 (|#1| (-1164 |#1|) (-1168))) (-15 -1502 (|#1| (-1164 |#1|))) (-15 -1502 (|#1| (-947 |#1|)))) (-29 |#2|) (-13 (-845) (-554))) (T -28))
+((-1763 (((-639 $) (-947 $)) NIL) (((-639 $) (-1164 $)) NIL) (((-639 $) (-1164 $) (-1168)) 50) (((-639 $) $) 19) (((-639 $) $ (-1168)) 41)) (-2391 (($ (-947 $)) NIL) (($ (-1164 $)) NIL) (($ (-1164 $) (-1168)) 52) (($ $) 17) (($ $ (-1168)) 37)) (-1431 (((-639 $) (-947 $)) NIL) (((-639 $) (-1164 $)) NIL) (((-639 $) (-1164 $) (-1168)) 48) (((-639 $) $) 15) (((-639 $) $ (-1168)) 43)) (-2608 (($ (-947 $)) NIL) (($ (-1164 $)) NIL) (($ (-1164 $) (-1168)) NIL) (($ $) 12) (($ $ (-1168)) 39)))
+(((-28 |#1| |#2|) (-10 -8 (-15 -1763 ((-639 |#1|) |#1| (-1168))) (-15 -2391 (|#1| |#1| (-1168))) (-15 -1763 ((-639 |#1|) |#1|)) (-15 -2391 (|#1| |#1|)) (-15 -1431 ((-639 |#1|) |#1| (-1168))) (-15 -2608 (|#1| |#1| (-1168))) (-15 -1431 ((-639 |#1|) |#1|)) (-15 -2608 (|#1| |#1|)) (-15 -1763 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -1763 ((-639 |#1|) (-1164 |#1|))) (-15 -1763 ((-639 |#1|) (-947 |#1|))) (-15 -2391 (|#1| (-1164 |#1|) (-1168))) (-15 -2391 (|#1| (-1164 |#1|))) (-15 -2391 (|#1| (-947 |#1|))) (-15 -1431 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -1431 ((-639 |#1|) (-1164 |#1|))) (-15 -1431 ((-639 |#1|) (-947 |#1|))) (-15 -2608 (|#1| (-1164 |#1|) (-1168))) (-15 -2608 (|#1| (-1164 |#1|))) (-15 -2608 (|#1| (-947 |#1|)))) (-29 |#2|) (-13 (-845) (-554))) (T -28))
NIL
-(-10 -8 (-15 -1404 ((-639 |#1|) |#1| (-1168))) (-15 -1821 (|#1| |#1| (-1168))) (-15 -1404 ((-639 |#1|) |#1|)) (-15 -1821 (|#1| |#1|)) (-15 -3646 ((-639 |#1|) |#1| (-1168))) (-15 -1502 (|#1| |#1| (-1168))) (-15 -3646 ((-639 |#1|) |#1|)) (-15 -1502 (|#1| |#1|)) (-15 -1404 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -1404 ((-639 |#1|) (-1164 |#1|))) (-15 -1404 ((-639 |#1|) (-947 |#1|))) (-15 -1821 (|#1| (-1164 |#1|) (-1168))) (-15 -1821 (|#1| (-1164 |#1|))) (-15 -1821 (|#1| (-947 |#1|))) (-15 -3646 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -3646 ((-639 |#1|) (-1164 |#1|))) (-15 -3646 ((-639 |#1|) (-947 |#1|))) (-15 -1502 (|#1| (-1164 |#1|) (-1168))) (-15 -1502 (|#1| (-1164 |#1|))) (-15 -1502 (|#1| (-947 |#1|))))
-((-4041 (((-112) $ $) 7)) (-1404 (((-639 $) (-947 $)) 81) (((-639 $) (-1164 $)) 80) (((-639 $) (-1164 $) (-1168)) 79) (((-639 $) $) 125) (((-639 $) $ (-1168)) 123)) (-1821 (($ (-947 $)) 84) (($ (-1164 $)) 83) (($ (-1164 $) (-1168)) 82) (($ $) 126) (($ $ (-1168)) 124)) (-1952 (((-112) $) 16)) (-1402 (((-639 (-1168)) $) 200)) (-1599 (((-406 (-1164 $)) $ (-608 $)) 232 (|has| |#1| (-554)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-1495 (((-639 (-608 $)) $) 163)) (-3214 (((-3 $ "failed") $ $) 19)) (-3165 (($ $ (-639 (-608 $)) (-639 $)) 153) (($ $ (-639 (-293 $))) 152) (($ $ (-293 $)) 151)) (-2798 (($ $) 74)) (-2921 (((-417 $) $) 73)) (-1643 (($ $) 93)) (-2569 (((-112) $ $) 60)) (-1800 (($) 17 T CONST)) (-3646 (((-639 $) (-947 $)) 87) (((-639 $) (-1164 $)) 86) (((-639 $) (-1164 $) (-1168)) 85) (((-639 $) $) 129) (((-639 $) $ (-1168)) 127)) (-1502 (($ (-947 $)) 90) (($ (-1164 $)) 89) (($ (-1164 $) (-1168)) 88) (($ $) 130) (($ $ (-1168)) 128)) (-4048 (((-3 (-947 |#1|) "failed") $) 250 (|has| |#1| (-1044))) (((-3 (-406 (-947 |#1|)) "failed") $) 234 (|has| |#1| (-554))) (((-3 |#1| "failed") $) 196) (((-3 (-562) "failed") $) 193 (|has| |#1| (-1033 (-562)))) (((-3 (-1168) "failed") $) 187) (((-3 (-608 $) "failed") $) 138) (((-3 (-406 (-562)) "failed") $) 121 (-4037 (-12 (|has| |#1| (-1033 (-562))) (|has| |#1| (-554))) (|has| |#1| (-1033 (-406 (-562))))))) (-3961 (((-947 |#1|) $) 249 (|has| |#1| (-1044))) (((-406 (-947 |#1|)) $) 233 (|has| |#1| (-554))) ((|#1| $) 195) (((-562) $) 194 (|has| |#1| (-1033 (-562)))) (((-1168) $) 186) (((-608 $) $) 137) (((-406 (-562)) $) 122 (-4037 (-12 (|has| |#1| (-1033 (-562))) (|has| |#1| (-554))) (|has| |#1| (-1033 (-406 (-562))))))) (-1811 (($ $ $) 56)) (-2406 (((-683 |#1|) (-683 $)) 240 (|has| |#1| (-1044))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 239 (|has| |#1| (-1044))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 120 (-4037 (-2246 (|has| |#1| (-1044)) (|has| |#1| (-635 (-562)))) (-2246 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))))) (((-683 (-562)) (-683 $)) 119 (-4037 (-2246 (|has| |#1| (-1044)) (|has| |#1| (-635 (-562)))) (-2246 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))))) (-3668 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-2717 (((-112) $) 72)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 192 (|has| |#1| (-881 (-378)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 191 (|has| |#1| (-881 (-562))))) (-1383 (($ (-639 $)) 157) (($ $) 156)) (-3936 (((-639 (-114)) $) 164)) (-2876 (((-114) (-114)) 165)) (-1957 (((-112) $) 31)) (-3130 (((-112) $) 185 (|has| $ (-1033 (-562))))) (-3425 (($ $) 217 (|has| |#1| (-1044)))) (-4065 (((-1117 |#1| (-608 $)) $) 216 (|has| |#1| (-1044)))) (-1891 (($ $ (-562)) 92)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1677 (((-1164 $) (-608 $)) 182 (|has| $ (-1044)))) (-1551 (($ $ $) 136)) (-2993 (($ $ $) 135)) (-4152 (($ (-1 $ $) (-608 $)) 171)) (-4367 (((-3 (-608 $) "failed") $) 161)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1583 (((-639 (-608 $)) $) 162)) (-4141 (($ (-114) (-639 $)) 170) (($ (-114) $) 169)) (-2042 (((-3 (-639 $) "failed") $) 211 (|has| |#1| (-1104)))) (-3218 (((-3 (-2 (|:| |val| $) (|:| -1960 (-562))) "failed") $) 220 (|has| |#1| (-1044)))) (-1546 (((-3 (-639 $) "failed") $) 213 (|has| |#1| (-25)))) (-3853 (((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 $))) "failed") $) 214 (|has| |#1| (-25)))) (-1628 (((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $ (-1168)) 219 (|has| |#1| (-1044))) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $ (-114)) 218 (|has| |#1| (-1044))) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $) 212 (|has| |#1| (-1104)))) (-1776 (((-112) $ (-1168)) 168) (((-112) $ (-114)) 167)) (-1525 (($ $) 71)) (-3060 (((-766) $) 160)) (-1709 (((-1112) $) 10)) (-1534 (((-112) $) 198)) (-1547 ((|#1| $) 199)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-4296 (((-112) $ (-1168)) 173) (((-112) $ $) 172)) (-1635 (((-417 $) $) 75)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-3803 (((-112) $) 184 (|has| $ (-1033 (-562))))) (-1433 (($ $ (-1168) (-766) (-1 $ $)) 224 (|has| |#1| (-1044))) (($ $ (-1168) (-766) (-1 $ (-639 $))) 223 (|has| |#1| (-1044))) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ (-639 $)))) 222 (|has| |#1| (-1044))) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ $))) 221 (|has| |#1| (-1044))) (($ $ (-639 (-114)) (-639 $) (-1168)) 210 (|has| |#1| (-610 (-535)))) (($ $ (-114) $ (-1168)) 209 (|has| |#1| (-610 (-535)))) (($ $) 208 (|has| |#1| (-610 (-535)))) (($ $ (-639 (-1168))) 207 (|has| |#1| (-610 (-535)))) (($ $ (-1168)) 206 (|has| |#1| (-610 (-535)))) (($ $ (-114) (-1 $ $)) 181) (($ $ (-114) (-1 $ (-639 $))) 180) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) 179) (($ $ (-639 (-114)) (-639 (-1 $ $))) 178) (($ $ (-1168) (-1 $ $)) 177) (($ $ (-1168) (-1 $ (-639 $))) 176) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) 175) (($ $ (-639 (-1168)) (-639 (-1 $ $))) 174) (($ $ (-639 $) (-639 $)) 145) (($ $ $ $) 144) (($ $ (-293 $)) 143) (($ $ (-639 (-293 $))) 142) (($ $ (-639 (-608 $)) (-639 $)) 141) (($ $ (-608 $) $) 140)) (-1577 (((-766) $) 59)) (-2343 (($ (-114) (-639 $)) 150) (($ (-114) $ $ $ $) 149) (($ (-114) $ $ $) 148) (($ (-114) $ $) 147) (($ (-114) $) 146)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 58)) (-3790 (($ $ $) 159) (($ $) 158)) (-4029 (($ $ (-1168)) 248 (|has| |#1| (-1044))) (($ $ (-639 (-1168))) 247 (|has| |#1| (-1044))) (($ $ (-1168) (-766)) 246 (|has| |#1| (-1044))) (($ $ (-639 (-1168)) (-639 (-766))) 245 (|has| |#1| (-1044)))) (-3658 (($ $) 227 (|has| |#1| (-554)))) (-4076 (((-1117 |#1| (-608 $)) $) 226 (|has| |#1| (-554)))) (-2096 (($ $) 183 (|has| $ (-1044)))) (-4208 (((-535) $) 254 (|has| |#1| (-610 (-535)))) (($ (-417 $)) 225 (|has| |#1| (-554))) (((-887 (-378)) $) 190 (|has| |#1| (-610 (-887 (-378))))) (((-887 (-562)) $) 189 (|has| |#1| (-610 (-887 (-562)))))) (-3665 (($ $ $) 253 (|has| |#1| (-472)))) (-1911 (($ $ $) 252 (|has| |#1| (-472)))) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67) (($ (-947 |#1|)) 251 (|has| |#1| (-1044))) (($ (-406 (-947 |#1|))) 235 (|has| |#1| (-554))) (($ (-406 (-947 (-406 |#1|)))) 231 (|has| |#1| (-554))) (($ (-947 (-406 |#1|))) 230 (|has| |#1| (-554))) (($ (-406 |#1|)) 229 (|has| |#1| (-554))) (($ (-1117 |#1| (-608 $))) 215 (|has| |#1| (-1044))) (($ |#1|) 197) (($ (-1168)) 188) (($ (-608 $)) 139)) (-2805 (((-3 $ "failed") $) 238 (|has| |#1| (-144)))) (-2579 (((-766)) 28)) (-2746 (($ (-639 $)) 155) (($ $) 154)) (-2803 (((-112) (-114)) 166)) (-2922 (((-112) $ $) 40)) (-3105 (($ (-1168) (-639 $)) 205) (($ (-1168) $ $ $ $) 204) (($ (-1168) $ $ $) 203) (($ (-1168) $ $) 202) (($ (-1168) $) 201)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-1168)) 244 (|has| |#1| (-1044))) (($ $ (-639 (-1168))) 243 (|has| |#1| (-1044))) (($ $ (-1168) (-766)) 242 (|has| |#1| (-1044))) (($ $ (-639 (-1168)) (-639 (-766))) 241 (|has| |#1| (-1044)))) (-1798 (((-112) $ $) 133)) (-1772 (((-112) $ $) 132)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 134)) (-1759 (((-112) $ $) 131)) (-1859 (($ $ $) 66) (($ (-1117 |#1| (-608 $)) (-1117 |#1| (-608 $))) 228 (|has| |#1| (-554)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70) (($ $ (-406 (-562))) 91)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68) (($ $ |#1|) 237 (|has| |#1| (-171))) (($ |#1| $) 236 (|has| |#1| (-171)))))
+(-10 -8 (-15 -1763 ((-639 |#1|) |#1| (-1168))) (-15 -2391 (|#1| |#1| (-1168))) (-15 -1763 ((-639 |#1|) |#1|)) (-15 -2391 (|#1| |#1|)) (-15 -1431 ((-639 |#1|) |#1| (-1168))) (-15 -2608 (|#1| |#1| (-1168))) (-15 -1431 ((-639 |#1|) |#1|)) (-15 -2608 (|#1| |#1|)) (-15 -1763 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -1763 ((-639 |#1|) (-1164 |#1|))) (-15 -1763 ((-639 |#1|) (-947 |#1|))) (-15 -2391 (|#1| (-1164 |#1|) (-1168))) (-15 -2391 (|#1| (-1164 |#1|))) (-15 -2391 (|#1| (-947 |#1|))) (-15 -1431 ((-639 |#1|) (-1164 |#1|) (-1168))) (-15 -1431 ((-639 |#1|) (-1164 |#1|))) (-15 -1431 ((-639 |#1|) (-947 |#1|))) (-15 -2608 (|#1| (-1164 |#1|) (-1168))) (-15 -2608 (|#1| (-1164 |#1|))) (-15 -2608 (|#1| (-947 |#1|))))
+((-4041 (((-112) $ $) 7)) (-1763 (((-639 $) (-947 $)) 81) (((-639 $) (-1164 $)) 80) (((-639 $) (-1164 $) (-1168)) 79) (((-639 $) $) 125) (((-639 $) $ (-1168)) 123)) (-2391 (($ (-947 $)) 84) (($ (-1164 $)) 83) (($ (-1164 $) (-1168)) 82) (($ $) 126) (($ $ (-1168)) 124)) (-4325 (((-112) $) 16)) (-1401 (((-639 (-1168)) $) 200)) (-1602 (((-406 (-1164 $)) $ (-608 $)) 232 (|has| |#1| (-554)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-1501 (((-639 (-608 $)) $) 163)) (-2781 (((-3 $ "failed") $ $) 19)) (-3164 (($ $ (-639 (-608 $)) (-639 $)) 153) (($ $ (-639 (-293 $))) 152) (($ $ (-293 $)) 151)) (-1977 (($ $) 74)) (-3788 (((-417 $) $) 73)) (-1644 (($ $) 93)) (-1436 (((-112) $ $) 60)) (-3329 (($) 17 T CONST)) (-1431 (((-639 $) (-947 $)) 87) (((-639 $) (-1164 $)) 86) (((-639 $) (-1164 $) (-1168)) 85) (((-639 $) $) 129) (((-639 $) $ (-1168)) 127)) (-2608 (($ (-947 $)) 90) (($ (-1164 $)) 89) (($ (-1164 $) (-1168)) 88) (($ $) 130) (($ $ (-1168)) 128)) (-4048 (((-3 (-947 |#1|) "failed") $) 250 (|has| |#1| (-1044))) (((-3 (-406 (-947 |#1|)) "failed") $) 234 (|has| |#1| (-554))) (((-3 |#1| "failed") $) 196) (((-3 (-562) "failed") $) 193 (|has| |#1| (-1033 (-562)))) (((-3 (-1168) "failed") $) 187) (((-3 (-608 $) "failed") $) 138) (((-3 (-406 (-562)) "failed") $) 121 (-4037 (-12 (|has| |#1| (-1033 (-562))) (|has| |#1| (-554))) (|has| |#1| (-1033 (-406 (-562))))))) (-3960 (((-947 |#1|) $) 249 (|has| |#1| (-1044))) (((-406 (-947 |#1|)) $) 233 (|has| |#1| (-554))) ((|#1| $) 195) (((-562) $) 194 (|has| |#1| (-1033 (-562)))) (((-1168) $) 186) (((-608 $) $) 137) (((-406 (-562)) $) 122 (-4037 (-12 (|has| |#1| (-1033 (-562))) (|has| |#1| (-554))) (|has| |#1| (-1033 (-406 (-562))))))) (-1810 (($ $ $) 56)) (-3449 (((-683 |#1|) (-683 $)) 240 (|has| |#1| (-1044))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 239 (|has| |#1| (-1044))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 120 (-4037 (-2245 (|has| |#1| (-1044)) (|has| |#1| (-635 (-562)))) (-2245 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))))) (((-683 (-562)) (-683 $)) 119 (-4037 (-2245 (|has| |#1| (-1044)) (|has| |#1| (-635 (-562)))) (-2245 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))))) (-1694 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-3521 (((-112) $) 72)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 192 (|has| |#1| (-881 (-378)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 191 (|has| |#1| (-881 (-562))))) (-2229 (($ (-639 $)) 157) (($ $) 156)) (-4364 (((-639 (-114)) $) 164)) (-1502 (((-114) (-114)) 165)) (-4367 (((-112) $) 31)) (-3152 (((-112) $) 185 (|has| $ (-1033 (-562))))) (-2957 (($ $) 217 (|has| |#1| (-1044)))) (-4063 (((-1117 |#1| (-608 $)) $) 216 (|has| |#1| (-1044)))) (-1895 (($ $ (-562)) 92)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-3476 (((-1164 $) (-608 $)) 182 (|has| $ (-1044)))) (-1551 (($ $ $) 136)) (-2993 (($ $ $) 135)) (-4152 (($ (-1 $ $) (-608 $)) 171)) (-4068 (((-3 (-608 $) "failed") $) 161)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1582 (((-639 (-608 $)) $) 162)) (-4141 (($ (-114) (-639 $)) 170) (($ (-114) $) 169)) (-4025 (((-3 (-639 $) "failed") $) 211 (|has| |#1| (-1104)))) (-2811 (((-3 (-2 (|:| |val| $) (|:| -1300 (-562))) "failed") $) 220 (|has| |#1| (-1044)))) (-1778 (((-3 (-639 $) "failed") $) 213 (|has| |#1| (-25)))) (-2871 (((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 $))) "failed") $) 214 (|has| |#1| (-25)))) (-4270 (((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $ (-1168)) 219 (|has| |#1| (-1044))) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $ (-114)) 218 (|has| |#1| (-1044))) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $) 212 (|has| |#1| (-1104)))) (-3115 (((-112) $ (-1168)) 168) (((-112) $ (-114)) 167)) (-1525 (($ $) 71)) (-3059 (((-766) $) 160)) (-1709 (((-1112) $) 10)) (-1534 (((-112) $) 198)) (-1547 ((|#1| $) 199)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1533 (((-112) $ (-1168)) 173) (((-112) $ $) 172)) (-1635 (((-417 $) $) 75)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-2438 (((-112) $) 184 (|has| $ (-1033 (-562))))) (-1433 (($ $ (-1168) (-766) (-1 $ $)) 224 (|has| |#1| (-1044))) (($ $ (-1168) (-766) (-1 $ (-639 $))) 223 (|has| |#1| (-1044))) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ (-639 $)))) 222 (|has| |#1| (-1044))) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ $))) 221 (|has| |#1| (-1044))) (($ $ (-639 (-114)) (-639 $) (-1168)) 210 (|has| |#1| (-610 (-535)))) (($ $ (-114) $ (-1168)) 209 (|has| |#1| (-610 (-535)))) (($ $) 208 (|has| |#1| (-610 (-535)))) (($ $ (-639 (-1168))) 207 (|has| |#1| (-610 (-535)))) (($ $ (-1168)) 206 (|has| |#1| (-610 (-535)))) (($ $ (-114) (-1 $ $)) 181) (($ $ (-114) (-1 $ (-639 $))) 180) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) 179) (($ $ (-639 (-114)) (-639 (-1 $ $))) 178) (($ $ (-1168) (-1 $ $)) 177) (($ $ (-1168) (-1 $ (-639 $))) 176) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) 175) (($ $ (-639 (-1168)) (-639 (-1 $ $))) 174) (($ $ (-639 $) (-639 $)) 145) (($ $ $ $) 144) (($ $ (-293 $)) 143) (($ $ (-639 (-293 $))) 142) (($ $ (-639 (-608 $)) (-639 $)) 141) (($ $ (-608 $) $) 140)) (-2044 (((-766) $) 59)) (-2343 (($ (-114) (-639 $)) 150) (($ (-114) $ $ $ $) 149) (($ (-114) $ $ $) 148) (($ (-114) $ $) 147) (($ (-114) $) 146)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 58)) (-3461 (($ $ $) 159) (($ $) 158)) (-4029 (($ $ (-1168)) 248 (|has| |#1| (-1044))) (($ $ (-639 (-1168))) 247 (|has| |#1| (-1044))) (($ $ (-1168) (-766)) 246 (|has| |#1| (-1044))) (($ $ (-639 (-1168)) (-639 (-766))) 245 (|has| |#1| (-1044)))) (-1580 (($ $) 227 (|has| |#1| (-554)))) (-4079 (((-1117 |#1| (-608 $)) $) 226 (|has| |#1| (-554)))) (-3371 (($ $) 183 (|has| $ (-1044)))) (-4208 (((-535) $) 254 (|has| |#1| (-610 (-535)))) (($ (-417 $)) 225 (|has| |#1| (-554))) (((-887 (-378)) $) 190 (|has| |#1| (-610 (-887 (-378))))) (((-887 (-562)) $) 189 (|has| |#1| (-610 (-887 (-562)))))) (-1660 (($ $ $) 253 (|has| |#1| (-472)))) (-2114 (($ $ $) 252 (|has| |#1| (-472)))) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67) (($ (-947 |#1|)) 251 (|has| |#1| (-1044))) (($ (-406 (-947 |#1|))) 235 (|has| |#1| (-554))) (($ (-406 (-947 (-406 |#1|)))) 231 (|has| |#1| (-554))) (($ (-947 (-406 |#1|))) 230 (|has| |#1| (-554))) (($ (-406 |#1|)) 229 (|has| |#1| (-554))) (($ (-1117 |#1| (-608 $))) 215 (|has| |#1| (-1044))) (($ |#1|) 197) (($ (-1168)) 188) (($ (-608 $)) 139)) (-2059 (((-3 $ "failed") $) 238 (|has| |#1| (-144)))) (-1568 (((-766)) 28)) (-2745 (($ (-639 $)) 155) (($ $) 154)) (-2036 (((-112) (-114)) 166)) (-3799 (((-112) $ $) 40)) (-3105 (($ (-1168) (-639 $)) 205) (($ (-1168) $ $ $ $) 204) (($ (-1168) $ $ $) 203) (($ (-1168) $ $) 202) (($ (-1168) $) 201)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-1168)) 244 (|has| |#1| (-1044))) (($ $ (-639 (-1168))) 243 (|has| |#1| (-1044))) (($ $ (-1168) (-766)) 242 (|has| |#1| (-1044))) (($ $ (-639 (-1168)) (-639 (-766))) 241 (|has| |#1| (-1044)))) (-1798 (((-112) $ $) 133)) (-1771 (((-112) $ $) 132)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 134)) (-1761 (((-112) $ $) 131)) (-1859 (($ $ $) 66) (($ (-1117 |#1| (-608 $)) (-1117 |#1| (-608 $))) 228 (|has| |#1| (-554)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70) (($ $ (-406 (-562))) 91)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68) (($ $ |#1|) 237 (|has| |#1| (-171))) (($ |#1| $) 236 (|has| |#1| (-171)))))
(((-29 |#1|) (-139) (-13 (-845) (-554))) (T -29))
-((-1502 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-845) (-554))))) (-3646 (*1 *2 *1) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *2 (-639 *1)) (-4 *1 (-29 *3)))) (-1502 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-845) (-554))))) (-3646 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-639 *1)) (-4 *1 (-29 *4)))) (-1821 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-845) (-554))))) (-1404 (*1 *2 *1) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *2 (-639 *1)) (-4 *1 (-29 *3)))) (-1821 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-845) (-554))))) (-1404 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-639 *1)) (-4 *1 (-29 *4)))))
-(-13 (-27) (-429 |t#1|) (-10 -8 (-15 -1502 ($ $)) (-15 -3646 ((-639 $) $)) (-15 -1502 ($ $ (-1168))) (-15 -3646 ((-639 $) $ (-1168))) (-15 -1821 ($ $)) (-15 -1404 ((-639 $) $)) (-15 -1821 ($ $ (-1168))) (-15 -1404 ((-639 $) $ (-1168)))))
+((-2608 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-845) (-554))))) (-1431 (*1 *2 *1) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *2 (-639 *1)) (-4 *1 (-29 *3)))) (-2608 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-845) (-554))))) (-1431 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-639 *1)) (-4 *1 (-29 *4)))) (-2391 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-845) (-554))))) (-1763 (*1 *2 *1) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *2 (-639 *1)) (-4 *1 (-29 *3)))) (-2391 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-845) (-554))))) (-1763 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-639 *1)) (-4 *1 (-29 *4)))))
+(-13 (-27) (-429 |t#1|) (-10 -8 (-15 -2608 ($ $)) (-15 -1431 ((-639 $) $)) (-15 -2608 ($ $ (-1168))) (-15 -1431 ((-639 $) $ (-1168))) (-15 -2391 ($ $)) (-15 -1763 ((-639 $) $)) (-15 -2391 ($ $ (-1168))) (-15 -1763 ((-639 $) $ (-1168)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) . T) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) . T) ((-27) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) |has| |#1| (-171)) ((-111 $ $) . T) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #0#) . T) ((-612 #1=(-406 (-947 |#1|))) |has| |#1| (-554)) ((-612 (-562)) . T) ((-612 #2=(-608 $)) . T) ((-612 #3=(-947 |#1|)) |has| |#1| (-1044)) ((-612 #4=(-1168)) . T) ((-612 |#1|) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-610 (-887 (-378))) |has| |#1| (-610 (-887 (-378)))) ((-610 (-887 (-562))) |has| |#1| (-610 (-887 (-562)))) ((-242) . T) ((-289) . T) ((-306) . T) ((-308 $) . T) ((-301) . T) ((-362) . T) ((-376 |#1|) |has| |#1| (-1044)) ((-399 |#1|) . T) ((-410 |#1|) . T) ((-429 |#1|) . T) ((-451) . T) ((-472) |has| |#1| (-472)) ((-513 (-608 $) $) . T) ((-513 $ $) . T) ((-554) . T) ((-642 #0#) . T) ((-642 |#1|) |has| |#1| (-171)) ((-642 $) . T) ((-635 (-562)) -12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) ((-635 |#1|) |has| |#1| (-1044)) ((-712 #0#) . T) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) . T) ((-721) . T) ((-845) . T) ((-895 (-1168)) |has| |#1| (-1044)) ((-881 (-378)) |has| |#1| (-881 (-378))) ((-881 (-562)) |has| |#1| (-881 (-562))) ((-879 |#1|) . T) ((-915) . T) ((-997) . T) ((-1033 (-406 (-562))) -4037 (|has| |#1| (-1033 (-406 (-562)))) (-12 (|has| |#1| (-554)) (|has| |#1| (-1033 (-562))))) ((-1033 #1#) |has| |#1| (-554)) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 #2#) . T) ((-1033 #3#) |has| |#1| (-1044)) ((-1033 #4#) . T) ((-1033 |#1|) . T) ((-1050 #0#) . T) ((-1050 |#1|) |has| |#1| (-171)) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1207) . T) ((-1211) . T))
-((-1462 (((-1086 (-224)) $) NIL)) (-1449 (((-1086 (-224)) $) NIL)) (-3528 (($ $ (-224)) 125)) (-2323 (($ (-947 (-562)) (-1168) (-1168) (-1086 (-406 (-562))) (-1086 (-406 (-562)))) 82)) (-2524 (((-639 (-639 (-938 (-224)))) $) 137)) (-4054 (((-857) $) 149)))
-(((-30) (-13 (-950) (-10 -8 (-15 -2323 ($ (-947 (-562)) (-1168) (-1168) (-1086 (-406 (-562))) (-1086 (-406 (-562))))) (-15 -3528 ($ $ (-224)))))) (T -30))
-((-2323 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-947 (-562))) (-5 *3 (-1168)) (-5 *4 (-1086 (-406 (-562)))) (-5 *1 (-30)))) (-3528 (*1 *1 *1 *2) (-12 (-5 *2 (-224)) (-5 *1 (-30)))))
-(-13 (-950) (-10 -8 (-15 -2323 ($ (-947 (-562)) (-1168) (-1168) (-1086 (-406 (-562))) (-1086 (-406 (-562))))) (-15 -3528 ($ $ (-224)))))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-1127) $) 11)) (-3241 (((-1127) $) 9)) (-1731 (((-112) $ $) NIL)))
-(((-31) (-13 (-1075) (-10 -8 (-15 -3241 ((-1127) $)) (-15 -3265 ((-1127) $))))) (T -31))
-((-3241 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-31)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-31)))))
-(-13 (-1075) (-10 -8 (-15 -3241 ((-1127) $)) (-15 -3265 ((-1127) $))))
-((-1502 ((|#2| (-1164 |#2|) (-1168)) 43)) (-2876 (((-114) (-114)) 56)) (-1677 (((-1164 |#2|) (-608 |#2|)) 133 (|has| |#1| (-1033 (-562))))) (-3396 ((|#2| |#1| (-562)) 123 (|has| |#1| (-1033 (-562))))) (-3061 ((|#2| (-1164 |#2|) |#2|) 30)) (-1347 (((-857) (-639 |#2|)) 85)) (-2096 ((|#2| |#2|) 129 (|has| |#1| (-1033 (-562))))) (-2803 (((-112) (-114)) 18)) (** ((|#2| |#2| (-406 (-562))) 96 (|has| |#1| (-1033 (-562))))))
-(((-32 |#1| |#2|) (-10 -7 (-15 -1502 (|#2| (-1164 |#2|) (-1168))) (-15 -2876 ((-114) (-114))) (-15 -2803 ((-112) (-114))) (-15 -3061 (|#2| (-1164 |#2|) |#2|)) (-15 -1347 ((-857) (-639 |#2|))) (IF (|has| |#1| (-1033 (-562))) (PROGN (-15 ** (|#2| |#2| (-406 (-562)))) (-15 -1677 ((-1164 |#2|) (-608 |#2|))) (-15 -2096 (|#2| |#2|)) (-15 -3396 (|#2| |#1| (-562)))) |%noBranch|)) (-13 (-845) (-554)) (-429 |#1|)) (T -32))
-((-3396 (*1 *2 *3 *4) (-12 (-5 *4 (-562)) (-4 *2 (-429 *3)) (-5 *1 (-32 *3 *2)) (-4 *3 (-1033 *4)) (-4 *3 (-13 (-845) (-554))))) (-2096 (*1 *2 *2) (-12 (-4 *3 (-1033 (-562))) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-32 *3 *2)) (-4 *2 (-429 *3)))) (-1677 (*1 *2 *3) (-12 (-5 *3 (-608 *5)) (-4 *5 (-429 *4)) (-4 *4 (-1033 (-562))) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-1164 *5)) (-5 *1 (-32 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-406 (-562))) (-4 *4 (-1033 (-562))) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-32 *4 *2)) (-4 *2 (-429 *4)))) (-1347 (*1 *2 *3) (-12 (-5 *3 (-639 *5)) (-4 *5 (-429 *4)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-857)) (-5 *1 (-32 *4 *5)))) (-3061 (*1 *2 *3 *2) (-12 (-5 *3 (-1164 *2)) (-4 *2 (-429 *4)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-32 *4 *2)))) (-2803 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-32 *4 *5)) (-4 *5 (-429 *4)))) (-2876 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-32 *3 *4)) (-4 *4 (-429 *3)))) (-1502 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *2)) (-5 *4 (-1168)) (-4 *2 (-429 *5)) (-5 *1 (-32 *5 *2)) (-4 *5 (-13 (-845) (-554))))))
-(-10 -7 (-15 -1502 (|#2| (-1164 |#2|) (-1168))) (-15 -2876 ((-114) (-114))) (-15 -2803 ((-112) (-114))) (-15 -3061 (|#2| (-1164 |#2|) |#2|)) (-15 -1347 ((-857) (-639 |#2|))) (IF (|has| |#1| (-1033 (-562))) (PROGN (-15 ** (|#2| |#2| (-406 (-562)))) (-15 -1677 ((-1164 |#2|) (-608 |#2|))) (-15 -2096 (|#2| |#2|)) (-15 -3396 (|#2| |#1| (-562)))) |%noBranch|))
-((-4336 (((-112) $ (-766)) 16)) (-1800 (($) 10)) (-3292 (((-112) $ (-766)) 15)) (-3289 (((-112) $ (-766)) 14)) (-3336 (((-112) $ $) 8)) (-2974 (((-112) $) 13)))
-(((-33 |#1|) (-10 -8 (-15 -1800 (|#1|)) (-15 -4336 ((-112) |#1| (-766))) (-15 -3292 ((-112) |#1| (-766))) (-15 -3289 ((-112) |#1| (-766))) (-15 -2974 ((-112) |#1|)) (-15 -3336 ((-112) |#1| |#1|))) (-34)) (T -33))
-NIL
-(-10 -8 (-15 -1800 (|#1|)) (-15 -4336 ((-112) |#1| (-766))) (-15 -3292 ((-112) |#1| (-766))) (-15 -3289 ((-112) |#1| (-766))) (-15 -2974 ((-112) |#1|)) (-15 -3336 ((-112) |#1| |#1|)))
-((-4336 (((-112) $ (-766)) 8)) (-1800 (($) 7 T CONST)) (-3292 (((-112) $ (-766)) 9)) (-3289 (((-112) $ (-766)) 10)) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-4220 (($ $) 13)) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-1462 (((-1086 (-224)) $) NIL)) (-1448 (((-1086 (-224)) $) NIL)) (-2776 (($ $ (-224)) 125)) (-3865 (($ (-947 (-562)) (-1168) (-1168) (-1086 (-406 (-562))) (-1086 (-406 (-562)))) 82)) (-2259 (((-639 (-639 (-938 (-224)))) $) 137)) (-4053 (((-857) $) 149)))
+(((-30) (-13 (-950) (-10 -8 (-15 -3865 ($ (-947 (-562)) (-1168) (-1168) (-1086 (-406 (-562))) (-1086 (-406 (-562))))) (-15 -2776 ($ $ (-224)))))) (T -30))
+((-3865 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-947 (-562))) (-5 *3 (-1168)) (-5 *4 (-1086 (-406 (-562)))) (-5 *1 (-30)))) (-2776 (*1 *1 *1 *2) (-12 (-5 *2 (-224)) (-5 *1 (-30)))))
+(-13 (-950) (-10 -8 (-15 -3865 ($ (-947 (-562)) (-1168) (-1168) (-1086 (-406 (-562))) (-1086 (-406 (-562))))) (-15 -2776 ($ $ (-224)))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-1127) $) 11)) (-3240 (((-1127) $) 9)) (-1733 (((-112) $ $) NIL)))
+(((-31) (-13 (-1075) (-10 -8 (-15 -3240 ((-1127) $)) (-15 -3265 ((-1127) $))))) (T -31))
+((-3240 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-31)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-31)))))
+(-13 (-1075) (-10 -8 (-15 -3240 ((-1127) $)) (-15 -3265 ((-1127) $))))
+((-2608 ((|#2| (-1164 |#2|) (-1168)) 43)) (-1502 (((-114) (-114)) 56)) (-3476 (((-1164 |#2|) (-608 |#2|)) 133 (|has| |#1| (-1033 (-562))))) (-3877 ((|#2| |#1| (-562)) 123 (|has| |#1| (-1033 (-562))))) (-3731 ((|#2| (-1164 |#2|) |#2|) 30)) (-3531 (((-857) (-639 |#2|)) 85)) (-3371 ((|#2| |#2|) 129 (|has| |#1| (-1033 (-562))))) (-2036 (((-112) (-114)) 18)) (** ((|#2| |#2| (-406 (-562))) 96 (|has| |#1| (-1033 (-562))))))
+(((-32 |#1| |#2|) (-10 -7 (-15 -2608 (|#2| (-1164 |#2|) (-1168))) (-15 -1502 ((-114) (-114))) (-15 -2036 ((-112) (-114))) (-15 -3731 (|#2| (-1164 |#2|) |#2|)) (-15 -3531 ((-857) (-639 |#2|))) (IF (|has| |#1| (-1033 (-562))) (PROGN (-15 ** (|#2| |#2| (-406 (-562)))) (-15 -3476 ((-1164 |#2|) (-608 |#2|))) (-15 -3371 (|#2| |#2|)) (-15 -3877 (|#2| |#1| (-562)))) |%noBranch|)) (-13 (-845) (-554)) (-429 |#1|)) (T -32))
+((-3877 (*1 *2 *3 *4) (-12 (-5 *4 (-562)) (-4 *2 (-429 *3)) (-5 *1 (-32 *3 *2)) (-4 *3 (-1033 *4)) (-4 *3 (-13 (-845) (-554))))) (-3371 (*1 *2 *2) (-12 (-4 *3 (-1033 (-562))) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-32 *3 *2)) (-4 *2 (-429 *3)))) (-3476 (*1 *2 *3) (-12 (-5 *3 (-608 *5)) (-4 *5 (-429 *4)) (-4 *4 (-1033 (-562))) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-1164 *5)) (-5 *1 (-32 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-406 (-562))) (-4 *4 (-1033 (-562))) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-32 *4 *2)) (-4 *2 (-429 *4)))) (-3531 (*1 *2 *3) (-12 (-5 *3 (-639 *5)) (-4 *5 (-429 *4)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-857)) (-5 *1 (-32 *4 *5)))) (-3731 (*1 *2 *3 *2) (-12 (-5 *3 (-1164 *2)) (-4 *2 (-429 *4)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-32 *4 *2)))) (-2036 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-32 *4 *5)) (-4 *5 (-429 *4)))) (-1502 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-32 *3 *4)) (-4 *4 (-429 *3)))) (-2608 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *2)) (-5 *4 (-1168)) (-4 *2 (-429 *5)) (-5 *1 (-32 *5 *2)) (-4 *5 (-13 (-845) (-554))))))
+(-10 -7 (-15 -2608 (|#2| (-1164 |#2|) (-1168))) (-15 -1502 ((-114) (-114))) (-15 -2036 ((-112) (-114))) (-15 -3731 (|#2| (-1164 |#2|) |#2|)) (-15 -3531 ((-857) (-639 |#2|))) (IF (|has| |#1| (-1033 (-562))) (PROGN (-15 ** (|#2| |#2| (-406 (-562)))) (-15 -3476 ((-1164 |#2|) (-608 |#2|))) (-15 -3371 (|#2| |#2|)) (-15 -3877 (|#2| |#1| (-562)))) |%noBranch|))
+((-3735 (((-112) $ (-766)) 16)) (-3329 (($) 10)) (-4172 (((-112) $ (-766)) 15)) (-4147 (((-112) $ (-766)) 14)) (-1452 (((-112) $ $) 8)) (-3087 (((-112) $) 13)))
+(((-33 |#1|) (-10 -8 (-15 -3329 (|#1|)) (-15 -3735 ((-112) |#1| (-766))) (-15 -4172 ((-112) |#1| (-766))) (-15 -4147 ((-112) |#1| (-766))) (-15 -3087 ((-112) |#1|)) (-15 -1452 ((-112) |#1| |#1|))) (-34)) (T -33))
+NIL
+(-10 -8 (-15 -3329 (|#1|)) (-15 -3735 ((-112) |#1| (-766))) (-15 -4172 ((-112) |#1| (-766))) (-15 -4147 ((-112) |#1| (-766))) (-15 -3087 ((-112) |#1|)) (-15 -1452 ((-112) |#1| |#1|)))
+((-3735 (((-112) $ (-766)) 8)) (-3329 (($) 7 T CONST)) (-4172 (((-112) $ (-766)) 9)) (-4147 (((-112) $ (-766)) 10)) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-4220 (($ $) 13)) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-34) (-139)) (T -34))
-((-3336 (*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-4220 (*1 *1 *1) (-4 *1 (-34))) (-4307 (*1 *1) (-4 *1 (-34))) (-2974 (*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-3289 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-766)) (-5 *2 (-112)))) (-3292 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-766)) (-5 *2 (-112)))) (-4336 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-766)) (-5 *2 (-112)))) (-1800 (*1 *1) (-4 *1 (-34))) (-3492 (*1 *2 *1) (-12 (|has| *1 (-6 -4402)) (-4 *1 (-34)) (-5 *2 (-766)))))
-(-13 (-1207) (-10 -8 (-15 -3336 ((-112) $ $)) (-15 -4220 ($ $)) (-15 -4307 ($)) (-15 -2974 ((-112) $)) (-15 -3289 ((-112) $ (-766))) (-15 -3292 ((-112) $ (-766))) (-15 -4336 ((-112) $ (-766))) (-15 -1800 ($) -1497) (IF (|has| $ (-6 -4402)) (-15 -3492 ((-766) $)) |%noBranch|)))
+((-1452 (*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-4220 (*1 *1 *1) (-4 *1 (-34))) (-1663 (*1 *1) (-4 *1 (-34))) (-3087 (*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-4147 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-766)) (-5 *2 (-112)))) (-4172 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-766)) (-5 *2 (-112)))) (-3735 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-766)) (-5 *2 (-112)))) (-3329 (*1 *1) (-4 *1 (-34))) (-3492 (*1 *2 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-34)) (-5 *2 (-766)))))
+(-13 (-1207) (-10 -8 (-15 -1452 ((-112) $ $)) (-15 -4220 ($ $)) (-15 -1663 ($)) (-15 -3087 ((-112) $)) (-15 -4147 ((-112) $ (-766))) (-15 -4172 ((-112) $ (-766))) (-15 -3735 ((-112) $ (-766))) (-15 -3329 ($) -1497) (IF (|has| $ (-6 -4403)) (-15 -3492 ((-766) $)) |%noBranch|)))
(((-1207) . T))
-((-3055 (($ $) 11)) (-3033 (($ $) 10)) (-3078 (($ $) 9)) (-1566 (($ $) 8)) (-3066 (($ $) 7)) (-3044 (($ $) 6)))
+((-3054 (($ $) 11)) (-3033 (($ $) 10)) (-3077 (($ $) 9)) (-1567 (($ $) 8)) (-3065 (($ $) 7)) (-3040 (($ $) 6)))
(((-35) (-139)) (T -35))
-((-3055 (*1 *1 *1) (-4 *1 (-35))) (-3033 (*1 *1 *1) (-4 *1 (-35))) (-3078 (*1 *1 *1) (-4 *1 (-35))) (-1566 (*1 *1 *1) (-4 *1 (-35))) (-3066 (*1 *1 *1) (-4 *1 (-35))) (-3044 (*1 *1 *1) (-4 *1 (-35))))
-(-13 (-10 -8 (-15 -3044 ($ $)) (-15 -3066 ($ $)) (-15 -1566 ($ $)) (-15 -3078 ($ $)) (-15 -3033 ($ $)) (-15 -3055 ($ $))))
-((-4041 (((-112) $ $) 19 (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-2534 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 125)) (-2359 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 148)) (-3121 (($ $) 146)) (-1443 (($) 72) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 71)) (-3052 (((-1261) $ |#1| |#1|) 99 (|has| $ (-6 -4403))) (((-1261) $ (-562) (-562)) 178 (|has| $ (-6 -4403)))) (-2254 (($ $ (-562)) 159 (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 209) (((-112) $) 203 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-3381 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 200 (|has| $ (-6 -4403))) (($ $) 199 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)) (|has| $ (-6 -4403))))) (-1395 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 210) (($ $) 204 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-4336 (((-112) $ (-766)) 8)) (-1512 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 134 (|has| $ (-6 -4403)))) (-3012 (($ $ $) 155 (|has| $ (-6 -4403)))) (-3950 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 157 (|has| $ (-6 -4403)))) (-2687 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 153 (|has| $ (-6 -4403)))) (-4200 ((|#2| $ |#1| |#2|) 73) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 189 (|has| $ (-6 -4403))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-1223 (-562)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 160 (|has| $ (-6 -4403))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ "last" (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 158 (|has| $ (-6 -4403))) (($ $ "rest" $) 156 (|has| $ (-6 -4403))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ "first" (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 154 (|has| $ (-6 -4403))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ "value" (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 133 (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) 132 (|has| $ (-6 -4403)))) (-3111 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 45 (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 216)) (-3556 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 55 (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 175 (|has| $ (-6 -4402)))) (-2350 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 147)) (-1472 (((-3 |#2| "failed") |#1| $) 61)) (-1800 (($) 7 T CONST)) (-2447 (($ $) 201 (|has| $ (-6 -4403)))) (-2677 (($ $) 211)) (-1434 (($ $ (-766)) 142) (($ $) 140)) (-4354 (($ $) 214 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-1459 (($ $) 58 (-4037 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402))) (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))))) (-4000 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 47 (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 46 (|has| $ (-6 -4402))) (((-3 |#2| "failed") |#1| $) 62) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 220) (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 215 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-1475 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 54 (|has| $ (-6 -4402))) (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 177 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 174 (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 56 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 53 (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 52 (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 176 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 173 (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 172 (|has| $ (-6 -4402)))) (-1505 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4403))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 190 (|has| $ (-6 -4403)))) (-1420 ((|#2| $ |#1|) 88) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562)) 188)) (-3266 (((-112) $) 192)) (-4264 (((-562) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 208) (((-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 207 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))) (((-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562)) 206 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-1720 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 30 (|has| $ (-6 -4402))) (((-639 |#2|) $) 79 (|has| $ (-6 -4402))) (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 114 (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) 123)) (-4379 (((-112) $ $) 131 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-1458 (($ (-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 169)) (-3292 (((-112) $ (-766)) 9)) (-4197 ((|#1| $) 96 (|has| |#1| (-845))) (((-562) $) 180 (|has| (-562) (-845)))) (-1551 (($ $ $) 198 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-2673 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ $) 217) (($ $ $) 213 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-1610 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ $) 212) (($ $ $) 205 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-1912 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 29 (|has| $ (-6 -4402))) (((-639 |#2|) $) 80 (|has| $ (-6 -4402))) (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 115 (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (((-112) |#2| $) 82 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4402)))) (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402))))) (-3874 ((|#1| $) 95 (|has| |#1| (-845))) (((-562) $) 181 (|has| (-562) (-845)))) (-2993 (($ $ $) 197 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 34 (|has| $ (-6 -4403))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4403))) (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 110 (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70) (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ $) 166) (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 109)) (-3716 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 225)) (-3289 (((-112) $ (-766)) 10)) (-4007 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 128)) (-3449 (((-112) $) 124)) (-2913 (((-1150) $) 22 (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-1504 (($ $ (-766)) 145) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 143)) (-1520 (((-639 |#1|) $) 63)) (-4265 (((-112) |#1| $) 64)) (-3262 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 39)) (-4300 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 40) (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562)) 219) (($ $ $ (-562)) 218)) (-3297 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562)) 162) (($ $ $ (-562)) 161)) (-2093 (((-639 |#1|) $) 93) (((-639 (-562)) $) 183)) (-1570 (((-112) |#1| $) 92) (((-112) (-562) $) 184)) (-1709 (((-1112) $) 21 (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-1421 ((|#2| $) 97 (|has| |#1| (-845))) (($ $ (-766)) 139) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 137)) (-3251 (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 51) (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 171)) (-2716 (($ $ |#2|) 98 (|has| $ (-6 -4403))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 179 (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 41)) (-2017 (((-112) $) 191)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 32 (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 112 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))))) 26 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 25 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 24 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 23 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) 86 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) 84 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) 83 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 121 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 120 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 119 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))))) 118 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#2| $) 94 (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092)))) (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 182 (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-2411 (((-639 |#2|) $) 91) (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 185)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 187) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562)) 186) (($ $ (-1223 (-562))) 165) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ "last") 144) (($ $ "rest") 141) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ "first") 138) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ "value") 126)) (-2568 (((-562) $ $) 129)) (-3564 (($) 49) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 48)) (-2878 (($ $ (-562)) 222) (($ $ (-1223 (-562))) 221)) (-2880 (($ $ (-562)) 164) (($ $ (-1223 (-562))) 163)) (-2424 (((-112) $) 127)) (-2613 (($ $) 151)) (-4327 (($ $) 152 (|has| $ (-6 -4403)))) (-2296 (((-766) $) 150)) (-3913 (($ $) 149)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 31 (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (((-766) |#2| $) 81 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4402)))) (((-766) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 116 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (((-766) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 113 (|has| $ (-6 -4402)))) (-1853 (($ $ $ (-562)) 202 (|has| $ (-6 -4403)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535)))))) (-4066 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 50) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 170)) (-4142 (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 224) (($ $ $) 223)) (-2767 (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 168) (($ (-639 $)) 167) (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 136) (($ $ $) 135)) (-4054 (((-857) $) 18 (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857)))))) (-2906 (((-639 $) $) 122)) (-4055 (((-112) $ $) 130 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-1932 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 42)) (-1515 (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") |#1| $) 108)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 33 (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) 76 (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 111 (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) 195 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-1772 (((-112) $ $) 194 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-1731 (((-112) $ $) 20 (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-1785 (((-112) $ $) 196 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-1759 (((-112) $ $) 193 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-3054 (*1 *1 *1) (-4 *1 (-35))) (-3033 (*1 *1 *1) (-4 *1 (-35))) (-3077 (*1 *1 *1) (-4 *1 (-35))) (-1567 (*1 *1 *1) (-4 *1 (-35))) (-3065 (*1 *1 *1) (-4 *1 (-35))) (-3040 (*1 *1 *1) (-4 *1 (-35))))
+(-13 (-10 -8 (-15 -3040 ($ $)) (-15 -3065 ($ $)) (-15 -1567 ($ $)) (-15 -3077 ($ $)) (-15 -3033 ($ $)) (-15 -3054 ($ $))))
+((-4041 (((-112) $ $) 19 (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-2533 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 125)) (-2358 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 148)) (-3120 (($ $) 146)) (-1443 (($) 72) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 71)) (-3655 (((-1261) $ |#1| |#1|) 99 (|has| $ (-6 -4404))) (((-1261) $ (-562) (-562)) 178 (|has| $ (-6 -4404)))) (-1335 (($ $ (-562)) 159 (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 209) (((-112) $) 203 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-3737 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 200 (|has| $ (-6 -4404))) (($ $) 199 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)) (|has| $ (-6 -4404))))) (-1395 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 210) (($ $) 204 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-3735 (((-112) $ (-766)) 8)) (-2677 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 134 (|has| $ (-6 -4404)))) (-3400 (($ $ $) 155 (|has| $ (-6 -4404)))) (-1393 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 157 (|has| $ (-6 -4404)))) (-3239 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 153 (|has| $ (-6 -4404)))) (-4200 ((|#2| $ |#1| |#2|) 73) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 189 (|has| $ (-6 -4404))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-1223 (-562)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 160 (|has| $ (-6 -4404))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ "last" (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 158 (|has| $ (-6 -4404))) (($ $ "rest" $) 156 (|has| $ (-6 -4404))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ "first" (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 154 (|has| $ (-6 -4404))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ "value" (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 133 (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) 132 (|has| $ (-6 -4404)))) (-2968 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 45 (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 216)) (-3556 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 55 (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 175 (|has| $ (-6 -4403)))) (-2349 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 147)) (-1472 (((-3 |#2| "failed") |#1| $) 61)) (-3329 (($) 7 T CONST)) (-2673 (($ $) 201 (|has| $ (-6 -4404)))) (-2676 (($ $) 211)) (-1434 (($ $ (-766)) 142) (($ $) 140)) (-3923 (($ $) 214 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-1459 (($ $) 58 (-4037 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403))) (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))))) (-3729 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 47 (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 46 (|has| $ (-6 -4403))) (((-3 |#2| "failed") |#1| $) 62) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 220) (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 215 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-1475 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 54 (|has| $ (-6 -4403))) (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 177 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 174 (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 56 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 53 (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 52 (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 176 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 173 (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 172 (|has| $ (-6 -4403)))) (-1507 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4404))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 190 (|has| $ (-6 -4404)))) (-1420 ((|#2| $ |#1|) 88) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562)) 188)) (-2101 (((-112) $) 192)) (-4265 (((-562) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 208) (((-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 207 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))) (((-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562)) 206 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-1720 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 30 (|has| $ (-6 -4403))) (((-639 |#2|) $) 79 (|has| $ (-6 -4403))) (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 114 (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) 123)) (-4188 (((-112) $ $) 131 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-1458 (($ (-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 169)) (-4172 (((-112) $ (-766)) 9)) (-1849 ((|#1| $) 96 (|has| |#1| (-845))) (((-562) $) 180 (|has| (-562) (-845)))) (-1551 (($ $ $) 198 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-3124 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ $) 217) (($ $ $) 213 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-4103 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ $) 212) (($ $ $) 205 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-2123 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 29 (|has| $ (-6 -4403))) (((-639 |#2|) $) 80 (|has| $ (-6 -4403))) (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 115 (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (((-112) |#2| $) 82 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4403)))) (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403))))) (-1929 ((|#1| $) 95 (|has| |#1| (-845))) (((-562) $) 181 (|has| (-562) (-845)))) (-2993 (($ $ $) 197 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 34 (|has| $ (-6 -4404))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4404))) (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 110 (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70) (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ $) 166) (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 109)) (-3716 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 225)) (-4147 (((-112) $ (-766)) 10)) (-4008 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 128)) (-3179 (((-112) $) 124)) (-3696 (((-1150) $) 22 (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-1504 (($ $ (-766)) 145) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 143)) (-1521 (((-639 |#1|) $) 63)) (-4278 (((-112) |#1| $) 64)) (-2078 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 39)) (-1581 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 40) (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562)) 219) (($ $ $ (-562)) 218)) (-3295 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562)) 162) (($ $ $ (-562)) 161)) (-3336 (((-639 |#1|) $) 93) (((-639 (-562)) $) 183)) (-1987 (((-112) |#1| $) 92) (((-112) (-562) $) 184)) (-1709 (((-1112) $) 21 (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-1421 ((|#2| $) 97 (|has| |#1| (-845))) (($ $ (-766)) 139) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 137)) (-1963 (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 51) (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 171)) (-3510 (($ $ |#2|) 98 (|has| $ (-6 -4404))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 179 (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 41)) (-3745 (((-112) $) 191)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 32 (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 112 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))))) 26 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 25 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 24 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 23 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) 86 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) 84 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) 83 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 121 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 120 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 119 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))))) 118 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#2| $) 94 (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092)))) (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 182 (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-2366 (((-639 |#2|) $) 91) (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 185)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 187) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562)) 186) (($ $ (-1223 (-562))) 165) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ "last") 144) (($ $ "rest") 141) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ "first") 138) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ "value") 126)) (-1423 (((-562) $ $) 129)) (-1932 (($) 49) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 48)) (-1527 (($ $ (-562)) 222) (($ $ (-1223 (-562))) 221)) (-2880 (($ $ (-562)) 164) (($ $ (-1223 (-562))) 163)) (-2473 (((-112) $) 127)) (-3734 (($ $) 151)) (-3659 (($ $) 152 (|has| $ (-6 -4404)))) (-3595 (((-766) $) 150)) (-2333 (($ $) 149)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 31 (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (((-766) |#2| $) 81 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4403)))) (((-766) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 116 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (((-766) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 113 (|has| $ (-6 -4403)))) (-2694 (($ $ $ (-562)) 202 (|has| $ (-6 -4404)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535)))))) (-4064 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 50) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 170)) (-2587 (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 224) (($ $ $) 223)) (-2767 (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 168) (($ (-639 $)) 167) (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 136) (($ $ $) 135)) (-4053 (((-857) $) 18 (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857)))))) (-3643 (((-639 $) $) 122)) (-2985 (((-112) $ $) 130 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-4131 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 42)) (-1515 (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") |#1| $) 108)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 33 (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) 76 (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 111 (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) 195 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-1771 (((-112) $ $) 194 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-1733 (((-112) $ $) 20 (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-1785 (((-112) $ $) 196 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-1761 (((-112) $ $) 193 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-36 |#1| |#2|) (-139) (-1092) (-1092)) (T -36))
-((-1515 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-5 *2 (-2 (|:| -2320 *3) (|:| -2694 *4))))))
-(-13 (-1183 |t#1| |t#2|) (-660 (-2 (|:| -2320 |t#1|) (|:| -2694 |t#2|))) (-10 -8 (-15 -1515 ((-3 (-2 (|:| -2320 |t#1|) (|:| -2694 |t#2|)) "failed") |t#1| $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T) ((-102) -4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845))) ((-609 (-857)) -4037 (|has| |#2| (-1092)) (|has| |#2| (-609 (-857))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857)))) ((-150 #1=(-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T) ((-610 (-535)) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))) ((-228 #0#) . T) ((-234 #0#) . T) ((-285 #2=(-562) #1#) . T) ((-285 |#1| |#2|) . T) ((-287 #2# #1#) . T) ((-287 |#1| |#2|) . T) ((-308 #1#) -12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))) ((-308 |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-281 #1#) . T) ((-372 #1#) . T) ((-488 #1#) . T) ((-488 |#2|) . T) ((-600 #2# #1#) . T) ((-600 |#1| |#2|) . T) ((-513 #1# #1#) -12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))) ((-513 |#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-606 |#1| |#2|) . T) ((-645 #1#) . T) ((-660 #1#) . T) ((-845) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)) ((-1005 #1#) . T) ((-1092) -4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845))) ((-1141 #1#) . T) ((-1183 |#1| |#2|) . T) ((-1207) . T) ((-1244 #1#) . T))
-((-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) 10)))
-(((-37 |#1| |#2|) (-10 -8 (-15 -4054 (|#1| |#2|)) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|))) (-38 |#2|) (-171)) (T -37))
-NIL
-(-10 -8 (-15 -4054 (|#1| |#2|)) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-1515 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-5 *2 (-2 (|:| -2319 *3) (|:| -2693 *4))))))
+(-13 (-1183 |t#1| |t#2|) (-660 (-2 (|:| -2319 |t#1|) (|:| -2693 |t#2|))) (-10 -8 (-15 -1515 ((-3 (-2 (|:| -2319 |t#1|) (|:| -2693 |t#2|)) "failed") |t#1| $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T) ((-102) -4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845))) ((-609 (-857)) -4037 (|has| |#2| (-1092)) (|has| |#2| (-609 (-857))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857)))) ((-150 #1=(-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T) ((-610 (-535)) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))) ((-228 #0#) . T) ((-234 #0#) . T) ((-285 #2=(-562) #1#) . T) ((-285 |#1| |#2|) . T) ((-287 #2# #1#) . T) ((-287 |#1| |#2|) . T) ((-308 #1#) -12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))) ((-308 |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-281 #1#) . T) ((-372 #1#) . T) ((-488 #1#) . T) ((-488 |#2|) . T) ((-600 #2# #1#) . T) ((-600 |#1| |#2|) . T) ((-513 #1# #1#) -12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))) ((-513 |#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-606 |#1| |#2|) . T) ((-645 #1#) . T) ((-660 #1#) . T) ((-845) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)) ((-1005 #1#) . T) ((-1092) -4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845))) ((-1141 #1#) . T) ((-1183 |#1| |#2|) . T) ((-1207) . T) ((-1244 #1#) . T))
+((-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) 10)))
+(((-37 |#1| |#2|) (-10 -8 (-15 -4053 (|#1| |#2|)) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|))) (-38 |#2|) (-171)) (T -37))
+NIL
+(-10 -8 (-15 -4053 (|#1| |#2|)) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-38 |#1|) (-139) (-171)) (T -38))
NIL
(-13 (-1044) (-712 |t#1|) (-612 |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-609 (-857)) . T) ((-642 |#1|) . T) ((-642 $) . T) ((-712 |#1|) . T) ((-721) . T) ((-1050 |#1|) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-2176 (((-417 |#1|) |#1|) 41)) (-1635 (((-417 |#1|) |#1|) 30) (((-417 |#1|) |#1| (-639 (-48))) 33)) (-3461 (((-112) |#1|) 56)))
-(((-39 |#1|) (-10 -7 (-15 -1635 ((-417 |#1|) |#1| (-639 (-48)))) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -2176 ((-417 |#1|) |#1|)) (-15 -3461 ((-112) |#1|))) (-1232 (-48))) (T -39))
-((-3461 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1232 (-48))))) (-2176 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1232 (-48))))) (-1635 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1232 (-48))))) (-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-48))) (-5 *2 (-417 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1232 (-48))))))
-(-10 -7 (-15 -1635 ((-417 |#1|) |#1| (-639 (-48)))) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -2176 ((-417 |#1|) |#1|)) (-15 -3461 ((-112) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3971 (((-2 (|:| |num| (-1256 |#2|)) (|:| |den| |#2|)) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| (-406 |#2|) (-362)))) (-2796 (($ $) NIL (|has| (-406 |#2|) (-362)))) (-4370 (((-112) $) NIL (|has| (-406 |#2|) (-362)))) (-1636 (((-683 (-406 |#2|)) (-1256 $)) NIL) (((-683 (-406 |#2|))) NIL)) (-1748 (((-406 |#2|) $) NIL)) (-3984 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-406 |#2|) (-348)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL (|has| (-406 |#2|) (-362)))) (-2921 (((-417 $) $) NIL (|has| (-406 |#2|) (-362)))) (-2569 (((-112) $ $) NIL (|has| (-406 |#2|) (-362)))) (-1382 (((-766)) NIL (|has| (-406 |#2|) (-367)))) (-2083 (((-112)) NIL)) (-3797 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| (-406 |#2|) (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-406 |#2|) (-1033 (-406 (-562))))) (((-3 (-406 |#2|) "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| (-406 |#2|) (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| (-406 |#2|) (-1033 (-406 (-562))))) (((-406 |#2|) $) NIL)) (-4018 (($ (-1256 (-406 |#2|)) (-1256 $)) NIL) (($ (-1256 (-406 |#2|))) 57) (($ (-1256 |#2|) |#2|) 125)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-406 |#2|) (-348)))) (-1811 (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-1958 (((-683 (-406 |#2|)) $ (-1256 $)) NIL) (((-683 (-406 |#2|)) $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| (-406 |#2|) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-406 |#2|) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-406 |#2|))) (|:| |vec| (-1256 (-406 |#2|)))) (-683 $) (-1256 $)) NIL) (((-683 (-406 |#2|)) (-683 $)) NIL)) (-2435 (((-1256 $) (-1256 $)) NIL)) (-1955 (($ |#3|) NIL) (((-3 $ "failed") (-406 |#3|)) NIL (|has| (-406 |#2|) (-362)))) (-3668 (((-3 $ "failed") $) NIL)) (-2753 (((-639 (-639 |#1|))) NIL (|has| |#1| (-367)))) (-1877 (((-112) |#1| |#1|) NIL)) (-2173 (((-916)) NIL)) (-1448 (($) NIL (|has| (-406 |#2|) (-367)))) (-4240 (((-112)) NIL)) (-2792 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-1787 (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| (-406 |#2|) (-362)))) (-1498 (($ $) NIL)) (-3529 (($) NIL (|has| (-406 |#2|) (-348)))) (-1322 (((-112) $) NIL (|has| (-406 |#2|) (-348)))) (-3589 (($ $ (-766)) NIL (|has| (-406 |#2|) (-348))) (($ $) NIL (|has| (-406 |#2|) (-348)))) (-2717 (((-112) $) NIL (|has| (-406 |#2|) (-362)))) (-1900 (((-916) $) NIL (|has| (-406 |#2|) (-348))) (((-828 (-916)) $) NIL (|has| (-406 |#2|) (-348)))) (-1957 (((-112) $) NIL)) (-3684 (((-766)) NIL)) (-2142 (((-1256 $) (-1256 $)) 102)) (-2247 (((-406 |#2|) $) NIL)) (-1336 (((-639 (-947 |#1|)) (-1168)) NIL (|has| |#1| (-362)))) (-3699 (((-3 $ "failed") $) NIL (|has| (-406 |#2|) (-348)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| (-406 |#2|) (-362)))) (-1565 ((|#3| $) NIL (|has| (-406 |#2|) (-362)))) (-1999 (((-916) $) NIL (|has| (-406 |#2|) (-367)))) (-1943 ((|#3| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| (-406 |#2|) (-362))) (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-2913 (((-1150) $) NIL)) (-2122 (((-1261) (-766)) 79)) (-2452 (((-683 (-406 |#2|))) 51)) (-4245 (((-683 (-406 |#2|))) 44)) (-1525 (($ $) NIL (|has| (-406 |#2|) (-362)))) (-2679 (($ (-1256 |#2|) |#2|) 126)) (-2696 (((-683 (-406 |#2|))) 45)) (-3933 (((-683 (-406 |#2|))) 43)) (-2979 (((-2 (|:| |num| (-683 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 124)) (-4270 (((-2 (|:| |num| (-1256 |#2|)) (|:| |den| |#2|)) $) 64)) (-2980 (((-1256 $)) 42)) (-3826 (((-1256 $)) 41)) (-4346 (((-112) $) NIL)) (-2472 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-3729 (($) NIL (|has| (-406 |#2|) (-348)) CONST)) (-2466 (($ (-916)) NIL (|has| (-406 |#2|) (-367)))) (-2676 (((-3 |#2| "failed")) NIL)) (-1709 (((-1112) $) NIL)) (-2116 (((-766)) NIL)) (-3148 (($) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| (-406 |#2|) (-362)))) (-1606 (($ (-639 $)) NIL (|has| (-406 |#2|) (-362))) (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL (|has| (-406 |#2|) (-348)))) (-1635 (((-417 $) $) NIL (|has| (-406 |#2|) (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-406 |#2|) (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| (-406 |#2|) (-362)))) (-1762 (((-3 $ "failed") $ $) NIL (|has| (-406 |#2|) (-362)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| (-406 |#2|) (-362)))) (-1577 (((-766) $) NIL (|has| (-406 |#2|) (-362)))) (-2343 ((|#1| $ |#1| |#1|) NIL)) (-3441 (((-3 |#2| "failed")) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| (-406 |#2|) (-362)))) (-2455 (((-406 |#2|) (-1256 $)) NIL) (((-406 |#2|)) 39)) (-3362 (((-766) $) NIL (|has| (-406 |#2|) (-348))) (((-3 (-766) "failed") $ $) NIL (|has| (-406 |#2|) (-348)))) (-4029 (($ $ (-1 (-406 |#2|) (-406 |#2|)) (-766)) NIL (|has| (-406 |#2|) (-362))) (($ $ (-1 (-406 |#2|) (-406 |#2|))) NIL (|has| (-406 |#2|) (-362))) (($ $ (-1 |#2| |#2|)) 120) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-766)) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348)))) (($ $) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348))))) (-3187 (((-683 (-406 |#2|)) (-1256 $) (-1 (-406 |#2|) (-406 |#2|))) NIL (|has| (-406 |#2|) (-362)))) (-2096 ((|#3|) 50)) (-2283 (($) NIL (|has| (-406 |#2|) (-348)))) (-3593 (((-1256 (-406 |#2|)) $ (-1256 $)) NIL) (((-683 (-406 |#2|)) (-1256 $) (-1256 $)) NIL) (((-1256 (-406 |#2|)) $) 58) (((-683 (-406 |#2|)) (-1256 $)) 103)) (-4208 (((-1256 (-406 |#2|)) $) NIL) (($ (-1256 (-406 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| (-406 |#2|) (-348)))) (-1624 (((-1256 $) (-1256 $)) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 |#2|)) NIL) (($ (-406 (-562))) NIL (-4037 (|has| (-406 |#2|) (-1033 (-406 (-562)))) (|has| (-406 |#2|) (-362)))) (($ $) NIL (|has| (-406 |#2|) (-362)))) (-2805 (($ $) NIL (|has| (-406 |#2|) (-348))) (((-3 $ "failed") $) NIL (|has| (-406 |#2|) (-144)))) (-3376 ((|#3| $) NIL)) (-2579 (((-766)) NIL)) (-1946 (((-112)) 37)) (-1719 (((-112) |#1|) 49) (((-112) |#2|) 131)) (-3928 (((-1256 $)) 93)) (-2922 (((-112) $ $) NIL (|has| (-406 |#2|) (-362)))) (-4193 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2386 (((-112)) NIL)) (-2286 (($) 16 T CONST)) (-2294 (($) 26 T CONST)) (-3114 (($ $ (-1 (-406 |#2|) (-406 |#2|)) (-766)) NIL (|has| (-406 |#2|) (-362))) (($ $ (-1 (-406 |#2|) (-406 |#2|))) NIL (|has| (-406 |#2|) (-362))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-766)) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348)))) (($ $) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348))))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| (-406 |#2|) (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 |#2|)) NIL) (($ (-406 |#2|) $) NIL) (($ (-406 (-562)) $) NIL (|has| (-406 |#2|) (-362))) (($ $ (-406 (-562))) NIL (|has| (-406 |#2|) (-362)))))
-(((-40 |#1| |#2| |#3| |#4|) (-13 (-341 |#1| |#2| |#3|) (-10 -7 (-15 -2122 ((-1261) (-766))))) (-362) (-1232 |#1|) (-1232 (-406 |#2|)) |#3|) (T -40))
-((-2122 (*1 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-362)) (-4 *5 (-1232 *4)) (-5 *2 (-1261)) (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1232 (-406 *5))) (-14 *7 *6))))
-(-13 (-341 |#1| |#2| |#3|) (-10 -7 (-15 -2122 ((-1261) (-766)))))
-((-1783 ((|#2| |#2|) 48)) (-2061 ((|#2| |#2|) 119 (-12 (|has| |#2| (-429 |#1|)) (|has| |#1| (-451)) (|has| |#1| (-845)) (|has| |#1| (-1033 (-562)))))) (-1652 ((|#2| |#2|) 86 (-12 (|has| |#2| (-429 |#1|)) (|has| |#1| (-451)) (|has| |#1| (-845)) (|has| |#1| (-1033 (-562)))))) (-2217 ((|#2| |#2|) 87 (-12 (|has| |#2| (-429 |#1|)) (|has| |#1| (-451)) (|has| |#1| (-845)) (|has| |#1| (-1033 (-562)))))) (-3296 ((|#2| (-114) |#2| (-766)) 115 (-12 (|has| |#2| (-429 |#1|)) (|has| |#1| (-451)) (|has| |#1| (-845)) (|has| |#1| (-1033 (-562)))))) (-4158 (((-1164 |#2|) |#2|) 45)) (-3609 ((|#2| |#2| (-639 (-608 |#2|))) 18) ((|#2| |#2| (-639 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
-(((-41 |#1| |#2|) (-10 -7 (-15 -1783 (|#2| |#2|)) (-15 -3609 (|#2| |#2|)) (-15 -3609 (|#2| |#2| |#2|)) (-15 -3609 (|#2| |#2| (-639 |#2|))) (-15 -3609 (|#2| |#2| (-639 (-608 |#2|)))) (-15 -4158 ((-1164 |#2|) |#2|)) (IF (|has| |#1| (-845)) (IF (|has| |#1| (-451)) (IF (|has| |#1| (-1033 (-562))) (IF (|has| |#2| (-429 |#1|)) (PROGN (-15 -2217 (|#2| |#2|)) (-15 -1652 (|#2| |#2|)) (-15 -2061 (|#2| |#2|)) (-15 -3296 (|#2| (-114) |#2| (-766)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-554) (-13 (-362) (-301) (-10 -8 (-15 -4065 ((-1117 |#1| (-608 $)) $)) (-15 -4076 ((-1117 |#1| (-608 $)) $)) (-15 -4054 ($ (-1117 |#1| (-608 $))))))) (T -41))
-((-3296 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-114)) (-5 *4 (-766)) (-4 *5 (-451)) (-4 *5 (-845)) (-4 *5 (-1033 (-562))) (-4 *5 (-554)) (-5 *1 (-41 *5 *2)) (-4 *2 (-429 *5)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4065 ((-1117 *5 (-608 $)) $)) (-15 -4076 ((-1117 *5 (-608 $)) $)) (-15 -4054 ($ (-1117 *5 (-608 $))))))))) (-2061 (*1 *2 *2) (-12 (-4 *3 (-451)) (-4 *3 (-845)) (-4 *3 (-1033 (-562))) (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-429 *3)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4065 ((-1117 *3 (-608 $)) $)) (-15 -4076 ((-1117 *3 (-608 $)) $)) (-15 -4054 ($ (-1117 *3 (-608 $))))))))) (-1652 (*1 *2 *2) (-12 (-4 *3 (-451)) (-4 *3 (-845)) (-4 *3 (-1033 (-562))) (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-429 *3)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4065 ((-1117 *3 (-608 $)) $)) (-15 -4076 ((-1117 *3 (-608 $)) $)) (-15 -4054 ($ (-1117 *3 (-608 $))))))))) (-2217 (*1 *2 *2) (-12 (-4 *3 (-451)) (-4 *3 (-845)) (-4 *3 (-1033 (-562))) (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-429 *3)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4065 ((-1117 *3 (-608 $)) $)) (-15 -4076 ((-1117 *3 (-608 $)) $)) (-15 -4054 ($ (-1117 *3 (-608 $))))))))) (-4158 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-1164 *3)) (-5 *1 (-41 *4 *3)) (-4 *3 (-13 (-362) (-301) (-10 -8 (-15 -4065 ((-1117 *4 (-608 $)) $)) (-15 -4076 ((-1117 *4 (-608 $)) $)) (-15 -4054 ($ (-1117 *4 (-608 $))))))))) (-3609 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-608 *2))) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4065 ((-1117 *4 (-608 $)) $)) (-15 -4076 ((-1117 *4 (-608 $)) $)) (-15 -4054 ($ (-1117 *4 (-608 $))))))) (-4 *4 (-554)) (-5 *1 (-41 *4 *2)))) (-3609 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4065 ((-1117 *4 (-608 $)) $)) (-15 -4076 ((-1117 *4 (-608 $)) $)) (-15 -4054 ($ (-1117 *4 (-608 $))))))) (-4 *4 (-554)) (-5 *1 (-41 *4 *2)))) (-3609 (*1 *2 *2 *2) (-12 (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4065 ((-1117 *3 (-608 $)) $)) (-15 -4076 ((-1117 *3 (-608 $)) $)) (-15 -4054 ($ (-1117 *3 (-608 $))))))))) (-3609 (*1 *2 *2) (-12 (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4065 ((-1117 *3 (-608 $)) $)) (-15 -4076 ((-1117 *3 (-608 $)) $)) (-15 -4054 ($ (-1117 *3 (-608 $))))))))) (-1783 (*1 *2 *2) (-12 (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4065 ((-1117 *3 (-608 $)) $)) (-15 -4076 ((-1117 *3 (-608 $)) $)) (-15 -4054 ($ (-1117 *3 (-608 $))))))))))
-(-10 -7 (-15 -1783 (|#2| |#2|)) (-15 -3609 (|#2| |#2|)) (-15 -3609 (|#2| |#2| |#2|)) (-15 -3609 (|#2| |#2| (-639 |#2|))) (-15 -3609 (|#2| |#2| (-639 (-608 |#2|)))) (-15 -4158 ((-1164 |#2|) |#2|)) (IF (|has| |#1| (-845)) (IF (|has| |#1| (-451)) (IF (|has| |#1| (-1033 (-562))) (IF (|has| |#2| (-429 |#1|)) (PROGN (-15 -2217 (|#2| |#2|)) (-15 -1652 (|#2| |#2|)) (-15 -2061 (|#2| |#2|)) (-15 -3296 (|#2| (-114) |#2| (-766)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-1841 (((-417 |#1|) |#1|) 41)) (-1635 (((-417 |#1|) |#1|) 30) (((-417 |#1|) |#1| (-639 (-48))) 33)) (-3306 (((-112) |#1|) 56)))
+(((-39 |#1|) (-10 -7 (-15 -1635 ((-417 |#1|) |#1| (-639 (-48)))) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -1841 ((-417 |#1|) |#1|)) (-15 -3306 ((-112) |#1|))) (-1232 (-48))) (T -39))
+((-3306 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1232 (-48))))) (-1841 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1232 (-48))))) (-1635 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1232 (-48))))) (-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-48))) (-5 *2 (-417 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1232 (-48))))))
+(-10 -7 (-15 -1635 ((-417 |#1|) |#1| (-639 (-48)))) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -1841 ((-417 |#1|) |#1|)) (-15 -3306 ((-112) |#1|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1631 (((-2 (|:| |num| (-1256 |#2|)) (|:| |den| |#2|)) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| (-406 |#2|) (-362)))) (-1965 (($ $) NIL (|has| (-406 |#2|) (-362)))) (-4102 (((-112) $) NIL (|has| (-406 |#2|) (-362)))) (-4342 (((-683 (-406 |#2|)) (-1256 $)) NIL) (((-683 (-406 |#2|))) NIL)) (-1748 (((-406 |#2|) $) NIL)) (-1755 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-406 |#2|) (-348)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL (|has| (-406 |#2|) (-362)))) (-3788 (((-417 $) $) NIL (|has| (-406 |#2|) (-362)))) (-1436 (((-112) $ $) NIL (|has| (-406 |#2|) (-362)))) (-1382 (((-766)) NIL (|has| (-406 |#2|) (-367)))) (-3236 (((-112)) NIL)) (-3520 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| (-406 |#2|) (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-406 |#2|) (-1033 (-406 (-562))))) (((-3 (-406 |#2|) "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| (-406 |#2|) (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| (-406 |#2|) (-1033 (-406 (-562))))) (((-406 |#2|) $) NIL)) (-3916 (($ (-1256 (-406 |#2|)) (-1256 $)) NIL) (($ (-1256 (-406 |#2|))) 57) (($ (-1256 |#2|) |#2|) 125)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-406 |#2|) (-348)))) (-1810 (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-4376 (((-683 (-406 |#2|)) $ (-1256 $)) NIL) (((-683 (-406 |#2|)) $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| (-406 |#2|) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-406 |#2|) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-406 |#2|))) (|:| |vec| (-1256 (-406 |#2|)))) (-683 $) (-1256 $)) NIL) (((-683 (-406 |#2|)) (-683 $)) NIL)) (-2575 (((-1256 $) (-1256 $)) NIL)) (-1954 (($ |#3|) NIL) (((-3 $ "failed") (-406 |#3|)) NIL (|has| (-406 |#2|) (-362)))) (-1694 (((-3 $ "failed") $) NIL)) (-2713 (((-639 (-639 |#1|))) NIL (|has| |#1| (-367)))) (-1718 (((-112) |#1| |#1|) NIL)) (-2172 (((-916)) NIL)) (-1447 (($) NIL (|has| (-406 |#2|) (-367)))) (-2241 (((-112)) NIL)) (-1912 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-1787 (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| (-406 |#2|) (-362)))) (-2578 (($ $) NIL)) (-2787 (($) NIL (|has| (-406 |#2|) (-348)))) (-1844 (((-112) $) NIL (|has| (-406 |#2|) (-348)))) (-2184 (($ $ (-766)) NIL (|has| (-406 |#2|) (-348))) (($ $) NIL (|has| (-406 |#2|) (-348)))) (-3521 (((-112) $) NIL (|has| (-406 |#2|) (-362)))) (-1993 (((-916) $) NIL (|has| (-406 |#2|) (-348))) (((-828 (-916)) $) NIL (|has| (-406 |#2|) (-348)))) (-4367 (((-112) $) NIL)) (-3668 (((-766)) NIL)) (-2700 (((-1256 $) (-1256 $)) 102)) (-4363 (((-406 |#2|) $) NIL)) (-2004 (((-639 (-947 |#1|)) (-1168)) NIL (|has| |#1| (-362)))) (-3828 (((-3 $ "failed") $) NIL (|has| (-406 |#2|) (-348)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| (-406 |#2|) (-362)))) (-1937 ((|#3| $) NIL (|has| (-406 |#2|) (-362)))) (-3549 (((-916) $) NIL (|has| (-406 |#2|) (-367)))) (-1942 ((|#3| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| (-406 |#2|) (-362))) (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-3696 (((-1150) $) NIL)) (-2499 (((-1261) (-766)) 79)) (-2715 (((-683 (-406 |#2|))) 51)) (-2289 (((-683 (-406 |#2|))) 44)) (-1525 (($ $) NIL (|has| (-406 |#2|) (-362)))) (-3174 (($ (-1256 |#2|) |#2|) 126)) (-3324 (((-683 (-406 |#2|))) 45)) (-4335 (((-683 (-406 |#2|))) 43)) (-3128 (((-2 (|:| |num| (-683 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 124)) (-4329 (((-2 (|:| |num| (-1256 |#2|)) (|:| |den| |#2|)) $) 64)) (-3137 (((-1256 $)) 42)) (-2639 (((-1256 $)) 41)) (-3841 (((-112) $) NIL)) (-2881 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-3730 (($) NIL (|has| (-406 |#2|) (-348)) CONST)) (-2464 (($ (-916)) NIL (|has| (-406 |#2|) (-367)))) (-3153 (((-3 |#2| "failed")) NIL)) (-1709 (((-1112) $) NIL)) (-2435 (((-766)) NIL)) (-3147 (($) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| (-406 |#2|) (-362)))) (-1606 (($ (-639 $)) NIL (|has| (-406 |#2|) (-362))) (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL (|has| (-406 |#2|) (-348)))) (-1635 (((-417 $) $) NIL (|has| (-406 |#2|) (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-406 |#2|) (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| (-406 |#2|) (-362)))) (-1762 (((-3 $ "failed") $ $) NIL (|has| (-406 |#2|) (-362)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| (-406 |#2|) (-362)))) (-2044 (((-766) $) NIL (|has| (-406 |#2|) (-362)))) (-2343 ((|#1| $ |#1| |#1|) NIL)) (-3092 (((-3 |#2| "failed")) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| (-406 |#2|) (-362)))) (-2736 (((-406 |#2|) (-1256 $)) NIL) (((-406 |#2|)) 39)) (-3543 (((-766) $) NIL (|has| (-406 |#2|) (-348))) (((-3 (-766) "failed") $ $) NIL (|has| (-406 |#2|) (-348)))) (-4029 (($ $ (-1 (-406 |#2|) (-406 |#2|)) (-766)) NIL (|has| (-406 |#2|) (-362))) (($ $ (-1 (-406 |#2|) (-406 |#2|))) NIL (|has| (-406 |#2|) (-362))) (($ $ (-1 |#2| |#2|)) 120) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-766)) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348)))) (($ $) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348))))) (-2539 (((-683 (-406 |#2|)) (-1256 $) (-1 (-406 |#2|) (-406 |#2|))) NIL (|has| (-406 |#2|) (-362)))) (-3371 ((|#3|) 50)) (-1653 (($) NIL (|has| (-406 |#2|) (-348)))) (-2205 (((-1256 (-406 |#2|)) $ (-1256 $)) NIL) (((-683 (-406 |#2|)) (-1256 $) (-1256 $)) NIL) (((-1256 (-406 |#2|)) $) 58) (((-683 (-406 |#2|)) (-1256 $)) 103)) (-4208 (((-1256 (-406 |#2|)) $) NIL) (($ (-1256 (-406 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| (-406 |#2|) (-348)))) (-4240 (((-1256 $) (-1256 $)) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 |#2|)) NIL) (($ (-406 (-562))) NIL (-4037 (|has| (-406 |#2|) (-1033 (-406 (-562)))) (|has| (-406 |#2|) (-362)))) (($ $) NIL (|has| (-406 |#2|) (-362)))) (-2059 (($ $) NIL (|has| (-406 |#2|) (-348))) (((-3 $ "failed") $) NIL (|has| (-406 |#2|) (-144)))) (-3683 ((|#3| $) NIL)) (-1568 (((-766)) NIL)) (-4266 (((-112)) 37)) (-3866 (((-112) |#1|) 49) (((-112) |#2|) 131)) (-4291 (((-1256 $)) 93)) (-3799 (((-112) $ $) NIL (|has| (-406 |#2|) (-362)))) (-2960 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-3243 (((-112)) NIL)) (-2285 (($) 16 T CONST)) (-2294 (($) 26 T CONST)) (-3113 (($ $ (-1 (-406 |#2|) (-406 |#2|)) (-766)) NIL (|has| (-406 |#2|) (-362))) (($ $ (-1 (-406 |#2|) (-406 |#2|))) NIL (|has| (-406 |#2|) (-362))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-766)) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348)))) (($ $) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348))))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| (-406 |#2|) (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 |#2|)) NIL) (($ (-406 |#2|) $) NIL) (($ (-406 (-562)) $) NIL (|has| (-406 |#2|) (-362))) (($ $ (-406 (-562))) NIL (|has| (-406 |#2|) (-362)))))
+(((-40 |#1| |#2| |#3| |#4|) (-13 (-341 |#1| |#2| |#3|) (-10 -7 (-15 -2499 ((-1261) (-766))))) (-362) (-1232 |#1|) (-1232 (-406 |#2|)) |#3|) (T -40))
+((-2499 (*1 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-362)) (-4 *5 (-1232 *4)) (-5 *2 (-1261)) (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1232 (-406 *5))) (-14 *7 *6))))
+(-13 (-341 |#1| |#2| |#3|) (-10 -7 (-15 -2499 ((-1261) (-766)))))
+((-3186 ((|#2| |#2|) 48)) (-3002 ((|#2| |#2|) 119 (-12 (|has| |#2| (-429 |#1|)) (|has| |#1| (-451)) (|has| |#1| (-845)) (|has| |#1| (-1033 (-562)))))) (-1399 ((|#2| |#2|) 86 (-12 (|has| |#2| (-429 |#1|)) (|has| |#1| (-451)) (|has| |#1| (-845)) (|has| |#1| (-1033 (-562)))))) (-2272 ((|#2| |#2|) 87 (-12 (|has| |#2| (-429 |#1|)) (|has| |#1| (-451)) (|has| |#1| (-845)) (|has| |#1| (-1033 (-562)))))) (-4203 ((|#2| (-114) |#2| (-766)) 115 (-12 (|has| |#2| (-429 |#1|)) (|has| |#1| (-451)) (|has| |#1| (-845)) (|has| |#1| (-1033 (-562)))))) (-2697 (((-1164 |#2|) |#2|) 45)) (-2346 ((|#2| |#2| (-639 (-608 |#2|))) 18) ((|#2| |#2| (-639 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
+(((-41 |#1| |#2|) (-10 -7 (-15 -3186 (|#2| |#2|)) (-15 -2346 (|#2| |#2|)) (-15 -2346 (|#2| |#2| |#2|)) (-15 -2346 (|#2| |#2| (-639 |#2|))) (-15 -2346 (|#2| |#2| (-639 (-608 |#2|)))) (-15 -2697 ((-1164 |#2|) |#2|)) (IF (|has| |#1| (-845)) (IF (|has| |#1| (-451)) (IF (|has| |#1| (-1033 (-562))) (IF (|has| |#2| (-429 |#1|)) (PROGN (-15 -2272 (|#2| |#2|)) (-15 -1399 (|#2| |#2|)) (-15 -3002 (|#2| |#2|)) (-15 -4203 (|#2| (-114) |#2| (-766)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-554) (-13 (-362) (-301) (-10 -8 (-15 -4063 ((-1117 |#1| (-608 $)) $)) (-15 -4079 ((-1117 |#1| (-608 $)) $)) (-15 -4053 ($ (-1117 |#1| (-608 $))))))) (T -41))
+((-4203 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-114)) (-5 *4 (-766)) (-4 *5 (-451)) (-4 *5 (-845)) (-4 *5 (-1033 (-562))) (-4 *5 (-554)) (-5 *1 (-41 *5 *2)) (-4 *2 (-429 *5)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4063 ((-1117 *5 (-608 $)) $)) (-15 -4079 ((-1117 *5 (-608 $)) $)) (-15 -4053 ($ (-1117 *5 (-608 $))))))))) (-3002 (*1 *2 *2) (-12 (-4 *3 (-451)) (-4 *3 (-845)) (-4 *3 (-1033 (-562))) (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-429 *3)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4063 ((-1117 *3 (-608 $)) $)) (-15 -4079 ((-1117 *3 (-608 $)) $)) (-15 -4053 ($ (-1117 *3 (-608 $))))))))) (-1399 (*1 *2 *2) (-12 (-4 *3 (-451)) (-4 *3 (-845)) (-4 *3 (-1033 (-562))) (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-429 *3)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4063 ((-1117 *3 (-608 $)) $)) (-15 -4079 ((-1117 *3 (-608 $)) $)) (-15 -4053 ($ (-1117 *3 (-608 $))))))))) (-2272 (*1 *2 *2) (-12 (-4 *3 (-451)) (-4 *3 (-845)) (-4 *3 (-1033 (-562))) (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-429 *3)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4063 ((-1117 *3 (-608 $)) $)) (-15 -4079 ((-1117 *3 (-608 $)) $)) (-15 -4053 ($ (-1117 *3 (-608 $))))))))) (-2697 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-1164 *3)) (-5 *1 (-41 *4 *3)) (-4 *3 (-13 (-362) (-301) (-10 -8 (-15 -4063 ((-1117 *4 (-608 $)) $)) (-15 -4079 ((-1117 *4 (-608 $)) $)) (-15 -4053 ($ (-1117 *4 (-608 $))))))))) (-2346 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-608 *2))) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4063 ((-1117 *4 (-608 $)) $)) (-15 -4079 ((-1117 *4 (-608 $)) $)) (-15 -4053 ($ (-1117 *4 (-608 $))))))) (-4 *4 (-554)) (-5 *1 (-41 *4 *2)))) (-2346 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4063 ((-1117 *4 (-608 $)) $)) (-15 -4079 ((-1117 *4 (-608 $)) $)) (-15 -4053 ($ (-1117 *4 (-608 $))))))) (-4 *4 (-554)) (-5 *1 (-41 *4 *2)))) (-2346 (*1 *2 *2 *2) (-12 (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4063 ((-1117 *3 (-608 $)) $)) (-15 -4079 ((-1117 *3 (-608 $)) $)) (-15 -4053 ($ (-1117 *3 (-608 $))))))))) (-2346 (*1 *2 *2) (-12 (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4063 ((-1117 *3 (-608 $)) $)) (-15 -4079 ((-1117 *3 (-608 $)) $)) (-15 -4053 ($ (-1117 *3 (-608 $))))))))) (-3186 (*1 *2 *2) (-12 (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-362) (-301) (-10 -8 (-15 -4063 ((-1117 *3 (-608 $)) $)) (-15 -4079 ((-1117 *3 (-608 $)) $)) (-15 -4053 ($ (-1117 *3 (-608 $))))))))))
+(-10 -7 (-15 -3186 (|#2| |#2|)) (-15 -2346 (|#2| |#2|)) (-15 -2346 (|#2| |#2| |#2|)) (-15 -2346 (|#2| |#2| (-639 |#2|))) (-15 -2346 (|#2| |#2| (-639 (-608 |#2|)))) (-15 -2697 ((-1164 |#2|) |#2|)) (IF (|has| |#1| (-845)) (IF (|has| |#1| (-451)) (IF (|has| |#1| (-1033 (-562))) (IF (|has| |#2| (-429 |#1|)) (PROGN (-15 -2272 (|#2| |#2|)) (-15 -1399 (|#2| |#2|)) (-15 -3002 (|#2| |#2|)) (-15 -4203 (|#2| (-114) |#2| (-766)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
((-1635 (((-417 (-1164 |#3|)) (-1164 |#3|) (-639 (-48))) 23) (((-417 |#3|) |#3| (-639 (-48))) 19)))
(((-42 |#1| |#2| |#3|) (-10 -7 (-15 -1635 ((-417 |#3|) |#3| (-639 (-48)))) (-15 -1635 ((-417 (-1164 |#3|)) (-1164 |#3|) (-639 (-48))))) (-845) (-788) (-944 (-48) |#2| |#1|)) (T -42))
((-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-48))) (-4 *5 (-845)) (-4 *6 (-788)) (-4 *7 (-944 (-48) *6 *5)) (-5 *2 (-417 (-1164 *7))) (-5 *1 (-42 *5 *6 *7)) (-5 *3 (-1164 *7)))) (-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-48))) (-4 *5 (-845)) (-4 *6 (-788)) (-5 *2 (-417 *3)) (-5 *1 (-42 *5 *6 *3)) (-4 *3 (-944 (-48) *6 *5)))))
(-10 -7 (-15 -1635 ((-417 |#3|) |#3| (-639 (-48)))) (-15 -1635 ((-417 (-1164 |#3|)) (-1164 |#3|) (-639 (-48)))))
-((-2039 (((-766) |#2|) 65)) (-1750 (((-766) |#2|) 68)) (-3136 (((-639 |#2|)) 33)) (-2194 (((-766) |#2|) 67)) (-1832 (((-766) |#2|) 64)) (-1975 (((-766) |#2|) 66)) (-4381 (((-639 (-683 |#1|))) 60)) (-1621 (((-639 |#2|)) 55)) (-3990 (((-639 |#2|) |#2|) 43)) (-3166 (((-639 |#2|)) 57)) (-1364 (((-639 |#2|)) 56)) (-2628 (((-639 (-683 |#1|))) 48)) (-2784 (((-639 |#2|)) 54)) (-2205 (((-639 |#2|) |#2|) 42)) (-2473 (((-639 |#2|)) 50)) (-3704 (((-639 (-683 |#1|))) 61)) (-3941 (((-639 |#2|)) 59)) (-3928 (((-1256 |#2|) (-1256 |#2|)) 83 (|has| |#1| (-306)))))
-(((-43 |#1| |#2|) (-10 -7 (-15 -2194 ((-766) |#2|)) (-15 -1750 ((-766) |#2|)) (-15 -1832 ((-766) |#2|)) (-15 -2039 ((-766) |#2|)) (-15 -1975 ((-766) |#2|)) (-15 -2473 ((-639 |#2|))) (-15 -2205 ((-639 |#2|) |#2|)) (-15 -3990 ((-639 |#2|) |#2|)) (-15 -2784 ((-639 |#2|))) (-15 -1621 ((-639 |#2|))) (-15 -1364 ((-639 |#2|))) (-15 -3166 ((-639 |#2|))) (-15 -3941 ((-639 |#2|))) (-15 -2628 ((-639 (-683 |#1|)))) (-15 -4381 ((-639 (-683 |#1|)))) (-15 -3704 ((-639 (-683 |#1|)))) (-15 -3136 ((-639 |#2|))) (IF (|has| |#1| (-306)) (-15 -3928 ((-1256 |#2|) (-1256 |#2|))) |%noBranch|)) (-554) (-416 |#1|)) (T -43))
-((-3928 (*1 *2 *2) (-12 (-5 *2 (-1256 *4)) (-4 *4 (-416 *3)) (-4 *3 (-306)) (-4 *3 (-554)) (-5 *1 (-43 *3 *4)))) (-3136 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-3704 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 (-683 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-4381 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 (-683 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-2628 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 (-683 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-3941 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-3166 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-1364 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-1621 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-2784 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-3990 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))) (-2205 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))) (-2473 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-1975 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))) (-2039 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))) (-1832 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))) (-1750 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))) (-2194 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))))
-(-10 -7 (-15 -2194 ((-766) |#2|)) (-15 -1750 ((-766) |#2|)) (-15 -1832 ((-766) |#2|)) (-15 -2039 ((-766) |#2|)) (-15 -1975 ((-766) |#2|)) (-15 -2473 ((-639 |#2|))) (-15 -2205 ((-639 |#2|) |#2|)) (-15 -3990 ((-639 |#2|) |#2|)) (-15 -2784 ((-639 |#2|))) (-15 -1621 ((-639 |#2|))) (-15 -1364 ((-639 |#2|))) (-15 -3166 ((-639 |#2|))) (-15 -3941 ((-639 |#2|))) (-15 -2628 ((-639 (-683 |#1|)))) (-15 -4381 ((-639 (-683 |#1|)))) (-15 -3704 ((-639 (-683 |#1|)))) (-15 -3136 ((-639 |#2|))) (IF (|has| |#1| (-306)) (-15 -3928 ((-1256 |#2|) (-1256 |#2|))) |%noBranch|))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3931 (((-3 $ "failed")) NIL (|has| |#1| (-554)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1902 (((-1256 (-683 |#1|)) (-1256 $)) NIL) (((-1256 (-683 |#1|))) 24)) (-3655 (((-1256 $)) 51)) (-1800 (($) NIL T CONST)) (-2874 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) NIL (|has| |#1| (-554)))) (-2117 (((-3 $ "failed")) NIL (|has| |#1| (-554)))) (-4356 (((-683 |#1|) (-1256 $)) NIL) (((-683 |#1|)) NIL)) (-2422 ((|#1| $) NIL)) (-2966 (((-683 |#1|) $ (-1256 $)) NIL) (((-683 |#1|) $) NIL)) (-2545 (((-3 $ "failed") $) NIL (|has| |#1| (-554)))) (-3407 (((-1164 (-947 |#1|))) NIL (|has| |#1| (-362)))) (-1379 (($ $ (-916)) NIL)) (-2355 ((|#1| $) NIL)) (-3474 (((-1164 |#1|) $) NIL (|has| |#1| (-554)))) (-2819 ((|#1| (-1256 $)) NIL) ((|#1|) NIL)) (-2964 (((-1164 |#1|) $) NIL)) (-2380 (((-112)) 87)) (-4018 (($ (-1256 |#1|) (-1256 $)) NIL) (($ (-1256 |#1|)) NIL)) (-3668 (((-3 $ "failed") $) 14 (|has| |#1| (-554)))) (-2173 (((-916)) 52)) (-1321 (((-112)) NIL)) (-3650 (($ $ (-916)) NIL)) (-3813 (((-112)) NIL)) (-3375 (((-112)) NIL)) (-4258 (((-112)) 89)) (-1681 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) NIL (|has| |#1| (-554)))) (-3700 (((-3 $ "failed")) NIL (|has| |#1| (-554)))) (-3025 (((-683 |#1|) (-1256 $)) NIL) (((-683 |#1|)) NIL)) (-4153 ((|#1| $) NIL)) (-1671 (((-683 |#1|) $ (-1256 $)) NIL) (((-683 |#1|) $) NIL)) (-4238 (((-3 $ "failed") $) NIL (|has| |#1| (-554)))) (-2743 (((-1164 (-947 |#1|))) NIL (|has| |#1| (-362)))) (-2991 (($ $ (-916)) NIL)) (-1680 ((|#1| $) NIL)) (-2026 (((-1164 |#1|) $) NIL (|has| |#1| (-554)))) (-1305 ((|#1| (-1256 $)) NIL) ((|#1|) NIL)) (-2670 (((-1164 |#1|) $) NIL)) (-2090 (((-112)) 86)) (-2913 (((-1150) $) NIL)) (-2144 (((-112)) 93)) (-2580 (((-112)) 92)) (-2809 (((-112)) 94)) (-1709 (((-1112) $) NIL)) (-4323 (((-112)) 88)) (-2343 ((|#1| $ (-562)) 54)) (-3593 (((-1256 |#1|) $ (-1256 $)) 48) (((-683 |#1|) (-1256 $) (-1256 $)) NIL) (((-1256 |#1|) $) 28) (((-683 |#1|) (-1256 $)) NIL)) (-4208 (((-1256 |#1|) $) NIL) (($ (-1256 |#1|)) NIL)) (-4136 (((-639 (-947 |#1|)) (-1256 $)) NIL) (((-639 (-947 |#1|))) NIL)) (-1911 (($ $ $) NIL)) (-1396 (((-112)) 84)) (-4054 (((-857) $) 69) (($ (-1256 |#1|)) 22)) (-3928 (((-1256 $)) 45)) (-3553 (((-639 (-1256 |#1|))) NIL (|has| |#1| (-554)))) (-2436 (($ $ $ $) NIL)) (-2850 (((-112)) 82)) (-1360 (($ (-683 |#1|) $) 18)) (-3626 (($ $ $) NIL)) (-1981 (((-112)) 85)) (-3199 (((-112)) 83)) (-4114 (((-112)) 81)) (-2286 (($) NIL T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 76) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1134 |#2| |#1|) $) 19)))
-(((-44 |#1| |#2| |#3| |#4|) (-13 (-416 |#1|) (-642 (-1134 |#2| |#1|)) (-10 -8 (-15 -4054 ($ (-1256 |#1|))))) (-362) (-916) (-639 (-1168)) (-1256 (-683 |#1|))) (T -44))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-362)) (-14 *6 (-1256 (-683 *3))) (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))))))
-(-13 (-416 |#1|) (-642 (-1134 |#2| |#1|)) (-10 -8 (-15 -4054 ($ (-1256 |#1|)))))
-((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-2534 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-2359 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-3121 (($ $) NIL)) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-3052 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4403))) (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-2254 (($ $ (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL) (((-112) $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-3381 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4403))) (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845))))) (-1395 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-4336 (((-112) $ (-766)) NIL)) (-1512 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4403)))) (-3012 (($ $ $) 27 (|has| $ (-6 -4403)))) (-3950 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4403)))) (-2687 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 29 (|has| $ (-6 -4403)))) (-4200 ((|#2| $ |#1| |#2|) 45) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-1223 (-562)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ "last" (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4403))) (($ $ "rest" $) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ "first" (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ "value" (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) NIL (|has| $ (-6 -4403)))) (-3111 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL)) (-3556 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-2350 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-1472 (((-3 |#2| "failed") |#1| $) 37)) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-1434 (($ $ (-766)) NIL) (($ $) 24)) (-4354 (($ $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-4000 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-3 |#2| "failed") |#1| $) 47) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL) (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-1475 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4403)))) (-1420 ((|#2| $ |#1|) NIL) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562)) NIL)) (-3266 (((-112) $) NIL)) (-4264 (((-562) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL) (((-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))) (((-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562)) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-1720 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 18 (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402))) (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 18 (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) NIL)) (-4379 (((-112) $ $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-1458 (($ (-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-4197 ((|#1| $) NIL (|has| |#1| (-845))) (((-562) $) 32 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-2673 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-1610 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-1912 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402))) (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092)))) (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-3874 ((|#1| $) NIL (|has| |#1| (-845))) (((-562) $) 34 (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4403))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL)) (-3716 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-4007 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL)) (-3449 (((-112) $) NIL)) (-2913 (((-1150) $) 41 (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1504 (($ $ (-766)) NIL) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-1520 (((-639 |#1|) $) 20)) (-4265 (((-112) |#1| $) NIL)) (-3262 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-4300 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL) (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3297 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-2093 (((-639 |#1|) $) NIL) (((-639 (-562)) $) NIL)) (-1570 (((-112) |#1| $) NIL) (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845))) (($ $ (-766)) NIL) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 23)) (-3251 (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL) (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL)) (-2716 (($ $ |#2|) NIL (|has| $ (-6 -4403))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-2017 (((-112) $) NIL)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092)))) (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-2411 (((-639 |#2|) $) NIL) (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 17)) (-2974 (((-112) $) 16)) (-4307 (($) 13)) (-2343 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ (-562)) NIL) (($ $ (-1223 (-562))) NIL) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ "first") NIL) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $ "value") NIL)) (-2568 (((-562) $ $) NIL)) (-3564 (($) 12) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-2878 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-2424 (((-112) $) NIL)) (-2613 (($ $) NIL)) (-4327 (($ $) NIL (|has| $ (-6 -4403)))) (-2296 (((-766) $) NIL)) (-3913 (($ $) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-766) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-4142 (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL) (($ $ $) NIL)) (-2767 (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL) (($ (-639 $)) NIL) (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 25) (($ $ $) NIL)) (-4054 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-2906 (((-639 $) $) NIL)) (-4055 (((-112) $ $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-1932 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1515 (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") |#1| $) 43)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-1772 (((-112) $ $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-1731 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1785 (((-112) $ $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-1759 (((-112) $ $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-845)))) (-3492 (((-766) $) 22 (|has| $ (-6 -4402)))))
+((-3988 (((-766) |#2|) 65)) (-2921 (((-766) |#2|) 68)) (-3202 (((-639 |#2|)) 33)) (-2034 (((-766) |#2|) 67)) (-2503 (((-766) |#2|) 64)) (-1444 (((-766) |#2|) 66)) (-4212 (((-639 (-683 |#1|))) 60)) (-4213 (((-639 |#2|)) 55)) (-3630 (((-639 |#2|) |#2|) 43)) (-2361 (((-639 |#2|)) 57)) (-1577 (((-639 |#2|)) 56)) (-3909 (((-639 (-683 |#1|))) 48)) (-1815 (((-639 |#2|)) 54)) (-2148 (((-639 |#2|) |#2|) 42)) (-2890 (((-639 |#2|)) 50)) (-3886 (((-639 (-683 |#1|))) 61)) (-1316 (((-639 |#2|)) 59)) (-4291 (((-1256 |#2|) (-1256 |#2|)) 83 (|has| |#1| (-306)))))
+(((-43 |#1| |#2|) (-10 -7 (-15 -2034 ((-766) |#2|)) (-15 -2921 ((-766) |#2|)) (-15 -2503 ((-766) |#2|)) (-15 -3988 ((-766) |#2|)) (-15 -1444 ((-766) |#2|)) (-15 -2890 ((-639 |#2|))) (-15 -2148 ((-639 |#2|) |#2|)) (-15 -3630 ((-639 |#2|) |#2|)) (-15 -1815 ((-639 |#2|))) (-15 -4213 ((-639 |#2|))) (-15 -1577 ((-639 |#2|))) (-15 -2361 ((-639 |#2|))) (-15 -1316 ((-639 |#2|))) (-15 -3909 ((-639 (-683 |#1|)))) (-15 -4212 ((-639 (-683 |#1|)))) (-15 -3886 ((-639 (-683 |#1|)))) (-15 -3202 ((-639 |#2|))) (IF (|has| |#1| (-306)) (-15 -4291 ((-1256 |#2|) (-1256 |#2|))) |%noBranch|)) (-554) (-416 |#1|)) (T -43))
+((-4291 (*1 *2 *2) (-12 (-5 *2 (-1256 *4)) (-4 *4 (-416 *3)) (-4 *3 (-306)) (-4 *3 (-554)) (-5 *1 (-43 *3 *4)))) (-3202 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-3886 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 (-683 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-4212 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 (-683 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-3909 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 (-683 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-1316 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-2361 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-1577 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-4213 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-1815 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-3630 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))) (-2148 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))) (-2890 (*1 *2) (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-416 *3)))) (-1444 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))) (-3988 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))) (-2503 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))) (-2921 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))) (-2034 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3)) (-4 *3 (-416 *4)))))
+(-10 -7 (-15 -2034 ((-766) |#2|)) (-15 -2921 ((-766) |#2|)) (-15 -2503 ((-766) |#2|)) (-15 -3988 ((-766) |#2|)) (-15 -1444 ((-766) |#2|)) (-15 -2890 ((-639 |#2|))) (-15 -2148 ((-639 |#2|) |#2|)) (-15 -3630 ((-639 |#2|) |#2|)) (-15 -1815 ((-639 |#2|))) (-15 -4213 ((-639 |#2|))) (-15 -1577 ((-639 |#2|))) (-15 -2361 ((-639 |#2|))) (-15 -1316 ((-639 |#2|))) (-15 -3909 ((-639 (-683 |#1|)))) (-15 -4212 ((-639 (-683 |#1|)))) (-15 -3886 ((-639 (-683 |#1|)))) (-15 -3202 ((-639 |#2|))) (IF (|has| |#1| (-306)) (-15 -4291 ((-1256 |#2|) (-1256 |#2|))) |%noBranch|))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-4310 (((-3 $ "failed")) NIL (|has| |#1| (-554)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-2016 (((-1256 (-683 |#1|)) (-1256 $)) NIL) (((-1256 (-683 |#1|))) 24)) (-1540 (((-1256 $)) 51)) (-3329 (($) NIL T CONST)) (-1469 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) NIL (|has| |#1| (-554)))) (-2447 (((-3 $ "failed")) NIL (|has| |#1| (-554)))) (-3945 (((-683 |#1|) (-1256 $)) NIL) (((-683 |#1|)) NIL)) (-2452 ((|#1| $) NIL)) (-2995 (((-683 |#1|) $ (-1256 $)) NIL) (((-683 |#1|) $) NIL)) (-4276 (((-3 $ "failed") $) NIL (|has| |#1| (-554)))) (-3996 (((-1164 (-947 |#1|))) NIL (|has| |#1| (-362)))) (-2127 (($ $ (-916)) NIL)) (-2949 ((|#1| $) NIL)) (-3407 (((-1164 |#1|) $) NIL (|has| |#1| (-554)))) (-2200 ((|#1| (-1256 $)) NIL) ((|#1|) NIL)) (-2974 (((-1164 |#1|) $) NIL)) (-3178 (((-112)) 87)) (-3916 (($ (-1256 |#1|) (-1256 $)) NIL) (($ (-1256 |#1|)) NIL)) (-1694 (((-3 $ "failed") $) 14 (|has| |#1| (-554)))) (-2172 (((-916)) 52)) (-1832 (((-112)) NIL)) (-1492 (($ $ (-916)) NIL)) (-2531 (((-112)) NIL)) (-3671 (((-112)) NIL)) (-2394 (((-112)) 89)) (-3502 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) NIL (|has| |#1| (-554)))) (-3839 (((-3 $ "failed")) NIL (|has| |#1| (-554)))) (-3506 (((-683 |#1|) (-1256 $)) NIL) (((-683 |#1|)) NIL)) (-2664 ((|#1| $) NIL)) (-1583 (((-683 |#1|) $ (-1256 $)) NIL) (((-683 |#1|) $) NIL)) (-2217 (((-3 $ "failed") $) NIL (|has| |#1| (-554)))) (-2620 (((-1164 (-947 |#1|))) NIL (|has| |#1| (-362)))) (-3235 (($ $ (-916)) NIL)) (-3495 ((|#1| $) NIL)) (-3849 (((-1164 |#1|) $) NIL (|has| |#1| (-554)))) (-1636 ((|#1| (-1256 $)) NIL) ((|#1|) NIL)) (-3099 (((-1164 |#1|) $) NIL)) (-3302 (((-112)) 86)) (-3696 (((-1150) $) NIL)) (-2720 (((-112)) 93)) (-1579 (((-112)) 92)) (-2104 (((-112)) 94)) (-1709 (((-1112) $) NIL)) (-3626 (((-112)) 88)) (-2343 ((|#1| $ (-562)) 54)) (-2205 (((-1256 |#1|) $ (-1256 $)) 48) (((-683 |#1|) (-1256 $) (-1256 $)) NIL) (((-1256 |#1|) $) 28) (((-683 |#1|) (-1256 $)) NIL)) (-4208 (((-1256 |#1|) $) NIL) (($ (-1256 |#1|)) NIL)) (-2555 (((-639 (-947 |#1|)) (-1256 $)) NIL) (((-639 (-947 |#1|))) NIL)) (-2114 (($ $ $) NIL)) (-3901 (((-112)) 84)) (-4053 (((-857) $) 69) (($ (-1256 |#1|)) 22)) (-4291 (((-1256 $)) 45)) (-1823 (((-639 (-1256 |#1|))) NIL (|has| |#1| (-554)))) (-2584 (($ $ $ $) NIL)) (-4309 (((-112)) 82)) (-1360 (($ (-683 |#1|) $) 18)) (-4324 (($ $ $) NIL)) (-1517 (((-112)) 85)) (-2636 (((-112)) 83)) (-3488 (((-112)) 81)) (-2285 (($) NIL T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 76) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1134 |#2| |#1|) $) 19)))
+(((-44 |#1| |#2| |#3| |#4|) (-13 (-416 |#1|) (-642 (-1134 |#2| |#1|)) (-10 -8 (-15 -4053 ($ (-1256 |#1|))))) (-362) (-916) (-639 (-1168)) (-1256 (-683 |#1|))) (T -44))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-362)) (-14 *6 (-1256 (-683 *3))) (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))))))
+(-13 (-416 |#1|) (-642 (-1134 |#2| |#1|)) (-10 -8 (-15 -4053 ($ (-1256 |#1|)))))
+((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-2533 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-2358 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3120 (($ $) NIL)) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-3655 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4404))) (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1335 (($ $ (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL) (((-112) $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-3737 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4404))) (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845))))) (-1395 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-3735 (((-112) $ (-766)) NIL)) (-2677 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4404)))) (-3400 (($ $ $) 27 (|has| $ (-6 -4404)))) (-1393 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4404)))) (-3239 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 29 (|has| $ (-6 -4404)))) (-4200 ((|#2| $ |#1| |#2|) 45) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4404))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-1223 (-562)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4404))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ "last" (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4404))) (($ $ "rest" $) NIL (|has| $ (-6 -4404))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ "first" (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4404))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ "value" (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) NIL (|has| $ (-6 -4404)))) (-2968 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL)) (-3556 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-2349 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-1472 (((-3 |#2| "failed") |#1| $) 37)) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1434 (($ $ (-766)) NIL) (($ $) 24)) (-3923 (($ $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-3729 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-3 |#2| "failed") |#1| $) 47) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL) (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-1475 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4404))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4404)))) (-1420 ((|#2| $ |#1|) NIL) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562)) NIL)) (-2101 (((-112) $) NIL)) (-4265 (((-562) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL) (((-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))) (((-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562)) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-1720 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 18 (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403))) (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 18 (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) NIL)) (-4188 (((-112) $ $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-1458 (($ (-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1849 ((|#1| $) NIL (|has| |#1| (-845))) (((-562) $) 32 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-3124 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-4103 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-2123 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403))) (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092)))) (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-1929 ((|#1| $) NIL (|has| |#1| (-845))) (((-562) $) 34 (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4404))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4404))) (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL)) (-3716 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-4008 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL)) (-3179 (((-112) $) NIL)) (-3696 (((-1150) $) 41 (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1504 (($ $ (-766)) NIL) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-1521 (((-639 |#1|) $) 20)) (-4278 (((-112) |#1| $) NIL)) (-2078 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-1581 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL) (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3295 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3336 (((-639 |#1|) $) NIL) (((-639 (-562)) $) NIL)) (-1987 (((-112) |#1| $) NIL) (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845))) (($ $ (-766)) NIL) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 23)) (-1963 (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL) (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL)) (-3510 (($ $ |#2|) NIL (|has| $ (-6 -4404))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3745 (((-112) $) NIL)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092)))) (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-2366 (((-639 |#2|) $) NIL) (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 17)) (-3087 (((-112) $) 16)) (-1663 (($) 13)) (-2343 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ (-562)) NIL) (($ $ (-1223 (-562))) NIL) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ "first") NIL) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $ "value") NIL)) (-1423 (((-562) $ $) NIL)) (-1932 (($) 12) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-1527 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-2473 (((-112) $) NIL)) (-3734 (($ $) NIL)) (-3659 (($ $) NIL (|has| $ (-6 -4404)))) (-3595 (((-766) $) NIL)) (-2333 (($ $) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-766) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-2587 (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL) (($ $ $) NIL)) (-2767 (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL) (($ (-639 $)) NIL) (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 25) (($ $ $) NIL)) (-4053 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-3643 (((-639 $) $) NIL)) (-2985 (((-112) $ $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-4131 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-1515 (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") |#1| $) 43)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-1771 (((-112) $ $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-1733 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1785 (((-112) $ $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-1761 (((-112) $ $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-845)))) (-3492 (((-766) $) 22 (|has| $ (-6 -4403)))))
(((-45 |#1| |#2|) (-36 |#1| |#2|) (-1092) (-1092)) (T -45))
NIL
(-36 |#1| |#2|)
-((-3536 (((-112) $) 12)) (-4152 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-406 (-562)) $) 25) (($ $ (-406 (-562))) NIL)))
-(((-46 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -3536 ((-112) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|))) (-47 |#2| |#3|) (-1044) (-787)) (T -46))
+((-2833 (((-112) $) 12)) (-4152 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-406 (-562)) $) 25) (($ $ (-406 (-562))) NIL)))
+(((-46 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -2833 ((-112) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|))) (-47 |#2| |#3|) (-1044) (-787)) (T -46))
NIL
-(-10 -8 (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -3536 ((-112) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-2796 (($ $) 55 (|has| |#1| (-554)))) (-4370 (((-112) $) 57 (|has| |#1| (-554)))) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-1601 (($ $) 63)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-3536 (((-112) $) 65)) (-1378 (($ |#1| |#2|) 64)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-3598 ((|#2| $) 67)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554))) (($ |#1|) 50 (|has| |#1| (-171)))) (-3906 ((|#1| $ |#2|) 62)) (-2805 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 56 (|has| |#1| (-554)))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
+(-10 -8 (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -2833 ((-112) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-1965 (($ $) 55 (|has| |#1| (-554)))) (-4102 (((-112) $) 57 (|has| |#1| (-554)))) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1600 (($ $) 63)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-2833 (((-112) $) 65)) (-1377 (($ |#1| |#2|) 64)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-2250 ((|#2| $) 67)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554))) (($ |#1|) 50 (|has| |#1| (-171)))) (-2266 ((|#1| $ |#2|) 62)) (-2059 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 56 (|has| |#1| (-554)))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
(((-47 |#1| |#2|) (-139) (-1044) (-787)) (T -47))
-((-1573 (*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)))) (-1560 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)))) (-3598 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)))) (-3536 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-5 *2 (-112)))) (-1378 (*1 *1 *2 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)))) (-1601 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)))) (-3906 (*1 *2 *1 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)))) (-1859 (*1 *1 *1 *2) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)) (-4 *2 (-362)))))
-(-13 (-1044) (-111 |t#1| |t#1|) (-10 -8 (-15 -1573 (|t#1| $)) (-15 -1560 ($ $)) (-15 -3598 (|t#2| $)) (-15 -4152 ($ (-1 |t#1| |t#1|) $)) (-15 -3536 ((-112) $)) (-15 -1378 ($ |t#1| |t#2|)) (-15 -1601 ($ $)) (-15 -3906 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-362)) (-15 -1859 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-171)) (PROGN (-6 (-171)) (-6 (-38 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |t#1| (-554)) (-6 (-554)) |%noBranch|) (IF (|has| |t#1| (-38 (-406 (-562)))) (-6 (-38 (-406 (-562)))) |%noBranch|)))
+((-1573 (*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)))) (-1560 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)))) (-2250 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)))) (-2833 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-5 *2 (-112)))) (-1377 (*1 *1 *2 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)))) (-1600 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)))) (-2266 (*1 *2 *1 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)))) (-1859 (*1 *1 *1 *2) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)) (-4 *2 (-362)))))
+(-13 (-1044) (-111 |t#1| |t#1|) (-10 -8 (-15 -1573 (|t#1| $)) (-15 -1560 ($ $)) (-15 -2250 (|t#2| $)) (-15 -4152 ($ (-1 |t#1| |t#1|) $)) (-15 -2833 ((-112) $)) (-15 -1377 ($ |t#1| |t#2|)) (-15 -1600 ($ $)) (-15 -2266 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-362)) (-15 -1859 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-171)) (PROGN (-6 (-171)) (-6 (-38 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |t#1| (-554)) (-6 (-554)) |%noBranch|) (IF (|has| |t#1| (-38 (-406 (-562)))) (-6 (-38 (-406 (-562)))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) |has| |#1| (-38 (-406 (-562)))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) |has| |#1| (-554)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-406 (-562)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #0#) |has| |#1| (-38 (-406 (-562)))) ((-612 (-562)) . T) ((-612 |#1|) |has| |#1| (-171)) ((-612 $) |has| |#1| (-554)) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-289) |has| |#1| (-554)) ((-554) |has| |#1| (-554)) ((-642 #0#) |has| |#1| (-38 (-406 (-562)))) ((-642 |#1|) . T) ((-642 $) . T) ((-712 #0#) |has| |#1| (-38 (-406 (-562)))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) |has| |#1| (-554)) ((-721) . T) ((-1050 #0#) |has| |#1| (-38 (-406 (-562)))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1404 (((-639 $) (-1164 $) (-1168)) NIL) (((-639 $) (-1164 $)) NIL) (((-639 $) (-947 $)) NIL)) (-1821 (($ (-1164 $) (-1168)) NIL) (($ (-1164 $)) NIL) (($ (-947 $)) NIL)) (-1952 (((-112) $) 11)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-1495 (((-639 (-608 $)) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3165 (($ $ (-293 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-1643 (($ $) NIL)) (-2569 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-3646 (((-639 $) (-1164 $) (-1168)) NIL) (((-639 $) (-1164 $)) NIL) (((-639 $) (-947 $)) NIL)) (-1502 (($ (-1164 $) (-1168)) NIL) (($ (-1164 $)) NIL) (($ (-947 $)) NIL)) (-4048 (((-3 (-608 $) "failed") $) NIL) (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL)) (-3961 (((-608 $) $) NIL) (((-562) $) NIL) (((-406 (-562)) $) NIL)) (-1811 (($ $ $) NIL)) (-2406 (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1545 (-683 (-406 (-562)))) (|:| |vec| (-1256 (-406 (-562))))) (-683 $) (-1256 $)) NIL) (((-683 (-406 (-562))) (-683 $)) NIL)) (-1955 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-1383 (($ $) NIL) (($ (-639 $)) NIL)) (-3936 (((-639 (-114)) $) NIL)) (-2876 (((-114) (-114)) NIL)) (-1957 (((-112) $) 14)) (-3130 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-4065 (((-1117 (-562) (-608 $)) $) NIL)) (-1891 (($ $ (-562)) NIL)) (-2247 (((-1164 $) (-1164 $) (-608 $)) NIL) (((-1164 $) (-1164 $) (-639 (-608 $))) NIL) (($ $ (-608 $)) NIL) (($ $ (-639 (-608 $))) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1677 (((-1164 $) (-608 $)) NIL (|has| $ (-1044)))) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 $ $) (-608 $)) NIL)) (-4367 (((-3 (-608 $) "failed") $) NIL)) (-1564 (($ (-639 $)) NIL) (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1583 (((-639 (-608 $)) $) NIL)) (-4141 (($ (-114) $) NIL) (($ (-114) (-639 $)) NIL)) (-1776 (((-112) $ (-114)) NIL) (((-112) $ (-1168)) NIL)) (-1525 (($ $) NIL)) (-3060 (((-766) $) NIL)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ (-639 $)) NIL) (($ $ $) NIL)) (-4296 (((-112) $ $) NIL) (((-112) $ (-1168)) NIL)) (-1635 (((-417 $) $) NIL)) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3803 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-1433 (($ $ (-608 $) $) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-1168) (-1 $ (-639 $))) NIL) (($ $ (-1168) (-1 $ $)) NIL) (($ $ (-639 (-114)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-114) (-1 $ (-639 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-1577 (((-766) $) NIL)) (-2343 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-639 $)) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3790 (($ $) NIL) (($ $ $) NIL)) (-4029 (($ $ (-766)) NIL) (($ $) NIL)) (-4076 (((-1117 (-562) (-608 $)) $) NIL)) (-2096 (($ $) NIL (|has| $ (-1044)))) (-4208 (((-378) $) NIL) (((-224) $) NIL) (((-168 (-378)) $) NIL)) (-4054 (((-857) $) NIL) (($ (-608 $)) NIL) (($ (-406 (-562))) NIL) (($ $) NIL) (($ (-562)) NIL) (($ (-1117 (-562) (-608 $))) NIL)) (-2579 (((-766)) NIL)) (-2746 (($ $) NIL) (($ (-639 $)) NIL)) (-2803 (((-112) (-114)) NIL)) (-2922 (((-112) $ $) NIL)) (-2286 (($) 7 T CONST)) (-2294 (($) 12 T CONST)) (-3114 (($ $ (-766)) NIL) (($ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 16)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL)) (-1848 (($ $ $) 15) (($ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-406 (-562))) NIL) (($ $ (-562)) NIL) (($ $ (-766)) NIL) (($ $ (-916)) NIL)) (* (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL) (($ $ $) NIL) (($ (-562) $) NIL) (($ (-766) $) NIL) (($ (-916) $) NIL)))
-(((-48) (-13 (-301) (-27) (-1033 (-562)) (-1033 (-406 (-562))) (-635 (-562)) (-1017) (-635 (-406 (-562))) (-146) (-610 (-168 (-378))) (-232) (-10 -8 (-15 -4054 ($ (-1117 (-562) (-608 $)))) (-15 -4065 ((-1117 (-562) (-608 $)) $)) (-15 -4076 ((-1117 (-562) (-608 $)) $)) (-15 -1955 ($ $)) (-15 -2247 ((-1164 $) (-1164 $) (-608 $))) (-15 -2247 ((-1164 $) (-1164 $) (-639 (-608 $)))) (-15 -2247 ($ $ (-608 $))) (-15 -2247 ($ $ (-639 (-608 $))))))) (T -48))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1117 (-562) (-608 (-48)))) (-5 *1 (-48)))) (-4065 (*1 *2 *1) (-12 (-5 *2 (-1117 (-562) (-608 (-48)))) (-5 *1 (-48)))) (-4076 (*1 *2 *1) (-12 (-5 *2 (-1117 (-562) (-608 (-48)))) (-5 *1 (-48)))) (-1955 (*1 *1 *1) (-5 *1 (-48))) (-2247 (*1 *2 *2 *3) (-12 (-5 *2 (-1164 (-48))) (-5 *3 (-608 (-48))) (-5 *1 (-48)))) (-2247 (*1 *2 *2 *3) (-12 (-5 *2 (-1164 (-48))) (-5 *3 (-639 (-608 (-48)))) (-5 *1 (-48)))) (-2247 (*1 *1 *1 *2) (-12 (-5 *2 (-608 (-48))) (-5 *1 (-48)))) (-2247 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-608 (-48)))) (-5 *1 (-48)))))
-(-13 (-301) (-27) (-1033 (-562)) (-1033 (-406 (-562))) (-635 (-562)) (-1017) (-635 (-406 (-562))) (-146) (-610 (-168 (-378))) (-232) (-10 -8 (-15 -4054 ($ (-1117 (-562) (-608 $)))) (-15 -4065 ((-1117 (-562) (-608 $)) $)) (-15 -4076 ((-1117 (-562) (-608 $)) $)) (-15 -1955 ($ $)) (-15 -2247 ((-1164 $) (-1164 $) (-608 $))) (-15 -2247 ((-1164 $) (-1164 $) (-639 (-608 $)))) (-15 -2247 ($ $ (-608 $))) (-15 -2247 ($ $ (-639 (-608 $))))))
-((-4041 (((-112) $ $) NIL)) (-1913 (((-639 (-1168)) $) 17)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 7)) (-3265 (((-1173) $) 18)) (-1731 (((-112) $ $) NIL)))
-(((-49) (-13 (-1092) (-10 -8 (-15 -1913 ((-639 (-1168)) $)) (-15 -3265 ((-1173) $))))) (T -49))
-((-1913 (*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-49)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1173)) (-5 *1 (-49)))))
-(-13 (-1092) (-10 -8 (-15 -1913 ((-639 (-1168)) $)) (-15 -3265 ((-1173) $))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 61)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-2585 (((-112) $) 20)) (-4048 (((-3 |#1| "failed") $) 23)) (-3961 ((|#1| $) 24)) (-1601 (($ $) 28)) (-3668 (((-3 $ "failed") $) NIL)) (-1957 (((-112) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1573 ((|#1| $) 21)) (-2765 (($ $) 50)) (-2913 (((-1150) $) NIL)) (-3083 (((-112) $) 30)) (-1709 (((-1112) $) NIL)) (-3148 (($ (-766)) 48)) (-3430 (($ (-639 (-562))) 49)) (-3598 (((-766) $) 31)) (-4054 (((-857) $) 64) (($ (-562)) 45) (($ |#1|) 43)) (-3906 ((|#1| $ $) 19)) (-2579 (((-766)) 47)) (-2286 (($) 32 T CONST)) (-2294 (($) 14 T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 40)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 41) (($ |#1| $) 35)))
-(((-50 |#1| |#2|) (-13 (-616 |#1|) (-1033 |#1|) (-10 -8 (-15 -1573 (|#1| $)) (-15 -2765 ($ $)) (-15 -1601 ($ $)) (-15 -3906 (|#1| $ $)) (-15 -3148 ($ (-766))) (-15 -3430 ($ (-639 (-562)))) (-15 -3083 ((-112) $)) (-15 -2585 ((-112) $)) (-15 -3598 ((-766) $)) (-15 -4152 ($ (-1 |#1| |#1|) $)))) (-1044) (-639 (-1168))) (T -50))
-((-1573 (*1 *2 *1) (-12 (-4 *2 (-1044)) (-5 *1 (-50 *2 *3)) (-14 *3 (-639 (-1168))))) (-2765 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1044)) (-14 *3 (-639 (-1168))))) (-1601 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1044)) (-14 *3 (-639 (-1168))))) (-3906 (*1 *2 *1 *1) (-12 (-4 *2 (-1044)) (-5 *1 (-50 *2 *3)) (-14 *3 (-639 (-1168))))) (-3148 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044)) (-14 *4 (-639 (-1168))))) (-3430 (*1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044)) (-14 *4 (-639 (-1168))))) (-3083 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044)) (-14 *4 (-639 (-1168))))) (-2585 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044)) (-14 *4 (-639 (-1168))))) (-3598 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044)) (-14 *4 (-639 (-1168))))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-50 *3 *4)) (-14 *4 (-639 (-1168))))))
-(-13 (-616 |#1|) (-1033 |#1|) (-10 -8 (-15 -1573 (|#1| $)) (-15 -2765 ($ $)) (-15 -1601 ($ $)) (-15 -3906 (|#1| $ $)) (-15 -3148 ($ (-766))) (-15 -3430 ($ (-639 (-562)))) (-15 -3083 ((-112) $)) (-15 -2585 ((-112) $)) (-15 -3598 ((-766) $)) (-15 -4152 ($ (-1 |#1| |#1|) $))))
-((-2585 (((-112) (-52)) 13)) (-4048 (((-3 |#1| "failed") (-52)) 21)) (-3961 ((|#1| (-52)) 22)) (-4054 (((-52) |#1|) 18)))
-(((-51 |#1|) (-10 -7 (-15 -4054 ((-52) |#1|)) (-15 -4048 ((-3 |#1| "failed") (-52))) (-15 -2585 ((-112) (-52))) (-15 -3961 (|#1| (-52)))) (-1207)) (T -51))
-((-3961 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1207)))) (-2585 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1207)))) (-4048 (*1 *2 *3) (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1207)))) (-4054 (*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1207)))))
-(-10 -7 (-15 -4054 ((-52) |#1|)) (-15 -4048 ((-3 |#1| "failed") (-52))) (-15 -2585 ((-112) (-52))) (-15 -3961 (|#1| (-52))))
-((-4041 (((-112) $ $) NIL)) (-1944 (((-1150) (-112)) 25)) (-3746 (((-857) $) 24)) (-1465 (((-769) $) 12)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2460 (((-857) $) 16)) (-3509 (((-1096) $) 14)) (-4054 (((-857) $) 32)) (-3466 (($ (-1096) (-769)) 33)) (-1731 (((-112) $ $) 18)))
-(((-52) (-13 (-1092) (-10 -8 (-15 -3466 ($ (-1096) (-769))) (-15 -2460 ((-857) $)) (-15 -3746 ((-857) $)) (-15 -3509 ((-1096) $)) (-15 -1465 ((-769) $)) (-15 -1944 ((-1150) (-112)))))) (T -52))
-((-3466 (*1 *1 *2 *3) (-12 (-5 *2 (-1096)) (-5 *3 (-769)) (-5 *1 (-52)))) (-2460 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-52)))) (-3746 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-52)))) (-3509 (*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-52)))) (-1465 (*1 *2 *1) (-12 (-5 *2 (-769)) (-5 *1 (-52)))) (-1944 (*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1150)) (-5 *1 (-52)))))
-(-13 (-1092) (-10 -8 (-15 -3466 ($ (-1096) (-769))) (-15 -2460 ((-857) $)) (-15 -3746 ((-857) $)) (-15 -3509 ((-1096) $)) (-15 -1465 ((-769) $)) (-15 -1944 ((-1150) (-112)))))
+((-4041 (((-112) $ $) NIL)) (-1763 (((-639 $) (-1164 $) (-1168)) NIL) (((-639 $) (-1164 $)) NIL) (((-639 $) (-947 $)) NIL)) (-2391 (($ (-1164 $) (-1168)) NIL) (($ (-1164 $)) NIL) (($ (-947 $)) NIL)) (-4325 (((-112) $) 11)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-1501 (((-639 (-608 $)) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3164 (($ $ (-293 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1644 (($ $) NIL)) (-1436 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-1431 (((-639 $) (-1164 $) (-1168)) NIL) (((-639 $) (-1164 $)) NIL) (((-639 $) (-947 $)) NIL)) (-2608 (($ (-1164 $) (-1168)) NIL) (($ (-1164 $)) NIL) (($ (-947 $)) NIL)) (-4048 (((-3 (-608 $) "failed") $) NIL) (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL)) (-3960 (((-608 $) $) NIL) (((-562) $) NIL) (((-406 (-562)) $) NIL)) (-1810 (($ $ $) NIL)) (-3449 (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1767 (-683 (-406 (-562)))) (|:| |vec| (-1256 (-406 (-562))))) (-683 $) (-1256 $)) NIL) (((-683 (-406 (-562))) (-683 $)) NIL)) (-1954 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2229 (($ $) NIL) (($ (-639 $)) NIL)) (-4364 (((-639 (-114)) $) NIL)) (-1502 (((-114) (-114)) NIL)) (-4367 (((-112) $) 14)) (-3152 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-4063 (((-1117 (-562) (-608 $)) $) NIL)) (-1895 (($ $ (-562)) NIL)) (-4363 (((-1164 $) (-1164 $) (-608 $)) NIL) (((-1164 $) (-1164 $) (-639 (-608 $))) NIL) (($ $ (-608 $)) NIL) (($ $ (-639 (-608 $))) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3476 (((-1164 $) (-608 $)) NIL (|has| $ (-1044)))) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 $ $) (-608 $)) NIL)) (-4068 (((-3 (-608 $) "failed") $) NIL)) (-1564 (($ (-639 $)) NIL) (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1582 (((-639 (-608 $)) $) NIL)) (-4141 (($ (-114) $) NIL) (($ (-114) (-639 $)) NIL)) (-3115 (((-112) $ (-114)) NIL) (((-112) $ (-1168)) NIL)) (-1525 (($ $) NIL)) (-3059 (((-766) $) NIL)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ (-639 $)) NIL) (($ $ $) NIL)) (-1533 (((-112) $ $) NIL) (((-112) $ (-1168)) NIL)) (-1635 (((-417 $) $) NIL)) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2438 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-1433 (($ $ (-608 $) $) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-1168) (-1 $ (-639 $))) NIL) (($ $ (-1168) (-1 $ $)) NIL) (($ $ (-639 (-114)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-114) (-1 $ (-639 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-2044 (((-766) $) NIL)) (-2343 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-639 $)) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3461 (($ $) NIL) (($ $ $) NIL)) (-4029 (($ $ (-766)) NIL) (($ $) NIL)) (-4079 (((-1117 (-562) (-608 $)) $) NIL)) (-3371 (($ $) NIL (|has| $ (-1044)))) (-4208 (((-378) $) NIL) (((-224) $) NIL) (((-168 (-378)) $) NIL)) (-4053 (((-857) $) NIL) (($ (-608 $)) NIL) (($ (-406 (-562))) NIL) (($ $) NIL) (($ (-562)) NIL) (($ (-1117 (-562) (-608 $))) NIL)) (-1568 (((-766)) NIL)) (-2745 (($ $) NIL) (($ (-639 $)) NIL)) (-2036 (((-112) (-114)) NIL)) (-3799 (((-112) $ $) NIL)) (-2285 (($) 7 T CONST)) (-2294 (($) 12 T CONST)) (-3113 (($ $ (-766)) NIL) (($ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 16)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL)) (-1847 (($ $ $) 15) (($ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-406 (-562))) NIL) (($ $ (-562)) NIL) (($ $ (-766)) NIL) (($ $ (-916)) NIL)) (* (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL) (($ $ $) NIL) (($ (-562) $) NIL) (($ (-766) $) NIL) (($ (-916) $) NIL)))
+(((-48) (-13 (-301) (-27) (-1033 (-562)) (-1033 (-406 (-562))) (-635 (-562)) (-1017) (-635 (-406 (-562))) (-146) (-610 (-168 (-378))) (-232) (-10 -8 (-15 -4053 ($ (-1117 (-562) (-608 $)))) (-15 -4063 ((-1117 (-562) (-608 $)) $)) (-15 -4079 ((-1117 (-562) (-608 $)) $)) (-15 -1954 ($ $)) (-15 -4363 ((-1164 $) (-1164 $) (-608 $))) (-15 -4363 ((-1164 $) (-1164 $) (-639 (-608 $)))) (-15 -4363 ($ $ (-608 $))) (-15 -4363 ($ $ (-639 (-608 $))))))) (T -48))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1117 (-562) (-608 (-48)))) (-5 *1 (-48)))) (-4063 (*1 *2 *1) (-12 (-5 *2 (-1117 (-562) (-608 (-48)))) (-5 *1 (-48)))) (-4079 (*1 *2 *1) (-12 (-5 *2 (-1117 (-562) (-608 (-48)))) (-5 *1 (-48)))) (-1954 (*1 *1 *1) (-5 *1 (-48))) (-4363 (*1 *2 *2 *3) (-12 (-5 *2 (-1164 (-48))) (-5 *3 (-608 (-48))) (-5 *1 (-48)))) (-4363 (*1 *2 *2 *3) (-12 (-5 *2 (-1164 (-48))) (-5 *3 (-639 (-608 (-48)))) (-5 *1 (-48)))) (-4363 (*1 *1 *1 *2) (-12 (-5 *2 (-608 (-48))) (-5 *1 (-48)))) (-4363 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-608 (-48)))) (-5 *1 (-48)))))
+(-13 (-301) (-27) (-1033 (-562)) (-1033 (-406 (-562))) (-635 (-562)) (-1017) (-635 (-406 (-562))) (-146) (-610 (-168 (-378))) (-232) (-10 -8 (-15 -4053 ($ (-1117 (-562) (-608 $)))) (-15 -4063 ((-1117 (-562) (-608 $)) $)) (-15 -4079 ((-1117 (-562) (-608 $)) $)) (-15 -1954 ($ $)) (-15 -4363 ((-1164 $) (-1164 $) (-608 $))) (-15 -4363 ((-1164 $) (-1164 $) (-639 (-608 $)))) (-15 -4363 ($ $ (-608 $))) (-15 -4363 ($ $ (-639 (-608 $))))))
+((-4041 (((-112) $ $) NIL)) (-1917 (((-639 (-1168)) $) 17)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 7)) (-3265 (((-1173) $) 18)) (-1733 (((-112) $ $) NIL)))
+(((-49) (-13 (-1092) (-10 -8 (-15 -1917 ((-639 (-1168)) $)) (-15 -3265 ((-1173) $))))) (T -49))
+((-1917 (*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-49)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1173)) (-5 *1 (-49)))))
+(-13 (-1092) (-10 -8 (-15 -1917 ((-639 (-1168)) $)) (-15 -3265 ((-1173) $))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 61)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1638 (((-112) $) 20)) (-4048 (((-3 |#1| "failed") $) 23)) (-3960 ((|#1| $) 24)) (-1600 (($ $) 28)) (-1694 (((-3 $ "failed") $) NIL)) (-4367 (((-112) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1573 ((|#1| $) 21)) (-2820 (($ $) 50)) (-3696 (((-1150) $) NIL)) (-3941 (((-112) $) 30)) (-1709 (((-1112) $) NIL)) (-3147 (($ (-766)) 48)) (-3430 (($ (-639 (-562))) 49)) (-2250 (((-766) $) 31)) (-4053 (((-857) $) 64) (($ (-562)) 45) (($ |#1|) 43)) (-2266 ((|#1| $ $) 19)) (-1568 (((-766)) 47)) (-2285 (($) 32 T CONST)) (-2294 (($) 14 T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 40)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 41) (($ |#1| $) 35)))
+(((-50 |#1| |#2|) (-13 (-616 |#1|) (-1033 |#1|) (-10 -8 (-15 -1573 (|#1| $)) (-15 -2820 ($ $)) (-15 -1600 ($ $)) (-15 -2266 (|#1| $ $)) (-15 -3147 ($ (-766))) (-15 -3430 ($ (-639 (-562)))) (-15 -3941 ((-112) $)) (-15 -1638 ((-112) $)) (-15 -2250 ((-766) $)) (-15 -4152 ($ (-1 |#1| |#1|) $)))) (-1044) (-639 (-1168))) (T -50))
+((-1573 (*1 *2 *1) (-12 (-4 *2 (-1044)) (-5 *1 (-50 *2 *3)) (-14 *3 (-639 (-1168))))) (-2820 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1044)) (-14 *3 (-639 (-1168))))) (-1600 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1044)) (-14 *3 (-639 (-1168))))) (-2266 (*1 *2 *1 *1) (-12 (-4 *2 (-1044)) (-5 *1 (-50 *2 *3)) (-14 *3 (-639 (-1168))))) (-3147 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044)) (-14 *4 (-639 (-1168))))) (-3430 (*1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044)) (-14 *4 (-639 (-1168))))) (-3941 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044)) (-14 *4 (-639 (-1168))))) (-1638 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044)) (-14 *4 (-639 (-1168))))) (-2250 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044)) (-14 *4 (-639 (-1168))))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-50 *3 *4)) (-14 *4 (-639 (-1168))))))
+(-13 (-616 |#1|) (-1033 |#1|) (-10 -8 (-15 -1573 (|#1| $)) (-15 -2820 ($ $)) (-15 -1600 ($ $)) (-15 -2266 (|#1| $ $)) (-15 -3147 ($ (-766))) (-15 -3430 ($ (-639 (-562)))) (-15 -3941 ((-112) $)) (-15 -1638 ((-112) $)) (-15 -2250 ((-766) $)) (-15 -4152 ($ (-1 |#1| |#1|) $))))
+((-1638 (((-112) (-52)) 13)) (-4048 (((-3 |#1| "failed") (-52)) 21)) (-3960 ((|#1| (-52)) 22)) (-4053 (((-52) |#1|) 18)))
+(((-51 |#1|) (-10 -7 (-15 -4053 ((-52) |#1|)) (-15 -4048 ((-3 |#1| "failed") (-52))) (-15 -1638 ((-112) (-52))) (-15 -3960 (|#1| (-52)))) (-1207)) (T -51))
+((-3960 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1207)))) (-1638 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1207)))) (-4048 (*1 *2 *3) (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1207)))) (-4053 (*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1207)))))
+(-10 -7 (-15 -4053 ((-52) |#1|)) (-15 -4048 ((-3 |#1| "failed") (-52))) (-15 -1638 ((-112) (-52))) (-15 -3960 (|#1| (-52))))
+((-4041 (((-112) $ $) NIL)) (-4245 (((-1150) (-112)) 25)) (-3057 (((-857) $) 24)) (-1465 (((-769) $) 12)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2786 (((-857) $) 16)) (-3509 (((-1096) $) 14)) (-4053 (((-857) $) 32)) (-3466 (($ (-1096) (-769)) 33)) (-1733 (((-112) $ $) 18)))
+(((-52) (-13 (-1092) (-10 -8 (-15 -3466 ($ (-1096) (-769))) (-15 -2786 ((-857) $)) (-15 -3057 ((-857) $)) (-15 -3509 ((-1096) $)) (-15 -1465 ((-769) $)) (-15 -4245 ((-1150) (-112)))))) (T -52))
+((-3466 (*1 *1 *2 *3) (-12 (-5 *2 (-1096)) (-5 *3 (-769)) (-5 *1 (-52)))) (-2786 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-52)))) (-3057 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-52)))) (-3509 (*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-52)))) (-1465 (*1 *2 *1) (-12 (-5 *2 (-769)) (-5 *1 (-52)))) (-4245 (*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1150)) (-5 *1 (-52)))))
+(-13 (-1092) (-10 -8 (-15 -3466 ($ (-1096) (-769))) (-15 -2786 ((-857) $)) (-15 -3057 ((-857) $)) (-15 -3509 ((-1096) $)) (-15 -1465 ((-769) $)) (-15 -4245 ((-1150) (-112)))))
((-1360 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 16)))
(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -1360 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-1044) (-642 |#1|) (-847 |#1|)) (T -53))
((-1360 (*1 *2 *3 *4 *2) (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-642 *5)) (-4 *5 (-1044)) (-5 *1 (-53 *5 *2 *3)) (-4 *3 (-847 *5)))))
(-10 -7 (-15 -1360 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
-((-3178 ((|#3| |#3| (-639 (-1168))) 35)) (-4233 ((|#3| (-639 (-1068 |#1| |#2| |#3|)) |#3| (-916)) 22) ((|#3| (-639 (-1068 |#1| |#2| |#3|)) |#3|) 20)))
-(((-54 |#1| |#2| |#3|) (-10 -7 (-15 -4233 (|#3| (-639 (-1068 |#1| |#2| |#3|)) |#3|)) (-15 -4233 (|#3| (-639 (-1068 |#1| |#2| |#3|)) |#3| (-916))) (-15 -3178 (|#3| |#3| (-639 (-1168))))) (-1092) (-13 (-1044) (-881 |#1|) (-845) (-610 (-887 |#1|))) (-13 (-429 |#2|) (-881 |#1|) (-610 (-887 |#1|)))) (T -54))
-((-3178 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-1168))) (-4 *4 (-1092)) (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4)))) (-5 *1 (-54 *4 *5 *2)) (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))))) (-4233 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-639 (-1068 *5 *6 *2))) (-5 *4 (-916)) (-4 *5 (-1092)) (-4 *6 (-13 (-1044) (-881 *5) (-845) (-610 (-887 *5)))) (-4 *2 (-13 (-429 *6) (-881 *5) (-610 (-887 *5)))) (-5 *1 (-54 *5 *6 *2)))) (-4233 (*1 *2 *3 *2) (-12 (-5 *3 (-639 (-1068 *4 *5 *2))) (-4 *4 (-1092)) (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4)))) (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))) (-5 *1 (-54 *4 *5 *2)))))
-(-10 -7 (-15 -4233 (|#3| (-639 (-1068 |#1| |#2| |#3|)) |#3|)) (-15 -4233 (|#3| (-639 (-1068 |#1| |#2| |#3|)) |#3| (-916))) (-15 -3178 (|#3| |#3| (-639 (-1168)))))
-((-4041 (((-112) $ $) NIL)) (-4048 (((-3 (-766) "failed") $) 22)) (-3961 (((-766) $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) 9)) (-4054 (((-857) $) 16) (($ (-766)) 20)) (-2204 (($) 7 T CONST)) (-1731 (((-112) $ $) 11)))
-(((-55) (-13 (-1092) (-1033 (-766)) (-10 -8 (-15 -2204 ($) -1497)))) (T -55))
-((-2204 (*1 *1) (-5 *1 (-55))))
-(-13 (-1092) (-1033 (-766)) (-10 -8 (-15 -2204 ($) -1497)))
-((-4336 (((-112) $ (-766)) 23)) (-1928 (($ $ (-562) |#3|) 47)) (-3003 (($ $ (-562) |#4|) 51)) (-3796 ((|#3| $ (-562)) 60)) (-1720 (((-639 |#2|) $) 30)) (-3292 (((-112) $ (-766)) 25)) (-1669 (((-112) |#2| $) 55)) (-1490 (($ (-1 |#2| |#2|) $) 38)) (-4152 (($ (-1 |#2| |#2|) $) 37) (($ (-1 |#2| |#2| |#2|) $ $) 41) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 43)) (-3289 (((-112) $ (-766)) 24)) (-2716 (($ $ |#2|) 35)) (-1763 (((-112) (-1 (-112) |#2|) $) 19)) (-2343 ((|#2| $ (-562) (-562)) NIL) ((|#2| $ (-562) (-562) |#2|) 27)) (-1723 (((-766) (-1 (-112) |#2|) $) 28) (((-766) |#2| $) 57)) (-4220 (($ $) 34)) (-2211 ((|#4| $ (-562)) 63)) (-4054 (((-857) $) 69)) (-1744 (((-112) (-1 (-112) |#2|) $) 18)) (-1731 (((-112) $ $) 54)) (-3492 (((-766) $) 26)))
-(((-56 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4054 ((-857) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1490 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3003 (|#1| |#1| (-562) |#4|)) (-15 -1928 (|#1| |#1| (-562) |#3|)) (-15 -1720 ((-639 |#2|) |#1|)) (-15 -2211 (|#4| |#1| (-562))) (-15 -3796 (|#3| |#1| (-562))) (-15 -2343 (|#2| |#1| (-562) (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) (-562))) (-15 -2716 (|#1| |#1| |#2|)) (-15 -1731 ((-112) |#1| |#1|)) (-15 -1669 ((-112) |#2| |#1|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -1763 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1744 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -4336 ((-112) |#1| (-766))) (-15 -3292 ((-112) |#1| (-766))) (-15 -3289 ((-112) |#1| (-766))) (-15 -4220 (|#1| |#1|))) (-57 |#2| |#3| |#4|) (-1207) (-372 |#2|) (-372 |#2|)) (T -56))
-NIL
-(-10 -8 (-15 -4054 ((-857) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1490 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3003 (|#1| |#1| (-562) |#4|)) (-15 -1928 (|#1| |#1| (-562) |#3|)) (-15 -1720 ((-639 |#2|) |#1|)) (-15 -2211 (|#4| |#1| (-562))) (-15 -3796 (|#3| |#1| (-562))) (-15 -2343 (|#2| |#1| (-562) (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) (-562))) (-15 -2716 (|#1| |#1| |#2|)) (-15 -1731 ((-112) |#1| |#1|)) (-15 -1669 ((-112) |#2| |#1|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -1763 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1744 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -4336 ((-112) |#1| (-766))) (-15 -3292 ((-112) |#1| (-766))) (-15 -3289 ((-112) |#1| (-766))) (-15 -4220 (|#1| |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) (-562) |#1|) 44)) (-1928 (($ $ (-562) |#2|) 42)) (-3003 (($ $ (-562) |#3|) 41)) (-1800 (($) 7 T CONST)) (-3796 ((|#2| $ (-562)) 46)) (-1505 ((|#1| $ (-562) (-562) |#1|) 43)) (-1420 ((|#1| $ (-562) (-562)) 48)) (-1720 (((-639 |#1|) $) 30)) (-2699 (((-766) $) 51)) (-1458 (($ (-766) (-766) |#1|) 57)) (-2709 (((-766) $) 50)) (-3292 (((-112) $ (-766)) 9)) (-2783 (((-562) $) 55)) (-4217 (((-562) $) 53)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4088 (((-562) $) 54)) (-2453 (((-562) $) 52)) (-1490 (($ (-1 |#1| |#1|) $) 34)) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-2716 (($ $ |#1|) 56)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ (-562) (-562)) 49) ((|#1| $ (-562) (-562) |#1|) 47)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-2211 ((|#3| $ (-562)) 45)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-2446 ((|#3| |#3| (-639 (-1168))) 35)) (-2176 ((|#3| (-639 (-1068 |#1| |#2| |#3|)) |#3| (-916)) 22) ((|#3| (-639 (-1068 |#1| |#2| |#3|)) |#3|) 20)))
+(((-54 |#1| |#2| |#3|) (-10 -7 (-15 -2176 (|#3| (-639 (-1068 |#1| |#2| |#3|)) |#3|)) (-15 -2176 (|#3| (-639 (-1068 |#1| |#2| |#3|)) |#3| (-916))) (-15 -2446 (|#3| |#3| (-639 (-1168))))) (-1092) (-13 (-1044) (-881 |#1|) (-845) (-610 (-887 |#1|))) (-13 (-429 |#2|) (-881 |#1|) (-610 (-887 |#1|)))) (T -54))
+((-2446 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-1168))) (-4 *4 (-1092)) (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4)))) (-5 *1 (-54 *4 *5 *2)) (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))))) (-2176 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-639 (-1068 *5 *6 *2))) (-5 *4 (-916)) (-4 *5 (-1092)) (-4 *6 (-13 (-1044) (-881 *5) (-845) (-610 (-887 *5)))) (-4 *2 (-13 (-429 *6) (-881 *5) (-610 (-887 *5)))) (-5 *1 (-54 *5 *6 *2)))) (-2176 (*1 *2 *3 *2) (-12 (-5 *3 (-639 (-1068 *4 *5 *2))) (-4 *4 (-1092)) (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4)))) (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))) (-5 *1 (-54 *4 *5 *2)))))
+(-10 -7 (-15 -2176 (|#3| (-639 (-1068 |#1| |#2| |#3|)) |#3|)) (-15 -2176 (|#3| (-639 (-1068 |#1| |#2| |#3|)) |#3| (-916))) (-15 -2446 (|#3| |#3| (-639 (-1168)))))
+((-4041 (((-112) $ $) NIL)) (-4048 (((-3 (-766) "failed") $) 22)) (-3960 (((-766) $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) 9)) (-4053 (((-857) $) 16) (($ (-766)) 20)) (-2139 (($) 7 T CONST)) (-1733 (((-112) $ $) 11)))
+(((-55) (-13 (-1092) (-1033 (-766)) (-10 -8 (-15 -2139 ($) -1497)))) (T -55))
+((-2139 (*1 *1) (-5 *1 (-55))))
+(-13 (-1092) (-1033 (-766)) (-10 -8 (-15 -2139 ($) -1497)))
+((-3735 (((-112) $ (-766)) 23)) (-2267 (($ $ (-562) |#3|) 47)) (-3320 (($ $ (-562) |#4|) 51)) (-3511 ((|#3| $ (-562)) 60)) (-1720 (((-639 |#2|) $) 30)) (-4172 (((-112) $ (-766)) 25)) (-1572 (((-112) |#2| $) 55)) (-1491 (($ (-1 |#2| |#2|) $) 38)) (-4152 (($ (-1 |#2| |#2|) $) 37) (($ (-1 |#2| |#2| |#2|) $ $) 41) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 43)) (-4147 (((-112) $ (-766)) 24)) (-3510 (($ $ |#2|) 35)) (-3008 (((-112) (-1 (-112) |#2|) $) 19)) (-2343 ((|#2| $ (-562) (-562)) NIL) ((|#2| $ (-562) (-562) |#2|) 27)) (-1723 (((-766) (-1 (-112) |#2|) $) 28) (((-766) |#2| $) 57)) (-4220 (($ $) 34)) (-2208 ((|#4| $ (-562)) 63)) (-4053 (((-857) $) 69)) (-2879 (((-112) (-1 (-112) |#2|) $) 18)) (-1733 (((-112) $ $) 54)) (-3492 (((-766) $) 26)))
+(((-56 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4053 ((-857) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1491 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3320 (|#1| |#1| (-562) |#4|)) (-15 -2267 (|#1| |#1| (-562) |#3|)) (-15 -1720 ((-639 |#2|) |#1|)) (-15 -2208 (|#4| |#1| (-562))) (-15 -3511 (|#3| |#1| (-562))) (-15 -2343 (|#2| |#1| (-562) (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) (-562))) (-15 -3510 (|#1| |#1| |#2|)) (-15 -1733 ((-112) |#1| |#1|)) (-15 -1572 ((-112) |#2| |#1|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -3008 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2879 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -3735 ((-112) |#1| (-766))) (-15 -4172 ((-112) |#1| (-766))) (-15 -4147 ((-112) |#1| (-766))) (-15 -4220 (|#1| |#1|))) (-57 |#2| |#3| |#4|) (-1207) (-372 |#2|) (-372 |#2|)) (T -56))
+NIL
+(-10 -8 (-15 -4053 ((-857) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1491 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3320 (|#1| |#1| (-562) |#4|)) (-15 -2267 (|#1| |#1| (-562) |#3|)) (-15 -1720 ((-639 |#2|) |#1|)) (-15 -2208 (|#4| |#1| (-562))) (-15 -3511 (|#3| |#1| (-562))) (-15 -2343 (|#2| |#1| (-562) (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) (-562))) (-15 -3510 (|#1| |#1| |#2|)) (-15 -1733 ((-112) |#1| |#1|)) (-15 -1572 ((-112) |#2| |#1|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -3008 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2879 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -3735 ((-112) |#1| (-766))) (-15 -4172 ((-112) |#1| (-766))) (-15 -4147 ((-112) |#1| (-766))) (-15 -4220 (|#1| |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) (-562) |#1|) 44)) (-2267 (($ $ (-562) |#2|) 42)) (-3320 (($ $ (-562) |#3|) 41)) (-3329 (($) 7 T CONST)) (-3511 ((|#2| $ (-562)) 46)) (-1507 ((|#1| $ (-562) (-562) |#1|) 43)) (-1420 ((|#1| $ (-562) (-562)) 48)) (-1720 (((-639 |#1|) $) 30)) (-2698 (((-766) $) 51)) (-1458 (($ (-766) (-766) |#1|) 57)) (-2708 (((-766) $) 50)) (-4172 (((-112) $ (-766)) 9)) (-1808 (((-562) $) 55)) (-2028 (((-562) $) 53)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-3269 (((-562) $) 54)) (-2727 (((-562) $) 52)) (-1491 (($ (-1 |#1| |#1|) $) 34)) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3510 (($ $ |#1|) 56)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ (-562) (-562)) 49) ((|#1| $ (-562) (-562) |#1|) 47)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-2208 ((|#3| $ (-562)) 45)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-57 |#1| |#2| |#3|) (-139) (-1207) (-372 |t#1|) (-372 |t#1|)) (T -57))
-((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-1458 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-766)) (-4 *3 (-1207)) (-4 *1 (-57 *3 *4 *5)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-2716 (*1 *1 *1 *2) (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1207)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-2783 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-562)))) (-4088 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-562)))) (-4217 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-562)))) (-2453 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-562)))) (-2699 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-766)))) (-2709 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-766)))) (-2343 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-1207)))) (-1420 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-1207)))) (-2343 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1207)) (-4 *4 (-372 *2)) (-4 *5 (-372 *2)))) (-3796 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1207)) (-4 *5 (-372 *4)) (-4 *2 (-372 *4)))) (-2211 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1207)) (-4 *5 (-372 *4)) (-4 *2 (-372 *4)))) (-1720 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-639 *3)))) (-4200 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1207)) (-4 *4 (-372 *2)) (-4 *5 (-372 *2)))) (-1505 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1207)) (-4 *4 (-372 *2)) (-4 *5 (-372 *2)))) (-1928 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-562)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1207)) (-4 *3 (-372 *4)) (-4 *5 (-372 *4)))) (-3003 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-562)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1207)) (-4 *5 (-372 *4)) (-4 *3 (-372 *4)))) (-1490 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-4152 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-4152 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))))
-(-13 (-488 |t#1|) (-10 -8 (-6 -4403) (-6 -4402) (-15 -1458 ($ (-766) (-766) |t#1|)) (-15 -2716 ($ $ |t#1|)) (-15 -2783 ((-562) $)) (-15 -4088 ((-562) $)) (-15 -4217 ((-562) $)) (-15 -2453 ((-562) $)) (-15 -2699 ((-766) $)) (-15 -2709 ((-766) $)) (-15 -2343 (|t#1| $ (-562) (-562))) (-15 -1420 (|t#1| $ (-562) (-562))) (-15 -2343 (|t#1| $ (-562) (-562) |t#1|)) (-15 -3796 (|t#2| $ (-562))) (-15 -2211 (|t#3| $ (-562))) (-15 -1720 ((-639 |t#1|) $)) (-15 -4200 (|t#1| $ (-562) (-562) |t#1|)) (-15 -1505 (|t#1| $ (-562) (-562) |t#1|)) (-15 -1928 ($ $ (-562) |t#2|)) (-15 -3003 ($ $ (-562) |t#3|)) (-15 -4152 ($ (-1 |t#1| |t#1|) $)) (-15 -1490 ($ (-1 |t#1| |t#1|) $)) (-15 -4152 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -4152 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
+((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-1458 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-766)) (-4 *3 (-1207)) (-4 *1 (-57 *3 *4 *5)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-3510 (*1 *1 *1 *2) (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1207)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-1808 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-562)))) (-3269 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-562)))) (-2028 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-562)))) (-2727 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-562)))) (-2698 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-766)))) (-2708 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-766)))) (-2343 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-1207)))) (-1420 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-1207)))) (-2343 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1207)) (-4 *4 (-372 *2)) (-4 *5 (-372 *2)))) (-3511 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1207)) (-4 *5 (-372 *4)) (-4 *2 (-372 *4)))) (-2208 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1207)) (-4 *5 (-372 *4)) (-4 *2 (-372 *4)))) (-1720 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-639 *3)))) (-4200 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1207)) (-4 *4 (-372 *2)) (-4 *5 (-372 *2)))) (-1507 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1207)) (-4 *4 (-372 *2)) (-4 *5 (-372 *2)))) (-2267 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-562)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1207)) (-4 *3 (-372 *4)) (-4 *5 (-372 *4)))) (-3320 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-562)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1207)) (-4 *5 (-372 *4)) (-4 *3 (-372 *4)))) (-1491 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-4152 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-4152 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))))
+(-13 (-488 |t#1|) (-10 -8 (-6 -4404) (-6 -4403) (-15 -1458 ($ (-766) (-766) |t#1|)) (-15 -3510 ($ $ |t#1|)) (-15 -1808 ((-562) $)) (-15 -3269 ((-562) $)) (-15 -2028 ((-562) $)) (-15 -2727 ((-562) $)) (-15 -2698 ((-766) $)) (-15 -2708 ((-766) $)) (-15 -2343 (|t#1| $ (-562) (-562))) (-15 -1420 (|t#1| $ (-562) (-562))) (-15 -2343 (|t#1| $ (-562) (-562) |t#1|)) (-15 -3511 (|t#2| $ (-562))) (-15 -2208 (|t#3| $ (-562))) (-15 -1720 ((-639 |t#1|) $)) (-15 -4200 (|t#1| $ (-562) (-562) |t#1|)) (-15 -1507 (|t#1| $ (-562) (-562) |t#1|)) (-15 -2267 ($ $ (-562) |t#2|)) (-15 -3320 ($ $ (-562) |t#3|)) (-15 -4152 ($ (-1 |t#1| |t#1|) $)) (-15 -1491 ($ (-1 |t#1| |t#1|) $)) (-15 -4152 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -4152 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-2578 (((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 16)) (-1955 ((|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 18)) (-4152 (((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)) 13)))
-(((-58 |#1| |#2|) (-10 -7 (-15 -2578 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1955 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -4152 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)))) (-1207) (-1207)) (T -58))
-((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-59 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-59 *6)) (-5 *1 (-58 *5 *6)))) (-1955 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1207)) (-4 *2 (-1207)) (-5 *1 (-58 *5 *2)))) (-2578 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1207)) (-4 *5 (-1207)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5)))))
-(-10 -7 (-15 -2578 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1955 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -4152 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3381 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4403))) (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) |#1|) 11 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) NIL)) (-4264 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-3547 (($ (-639 |#1|)) 13) (($ (-766) |#1|) 14)) (-1458 (($ (-766) |#1|) 9)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-1610 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3297 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2716 (($ $ |#1|) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) 7)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) NIL)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-59 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -3547 ($ (-639 |#1|))) (-15 -3547 ($ (-766) |#1|)))) (-1207)) (T -59))
-((-3547 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-59 *3)))) (-3547 (*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *1 (-59 *3)) (-4 *3 (-1207)))))
-(-13 (-19 |#1|) (-10 -8 (-15 -3547 ($ (-639 |#1|))) (-15 -3547 ($ (-766) |#1|))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) (-562) |#1|) NIL)) (-1928 (($ $ (-562) (-59 |#1|)) NIL)) (-3003 (($ $ (-562) (-59 |#1|)) NIL)) (-1800 (($) NIL T CONST)) (-3796 (((-59 |#1|) $ (-562)) NIL)) (-1505 ((|#1| $ (-562) (-562) |#1|) NIL)) (-1420 ((|#1| $ (-562) (-562)) NIL)) (-1720 (((-639 |#1|) $) NIL)) (-2699 (((-766) $) NIL)) (-1458 (($ (-766) (-766) |#1|) NIL)) (-2709 (((-766) $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-2783 (((-562) $) NIL)) (-4217 (((-562) $) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4088 (((-562) $) NIL)) (-2453 (((-562) $) NIL)) (-1490 (($ (-1 |#1| |#1|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2716 (($ $ |#1|) NIL)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ (-562) (-562)) NIL) ((|#1| $ (-562) (-562) |#1|) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-2211 (((-59 |#1|) $ (-562)) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-60 |#1|) (-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4403))) (-1207)) (T -60))
-NIL
-(-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4403)))
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 74) (((-3 $ "failed") (-1256 (-315 (-562)))) 63) (((-3 $ "failed") (-1256 (-947 (-378)))) 94) (((-3 $ "failed") (-1256 (-947 (-562)))) 84) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 52) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 39)) (-3961 (($ (-1256 (-315 (-378)))) 70) (($ (-1256 (-315 (-562)))) 59) (($ (-1256 (-947 (-378)))) 90) (($ (-1256 (-947 (-562)))) 80) (($ (-1256 (-406 (-947 (-378))))) 48) (($ (-1256 (-406 (-947 (-562))))) 32)) (-3219 (((-1261) $) 120)) (-4054 (((-857) $) 113) (($ (-639 (-329))) 103) (($ (-329)) 97) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 101) (($ (-1256 (-338 (-4066 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-4066) (-693)))) 31)))
-(((-61 |#1|) (-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-4066) (-693))))))) (-1168)) (T -61))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4066 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-4066) (-693)))) (-5 *1 (-61 *3)) (-14 *3 (-1168)))))
-(-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-4066) (-693)))))))
-((-3219 (((-1261) $) 53) (((-1261)) 54)) (-4054 (((-857) $) 50)))
-(((-62 |#1|) (-13 (-394) (-10 -7 (-15 -3219 ((-1261))))) (-1168)) (T -62))
-((-3219 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-62 *3)) (-14 *3 (-1168)))))
-(-13 (-394) (-10 -7 (-15 -3219 ((-1261)))))
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 145) (((-3 $ "failed") (-1256 (-315 (-562)))) 135) (((-3 $ "failed") (-1256 (-947 (-378)))) 165) (((-3 $ "failed") (-1256 (-947 (-562)))) 155) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 124) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 112)) (-3961 (($ (-1256 (-315 (-378)))) 141) (($ (-1256 (-315 (-562)))) 131) (($ (-1256 (-947 (-378)))) 161) (($ (-1256 (-947 (-562)))) 151) (($ (-1256 (-406 (-947 (-378))))) 120) (($ (-1256 (-406 (-947 (-562))))) 105)) (-3219 (((-1261) $) 98)) (-4054 (((-857) $) 92) (($ (-639 (-329))) 29) (($ (-329)) 34) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 32) (($ (-1256 (-338 (-4066) (-4066 (QUOTE XC)) (-693)))) 90)))
-(((-63 |#1|) (-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066) (-4066 (QUOTE XC)) (-693))))))) (-1168)) (T -63))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4066) (-4066 (QUOTE XC)) (-693)))) (-5 *1 (-63 *3)) (-14 *3 (-1168)))))
-(-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066) (-4066 (QUOTE XC)) (-693)))))))
-((-4048 (((-3 $ "failed") (-315 (-378))) 41) (((-3 $ "failed") (-315 (-562))) 46) (((-3 $ "failed") (-947 (-378))) 50) (((-3 $ "failed") (-947 (-562))) 54) (((-3 $ "failed") (-406 (-947 (-378)))) 36) (((-3 $ "failed") (-406 (-947 (-562)))) 29)) (-3961 (($ (-315 (-378))) 39) (($ (-315 (-562))) 44) (($ (-947 (-378))) 48) (($ (-947 (-562))) 52) (($ (-406 (-947 (-378)))) 34) (($ (-406 (-947 (-562)))) 26)) (-3219 (((-1261) $) 76)) (-4054 (((-857) $) 69) (($ (-639 (-329))) 61) (($ (-329)) 66) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 64) (($ (-338 (-4066 (QUOTE X)) (-4066) (-693))) 25)))
-(((-64 |#1|) (-13 (-395) (-10 -8 (-15 -4054 ($ (-338 (-4066 (QUOTE X)) (-4066) (-693)))))) (-1168)) (T -64))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-338 (-4066 (QUOTE X)) (-4066) (-693))) (-5 *1 (-64 *3)) (-14 *3 (-1168)))))
-(-13 (-395) (-10 -8 (-15 -4054 ($ (-338 (-4066 (QUOTE X)) (-4066) (-693))))))
-((-4048 (((-3 $ "failed") (-683 (-315 (-378)))) 109) (((-3 $ "failed") (-683 (-315 (-562)))) 97) (((-3 $ "failed") (-683 (-947 (-378)))) 131) (((-3 $ "failed") (-683 (-947 (-562)))) 120) (((-3 $ "failed") (-683 (-406 (-947 (-378))))) 85) (((-3 $ "failed") (-683 (-406 (-947 (-562))))) 71)) (-3961 (($ (-683 (-315 (-378)))) 105) (($ (-683 (-315 (-562)))) 93) (($ (-683 (-947 (-378)))) 127) (($ (-683 (-947 (-562)))) 116) (($ (-683 (-406 (-947 (-378))))) 81) (($ (-683 (-406 (-947 (-562))))) 64)) (-3219 (((-1261) $) 139)) (-4054 (((-857) $) 133) (($ (-639 (-329))) 28) (($ (-329)) 33) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 31) (($ (-683 (-338 (-4066) (-4066 (QUOTE X) (QUOTE HESS)) (-693)))) 54)))
-(((-65 |#1|) (-13 (-383) (-612 (-683 (-338 (-4066) (-4066 (QUOTE X) (QUOTE HESS)) (-693))))) (-1168)) (T -65))
-NIL
-(-13 (-383) (-612 (-683 (-338 (-4066) (-4066 (QUOTE X) (QUOTE HESS)) (-693)))))
-((-4048 (((-3 $ "failed") (-315 (-378))) 59) (((-3 $ "failed") (-315 (-562))) 64) (((-3 $ "failed") (-947 (-378))) 68) (((-3 $ "failed") (-947 (-562))) 72) (((-3 $ "failed") (-406 (-947 (-378)))) 54) (((-3 $ "failed") (-406 (-947 (-562)))) 47)) (-3961 (($ (-315 (-378))) 57) (($ (-315 (-562))) 62) (($ (-947 (-378))) 66) (($ (-947 (-562))) 70) (($ (-406 (-947 (-378)))) 52) (($ (-406 (-947 (-562)))) 44)) (-3219 (((-1261) $) 81)) (-4054 (((-857) $) 75) (($ (-639 (-329))) 28) (($ (-329)) 33) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 31) (($ (-338 (-4066) (-4066 (QUOTE XC)) (-693))) 39)))
-(((-66 |#1|) (-13 (-395) (-10 -8 (-15 -4054 ($ (-338 (-4066) (-4066 (QUOTE XC)) (-693)))))) (-1168)) (T -66))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-338 (-4066) (-4066 (QUOTE XC)) (-693))) (-5 *1 (-66 *3)) (-14 *3 (-1168)))))
-(-13 (-395) (-10 -8 (-15 -4054 ($ (-338 (-4066) (-4066 (QUOTE XC)) (-693))))))
-((-3219 (((-1261) $) 63)) (-4054 (((-857) $) 57) (($ (-683 (-693))) 49) (($ (-639 (-329))) 48) (($ (-329)) 55) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 53)))
+((-1555 (((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 16)) (-1954 ((|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 18)) (-4152 (((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)) 13)))
+(((-58 |#1| |#2|) (-10 -7 (-15 -1555 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1954 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -4152 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)))) (-1207) (-1207)) (T -58))
+((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-59 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-59 *6)) (-5 *1 (-58 *5 *6)))) (-1954 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1207)) (-4 *2 (-1207)) (-5 *1 (-58 *5 *2)))) (-1555 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1207)) (-4 *5 (-1207)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5)))))
+(-10 -7 (-15 -1555 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1954 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -4152 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3737 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4404))) (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) |#1|) 11 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) NIL)) (-4265 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1744 (($ (-639 |#1|)) 13) (($ (-766) |#1|) 14)) (-1458 (($ (-766) |#1|) 9)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-4103 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3295 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3510 (($ $ |#1|) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) 7)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) NIL)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-59 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -1744 ($ (-639 |#1|))) (-15 -1744 ($ (-766) |#1|)))) (-1207)) (T -59))
+((-1744 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-59 *3)))) (-1744 (*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *1 (-59 *3)) (-4 *3 (-1207)))))
+(-13 (-19 |#1|) (-10 -8 (-15 -1744 ($ (-639 |#1|))) (-15 -1744 ($ (-766) |#1|))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) (-562) |#1|) NIL)) (-2267 (($ $ (-562) (-59 |#1|)) NIL)) (-3320 (($ $ (-562) (-59 |#1|)) NIL)) (-3329 (($) NIL T CONST)) (-3511 (((-59 |#1|) $ (-562)) NIL)) (-1507 ((|#1| $ (-562) (-562) |#1|) NIL)) (-1420 ((|#1| $ (-562) (-562)) NIL)) (-1720 (((-639 |#1|) $) NIL)) (-2698 (((-766) $) NIL)) (-1458 (($ (-766) (-766) |#1|) NIL)) (-2708 (((-766) $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1808 (((-562) $) NIL)) (-2028 (((-562) $) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3269 (((-562) $) NIL)) (-2727 (((-562) $) NIL)) (-1491 (($ (-1 |#1| |#1|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3510 (($ $ |#1|) NIL)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ (-562) (-562)) NIL) ((|#1| $ (-562) (-562) |#1|) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-2208 (((-59 |#1|) $ (-562)) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-60 |#1|) (-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4404))) (-1207)) (T -60))
+NIL
+(-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4404)))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 74) (((-3 $ "failed") (-1256 (-315 (-562)))) 63) (((-3 $ "failed") (-1256 (-947 (-378)))) 94) (((-3 $ "failed") (-1256 (-947 (-562)))) 84) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 52) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 39)) (-3960 (($ (-1256 (-315 (-378)))) 70) (($ (-1256 (-315 (-562)))) 59) (($ (-1256 (-947 (-378)))) 90) (($ (-1256 (-947 (-562)))) 80) (($ (-1256 (-406 (-947 (-378))))) 48) (($ (-1256 (-406 (-947 (-562))))) 32)) (-3218 (((-1261) $) 120)) (-4053 (((-857) $) 113) (($ (-639 (-329))) 103) (($ (-329)) 97) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 101) (($ (-1256 (-338 (-4064 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-4064) (-693)))) 31)))
+(((-61 |#1|) (-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-4064) (-693))))))) (-1168)) (T -61))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4064 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-4064) (-693)))) (-5 *1 (-61 *3)) (-14 *3 (-1168)))))
+(-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-4064) (-693)))))))
+((-3218 (((-1261) $) 53) (((-1261)) 54)) (-4053 (((-857) $) 50)))
+(((-62 |#1|) (-13 (-394) (-10 -7 (-15 -3218 ((-1261))))) (-1168)) (T -62))
+((-3218 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-62 *3)) (-14 *3 (-1168)))))
+(-13 (-394) (-10 -7 (-15 -3218 ((-1261)))))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 145) (((-3 $ "failed") (-1256 (-315 (-562)))) 135) (((-3 $ "failed") (-1256 (-947 (-378)))) 165) (((-3 $ "failed") (-1256 (-947 (-562)))) 155) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 124) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 112)) (-3960 (($ (-1256 (-315 (-378)))) 141) (($ (-1256 (-315 (-562)))) 131) (($ (-1256 (-947 (-378)))) 161) (($ (-1256 (-947 (-562)))) 151) (($ (-1256 (-406 (-947 (-378))))) 120) (($ (-1256 (-406 (-947 (-562))))) 105)) (-3218 (((-1261) $) 98)) (-4053 (((-857) $) 92) (($ (-639 (-329))) 29) (($ (-329)) 34) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 32) (($ (-1256 (-338 (-4064) (-4064 (QUOTE XC)) (-693)))) 90)))
+(((-63 |#1|) (-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064) (-4064 (QUOTE XC)) (-693))))))) (-1168)) (T -63))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4064) (-4064 (QUOTE XC)) (-693)))) (-5 *1 (-63 *3)) (-14 *3 (-1168)))))
+(-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064) (-4064 (QUOTE XC)) (-693)))))))
+((-4048 (((-3 $ "failed") (-315 (-378))) 41) (((-3 $ "failed") (-315 (-562))) 46) (((-3 $ "failed") (-947 (-378))) 50) (((-3 $ "failed") (-947 (-562))) 54) (((-3 $ "failed") (-406 (-947 (-378)))) 36) (((-3 $ "failed") (-406 (-947 (-562)))) 29)) (-3960 (($ (-315 (-378))) 39) (($ (-315 (-562))) 44) (($ (-947 (-378))) 48) (($ (-947 (-562))) 52) (($ (-406 (-947 (-378)))) 34) (($ (-406 (-947 (-562)))) 26)) (-3218 (((-1261) $) 76)) (-4053 (((-857) $) 69) (($ (-639 (-329))) 61) (($ (-329)) 66) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 64) (($ (-338 (-4064 (QUOTE X)) (-4064) (-693))) 25)))
+(((-64 |#1|) (-13 (-395) (-10 -8 (-15 -4053 ($ (-338 (-4064 (QUOTE X)) (-4064) (-693)))))) (-1168)) (T -64))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-338 (-4064 (QUOTE X)) (-4064) (-693))) (-5 *1 (-64 *3)) (-14 *3 (-1168)))))
+(-13 (-395) (-10 -8 (-15 -4053 ($ (-338 (-4064 (QUOTE X)) (-4064) (-693))))))
+((-4048 (((-3 $ "failed") (-683 (-315 (-378)))) 109) (((-3 $ "failed") (-683 (-315 (-562)))) 97) (((-3 $ "failed") (-683 (-947 (-378)))) 131) (((-3 $ "failed") (-683 (-947 (-562)))) 120) (((-3 $ "failed") (-683 (-406 (-947 (-378))))) 85) (((-3 $ "failed") (-683 (-406 (-947 (-562))))) 71)) (-3960 (($ (-683 (-315 (-378)))) 105) (($ (-683 (-315 (-562)))) 93) (($ (-683 (-947 (-378)))) 127) (($ (-683 (-947 (-562)))) 116) (($ (-683 (-406 (-947 (-378))))) 81) (($ (-683 (-406 (-947 (-562))))) 64)) (-3218 (((-1261) $) 139)) (-4053 (((-857) $) 133) (($ (-639 (-329))) 28) (($ (-329)) 33) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 31) (($ (-683 (-338 (-4064) (-4064 (QUOTE X) (QUOTE HESS)) (-693)))) 54)))
+(((-65 |#1|) (-13 (-383) (-612 (-683 (-338 (-4064) (-4064 (QUOTE X) (QUOTE HESS)) (-693))))) (-1168)) (T -65))
+NIL
+(-13 (-383) (-612 (-683 (-338 (-4064) (-4064 (QUOTE X) (QUOTE HESS)) (-693)))))
+((-4048 (((-3 $ "failed") (-315 (-378))) 59) (((-3 $ "failed") (-315 (-562))) 64) (((-3 $ "failed") (-947 (-378))) 68) (((-3 $ "failed") (-947 (-562))) 72) (((-3 $ "failed") (-406 (-947 (-378)))) 54) (((-3 $ "failed") (-406 (-947 (-562)))) 47)) (-3960 (($ (-315 (-378))) 57) (($ (-315 (-562))) 62) (($ (-947 (-378))) 66) (($ (-947 (-562))) 70) (($ (-406 (-947 (-378)))) 52) (($ (-406 (-947 (-562)))) 44)) (-3218 (((-1261) $) 81)) (-4053 (((-857) $) 75) (($ (-639 (-329))) 28) (($ (-329)) 33) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 31) (($ (-338 (-4064) (-4064 (QUOTE XC)) (-693))) 39)))
+(((-66 |#1|) (-13 (-395) (-10 -8 (-15 -4053 ($ (-338 (-4064) (-4064 (QUOTE XC)) (-693)))))) (-1168)) (T -66))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-338 (-4064) (-4064 (QUOTE XC)) (-693))) (-5 *1 (-66 *3)) (-14 *3 (-1168)))))
+(-13 (-395) (-10 -8 (-15 -4053 ($ (-338 (-4064) (-4064 (QUOTE XC)) (-693))))))
+((-3218 (((-1261) $) 63)) (-4053 (((-857) $) 57) (($ (-683 (-693))) 49) (($ (-639 (-329))) 48) (($ (-329)) 55) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 53)))
(((-67 |#1|) (-382) (-1168)) (T -67))
NIL
(-382)
-((-3219 (((-1261) $) 64)) (-4054 (((-857) $) 58) (($ (-683 (-693))) 50) (($ (-639 (-329))) 49) (($ (-329)) 52) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 55)))
+((-3218 (((-1261) $) 64)) (-4053 (((-857) $) 58) (($ (-683 (-693))) 50) (($ (-639 (-329))) 49) (($ (-329)) 52) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 55)))
(((-68 |#1|) (-382) (-1168)) (T -68))
NIL
(-382)
-((-3219 (((-1261) $) NIL) (((-1261)) 32)) (-4054 (((-857) $) NIL)))
-(((-69 |#1|) (-13 (-394) (-10 -7 (-15 -3219 ((-1261))))) (-1168)) (T -69))
-((-3219 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-69 *3)) (-14 *3 (-1168)))))
-(-13 (-394) (-10 -7 (-15 -3219 ((-1261)))))
-((-3219 (((-1261) $) 73)) (-4054 (((-857) $) 67) (($ (-683 (-693))) 59) (($ (-639 (-329))) 61) (($ (-329)) 64) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 58)))
+((-3218 (((-1261) $) NIL) (((-1261)) 32)) (-4053 (((-857) $) NIL)))
+(((-69 |#1|) (-13 (-394) (-10 -7 (-15 -3218 ((-1261))))) (-1168)) (T -69))
+((-3218 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-69 *3)) (-14 *3 (-1168)))))
+(-13 (-394) (-10 -7 (-15 -3218 ((-1261)))))
+((-3218 (((-1261) $) 73)) (-4053 (((-857) $) 67) (($ (-683 (-693))) 59) (($ (-639 (-329))) 61) (($ (-329)) 64) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 58)))
(((-70 |#1|) (-382) (-1168)) (T -70))
NIL
(-382)
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 103) (((-3 $ "failed") (-1256 (-315 (-562)))) 92) (((-3 $ "failed") (-1256 (-947 (-378)))) 123) (((-3 $ "failed") (-1256 (-947 (-562)))) 113) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 81) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 68)) (-3961 (($ (-1256 (-315 (-378)))) 99) (($ (-1256 (-315 (-562)))) 88) (($ (-1256 (-947 (-378)))) 119) (($ (-1256 (-947 (-562)))) 109) (($ (-1256 (-406 (-947 (-378))))) 77) (($ (-1256 (-406 (-947 (-562))))) 61)) (-3219 (((-1261) $) 136)) (-4054 (((-857) $) 130) (($ (-639 (-329))) 125) (($ (-329)) 128) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 53) (($ (-1256 (-338 (-4066 (QUOTE X)) (-4066 (QUOTE -3172)) (-693)))) 54)))
-(((-71 |#1|) (-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE X)) (-4066 (QUOTE -3172)) (-693))))))) (-1168)) (T -71))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4066 (QUOTE X)) (-4066 (QUOTE -3172)) (-693)))) (-5 *1 (-71 *3)) (-14 *3 (-1168)))))
-(-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE X)) (-4066 (QUOTE -3172)) (-693)))))))
-((-3219 (((-1261) $) 32) (((-1261)) 31)) (-4054 (((-857) $) 35)))
-(((-72 |#1|) (-13 (-394) (-10 -7 (-15 -3219 ((-1261))))) (-1168)) (T -72))
-((-3219 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-72 *3)) (-14 *3 (-1168)))))
-(-13 (-394) (-10 -7 (-15 -3219 ((-1261)))))
-((-3219 (((-1261) $) 63)) (-4054 (((-857) $) 57) (($ (-683 (-693))) 49) (($ (-639 (-329))) 51) (($ (-329)) 54) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 48)))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 103) (((-3 $ "failed") (-1256 (-315 (-562)))) 92) (((-3 $ "failed") (-1256 (-947 (-378)))) 123) (((-3 $ "failed") (-1256 (-947 (-562)))) 113) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 81) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 68)) (-3960 (($ (-1256 (-315 (-378)))) 99) (($ (-1256 (-315 (-562)))) 88) (($ (-1256 (-947 (-378)))) 119) (($ (-1256 (-947 (-562)))) 109) (($ (-1256 (-406 (-947 (-378))))) 77) (($ (-1256 (-406 (-947 (-562))))) 61)) (-3218 (((-1261) $) 136)) (-4053 (((-857) $) 130) (($ (-639 (-329))) 125) (($ (-329)) 128) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 53) (($ (-1256 (-338 (-4064 (QUOTE X)) (-4064 (QUOTE -3171)) (-693)))) 54)))
+(((-71 |#1|) (-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE X)) (-4064 (QUOTE -3171)) (-693))))))) (-1168)) (T -71))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4064 (QUOTE X)) (-4064 (QUOTE -3171)) (-693)))) (-5 *1 (-71 *3)) (-14 *3 (-1168)))))
+(-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE X)) (-4064 (QUOTE -3171)) (-693)))))))
+((-3218 (((-1261) $) 32) (((-1261)) 31)) (-4053 (((-857) $) 35)))
+(((-72 |#1|) (-13 (-394) (-10 -7 (-15 -3218 ((-1261))))) (-1168)) (T -72))
+((-3218 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-72 *3)) (-14 *3 (-1168)))))
+(-13 (-394) (-10 -7 (-15 -3218 ((-1261)))))
+((-3218 (((-1261) $) 63)) (-4053 (((-857) $) 57) (($ (-683 (-693))) 49) (($ (-639 (-329))) 51) (($ (-329)) 54) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 48)))
(((-73 |#1|) (-382) (-1168)) (T -73))
NIL
(-382)
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 125) (((-3 $ "failed") (-1256 (-315 (-562)))) 115) (((-3 $ "failed") (-1256 (-947 (-378)))) 145) (((-3 $ "failed") (-1256 (-947 (-562)))) 135) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 105) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 93)) (-3961 (($ (-1256 (-315 (-378)))) 121) (($ (-1256 (-315 (-562)))) 111) (($ (-1256 (-947 (-378)))) 141) (($ (-1256 (-947 (-562)))) 131) (($ (-1256 (-406 (-947 (-378))))) 101) (($ (-1256 (-406 (-947 (-562))))) 86)) (-3219 (((-1261) $) 78)) (-4054 (((-857) $) 27) (($ (-639 (-329))) 68) (($ (-329)) 64) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 71) (($ (-1256 (-338 (-4066) (-4066 (QUOTE X)) (-693)))) 65)))
-(((-74 |#1|) (-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066) (-4066 (QUOTE X)) (-693))))))) (-1168)) (T -74))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4066) (-4066 (QUOTE X)) (-693)))) (-5 *1 (-74 *3)) (-14 *3 (-1168)))))
-(-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066) (-4066 (QUOTE X)) (-693)))))))
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 130) (((-3 $ "failed") (-1256 (-315 (-562)))) 119) (((-3 $ "failed") (-1256 (-947 (-378)))) 150) (((-3 $ "failed") (-1256 (-947 (-562)))) 140) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 108) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 95)) (-3961 (($ (-1256 (-315 (-378)))) 126) (($ (-1256 (-315 (-562)))) 115) (($ (-1256 (-947 (-378)))) 146) (($ (-1256 (-947 (-562)))) 136) (($ (-1256 (-406 (-947 (-378))))) 104) (($ (-1256 (-406 (-947 (-562))))) 88)) (-3219 (((-1261) $) 79)) (-4054 (((-857) $) 71) (($ (-639 (-329))) NIL) (($ (-329)) NIL) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) NIL) (($ (-1256 (-338 (-4066 (QUOTE X) (QUOTE EPS)) (-4066 (QUOTE -3172)) (-693)))) 66)))
-(((-75 |#1| |#2| |#3|) (-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE X) (QUOTE EPS)) (-4066 (QUOTE -3172)) (-693))))))) (-1168) (-1168) (-1168)) (T -75))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4066 (QUOTE X) (QUOTE EPS)) (-4066 (QUOTE -3172)) (-693)))) (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1168)) (-14 *4 (-1168)) (-14 *5 (-1168)))))
-(-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE X) (QUOTE EPS)) (-4066 (QUOTE -3172)) (-693)))))))
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 134) (((-3 $ "failed") (-1256 (-315 (-562)))) 123) (((-3 $ "failed") (-1256 (-947 (-378)))) 154) (((-3 $ "failed") (-1256 (-947 (-562)))) 144) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 112) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 99)) (-3961 (($ (-1256 (-315 (-378)))) 130) (($ (-1256 (-315 (-562)))) 119) (($ (-1256 (-947 (-378)))) 150) (($ (-1256 (-947 (-562)))) 140) (($ (-1256 (-406 (-947 (-378))))) 108) (($ (-1256 (-406 (-947 (-562))))) 92)) (-3219 (((-1261) $) 83)) (-4054 (((-857) $) 75) (($ (-639 (-329))) NIL) (($ (-329)) NIL) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) NIL) (($ (-1256 (-338 (-4066 (QUOTE EPS)) (-4066 (QUOTE YA) (QUOTE YB)) (-693)))) 70)))
-(((-76 |#1| |#2| |#3|) (-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE EPS)) (-4066 (QUOTE YA) (QUOTE YB)) (-693))))))) (-1168) (-1168) (-1168)) (T -76))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4066 (QUOTE EPS)) (-4066 (QUOTE YA) (QUOTE YB)) (-693)))) (-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1168)) (-14 *4 (-1168)) (-14 *5 (-1168)))))
-(-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE EPS)) (-4066 (QUOTE YA) (QUOTE YB)) (-693)))))))
-((-4048 (((-3 $ "failed") (-315 (-378))) 82) (((-3 $ "failed") (-315 (-562))) 87) (((-3 $ "failed") (-947 (-378))) 91) (((-3 $ "failed") (-947 (-562))) 95) (((-3 $ "failed") (-406 (-947 (-378)))) 77) (((-3 $ "failed") (-406 (-947 (-562)))) 70)) (-3961 (($ (-315 (-378))) 80) (($ (-315 (-562))) 85) (($ (-947 (-378))) 89) (($ (-947 (-562))) 93) (($ (-406 (-947 (-378)))) 75) (($ (-406 (-947 (-562)))) 67)) (-3219 (((-1261) $) 62)) (-4054 (((-857) $) 50) (($ (-639 (-329))) 46) (($ (-329)) 56) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 54) (($ (-338 (-4066) (-4066 (QUOTE X)) (-693))) 47)))
-(((-77 |#1|) (-13 (-395) (-10 -8 (-15 -4054 ($ (-338 (-4066) (-4066 (QUOTE X)) (-693)))))) (-1168)) (T -77))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-338 (-4066) (-4066 (QUOTE X)) (-693))) (-5 *1 (-77 *3)) (-14 *3 (-1168)))))
-(-13 (-395) (-10 -8 (-15 -4054 ($ (-338 (-4066) (-4066 (QUOTE X)) (-693))))))
-((-4048 (((-3 $ "failed") (-315 (-378))) 46) (((-3 $ "failed") (-315 (-562))) 51) (((-3 $ "failed") (-947 (-378))) 55) (((-3 $ "failed") (-947 (-562))) 59) (((-3 $ "failed") (-406 (-947 (-378)))) 41) (((-3 $ "failed") (-406 (-947 (-562)))) 34)) (-3961 (($ (-315 (-378))) 44) (($ (-315 (-562))) 49) (($ (-947 (-378))) 53) (($ (-947 (-562))) 57) (($ (-406 (-947 (-378)))) 39) (($ (-406 (-947 (-562)))) 31)) (-3219 (((-1261) $) 80)) (-4054 (((-857) $) 74) (($ (-639 (-329))) 66) (($ (-329)) 71) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 69) (($ (-338 (-4066) (-4066 (QUOTE X)) (-693))) 30)))
-(((-78 |#1|) (-13 (-395) (-10 -8 (-15 -4054 ($ (-338 (-4066) (-4066 (QUOTE X)) (-693)))))) (-1168)) (T -78))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-338 (-4066) (-4066 (QUOTE X)) (-693))) (-5 *1 (-78 *3)) (-14 *3 (-1168)))))
-(-13 (-395) (-10 -8 (-15 -4054 ($ (-338 (-4066) (-4066 (QUOTE X)) (-693))))))
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 89) (((-3 $ "failed") (-1256 (-315 (-562)))) 78) (((-3 $ "failed") (-1256 (-947 (-378)))) 109) (((-3 $ "failed") (-1256 (-947 (-562)))) 99) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 67) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 54)) (-3961 (($ (-1256 (-315 (-378)))) 85) (($ (-1256 (-315 (-562)))) 74) (($ (-1256 (-947 (-378)))) 105) (($ (-1256 (-947 (-562)))) 95) (($ (-1256 (-406 (-947 (-378))))) 63) (($ (-1256 (-406 (-947 (-562))))) 47)) (-3219 (((-1261) $) 125)) (-4054 (((-857) $) 119) (($ (-639 (-329))) 112) (($ (-329)) 37) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 115) (($ (-1256 (-338 (-4066) (-4066 (QUOTE XC)) (-693)))) 38)))
-(((-79 |#1|) (-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066) (-4066 (QUOTE XC)) (-693))))))) (-1168)) (T -79))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4066) (-4066 (QUOTE XC)) (-693)))) (-5 *1 (-79 *3)) (-14 *3 (-1168)))))
-(-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066) (-4066 (QUOTE XC)) (-693)))))))
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 143) (((-3 $ "failed") (-1256 (-315 (-562)))) 133) (((-3 $ "failed") (-1256 (-947 (-378)))) 163) (((-3 $ "failed") (-1256 (-947 (-562)))) 153) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 123) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 111)) (-3961 (($ (-1256 (-315 (-378)))) 139) (($ (-1256 (-315 (-562)))) 129) (($ (-1256 (-947 (-378)))) 159) (($ (-1256 (-947 (-562)))) 149) (($ (-1256 (-406 (-947 (-378))))) 119) (($ (-1256 (-406 (-947 (-562))))) 104)) (-3219 (((-1261) $) 97)) (-4054 (((-857) $) 91) (($ (-639 (-329))) 82) (($ (-329)) 89) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 87) (($ (-1256 (-338 (-4066) (-4066 (QUOTE X)) (-693)))) 83)))
-(((-80 |#1|) (-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066) (-4066 (QUOTE X)) (-693))))))) (-1168)) (T -80))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4066) (-4066 (QUOTE X)) (-693)))) (-5 *1 (-80 *3)) (-14 *3 (-1168)))))
-(-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066) (-4066 (QUOTE X)) (-693)))))))
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 78) (((-3 $ "failed") (-1256 (-315 (-562)))) 67) (((-3 $ "failed") (-1256 (-947 (-378)))) 98) (((-3 $ "failed") (-1256 (-947 (-562)))) 88) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 56) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 43)) (-3961 (($ (-1256 (-315 (-378)))) 74) (($ (-1256 (-315 (-562)))) 63) (($ (-1256 (-947 (-378)))) 94) (($ (-1256 (-947 (-562)))) 84) (($ (-1256 (-406 (-947 (-378))))) 52) (($ (-1256 (-406 (-947 (-562))))) 36)) (-3219 (((-1261) $) 124)) (-4054 (((-857) $) 118) (($ (-639 (-329))) 109) (($ (-329)) 115) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 113) (($ (-1256 (-338 (-4066) (-4066 (QUOTE X)) (-693)))) 35)))
-(((-81 |#1|) (-13 (-440) (-612 (-1256 (-338 (-4066) (-4066 (QUOTE X)) (-693))))) (-1168)) (T -81))
-NIL
-(-13 (-440) (-612 (-1256 (-338 (-4066) (-4066 (QUOTE X)) (-693)))))
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 95) (((-3 $ "failed") (-1256 (-315 (-562)))) 84) (((-3 $ "failed") (-1256 (-947 (-378)))) 115) (((-3 $ "failed") (-1256 (-947 (-562)))) 105) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 73) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 60)) (-3961 (($ (-1256 (-315 (-378)))) 91) (($ (-1256 (-315 (-562)))) 80) (($ (-1256 (-947 (-378)))) 111) (($ (-1256 (-947 (-562)))) 101) (($ (-1256 (-406 (-947 (-378))))) 69) (($ (-1256 (-406 (-947 (-562))))) 53)) (-3219 (((-1261) $) 45)) (-4054 (((-857) $) 39) (($ (-639 (-329))) 29) (($ (-329)) 32) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 35) (($ (-1256 (-338 (-4066 (QUOTE X) (QUOTE -3172)) (-4066) (-693)))) 30)))
-(((-82 |#1|) (-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE X) (QUOTE -3172)) (-4066) (-693))))))) (-1168)) (T -82))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4066 (QUOTE X) (QUOTE -3172)) (-4066) (-693)))) (-5 *1 (-82 *3)) (-14 *3 (-1168)))))
-(-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE X) (QUOTE -3172)) (-4066) (-693)))))))
-((-4048 (((-3 $ "failed") (-683 (-315 (-378)))) 115) (((-3 $ "failed") (-683 (-315 (-562)))) 104) (((-3 $ "failed") (-683 (-947 (-378)))) 137) (((-3 $ "failed") (-683 (-947 (-562)))) 126) (((-3 $ "failed") (-683 (-406 (-947 (-378))))) 93) (((-3 $ "failed") (-683 (-406 (-947 (-562))))) 80)) (-3961 (($ (-683 (-315 (-378)))) 111) (($ (-683 (-315 (-562)))) 100) (($ (-683 (-947 (-378)))) 133) (($ (-683 (-947 (-562)))) 122) (($ (-683 (-406 (-947 (-378))))) 89) (($ (-683 (-406 (-947 (-562))))) 73)) (-3219 (((-1261) $) 63)) (-4054 (((-857) $) 50) (($ (-639 (-329))) 57) (($ (-329)) 46) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 55) (($ (-683 (-338 (-4066 (QUOTE X) (QUOTE -3172)) (-4066) (-693)))) 47)))
-(((-83 |#1|) (-13 (-383) (-10 -8 (-15 -4054 ($ (-683 (-338 (-4066 (QUOTE X) (QUOTE -3172)) (-4066) (-693))))))) (-1168)) (T -83))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-683 (-338 (-4066 (QUOTE X) (QUOTE -3172)) (-4066) (-693)))) (-5 *1 (-83 *3)) (-14 *3 (-1168)))))
-(-13 (-383) (-10 -8 (-15 -4054 ($ (-683 (-338 (-4066 (QUOTE X) (QUOTE -3172)) (-4066) (-693)))))))
-((-4048 (((-3 $ "failed") (-683 (-315 (-378)))) 112) (((-3 $ "failed") (-683 (-315 (-562)))) 100) (((-3 $ "failed") (-683 (-947 (-378)))) 134) (((-3 $ "failed") (-683 (-947 (-562)))) 123) (((-3 $ "failed") (-683 (-406 (-947 (-378))))) 88) (((-3 $ "failed") (-683 (-406 (-947 (-562))))) 74)) (-3961 (($ (-683 (-315 (-378)))) 108) (($ (-683 (-315 (-562)))) 96) (($ (-683 (-947 (-378)))) 130) (($ (-683 (-947 (-562)))) 119) (($ (-683 (-406 (-947 (-378))))) 84) (($ (-683 (-406 (-947 (-562))))) 67)) (-3219 (((-1261) $) 59)) (-4054 (((-857) $) 53) (($ (-639 (-329))) 47) (($ (-329)) 50) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 44) (($ (-683 (-338 (-4066 (QUOTE X)) (-4066) (-693)))) 45)))
-(((-84 |#1|) (-13 (-383) (-10 -8 (-15 -4054 ($ (-683 (-338 (-4066 (QUOTE X)) (-4066) (-693))))))) (-1168)) (T -84))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-683 (-338 (-4066 (QUOTE X)) (-4066) (-693)))) (-5 *1 (-84 *3)) (-14 *3 (-1168)))))
-(-13 (-383) (-10 -8 (-15 -4054 ($ (-683 (-338 (-4066 (QUOTE X)) (-4066) (-693)))))))
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 104) (((-3 $ "failed") (-1256 (-315 (-562)))) 93) (((-3 $ "failed") (-1256 (-947 (-378)))) 124) (((-3 $ "failed") (-1256 (-947 (-562)))) 114) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 82) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 69)) (-3961 (($ (-1256 (-315 (-378)))) 100) (($ (-1256 (-315 (-562)))) 89) (($ (-1256 (-947 (-378)))) 120) (($ (-1256 (-947 (-562)))) 110) (($ (-1256 (-406 (-947 (-378))))) 78) (($ (-1256 (-406 (-947 (-562))))) 62)) (-3219 (((-1261) $) 46)) (-4054 (((-857) $) 40) (($ (-639 (-329))) 49) (($ (-329)) 36) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 52) (($ (-1256 (-338 (-4066 (QUOTE X)) (-4066) (-693)))) 37)))
-(((-85 |#1|) (-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE X)) (-4066) (-693))))))) (-1168)) (T -85))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4066 (QUOTE X)) (-4066) (-693)))) (-5 *1 (-85 *3)) (-14 *3 (-1168)))))
-(-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE X)) (-4066) (-693)))))))
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 79) (((-3 $ "failed") (-1256 (-315 (-562)))) 68) (((-3 $ "failed") (-1256 (-947 (-378)))) 99) (((-3 $ "failed") (-1256 (-947 (-562)))) 89) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 57) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 44)) (-3961 (($ (-1256 (-315 (-378)))) 75) (($ (-1256 (-315 (-562)))) 64) (($ (-1256 (-947 (-378)))) 95) (($ (-1256 (-947 (-562)))) 85) (($ (-1256 (-406 (-947 (-378))))) 53) (($ (-1256 (-406 (-947 (-562))))) 37)) (-3219 (((-1261) $) 125)) (-4054 (((-857) $) 119) (($ (-639 (-329))) 110) (($ (-329)) 116) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 114) (($ (-1256 (-338 (-4066 (QUOTE X)) (-4066 (QUOTE -3172)) (-693)))) 36)))
-(((-86 |#1|) (-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE X)) (-4066 (QUOTE -3172)) (-693))))))) (-1168)) (T -86))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4066 (QUOTE X)) (-4066 (QUOTE -3172)) (-693)))) (-5 *1 (-86 *3)) (-14 *3 (-1168)))))
-(-13 (-440) (-10 -8 (-15 -4054 ($ (-1256 (-338 (-4066 (QUOTE X)) (-4066 (QUOTE -3172)) (-693)))))))
-((-4048 (((-3 $ "failed") (-683 (-315 (-378)))) 113) (((-3 $ "failed") (-683 (-315 (-562)))) 101) (((-3 $ "failed") (-683 (-947 (-378)))) 135) (((-3 $ "failed") (-683 (-947 (-562)))) 124) (((-3 $ "failed") (-683 (-406 (-947 (-378))))) 89) (((-3 $ "failed") (-683 (-406 (-947 (-562))))) 75)) (-3961 (($ (-683 (-315 (-378)))) 109) (($ (-683 (-315 (-562)))) 97) (($ (-683 (-947 (-378)))) 131) (($ (-683 (-947 (-562)))) 120) (($ (-683 (-406 (-947 (-378))))) 85) (($ (-683 (-406 (-947 (-562))))) 68)) (-3219 (((-1261) $) 59)) (-4054 (((-857) $) 53) (($ (-639 (-329))) 43) (($ (-329)) 50) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 48) (($ (-683 (-338 (-4066 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-4066) (-693)))) 44)))
-(((-87 |#1|) (-13 (-383) (-10 -8 (-15 -4054 ($ (-683 (-338 (-4066 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-4066) (-693))))))) (-1168)) (T -87))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-683 (-338 (-4066 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-4066) (-693)))) (-5 *1 (-87 *3)) (-14 *3 (-1168)))))
-(-13 (-383) (-10 -8 (-15 -4054 ($ (-683 (-338 (-4066 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-4066) (-693)))))))
-((-3219 (((-1261) $) 44)) (-4054 (((-857) $) 38) (($ (-1256 (-693))) 93) (($ (-639 (-329))) 30) (($ (-329)) 35) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 33)))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 125) (((-3 $ "failed") (-1256 (-315 (-562)))) 115) (((-3 $ "failed") (-1256 (-947 (-378)))) 145) (((-3 $ "failed") (-1256 (-947 (-562)))) 135) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 105) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 93)) (-3960 (($ (-1256 (-315 (-378)))) 121) (($ (-1256 (-315 (-562)))) 111) (($ (-1256 (-947 (-378)))) 141) (($ (-1256 (-947 (-562)))) 131) (($ (-1256 (-406 (-947 (-378))))) 101) (($ (-1256 (-406 (-947 (-562))))) 86)) (-3218 (((-1261) $) 78)) (-4053 (((-857) $) 27) (($ (-639 (-329))) 68) (($ (-329)) 64) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 71) (($ (-1256 (-338 (-4064) (-4064 (QUOTE X)) (-693)))) 65)))
+(((-74 |#1|) (-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064) (-4064 (QUOTE X)) (-693))))))) (-1168)) (T -74))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4064) (-4064 (QUOTE X)) (-693)))) (-5 *1 (-74 *3)) (-14 *3 (-1168)))))
+(-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064) (-4064 (QUOTE X)) (-693)))))))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 130) (((-3 $ "failed") (-1256 (-315 (-562)))) 119) (((-3 $ "failed") (-1256 (-947 (-378)))) 150) (((-3 $ "failed") (-1256 (-947 (-562)))) 140) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 108) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 95)) (-3960 (($ (-1256 (-315 (-378)))) 126) (($ (-1256 (-315 (-562)))) 115) (($ (-1256 (-947 (-378)))) 146) (($ (-1256 (-947 (-562)))) 136) (($ (-1256 (-406 (-947 (-378))))) 104) (($ (-1256 (-406 (-947 (-562))))) 88)) (-3218 (((-1261) $) 79)) (-4053 (((-857) $) 71) (($ (-639 (-329))) NIL) (($ (-329)) NIL) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) NIL) (($ (-1256 (-338 (-4064 (QUOTE X) (QUOTE EPS)) (-4064 (QUOTE -3171)) (-693)))) 66)))
+(((-75 |#1| |#2| |#3|) (-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE X) (QUOTE EPS)) (-4064 (QUOTE -3171)) (-693))))))) (-1168) (-1168) (-1168)) (T -75))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4064 (QUOTE X) (QUOTE EPS)) (-4064 (QUOTE -3171)) (-693)))) (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1168)) (-14 *4 (-1168)) (-14 *5 (-1168)))))
+(-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE X) (QUOTE EPS)) (-4064 (QUOTE -3171)) (-693)))))))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 134) (((-3 $ "failed") (-1256 (-315 (-562)))) 123) (((-3 $ "failed") (-1256 (-947 (-378)))) 154) (((-3 $ "failed") (-1256 (-947 (-562)))) 144) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 112) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 99)) (-3960 (($ (-1256 (-315 (-378)))) 130) (($ (-1256 (-315 (-562)))) 119) (($ (-1256 (-947 (-378)))) 150) (($ (-1256 (-947 (-562)))) 140) (($ (-1256 (-406 (-947 (-378))))) 108) (($ (-1256 (-406 (-947 (-562))))) 92)) (-3218 (((-1261) $) 83)) (-4053 (((-857) $) 75) (($ (-639 (-329))) NIL) (($ (-329)) NIL) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) NIL) (($ (-1256 (-338 (-4064 (QUOTE EPS)) (-4064 (QUOTE YA) (QUOTE YB)) (-693)))) 70)))
+(((-76 |#1| |#2| |#3|) (-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE EPS)) (-4064 (QUOTE YA) (QUOTE YB)) (-693))))))) (-1168) (-1168) (-1168)) (T -76))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4064 (QUOTE EPS)) (-4064 (QUOTE YA) (QUOTE YB)) (-693)))) (-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1168)) (-14 *4 (-1168)) (-14 *5 (-1168)))))
+(-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE EPS)) (-4064 (QUOTE YA) (QUOTE YB)) (-693)))))))
+((-4048 (((-3 $ "failed") (-315 (-378))) 82) (((-3 $ "failed") (-315 (-562))) 87) (((-3 $ "failed") (-947 (-378))) 91) (((-3 $ "failed") (-947 (-562))) 95) (((-3 $ "failed") (-406 (-947 (-378)))) 77) (((-3 $ "failed") (-406 (-947 (-562)))) 70)) (-3960 (($ (-315 (-378))) 80) (($ (-315 (-562))) 85) (($ (-947 (-378))) 89) (($ (-947 (-562))) 93) (($ (-406 (-947 (-378)))) 75) (($ (-406 (-947 (-562)))) 67)) (-3218 (((-1261) $) 62)) (-4053 (((-857) $) 50) (($ (-639 (-329))) 46) (($ (-329)) 56) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 54) (($ (-338 (-4064) (-4064 (QUOTE X)) (-693))) 47)))
+(((-77 |#1|) (-13 (-395) (-10 -8 (-15 -4053 ($ (-338 (-4064) (-4064 (QUOTE X)) (-693)))))) (-1168)) (T -77))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-338 (-4064) (-4064 (QUOTE X)) (-693))) (-5 *1 (-77 *3)) (-14 *3 (-1168)))))
+(-13 (-395) (-10 -8 (-15 -4053 ($ (-338 (-4064) (-4064 (QUOTE X)) (-693))))))
+((-4048 (((-3 $ "failed") (-315 (-378))) 46) (((-3 $ "failed") (-315 (-562))) 51) (((-3 $ "failed") (-947 (-378))) 55) (((-3 $ "failed") (-947 (-562))) 59) (((-3 $ "failed") (-406 (-947 (-378)))) 41) (((-3 $ "failed") (-406 (-947 (-562)))) 34)) (-3960 (($ (-315 (-378))) 44) (($ (-315 (-562))) 49) (($ (-947 (-378))) 53) (($ (-947 (-562))) 57) (($ (-406 (-947 (-378)))) 39) (($ (-406 (-947 (-562)))) 31)) (-3218 (((-1261) $) 80)) (-4053 (((-857) $) 74) (($ (-639 (-329))) 66) (($ (-329)) 71) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 69) (($ (-338 (-4064) (-4064 (QUOTE X)) (-693))) 30)))
+(((-78 |#1|) (-13 (-395) (-10 -8 (-15 -4053 ($ (-338 (-4064) (-4064 (QUOTE X)) (-693)))))) (-1168)) (T -78))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-338 (-4064) (-4064 (QUOTE X)) (-693))) (-5 *1 (-78 *3)) (-14 *3 (-1168)))))
+(-13 (-395) (-10 -8 (-15 -4053 ($ (-338 (-4064) (-4064 (QUOTE X)) (-693))))))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 89) (((-3 $ "failed") (-1256 (-315 (-562)))) 78) (((-3 $ "failed") (-1256 (-947 (-378)))) 109) (((-3 $ "failed") (-1256 (-947 (-562)))) 99) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 67) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 54)) (-3960 (($ (-1256 (-315 (-378)))) 85) (($ (-1256 (-315 (-562)))) 74) (($ (-1256 (-947 (-378)))) 105) (($ (-1256 (-947 (-562)))) 95) (($ (-1256 (-406 (-947 (-378))))) 63) (($ (-1256 (-406 (-947 (-562))))) 47)) (-3218 (((-1261) $) 125)) (-4053 (((-857) $) 119) (($ (-639 (-329))) 112) (($ (-329)) 37) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 115) (($ (-1256 (-338 (-4064) (-4064 (QUOTE XC)) (-693)))) 38)))
+(((-79 |#1|) (-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064) (-4064 (QUOTE XC)) (-693))))))) (-1168)) (T -79))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4064) (-4064 (QUOTE XC)) (-693)))) (-5 *1 (-79 *3)) (-14 *3 (-1168)))))
+(-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064) (-4064 (QUOTE XC)) (-693)))))))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 143) (((-3 $ "failed") (-1256 (-315 (-562)))) 133) (((-3 $ "failed") (-1256 (-947 (-378)))) 163) (((-3 $ "failed") (-1256 (-947 (-562)))) 153) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 123) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 111)) (-3960 (($ (-1256 (-315 (-378)))) 139) (($ (-1256 (-315 (-562)))) 129) (($ (-1256 (-947 (-378)))) 159) (($ (-1256 (-947 (-562)))) 149) (($ (-1256 (-406 (-947 (-378))))) 119) (($ (-1256 (-406 (-947 (-562))))) 104)) (-3218 (((-1261) $) 97)) (-4053 (((-857) $) 91) (($ (-639 (-329))) 82) (($ (-329)) 89) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 87) (($ (-1256 (-338 (-4064) (-4064 (QUOTE X)) (-693)))) 83)))
+(((-80 |#1|) (-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064) (-4064 (QUOTE X)) (-693))))))) (-1168)) (T -80))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4064) (-4064 (QUOTE X)) (-693)))) (-5 *1 (-80 *3)) (-14 *3 (-1168)))))
+(-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064) (-4064 (QUOTE X)) (-693)))))))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 78) (((-3 $ "failed") (-1256 (-315 (-562)))) 67) (((-3 $ "failed") (-1256 (-947 (-378)))) 98) (((-3 $ "failed") (-1256 (-947 (-562)))) 88) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 56) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 43)) (-3960 (($ (-1256 (-315 (-378)))) 74) (($ (-1256 (-315 (-562)))) 63) (($ (-1256 (-947 (-378)))) 94) (($ (-1256 (-947 (-562)))) 84) (($ (-1256 (-406 (-947 (-378))))) 52) (($ (-1256 (-406 (-947 (-562))))) 36)) (-3218 (((-1261) $) 124)) (-4053 (((-857) $) 118) (($ (-639 (-329))) 109) (($ (-329)) 115) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 113) (($ (-1256 (-338 (-4064) (-4064 (QUOTE X)) (-693)))) 35)))
+(((-81 |#1|) (-13 (-440) (-612 (-1256 (-338 (-4064) (-4064 (QUOTE X)) (-693))))) (-1168)) (T -81))
+NIL
+(-13 (-440) (-612 (-1256 (-338 (-4064) (-4064 (QUOTE X)) (-693)))))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 95) (((-3 $ "failed") (-1256 (-315 (-562)))) 84) (((-3 $ "failed") (-1256 (-947 (-378)))) 115) (((-3 $ "failed") (-1256 (-947 (-562)))) 105) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 73) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 60)) (-3960 (($ (-1256 (-315 (-378)))) 91) (($ (-1256 (-315 (-562)))) 80) (($ (-1256 (-947 (-378)))) 111) (($ (-1256 (-947 (-562)))) 101) (($ (-1256 (-406 (-947 (-378))))) 69) (($ (-1256 (-406 (-947 (-562))))) 53)) (-3218 (((-1261) $) 45)) (-4053 (((-857) $) 39) (($ (-639 (-329))) 29) (($ (-329)) 32) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 35) (($ (-1256 (-338 (-4064 (QUOTE X) (QUOTE -3171)) (-4064) (-693)))) 30)))
+(((-82 |#1|) (-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE X) (QUOTE -3171)) (-4064) (-693))))))) (-1168)) (T -82))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4064 (QUOTE X) (QUOTE -3171)) (-4064) (-693)))) (-5 *1 (-82 *3)) (-14 *3 (-1168)))))
+(-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE X) (QUOTE -3171)) (-4064) (-693)))))))
+((-4048 (((-3 $ "failed") (-683 (-315 (-378)))) 115) (((-3 $ "failed") (-683 (-315 (-562)))) 104) (((-3 $ "failed") (-683 (-947 (-378)))) 137) (((-3 $ "failed") (-683 (-947 (-562)))) 126) (((-3 $ "failed") (-683 (-406 (-947 (-378))))) 93) (((-3 $ "failed") (-683 (-406 (-947 (-562))))) 80)) (-3960 (($ (-683 (-315 (-378)))) 111) (($ (-683 (-315 (-562)))) 100) (($ (-683 (-947 (-378)))) 133) (($ (-683 (-947 (-562)))) 122) (($ (-683 (-406 (-947 (-378))))) 89) (($ (-683 (-406 (-947 (-562))))) 73)) (-3218 (((-1261) $) 63)) (-4053 (((-857) $) 50) (($ (-639 (-329))) 57) (($ (-329)) 46) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 55) (($ (-683 (-338 (-4064 (QUOTE X) (QUOTE -3171)) (-4064) (-693)))) 47)))
+(((-83 |#1|) (-13 (-383) (-10 -8 (-15 -4053 ($ (-683 (-338 (-4064 (QUOTE X) (QUOTE -3171)) (-4064) (-693))))))) (-1168)) (T -83))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-683 (-338 (-4064 (QUOTE X) (QUOTE -3171)) (-4064) (-693)))) (-5 *1 (-83 *3)) (-14 *3 (-1168)))))
+(-13 (-383) (-10 -8 (-15 -4053 ($ (-683 (-338 (-4064 (QUOTE X) (QUOTE -3171)) (-4064) (-693)))))))
+((-4048 (((-3 $ "failed") (-683 (-315 (-378)))) 112) (((-3 $ "failed") (-683 (-315 (-562)))) 100) (((-3 $ "failed") (-683 (-947 (-378)))) 134) (((-3 $ "failed") (-683 (-947 (-562)))) 123) (((-3 $ "failed") (-683 (-406 (-947 (-378))))) 88) (((-3 $ "failed") (-683 (-406 (-947 (-562))))) 74)) (-3960 (($ (-683 (-315 (-378)))) 108) (($ (-683 (-315 (-562)))) 96) (($ (-683 (-947 (-378)))) 130) (($ (-683 (-947 (-562)))) 119) (($ (-683 (-406 (-947 (-378))))) 84) (($ (-683 (-406 (-947 (-562))))) 67)) (-3218 (((-1261) $) 59)) (-4053 (((-857) $) 53) (($ (-639 (-329))) 47) (($ (-329)) 50) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 44) (($ (-683 (-338 (-4064 (QUOTE X)) (-4064) (-693)))) 45)))
+(((-84 |#1|) (-13 (-383) (-10 -8 (-15 -4053 ($ (-683 (-338 (-4064 (QUOTE X)) (-4064) (-693))))))) (-1168)) (T -84))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-683 (-338 (-4064 (QUOTE X)) (-4064) (-693)))) (-5 *1 (-84 *3)) (-14 *3 (-1168)))))
+(-13 (-383) (-10 -8 (-15 -4053 ($ (-683 (-338 (-4064 (QUOTE X)) (-4064) (-693)))))))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 104) (((-3 $ "failed") (-1256 (-315 (-562)))) 93) (((-3 $ "failed") (-1256 (-947 (-378)))) 124) (((-3 $ "failed") (-1256 (-947 (-562)))) 114) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 82) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 69)) (-3960 (($ (-1256 (-315 (-378)))) 100) (($ (-1256 (-315 (-562)))) 89) (($ (-1256 (-947 (-378)))) 120) (($ (-1256 (-947 (-562)))) 110) (($ (-1256 (-406 (-947 (-378))))) 78) (($ (-1256 (-406 (-947 (-562))))) 62)) (-3218 (((-1261) $) 46)) (-4053 (((-857) $) 40) (($ (-639 (-329))) 49) (($ (-329)) 36) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 52) (($ (-1256 (-338 (-4064 (QUOTE X)) (-4064) (-693)))) 37)))
+(((-85 |#1|) (-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE X)) (-4064) (-693))))))) (-1168)) (T -85))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4064 (QUOTE X)) (-4064) (-693)))) (-5 *1 (-85 *3)) (-14 *3 (-1168)))))
+(-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE X)) (-4064) (-693)))))))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 79) (((-3 $ "failed") (-1256 (-315 (-562)))) 68) (((-3 $ "failed") (-1256 (-947 (-378)))) 99) (((-3 $ "failed") (-1256 (-947 (-562)))) 89) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 57) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 44)) (-3960 (($ (-1256 (-315 (-378)))) 75) (($ (-1256 (-315 (-562)))) 64) (($ (-1256 (-947 (-378)))) 95) (($ (-1256 (-947 (-562)))) 85) (($ (-1256 (-406 (-947 (-378))))) 53) (($ (-1256 (-406 (-947 (-562))))) 37)) (-3218 (((-1261) $) 125)) (-4053 (((-857) $) 119) (($ (-639 (-329))) 110) (($ (-329)) 116) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 114) (($ (-1256 (-338 (-4064 (QUOTE X)) (-4064 (QUOTE -3171)) (-693)))) 36)))
+(((-86 |#1|) (-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE X)) (-4064 (QUOTE -3171)) (-693))))))) (-1168)) (T -86))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-338 (-4064 (QUOTE X)) (-4064 (QUOTE -3171)) (-693)))) (-5 *1 (-86 *3)) (-14 *3 (-1168)))))
+(-13 (-440) (-10 -8 (-15 -4053 ($ (-1256 (-338 (-4064 (QUOTE X)) (-4064 (QUOTE -3171)) (-693)))))))
+((-4048 (((-3 $ "failed") (-683 (-315 (-378)))) 113) (((-3 $ "failed") (-683 (-315 (-562)))) 101) (((-3 $ "failed") (-683 (-947 (-378)))) 135) (((-3 $ "failed") (-683 (-947 (-562)))) 124) (((-3 $ "failed") (-683 (-406 (-947 (-378))))) 89) (((-3 $ "failed") (-683 (-406 (-947 (-562))))) 75)) (-3960 (($ (-683 (-315 (-378)))) 109) (($ (-683 (-315 (-562)))) 97) (($ (-683 (-947 (-378)))) 131) (($ (-683 (-947 (-562)))) 120) (($ (-683 (-406 (-947 (-378))))) 85) (($ (-683 (-406 (-947 (-562))))) 68)) (-3218 (((-1261) $) 59)) (-4053 (((-857) $) 53) (($ (-639 (-329))) 43) (($ (-329)) 50) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 48) (($ (-683 (-338 (-4064 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-4064) (-693)))) 44)))
+(((-87 |#1|) (-13 (-383) (-10 -8 (-15 -4053 ($ (-683 (-338 (-4064 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-4064) (-693))))))) (-1168)) (T -87))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-683 (-338 (-4064 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-4064) (-693)))) (-5 *1 (-87 *3)) (-14 *3 (-1168)))))
+(-13 (-383) (-10 -8 (-15 -4053 ($ (-683 (-338 (-4064 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-4064) (-693)))))))
+((-3218 (((-1261) $) 44)) (-4053 (((-857) $) 38) (($ (-1256 (-693))) 93) (($ (-639 (-329))) 30) (($ (-329)) 35) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 33)))
(((-88 |#1|) (-439) (-1168)) (T -88))
NIL
(-439)
-((-4048 (((-3 $ "failed") (-315 (-378))) 47) (((-3 $ "failed") (-315 (-562))) 52) (((-3 $ "failed") (-947 (-378))) 56) (((-3 $ "failed") (-947 (-562))) 60) (((-3 $ "failed") (-406 (-947 (-378)))) 42) (((-3 $ "failed") (-406 (-947 (-562)))) 35)) (-3961 (($ (-315 (-378))) 45) (($ (-315 (-562))) 50) (($ (-947 (-378))) 54) (($ (-947 (-562))) 58) (($ (-406 (-947 (-378)))) 40) (($ (-406 (-947 (-562)))) 32)) (-3219 (((-1261) $) 90)) (-4054 (((-857) $) 84) (($ (-639 (-329))) 78) (($ (-329)) 81) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 76) (($ (-338 (-4066 (QUOTE X)) (-4066 (QUOTE -3172)) (-693))) 31)))
-(((-89 |#1|) (-13 (-395) (-10 -8 (-15 -4054 ($ (-338 (-4066 (QUOTE X)) (-4066 (QUOTE -3172)) (-693)))))) (-1168)) (T -89))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-338 (-4066 (QUOTE X)) (-4066 (QUOTE -3172)) (-693))) (-5 *1 (-89 *3)) (-14 *3 (-1168)))))
-(-13 (-395) (-10 -8 (-15 -4054 ($ (-338 (-4066 (QUOTE X)) (-4066 (QUOTE -3172)) (-693))))))
-((-3829 (((-1256 (-683 |#1|)) (-683 |#1|)) 54)) (-2187 (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 (-639 (-916))))) |#2| (-916)) 44)) (-3346 (((-2 (|:| |minor| (-639 (-916))) (|:| -3342 |#2|) (|:| |minors| (-639 (-639 (-916)))) (|:| |ops| (-639 |#2|))) |#2| (-916)) 65 (|has| |#1| (-362)))))
-(((-90 |#1| |#2|) (-10 -7 (-15 -2187 ((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 (-639 (-916))))) |#2| (-916))) (-15 -3829 ((-1256 (-683 |#1|)) (-683 |#1|))) (IF (|has| |#1| (-362)) (-15 -3346 ((-2 (|:| |minor| (-639 (-916))) (|:| -3342 |#2|) (|:| |minors| (-639 (-639 (-916)))) (|:| |ops| (-639 |#2|))) |#2| (-916))) |%noBranch|)) (-554) (-650 |#1|)) (T -90))
-((-3346 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *5 (-554)) (-5 *2 (-2 (|:| |minor| (-639 (-916))) (|:| -3342 *3) (|:| |minors| (-639 (-639 (-916)))) (|:| |ops| (-639 *3)))) (-5 *1 (-90 *5 *3)) (-5 *4 (-916)) (-4 *3 (-650 *5)))) (-3829 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-1256 (-683 *4))) (-5 *1 (-90 *4 *5)) (-5 *3 (-683 *4)) (-4 *5 (-650 *4)))) (-2187 (*1 *2 *3 *4) (-12 (-4 *5 (-554)) (-5 *2 (-2 (|:| -1545 (-683 *5)) (|:| |vec| (-1256 (-639 (-916)))))) (-5 *1 (-90 *5 *3)) (-5 *4 (-916)) (-4 *3 (-650 *5)))))
-(-10 -7 (-15 -2187 ((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 (-639 (-916))))) |#2| (-916))) (-15 -3829 ((-1256 (-683 |#1|)) (-683 |#1|))) (IF (|has| |#1| (-362)) (-15 -3346 ((-2 (|:| |minor| (-639 (-916))) (|:| -3342 |#2|) (|:| |minors| (-639 (-639 (-916)))) (|:| |ops| (-639 |#2|))) |#2| (-916))) |%noBranch|))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2775 ((|#1| $) 35)) (-4336 (((-112) $ (-766)) NIL)) (-1800 (($) NIL T CONST)) (-2737 ((|#1| |#1| $) 30)) (-3064 ((|#1| $) 28)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3262 ((|#1| $) NIL)) (-4300 (($ |#1| $) 31)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1904 ((|#1| $) 29)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 16)) (-4307 (($) 39)) (-2193 (((-766) $) 26)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) 15)) (-4054 (((-857) $) 25 (|has| |#1| (-609 (-857))))) (-1932 (($ (-639 |#1|)) NIL)) (-2609 (($ (-639 |#1|)) 37)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 13 (|has| |#1| (-1092)))) (-3492 (((-766) $) 10 (|has| $ (-6 -4402)))))
-(((-91 |#1|) (-13 (-1113 |#1|) (-10 -8 (-15 -2609 ($ (-639 |#1|))))) (-1092)) (T -91))
-((-2609 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-91 *3)))))
-(-13 (-1113 |#1|) (-10 -8 (-15 -2609 ($ (-639 |#1|)))))
-((-4054 (((-857) $) 13) (($ (-1173)) 9) (((-1173) $) 8)))
-(((-92 |#1|) (-10 -8 (-15 -4054 ((-1173) |#1|)) (-15 -4054 (|#1| (-1173))) (-15 -4054 ((-857) |#1|))) (-93)) (T -92))
-NIL
-(-10 -8 (-15 -4054 ((-1173) |#1|)) (-15 -4054 (|#1| (-1173))) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-1173)) 16) (((-1173) $) 15)) (-1731 (((-112) $ $) 6)))
+((-4048 (((-3 $ "failed") (-315 (-378))) 47) (((-3 $ "failed") (-315 (-562))) 52) (((-3 $ "failed") (-947 (-378))) 56) (((-3 $ "failed") (-947 (-562))) 60) (((-3 $ "failed") (-406 (-947 (-378)))) 42) (((-3 $ "failed") (-406 (-947 (-562)))) 35)) (-3960 (($ (-315 (-378))) 45) (($ (-315 (-562))) 50) (($ (-947 (-378))) 54) (($ (-947 (-562))) 58) (($ (-406 (-947 (-378)))) 40) (($ (-406 (-947 (-562)))) 32)) (-3218 (((-1261) $) 90)) (-4053 (((-857) $) 84) (($ (-639 (-329))) 78) (($ (-329)) 81) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 76) (($ (-338 (-4064 (QUOTE X)) (-4064 (QUOTE -3171)) (-693))) 31)))
+(((-89 |#1|) (-13 (-395) (-10 -8 (-15 -4053 ($ (-338 (-4064 (QUOTE X)) (-4064 (QUOTE -3171)) (-693)))))) (-1168)) (T -89))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-338 (-4064 (QUOTE X)) (-4064 (QUOTE -3171)) (-693))) (-5 *1 (-89 *3)) (-14 *3 (-1168)))))
+(-13 (-395) (-10 -8 (-15 -4053 ($ (-338 (-4064 (QUOTE X)) (-4064 (QUOTE -3171)) (-693))))))
+((-2669 (((-1256 (-683 |#1|)) (-683 |#1|)) 54)) (-1961 (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 (-639 (-916))))) |#2| (-916)) 44)) (-1570 (((-2 (|:| |minor| (-639 (-916))) (|:| -3339 |#2|) (|:| |minors| (-639 (-639 (-916)))) (|:| |ops| (-639 |#2|))) |#2| (-916)) 65 (|has| |#1| (-362)))))
+(((-90 |#1| |#2|) (-10 -7 (-15 -1961 ((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 (-639 (-916))))) |#2| (-916))) (-15 -2669 ((-1256 (-683 |#1|)) (-683 |#1|))) (IF (|has| |#1| (-362)) (-15 -1570 ((-2 (|:| |minor| (-639 (-916))) (|:| -3339 |#2|) (|:| |minors| (-639 (-639 (-916)))) (|:| |ops| (-639 |#2|))) |#2| (-916))) |%noBranch|)) (-554) (-650 |#1|)) (T -90))
+((-1570 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *5 (-554)) (-5 *2 (-2 (|:| |minor| (-639 (-916))) (|:| -3339 *3) (|:| |minors| (-639 (-639 (-916)))) (|:| |ops| (-639 *3)))) (-5 *1 (-90 *5 *3)) (-5 *4 (-916)) (-4 *3 (-650 *5)))) (-2669 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-1256 (-683 *4))) (-5 *1 (-90 *4 *5)) (-5 *3 (-683 *4)) (-4 *5 (-650 *4)))) (-1961 (*1 *2 *3 *4) (-12 (-4 *5 (-554)) (-5 *2 (-2 (|:| -1767 (-683 *5)) (|:| |vec| (-1256 (-639 (-916)))))) (-5 *1 (-90 *5 *3)) (-5 *4 (-916)) (-4 *3 (-650 *5)))))
+(-10 -7 (-15 -1961 ((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 (-639 (-916))))) |#2| (-916))) (-15 -2669 ((-1256 (-683 |#1|)) (-683 |#1|))) (IF (|has| |#1| (-362)) (-15 -1570 ((-2 (|:| |minor| (-639 (-916))) (|:| -3339 |#2|) (|:| |minors| (-639 (-639 (-916)))) (|:| |ops| (-639 |#2|))) |#2| (-916))) |%noBranch|))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2774 ((|#1| $) 35)) (-3735 (((-112) $ (-766)) NIL)) (-3329 (($) NIL T CONST)) (-2571 ((|#1| |#1| $) 30)) (-3767 ((|#1| $) 28)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-2078 ((|#1| $) NIL)) (-1581 (($ |#1| $) 31)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2038 ((|#1| $) 29)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 16)) (-1663 (($) 39)) (-2191 (((-766) $) 26)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) 15)) (-4053 (((-857) $) 25 (|has| |#1| (-609 (-857))))) (-4131 (($ (-639 |#1|)) NIL)) (-3689 (($ (-639 |#1|)) 37)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 13 (|has| |#1| (-1092)))) (-3492 (((-766) $) 10 (|has| $ (-6 -4403)))))
+(((-91 |#1|) (-13 (-1113 |#1|) (-10 -8 (-15 -3689 ($ (-639 |#1|))))) (-1092)) (T -91))
+((-3689 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-91 *3)))))
+(-13 (-1113 |#1|) (-10 -8 (-15 -3689 ($ (-639 |#1|)))))
+((-4053 (((-857) $) 13) (($ (-1173)) 9) (((-1173) $) 8)))
+(((-92 |#1|) (-10 -8 (-15 -4053 ((-1173) |#1|)) (-15 -4053 (|#1| (-1173))) (-15 -4053 ((-857) |#1|))) (-93)) (T -92))
+NIL
+(-10 -8 (-15 -4053 ((-1173) |#1|)) (-15 -4053 (|#1| (-1173))) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-1173)) 16) (((-1173) $) 15)) (-1733 (((-112) $ $) 6)))
(((-93) (-139)) (T -93))
NIL
(-13 (-1092) (-489 (-1173)))
(((-102) . T) ((-612 #0=(-1173)) . T) ((-609 (-857)) . T) ((-609 #0#) . T) ((-489 #0#) . T) ((-1092) . T))
-((-4182 (($ $) 10)) (-4195 (($ $) 12)))
-(((-94 |#1|) (-10 -8 (-15 -4195 (|#1| |#1|)) (-15 -4182 (|#1| |#1|))) (-95)) (T -94))
+((-4183 (($ $) 10)) (-4195 (($ $) 12)))
+(((-94 |#1|) (-10 -8 (-15 -4195 (|#1| |#1|)) (-15 -4183 (|#1| |#1|))) (-95)) (T -94))
NIL
-(-10 -8 (-15 -4195 (|#1| |#1|)) (-15 -4182 (|#1| |#1|)))
-((-4165 (($ $) 11)) (-4138 (($ $) 10)) (-4182 (($ $) 9)) (-4195 (($ $) 8)) (-4174 (($ $) 7)) (-4151 (($ $) 6)))
+(-10 -8 (-15 -4195 (|#1| |#1|)) (-15 -4183 (|#1| |#1|)))
+((-4165 (($ $) 11)) (-4139 (($ $) 10)) (-4183 (($ $) 9)) (-4195 (($ $) 8)) (-4175 (($ $) 7)) (-4151 (($ $) 6)))
(((-95) (-139)) (T -95))
-((-4165 (*1 *1 *1) (-4 *1 (-95))) (-4138 (*1 *1 *1) (-4 *1 (-95))) (-4182 (*1 *1 *1) (-4 *1 (-95))) (-4195 (*1 *1 *1) (-4 *1 (-95))) (-4174 (*1 *1 *1) (-4 *1 (-95))) (-4151 (*1 *1 *1) (-4 *1 (-95))))
-(-13 (-10 -8 (-15 -4151 ($ $)) (-15 -4174 ($ $)) (-15 -4195 ($ $)) (-15 -4182 ($ $)) (-15 -4138 ($ $)) (-15 -4165 ($ $))))
-((-4041 (((-112) $ $) NIL)) (-3254 (((-1127) $) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-96) (-13 (-1075) (-10 -8 (-15 -3254 ((-1127) $))))) (T -96))
-((-3254 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-96)))))
-(-13 (-1075) (-10 -8 (-15 -3254 ((-1127) $))))
-((-4041 (((-112) $ $) NIL)) (-3477 (((-378) (-1150) (-378)) 42) (((-378) (-1150) (-1150) (-378)) 41)) (-2259 (((-378) (-378)) 33)) (-4049 (((-1261)) 36)) (-2913 (((-1150) $) NIL)) (-1690 (((-378) (-1150) (-1150)) 46) (((-378) (-1150)) 48)) (-1709 (((-1112) $) NIL)) (-2830 (((-378) (-1150) (-1150)) 47)) (-1678 (((-378) (-1150) (-1150)) 49) (((-378) (-1150)) 50)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-97) (-13 (-1092) (-10 -7 (-15 -1690 ((-378) (-1150) (-1150))) (-15 -1690 ((-378) (-1150))) (-15 -1678 ((-378) (-1150) (-1150))) (-15 -1678 ((-378) (-1150))) (-15 -2830 ((-378) (-1150) (-1150))) (-15 -4049 ((-1261))) (-15 -2259 ((-378) (-378))) (-15 -3477 ((-378) (-1150) (-378))) (-15 -3477 ((-378) (-1150) (-1150) (-378))) (-6 -4402)))) (T -97))
-((-1690 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))) (-1690 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))) (-1678 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))) (-1678 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))) (-2830 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))) (-4049 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-97)))) (-2259 (*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-97)))) (-3477 (*1 *2 *3 *2) (-12 (-5 *2 (-378)) (-5 *3 (-1150)) (-5 *1 (-97)))) (-3477 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-378)) (-5 *3 (-1150)) (-5 *1 (-97)))))
-(-13 (-1092) (-10 -7 (-15 -1690 ((-378) (-1150) (-1150))) (-15 -1690 ((-378) (-1150))) (-15 -1678 ((-378) (-1150) (-1150))) (-15 -1678 ((-378) (-1150))) (-15 -2830 ((-378) (-1150) (-1150))) (-15 -4049 ((-1261))) (-15 -2259 ((-378) (-378))) (-15 -3477 ((-378) (-1150) (-378))) (-15 -3477 ((-378) (-1150) (-1150) (-378))) (-6 -4402)))
+((-4165 (*1 *1 *1) (-4 *1 (-95))) (-4139 (*1 *1 *1) (-4 *1 (-95))) (-4183 (*1 *1 *1) (-4 *1 (-95))) (-4195 (*1 *1 *1) (-4 *1 (-95))) (-4175 (*1 *1 *1) (-4 *1 (-95))) (-4151 (*1 *1 *1) (-4 *1 (-95))))
+(-13 (-10 -8 (-15 -4151 ($ $)) (-15 -4175 ($ $)) (-15 -4195 ($ $)) (-15 -4183 ($ $)) (-15 -4139 ($ $)) (-15 -4165 ($ $))))
+((-4041 (((-112) $ $) NIL)) (-3253 (((-1127) $) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-96) (-13 (-1075) (-10 -8 (-15 -3253 ((-1127) $))))) (T -96))
+((-3253 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-96)))))
+(-13 (-1075) (-10 -8 (-15 -3253 ((-1127) $))))
+((-4041 (((-112) $ $) NIL)) (-3439 (((-378) (-1150) (-378)) 42) (((-378) (-1150) (-1150) (-378)) 41)) (-1375 (((-378) (-378)) 33)) (-4181 (((-1261)) 36)) (-3696 (((-1150) $) NIL)) (-3581 (((-378) (-1150) (-1150)) 46) (((-378) (-1150)) 48)) (-1709 (((-1112) $) NIL)) (-2304 (((-378) (-1150) (-1150)) 47)) (-3485 (((-378) (-1150) (-1150)) 49) (((-378) (-1150)) 50)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-97) (-13 (-1092) (-10 -7 (-15 -3581 ((-378) (-1150) (-1150))) (-15 -3581 ((-378) (-1150))) (-15 -3485 ((-378) (-1150) (-1150))) (-15 -3485 ((-378) (-1150))) (-15 -2304 ((-378) (-1150) (-1150))) (-15 -4181 ((-1261))) (-15 -1375 ((-378) (-378))) (-15 -3439 ((-378) (-1150) (-378))) (-15 -3439 ((-378) (-1150) (-1150) (-378))) (-6 -4403)))) (T -97))
+((-3581 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))) (-3581 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))) (-3485 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))) (-3485 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))) (-2304 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))) (-4181 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-97)))) (-1375 (*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-97)))) (-3439 (*1 *2 *3 *2) (-12 (-5 *2 (-378)) (-5 *3 (-1150)) (-5 *1 (-97)))) (-3439 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-378)) (-5 *3 (-1150)) (-5 *1 (-97)))))
+(-13 (-1092) (-10 -7 (-15 -3581 ((-378) (-1150) (-1150))) (-15 -3581 ((-378) (-1150))) (-15 -3485 ((-378) (-1150) (-1150))) (-15 -3485 ((-378) (-1150))) (-15 -2304 ((-378) (-1150) (-1150))) (-15 -4181 ((-1261))) (-15 -1375 ((-378) (-378))) (-15 -3439 ((-378) (-1150) (-378))) (-15 -3439 ((-378) (-1150) (-1150) (-378))) (-6 -4403)))
NIL
(((-98) (-139)) (T -98))
NIL
-(-13 (-10 -7 (-6 -4402) (-6 (-4404 "*")) (-6 -4403) (-6 -4399) (-6 -4397) (-6 -4396) (-6 -4395) (-6 -4400) (-6 -4394) (-6 -4393) (-6 -4392) (-6 -4391) (-6 -4390) (-6 -4398) (-6 -4401) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4389)))
-((-4041 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) NIL)) (-1957 (((-112) $) NIL)) (-3224 (($ (-1 |#1| |#1|)) 25) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 24) (($ (-1 |#1| |#1| (-562))) 22)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 14)) (-1709 (((-1112) $) NIL)) (-2343 ((|#1| $ |#1|) 11)) (-3665 (($ $ $) NIL)) (-1911 (($ $ $) NIL)) (-4054 (((-857) $) 20)) (-2294 (($) 8 T CONST)) (-1731 (((-112) $ $) 10)) (-1859 (($ $ $) NIL)) (** (($ $ (-916)) 27) (($ $ (-766)) NIL) (($ $ (-562)) 16)) (* (($ $ $) 28)))
-(((-99 |#1|) (-13 (-472) (-285 |#1| |#1|) (-10 -8 (-15 -3224 ($ (-1 |#1| |#1|))) (-15 -3224 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -3224 ($ (-1 |#1| |#1| (-562)))))) (-1044)) (T -99))
-((-3224 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-99 *3)))) (-3224 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-99 *3)))) (-3224 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-562))) (-4 *3 (-1044)) (-5 *1 (-99 *3)))))
-(-13 (-472) (-285 |#1| |#1|) (-10 -8 (-15 -3224 ($ (-1 |#1| |#1|))) (-15 -3224 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -3224 ($ (-1 |#1| |#1| (-562))))))
-((-2969 (((-417 |#2|) |#2| (-639 |#2|)) 10) (((-417 |#2|) |#2| |#2|) 11)))
-(((-100 |#1| |#2|) (-10 -7 (-15 -2969 ((-417 |#2|) |#2| |#2|)) (-15 -2969 ((-417 |#2|) |#2| (-639 |#2|)))) (-13 (-451) (-146)) (-1232 |#1|)) (T -100))
-((-2969 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-13 (-451) (-146))) (-5 *2 (-417 *3)) (-5 *1 (-100 *5 *3)))) (-2969 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-451) (-146))) (-5 *2 (-417 *3)) (-5 *1 (-100 *4 *3)) (-4 *3 (-1232 *4)))))
-(-10 -7 (-15 -2969 ((-417 |#2|) |#2| |#2|)) (-15 -2969 ((-417 |#2|) |#2| (-639 |#2|))))
+(-13 (-10 -7 (-6 -4403) (-6 (-4405 "*")) (-6 -4404) (-6 -4400) (-6 -4398) (-6 -4397) (-6 -4396) (-6 -4401) (-6 -4395) (-6 -4394) (-6 -4393) (-6 -4392) (-6 -4391) (-6 -4399) (-6 -4402) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4390)))
+((-4041 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) NIL)) (-4367 (((-112) $) NIL)) (-2853 (($ (-1 |#1| |#1|)) 25) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 24) (($ (-1 |#1| |#1| (-562))) 22)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 14)) (-1709 (((-1112) $) NIL)) (-2343 ((|#1| $ |#1|) 11)) (-1660 (($ $ $) NIL)) (-2114 (($ $ $) NIL)) (-4053 (((-857) $) 20)) (-2294 (($) 8 T CONST)) (-1733 (((-112) $ $) 10)) (-1859 (($ $ $) NIL)) (** (($ $ (-916)) 27) (($ $ (-766)) NIL) (($ $ (-562)) 16)) (* (($ $ $) 28)))
+(((-99 |#1|) (-13 (-472) (-285 |#1| |#1|) (-10 -8 (-15 -2853 ($ (-1 |#1| |#1|))) (-15 -2853 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -2853 ($ (-1 |#1| |#1| (-562)))))) (-1044)) (T -99))
+((-2853 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-99 *3)))) (-2853 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-99 *3)))) (-2853 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-562))) (-4 *3 (-1044)) (-5 *1 (-99 *3)))))
+(-13 (-472) (-285 |#1| |#1|) (-10 -8 (-15 -2853 ($ (-1 |#1| |#1|))) (-15 -2853 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -2853 ($ (-1 |#1| |#1| (-562))))))
+((-3028 (((-417 |#2|) |#2| (-639 |#2|)) 10) (((-417 |#2|) |#2| |#2|) 11)))
+(((-100 |#1| |#2|) (-10 -7 (-15 -3028 ((-417 |#2|) |#2| |#2|)) (-15 -3028 ((-417 |#2|) |#2| (-639 |#2|)))) (-13 (-451) (-146)) (-1232 |#1|)) (T -100))
+((-3028 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-13 (-451) (-146))) (-5 *2 (-417 *3)) (-5 *1 (-100 *5 *3)))) (-3028 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-451) (-146))) (-5 *2 (-417 *3)) (-5 *1 (-100 *4 *3)) (-4 *3 (-1232 *4)))))
+(-10 -7 (-15 -3028 ((-417 |#2|) |#2| |#2|)) (-15 -3028 ((-417 |#2|) |#2| (-639 |#2|))))
((-4041 (((-112) $ $) 9)))
(((-101 |#1|) (-10 -8 (-15 -4041 ((-112) |#1| |#1|))) (-102)) (T -101))
NIL
(-10 -8 (-15 -4041 ((-112) |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) 7)) (-1733 (((-112) $ $) 6)))
(((-102) (-139)) (T -102))
-((-4041 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))) (-1731 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))))
-(-13 (-10 -8 (-15 -1731 ((-112) $ $)) (-15 -4041 ((-112) $ $))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2534 ((|#1| $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-1512 ((|#1| $ |#1|) 13 (|has| $ (-6 -4403)))) (-1718 (($ $ $) NIL (|has| $ (-6 -4403)))) (-3225 (($ $ $) NIL (|has| $ (-6 -4403)))) (-3510 (($ $ (-639 |#1|)) 15)) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4403))) (($ $ "left" $) NIL (|has| $ (-6 -4403))) (($ $ "right" $) NIL (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) NIL (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-1602 (($ $) 11)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) NIL)) (-4379 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3531 (($ $ |#1| $) 17)) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1582 ((|#1| $ (-1 |#1| |#1| |#1|)) 25) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 30)) (-1686 (($ $ |#1| (-1 |#1| |#1| |#1|)) 31) (($ $ |#1| (-1 (-639 |#1|) |#1| |#1| |#1|)) 35)) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-1588 (($ $) 10)) (-4007 (((-639 |#1|) $) NIL)) (-3449 (((-112) $) 12)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 9)) (-4307 (($) 16)) (-2343 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2568 (((-562) $ $) NIL)) (-2424 (((-112) $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) NIL)) (-4055 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1978 (($ (-766) |#1|) 19)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-103 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4402) (-6 -4403) (-15 -1978 ($ (-766) |#1|)) (-15 -3510 ($ $ (-639 |#1|))) (-15 -1582 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -1582 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -1686 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -1686 ($ $ |#1| (-1 (-639 |#1|) |#1| |#1| |#1|))))) (-1092)) (T -103))
-((-1978 (*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *1 (-103 *3)) (-4 *3 (-1092)))) (-3510 (*1 *1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-103 *3)))) (-1582 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1092)))) (-1582 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-103 *3)))) (-1686 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1092)) (-5 *1 (-103 *2)))) (-1686 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-639 *2) *2 *2 *2)) (-4 *2 (-1092)) (-5 *1 (-103 *2)))))
-(-13 (-125 |#1|) (-10 -8 (-6 -4402) (-6 -4403) (-15 -1978 ($ (-766) |#1|)) (-15 -3510 ($ $ (-639 |#1|))) (-15 -1582 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -1582 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -1686 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -1686 ($ $ |#1| (-1 (-639 |#1|) |#1| |#1| |#1|)))))
-((-2477 ((|#3| |#2| |#2|) 28)) (-4202 ((|#1| |#2| |#2|) 39 (|has| |#1| (-6 (-4404 "*"))))) (-2292 ((|#3| |#2| |#2|) 29)) (-1823 ((|#1| |#2|) 42 (|has| |#1| (-6 (-4404 "*"))))))
-(((-104 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2477 (|#3| |#2| |#2|)) (-15 -2292 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4404 "*"))) (PROGN (-15 -4202 (|#1| |#2| |#2|)) (-15 -1823 (|#1| |#2|))) |%noBranch|)) (-1044) (-1232 |#1|) (-681 |#1| |#4| |#5|) (-372 |#1|) (-372 |#1|)) (T -104))
-((-1823 (*1 *2 *3) (-12 (|has| *2 (-6 (-4404 "*"))) (-4 *5 (-372 *2)) (-4 *6 (-372 *2)) (-4 *2 (-1044)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1232 *2)) (-4 *4 (-681 *2 *5 *6)))) (-4202 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4404 "*"))) (-4 *5 (-372 *2)) (-4 *6 (-372 *2)) (-4 *2 (-1044)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1232 *2)) (-4 *4 (-681 *2 *5 *6)))) (-2292 (*1 *2 *3 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-681 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1232 *4)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)))) (-2477 (*1 *2 *3 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-681 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1232 *4)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)))))
-(-10 -7 (-15 -2477 (|#3| |#2| |#2|)) (-15 -2292 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4404 "*"))) (PROGN (-15 -4202 (|#1| |#2| |#2|)) (-15 -1823 (|#1| |#2|))) |%noBranch|))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-3352 (((-639 (-1168))) 33)) (-3456 (((-2 (|:| |zeros| (-1148 (-224))) (|:| |ones| (-1148 (-224))) (|:| |singularities| (-1148 (-224)))) (-1168)) 35)) (-1731 (((-112) $ $) NIL)))
-(((-105) (-13 (-1092) (-10 -7 (-15 -3352 ((-639 (-1168)))) (-15 -3456 ((-2 (|:| |zeros| (-1148 (-224))) (|:| |ones| (-1148 (-224))) (|:| |singularities| (-1148 (-224)))) (-1168))) (-6 -4402)))) (T -105))
-((-3352 (*1 *2) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-105)))) (-3456 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-2 (|:| |zeros| (-1148 (-224))) (|:| |ones| (-1148 (-224))) (|:| |singularities| (-1148 (-224))))) (-5 *1 (-105)))))
-(-13 (-1092) (-10 -7 (-15 -3352 ((-639 (-1168)))) (-15 -3456 ((-2 (|:| |zeros| (-1148 (-224))) (|:| |ones| (-1148 (-224))) (|:| |singularities| (-1148 (-224)))) (-1168))) (-6 -4402)))
-((-1932 (($ (-639 |#2|)) 11)))
-(((-106 |#1| |#2|) (-10 -8 (-15 -1932 (|#1| (-639 |#2|)))) (-107 |#2|) (-1207)) (T -106))
-NIL
-(-10 -8 (-15 -1932 (|#1| (-639 |#2|))))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) 8)) (-1800 (($) 7 T CONST)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3262 ((|#1| $) 39)) (-4300 (($ |#1| $) 40)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1904 ((|#1| $) 41)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1932 (($ (-639 |#1|)) 42)) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))) (-1733 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))))
+(-13 (-10 -8 (-15 -1733 ((-112) $ $)) (-15 -4041 ((-112) $ $))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2533 ((|#1| $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-2677 ((|#1| $ |#1|) 13 (|has| $ (-6 -4404)))) (-3853 (($ $ $) NIL (|has| $ (-6 -4404)))) (-2861 (($ $ $) NIL (|has| $ (-6 -4404)))) (-2614 (($ $ (-639 |#1|)) 15)) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4404))) (($ $ "left" $) NIL (|has| $ (-6 -4404))) (($ $ "right" $) NIL (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) NIL (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-1603 (($ $) 11)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) NIL)) (-4188 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3532 (($ $ |#1| $) 17)) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2100 ((|#1| $ (-1 |#1| |#1| |#1|)) 25) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 30)) (-3553 (($ $ |#1| (-1 |#1| |#1| |#1|)) 31) (($ $ |#1| (-1 (-639 |#1|) |#1| |#1| |#1|)) 35)) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-1589 (($ $) 10)) (-4008 (((-639 |#1|) $) NIL)) (-3179 (((-112) $) 12)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 9)) (-1663 (($) 16)) (-2343 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1423 (((-562) $ $) NIL)) (-2473 (((-112) $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) NIL)) (-2985 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1490 (($ (-766) |#1|) 19)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-103 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4403) (-6 -4404) (-15 -1490 ($ (-766) |#1|)) (-15 -2614 ($ $ (-639 |#1|))) (-15 -2100 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2100 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -3553 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -3553 ($ $ |#1| (-1 (-639 |#1|) |#1| |#1| |#1|))))) (-1092)) (T -103))
+((-1490 (*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *1 (-103 *3)) (-4 *3 (-1092)))) (-2614 (*1 *1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-103 *3)))) (-2100 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1092)))) (-2100 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-103 *3)))) (-3553 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1092)) (-5 *1 (-103 *2)))) (-3553 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-639 *2) *2 *2 *2)) (-4 *2 (-1092)) (-5 *1 (-103 *2)))))
+(-13 (-125 |#1|) (-10 -8 (-6 -4403) (-6 -4404) (-15 -1490 ($ (-766) |#1|)) (-15 -2614 ($ $ (-639 |#1|))) (-15 -2100 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2100 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -3553 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -3553 ($ $ |#1| (-1 (-639 |#1|) |#1| |#1| |#1|)))))
+((-1758 ((|#3| |#2| |#2|) 28)) (-1881 ((|#1| |#2| |#2|) 39 (|has| |#1| (-6 (-4405 "*"))))) (-3564 ((|#3| |#2| |#2|) 29)) (-2410 ((|#1| |#2|) 42 (|has| |#1| (-6 (-4405 "*"))))))
+(((-104 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1758 (|#3| |#2| |#2|)) (-15 -3564 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4405 "*"))) (PROGN (-15 -1881 (|#1| |#2| |#2|)) (-15 -2410 (|#1| |#2|))) |%noBranch|)) (-1044) (-1232 |#1|) (-681 |#1| |#4| |#5|) (-372 |#1|) (-372 |#1|)) (T -104))
+((-2410 (*1 *2 *3) (-12 (|has| *2 (-6 (-4405 "*"))) (-4 *5 (-372 *2)) (-4 *6 (-372 *2)) (-4 *2 (-1044)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1232 *2)) (-4 *4 (-681 *2 *5 *6)))) (-1881 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4405 "*"))) (-4 *5 (-372 *2)) (-4 *6 (-372 *2)) (-4 *2 (-1044)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1232 *2)) (-4 *4 (-681 *2 *5 *6)))) (-3564 (*1 *2 *3 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-681 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1232 *4)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)))) (-1758 (*1 *2 *3 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-681 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1232 *4)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)))))
+(-10 -7 (-15 -1758 (|#3| |#2| |#2|)) (-15 -3564 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4405 "*"))) (PROGN (-15 -1881 (|#1| |#2| |#2|)) (-15 -2410 (|#1| |#2|))) |%noBranch|))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1641 (((-639 (-1168))) 33)) (-3254 (((-2 (|:| |zeros| (-1148 (-224))) (|:| |ones| (-1148 (-224))) (|:| |singularities| (-1148 (-224)))) (-1168)) 35)) (-1733 (((-112) $ $) NIL)))
+(((-105) (-13 (-1092) (-10 -7 (-15 -1641 ((-639 (-1168)))) (-15 -3254 ((-2 (|:| |zeros| (-1148 (-224))) (|:| |ones| (-1148 (-224))) (|:| |singularities| (-1148 (-224)))) (-1168))) (-6 -4403)))) (T -105))
+((-1641 (*1 *2) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-105)))) (-3254 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-2 (|:| |zeros| (-1148 (-224))) (|:| |ones| (-1148 (-224))) (|:| |singularities| (-1148 (-224))))) (-5 *1 (-105)))))
+(-13 (-1092) (-10 -7 (-15 -1641 ((-639 (-1168)))) (-15 -3254 ((-2 (|:| |zeros| (-1148 (-224))) (|:| |ones| (-1148 (-224))) (|:| |singularities| (-1148 (-224)))) (-1168))) (-6 -4403)))
+((-4131 (($ (-639 |#2|)) 11)))
+(((-106 |#1| |#2|) (-10 -8 (-15 -4131 (|#1| (-639 |#2|)))) (-107 |#2|) (-1207)) (T -106))
+NIL
+(-10 -8 (-15 -4131 (|#1| (-639 |#2|))))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) 8)) (-3329 (($) 7 T CONST)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-2078 ((|#1| $) 39)) (-1581 (($ |#1| $) 40)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-2038 ((|#1| $) 41)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-4131 (($ (-639 |#1|)) 42)) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-107 |#1|) (-139) (-1207)) (T -107))
-((-1932 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-4 *1 (-107 *3)))) (-1904 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1207)))) (-4300 (*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1207)))) (-3262 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1207)))))
-(-13 (-488 |t#1|) (-10 -8 (-6 -4403) (-15 -1932 ($ (-639 |t#1|))) (-15 -1904 (|t#1| $)) (-15 -4300 ($ |t#1| $)) (-15 -3262 (|t#1| $))))
+((-4131 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-4 *1 (-107 *3)))) (-2038 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1207)))) (-1581 (*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1207)))) (-2078 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1207)))))
+(-13 (-488 |t#1|) (-10 -8 (-6 -4404) (-15 -4131 ($ (-639 |t#1|))) (-15 -2038 (|t#1| $)) (-15 -1581 ($ |t#1| $)) (-15 -2078 (|t#1| $))))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-4246 (((-562) $) NIL (|has| (-562) (-306)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL (|has| (-562) (-815)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| (-562) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-562) (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| (-562) (-1033 (-562))))) (-3961 (((-562) $) NIL) (((-1168) $) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-562) (-1033 (-562)))) (((-562) $) NIL (|has| (-562) (-1033 (-562))))) (-1811 (($ $ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| (-562) (-544)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3519 (((-112) $) NIL (|has| (-562) (-815)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-562) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-562) (-881 (-378))))) (-1957 (((-112) $) NIL)) (-3425 (($ $) NIL)) (-4065 (((-562) $) NIL)) (-3699 (((-3 $ "failed") $) NIL (|has| (-562) (-1143)))) (-3392 (((-112) $) NIL (|has| (-562) (-815)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-562) (-845)))) (-4152 (($ (-1 (-562) (-562)) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| (-562) (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2736 (($ $) NIL (|has| (-562) (-306))) (((-406 (-562)) $) NIL)) (-4014 (((-562) $) NIL (|has| (-562) (-544)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-562)) (-639 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-562) (-562)) NIL (|has| (-562) (-308 (-562)))) (($ $ (-293 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-293 (-562)))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-1168)) (-639 (-562))) NIL (|has| (-562) (-513 (-1168) (-562)))) (($ $ (-1168) (-562)) NIL (|has| (-562) (-513 (-1168) (-562))))) (-1577 (((-766) $) NIL)) (-2343 (($ $ (-562)) NIL (|has| (-562) (-285 (-562) (-562))))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-3658 (($ $) NIL)) (-4076 (((-562) $) NIL)) (-4208 (((-887 (-562)) $) NIL (|has| (-562) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-562) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-562) (-610 (-535)))) (((-378) $) NIL (|has| (-562) (-1017))) (((-224) $) NIL (|has| (-562) (-1017)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-562) (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) 8) (($ (-562)) NIL) (($ (-1168)) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL) (((-999 2) $) 10)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-562) (-904))) (|has| (-562) (-144))))) (-2579 (((-766)) NIL)) (-2604 (((-562) $) NIL (|has| (-562) (-544)))) (-4269 (($ (-406 (-562))) 9)) (-2922 (((-112) $ $) NIL)) (-3526 (($ $) NIL (|has| (-562) (-815)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1772 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1759 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1859 (($ $ $) NIL) (($ (-562) (-562)) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-562) $) NIL) (($ $ (-562)) NIL)))
-(((-108) (-13 (-987 (-562)) (-609 (-406 (-562))) (-609 (-999 2)) (-10 -8 (-15 -2736 ((-406 (-562)) $)) (-15 -4269 ($ (-406 (-562))))))) (T -108))
-((-2736 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-108)))) (-4269 (*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-108)))))
-(-13 (-987 (-562)) (-609 (-406 (-562))) (-609 (-999 2)) (-10 -8 (-15 -2736 ((-406 (-562)) $)) (-15 -4269 ($ (-406 (-562))))))
-((-3806 (((-639 (-960)) $) 14)) (-3254 (((-1168) $) 10)) (-4054 (((-857) $) 23)) (-1864 (($ (-1168) (-639 (-960))) 15)))
-(((-109) (-13 (-609 (-857)) (-10 -8 (-15 -3254 ((-1168) $)) (-15 -3806 ((-639 (-960)) $)) (-15 -1864 ($ (-1168) (-639 (-960))))))) (T -109))
-((-3254 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-109)))) (-3806 (*1 *2 *1) (-12 (-5 *2 (-639 (-960))) (-5 *1 (-109)))) (-1864 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-960))) (-5 *1 (-109)))))
-(-13 (-609 (-857)) (-10 -8 (-15 -3254 ((-1168) $)) (-15 -3806 ((-639 (-960)) $)) (-15 -1864 ($ (-1168) (-639 (-960))))))
-((-4041 (((-112) $ $) NIL)) (-3295 (($ $) NIL)) (-2265 (($ $ $) NIL)) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) $) NIL (|has| (-112) (-845))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-3381 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-845)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4403)))) (-1395 (($ $) NIL (|has| (-112) (-845))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-4200 (((-112) $ (-1223 (-562)) (-112)) NIL (|has| $ (-6 -4403))) (((-112) $ (-562) (-112)) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092))))) (-1475 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4402))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092))))) (-1955 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092))))) (-1505 (((-112) $ (-562) (-112)) NIL (|has| $ (-6 -4403)))) (-1420 (((-112) $ (-562)) NIL)) (-4264 (((-562) (-112) $ (-562)) NIL (|has| (-112) (-1092))) (((-562) (-112) $) NIL (|has| (-112) (-1092))) (((-562) (-1 (-112) (-112)) $) NIL)) (-1720 (((-639 (-112)) $) NIL (|has| $ (-6 -4402)))) (-2255 (($ $ $) NIL)) (-2236 (($ $) NIL)) (-1325 (($ $ $) NIL)) (-1458 (($ (-766) (-112)) 8)) (-2134 (($ $ $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL)) (-1610 (($ $ $) NIL (|has| (-112) (-845))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-1912 (((-639 (-112)) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL)) (-1490 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-112) (-112) (-112)) $ $) NIL) (($ (-1 (-112) (-112)) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-3297 (($ $ $ (-562)) NIL) (($ (-112) $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-112) $) NIL (|has| (-562) (-845)))) (-3251 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-2716 (($ $ (-112)) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-112)) (-639 (-112))) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-293 (-112))) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-639 (-293 (-112)))) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092))))) (-2411 (((-639 (-112)) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 (($ $ (-1223 (-562))) NIL) (((-112) $ (-562)) NIL) (((-112) $ (-562) (-112)) NIL)) (-2880 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-1723 (((-766) (-112) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092)))) (((-766) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4402)))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-112) (-610 (-535))))) (-4066 (($ (-639 (-112))) NIL)) (-2767 (($ (-639 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-4054 (((-857) $) NIL)) (-3366 (($ (-766) (-112)) 9)) (-1744 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4402)))) (-2246 (($ $ $) NIL)) (-2308 (($ $ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)) (-2298 (($ $ $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-110) (-13 (-123) (-10 -8 (-15 -3366 ($ (-766) (-112)))))) (T -110))
-((-3366 (*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *3 (-112)) (-5 *1 (-110)))))
-(-13 (-123) (-10 -8 (-15 -3366 ($ (-766) (-112)))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#1| $) 23) (($ $ |#2|) 26)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2300 (((-562) $) NIL (|has| (-562) (-306)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL (|has| (-562) (-815)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| (-562) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-562) (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| (-562) (-1033 (-562))))) (-3960 (((-562) $) NIL) (((-1168) $) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-562) (-1033 (-562)))) (((-562) $) NIL (|has| (-562) (-1033 (-562))))) (-1810 (($ $ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| (-562) (-544)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2696 (((-112) $) NIL (|has| (-562) (-815)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-562) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-562) (-881 (-378))))) (-4367 (((-112) $) NIL)) (-2957 (($ $) NIL)) (-4063 (((-562) $) NIL)) (-3828 (((-3 $ "failed") $) NIL (|has| (-562) (-1143)))) (-3855 (((-112) $) NIL (|has| (-562) (-815)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-562) (-845)))) (-4152 (($ (-1 (-562) (-562)) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| (-562) (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2561 (($ $) NIL (|has| (-562) (-306))) (((-406 (-562)) $) NIL)) (-3870 (((-562) $) NIL (|has| (-562) (-544)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-562)) (-639 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-562) (-562)) NIL (|has| (-562) (-308 (-562)))) (($ $ (-293 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-293 (-562)))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-1168)) (-639 (-562))) NIL (|has| (-562) (-513 (-1168) (-562)))) (($ $ (-1168) (-562)) NIL (|has| (-562) (-513 (-1168) (-562))))) (-2044 (((-766) $) NIL)) (-2343 (($ $ (-562)) NIL (|has| (-562) (-285 (-562) (-562))))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-1580 (($ $) NIL)) (-4079 (((-562) $) NIL)) (-4208 (((-887 (-562)) $) NIL (|has| (-562) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-562) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-562) (-610 (-535)))) (((-378) $) NIL (|has| (-562) (-1017))) (((-224) $) NIL (|has| (-562) (-1017)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-562) (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) 8) (($ (-562)) NIL) (($ (-1168)) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL) (((-999 2) $) 10)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-562) (-904))) (|has| (-562) (-144))))) (-1568 (((-766)) NIL)) (-3636 (((-562) $) NIL (|has| (-562) (-544)))) (-4317 (($ (-406 (-562))) 9)) (-3799 (((-112) $ $) NIL)) (-2757 (($ $) NIL (|has| (-562) (-815)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1771 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1761 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1859 (($ $ $) NIL) (($ (-562) (-562)) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-562) $) NIL) (($ $ (-562)) NIL)))
+(((-108) (-13 (-987 (-562)) (-609 (-406 (-562))) (-609 (-999 2)) (-10 -8 (-15 -2561 ((-406 (-562)) $)) (-15 -4317 ($ (-406 (-562))))))) (T -108))
+((-2561 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-108)))) (-4317 (*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-108)))))
+(-13 (-987 (-562)) (-609 (-406 (-562))) (-609 (-999 2)) (-10 -8 (-15 -2561 ((-406 (-562)) $)) (-15 -4317 ($ (-406 (-562))))))
+((-3806 (((-639 (-960)) $) 14)) (-3253 (((-1168) $) 10)) (-4053 (((-857) $) 23)) (-2795 (($ (-1168) (-639 (-960))) 15)))
+(((-109) (-13 (-609 (-857)) (-10 -8 (-15 -3253 ((-1168) $)) (-15 -3806 ((-639 (-960)) $)) (-15 -2795 ($ (-1168) (-639 (-960))))))) (T -109))
+((-3253 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-109)))) (-3806 (*1 *2 *1) (-12 (-5 *2 (-639 (-960))) (-5 *1 (-109)))) (-2795 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-960))) (-5 *1 (-109)))))
+(-13 (-609 (-857)) (-10 -8 (-15 -3253 ((-1168) $)) (-15 -3806 ((-639 (-960)) $)) (-15 -2795 ($ (-1168) (-639 (-960))))))
+((-4041 (((-112) $ $) NIL)) (-3294 (($ $) NIL)) (-2264 (($ $ $) NIL)) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) $) NIL (|has| (-112) (-845))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-3737 (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| (-112) (-845)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4404)))) (-1395 (($ $) NIL (|has| (-112) (-845))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-4200 (((-112) $ (-1223 (-562)) (-112)) NIL (|has| $ (-6 -4404))) (((-112) $ (-562) (-112)) NIL (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092))))) (-1475 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4403))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092))))) (-1954 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092))))) (-1507 (((-112) $ (-562) (-112)) NIL (|has| $ (-6 -4404)))) (-1420 (((-112) $ (-562)) NIL)) (-4265 (((-562) (-112) $ (-562)) NIL (|has| (-112) (-1092))) (((-562) (-112) $) NIL (|has| (-112) (-1092))) (((-562) (-1 (-112) (-112)) $) NIL)) (-1720 (((-639 (-112)) $) NIL (|has| $ (-6 -4403)))) (-2256 (($ $ $) NIL)) (-2234 (($ $) NIL)) (-1886 (($ $ $) NIL)) (-1458 (($ (-766) (-112)) 8)) (-2618 (($ $ $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL)) (-4103 (($ $ $) NIL (|has| (-112) (-845))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-2123 (((-639 (-112)) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL)) (-1491 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-112) (-112) (-112)) $ $) NIL) (($ (-1 (-112) (-112)) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-3295 (($ $ $ (-562)) NIL) (($ (-112) $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-112) $) NIL (|has| (-562) (-845)))) (-1963 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-3510 (($ $ (-112)) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-112)) (-639 (-112))) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-293 (-112))) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-639 (-293 (-112)))) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092))))) (-2366 (((-639 (-112)) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 (($ $ (-1223 (-562))) NIL) (((-112) $ (-562)) NIL) (((-112) $ (-562) (-112)) NIL)) (-2880 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-1723 (((-766) (-112) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092)))) (((-766) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4403)))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-112) (-610 (-535))))) (-4064 (($ (-639 (-112))) NIL)) (-2767 (($ (-639 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-4053 (((-857) $) NIL)) (-3573 (($ (-766) (-112)) 9)) (-2879 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4403)))) (-2245 (($ $ $) NIL)) (-2306 (($ $ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)) (-2297 (($ $ $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-110) (-13 (-123) (-10 -8 (-15 -3573 ($ (-766) (-112)))))) (T -110))
+((-3573 (*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *3 (-112)) (-5 *1 (-110)))))
+(-13 (-123) (-10 -8 (-15 -3573 ($ (-766) (-112)))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#1| $) 23) (($ $ |#2|) 26)))
(((-111 |#1| |#2|) (-139) (-1044) (-1044)) (T -111))
NIL
-(-13 (-642 |t#1|) (-1050 |t#2|) (-10 -7 (-6 -4397) (-6 -4396)))
+(-13 (-642 |t#1|) (-1050 |t#2|) (-10 -7 (-6 -4398) (-6 -4397)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-609 (-857)) . T) ((-642 |#1|) . T) ((-1050 |#2|) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-3295 (($ $) 10)) (-2265 (($ $ $) 15)) (-2797 (($) 7 T CONST)) (-2153 (($ $) 6)) (-1382 (((-766)) 24)) (-1448 (($) 30)) (-2255 (($ $ $) 13)) (-2236 (($ $) 9)) (-1325 (($ $ $) 16)) (-2134 (($ $ $) 17)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-1999 (((-916) $) 29)) (-2913 (((-1150) $) NIL)) (-2466 (($ (-916)) 28)) (-3994 (($ $ $) 20)) (-1709 (((-1112) $) NIL)) (-1615 (($) 8 T CONST)) (-1935 (($ $ $) 21)) (-4208 (((-535) $) 36)) (-4054 (((-857) $) 39)) (-2246 (($ $ $) 11)) (-2308 (($ $ $) 14)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 19)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 22)) (-2298 (($ $ $) 12)))
-(((-112) (-13 (-839) (-655) (-962) (-610 (-535)) (-10 -8 (-15 -2797 ($) -1497) (-15 -1615 ($) -1497) (-15 -2265 ($ $ $)) (-15 -2134 ($ $ $)) (-15 -1325 ($ $ $)) (-15 -2153 ($ $))))) (T -112))
-((-2797 (*1 *1) (-5 *1 (-112))) (-1615 (*1 *1) (-5 *1 (-112))) (-2265 (*1 *1 *1 *1) (-5 *1 (-112))) (-2134 (*1 *1 *1 *1) (-5 *1 (-112))) (-1325 (*1 *1 *1 *1) (-5 *1 (-112))) (-2153 (*1 *1 *1) (-5 *1 (-112))))
-(-13 (-839) (-655) (-962) (-610 (-535)) (-10 -8 (-15 -2797 ($) -1497) (-15 -1615 ($) -1497) (-15 -2265 ($ $ $)) (-15 -2134 ($ $ $)) (-15 -1325 ($ $ $)) (-15 -2153 ($ $))))
-((-3048 (((-3 (-1 |#1| (-639 |#1|)) "failed") (-114)) 19) (((-114) (-114) (-1 |#1| |#1|)) 13) (((-114) (-114) (-1 |#1| (-639 |#1|))) 11) (((-3 |#1| "failed") (-114) (-639 |#1|)) 21)) (-1939 (((-3 (-639 (-1 |#1| (-639 |#1|))) "failed") (-114)) 25) (((-114) (-114) (-1 |#1| |#1|)) 30) (((-114) (-114) (-639 (-1 |#1| (-639 |#1|)))) 26)) (-1788 (((-114) |#1|) 55 (|has| |#1| (-845)))) (-1698 (((-3 |#1| "failed") (-114)) 49 (|has| |#1| (-845)))))
-(((-113 |#1|) (-10 -7 (-15 -3048 ((-3 |#1| "failed") (-114) (-639 |#1|))) (-15 -3048 ((-114) (-114) (-1 |#1| (-639 |#1|)))) (-15 -3048 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3048 ((-3 (-1 |#1| (-639 |#1|)) "failed") (-114))) (-15 -1939 ((-114) (-114) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1939 ((-114) (-114) (-1 |#1| |#1|))) (-15 -1939 ((-3 (-639 (-1 |#1| (-639 |#1|))) "failed") (-114))) (IF (|has| |#1| (-845)) (PROGN (-15 -1788 ((-114) |#1|)) (-15 -1698 ((-3 |#1| "failed") (-114)))) |%noBranch|)) (-1092)) (T -113))
-((-1698 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-4 *2 (-1092)) (-4 *2 (-845)) (-5 *1 (-113 *2)))) (-1788 (*1 *2 *3) (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-845)) (-4 *3 (-1092)))) (-1939 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-639 (-1 *4 (-639 *4)))) (-5 *1 (-113 *4)) (-4 *4 (-1092)))) (-1939 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1092)) (-5 *1 (-113 *4)))) (-1939 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-639 (-1 *4 (-639 *4)))) (-4 *4 (-1092)) (-5 *1 (-113 *4)))) (-3048 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-639 *4))) (-5 *1 (-113 *4)) (-4 *4 (-1092)))) (-3048 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1092)) (-5 *1 (-113 *4)))) (-3048 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-639 *4))) (-4 *4 (-1092)) (-5 *1 (-113 *4)))) (-3048 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-639 *2)) (-5 *1 (-113 *2)) (-4 *2 (-1092)))))
-(-10 -7 (-15 -3048 ((-3 |#1| "failed") (-114) (-639 |#1|))) (-15 -3048 ((-114) (-114) (-1 |#1| (-639 |#1|)))) (-15 -3048 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3048 ((-3 (-1 |#1| (-639 |#1|)) "failed") (-114))) (-15 -1939 ((-114) (-114) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1939 ((-114) (-114) (-1 |#1| |#1|))) (-15 -1939 ((-3 (-639 (-1 |#1| (-639 |#1|))) "failed") (-114))) (IF (|has| |#1| (-845)) (PROGN (-15 -1788 ((-114) |#1|)) (-15 -1698 ((-3 |#1| "failed") (-114)))) |%noBranch|))
-((-4041 (((-112) $ $) NIL)) (-1929 (((-766) $) 72) (($ $ (-766)) 30)) (-2324 (((-112) $) 32)) (-1815 (($ $ (-1150) (-769)) 26)) (-2902 (($ $ (-45 (-1150) (-769))) 15)) (-3394 (((-3 (-769) "failed") $ (-1150)) 25)) (-3806 (((-45 (-1150) (-769)) $) 14)) (-2876 (($ (-1168)) 17) (($ (-1168) (-766)) 22)) (-3237 (((-112) $) 31)) (-2870 (((-112) $) 33)) (-3254 (((-1168) $) 8)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1776 (((-112) $ (-1168)) 10)) (-1541 (($ $ (-1 (-535) (-639 (-535)))) 52) (((-3 (-1 (-535) (-639 (-535))) "failed") $) 56)) (-1709 (((-1112) $) NIL)) (-4169 (((-112) $ (-1150)) 29)) (-2570 (($ $ (-1 (-112) $ $)) 35)) (-1479 (((-3 (-1 (-857) (-639 (-857))) "failed") $) 54) (($ $ (-1 (-857) (-639 (-857)))) 41) (($ $ (-1 (-857) (-857))) 43)) (-4277 (($ $ (-1150)) 45)) (-4220 (($ $) 63)) (-3802 (($ $ (-1 (-112) $ $)) 36)) (-4054 (((-857) $) 48)) (-3977 (($ $ (-1150)) 27)) (-3087 (((-3 (-766) "failed") $) 58)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 71)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 78)))
-(((-114) (-13 (-845) (-10 -8 (-15 -3254 ((-1168) $)) (-15 -3806 ((-45 (-1150) (-769)) $)) (-15 -4220 ($ $)) (-15 -2876 ($ (-1168))) (-15 -2876 ($ (-1168) (-766))) (-15 -3087 ((-3 (-766) "failed") $)) (-15 -3237 ((-112) $)) (-15 -2324 ((-112) $)) (-15 -2870 ((-112) $)) (-15 -1929 ((-766) $)) (-15 -1929 ($ $ (-766))) (-15 -2570 ($ $ (-1 (-112) $ $))) (-15 -3802 ($ $ (-1 (-112) $ $))) (-15 -1479 ((-3 (-1 (-857) (-639 (-857))) "failed") $)) (-15 -1479 ($ $ (-1 (-857) (-639 (-857))))) (-15 -1479 ($ $ (-1 (-857) (-857)))) (-15 -1541 ($ $ (-1 (-535) (-639 (-535))))) (-15 -1541 ((-3 (-1 (-535) (-639 (-535))) "failed") $)) (-15 -1776 ((-112) $ (-1168))) (-15 -4169 ((-112) $ (-1150))) (-15 -3977 ($ $ (-1150))) (-15 -4277 ($ $ (-1150))) (-15 -3394 ((-3 (-769) "failed") $ (-1150))) (-15 -1815 ($ $ (-1150) (-769))) (-15 -2902 ($ $ (-45 (-1150) (-769))))))) (T -114))
-((-3254 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-114)))) (-3806 (*1 *2 *1) (-12 (-5 *2 (-45 (-1150) (-769))) (-5 *1 (-114)))) (-4220 (*1 *1 *1) (-5 *1 (-114))) (-2876 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-114)))) (-2876 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-766)) (-5 *1 (-114)))) (-3087 (*1 *2 *1) (|partial| -12 (-5 *2 (-766)) (-5 *1 (-114)))) (-3237 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-2324 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-2870 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-1929 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-114)))) (-1929 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-114)))) (-2570 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-3802 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-1479 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-857) (-639 (-857)))) (-5 *1 (-114)))) (-1479 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-857) (-639 (-857)))) (-5 *1 (-114)))) (-1479 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-857) (-857))) (-5 *1 (-114)))) (-1541 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-535) (-639 (-535)))) (-5 *1 (-114)))) (-1541 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-535) (-639 (-535)))) (-5 *1 (-114)))) (-1776 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-114)))) (-4169 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-112)) (-5 *1 (-114)))) (-3977 (*1 *1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-114)))) (-4277 (*1 *1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-114)))) (-3394 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1150)) (-5 *2 (-769)) (-5 *1 (-114)))) (-1815 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1150)) (-5 *3 (-769)) (-5 *1 (-114)))) (-2902 (*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1150) (-769))) (-5 *1 (-114)))))
-(-13 (-845) (-10 -8 (-15 -3254 ((-1168) $)) (-15 -3806 ((-45 (-1150) (-769)) $)) (-15 -4220 ($ $)) (-15 -2876 ($ (-1168))) (-15 -2876 ($ (-1168) (-766))) (-15 -3087 ((-3 (-766) "failed") $)) (-15 -3237 ((-112) $)) (-15 -2324 ((-112) $)) (-15 -2870 ((-112) $)) (-15 -1929 ((-766) $)) (-15 -1929 ($ $ (-766))) (-15 -2570 ($ $ (-1 (-112) $ $))) (-15 -3802 ($ $ (-1 (-112) $ $))) (-15 -1479 ((-3 (-1 (-857) (-639 (-857))) "failed") $)) (-15 -1479 ($ $ (-1 (-857) (-639 (-857))))) (-15 -1479 ($ $ (-1 (-857) (-857)))) (-15 -1541 ($ $ (-1 (-535) (-639 (-535))))) (-15 -1541 ((-3 (-1 (-535) (-639 (-535))) "failed") $)) (-15 -1776 ((-112) $ (-1168))) (-15 -4169 ((-112) $ (-1150))) (-15 -3977 ($ $ (-1150))) (-15 -4277 ($ $ (-1150))) (-15 -3394 ((-3 (-769) "failed") $ (-1150))) (-15 -1815 ($ $ (-1150) (-769))) (-15 -2902 ($ $ (-45 (-1150) (-769))))))
-((-3775 (((-562) |#2|) 37)))
-(((-115 |#1| |#2|) (-10 -7 (-15 -3775 ((-562) |#2|))) (-13 (-362) (-1033 (-406 (-562)))) (-1232 |#1|)) (T -115))
-((-3775 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-1033 (-406 *2)))) (-5 *2 (-562)) (-5 *1 (-115 *4 *3)) (-4 *3 (-1232 *4)))))
-(-10 -7 (-15 -3775 ((-562) |#2|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1643 (($ $ (-562)) NIL)) (-2569 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-4334 (($ (-1164 (-562)) (-562)) NIL)) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-2977 (($ $) NIL)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-1900 (((-766) $) NIL)) (-1957 (((-112) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3518 (((-562)) NIL)) (-2779 (((-562) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1353 (($ $ (-562)) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3280 (((-1148 (-562)) $) NIL)) (-2256 (($ $) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL)) (-2579 (((-766)) NIL)) (-2922 (((-112) $ $) NIL)) (-1406 (((-562) $ (-562)) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-3294 (($ $) 10)) (-2264 (($ $ $) 15)) (-2796 (($) 7 T CONST)) (-2152 (($ $) 6)) (-1382 (((-766)) 24)) (-1447 (($) 30)) (-2256 (($ $ $) 13)) (-2234 (($ $) 9)) (-1886 (($ $ $) 16)) (-2618 (($ $ $) 17)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-3549 (((-916) $) 29)) (-3696 (((-1150) $) NIL)) (-2464 (($ (-916)) 28)) (-3664 (($ $ $) 20)) (-1709 (((-1112) $) NIL)) (-1615 (($) 8 T CONST)) (-4166 (($ $ $) 21)) (-4208 (((-535) $) 34)) (-4053 (((-857) $) 37)) (-2245 (($ $ $) 11)) (-2306 (($ $ $) 14)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 19)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 22)) (-2297 (($ $ $) 12)))
+(((-112) (-13 (-839) (-655) (-962) (-610 (-535)) (-10 -8 (-15 -2796 ($) -1497) (-15 -1615 ($) -1497) (-15 -2264 ($ $ $)) (-15 -2618 ($ $ $)) (-15 -1886 ($ $ $)) (-15 -2152 ($ $))))) (T -112))
+((-2796 (*1 *1) (-5 *1 (-112))) (-1615 (*1 *1) (-5 *1 (-112))) (-2264 (*1 *1 *1 *1) (-5 *1 (-112))) (-2618 (*1 *1 *1 *1) (-5 *1 (-112))) (-1886 (*1 *1 *1 *1) (-5 *1 (-112))) (-2152 (*1 *1 *1) (-5 *1 (-112))))
+(-13 (-839) (-655) (-962) (-610 (-535)) (-10 -8 (-15 -2796 ($) -1497) (-15 -1615 ($) -1497) (-15 -2264 ($ $ $)) (-15 -2618 ($ $ $)) (-15 -1886 ($ $ $)) (-15 -2152 ($ $))))
+((-3610 (((-3 (-1 |#1| (-639 |#1|)) "failed") (-114)) 19) (((-114) (-114) (-1 |#1| |#1|)) 13) (((-114) (-114) (-1 |#1| (-639 |#1|))) 11) (((-3 |#1| "failed") (-114) (-639 |#1|)) 21)) (-4209 (((-3 (-639 (-1 |#1| (-639 |#1|))) "failed") (-114)) 25) (((-114) (-114) (-1 |#1| |#1|)) 30) (((-114) (-114) (-639 (-1 |#1| (-639 |#1|)))) 26)) (-3219 (((-114) |#1|) 55 (|has| |#1| (-845)))) (-3670 (((-3 |#1| "failed") (-114)) 49 (|has| |#1| (-845)))))
+(((-113 |#1|) (-10 -7 (-15 -3610 ((-3 |#1| "failed") (-114) (-639 |#1|))) (-15 -3610 ((-114) (-114) (-1 |#1| (-639 |#1|)))) (-15 -3610 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3610 ((-3 (-1 |#1| (-639 |#1|)) "failed") (-114))) (-15 -4209 ((-114) (-114) (-639 (-1 |#1| (-639 |#1|))))) (-15 -4209 ((-114) (-114) (-1 |#1| |#1|))) (-15 -4209 ((-3 (-639 (-1 |#1| (-639 |#1|))) "failed") (-114))) (IF (|has| |#1| (-845)) (PROGN (-15 -3219 ((-114) |#1|)) (-15 -3670 ((-3 |#1| "failed") (-114)))) |%noBranch|)) (-1092)) (T -113))
+((-3670 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-4 *2 (-1092)) (-4 *2 (-845)) (-5 *1 (-113 *2)))) (-3219 (*1 *2 *3) (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-845)) (-4 *3 (-1092)))) (-4209 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-639 (-1 *4 (-639 *4)))) (-5 *1 (-113 *4)) (-4 *4 (-1092)))) (-4209 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1092)) (-5 *1 (-113 *4)))) (-4209 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-639 (-1 *4 (-639 *4)))) (-4 *4 (-1092)) (-5 *1 (-113 *4)))) (-3610 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-639 *4))) (-5 *1 (-113 *4)) (-4 *4 (-1092)))) (-3610 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1092)) (-5 *1 (-113 *4)))) (-3610 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-639 *4))) (-4 *4 (-1092)) (-5 *1 (-113 *4)))) (-3610 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-639 *2)) (-5 *1 (-113 *2)) (-4 *2 (-1092)))))
+(-10 -7 (-15 -3610 ((-3 |#1| "failed") (-114) (-639 |#1|))) (-15 -3610 ((-114) (-114) (-1 |#1| (-639 |#1|)))) (-15 -3610 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3610 ((-3 (-1 |#1| (-639 |#1|)) "failed") (-114))) (-15 -4209 ((-114) (-114) (-639 (-1 |#1| (-639 |#1|))))) (-15 -4209 ((-114) (-114) (-1 |#1| |#1|))) (-15 -4209 ((-3 (-639 (-1 |#1| (-639 |#1|))) "failed") (-114))) (IF (|has| |#1| (-845)) (PROGN (-15 -3219 ((-114) |#1|)) (-15 -3670 ((-3 |#1| "failed") (-114)))) |%noBranch|))
+((-4041 (((-112) $ $) NIL)) (-2277 (((-766) $) 72) (($ $ (-766)) 30)) (-3879 (((-112) $) 32)) (-2345 (($ $ (-1150) (-769)) 26)) (-3597 (($ $ (-45 (-1150) (-769))) 15)) (-3394 (((-3 (-769) "failed") $ (-1150)) 25)) (-3806 (((-45 (-1150) (-769)) $) 14)) (-1502 (($ (-1168)) 17) (($ (-1168) (-766)) 22)) (-1805 (((-112) $) 31)) (-1412 (((-112) $) 33)) (-3253 (((-1168) $) 8)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-3115 (((-112) $ (-1168)) 10)) (-1542 (($ $ (-1 (-535) (-639 (-535)))) 52) (((-3 (-1 (-535) (-639 (-535))) "failed") $) 56)) (-1709 (((-1112) $) NIL)) (-2788 (((-112) $ (-1150)) 29)) (-1445 (($ $ (-1 (-112) $ $)) 35)) (-1479 (((-3 (-1 (-857) (-639 (-857))) "failed") $) 54) (($ $ (-1 (-857) (-639 (-857)))) 41) (($ $ (-1 (-857) (-857))) 43)) (-1303 (($ $ (-1150)) 45)) (-4220 (($ $) 63)) (-2427 (($ $ (-1 (-112) $ $)) 36)) (-4053 (((-857) $) 48)) (-3976 (($ $ (-1150)) 27)) (-3975 (((-3 (-766) "failed") $) 58)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 71)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 78)))
+(((-114) (-13 (-845) (-10 -8 (-15 -3253 ((-1168) $)) (-15 -3806 ((-45 (-1150) (-769)) $)) (-15 -4220 ($ $)) (-15 -1502 ($ (-1168))) (-15 -1502 ($ (-1168) (-766))) (-15 -3975 ((-3 (-766) "failed") $)) (-15 -1805 ((-112) $)) (-15 -3879 ((-112) $)) (-15 -1412 ((-112) $)) (-15 -2277 ((-766) $)) (-15 -2277 ($ $ (-766))) (-15 -1445 ($ $ (-1 (-112) $ $))) (-15 -2427 ($ $ (-1 (-112) $ $))) (-15 -1479 ((-3 (-1 (-857) (-639 (-857))) "failed") $)) (-15 -1479 ($ $ (-1 (-857) (-639 (-857))))) (-15 -1479 ($ $ (-1 (-857) (-857)))) (-15 -1542 ($ $ (-1 (-535) (-639 (-535))))) (-15 -1542 ((-3 (-1 (-535) (-639 (-535))) "failed") $)) (-15 -3115 ((-112) $ (-1168))) (-15 -2788 ((-112) $ (-1150))) (-15 -3976 ($ $ (-1150))) (-15 -1303 ($ $ (-1150))) (-15 -3394 ((-3 (-769) "failed") $ (-1150))) (-15 -2345 ($ $ (-1150) (-769))) (-15 -3597 ($ $ (-45 (-1150) (-769))))))) (T -114))
+((-3253 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-114)))) (-3806 (*1 *2 *1) (-12 (-5 *2 (-45 (-1150) (-769))) (-5 *1 (-114)))) (-4220 (*1 *1 *1) (-5 *1 (-114))) (-1502 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-114)))) (-1502 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-766)) (-5 *1 (-114)))) (-3975 (*1 *2 *1) (|partial| -12 (-5 *2 (-766)) (-5 *1 (-114)))) (-1805 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-3879 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-1412 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-2277 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-114)))) (-2277 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-114)))) (-1445 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-2427 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-1479 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-857) (-639 (-857)))) (-5 *1 (-114)))) (-1479 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-857) (-639 (-857)))) (-5 *1 (-114)))) (-1479 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-857) (-857))) (-5 *1 (-114)))) (-1542 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-535) (-639 (-535)))) (-5 *1 (-114)))) (-1542 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-535) (-639 (-535)))) (-5 *1 (-114)))) (-3115 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-114)))) (-2788 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-112)) (-5 *1 (-114)))) (-3976 (*1 *1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-114)))) (-1303 (*1 *1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-114)))) (-3394 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1150)) (-5 *2 (-769)) (-5 *1 (-114)))) (-2345 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1150)) (-5 *3 (-769)) (-5 *1 (-114)))) (-3597 (*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1150) (-769))) (-5 *1 (-114)))))
+(-13 (-845) (-10 -8 (-15 -3253 ((-1168) $)) (-15 -3806 ((-45 (-1150) (-769)) $)) (-15 -4220 ($ $)) (-15 -1502 ($ (-1168))) (-15 -1502 ($ (-1168) (-766))) (-15 -3975 ((-3 (-766) "failed") $)) (-15 -1805 ((-112) $)) (-15 -3879 ((-112) $)) (-15 -1412 ((-112) $)) (-15 -2277 ((-766) $)) (-15 -2277 ($ $ (-766))) (-15 -1445 ($ $ (-1 (-112) $ $))) (-15 -2427 ($ $ (-1 (-112) $ $))) (-15 -1479 ((-3 (-1 (-857) (-639 (-857))) "failed") $)) (-15 -1479 ($ $ (-1 (-857) (-639 (-857))))) (-15 -1479 ($ $ (-1 (-857) (-857)))) (-15 -1542 ($ $ (-1 (-535) (-639 (-535))))) (-15 -1542 ((-3 (-1 (-535) (-639 (-535))) "failed") $)) (-15 -3115 ((-112) $ (-1168))) (-15 -2788 ((-112) $ (-1150))) (-15 -3976 ($ $ (-1150))) (-15 -1303 ($ $ (-1150))) (-15 -3394 ((-3 (-769) "failed") $ (-1150))) (-15 -2345 ($ $ (-1150) (-769))) (-15 -3597 ($ $ (-45 (-1150) (-769))))))
+((-3337 (((-562) |#2|) 37)))
+(((-115 |#1| |#2|) (-10 -7 (-15 -3337 ((-562) |#2|))) (-13 (-362) (-1033 (-406 (-562)))) (-1232 |#1|)) (T -115))
+((-3337 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-1033 (-406 *2)))) (-5 *2 (-562)) (-5 *1 (-115 *4 *3)) (-4 *3 (-1232 *4)))))
+(-10 -7 (-15 -3337 ((-562) |#2|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1644 (($ $ (-562)) NIL)) (-1436 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-3723 (($ (-1164 (-562)) (-562)) NIL)) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-3119 (($ $) NIL)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-1993 (((-766) $) NIL)) (-4367 (((-112) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2685 (((-562)) NIL)) (-2920 (((-562) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-4316 (($ $ (-562)) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-2244 (((-1148 (-562)) $) NIL)) (-1345 (($ $) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL)) (-1568 (((-766)) NIL)) (-3799 (((-112) $ $) NIL)) (-1406 (((-562) $ (-562)) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL)))
(((-116 |#1|) (-864 |#1|) (-562)) (T -116))
NIL
(-864 |#1|)
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-4246 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-306)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-116 |#1|) (-904)))) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-116 |#1|) (-904)))) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL (|has| (-116 |#1|) (-815)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-116 |#1|) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| (-116 |#1|) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-116 |#1|) (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| (-116 |#1|) (-1033 (-562))))) (-3961 (((-116 |#1|) $) NIL) (((-1168) $) NIL (|has| (-116 |#1|) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-116 |#1|) (-1033 (-562)))) (((-562) $) NIL (|has| (-116 |#1|) (-1033 (-562))))) (-2724 (($ $) NIL) (($ (-562) $) NIL)) (-1811 (($ $ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| (-116 |#1|) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-116 |#1|) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-116 |#1|))) (|:| |vec| (-1256 (-116 |#1|)))) (-683 $) (-1256 $)) NIL) (((-683 (-116 |#1|)) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| (-116 |#1|) (-544)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3519 (((-112) $) NIL (|has| (-116 |#1|) (-815)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-116 |#1|) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-116 |#1|) (-881 (-378))))) (-1957 (((-112) $) NIL)) (-3425 (($ $) NIL)) (-4065 (((-116 |#1|) $) NIL)) (-3699 (((-3 $ "failed") $) NIL (|has| (-116 |#1|) (-1143)))) (-3392 (((-112) $) NIL (|has| (-116 |#1|) (-815)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-116 |#1|) (-845)))) (-2993 (($ $ $) NIL (|has| (-116 |#1|) (-845)))) (-4152 (($ (-1 (-116 |#1|) (-116 |#1|)) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| (-116 |#1|) (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2736 (($ $) NIL (|has| (-116 |#1|) (-306)))) (-4014 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-544)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-116 |#1|) (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-116 |#1|) (-904)))) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-116 |#1|)) (-639 (-116 |#1|))) NIL (|has| (-116 |#1|) (-308 (-116 |#1|)))) (($ $ (-116 |#1|) (-116 |#1|)) NIL (|has| (-116 |#1|) (-308 (-116 |#1|)))) (($ $ (-293 (-116 |#1|))) NIL (|has| (-116 |#1|) (-308 (-116 |#1|)))) (($ $ (-639 (-293 (-116 |#1|)))) NIL (|has| (-116 |#1|) (-308 (-116 |#1|)))) (($ $ (-639 (-1168)) (-639 (-116 |#1|))) NIL (|has| (-116 |#1|) (-513 (-1168) (-116 |#1|)))) (($ $ (-1168) (-116 |#1|)) NIL (|has| (-116 |#1|) (-513 (-1168) (-116 |#1|))))) (-1577 (((-766) $) NIL)) (-2343 (($ $ (-116 |#1|)) NIL (|has| (-116 |#1|) (-285 (-116 |#1|) (-116 |#1|))))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| (-116 |#1|) (-232))) (($ $ (-766)) NIL (|has| (-116 |#1|) (-232))) (($ $ (-1168)) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-766)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-3658 (($ $) NIL)) (-4076 (((-116 |#1|) $) NIL)) (-4208 (((-887 (-562)) $) NIL (|has| (-116 |#1|) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-116 |#1|) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-116 |#1|) (-610 (-535)))) (((-378) $) NIL (|has| (-116 |#1|) (-1017))) (((-224) $) NIL (|has| (-116 |#1|) (-1017)))) (-1977 (((-173 (-406 (-562))) $) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-116 |#1|) (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-116 |#1|)) NIL) (($ (-1168)) NIL (|has| (-116 |#1|) (-1033 (-1168))))) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-116 |#1|) (-904))) (|has| (-116 |#1|) (-144))))) (-2579 (((-766)) NIL)) (-2604 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-544)))) (-2922 (((-112) $ $) NIL)) (-1406 (((-406 (-562)) $ (-562)) NIL)) (-3526 (($ $) NIL (|has| (-116 |#1|) (-815)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $) NIL (|has| (-116 |#1|) (-232))) (($ $ (-766)) NIL (|has| (-116 |#1|) (-232))) (($ $ (-1168)) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-766)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-116 |#1|) (-845)))) (-1772 (((-112) $ $) NIL (|has| (-116 |#1|) (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-116 |#1|) (-845)))) (-1759 (((-112) $ $) NIL (|has| (-116 |#1|) (-845)))) (-1859 (($ $ $) NIL) (($ (-116 |#1|) (-116 |#1|)) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-116 |#1|) $) NIL) (($ $ (-116 |#1|)) NIL)))
-(((-117 |#1|) (-13 (-987 (-116 |#1|)) (-10 -8 (-15 -1406 ((-406 (-562)) $ (-562))) (-15 -1977 ((-173 (-406 (-562))) $)) (-15 -2724 ($ $)) (-15 -2724 ($ (-562) $)))) (-562)) (T -117))
-((-1406 (*1 *2 *1 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-117 *4)) (-14 *4 *3) (-5 *3 (-562)))) (-1977 (*1 *2 *1) (-12 (-5 *2 (-173 (-406 (-562)))) (-5 *1 (-117 *3)) (-14 *3 (-562)))) (-2724 (*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-562)))) (-2724 (*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-117 *3)) (-14 *3 *2))))
-(-13 (-987 (-116 |#1|)) (-10 -8 (-15 -1406 ((-406 (-562)) $ (-562))) (-15 -1977 ((-173 (-406 (-562))) $)) (-15 -2724 ($ $)) (-15 -2724 ($ (-562) $))))
-((-4200 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 48) (($ $ "right" $) 50)) (-2720 (((-639 $) $) 27)) (-4379 (((-112) $ $) 32)) (-1669 (((-112) |#2| $) 36)) (-4007 (((-639 |#2|) $) 22)) (-3449 (((-112) $) 16)) (-2343 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-2424 (((-112) $) 45)) (-4054 (((-857) $) 41)) (-2906 (((-639 $) $) 28)) (-1731 (((-112) $ $) 34)) (-3492 (((-766) $) 43)))
-(((-118 |#1| |#2|) (-10 -8 (-15 -4054 ((-857) |#1|)) (-15 -4200 (|#1| |#1| "right" |#1|)) (-15 -4200 (|#1| |#1| "left" |#1|)) (-15 -2343 (|#1| |#1| "right")) (-15 -2343 (|#1| |#1| "left")) (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -4379 ((-112) |#1| |#1|)) (-15 -4007 ((-639 |#2|) |#1|)) (-15 -2424 ((-112) |#1|)) (-15 -2343 (|#2| |#1| "value")) (-15 -3449 ((-112) |#1|)) (-15 -2720 ((-639 |#1|) |#1|)) (-15 -2906 ((-639 |#1|) |#1|)) (-15 -1731 ((-112) |#1| |#1|)) (-15 -1669 ((-112) |#2| |#1|)) (-15 -3492 ((-766) |#1|))) (-119 |#2|) (-1207)) (T -118))
-NIL
-(-10 -8 (-15 -4054 ((-857) |#1|)) (-15 -4200 (|#1| |#1| "right" |#1|)) (-15 -4200 (|#1| |#1| "left" |#1|)) (-15 -2343 (|#1| |#1| "right")) (-15 -2343 (|#1| |#1| "left")) (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -4379 ((-112) |#1| |#1|)) (-15 -4007 ((-639 |#2|) |#1|)) (-15 -2424 ((-112) |#1|)) (-15 -2343 (|#2| |#1| "value")) (-15 -3449 ((-112) |#1|)) (-15 -2720 ((-639 |#1|) |#1|)) (-15 -2906 ((-639 |#1|) |#1|)) (-15 -1731 ((-112) |#1| |#1|)) (-15 -1669 ((-112) |#2| |#1|)) (-15 -3492 ((-766) |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2534 ((|#1| $) 48)) (-4336 (((-112) $ (-766)) 8)) (-1512 ((|#1| $ |#1|) 39 (|has| $ (-6 -4403)))) (-1718 (($ $ $) 52 (|has| $ (-6 -4403)))) (-3225 (($ $ $) 54 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4403))) (($ $ "left" $) 55 (|has| $ (-6 -4403))) (($ $ "right" $) 53 (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) 41 (|has| $ (-6 -4403)))) (-1800 (($) 7 T CONST)) (-1602 (($ $) 57)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) 50)) (-4379 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-1588 (($ $) 59)) (-4007 (((-639 |#1|) $) 45)) (-3449 (((-112) $) 49)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-2568 (((-562) $ $) 44)) (-2424 (((-112) $) 46)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) 51)) (-4055 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2300 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-306)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-116 |#1|) (-904)))) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-116 |#1|) (-904)))) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL (|has| (-116 |#1|) (-815)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-116 |#1|) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| (-116 |#1|) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-116 |#1|) (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| (-116 |#1|) (-1033 (-562))))) (-3960 (((-116 |#1|) $) NIL) (((-1168) $) NIL (|has| (-116 |#1|) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-116 |#1|) (-1033 (-562)))) (((-562) $) NIL (|has| (-116 |#1|) (-1033 (-562))))) (-2449 (($ $) NIL) (($ (-562) $) NIL)) (-1810 (($ $ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| (-116 |#1|) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-116 |#1|) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-116 |#1|))) (|:| |vec| (-1256 (-116 |#1|)))) (-683 $) (-1256 $)) NIL) (((-683 (-116 |#1|)) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| (-116 |#1|) (-544)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2696 (((-112) $) NIL (|has| (-116 |#1|) (-815)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-116 |#1|) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-116 |#1|) (-881 (-378))))) (-4367 (((-112) $) NIL)) (-2957 (($ $) NIL)) (-4063 (((-116 |#1|) $) NIL)) (-3828 (((-3 $ "failed") $) NIL (|has| (-116 |#1|) (-1143)))) (-3855 (((-112) $) NIL (|has| (-116 |#1|) (-815)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-116 |#1|) (-845)))) (-2993 (($ $ $) NIL (|has| (-116 |#1|) (-845)))) (-4152 (($ (-1 (-116 |#1|) (-116 |#1|)) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| (-116 |#1|) (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2561 (($ $) NIL (|has| (-116 |#1|) (-306)))) (-3870 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-544)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-116 |#1|) (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-116 |#1|) (-904)))) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-116 |#1|)) (-639 (-116 |#1|))) NIL (|has| (-116 |#1|) (-308 (-116 |#1|)))) (($ $ (-116 |#1|) (-116 |#1|)) NIL (|has| (-116 |#1|) (-308 (-116 |#1|)))) (($ $ (-293 (-116 |#1|))) NIL (|has| (-116 |#1|) (-308 (-116 |#1|)))) (($ $ (-639 (-293 (-116 |#1|)))) NIL (|has| (-116 |#1|) (-308 (-116 |#1|)))) (($ $ (-639 (-1168)) (-639 (-116 |#1|))) NIL (|has| (-116 |#1|) (-513 (-1168) (-116 |#1|)))) (($ $ (-1168) (-116 |#1|)) NIL (|has| (-116 |#1|) (-513 (-1168) (-116 |#1|))))) (-2044 (((-766) $) NIL)) (-2343 (($ $ (-116 |#1|)) NIL (|has| (-116 |#1|) (-285 (-116 |#1|) (-116 |#1|))))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| (-116 |#1|) (-232))) (($ $ (-766)) NIL (|has| (-116 |#1|) (-232))) (($ $ (-1168)) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-766)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-1580 (($ $) NIL)) (-4079 (((-116 |#1|) $) NIL)) (-4208 (((-887 (-562)) $) NIL (|has| (-116 |#1|) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-116 |#1|) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-116 |#1|) (-610 (-535)))) (((-378) $) NIL (|has| (-116 |#1|) (-1017))) (((-224) $) NIL (|has| (-116 |#1|) (-1017)))) (-1477 (((-173 (-406 (-562))) $) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-116 |#1|) (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-116 |#1|)) NIL) (($ (-1168)) NIL (|has| (-116 |#1|) (-1033 (-1168))))) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-116 |#1|) (-904))) (|has| (-116 |#1|) (-144))))) (-1568 (((-766)) NIL)) (-3636 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-544)))) (-3799 (((-112) $ $) NIL)) (-1406 (((-406 (-562)) $ (-562)) NIL)) (-2757 (($ $) NIL (|has| (-116 |#1|) (-815)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $) NIL (|has| (-116 |#1|) (-232))) (($ $ (-766)) NIL (|has| (-116 |#1|) (-232))) (($ $ (-1168)) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-116 |#1|) (-895 (-1168)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-766)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-116 |#1|) (-845)))) (-1771 (((-112) $ $) NIL (|has| (-116 |#1|) (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-116 |#1|) (-845)))) (-1761 (((-112) $ $) NIL (|has| (-116 |#1|) (-845)))) (-1859 (($ $ $) NIL) (($ (-116 |#1|) (-116 |#1|)) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-116 |#1|) $) NIL) (($ $ (-116 |#1|)) NIL)))
+(((-117 |#1|) (-13 (-987 (-116 |#1|)) (-10 -8 (-15 -1406 ((-406 (-562)) $ (-562))) (-15 -1477 ((-173 (-406 (-562))) $)) (-15 -2449 ($ $)) (-15 -2449 ($ (-562) $)))) (-562)) (T -117))
+((-1406 (*1 *2 *1 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-117 *4)) (-14 *4 *3) (-5 *3 (-562)))) (-1477 (*1 *2 *1) (-12 (-5 *2 (-173 (-406 (-562)))) (-5 *1 (-117 *3)) (-14 *3 (-562)))) (-2449 (*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-562)))) (-2449 (*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-117 *3)) (-14 *3 *2))))
+(-13 (-987 (-116 |#1|)) (-10 -8 (-15 -1406 ((-406 (-562)) $ (-562))) (-15 -1477 ((-173 (-406 (-562))) $)) (-15 -2449 ($ $)) (-15 -2449 ($ (-562) $))))
+((-4200 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 48) (($ $ "right" $) 50)) (-2409 (((-639 $) $) 27)) (-4188 (((-112) $ $) 32)) (-1572 (((-112) |#2| $) 36)) (-4008 (((-639 |#2|) $) 22)) (-3179 (((-112) $) 16)) (-2343 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-2473 (((-112) $) 45)) (-4053 (((-857) $) 41)) (-3643 (((-639 $) $) 28)) (-1733 (((-112) $ $) 34)) (-3492 (((-766) $) 43)))
+(((-118 |#1| |#2|) (-10 -8 (-15 -4053 ((-857) |#1|)) (-15 -4200 (|#1| |#1| "right" |#1|)) (-15 -4200 (|#1| |#1| "left" |#1|)) (-15 -2343 (|#1| |#1| "right")) (-15 -2343 (|#1| |#1| "left")) (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -4188 ((-112) |#1| |#1|)) (-15 -4008 ((-639 |#2|) |#1|)) (-15 -2473 ((-112) |#1|)) (-15 -2343 (|#2| |#1| "value")) (-15 -3179 ((-112) |#1|)) (-15 -2409 ((-639 |#1|) |#1|)) (-15 -3643 ((-639 |#1|) |#1|)) (-15 -1733 ((-112) |#1| |#1|)) (-15 -1572 ((-112) |#2| |#1|)) (-15 -3492 ((-766) |#1|))) (-119 |#2|) (-1207)) (T -118))
+NIL
+(-10 -8 (-15 -4053 ((-857) |#1|)) (-15 -4200 (|#1| |#1| "right" |#1|)) (-15 -4200 (|#1| |#1| "left" |#1|)) (-15 -2343 (|#1| |#1| "right")) (-15 -2343 (|#1| |#1| "left")) (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -4188 ((-112) |#1| |#1|)) (-15 -4008 ((-639 |#2|) |#1|)) (-15 -2473 ((-112) |#1|)) (-15 -2343 (|#2| |#1| "value")) (-15 -3179 ((-112) |#1|)) (-15 -2409 ((-639 |#1|) |#1|)) (-15 -3643 ((-639 |#1|) |#1|)) (-15 -1733 ((-112) |#1| |#1|)) (-15 -1572 ((-112) |#2| |#1|)) (-15 -3492 ((-766) |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2533 ((|#1| $) 48)) (-3735 (((-112) $ (-766)) 8)) (-2677 ((|#1| $ |#1|) 39 (|has| $ (-6 -4404)))) (-3853 (($ $ $) 52 (|has| $ (-6 -4404)))) (-2861 (($ $ $) 54 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4404))) (($ $ "left" $) 55 (|has| $ (-6 -4404))) (($ $ "right" $) 53 (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) 41 (|has| $ (-6 -4404)))) (-3329 (($) 7 T CONST)) (-1603 (($ $) 57)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) 50)) (-4188 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-1589 (($ $) 59)) (-4008 (((-639 |#1|) $) 45)) (-3179 (((-112) $) 49)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-1423 (((-562) $ $) 44)) (-2473 (((-112) $) 46)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) 51)) (-2985 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-119 |#1|) (-139) (-1207)) (T -119))
-((-1588 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1207)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-119 *3)) (-4 *3 (-1207)))) (-1602 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1207)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-119 *3)) (-4 *3 (-1207)))) (-4200 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4403)) (-4 *1 (-119 *3)) (-4 *3 (-1207)))) (-3225 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-119 *2)) (-4 *2 (-1207)))) (-4200 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4403)) (-4 *1 (-119 *3)) (-4 *3 (-1207)))) (-1718 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-119 *2)) (-4 *2 (-1207)))))
-(-13 (-1005 |t#1|) (-10 -8 (-15 -1588 ($ $)) (-15 -2343 ($ $ "left")) (-15 -1602 ($ $)) (-15 -2343 ($ $ "right")) (IF (|has| $ (-6 -4403)) (PROGN (-15 -4200 ($ $ "left" $)) (-15 -3225 ($ $ $)) (-15 -4200 ($ $ "right" $)) (-15 -1718 ($ $ $))) |%noBranch|)))
+((-1589 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1207)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-119 *3)) (-4 *3 (-1207)))) (-1603 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1207)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-119 *3)) (-4 *3 (-1207)))) (-4200 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4404)) (-4 *1 (-119 *3)) (-4 *3 (-1207)))) (-2861 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-119 *2)) (-4 *2 (-1207)))) (-4200 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4404)) (-4 *1 (-119 *3)) (-4 *3 (-1207)))) (-3853 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-119 *2)) (-4 *2 (-1207)))))
+(-13 (-1005 |t#1|) (-10 -8 (-15 -1589 ($ $)) (-15 -2343 ($ $ "left")) (-15 -1603 ($ $)) (-15 -2343 ($ $ "right")) (IF (|has| $ (-6 -4404)) (PROGN (-15 -4200 ($ $ "left" $)) (-15 -2861 ($ $ $)) (-15 -4200 ($ $ "right" $)) (-15 -3853 ($ $ $))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1005 |#1|) . T) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-4013 (((-112) |#1|) 24)) (-4228 (((-766) (-766)) 23) (((-766)) 22)) (-4162 (((-112) |#1| (-112)) 25) (((-112) |#1|) 26)))
-(((-120 |#1|) (-10 -7 (-15 -4162 ((-112) |#1|)) (-15 -4162 ((-112) |#1| (-112))) (-15 -4228 ((-766))) (-15 -4228 ((-766) (-766))) (-15 -4013 ((-112) |#1|))) (-1232 (-562))) (T -120))
-((-4013 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))) (-4228 (*1 *2 *2) (-12 (-5 *2 (-766)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))) (-4228 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))) (-4162 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))) (-4162 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))))
-(-10 -7 (-15 -4162 ((-112) |#1|)) (-15 -4162 ((-112) |#1| (-112))) (-15 -4228 ((-766))) (-15 -4228 ((-766) (-766))) (-15 -4013 ((-112) |#1|)))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2534 ((|#1| $) 15)) (-2176 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 22)) (-4336 (((-112) $ (-766)) NIL)) (-1512 ((|#1| $ |#1|) NIL (|has| $ (-6 -4403)))) (-1718 (($ $ $) 18 (|has| $ (-6 -4403)))) (-3225 (($ $ $) 20 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4403))) (($ $ "left" $) NIL (|has| $ (-6 -4403))) (($ $ "right" $) NIL (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) NIL (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-1602 (($ $) 17)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) NIL)) (-4379 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3531 (($ $ |#1| $) 23)) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-1588 (($ $) 19)) (-4007 (((-639 |#1|) $) NIL)) (-3449 (((-112) $) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1425 (($ |#1| $) 24)) (-4300 (($ |#1| $) 10)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 14)) (-4307 (($) 8)) (-2343 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2568 (((-562) $ $) NIL)) (-2424 (((-112) $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) NIL)) (-4055 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1894 (($ (-639 |#1|)) 12)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-121 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4403) (-6 -4402) (-15 -1894 ($ (-639 |#1|))) (-15 -4300 ($ |#1| $)) (-15 -1425 ($ |#1| $)) (-15 -2176 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-845)) (T -121))
-((-1894 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-121 *3)))) (-4300 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-845)))) (-1425 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-845)))) (-2176 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3)))) (-5 *1 (-121 *3)) (-4 *3 (-845)))))
-(-13 (-125 |#1|) (-10 -8 (-6 -4403) (-6 -4402) (-15 -1894 ($ (-639 |#1|))) (-15 -4300 ($ |#1| $)) (-15 -1425 ($ |#1| $)) (-15 -2176 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
-((-3295 (($ $) 12)) (-2236 (($ $) 10)) (-1325 (($ $ $) 22)) (-2134 (($ $ $) 20)) (-2308 (($ $ $) 18)) (-2298 (($ $ $) 16)))
-(((-122 |#1|) (-10 -8 (-15 -1325 (|#1| |#1| |#1|)) (-15 -2134 (|#1| |#1| |#1|)) (-15 -2236 (|#1| |#1|)) (-15 -3295 (|#1| |#1|)) (-15 -2298 (|#1| |#1| |#1|)) (-15 -2308 (|#1| |#1| |#1|))) (-123)) (T -122))
-NIL
-(-10 -8 (-15 -1325 (|#1| |#1| |#1|)) (-15 -2134 (|#1| |#1| |#1|)) (-15 -2236 (|#1| |#1|)) (-15 -3295 (|#1| |#1|)) (-15 -2298 (|#1| |#1| |#1|)) (-15 -2308 (|#1| |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-3295 (($ $) 103)) (-2265 (($ $ $) 25)) (-3052 (((-1261) $ (-562) (-562)) 66 (|has| $ (-6 -4403)))) (-1399 (((-112) $) 98 (|has| (-112) (-845))) (((-112) (-1 (-112) (-112) (-112)) $) 92)) (-3381 (($ $) 102 (-12 (|has| (-112) (-845)) (|has| $ (-6 -4403)))) (($ (-1 (-112) (-112) (-112)) $) 101 (|has| $ (-6 -4403)))) (-1395 (($ $) 97 (|has| (-112) (-845))) (($ (-1 (-112) (-112) (-112)) $) 91)) (-4336 (((-112) $ (-766)) 37)) (-4200 (((-112) $ (-1223 (-562)) (-112)) 88 (|has| $ (-6 -4403))) (((-112) $ (-562) (-112)) 54 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-112)) $) 71 (|has| $ (-6 -4402)))) (-1800 (($) 38 T CONST)) (-2447 (($ $) 100 (|has| $ (-6 -4403)))) (-2677 (($ $) 90)) (-1459 (($ $) 68 (-12 (|has| (-112) (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ (-1 (-112) (-112)) $) 72 (|has| $ (-6 -4402))) (($ (-112) $) 69 (-12 (|has| (-112) (-1092)) (|has| $ (-6 -4402))))) (-1955 (((-112) (-1 (-112) (-112) (-112)) $) 74 (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) 73 (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) 70 (-12 (|has| (-112) (-1092)) (|has| $ (-6 -4402))))) (-1505 (((-112) $ (-562) (-112)) 53 (|has| $ (-6 -4403)))) (-1420 (((-112) $ (-562)) 55)) (-4264 (((-562) (-112) $ (-562)) 95 (|has| (-112) (-1092))) (((-562) (-112) $) 94 (|has| (-112) (-1092))) (((-562) (-1 (-112) (-112)) $) 93)) (-1720 (((-639 (-112)) $) 45 (|has| $ (-6 -4402)))) (-2255 (($ $ $) 26)) (-2236 (($ $) 30)) (-1325 (($ $ $) 28)) (-1458 (($ (-766) (-112)) 77)) (-2134 (($ $ $) 29)) (-3292 (((-112) $ (-766)) 36)) (-4197 (((-562) $) 63 (|has| (-562) (-845)))) (-1551 (($ $ $) 13)) (-1610 (($ $ $) 96 (|has| (-112) (-845))) (($ (-1 (-112) (-112) (-112)) $ $) 89)) (-1912 (((-639 (-112)) $) 46 (|has| $ (-6 -4402)))) (-1669 (((-112) (-112) $) 48 (-12 (|has| (-112) (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 62 (|has| (-562) (-845)))) (-2993 (($ $ $) 14)) (-1490 (($ (-1 (-112) (-112)) $) 41 (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-112) (-112) (-112)) $ $) 82) (($ (-1 (-112) (-112)) $) 40)) (-3289 (((-112) $ (-766)) 35)) (-2913 (((-1150) $) 9)) (-3297 (($ $ $ (-562)) 87) (($ (-112) $ (-562)) 86)) (-2093 (((-639 (-562)) $) 60)) (-1570 (((-112) (-562) $) 59)) (-1709 (((-1112) $) 10)) (-1421 (((-112) $) 64 (|has| (-562) (-845)))) (-3251 (((-3 (-112) "failed") (-1 (-112) (-112)) $) 75)) (-2716 (($ $ (-112)) 65 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) (-112)) $) 43 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-112)) (-639 (-112))) 52 (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-112) (-112)) 51 (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-293 (-112))) 50 (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-639 (-293 (-112)))) 49 (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092))))) (-3336 (((-112) $ $) 31)) (-3521 (((-112) (-112) $) 61 (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092))))) (-2411 (((-639 (-112)) $) 58)) (-2974 (((-112) $) 34)) (-4307 (($) 33)) (-2343 (($ $ (-1223 (-562))) 83) (((-112) $ (-562)) 57) (((-112) $ (-562) (-112)) 56)) (-2880 (($ $ (-1223 (-562))) 85) (($ $ (-562)) 84)) (-1723 (((-766) (-112) $) 47 (-12 (|has| (-112) (-1092)) (|has| $ (-6 -4402)))) (((-766) (-1 (-112) (-112)) $) 44 (|has| $ (-6 -4402)))) (-1853 (($ $ $ (-562)) 99 (|has| $ (-6 -4403)))) (-4220 (($ $) 32)) (-4208 (((-535) $) 67 (|has| (-112) (-610 (-535))))) (-4066 (($ (-639 (-112))) 76)) (-2767 (($ (-639 $)) 81) (($ $ $) 80) (($ (-112) $) 79) (($ $ (-112)) 78)) (-4054 (((-857) $) 11)) (-1744 (((-112) (-1 (-112) (-112)) $) 42 (|has| $ (-6 -4402)))) (-2246 (($ $ $) 27)) (-2308 (($ $ $) 105)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)) (-2298 (($ $ $) 104)) (-3492 (((-766) $) 39 (|has| $ (-6 -4402)))))
+((-3857 (((-112) |#1|) 24)) (-2126 (((-766) (-766)) 23) (((-766)) 22)) (-2737 (((-112) |#1| (-112)) 25) (((-112) |#1|) 26)))
+(((-120 |#1|) (-10 -7 (-15 -2737 ((-112) |#1|)) (-15 -2737 ((-112) |#1| (-112))) (-15 -2126 ((-766))) (-15 -2126 ((-766) (-766))) (-15 -3857 ((-112) |#1|))) (-1232 (-562))) (T -120))
+((-3857 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))) (-2126 (*1 *2 *2) (-12 (-5 *2 (-766)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))) (-2126 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))) (-2737 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))) (-2737 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))))
+(-10 -7 (-15 -2737 ((-112) |#1|)) (-15 -2737 ((-112) |#1| (-112))) (-15 -2126 ((-766))) (-15 -2126 ((-766) (-766))) (-15 -3857 ((-112) |#1|)))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2533 ((|#1| $) 15)) (-1841 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 22)) (-3735 (((-112) $ (-766)) NIL)) (-2677 ((|#1| $ |#1|) NIL (|has| $ (-6 -4404)))) (-3853 (($ $ $) 18 (|has| $ (-6 -4404)))) (-2861 (($ $ $) 20 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4404))) (($ $ "left" $) NIL (|has| $ (-6 -4404))) (($ $ "right" $) NIL (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) NIL (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-1603 (($ $) 17)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) NIL)) (-4188 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3532 (($ $ |#1| $) 23)) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-1589 (($ $) 19)) (-4008 (((-639 |#1|) $) NIL)) (-3179 (((-112) $) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1943 (($ |#1| $) 24)) (-1581 (($ |#1| $) 10)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 14)) (-1663 (($) 8)) (-2343 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1423 (((-562) $ $) NIL)) (-2473 (((-112) $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) NIL)) (-2985 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1931 (($ (-639 |#1|)) 12)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-121 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4404) (-6 -4403) (-15 -1931 ($ (-639 |#1|))) (-15 -1581 ($ |#1| $)) (-15 -1943 ($ |#1| $)) (-15 -1841 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-845)) (T -121))
+((-1931 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-121 *3)))) (-1581 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-845)))) (-1943 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-845)))) (-1841 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3)))) (-5 *1 (-121 *3)) (-4 *3 (-845)))))
+(-13 (-125 |#1|) (-10 -8 (-6 -4404) (-6 -4403) (-15 -1931 ($ (-639 |#1|))) (-15 -1581 ($ |#1| $)) (-15 -1943 ($ |#1| $)) (-15 -1841 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
+((-3294 (($ $) 12)) (-2234 (($ $) 10)) (-1886 (($ $ $) 22)) (-2618 (($ $ $) 20)) (-2306 (($ $ $) 18)) (-2297 (($ $ $) 16)))
+(((-122 |#1|) (-10 -8 (-15 -1886 (|#1| |#1| |#1|)) (-15 -2618 (|#1| |#1| |#1|)) (-15 -2234 (|#1| |#1|)) (-15 -3294 (|#1| |#1|)) (-15 -2297 (|#1| |#1| |#1|)) (-15 -2306 (|#1| |#1| |#1|))) (-123)) (T -122))
+NIL
+(-10 -8 (-15 -1886 (|#1| |#1| |#1|)) (-15 -2618 (|#1| |#1| |#1|)) (-15 -2234 (|#1| |#1|)) (-15 -3294 (|#1| |#1|)) (-15 -2297 (|#1| |#1| |#1|)) (-15 -2306 (|#1| |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-3294 (($ $) 103)) (-2264 (($ $ $) 25)) (-3655 (((-1261) $ (-562) (-562)) 66 (|has| $ (-6 -4404)))) (-1706 (((-112) $) 98 (|has| (-112) (-845))) (((-112) (-1 (-112) (-112) (-112)) $) 92)) (-3737 (($ $) 102 (-12 (|has| (-112) (-845)) (|has| $ (-6 -4404)))) (($ (-1 (-112) (-112) (-112)) $) 101 (|has| $ (-6 -4404)))) (-1395 (($ $) 97 (|has| (-112) (-845))) (($ (-1 (-112) (-112) (-112)) $) 91)) (-3735 (((-112) $ (-766)) 37)) (-4200 (((-112) $ (-1223 (-562)) (-112)) 88 (|has| $ (-6 -4404))) (((-112) $ (-562) (-112)) 54 (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) (-112)) $) 71 (|has| $ (-6 -4403)))) (-3329 (($) 38 T CONST)) (-2673 (($ $) 100 (|has| $ (-6 -4404)))) (-2676 (($ $) 90)) (-1459 (($ $) 68 (-12 (|has| (-112) (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ (-1 (-112) (-112)) $) 72 (|has| $ (-6 -4403))) (($ (-112) $) 69 (-12 (|has| (-112) (-1092)) (|has| $ (-6 -4403))))) (-1954 (((-112) (-1 (-112) (-112) (-112)) $) 74 (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) 73 (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) 70 (-12 (|has| (-112) (-1092)) (|has| $ (-6 -4403))))) (-1507 (((-112) $ (-562) (-112)) 53 (|has| $ (-6 -4404)))) (-1420 (((-112) $ (-562)) 55)) (-4265 (((-562) (-112) $ (-562)) 95 (|has| (-112) (-1092))) (((-562) (-112) $) 94 (|has| (-112) (-1092))) (((-562) (-1 (-112) (-112)) $) 93)) (-1720 (((-639 (-112)) $) 45 (|has| $ (-6 -4403)))) (-2256 (($ $ $) 26)) (-2234 (($ $) 30)) (-1886 (($ $ $) 28)) (-1458 (($ (-766) (-112)) 77)) (-2618 (($ $ $) 29)) (-4172 (((-112) $ (-766)) 36)) (-1849 (((-562) $) 63 (|has| (-562) (-845)))) (-1551 (($ $ $) 13)) (-4103 (($ $ $) 96 (|has| (-112) (-845))) (($ (-1 (-112) (-112) (-112)) $ $) 89)) (-2123 (((-639 (-112)) $) 46 (|has| $ (-6 -4403)))) (-1572 (((-112) (-112) $) 48 (-12 (|has| (-112) (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 62 (|has| (-562) (-845)))) (-2993 (($ $ $) 14)) (-1491 (($ (-1 (-112) (-112)) $) 41 (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-112) (-112) (-112)) $ $) 82) (($ (-1 (-112) (-112)) $) 40)) (-4147 (((-112) $ (-766)) 35)) (-3696 (((-1150) $) 9)) (-3295 (($ $ $ (-562)) 87) (($ (-112) $ (-562)) 86)) (-3336 (((-639 (-562)) $) 60)) (-1987 (((-112) (-562) $) 59)) (-1709 (((-1112) $) 10)) (-1421 (((-112) $) 64 (|has| (-562) (-845)))) (-1963 (((-3 (-112) "failed") (-1 (-112) (-112)) $) 75)) (-3510 (($ $ (-112)) 65 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) (-112)) $) 43 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-112)) (-639 (-112))) 52 (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-112) (-112)) 51 (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-293 (-112))) 50 (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-639 (-293 (-112)))) 49 (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092))))) (-1452 (((-112) $ $) 31)) (-2716 (((-112) (-112) $) 61 (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092))))) (-2366 (((-639 (-112)) $) 58)) (-3087 (((-112) $) 34)) (-1663 (($) 33)) (-2343 (($ $ (-1223 (-562))) 83) (((-112) $ (-562)) 57) (((-112) $ (-562) (-112)) 56)) (-2880 (($ $ (-1223 (-562))) 85) (($ $ (-562)) 84)) (-1723 (((-766) (-112) $) 47 (-12 (|has| (-112) (-1092)) (|has| $ (-6 -4403)))) (((-766) (-1 (-112) (-112)) $) 44 (|has| $ (-6 -4403)))) (-2694 (($ $ $ (-562)) 99 (|has| $ (-6 -4404)))) (-4220 (($ $) 32)) (-4208 (((-535) $) 67 (|has| (-112) (-610 (-535))))) (-4064 (($ (-639 (-112))) 76)) (-2767 (($ (-639 $)) 81) (($ $ $) 80) (($ (-112) $) 79) (($ $ (-112)) 78)) (-4053 (((-857) $) 11)) (-2879 (((-112) (-1 (-112) (-112)) $) 42 (|has| $ (-6 -4403)))) (-2245 (($ $ $) 27)) (-2306 (($ $ $) 105)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)) (-2297 (($ $ $) 104)) (-3492 (((-766) $) 39 (|has| $ (-6 -4403)))))
(((-123) (-139)) (T -123))
-((-2236 (*1 *1 *1) (-4 *1 (-123))) (-2134 (*1 *1 *1 *1) (-4 *1 (-123))) (-1325 (*1 *1 *1 *1) (-4 *1 (-123))) (-2246 (*1 *1 *1 *1) (-4 *1 (-123))) (-2255 (*1 *1 *1 *1) (-4 *1 (-123))) (-2265 (*1 *1 *1 *1) (-4 *1 (-123))))
-(-13 (-845) (-655) (-19 (-112)) (-10 -8 (-15 -2236 ($ $)) (-15 -2134 ($ $ $)) (-15 -1325 ($ $ $)) (-15 -2246 ($ $ $)) (-15 -2255 ($ $ $)) (-15 -2265 ($ $ $))))
+((-2234 (*1 *1 *1) (-4 *1 (-123))) (-2618 (*1 *1 *1 *1) (-4 *1 (-123))) (-1886 (*1 *1 *1 *1) (-4 *1 (-123))) (-2245 (*1 *1 *1 *1) (-4 *1 (-123))) (-2256 (*1 *1 *1 *1) (-4 *1 (-123))) (-2264 (*1 *1 *1 *1) (-4 *1 (-123))))
+(-13 (-845) (-655) (-19 (-112)) (-10 -8 (-15 -2234 ($ $)) (-15 -2618 ($ $ $)) (-15 -1886 ($ $ $)) (-15 -2245 ($ $ $)) (-15 -2256 ($ $ $)) (-15 -2264 ($ $ $))))
(((-34) . T) ((-102) . T) ((-609 (-857)) . T) ((-150 #0=(-112)) . T) ((-610 (-535)) |has| (-112) (-610 (-535))) ((-285 #1=(-562) #0#) . T) ((-287 #1# #0#) . T) ((-308 #0#) -12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092))) ((-372 #0#) . T) ((-488 #0#) . T) ((-600 #1# #0#) . T) ((-513 #0# #0#) -12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092))) ((-645 #0#) . T) ((-655) . T) ((-19 #0#) . T) ((-845) . T) ((-1092) . T) ((-1207) . T))
-((-1490 (($ (-1 |#2| |#2|) $) 22)) (-4220 (($ $) 16)) (-3492 (((-766) $) 24)))
-(((-124 |#1| |#2|) (-10 -8 (-15 -1490 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -4220 (|#1| |#1|))) (-125 |#2|) (-1092)) (T -124))
+((-1491 (($ (-1 |#2| |#2|) $) 22)) (-4220 (($ $) 16)) (-3492 (((-766) $) 24)))
+(((-124 |#1| |#2|) (-10 -8 (-15 -1491 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -4220 (|#1| |#1|))) (-125 |#2|) (-1092)) (T -124))
NIL
-(-10 -8 (-15 -1490 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -4220 (|#1| |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2534 ((|#1| $) 48)) (-4336 (((-112) $ (-766)) 8)) (-1512 ((|#1| $ |#1|) 39 (|has| $ (-6 -4403)))) (-1718 (($ $ $) 52 (|has| $ (-6 -4403)))) (-3225 (($ $ $) 54 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4403))) (($ $ "left" $) 55 (|has| $ (-6 -4403))) (($ $ "right" $) 53 (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) 41 (|has| $ (-6 -4403)))) (-1800 (($) 7 T CONST)) (-1602 (($ $) 57)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) 50)) (-4379 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-3531 (($ $ |#1| $) 60)) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-1588 (($ $) 59)) (-4007 (((-639 |#1|) $) 45)) (-3449 (((-112) $) 49)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-2568 (((-562) $ $) 44)) (-2424 (((-112) $) 46)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) 51)) (-4055 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+(-10 -8 (-15 -1491 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -4220 (|#1| |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2533 ((|#1| $) 48)) (-3735 (((-112) $ (-766)) 8)) (-2677 ((|#1| $ |#1|) 39 (|has| $ (-6 -4404)))) (-3853 (($ $ $) 52 (|has| $ (-6 -4404)))) (-2861 (($ $ $) 54 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4404))) (($ $ "left" $) 55 (|has| $ (-6 -4404))) (($ $ "right" $) 53 (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) 41 (|has| $ (-6 -4404)))) (-3329 (($) 7 T CONST)) (-1603 (($ $) 57)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) 50)) (-4188 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-3532 (($ $ |#1| $) 60)) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-1589 (($ $) 59)) (-4008 (((-639 |#1|) $) 45)) (-3179 (((-112) $) 49)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ "value") 47) (($ $ "left") 58) (($ $ "right") 56)) (-1423 (((-562) $ $) 44)) (-2473 (((-112) $) 46)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) 51)) (-2985 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-125 |#1|) (-139) (-1092)) (T -125))
-((-3531 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1092)))))
-(-13 (-119 |t#1|) (-10 -8 (-6 -4403) (-6 -4402) (-15 -3531 ($ $ |t#1| $))))
+((-3532 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1092)))))
+(-13 (-119 |t#1|) (-10 -8 (-6 -4404) (-6 -4403) (-15 -3532 ($ $ |t#1| $))))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-119 |#1|) . T) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1005 |#1|) . T) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2534 ((|#1| $) 15)) (-4336 (((-112) $ (-766)) NIL)) (-1512 ((|#1| $ |#1|) 19 (|has| $ (-6 -4403)))) (-1718 (($ $ $) 20 (|has| $ (-6 -4403)))) (-3225 (($ $ $) 18 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4403))) (($ $ "left" $) NIL (|has| $ (-6 -4403))) (($ $ "right" $) NIL (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) NIL (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-1602 (($ $) 21)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) NIL)) (-4379 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3531 (($ $ |#1| $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-1588 (($ $) NIL)) (-4007 (((-639 |#1|) $) NIL)) (-3449 (((-112) $) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-4300 (($ |#1| $) 10)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 14)) (-4307 (($) 8)) (-2343 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2568 (((-562) $ $) NIL)) (-2424 (((-112) $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) 17)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) NIL)) (-4055 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3942 (($ (-639 |#1|)) 12)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-126 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4403) (-15 -3942 ($ (-639 |#1|))) (-15 -4300 ($ |#1| $)))) (-845)) (T -126))
-((-3942 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-126 *3)))) (-4300 (*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-845)))))
-(-13 (-125 |#1|) (-10 -8 (-6 -4403) (-15 -3942 ($ (-639 |#1|))) (-15 -4300 ($ |#1| $))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2534 ((|#1| $) 24)) (-4336 (((-112) $ (-766)) NIL)) (-1512 ((|#1| $ |#1|) 26 (|has| $ (-6 -4403)))) (-1718 (($ $ $) 30 (|has| $ (-6 -4403)))) (-3225 (($ $ $) 28 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4403))) (($ $ "left" $) NIL (|has| $ (-6 -4403))) (($ $ "right" $) NIL (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) NIL (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-1602 (($ $) 20)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) NIL)) (-4379 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3531 (($ $ |#1| $) 15)) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-1588 (($ $) 19)) (-4007 (((-639 |#1|) $) NIL)) (-3449 (((-112) $) 21)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 18)) (-4307 (($) 11)) (-2343 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2568 (((-562) $ $) NIL)) (-2424 (((-112) $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) NIL)) (-4055 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2034 (($ |#1|) 17) (($ $ |#1| $) 16)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 10 (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-127 |#1|) (-13 (-125 |#1|) (-10 -8 (-15 -2034 ($ |#1|)) (-15 -2034 ($ $ |#1| $)))) (-1092)) (T -127))
-((-2034 (*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1092)))) (-2034 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1092)))))
-(-13 (-125 |#1|) (-10 -8 (-15 -2034 ($ |#1|)) (-15 -2034 ($ $ |#1| $))))
-((-4041 (((-112) $ $) NIL (|has| (-129) (-1092)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) (-129) (-129)) $) NIL) (((-112) $) NIL (|has| (-129) (-845)))) (-3381 (($ (-1 (-112) (-129) (-129)) $) NIL (|has| $ (-6 -4403))) (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-129) (-845))))) (-1395 (($ (-1 (-112) (-129) (-129)) $) NIL) (($ $) NIL (|has| (-129) (-845)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 (((-129) $ (-562) (-129)) 17 (|has| $ (-6 -4403))) (((-129) $ (-1223 (-562)) (-129)) NIL (|has| $ (-6 -4403)))) (-3181 (((-766) $ (-766)) 7)) (-3556 (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-129) (-1092))))) (-1475 (($ (-129) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-129) (-1092)))) (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-129) (-1 (-129) (-129) (-129)) $ (-129) (-129)) NIL (-12 (|has| $ (-6 -4402)) (|has| (-129) (-1092)))) (((-129) (-1 (-129) (-129) (-129)) $ (-129)) NIL (|has| $ (-6 -4402))) (((-129) (-1 (-129) (-129) (-129)) $) NIL (|has| $ (-6 -4402)))) (-1505 (((-129) $ (-562) (-129)) 16 (|has| $ (-6 -4403)))) (-1420 (((-129) $ (-562)) 13)) (-4264 (((-562) (-1 (-112) (-129)) $) NIL) (((-562) (-129) $) NIL (|has| (-129) (-1092))) (((-562) (-129) $ (-562)) NIL (|has| (-129) (-1092)))) (-1720 (((-639 (-129)) $) NIL (|has| $ (-6 -4402)))) (-1458 (($ (-766) (-129)) 11)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) 18 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| (-129) (-845)))) (-1610 (($ (-1 (-112) (-129) (-129)) $ $) NIL) (($ $ $) NIL (|has| (-129) (-845)))) (-1912 (((-639 (-129)) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-129) (-1092))))) (-3874 (((-562) $) 19 (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-129) (-845)))) (-1490 (($ (-1 (-129) (-129)) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-129) (-129)) $) NIL) (($ (-1 (-129) (-129) (-129)) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| (-129) (-1092)))) (-3297 (($ (-129) $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| (-129) (-1092)))) (-1421 (((-129) $) NIL (|has| (-562) (-845)))) (-3251 (((-3 (-129) "failed") (-1 (-112) (-129)) $) NIL)) (-2716 (($ $ (-129)) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-129)))) NIL (-12 (|has| (-129) (-308 (-129))) (|has| (-129) (-1092)))) (($ $ (-293 (-129))) NIL (-12 (|has| (-129) (-308 (-129))) (|has| (-129) (-1092)))) (($ $ (-129) (-129)) NIL (-12 (|has| (-129) (-308 (-129))) (|has| (-129) (-1092)))) (($ $ (-639 (-129)) (-639 (-129))) NIL (-12 (|has| (-129) (-308 (-129))) (|has| (-129) (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-129) (-1092))))) (-2411 (((-639 (-129)) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) 9)) (-2343 (((-129) $ (-562) (-129)) NIL) (((-129) $ (-562)) 15) (($ $ (-1223 (-562))) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4402))) (((-766) (-129) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-129) (-1092))))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-129) (-610 (-535))))) (-4066 (($ (-639 (-129))) 29)) (-2767 (($ $ (-129)) NIL) (($ (-129) $) NIL) (($ $ $) 30) (($ (-639 $)) NIL)) (-4054 (((-1150) $) 27) (((-857) $) NIL (|has| (-129) (-609 (-857))))) (-2574 (((-766) $) 14)) (-4227 (($ (-766)) 8)) (-1744 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| (-129) (-845)))) (-1772 (((-112) $ $) NIL (|has| (-129) (-845)))) (-1731 (((-112) $ $) 22 (|has| (-129) (-1092)))) (-1785 (((-112) $ $) NIL (|has| (-129) (-845)))) (-1759 (((-112) $ $) NIL (|has| (-129) (-845)))) (-3492 (((-766) $) 20)))
-(((-128) (-13 (-19 (-129)) (-609 (-1150)) (-10 -8 (-15 -4227 ($ (-766))) (-15 -3492 ((-766) $)) (-15 -2574 ((-766) $)) (-15 -3181 ((-766) $ (-766)))))) (T -128))
-((-4227 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-128)))) (-3492 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-128)))) (-2574 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-128)))) (-3181 (*1 *2 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-128)))))
-(-13 (-19 (-129)) (-609 (-1150)) (-10 -8 (-15 -4227 ($ (-766))) (-15 -3492 ((-766) $)) (-15 -2574 ((-766) $)) (-15 -3181 ((-766) $ (-766)))))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1800 (($) NIL)) (-1448 (($) NIL)) (-1551 (($ $ $) NIL) (($) 15 T CONST)) (-2993 (($ $ $) NIL) (($) 16 T CONST)) (-1999 (((-916) $) NIL)) (-2913 (((-1150) $) NIL)) (-2466 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL) (($ (-143)) 9) (((-143) $) 11)) (-2859 (($ (-766)) 6)) (-3010 (($ $ $) 18)) (-2998 (($ $ $) 17)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 13)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 14)))
-(((-129) (-13 (-839) (-489 (-143)) (-10 -8 (-15 -2859 ($ (-766))) (-15 -2998 ($ $ $)) (-15 -3010 ($ $ $)) (-15 -1800 ($))))) (T -129))
-((-2859 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-129)))) (-2998 (*1 *1 *1 *1) (-5 *1 (-129))) (-3010 (*1 *1 *1 *1) (-5 *1 (-129))) (-1800 (*1 *1) (-5 *1 (-129))))
-(-13 (-839) (-489 (-143)) (-10 -8 (-15 -2859 ($ (-766))) (-15 -2998 ($ $ $)) (-15 -3010 ($ $ $)) (-15 -1800 ($))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2533 ((|#1| $) 15)) (-3735 (((-112) $ (-766)) NIL)) (-2677 ((|#1| $ |#1|) 19 (|has| $ (-6 -4404)))) (-3853 (($ $ $) 20 (|has| $ (-6 -4404)))) (-2861 (($ $ $) 18 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4404))) (($ $ "left" $) NIL (|has| $ (-6 -4404))) (($ $ "right" $) NIL (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) NIL (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-1603 (($ $) 21)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) NIL)) (-4188 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3532 (($ $ |#1| $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-1589 (($ $) NIL)) (-4008 (((-639 |#1|) $) NIL)) (-3179 (((-112) $) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1581 (($ |#1| $) 10)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 14)) (-1663 (($) 8)) (-2343 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1423 (((-562) $ $) NIL)) (-2473 (((-112) $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) 17)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) NIL)) (-2985 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1325 (($ (-639 |#1|)) 12)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-126 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4404) (-15 -1325 ($ (-639 |#1|))) (-15 -1581 ($ |#1| $)))) (-845)) (T -126))
+((-1325 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-126 *3)))) (-1581 (*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-845)))))
+(-13 (-125 |#1|) (-10 -8 (-6 -4404) (-15 -1325 ($ (-639 |#1|))) (-15 -1581 ($ |#1| $))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2533 ((|#1| $) 24)) (-3735 (((-112) $ (-766)) NIL)) (-2677 ((|#1| $ |#1|) 26 (|has| $ (-6 -4404)))) (-3853 (($ $ $) 30 (|has| $ (-6 -4404)))) (-2861 (($ $ $) 28 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4404))) (($ $ "left" $) NIL (|has| $ (-6 -4404))) (($ $ "right" $) NIL (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) NIL (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-1603 (($ $) 20)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) NIL)) (-4188 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3532 (($ $ |#1| $) 15)) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-1589 (($ $) 19)) (-4008 (((-639 |#1|) $) NIL)) (-3179 (((-112) $) 21)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 18)) (-1663 (($) 11)) (-2343 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1423 (((-562) $ $) NIL)) (-2473 (((-112) $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) NIL)) (-2985 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3931 (($ |#1|) 17) (($ $ |#1| $) 16)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 10 (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-127 |#1|) (-13 (-125 |#1|) (-10 -8 (-15 -3931 ($ |#1|)) (-15 -3931 ($ $ |#1| $)))) (-1092)) (T -127))
+((-3931 (*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1092)))) (-3931 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1092)))))
+(-13 (-125 |#1|) (-10 -8 (-15 -3931 ($ |#1|)) (-15 -3931 ($ $ |#1| $))))
+((-4041 (((-112) $ $) NIL (|has| (-129) (-1092)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) (-129) (-129)) $) NIL) (((-112) $) NIL (|has| (-129) (-845)))) (-3737 (($ (-1 (-112) (-129) (-129)) $) NIL (|has| $ (-6 -4404))) (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| (-129) (-845))))) (-1395 (($ (-1 (-112) (-129) (-129)) $) NIL) (($ $) NIL (|has| (-129) (-845)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 (((-129) $ (-562) (-129)) 17 (|has| $ (-6 -4404))) (((-129) $ (-1223 (-562)) (-129)) NIL (|has| $ (-6 -4404)))) (-2476 (((-766) $ (-766)) 7)) (-3556 (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-129) (-1092))))) (-1475 (($ (-129) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-129) (-1092)))) (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-129) (-1 (-129) (-129) (-129)) $ (-129) (-129)) NIL (-12 (|has| $ (-6 -4403)) (|has| (-129) (-1092)))) (((-129) (-1 (-129) (-129) (-129)) $ (-129)) NIL (|has| $ (-6 -4403))) (((-129) (-1 (-129) (-129) (-129)) $) NIL (|has| $ (-6 -4403)))) (-1507 (((-129) $ (-562) (-129)) 16 (|has| $ (-6 -4404)))) (-1420 (((-129) $ (-562)) 13)) (-4265 (((-562) (-1 (-112) (-129)) $) NIL) (((-562) (-129) $) NIL (|has| (-129) (-1092))) (((-562) (-129) $ (-562)) NIL (|has| (-129) (-1092)))) (-1720 (((-639 (-129)) $) NIL (|has| $ (-6 -4403)))) (-1458 (($ (-766) (-129)) 11)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) 18 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| (-129) (-845)))) (-4103 (($ (-1 (-112) (-129) (-129)) $ $) NIL) (($ $ $) NIL (|has| (-129) (-845)))) (-2123 (((-639 (-129)) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-129) (-1092))))) (-1929 (((-562) $) 19 (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-129) (-845)))) (-1491 (($ (-1 (-129) (-129)) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-129) (-129)) $) NIL) (($ (-1 (-129) (-129) (-129)) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| (-129) (-1092)))) (-3295 (($ (-129) $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| (-129) (-1092)))) (-1421 (((-129) $) NIL (|has| (-562) (-845)))) (-1963 (((-3 (-129) "failed") (-1 (-112) (-129)) $) NIL)) (-3510 (($ $ (-129)) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-129)))) NIL (-12 (|has| (-129) (-308 (-129))) (|has| (-129) (-1092)))) (($ $ (-293 (-129))) NIL (-12 (|has| (-129) (-308 (-129))) (|has| (-129) (-1092)))) (($ $ (-129) (-129)) NIL (-12 (|has| (-129) (-308 (-129))) (|has| (-129) (-1092)))) (($ $ (-639 (-129)) (-639 (-129))) NIL (-12 (|has| (-129) (-308 (-129))) (|has| (-129) (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-129) (-1092))))) (-2366 (((-639 (-129)) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) 9)) (-2343 (((-129) $ (-562) (-129)) NIL) (((-129) $ (-562)) 15) (($ $ (-1223 (-562))) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4403))) (((-766) (-129) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-129) (-1092))))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-129) (-610 (-535))))) (-4064 (($ (-639 (-129))) 29)) (-2767 (($ $ (-129)) NIL) (($ (-129) $) NIL) (($ $ $) 30) (($ (-639 $)) NIL)) (-4053 (((-1150) $) 27) (((-857) $) NIL (|has| (-129) (-609 (-857))))) (-1505 (((-766) $) 14)) (-2117 (($ (-766)) 8)) (-2879 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| (-129) (-845)))) (-1771 (((-112) $ $) NIL (|has| (-129) (-845)))) (-1733 (((-112) $ $) 22 (|has| (-129) (-1092)))) (-1785 (((-112) $ $) NIL (|has| (-129) (-845)))) (-1761 (((-112) $ $) NIL (|has| (-129) (-845)))) (-3492 (((-766) $) 20)))
+(((-128) (-13 (-19 (-129)) (-609 (-1150)) (-10 -8 (-15 -2117 ($ (-766))) (-15 -3492 ((-766) $)) (-15 -1505 ((-766) $)) (-15 -2476 ((-766) $ (-766)))))) (T -128))
+((-2117 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-128)))) (-3492 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-128)))) (-1505 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-128)))) (-2476 (*1 *2 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-128)))))
+(-13 (-19 (-129)) (-609 (-1150)) (-10 -8 (-15 -2117 ($ (-766))) (-15 -3492 ((-766) $)) (-15 -1505 ((-766) $)) (-15 -2476 ((-766) $ (-766)))))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-3329 (($) NIL)) (-1447 (($) NIL)) (-1551 (($ $ $) NIL) (($) 15 T CONST)) (-2993 (($ $ $) NIL) (($) 16 T CONST)) (-3549 (((-916) $) NIL)) (-3696 (((-1150) $) NIL)) (-2464 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL) (($ (-143)) 9) (((-143) $) 11)) (-1298 (($ (-766)) 6)) (-3009 (($ $ $) 18)) (-2997 (($ $ $) 17)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 13)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 14)))
+(((-129) (-13 (-839) (-489 (-143)) (-10 -8 (-15 -1298 ($ (-766))) (-15 -2997 ($ $ $)) (-15 -3009 ($ $ $)) (-15 -3329 ($))))) (T -129))
+((-1298 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-129)))) (-2997 (*1 *1 *1 *1) (-5 *1 (-129))) (-3009 (*1 *1 *1 *1) (-5 *1 (-129))) (-3329 (*1 *1) (-5 *1 (-129))))
+(-13 (-839) (-489 (-143)) (-10 -8 (-15 -1298 ($ (-766))) (-15 -2997 ($ $ $)) (-15 -3009 ($ $ $)) (-15 -3329 ($))))
((|NonNegativeInteger|) (< |#1| 256))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15)))
(((-130) (-139)) (T -130))
-((-3214 (*1 *1 *1 *1) (|partial| -4 *1 (-130))))
-(-13 (-23) (-10 -8 (-15 -3214 ((-3 $ "failed") $ $))))
+((-2781 (*1 *1 *1 *1) (|partial| -4 *1 (-130))))
+(-13 (-23) (-10 -8 (-15 -2781 ((-3 $ "failed") $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-4041 (((-112) $ $) 7)) (-2111 (((-1261) $ (-766)) 19)) (-4264 (((-766) $) 20)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)))
+((-4041 (((-112) $ $) 7)) (-2389 (((-1261) $ (-766)) 19)) (-4265 (((-766) $) 20)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)))
(((-131) (-139)) (T -131))
-((-4264 (*1 *2 *1) (-12 (-4 *1 (-131)) (-5 *2 (-766)))) (-2111 (*1 *2 *1 *3) (-12 (-4 *1 (-131)) (-5 *3 (-766)) (-5 *2 (-1261)))))
-(-13 (-845) (-10 -8 (-15 -4264 ((-766) $)) (-15 -2111 ((-1261) $ (-766)))))
+((-4265 (*1 *2 *1) (-12 (-4 *1 (-131)) (-5 *2 (-766)))) (-2389 (*1 *2 *1 *3) (-12 (-4 *1 (-131)) (-5 *3 (-766)) (-5 *2 (-1261)))))
+(-13 (-845) (-10 -8 (-15 -4265 ((-766) $)) (-15 -2389 ((-1261) $ (-766)))))
(((-102) . T) ((-609 (-857)) . T) ((-845) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 18) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-639 (-1127)) $) 10)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 18) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-639 (-1127)) $) 10)) (-1733 (((-112) $ $) NIL)))
(((-132) (-13 (-1075) (-10 -8 (-15 -3265 ((-639 (-1127)) $))))) (T -132))
((-3265 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-132)))))
(-13 (-1075) (-10 -8 (-15 -3265 ((-639 (-1127)) $))))
-((-4041 (((-112) $ $) 34)) (-1952 (((-112) $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-766) "failed") $) 41)) (-3961 (((-766) $) 39)) (-3668 (((-3 $ "failed") $) NIL)) (-1957 (((-112) $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) 27)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2299 (((-112)) 42)) (-3785 (((-112) (-112)) 44)) (-2939 (((-112) $) 24)) (-4111 (((-112) $) 38)) (-4054 (((-857) $) 22) (($ (-766)) 14)) (-2286 (($) 11 T CONST)) (-2294 (($) 12 T CONST)) (-2872 (($ (-766)) 15)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 25)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 26)) (-1848 (((-3 $ "failed") $ $) 30)) (-1835 (($ $ $) 28)) (** (($ $ (-766)) NIL) (($ $ (-916)) NIL) (($ $ $) 37)) (* (($ (-766) $) 33) (($ (-916) $) NIL) (($ $ $) 31)))
-(((-133) (-13 (-845) (-23) (-721) (-1033 (-766)) (-10 -8 (-6 (-4404 "*")) (-15 -1848 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -2872 ($ (-766))) (-15 -2939 ((-112) $)) (-15 -4111 ((-112) $)) (-15 -2299 ((-112))) (-15 -3785 ((-112) (-112)))))) (T -133))
-((-1848 (*1 *1 *1 *1) (|partial| -5 *1 (-133))) (** (*1 *1 *1 *1) (-5 *1 (-133))) (-2872 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-133)))) (-2939 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133)))) (-4111 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133)))) (-2299 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))) (-3785 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
-(-13 (-845) (-23) (-721) (-1033 (-766)) (-10 -8 (-6 (-4404 "*")) (-15 -1848 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -2872 ($ (-766))) (-15 -2939 ((-112) $)) (-15 -4111 ((-112) $)) (-15 -2299 ((-112))) (-15 -3785 ((-112) (-112)))))
-((-4164 (((-135 |#1| |#2| |#4|) (-639 |#4|) (-135 |#1| |#2| |#3|)) 14)) (-4152 (((-135 |#1| |#2| |#4|) (-1 |#4| |#3|) (-135 |#1| |#2| |#3|)) 18)))
-(((-134 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4164 ((-135 |#1| |#2| |#4|) (-639 |#4|) (-135 |#1| |#2| |#3|))) (-15 -4152 ((-135 |#1| |#2| |#4|) (-1 |#4| |#3|) (-135 |#1| |#2| |#3|)))) (-562) (-766) (-171) (-171)) (T -134))
-((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-135 *5 *6 *7)) (-14 *5 (-562)) (-14 *6 (-766)) (-4 *7 (-171)) (-4 *8 (-171)) (-5 *2 (-135 *5 *6 *8)) (-5 *1 (-134 *5 *6 *7 *8)))) (-4164 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-135 *5 *6 *7)) (-14 *5 (-562)) (-14 *6 (-766)) (-4 *7 (-171)) (-4 *8 (-171)) (-5 *2 (-135 *5 *6 *8)) (-5 *1 (-134 *5 *6 *7 *8)))))
-(-10 -7 (-15 -4164 ((-135 |#1| |#2| |#4|) (-639 |#4|) (-135 |#1| |#2| |#3|))) (-15 -4152 ((-135 |#1| |#2| |#4|) (-1 |#4| |#3|) (-135 |#1| |#2| |#3|))))
-((-4041 (((-112) $ $) NIL)) (-1741 (($ (-639 |#3|)) 40)) (-2529 (($ $) 99) (($ $ (-562) (-562)) 98)) (-1800 (($) 17)) (-4048 (((-3 |#3| "failed") $) 60)) (-3961 ((|#3| $) NIL)) (-4051 (($ $ (-639 (-562))) 100)) (-4148 (((-639 |#3|) $) 36)) (-2173 (((-766) $) 44)) (-1397 (($ $ $) 93)) (-1742 (($) 43)) (-2913 (((-1150) $) NIL)) (-3269 (($) 16)) (-1709 (((-1112) $) NIL)) (-2343 ((|#3| $) 46) ((|#3| $ (-562)) 47) ((|#3| $ (-562) (-562)) 48) ((|#3| $ (-562) (-562) (-562)) 49) ((|#3| $ (-562) (-562) (-562) (-562)) 50) ((|#3| $ (-639 (-562))) 52)) (-3598 (((-766) $) 45)) (-3791 (($ $ (-562) $ (-562)) 94) (($ $ (-562) (-562)) 96)) (-4054 (((-857) $) 67) (($ |#3|) 68) (($ (-239 |#2| |#3|)) 75) (($ (-1134 |#2| |#3|)) 78) (($ (-639 |#3|)) 53) (($ (-639 $)) 58)) (-2286 (($) 69 T CONST)) (-2294 (($) 70 T CONST)) (-1731 (((-112) $ $) 80)) (-1848 (($ $) 86) (($ $ $) 84)) (-1835 (($ $ $) 82)) (* (($ |#3| $) 91) (($ $ |#3|) 92) (($ $ (-562)) 89) (($ (-562) $) 88) (($ $ $) 95)))
-(((-135 |#1| |#2| |#3|) (-13 (-464 |#3| (-766)) (-469 (-562) (-766)) (-10 -8 (-15 -4054 ($ (-239 |#2| |#3|))) (-15 -4054 ($ (-1134 |#2| |#3|))) (-15 -4054 ($ (-639 |#3|))) (-15 -4054 ($ (-639 $))) (-15 -2173 ((-766) $)) (-15 -2343 (|#3| $)) (-15 -2343 (|#3| $ (-562))) (-15 -2343 (|#3| $ (-562) (-562))) (-15 -2343 (|#3| $ (-562) (-562) (-562))) (-15 -2343 (|#3| $ (-562) (-562) (-562) (-562))) (-15 -2343 (|#3| $ (-639 (-562)))) (-15 -1397 ($ $ $)) (-15 * ($ $ $)) (-15 -3791 ($ $ (-562) $ (-562))) (-15 -3791 ($ $ (-562) (-562))) (-15 -2529 ($ $)) (-15 -2529 ($ $ (-562) (-562))) (-15 -4051 ($ $ (-639 (-562)))) (-15 -3269 ($)) (-15 -1742 ($)) (-15 -4148 ((-639 |#3|) $)) (-15 -1741 ($ (-639 |#3|))) (-15 -1800 ($)))) (-562) (-766) (-171)) (T -135))
-((-1397 (*1 *1 *1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766)) (-4 *4 (-171)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-239 *4 *5)) (-14 *4 (-766)) (-4 *5 (-171)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-1134 *4 *5)) (-14 *4 (-766)) (-4 *5 (-171)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-639 *5)) (-4 *5 (-171)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)) (-14 *4 (-766)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-135 *3 *4 *5))) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)) (-14 *4 (-766)) (-4 *5 (-171)))) (-2173 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)) (-14 *4 *2) (-4 *5 (-171)))) (-2343 (*1 *2 *1) (-12 (-4 *2 (-171)) (-5 *1 (-135 *3 *4 *2)) (-14 *3 (-562)) (-14 *4 (-766)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *2 (-171)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-766)))) (-2343 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-4 *2 (-171)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-766)))) (-2343 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-562)) (-4 *2 (-171)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-766)))) (-2343 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-562)) (-4 *2 (-171)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-766)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-639 (-562))) (-4 *2 (-171)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 (-562)) (-14 *5 (-766)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766)) (-4 *4 (-171)))) (-3791 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-766)) (-4 *5 (-171)))) (-3791 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-766)) (-4 *5 (-171)))) (-2529 (*1 *1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766)) (-4 *4 (-171)))) (-2529 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-766)) (-4 *5 (-171)))) (-4051 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)) (-14 *4 (-766)) (-4 *5 (-171)))) (-3269 (*1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766)) (-4 *4 (-171)))) (-1742 (*1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766)) (-4 *4 (-171)))) (-4148 (*1 *2 *1) (-12 (-5 *2 (-639 *5)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)) (-14 *4 (-766)) (-4 *5 (-171)))) (-1741 (*1 *1 *2) (-12 (-5 *2 (-639 *5)) (-4 *5 (-171)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)) (-14 *4 (-766)))) (-1800 (*1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766)) (-4 *4 (-171)))))
-(-13 (-464 |#3| (-766)) (-469 (-562) (-766)) (-10 -8 (-15 -4054 ($ (-239 |#2| |#3|))) (-15 -4054 ($ (-1134 |#2| |#3|))) (-15 -4054 ($ (-639 |#3|))) (-15 -4054 ($ (-639 $))) (-15 -2173 ((-766) $)) (-15 -2343 (|#3| $)) (-15 -2343 (|#3| $ (-562))) (-15 -2343 (|#3| $ (-562) (-562))) (-15 -2343 (|#3| $ (-562) (-562) (-562))) (-15 -2343 (|#3| $ (-562) (-562) (-562) (-562))) (-15 -2343 (|#3| $ (-639 (-562)))) (-15 -1397 ($ $ $)) (-15 * ($ $ $)) (-15 -3791 ($ $ (-562) $ (-562))) (-15 -3791 ($ $ (-562) (-562))) (-15 -2529 ($ $)) (-15 -2529 ($ $ (-562) (-562))) (-15 -4051 ($ $ (-639 (-562)))) (-15 -3269 ($)) (-15 -1742 ($)) (-15 -4148 ((-639 |#3|) $)) (-15 -1741 ($ (-639 |#3|))) (-15 -1800 ($))))
-((-4041 (((-112) $ $) NIL)) (-4328 (((-1127) $) 11)) (-4316 (((-1127) $) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-136) (-13 (-1075) (-10 -8 (-15 -4316 ((-1127) $)) (-15 -4328 ((-1127) $))))) (T -136))
-((-4316 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-136)))) (-4328 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-136)))))
-(-13 (-1075) (-10 -8 (-15 -4316 ((-1127) $)) (-15 -4328 ((-1127) $))))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-2421 (((-1168) $) 10)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-639 (-1127)) $) 12)) (-1731 (((-112) $ $) NIL)))
-(((-137) (-13 (-1075) (-10 -8 (-15 -2421 ((-1168) $)) (-15 -3265 ((-639 (-1127)) $))))) (T -137))
-((-2421 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-137)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-137)))))
-(-13 (-1075) (-10 -8 (-15 -2421 ((-1168) $)) (-15 -3265 ((-639 (-1127)) $))))
-((-4041 (((-112) $ $) NIL)) (-3254 (((-505) $) NIL)) (-2913 (((-1150) $) NIL)) (-2421 (((-185) $) NIL)) (-1709 (((-1112) $) NIL)) (-3212 (((-639 (-112)) $) NIL)) (-4054 (((-857) $) NIL) (((-186) $) 6)) (-3087 (((-55) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) 34)) (-4325 (((-112) $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-766) "failed") $) 41)) (-3960 (((-766) $) 39)) (-1694 (((-3 $ "failed") $) NIL)) (-4367 (((-112) $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) 27)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3614 (((-112)) 42)) (-3422 (((-112) (-112)) 44)) (-3973 (((-112) $) 24)) (-3469 (((-112) $) 38)) (-4053 (((-857) $) 22) (($ (-766)) 14)) (-2285 (($) 11 T CONST)) (-2294 (($) 12 T CONST)) (-1438 (($ (-766)) 15)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 25)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 26)) (-1847 (((-3 $ "failed") $ $) 30)) (-1836 (($ $ $) 28)) (** (($ $ (-766)) NIL) (($ $ (-916)) NIL) (($ $ $) 37)) (* (($ (-766) $) 33) (($ (-916) $) NIL) (($ $ $) 31)))
+(((-133) (-13 (-845) (-23) (-721) (-1033 (-766)) (-10 -8 (-6 (-4405 "*")) (-15 -1847 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1438 ($ (-766))) (-15 -3973 ((-112) $)) (-15 -3469 ((-112) $)) (-15 -3614 ((-112))) (-15 -3422 ((-112) (-112)))))) (T -133))
+((-1847 (*1 *1 *1 *1) (|partial| -5 *1 (-133))) (** (*1 *1 *1 *1) (-5 *1 (-133))) (-1438 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-133)))) (-3973 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133)))) (-3469 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133)))) (-3614 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))) (-3422 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
+(-13 (-845) (-23) (-721) (-1033 (-766)) (-10 -8 (-6 (-4405 "*")) (-15 -1847 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1438 ($ (-766))) (-15 -3973 ((-112) $)) (-15 -3469 ((-112) $)) (-15 -3614 ((-112))) (-15 -3422 ((-112) (-112)))))
+((-4162 (((-135 |#1| |#2| |#4|) (-639 |#4|) (-135 |#1| |#2| |#3|)) 14)) (-4152 (((-135 |#1| |#2| |#4|) (-1 |#4| |#3|) (-135 |#1| |#2| |#3|)) 18)))
+(((-134 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4162 ((-135 |#1| |#2| |#4|) (-639 |#4|) (-135 |#1| |#2| |#3|))) (-15 -4152 ((-135 |#1| |#2| |#4|) (-1 |#4| |#3|) (-135 |#1| |#2| |#3|)))) (-562) (-766) (-171) (-171)) (T -134))
+((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-135 *5 *6 *7)) (-14 *5 (-562)) (-14 *6 (-766)) (-4 *7 (-171)) (-4 *8 (-171)) (-5 *2 (-135 *5 *6 *8)) (-5 *1 (-134 *5 *6 *7 *8)))) (-4162 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-135 *5 *6 *7)) (-14 *5 (-562)) (-14 *6 (-766)) (-4 *7 (-171)) (-4 *8 (-171)) (-5 *2 (-135 *5 *6 *8)) (-5 *1 (-134 *5 *6 *7 *8)))))
+(-10 -7 (-15 -4162 ((-135 |#1| |#2| |#4|) (-639 |#4|) (-135 |#1| |#2| |#3|))) (-15 -4152 ((-135 |#1| |#2| |#4|) (-1 |#4| |#3|) (-135 |#1| |#2| |#3|))))
+((-4041 (((-112) $ $) NIL)) (-2865 (($ (-639 |#3|)) 40)) (-2309 (($ $) 99) (($ $ (-562) (-562)) 98)) (-3329 (($) 17)) (-4048 (((-3 |#3| "failed") $) 60)) (-3960 ((|#3| $) NIL)) (-4193 (($ $ (-639 (-562))) 100)) (-4148 (((-639 |#3|) $) 36)) (-2172 (((-766) $) 44)) (-3912 (($ $ $) 93)) (-2873 (($) 43)) (-3696 (((-1150) $) NIL)) (-2129 (($) 16)) (-1709 (((-1112) $) NIL)) (-2343 ((|#3| $) 46) ((|#3| $ (-562)) 47) ((|#3| $ (-562) (-562)) 48) ((|#3| $ (-562) (-562) (-562)) 49) ((|#3| $ (-562) (-562) (-562) (-562)) 50) ((|#3| $ (-639 (-562))) 52)) (-2250 (((-766) $) 45)) (-3474 (($ $ (-562) $ (-562)) 94) (($ $ (-562) (-562)) 96)) (-4053 (((-857) $) 67) (($ |#3|) 68) (($ (-239 |#2| |#3|)) 75) (($ (-1134 |#2| |#3|)) 78) (($ (-639 |#3|)) 53) (($ (-639 $)) 58)) (-2285 (($) 69 T CONST)) (-2294 (($) 70 T CONST)) (-1733 (((-112) $ $) 80)) (-1847 (($ $) 86) (($ $ $) 84)) (-1836 (($ $ $) 82)) (* (($ |#3| $) 91) (($ $ |#3|) 92) (($ $ (-562)) 89) (($ (-562) $) 88) (($ $ $) 95)))
+(((-135 |#1| |#2| |#3|) (-13 (-464 |#3| (-766)) (-469 (-562) (-766)) (-10 -8 (-15 -4053 ($ (-239 |#2| |#3|))) (-15 -4053 ($ (-1134 |#2| |#3|))) (-15 -4053 ($ (-639 |#3|))) (-15 -4053 ($ (-639 $))) (-15 -2172 ((-766) $)) (-15 -2343 (|#3| $)) (-15 -2343 (|#3| $ (-562))) (-15 -2343 (|#3| $ (-562) (-562))) (-15 -2343 (|#3| $ (-562) (-562) (-562))) (-15 -2343 (|#3| $ (-562) (-562) (-562) (-562))) (-15 -2343 (|#3| $ (-639 (-562)))) (-15 -3912 ($ $ $)) (-15 * ($ $ $)) (-15 -3474 ($ $ (-562) $ (-562))) (-15 -3474 ($ $ (-562) (-562))) (-15 -2309 ($ $)) (-15 -2309 ($ $ (-562) (-562))) (-15 -4193 ($ $ (-639 (-562)))) (-15 -2129 ($)) (-15 -2873 ($)) (-15 -4148 ((-639 |#3|) $)) (-15 -2865 ($ (-639 |#3|))) (-15 -3329 ($)))) (-562) (-766) (-171)) (T -135))
+((-3912 (*1 *1 *1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766)) (-4 *4 (-171)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-239 *4 *5)) (-14 *4 (-766)) (-4 *5 (-171)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-1134 *4 *5)) (-14 *4 (-766)) (-4 *5 (-171)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-639 *5)) (-4 *5 (-171)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)) (-14 *4 (-766)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-135 *3 *4 *5))) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)) (-14 *4 (-766)) (-4 *5 (-171)))) (-2172 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)) (-14 *4 *2) (-4 *5 (-171)))) (-2343 (*1 *2 *1) (-12 (-4 *2 (-171)) (-5 *1 (-135 *3 *4 *2)) (-14 *3 (-562)) (-14 *4 (-766)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *2 (-171)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-766)))) (-2343 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-4 *2 (-171)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-766)))) (-2343 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-562)) (-4 *2 (-171)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-766)))) (-2343 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-562)) (-4 *2 (-171)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-766)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-639 (-562))) (-4 *2 (-171)) (-5 *1 (-135 *4 *5 *2)) (-14 *4 (-562)) (-14 *5 (-766)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766)) (-4 *4 (-171)))) (-3474 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-766)) (-4 *5 (-171)))) (-3474 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-766)) (-4 *5 (-171)))) (-2309 (*1 *1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766)) (-4 *4 (-171)))) (-2309 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-766)) (-4 *5 (-171)))) (-4193 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)) (-14 *4 (-766)) (-4 *5 (-171)))) (-2129 (*1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766)) (-4 *4 (-171)))) (-2873 (*1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766)) (-4 *4 (-171)))) (-4148 (*1 *2 *1) (-12 (-5 *2 (-639 *5)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)) (-14 *4 (-766)) (-4 *5 (-171)))) (-2865 (*1 *1 *2) (-12 (-5 *2 (-639 *5)) (-4 *5 (-171)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562)) (-14 *4 (-766)))) (-3329 (*1 *1) (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766)) (-4 *4 (-171)))))
+(-13 (-464 |#3| (-766)) (-469 (-562) (-766)) (-10 -8 (-15 -4053 ($ (-239 |#2| |#3|))) (-15 -4053 ($ (-1134 |#2| |#3|))) (-15 -4053 ($ (-639 |#3|))) (-15 -4053 ($ (-639 $))) (-15 -2172 ((-766) $)) (-15 -2343 (|#3| $)) (-15 -2343 (|#3| $ (-562))) (-15 -2343 (|#3| $ (-562) (-562))) (-15 -2343 (|#3| $ (-562) (-562) (-562))) (-15 -2343 (|#3| $ (-562) (-562) (-562) (-562))) (-15 -2343 (|#3| $ (-639 (-562)))) (-15 -3912 ($ $ $)) (-15 * ($ $ $)) (-15 -3474 ($ $ (-562) $ (-562))) (-15 -3474 ($ $ (-562) (-562))) (-15 -2309 ($ $)) (-15 -2309 ($ $ (-562) (-562))) (-15 -4193 ($ $ (-639 (-562)))) (-15 -2129 ($)) (-15 -2873 ($)) (-15 -4148 ((-639 |#3|) $)) (-15 -2865 ($ (-639 |#3|))) (-15 -3329 ($))))
+((-4041 (((-112) $ $) NIL)) (-4330 (((-1127) $) 11)) (-4318 (((-1127) $) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-136) (-13 (-1075) (-10 -8 (-15 -4318 ((-1127) $)) (-15 -4330 ((-1127) $))))) (T -136))
+((-4318 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-136)))) (-4330 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-136)))))
+(-13 (-1075) (-10 -8 (-15 -4318 ((-1127) $)) (-15 -4330 ((-1127) $))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-2420 (((-1168) $) 10)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-639 (-1127)) $) 12)) (-1733 (((-112) $ $) NIL)))
+(((-137) (-13 (-1075) (-10 -8 (-15 -2420 ((-1168) $)) (-15 -3265 ((-639 (-1127)) $))))) (T -137))
+((-2420 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-137)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-137)))))
+(-13 (-1075) (-10 -8 (-15 -2420 ((-1168) $)) (-15 -3265 ((-639 (-1127)) $))))
+((-4041 (((-112) $ $) NIL)) (-3360 (((-639 (-860)) $) NIL)) (-3253 (((-505) $) NIL)) (-3696 (((-1150) $) NIL)) (-2420 (((-185) $) NIL)) (-1709 (((-1112) $) NIL)) (-2760 (((-639 (-112)) $) NIL)) (-4053 (((-857) $) NIL) (((-186) $) 6)) (-3975 (((-55) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-138) (-13 (-184) (-609 (-186)))) (T -138))
NIL
(-13 (-184) (-609 (-186)))
-((-2721 (((-639 (-182)) $) 13)) (-2738 (((-639 (-182)) $) 14)) (-1375 (((-639 (-833)) $) 10)) (-1876 (((-138) $) 7)) (-4054 (((-857) $) 16)))
-(((-139) (-13 (-609 (-857)) (-10 -8 (-15 -1876 ((-138) $)) (-15 -1375 ((-639 (-833)) $)) (-15 -2721 ((-639 (-182)) $)) (-15 -2738 ((-639 (-182)) $))))) (T -139))
-((-1876 (*1 *2 *1) (-12 (-5 *2 (-138)) (-5 *1 (-139)))) (-1375 (*1 *2 *1) (-12 (-5 *2 (-639 (-833))) (-5 *1 (-139)))) (-2721 (*1 *2 *1) (-12 (-5 *2 (-639 (-182))) (-5 *1 (-139)))) (-2738 (*1 *2 *1) (-12 (-5 *2 (-639 (-182))) (-5 *1 (-139)))))
-(-13 (-609 (-857)) (-10 -8 (-15 -1876 ((-138) $)) (-15 -1375 ((-639 (-833)) $)) (-15 -2721 ((-639 (-182)) $)) (-15 -2738 ((-639 (-182)) $))))
-((-4041 (((-112) $ $) NIL)) (-1576 (($) 15 T CONST)) (-3721 (($) NIL (|has| (-143) (-367)))) (-2494 (($ $ $) 17) (($ $ (-143)) NIL) (($ (-143) $) NIL)) (-2129 (($ $ $) NIL)) (-2330 (((-112) $ $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| (-143) (-367)))) (-1608 (($) NIL) (($ (-639 (-143))) NIL)) (-3111 (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-4000 (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402))) (($ (-143) $) 51 (|has| $ (-6 -4402)))) (-1475 (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402))) (($ (-143) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-1955 (((-143) (-1 (-143) (-143) (-143)) $) NIL (|has| $ (-6 -4402))) (((-143) (-1 (-143) (-143) (-143)) $ (-143)) NIL (|has| $ (-6 -4402))) (((-143) (-1 (-143) (-143) (-143)) $ (-143) (-143)) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-1448 (($) NIL (|has| (-143) (-367)))) (-1720 (((-639 (-143)) $) 60 (|has| $ (-6 -4402)))) (-3027 (((-112) $ $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-1551 (((-143) $) NIL (|has| (-143) (-845)))) (-1912 (((-639 (-143)) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-143) $) 26 (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-2993 (((-143) $) NIL (|has| (-143) (-845)))) (-1490 (($ (-1 (-143) (-143)) $) 59 (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-143) (-143)) $) 55)) (-3141 (($) 16 T CONST)) (-1999 (((-916) $) NIL (|has| (-143) (-367)))) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-4376 (($ $ $) 29)) (-3262 (((-143) $) 52)) (-4300 (($ (-143) $) 50)) (-2466 (($ (-916)) NIL (|has| (-143) (-367)))) (-2347 (($) 14 T CONST)) (-1709 (((-1112) $) NIL)) (-3251 (((-3 (-143) "failed") (-1 (-112) (-143)) $) NIL)) (-1904 (((-143) $) 53)) (-1763 (((-112) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-143)) (-639 (-143))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-143) (-143)) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-293 (-143))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-639 (-293 (-143)))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) 48)) (-4167 (($) 13 T CONST)) (-3703 (($ $ $) 31) (($ $ (-143)) NIL)) (-3564 (($ (-639 (-143))) NIL) (($) NIL)) (-1723 (((-766) (-143) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092)))) (((-766) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-1150) $) 36) (((-535) $) NIL (|has| (-143) (-610 (-535)))) (((-639 (-143)) $) 34)) (-4066 (($ (-639 (-143))) NIL)) (-2449 (($ $) 32 (|has| (-143) (-367)))) (-4054 (((-857) $) 46)) (-2821 (($ (-1150)) 12) (($ (-639 (-143))) 43)) (-4234 (((-766) $) NIL)) (-1703 (($) 49) (($ (-639 (-143))) NIL)) (-1932 (($ (-639 (-143))) NIL)) (-1744 (((-112) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-3809 (($) 19 T CONST)) (-2367 (($) 18 T CONST)) (-1731 (((-112) $ $) 22)) (-3492 (((-766) $) 47 (|has| $ (-6 -4402)))))
-(((-140) (-13 (-1092) (-610 (-1150)) (-424 (-143)) (-610 (-639 (-143))) (-10 -8 (-15 -2821 ($ (-1150))) (-15 -2821 ($ (-639 (-143)))) (-15 -4167 ($) -1497) (-15 -2347 ($) -1497) (-15 -1576 ($) -1497) (-15 -3141 ($) -1497) (-15 -2367 ($) -1497) (-15 -3809 ($) -1497)))) (T -140))
-((-2821 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-140)))) (-2821 (*1 *1 *2) (-12 (-5 *2 (-639 (-143))) (-5 *1 (-140)))) (-4167 (*1 *1) (-5 *1 (-140))) (-2347 (*1 *1) (-5 *1 (-140))) (-1576 (*1 *1) (-5 *1 (-140))) (-3141 (*1 *1) (-5 *1 (-140))) (-2367 (*1 *1) (-5 *1 (-140))) (-3809 (*1 *1) (-5 *1 (-140))))
-(-13 (-1092) (-610 (-1150)) (-424 (-143)) (-610 (-639 (-143))) (-10 -8 (-15 -2821 ($ (-1150))) (-15 -2821 ($ (-639 (-143)))) (-15 -4167 ($) -1497) (-15 -2347 ($) -1497) (-15 -1576 ($) -1497) (-15 -3141 ($) -1497) (-15 -2367 ($) -1497) (-15 -3809 ($) -1497)))
-((-4096 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-1917 ((|#1| |#3|) 9)) (-1471 ((|#3| |#3|) 15)))
-(((-141 |#1| |#2| |#3|) (-10 -7 (-15 -1917 (|#1| |#3|)) (-15 -1471 (|#3| |#3|)) (-15 -4096 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-554) (-987 |#1|) (-372 |#2|)) (T -141))
-((-4096 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-987 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-141 *4 *5 *3)) (-4 *3 (-372 *5)))) (-1471 (*1 *2 *2) (-12 (-4 *3 (-554)) (-4 *4 (-987 *3)) (-5 *1 (-141 *3 *4 *2)) (-4 *2 (-372 *4)))) (-1917 (*1 *2 *3) (-12 (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-141 *2 *4 *3)) (-4 *3 (-372 *4)))))
-(-10 -7 (-15 -1917 (|#1| |#3|)) (-15 -1471 (|#3| |#3|)) (-15 -4096 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-2794 (($ $ $) 8)) (-1351 (($ $) 7)) (-3261 (($ $ $) 6)))
+((-2417 (((-639 (-182)) $) 13)) (-2738 (((-639 (-182)) $) 14)) (-2789 (((-639 (-833)) $) 10)) (-1875 (((-138) $) 7)) (-4053 (((-857) $) 16)))
+(((-139) (-13 (-609 (-857)) (-10 -8 (-15 -1875 ((-138) $)) (-15 -2789 ((-639 (-833)) $)) (-15 -2417 ((-639 (-182)) $)) (-15 -2738 ((-639 (-182)) $))))) (T -139))
+((-1875 (*1 *2 *1) (-12 (-5 *2 (-138)) (-5 *1 (-139)))) (-2789 (*1 *2 *1) (-12 (-5 *2 (-639 (-833))) (-5 *1 (-139)))) (-2417 (*1 *2 *1) (-12 (-5 *2 (-639 (-182))) (-5 *1 (-139)))) (-2738 (*1 *2 *1) (-12 (-5 *2 (-639 (-182))) (-5 *1 (-139)))))
+(-13 (-609 (-857)) (-10 -8 (-15 -1875 ((-138) $)) (-15 -2789 ((-639 (-833)) $)) (-15 -2417 ((-639 (-182)) $)) (-15 -2738 ((-639 (-182)) $))))
+((-4041 (((-112) $ $) NIL)) (-2033 (($) 15 T CONST)) (-4076 (($) NIL (|has| (-143) (-367)))) (-2492 (($ $ $) 17) (($ $ (-143)) NIL) (($ (-143) $) NIL)) (-2570 (($ $ $) NIL)) (-3938 (((-112) $ $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| (-143) (-367)))) (-1607 (($) NIL) (($ (-639 (-143))) NIL)) (-2968 (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-3729 (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403))) (($ (-143) $) 51 (|has| $ (-6 -4403)))) (-1475 (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403))) (($ (-143) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-1954 (((-143) (-1 (-143) (-143) (-143)) $) NIL (|has| $ (-6 -4403))) (((-143) (-1 (-143) (-143) (-143)) $ (-143)) NIL (|has| $ (-6 -4403))) (((-143) (-1 (-143) (-143) (-143)) $ (-143) (-143)) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-1447 (($) NIL (|has| (-143) (-367)))) (-1720 (((-639 (-143)) $) 60 (|has| $ (-6 -4403)))) (-3528 (((-112) $ $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1551 (((-143) $) NIL (|has| (-143) (-845)))) (-2123 (((-639 (-143)) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-143) $) 26 (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-2993 (((-143) $) NIL (|has| (-143) (-845)))) (-1491 (($ (-1 (-143) (-143)) $) 59 (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-143) (-143)) $) 55)) (-3249 (($) 16 T CONST)) (-3549 (((-916) $) NIL (|has| (-143) (-367)))) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-4169 (($ $ $) 29)) (-2078 (((-143) $) 52)) (-1581 (($ (-143) $) 50)) (-2464 (($ (-916)) NIL (|has| (-143) (-367)))) (-4116 (($) 14 T CONST)) (-1709 (((-1112) $) NIL)) (-1963 (((-3 (-143) "failed") (-1 (-112) (-143)) $) NIL)) (-2038 (((-143) $) 53)) (-3008 (((-112) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-143)) (-639 (-143))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-143) (-143)) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-293 (-143))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-639 (-293 (-143)))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) 48)) (-2768 (($) 13 T CONST)) (-3874 (($ $ $) 31) (($ $ (-143)) NIL)) (-1932 (($ (-639 (-143))) NIL) (($) NIL)) (-1723 (((-766) (-143) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092)))) (((-766) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-1150) $) 36) (((-535) $) NIL (|has| (-143) (-610 (-535)))) (((-639 (-143)) $) 34)) (-4064 (($ (-639 (-143))) NIL)) (-2695 (($ $) 32 (|has| (-143) (-367)))) (-4053 (((-857) $) 46)) (-2218 (($ (-1150)) 12) (($ (-639 (-143))) 43)) (-2186 (((-766) $) NIL)) (-1702 (($) 49) (($ (-639 (-143))) NIL)) (-4131 (($ (-639 (-143))) NIL)) (-2879 (((-112) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-2489 (($) 19 T CONST)) (-3049 (($) 18 T CONST)) (-1733 (((-112) $ $) 22)) (-3492 (((-766) $) 47 (|has| $ (-6 -4403)))))
+(((-140) (-13 (-1092) (-610 (-1150)) (-424 (-143)) (-610 (-639 (-143))) (-10 -8 (-15 -2218 ($ (-1150))) (-15 -2218 ($ (-639 (-143)))) (-15 -2768 ($) -1497) (-15 -4116 ($) -1497) (-15 -2033 ($) -1497) (-15 -3249 ($) -1497) (-15 -3049 ($) -1497) (-15 -2489 ($) -1497)))) (T -140))
+((-2218 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-140)))) (-2218 (*1 *1 *2) (-12 (-5 *2 (-639 (-143))) (-5 *1 (-140)))) (-2768 (*1 *1) (-5 *1 (-140))) (-4116 (*1 *1) (-5 *1 (-140))) (-2033 (*1 *1) (-5 *1 (-140))) (-3249 (*1 *1) (-5 *1 (-140))) (-3049 (*1 *1) (-5 *1 (-140))) (-2489 (*1 *1) (-5 *1 (-140))))
+(-13 (-1092) (-610 (-1150)) (-424 (-143)) (-610 (-639 (-143))) (-10 -8 (-15 -2218 ($ (-1150))) (-15 -2218 ($ (-639 (-143)))) (-15 -2768 ($) -1497) (-15 -4116 ($) -1497) (-15 -2033 ($) -1497) (-15 -3249 ($) -1497) (-15 -3049 ($) -1497) (-15 -2489 ($) -1497)))
+((-3358 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-2162 ((|#1| |#3|) 9)) (-2414 ((|#3| |#3|) 15)))
+(((-141 |#1| |#2| |#3|) (-10 -7 (-15 -2162 (|#1| |#3|)) (-15 -2414 (|#3| |#3|)) (-15 -3358 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-554) (-987 |#1|) (-372 |#2|)) (T -141))
+((-3358 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-987 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-141 *4 *5 *3)) (-4 *3 (-372 *5)))) (-2414 (*1 *2 *2) (-12 (-4 *3 (-554)) (-4 *4 (-987 *3)) (-5 *1 (-141 *3 *4 *2)) (-4 *2 (-372 *4)))) (-2162 (*1 *2 *3) (-12 (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-141 *2 *4 *3)) (-4 *3 (-372 *4)))))
+(-10 -7 (-15 -2162 (|#1| |#3|)) (-15 -2414 (|#3| |#3|)) (-15 -3358 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-1940 (($ $ $) 8)) (-3350 (($ $) 7)) (-2068 (($ $ $) 6)))
(((-142) (-139)) (T -142))
-((-2794 (*1 *1 *1 *1) (-4 *1 (-142))) (-1351 (*1 *1 *1) (-4 *1 (-142))) (-3261 (*1 *1 *1 *1) (-4 *1 (-142))))
-(-13 (-10 -8 (-15 -3261 ($ $ $)) (-15 -1351 ($ $)) (-15 -2794 ($ $ $))))
-((-4041 (((-112) $ $) NIL)) (-1371 (((-112) $) 30)) (-1576 (($ $) 43)) (-3566 (($) 17)) (-1382 (((-766)) 10)) (-1448 (($) 16)) (-3786 (($) 18)) (-4359 (((-766) $) 14)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-2493 (((-112) $) 32)) (-3141 (($ $) 44)) (-1999 (((-916) $) 15)) (-2913 (((-1150) $) 38)) (-2466 (($ (-916)) 13)) (-4179 (((-112) $) 28)) (-1709 (((-1112) $) NIL)) (-2759 (($) 19)) (-2941 (((-112) $) 26)) (-4054 (((-857) $) 21)) (-4184 (($ (-766)) 11) (($ (-1150)) 42)) (-3495 (((-112) $) 36)) (-2341 (((-112) $) 34)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 7)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 8)))
-(((-143) (-13 (-839) (-10 -8 (-15 -4359 ((-766) $)) (-15 -4184 ($ (-766))) (-15 -4184 ($ (-1150))) (-15 -3566 ($)) (-15 -3786 ($)) (-15 -2759 ($)) (-15 -1576 ($ $)) (-15 -3141 ($ $)) (-15 -2941 ((-112) $)) (-15 -4179 ((-112) $)) (-15 -2341 ((-112) $)) (-15 -1371 ((-112) $)) (-15 -2493 ((-112) $)) (-15 -3495 ((-112) $))))) (T -143))
-((-4359 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-143)))) (-4184 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-143)))) (-4184 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-143)))) (-3566 (*1 *1) (-5 *1 (-143))) (-3786 (*1 *1) (-5 *1 (-143))) (-2759 (*1 *1) (-5 *1 (-143))) (-1576 (*1 *1 *1) (-5 *1 (-143))) (-3141 (*1 *1 *1) (-5 *1 (-143))) (-2941 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))) (-4179 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))) (-2341 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))) (-1371 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))) (-2493 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))) (-3495 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
-(-13 (-839) (-10 -8 (-15 -4359 ((-766) $)) (-15 -4184 ($ (-766))) (-15 -4184 ($ (-1150))) (-15 -3566 ($)) (-15 -3786 ($)) (-15 -2759 ($)) (-15 -1576 ($ $)) (-15 -3141 ($ $)) (-15 -2941 ((-112) $)) (-15 -4179 ((-112) $)) (-15 -2341 ((-112) $)) (-15 -1371 ((-112) $)) (-15 -2493 ((-112) $)) (-15 -3495 ((-112) $))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-562)) 29)) (-2805 (((-3 $ "failed") $) 35)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-1940 (*1 *1 *1 *1) (-4 *1 (-142))) (-3350 (*1 *1 *1) (-4 *1 (-142))) (-2068 (*1 *1 *1 *1) (-4 *1 (-142))))
+(-13 (-10 -8 (-15 -2068 ($ $ $)) (-15 -3350 ($ $)) (-15 -1940 ($ $ $))))
+((-4041 (((-112) $ $) NIL)) (-2517 (((-112) $) 30)) (-2033 (($ $) 43)) (-1957 (($) 17)) (-1382 (((-766)) 10)) (-1447 (($) 16)) (-3436 (($) 18)) (-3980 (((-766) $) 14)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-1945 (((-112) $) 32)) (-3249 (($ $) 44)) (-3549 (((-916) $) 15)) (-3696 (((-1150) $) 38)) (-2464 (($ (-916)) 13)) (-2868 (((-112) $) 28)) (-1709 (((-1112) $) NIL)) (-2762 (($) 19)) (-2940 (((-112) $) 26)) (-4053 (((-857) $) 21)) (-4184 (($ (-766)) 11) (($ (-1150)) 42)) (-2472 (((-112) $) 36)) (-4056 (((-112) $) 34)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 7)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 8)))
+(((-143) (-13 (-839) (-10 -8 (-15 -3980 ((-766) $)) (-15 -4184 ($ (-766))) (-15 -4184 ($ (-1150))) (-15 -1957 ($)) (-15 -3436 ($)) (-15 -2762 ($)) (-15 -2033 ($ $)) (-15 -3249 ($ $)) (-15 -2940 ((-112) $)) (-15 -2868 ((-112) $)) (-15 -4056 ((-112) $)) (-15 -2517 ((-112) $)) (-15 -1945 ((-112) $)) (-15 -2472 ((-112) $))))) (T -143))
+((-3980 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-143)))) (-4184 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-143)))) (-4184 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-143)))) (-1957 (*1 *1) (-5 *1 (-143))) (-3436 (*1 *1) (-5 *1 (-143))) (-2762 (*1 *1) (-5 *1 (-143))) (-2033 (*1 *1 *1) (-5 *1 (-143))) (-3249 (*1 *1 *1) (-5 *1 (-143))) (-2940 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))) (-2868 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))) (-4056 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))) (-2517 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))) (-1945 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))) (-2472 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
+(-13 (-839) (-10 -8 (-15 -3980 ((-766) $)) (-15 -4184 ($ (-766))) (-15 -4184 ($ (-1150))) (-15 -1957 ($)) (-15 -3436 ($)) (-15 -2762 ($)) (-15 -2033 ($ $)) (-15 -3249 ($ $)) (-15 -2940 ((-112) $)) (-15 -2868 ((-112) $)) (-15 -4056 ((-112) $)) (-15 -2517 ((-112) $)) (-15 -1945 ((-112) $)) (-15 -2472 ((-112) $))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-562)) 29)) (-2059 (((-3 $ "failed") $) 35)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-144) (-139)) (T -144))
-((-2805 (*1 *1 *1) (|partial| -4 *1 (-144))))
-(-13 (-1044) (-10 -8 (-15 -2805 ((-3 $ "failed") $))))
+((-2059 (*1 *1 *1) (|partial| -4 *1 (-144))))
+(-13 (-1044) (-10 -8 (-15 -2059 ((-3 $ "failed") $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-642 $) . T) ((-721) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-3376 ((|#1| (-683 |#1|) |#1|) 19)))
-(((-145 |#1|) (-10 -7 (-15 -3376 (|#1| (-683 |#1|) |#1|))) (-171)) (T -145))
-((-3376 (*1 *2 *3 *2) (-12 (-5 *3 (-683 *2)) (-4 *2 (-171)) (-5 *1 (-145 *2)))))
-(-10 -7 (-15 -3376 (|#1| (-683 |#1|) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-562)) 29)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-3683 ((|#1| (-683 |#1|) |#1|) 19)))
+(((-145 |#1|) (-10 -7 (-15 -3683 (|#1| (-683 |#1|) |#1|))) (-171)) (T -145))
+((-3683 (*1 *2 *3 *2) (-12 (-5 *3 (-683 *2)) (-4 *2 (-171)) (-5 *1 (-145 *2)))))
+(-10 -7 (-15 -3683 (|#1| (-683 |#1|) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-562)) 29)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-146) (-139)) (T -146))
NIL
(-13 (-1044))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-642 $) . T) ((-721) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-1816 (((-2 (|:| -1960 (-766)) (|:| -4221 (-406 |#2|)) (|:| |radicand| |#2|)) (-406 |#2|) (-766)) 69)) (-1775 (((-3 (-2 (|:| |radicand| (-406 |#2|)) (|:| |deg| (-766))) "failed") |#3|) 51)) (-1882 (((-2 (|:| -4221 (-406 |#2|)) (|:| |poly| |#3|)) |#3|) 36)) (-2686 ((|#1| |#3| |#3|) 39)) (-1433 ((|#3| |#3| (-406 |#2|) (-406 |#2|)) 19)) (-1409 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-406 |#2|)) (|:| |c2| (-406 |#2|)) (|:| |deg| (-766))) |#3| |#3|) 48)))
-(((-147 |#1| |#2| |#3|) (-10 -7 (-15 -1882 ((-2 (|:| -4221 (-406 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -1775 ((-3 (-2 (|:| |radicand| (-406 |#2|)) (|:| |deg| (-766))) "failed") |#3|)) (-15 -1816 ((-2 (|:| -1960 (-766)) (|:| -4221 (-406 |#2|)) (|:| |radicand| |#2|)) (-406 |#2|) (-766))) (-15 -2686 (|#1| |#3| |#3|)) (-15 -1433 (|#3| |#3| (-406 |#2|) (-406 |#2|))) (-15 -1409 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-406 |#2|)) (|:| |c2| (-406 |#2|)) (|:| |deg| (-766))) |#3| |#3|))) (-1211) (-1232 |#1|) (-1232 (-406 |#2|))) (T -147))
-((-1409 (*1 *2 *3 *3) (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-406 *5)) (|:| |c2| (-406 *5)) (|:| |deg| (-766)))) (-5 *1 (-147 *4 *5 *3)) (-4 *3 (-1232 (-406 *5))))) (-1433 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-406 *5)) (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-5 *1 (-147 *4 *5 *2)) (-4 *2 (-1232 *3)))) (-2686 (*1 *2 *3 *3) (-12 (-4 *4 (-1232 *2)) (-4 *2 (-1211)) (-5 *1 (-147 *2 *4 *3)) (-4 *3 (-1232 (-406 *4))))) (-1816 (*1 *2 *3 *4) (-12 (-5 *3 (-406 *6)) (-4 *5 (-1211)) (-4 *6 (-1232 *5)) (-5 *2 (-2 (|:| -1960 (-766)) (|:| -4221 *3) (|:| |radicand| *6))) (-5 *1 (-147 *5 *6 *7)) (-5 *4 (-766)) (-4 *7 (-1232 *3)))) (-1775 (*1 *2 *3) (|partial| -12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| |radicand| (-406 *5)) (|:| |deg| (-766)))) (-5 *1 (-147 *4 *5 *3)) (-4 *3 (-1232 (-406 *5))))) (-1882 (*1 *2 *3) (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| -4221 (-406 *5)) (|:| |poly| *3))) (-5 *1 (-147 *4 *5 *3)) (-4 *3 (-1232 (-406 *5))))))
-(-10 -7 (-15 -1882 ((-2 (|:| -4221 (-406 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -1775 ((-3 (-2 (|:| |radicand| (-406 |#2|)) (|:| |deg| (-766))) "failed") |#3|)) (-15 -1816 ((-2 (|:| -1960 (-766)) (|:| -4221 (-406 |#2|)) (|:| |radicand| |#2|)) (-406 |#2|) (-766))) (-15 -2686 (|#1| |#3| |#3|)) (-15 -1433 (|#3| |#3| (-406 |#2|) (-406 |#2|))) (-15 -1409 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-406 |#2|)) (|:| |c2| (-406 |#2|)) (|:| |deg| (-766))) |#3| |#3|)))
-((-4150 (((-3 (-639 (-1164 |#2|)) "failed") (-639 (-1164 |#2|)) (-1164 |#2|)) 31)))
-(((-148 |#1| |#2|) (-10 -7 (-15 -4150 ((-3 (-639 (-1164 |#2|)) "failed") (-639 (-1164 |#2|)) (-1164 |#2|)))) (-544) (-165 |#1|)) (T -148))
-((-4150 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-1164 *5))) (-5 *3 (-1164 *5)) (-4 *5 (-165 *4)) (-4 *4 (-544)) (-5 *1 (-148 *4 *5)))))
-(-10 -7 (-15 -4150 ((-3 (-639 (-1164 |#2|)) "failed") (-639 (-1164 |#2|)) (-1164 |#2|))))
-((-3556 (($ (-1 (-112) |#2|) $) 29)) (-1459 (($ $) 36)) (-1475 (($ (-1 (-112) |#2|) $) 27) (($ |#2| $) 32)) (-1955 ((|#2| (-1 |#2| |#2| |#2|) $) 22) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 24) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 34)) (-3251 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 19)) (-1763 (((-112) (-1 (-112) |#2|) $) 16)) (-1723 (((-766) (-1 (-112) |#2|) $) 14) (((-766) |#2| $) NIL)) (-1744 (((-112) (-1 (-112) |#2|) $) 15)) (-3492 (((-766) $) 11)))
-(((-149 |#1| |#2|) (-10 -8 (-15 -1459 (|#1| |#1|)) (-15 -1475 (|#1| |#2| |#1|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3556 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1475 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3251 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -1763 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1744 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3492 ((-766) |#1|))) (-150 |#2|) (-1207)) (T -149))
-NIL
-(-10 -8 (-15 -1459 (|#1| |#1|)) (-15 -1475 (|#1| |#2| |#1|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3556 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1475 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3251 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -1763 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1744 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3492 ((-766) |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) 8)) (-3556 (($ (-1 (-112) |#1|) $) 44 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-1459 (($ $) 41 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4402))) (($ |#1| $) 42 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $) 47 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 46 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 48)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 40 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 49)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-2356 (((-2 (|:| -1300 (-766)) (|:| -4221 (-406 |#2|)) (|:| |radicand| |#2|)) (-406 |#2|) (-766)) 69)) (-3104 (((-3 (-2 (|:| |radicand| (-406 |#2|)) (|:| |deg| (-766))) "failed") |#3|) 51)) (-1783 (((-2 (|:| -4221 (-406 |#2|)) (|:| |poly| |#3|)) |#3|) 36)) (-3228 ((|#1| |#3| |#3|) 39)) (-1433 ((|#3| |#3| (-406 |#2|) (-406 |#2|)) 19)) (-1801 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-406 |#2|)) (|:| |c2| (-406 |#2|)) (|:| |deg| (-766))) |#3| |#3|) 48)))
+(((-147 |#1| |#2| |#3|) (-10 -7 (-15 -1783 ((-2 (|:| -4221 (-406 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -3104 ((-3 (-2 (|:| |radicand| (-406 |#2|)) (|:| |deg| (-766))) "failed") |#3|)) (-15 -2356 ((-2 (|:| -1300 (-766)) (|:| -4221 (-406 |#2|)) (|:| |radicand| |#2|)) (-406 |#2|) (-766))) (-15 -3228 (|#1| |#3| |#3|)) (-15 -1433 (|#3| |#3| (-406 |#2|) (-406 |#2|))) (-15 -1801 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-406 |#2|)) (|:| |c2| (-406 |#2|)) (|:| |deg| (-766))) |#3| |#3|))) (-1211) (-1232 |#1|) (-1232 (-406 |#2|))) (T -147))
+((-1801 (*1 *2 *3 *3) (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-406 *5)) (|:| |c2| (-406 *5)) (|:| |deg| (-766)))) (-5 *1 (-147 *4 *5 *3)) (-4 *3 (-1232 (-406 *5))))) (-1433 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-406 *5)) (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-5 *1 (-147 *4 *5 *2)) (-4 *2 (-1232 *3)))) (-3228 (*1 *2 *3 *3) (-12 (-4 *4 (-1232 *2)) (-4 *2 (-1211)) (-5 *1 (-147 *2 *4 *3)) (-4 *3 (-1232 (-406 *4))))) (-2356 (*1 *2 *3 *4) (-12 (-5 *3 (-406 *6)) (-4 *5 (-1211)) (-4 *6 (-1232 *5)) (-5 *2 (-2 (|:| -1300 (-766)) (|:| -4221 *3) (|:| |radicand| *6))) (-5 *1 (-147 *5 *6 *7)) (-5 *4 (-766)) (-4 *7 (-1232 *3)))) (-3104 (*1 *2 *3) (|partial| -12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| |radicand| (-406 *5)) (|:| |deg| (-766)))) (-5 *1 (-147 *4 *5 *3)) (-4 *3 (-1232 (-406 *5))))) (-1783 (*1 *2 *3) (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| -4221 (-406 *5)) (|:| |poly| *3))) (-5 *1 (-147 *4 *5 *3)) (-4 *3 (-1232 (-406 *5))))))
+(-10 -7 (-15 -1783 ((-2 (|:| -4221 (-406 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -3104 ((-3 (-2 (|:| |radicand| (-406 |#2|)) (|:| |deg| (-766))) "failed") |#3|)) (-15 -2356 ((-2 (|:| -1300 (-766)) (|:| -4221 (-406 |#2|)) (|:| |radicand| |#2|)) (-406 |#2|) (-766))) (-15 -3228 (|#1| |#3| |#3|)) (-15 -1433 (|#3| |#3| (-406 |#2|) (-406 |#2|))) (-15 -1801 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-406 |#2|)) (|:| |c2| (-406 |#2|)) (|:| |deg| (-766))) |#3| |#3|)))
+((-2654 (((-3 (-639 (-1164 |#2|)) "failed") (-639 (-1164 |#2|)) (-1164 |#2|)) 31)))
+(((-148 |#1| |#2|) (-10 -7 (-15 -2654 ((-3 (-639 (-1164 |#2|)) "failed") (-639 (-1164 |#2|)) (-1164 |#2|)))) (-544) (-165 |#1|)) (T -148))
+((-2654 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-1164 *5))) (-5 *3 (-1164 *5)) (-4 *5 (-165 *4)) (-4 *4 (-544)) (-5 *1 (-148 *4 *5)))))
+(-10 -7 (-15 -2654 ((-3 (-639 (-1164 |#2|)) "failed") (-639 (-1164 |#2|)) (-1164 |#2|))))
+((-3556 (($ (-1 (-112) |#2|) $) 29)) (-1459 (($ $) 36)) (-1475 (($ (-1 (-112) |#2|) $) 27) (($ |#2| $) 32)) (-1954 ((|#2| (-1 |#2| |#2| |#2|) $) 22) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 24) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 34)) (-1963 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 19)) (-3008 (((-112) (-1 (-112) |#2|) $) 16)) (-1723 (((-766) (-1 (-112) |#2|) $) 14) (((-766) |#2| $) NIL)) (-2879 (((-112) (-1 (-112) |#2|) $) 15)) (-3492 (((-766) $) 11)))
+(((-149 |#1| |#2|) (-10 -8 (-15 -1459 (|#1| |#1|)) (-15 -1475 (|#1| |#2| |#1|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3556 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1475 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1963 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -3008 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2879 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3492 ((-766) |#1|))) (-150 |#2|) (-1207)) (T -149))
+NIL
+(-10 -8 (-15 -1459 (|#1| |#1|)) (-15 -1475 (|#1| |#2| |#1|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3556 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1475 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1963 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -3008 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2879 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3492 ((-766) |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) 8)) (-3556 (($ (-1 (-112) |#1|) $) 44 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-1459 (($ $) 41 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4403))) (($ |#1| $) 42 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $) 47 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 46 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 48)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 40 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 49)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-150 |#1|) (-139) (-1207)) (T -150))
-((-4066 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-4 *1 (-150 *3)))) (-3251 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-150 *2)) (-4 *2 (-1207)))) (-1955 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4402)) (-4 *1 (-150 *2)) (-4 *2 (-1207)))) (-1955 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4402)) (-4 *1 (-150 *2)) (-4 *2 (-1207)))) (-1475 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4402)) (-4 *1 (-150 *3)) (-4 *3 (-1207)))) (-3556 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4402)) (-4 *1 (-150 *3)) (-4 *3 (-1207)))) (-1955 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1092)) (|has| *1 (-6 -4402)) (-4 *1 (-150 *2)) (-4 *2 (-1207)))) (-1475 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4402)) (-4 *1 (-150 *2)) (-4 *2 (-1207)) (-4 *2 (-1092)))) (-1459 (*1 *1 *1) (-12 (|has| *1 (-6 -4402)) (-4 *1 (-150 *2)) (-4 *2 (-1207)) (-4 *2 (-1092)))))
-(-13 (-488 |t#1|) (-10 -8 (-15 -4066 ($ (-639 |t#1|))) (-15 -3251 ((-3 |t#1| "failed") (-1 (-112) |t#1|) $)) (IF (|has| $ (-6 -4402)) (PROGN (-15 -1955 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -1955 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -1475 ($ (-1 (-112) |t#1|) $)) (-15 -3556 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1092)) (PROGN (-15 -1955 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -1475 ($ |t#1| $)) (-15 -1459 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|)))
+((-4064 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-4 *1 (-150 *3)))) (-1963 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-150 *2)) (-4 *2 (-1207)))) (-1954 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4403)) (-4 *1 (-150 *2)) (-4 *2 (-1207)))) (-1954 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4403)) (-4 *1 (-150 *2)) (-4 *2 (-1207)))) (-1475 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4403)) (-4 *1 (-150 *3)) (-4 *3 (-1207)))) (-3556 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4403)) (-4 *1 (-150 *3)) (-4 *3 (-1207)))) (-1954 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1092)) (|has| *1 (-6 -4403)) (-4 *1 (-150 *2)) (-4 *2 (-1207)))) (-1475 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-150 *2)) (-4 *2 (-1207)) (-4 *2 (-1092)))) (-1459 (*1 *1 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-150 *2)) (-4 *2 (-1207)) (-4 *2 (-1092)))))
+(-13 (-488 |t#1|) (-10 -8 (-15 -4064 ($ (-639 |t#1|))) (-15 -1963 ((-3 |t#1| "failed") (-1 (-112) |t#1|) $)) (IF (|has| $ (-6 -4403)) (PROGN (-15 -1954 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -1954 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -1475 ($ (-1 (-112) |t#1|) $)) (-15 -3556 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1092)) (PROGN (-15 -1954 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -1475 ($ |t#1| $)) (-15 -1459 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) 85)) (-1957 (((-112) $) NIL)) (-1378 (($ |#2| (-639 (-916))) 55)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3591 (($ (-916)) 47)) (-3627 (((-133)) 23)) (-4054 (((-857) $) 68) (($ (-562)) 45) (($ |#2|) 46)) (-3906 ((|#2| $ (-639 (-916))) 58)) (-2579 (((-766)) 20)) (-2286 (($) 40 T CONST)) (-2294 (($) 43 T CONST)) (-1731 (((-112) $ $) 26)) (-1859 (($ $ |#2|) NIL)) (-1848 (($ $) 34) (($ $ $) 32)) (-1835 (($ $ $) 30)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 37) (($ $ $) 51) (($ |#2| $) 39) (($ $ |#2|) NIL)))
-(((-151 |#1| |#2| |#3|) (-13 (-1044) (-38 |#2|) (-1263 |#2|) (-10 -8 (-15 -3591 ($ (-916))) (-15 -1378 ($ |#2| (-639 (-916)))) (-15 -3906 (|#2| $ (-639 (-916)))) (-15 -3668 ((-3 $ "failed") $)))) (-916) (-362) (-988 |#1| |#2|)) (T -151))
-((-3668 (*1 *1 *1) (|partial| -12 (-5 *1 (-151 *2 *3 *4)) (-14 *2 (-916)) (-4 *3 (-362)) (-14 *4 (-988 *2 *3)))) (-3591 (*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-151 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-362)) (-14 *5 (-988 *3 *4)))) (-1378 (*1 *1 *2 *3) (-12 (-5 *3 (-639 (-916))) (-5 *1 (-151 *4 *2 *5)) (-14 *4 (-916)) (-4 *2 (-362)) (-14 *5 (-988 *4 *2)))) (-3906 (*1 *2 *1 *3) (-12 (-5 *3 (-639 (-916))) (-4 *2 (-362)) (-5 *1 (-151 *4 *2 *5)) (-14 *4 (-916)) (-14 *5 (-988 *4 *2)))))
-(-13 (-1044) (-38 |#2|) (-1263 |#2|) (-10 -8 (-15 -3591 ($ (-916))) (-15 -1378 ($ |#2| (-639 (-916)))) (-15 -3906 (|#2| $ (-639 (-916)))) (-15 -3668 ((-3 $ "failed") $))))
-((-3951 (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-639 (-938 (-224)))) (-224) (-224) (-224) (-224)) 37)) (-2161 (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922) (-406 (-562)) (-406 (-562))) 64) (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922)) 65)) (-3201 (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-639 (-938 (-224))))) 68) (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-938 (-224)))) 67) (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922) (-406 (-562)) (-406 (-562))) 59) (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922)) 60)))
-(((-152) (-10 -7 (-15 -3201 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922))) (-15 -3201 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922) (-406 (-562)) (-406 (-562)))) (-15 -2161 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922))) (-15 -2161 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922) (-406 (-562)) (-406 (-562)))) (-15 -3951 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-639 (-938 (-224)))) (-224) (-224) (-224) (-224))) (-15 -3201 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-938 (-224))))) (-15 -3201 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-639 (-938 (-224)))))))) (T -152))
-((-3201 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224))))) (-5 *1 (-152)) (-5 *3 (-639 (-639 (-938 (-224))))))) (-3201 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224))))) (-5 *1 (-152)) (-5 *3 (-639 (-938 (-224)))))) (-3951 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-224)) (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 *4)))) (|:| |xValues| (-1086 *4)) (|:| |yValues| (-1086 *4)))) (-5 *1 (-152)) (-5 *3 (-639 (-639 (-938 *4)))))) (-2161 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-922)) (-5 *4 (-406 (-562))) (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224))))) (-5 *1 (-152)))) (-2161 (*1 *2 *3) (-12 (-5 *3 (-922)) (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224))))) (-5 *1 (-152)))) (-3201 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-922)) (-5 *4 (-406 (-562))) (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224))))) (-5 *1 (-152)))) (-3201 (*1 *2 *3) (-12 (-5 *3 (-922)) (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224))))) (-5 *1 (-152)))))
-(-10 -7 (-15 -3201 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922))) (-15 -3201 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922) (-406 (-562)) (-406 (-562)))) (-15 -2161 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922))) (-15 -2161 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922) (-406 (-562)) (-406 (-562)))) (-15 -3951 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-639 (-938 (-224)))) (-224) (-224) (-224) (-224))) (-15 -3201 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-938 (-224))))) (-15 -3201 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-639 (-938 (-224)))))))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-2454 (((-639 (-1127)) $) 15)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 24) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-1127) $) 9)) (-1731 (((-112) $ $) NIL)))
-(((-153) (-13 (-1075) (-10 -8 (-15 -2454 ((-639 (-1127)) $)) (-15 -3265 ((-1127) $))))) (T -153))
-((-2454 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-153)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-153)))))
-(-13 (-1075) (-10 -8 (-15 -2454 ((-639 (-1127)) $)) (-15 -3265 ((-1127) $))))
-((-1962 (((-639 (-168 |#2|)) |#1| |#2|) 45)))
-(((-154 |#1| |#2|) (-10 -7 (-15 -1962 ((-639 (-168 |#2|)) |#1| |#2|))) (-1232 (-168 (-562))) (-13 (-362) (-843))) (T -154))
-((-1962 (*1 *2 *3 *4) (-12 (-5 *2 (-639 (-168 *4))) (-5 *1 (-154 *3 *4)) (-4 *3 (-1232 (-168 (-562)))) (-4 *4 (-13 (-362) (-843))))))
-(-10 -7 (-15 -1962 ((-639 (-168 |#2|)) |#1| |#2|)))
-((-4041 (((-112) $ $) NIL)) (-4328 (((-1206) $) 12)) (-4316 (((-1127) $) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 21) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-155) (-13 (-1075) (-10 -8 (-15 -4316 ((-1127) $)) (-15 -4328 ((-1206) $))))) (T -155))
-((-4316 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-155)))) (-4328 (*1 *2 *1) (-12 (-5 *2 (-1206)) (-5 *1 (-155)))))
-(-13 (-1075) (-10 -8 (-15 -4316 ((-1127) $)) (-15 -4328 ((-1206) $))))
-((-4041 (((-112) $ $) NIL)) (-3498 (($) 15)) (-3846 (($) 14)) (-3845 (((-916)) 22)) (-2913 (((-1150) $) NIL)) (-3410 (((-562) $) 19)) (-1709 (((-1112) $) NIL)) (-2049 (($) 16)) (-2739 (($ (-562)) 23)) (-4054 (((-857) $) 29)) (-3154 (($) 17)) (-1731 (((-112) $ $) 13)) (-1835 (($ $ $) 11)) (* (($ (-916) $) 21) (($ (-224) $) 8)))
-(((-156) (-13 (-25) (-10 -8 (-15 * ($ (-916) $)) (-15 * ($ (-224) $)) (-15 -1835 ($ $ $)) (-15 -3846 ($)) (-15 -3498 ($)) (-15 -2049 ($)) (-15 -3154 ($)) (-15 -3410 ((-562) $)) (-15 -3845 ((-916))) (-15 -2739 ($ (-562)))))) (T -156))
-((-1835 (*1 *1 *1 *1) (-5 *1 (-156))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-916)) (-5 *1 (-156)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-224)) (-5 *1 (-156)))) (-3846 (*1 *1) (-5 *1 (-156))) (-3498 (*1 *1) (-5 *1 (-156))) (-2049 (*1 *1) (-5 *1 (-156))) (-3154 (*1 *1) (-5 *1 (-156))) (-3410 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-156)))) (-3845 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-156)))) (-2739 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-156)))))
-(-13 (-25) (-10 -8 (-15 * ($ (-916) $)) (-15 * ($ (-224) $)) (-15 -1835 ($ $ $)) (-15 -3846 ($)) (-15 -3498 ($)) (-15 -2049 ($)) (-15 -3154 ($)) (-15 -3410 ((-562) $)) (-15 -3845 ((-916))) (-15 -2739 ($ (-562)))))
-((-3717 ((|#2| |#2| (-1084 |#2|)) 88) ((|#2| |#2| (-1168)) 68)) (-1397 ((|#2| |#2| (-1084 |#2|)) 87) ((|#2| |#2| (-1168)) 67)) (-2794 ((|#2| |#2| |#2|) 27)) (-2876 (((-114) (-114)) 99)) (-2891 ((|#2| (-639 |#2|)) 117)) (-1693 ((|#2| (-639 |#2|)) 135)) (-3831 ((|#2| (-639 |#2|)) 125)) (-3360 ((|#2| |#2|) 123)) (-2750 ((|#2| (-639 |#2|)) 111)) (-4287 ((|#2| (-639 |#2|)) 112)) (-2149 ((|#2| (-639 |#2|)) 133)) (-3072 ((|#2| |#2| (-1168)) 56) ((|#2| |#2|) 55)) (-1351 ((|#2| |#2|) 23)) (-3261 ((|#2| |#2| |#2|) 26)) (-2803 (((-112) (-114)) 49)) (** ((|#2| |#2| |#2|) 41)))
-(((-157 |#1| |#2|) (-10 -7 (-15 -2803 ((-112) (-114))) (-15 -2876 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -3261 (|#2| |#2| |#2|)) (-15 -2794 (|#2| |#2| |#2|)) (-15 -1351 (|#2| |#2|)) (-15 -3072 (|#2| |#2|)) (-15 -3072 (|#2| |#2| (-1168))) (-15 -3717 (|#2| |#2| (-1168))) (-15 -3717 (|#2| |#2| (-1084 |#2|))) (-15 -1397 (|#2| |#2| (-1168))) (-15 -1397 (|#2| |#2| (-1084 |#2|))) (-15 -3360 (|#2| |#2|)) (-15 -2149 (|#2| (-639 |#2|))) (-15 -3831 (|#2| (-639 |#2|))) (-15 -1693 (|#2| (-639 |#2|))) (-15 -2750 (|#2| (-639 |#2|))) (-15 -4287 (|#2| (-639 |#2|))) (-15 -2891 (|#2| (-639 |#2|)))) (-13 (-845) (-554)) (-429 |#1|)) (T -157))
-((-2891 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2)) (-4 *4 (-13 (-845) (-554))))) (-4287 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2)) (-4 *4 (-13 (-845) (-554))))) (-2750 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2)) (-4 *4 (-13 (-845) (-554))))) (-1693 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2)) (-4 *4 (-13 (-845) (-554))))) (-3831 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2)) (-4 *4 (-13 (-845) (-554))))) (-2149 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2)) (-4 *4 (-13 (-845) (-554))))) (-3360 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2)) (-4 *2 (-429 *3)))) (-1397 (*1 *2 *2 *3) (-12 (-5 *3 (-1084 *2)) (-4 *2 (-429 *4)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2)))) (-1397 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2)) (-4 *2 (-429 *4)))) (-3717 (*1 *2 *2 *3) (-12 (-5 *3 (-1084 *2)) (-4 *2 (-429 *4)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2)))) (-3717 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2)) (-4 *2 (-429 *4)))) (-3072 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2)) (-4 *2 (-429 *4)))) (-3072 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2)) (-4 *2 (-429 *3)))) (-1351 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2)) (-4 *2 (-429 *3)))) (-2794 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2)) (-4 *2 (-429 *3)))) (-3261 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2)) (-4 *2 (-429 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2)) (-4 *2 (-429 *3)))) (-2876 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *4)) (-4 *4 (-429 *3)))) (-2803 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-157 *4 *5)) (-4 *5 (-429 *4)))))
-(-10 -7 (-15 -2803 ((-112) (-114))) (-15 -2876 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -3261 (|#2| |#2| |#2|)) (-15 -2794 (|#2| |#2| |#2|)) (-15 -1351 (|#2| |#2|)) (-15 -3072 (|#2| |#2|)) (-15 -3072 (|#2| |#2| (-1168))) (-15 -3717 (|#2| |#2| (-1168))) (-15 -3717 (|#2| |#2| (-1084 |#2|))) (-15 -1397 (|#2| |#2| (-1168))) (-15 -1397 (|#2| |#2| (-1084 |#2|))) (-15 -3360 (|#2| |#2|)) (-15 -2149 (|#2| (-639 |#2|))) (-15 -3831 (|#2| (-639 |#2|))) (-15 -1693 (|#2| (-639 |#2|))) (-15 -2750 (|#2| (-639 |#2|))) (-15 -4287 (|#2| (-639 |#2|))) (-15 -2891 (|#2| (-639 |#2|))))
-((-4016 ((|#1| |#1| |#1|) 53)) (-4272 ((|#1| |#1| |#1|) 50)) (-2794 ((|#1| |#1| |#1|) 44)) (-2660 ((|#1| |#1|) 35)) (-2981 ((|#1| |#1| (-639 |#1|)) 43)) (-1351 ((|#1| |#1|) 37)) (-3261 ((|#1| |#1| |#1|) 40)))
-(((-158 |#1|) (-10 -7 (-15 -3261 (|#1| |#1| |#1|)) (-15 -1351 (|#1| |#1|)) (-15 -2981 (|#1| |#1| (-639 |#1|))) (-15 -2660 (|#1| |#1|)) (-15 -2794 (|#1| |#1| |#1|)) (-15 -4272 (|#1| |#1| |#1|)) (-15 -4016 (|#1| |#1| |#1|))) (-544)) (T -158))
-((-4016 (*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))) (-4272 (*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))) (-2794 (*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))) (-2660 (*1 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))) (-2981 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-544)) (-5 *1 (-158 *2)))) (-1351 (*1 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))) (-3261 (*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))))
-(-10 -7 (-15 -3261 (|#1| |#1| |#1|)) (-15 -1351 (|#1| |#1|)) (-15 -2981 (|#1| |#1| (-639 |#1|))) (-15 -2660 (|#1| |#1|)) (-15 -2794 (|#1| |#1| |#1|)) (-15 -4272 (|#1| |#1| |#1|)) (-15 -4016 (|#1| |#1| |#1|)))
-((-3717 (($ $ (-1168)) 12) (($ $ (-1084 $)) 11)) (-1397 (($ $ (-1168)) 10) (($ $ (-1084 $)) 9)) (-2794 (($ $ $) 8)) (-3072 (($ $) 14) (($ $ (-1168)) 13)) (-1351 (($ $) 7)) (-3261 (($ $ $) 6)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) 85)) (-4367 (((-112) $) NIL)) (-1377 (($ |#2| (-639 (-916))) 55)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3591 (($ (-916)) 47)) (-4340 (((-133)) 23)) (-4053 (((-857) $) 68) (($ (-562)) 45) (($ |#2|) 46)) (-2266 ((|#2| $ (-639 (-916))) 58)) (-1568 (((-766)) 20)) (-2285 (($) 40 T CONST)) (-2294 (($) 43 T CONST)) (-1733 (((-112) $ $) 26)) (-1859 (($ $ |#2|) NIL)) (-1847 (($ $) 34) (($ $ $) 32)) (-1836 (($ $ $) 30)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 37) (($ $ $) 51) (($ |#2| $) 39) (($ $ |#2|) NIL)))
+(((-151 |#1| |#2| |#3|) (-13 (-1044) (-38 |#2|) (-1263 |#2|) (-10 -8 (-15 -3591 ($ (-916))) (-15 -1377 ($ |#2| (-639 (-916)))) (-15 -2266 (|#2| $ (-639 (-916)))) (-15 -1694 ((-3 $ "failed") $)))) (-916) (-362) (-988 |#1| |#2|)) (T -151))
+((-1694 (*1 *1 *1) (|partial| -12 (-5 *1 (-151 *2 *3 *4)) (-14 *2 (-916)) (-4 *3 (-362)) (-14 *4 (-988 *2 *3)))) (-3591 (*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-151 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-362)) (-14 *5 (-988 *3 *4)))) (-1377 (*1 *1 *2 *3) (-12 (-5 *3 (-639 (-916))) (-5 *1 (-151 *4 *2 *5)) (-14 *4 (-916)) (-4 *2 (-362)) (-14 *5 (-988 *4 *2)))) (-2266 (*1 *2 *1 *3) (-12 (-5 *3 (-639 (-916))) (-4 *2 (-362)) (-5 *1 (-151 *4 *2 *5)) (-14 *4 (-916)) (-14 *5 (-988 *4 *2)))))
+(-13 (-1044) (-38 |#2|) (-1263 |#2|) (-10 -8 (-15 -3591 ($ (-916))) (-15 -1377 ($ |#2| (-639 (-916)))) (-15 -2266 (|#2| $ (-639 (-916)))) (-15 -1694 ((-3 $ "failed") $))))
+((-1404 (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-639 (-938 (-224)))) (-224) (-224) (-224) (-224)) 37)) (-2869 (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922) (-406 (-562)) (-406 (-562))) 64) (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922)) 65)) (-2657 (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-639 (-938 (-224))))) 68) (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-938 (-224)))) 67) (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922) (-406 (-562)) (-406 (-562))) 59) (((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922)) 60)))
+(((-152) (-10 -7 (-15 -2657 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922))) (-15 -2657 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922) (-406 (-562)) (-406 (-562)))) (-15 -2869 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922))) (-15 -2869 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922) (-406 (-562)) (-406 (-562)))) (-15 -1404 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-639 (-938 (-224)))) (-224) (-224) (-224) (-224))) (-15 -2657 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-938 (-224))))) (-15 -2657 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-639 (-938 (-224)))))))) (T -152))
+((-2657 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224))))) (-5 *1 (-152)) (-5 *3 (-639 (-639 (-938 (-224))))))) (-2657 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224))))) (-5 *1 (-152)) (-5 *3 (-639 (-938 (-224)))))) (-1404 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-224)) (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 *4)))) (|:| |xValues| (-1086 *4)) (|:| |yValues| (-1086 *4)))) (-5 *1 (-152)) (-5 *3 (-639 (-639 (-938 *4)))))) (-2869 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-922)) (-5 *4 (-406 (-562))) (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224))))) (-5 *1 (-152)))) (-2869 (*1 *2 *3) (-12 (-5 *3 (-922)) (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224))))) (-5 *1 (-152)))) (-2657 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-922)) (-5 *4 (-406 (-562))) (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224))))) (-5 *1 (-152)))) (-2657 (*1 *2 *3) (-12 (-5 *3 (-922)) (-5 *2 (-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224))))) (-5 *1 (-152)))))
+(-10 -7 (-15 -2657 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922))) (-15 -2657 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922) (-406 (-562)) (-406 (-562)))) (-15 -2869 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922))) (-15 -2869 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-922) (-406 (-562)) (-406 (-562)))) (-15 -1404 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-639 (-938 (-224)))) (-224) (-224) (-224) (-224))) (-15 -2657 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-938 (-224))))) (-15 -2657 ((-2 (|:| |brans| (-639 (-639 (-938 (-224))))) (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))) (-639 (-639 (-938 (-224)))))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-2453 (((-639 (-1127)) $) 15)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 24) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-1127) $) 9)) (-1733 (((-112) $ $) NIL)))
+(((-153) (-13 (-1075) (-10 -8 (-15 -2453 ((-639 (-1127)) $)) (-15 -3265 ((-1127) $))))) (T -153))
+((-2453 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-153)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-153)))))
+(-13 (-1075) (-10 -8 (-15 -2453 ((-639 (-1127)) $)) (-15 -3265 ((-1127) $))))
+((-1318 (((-639 (-168 |#2|)) |#1| |#2|) 45)))
+(((-154 |#1| |#2|) (-10 -7 (-15 -1318 ((-639 (-168 |#2|)) |#1| |#2|))) (-1232 (-168 (-562))) (-13 (-362) (-843))) (T -154))
+((-1318 (*1 *2 *3 *4) (-12 (-5 *2 (-639 (-168 *4))) (-5 *1 (-154 *3 *4)) (-4 *3 (-1232 (-168 (-562)))) (-4 *4 (-13 (-362) (-843))))))
+(-10 -7 (-15 -1318 ((-639 (-168 |#2|)) |#1| |#2|)))
+((-4041 (((-112) $ $) NIL)) (-4330 (((-1206) $) 12)) (-4318 (((-1127) $) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 21) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-155) (-13 (-1075) (-10 -8 (-15 -4318 ((-1127) $)) (-15 -4330 ((-1206) $))))) (T -155))
+((-4318 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-155)))) (-4330 (*1 *2 *1) (-12 (-5 *2 (-1206)) (-5 *1 (-155)))))
+(-13 (-1075) (-10 -8 (-15 -4318 ((-1127) $)) (-15 -4330 ((-1206) $))))
+((-4041 (((-112) $ $) NIL)) (-2504 (($) 15)) (-2821 (($) 14)) (-2812 (((-916)) 22)) (-3696 (((-1150) $) NIL)) (-4031 (((-562) $) 19)) (-1709 (((-1112) $) NIL)) (-2894 (($) 16)) (-2581 (($ (-562)) 23)) (-4053 (((-857) $) 29)) (-3381 (($) 17)) (-1733 (((-112) $ $) 13)) (-1836 (($ $ $) 11)) (* (($ (-916) $) 21) (($ (-224) $) 8)))
+(((-156) (-13 (-25) (-10 -8 (-15 * ($ (-916) $)) (-15 * ($ (-224) $)) (-15 -1836 ($ $ $)) (-15 -2821 ($)) (-15 -2504 ($)) (-15 -2894 ($)) (-15 -3381 ($)) (-15 -4031 ((-562) $)) (-15 -2812 ((-916))) (-15 -2581 ($ (-562)))))) (T -156))
+((-1836 (*1 *1 *1 *1) (-5 *1 (-156))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-916)) (-5 *1 (-156)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-224)) (-5 *1 (-156)))) (-2821 (*1 *1) (-5 *1 (-156))) (-2504 (*1 *1) (-5 *1 (-156))) (-2894 (*1 *1) (-5 *1 (-156))) (-3381 (*1 *1) (-5 *1 (-156))) (-4031 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-156)))) (-2812 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-156)))) (-2581 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-156)))))
+(-13 (-25) (-10 -8 (-15 * ($ (-916) $)) (-15 * ($ (-224) $)) (-15 -1836 ($ $ $)) (-15 -2821 ($)) (-15 -2504 ($)) (-15 -2894 ($)) (-15 -3381 ($)) (-15 -4031 ((-562) $)) (-15 -2812 ((-916))) (-15 -2581 ($ (-562)))))
+((-4026 ((|#2| |#2| (-1084 |#2|)) 88) ((|#2| |#2| (-1168)) 68)) (-3912 ((|#2| |#2| (-1084 |#2|)) 87) ((|#2| |#2| (-1168)) 67)) (-1940 ((|#2| |#2| |#2|) 27)) (-1502 (((-114) (-114)) 99)) (-1652 ((|#2| (-639 |#2|)) 117)) (-3615 ((|#2| (-639 |#2|)) 135)) (-2691 ((|#2| (-639 |#2|)) 125)) (-3522 ((|#2| |#2|) 123)) (-2680 ((|#2| (-639 |#2|)) 111)) (-1411 ((|#2| (-639 |#2|)) 112)) (-2770 ((|#2| (-639 |#2|)) 133)) (-3836 ((|#2| |#2| (-1168)) 56) ((|#2| |#2|) 55)) (-3350 ((|#2| |#2|) 23)) (-2068 ((|#2| |#2| |#2|) 26)) (-2036 (((-112) (-114)) 49)) (** ((|#2| |#2| |#2|) 41)))
+(((-157 |#1| |#2|) (-10 -7 (-15 -2036 ((-112) (-114))) (-15 -1502 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -2068 (|#2| |#2| |#2|)) (-15 -1940 (|#2| |#2| |#2|)) (-15 -3350 (|#2| |#2|)) (-15 -3836 (|#2| |#2|)) (-15 -3836 (|#2| |#2| (-1168))) (-15 -4026 (|#2| |#2| (-1168))) (-15 -4026 (|#2| |#2| (-1084 |#2|))) (-15 -3912 (|#2| |#2| (-1168))) (-15 -3912 (|#2| |#2| (-1084 |#2|))) (-15 -3522 (|#2| |#2|)) (-15 -2770 (|#2| (-639 |#2|))) (-15 -2691 (|#2| (-639 |#2|))) (-15 -3615 (|#2| (-639 |#2|))) (-15 -2680 (|#2| (-639 |#2|))) (-15 -1411 (|#2| (-639 |#2|))) (-15 -1652 (|#2| (-639 |#2|)))) (-13 (-845) (-554)) (-429 |#1|)) (T -157))
+((-1652 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2)) (-4 *4 (-13 (-845) (-554))))) (-1411 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2)) (-4 *4 (-13 (-845) (-554))))) (-2680 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2)) (-4 *4 (-13 (-845) (-554))))) (-3615 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2)) (-4 *4 (-13 (-845) (-554))))) (-2691 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2)) (-4 *4 (-13 (-845) (-554))))) (-2770 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2)) (-4 *4 (-13 (-845) (-554))))) (-3522 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2)) (-4 *2 (-429 *3)))) (-3912 (*1 *2 *2 *3) (-12 (-5 *3 (-1084 *2)) (-4 *2 (-429 *4)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2)))) (-3912 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2)) (-4 *2 (-429 *4)))) (-4026 (*1 *2 *2 *3) (-12 (-5 *3 (-1084 *2)) (-4 *2 (-429 *4)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2)))) (-4026 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2)) (-4 *2 (-429 *4)))) (-3836 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2)) (-4 *2 (-429 *4)))) (-3836 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2)) (-4 *2 (-429 *3)))) (-3350 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2)) (-4 *2 (-429 *3)))) (-1940 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2)) (-4 *2 (-429 *3)))) (-2068 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2)) (-4 *2 (-429 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2)) (-4 *2 (-429 *3)))) (-1502 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *4)) (-4 *4 (-429 *3)))) (-2036 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-157 *4 *5)) (-4 *5 (-429 *4)))))
+(-10 -7 (-15 -2036 ((-112) (-114))) (-15 -1502 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -2068 (|#2| |#2| |#2|)) (-15 -1940 (|#2| |#2| |#2|)) (-15 -3350 (|#2| |#2|)) (-15 -3836 (|#2| |#2|)) (-15 -3836 (|#2| |#2| (-1168))) (-15 -4026 (|#2| |#2| (-1168))) (-15 -4026 (|#2| |#2| (-1084 |#2|))) (-15 -3912 (|#2| |#2| (-1168))) (-15 -3912 (|#2| |#2| (-1084 |#2|))) (-15 -3522 (|#2| |#2|)) (-15 -2770 (|#2| (-639 |#2|))) (-15 -2691 (|#2| (-639 |#2|))) (-15 -3615 (|#2| (-639 |#2|))) (-15 -2680 (|#2| (-639 |#2|))) (-15 -1411 (|#2| (-639 |#2|))) (-15 -1652 (|#2| (-639 |#2|))))
+((-3894 ((|#1| |#1| |#1|) 53)) (-4351 ((|#1| |#1| |#1|) 50)) (-1940 ((|#1| |#1| |#1|) 44)) (-3004 ((|#1| |#1|) 35)) (-3149 ((|#1| |#1| (-639 |#1|)) 43)) (-3350 ((|#1| |#1|) 37)) (-2068 ((|#1| |#1| |#1|) 40)))
+(((-158 |#1|) (-10 -7 (-15 -2068 (|#1| |#1| |#1|)) (-15 -3350 (|#1| |#1|)) (-15 -3149 (|#1| |#1| (-639 |#1|))) (-15 -3004 (|#1| |#1|)) (-15 -1940 (|#1| |#1| |#1|)) (-15 -4351 (|#1| |#1| |#1|)) (-15 -3894 (|#1| |#1| |#1|))) (-544)) (T -158))
+((-3894 (*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))) (-4351 (*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))) (-1940 (*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))) (-3004 (*1 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))) (-3149 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-544)) (-5 *1 (-158 *2)))) (-3350 (*1 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))) (-2068 (*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))))
+(-10 -7 (-15 -2068 (|#1| |#1| |#1|)) (-15 -3350 (|#1| |#1|)) (-15 -3149 (|#1| |#1| (-639 |#1|))) (-15 -3004 (|#1| |#1|)) (-15 -1940 (|#1| |#1| |#1|)) (-15 -4351 (|#1| |#1| |#1|)) (-15 -3894 (|#1| |#1| |#1|)))
+((-4026 (($ $ (-1168)) 12) (($ $ (-1084 $)) 11)) (-3912 (($ $ (-1168)) 10) (($ $ (-1084 $)) 9)) (-1940 (($ $ $) 8)) (-3836 (($ $) 14) (($ $ (-1168)) 13)) (-3350 (($ $) 7)) (-2068 (($ $ $) 6)))
(((-159) (-139)) (T -159))
-((-3072 (*1 *1 *1) (-4 *1 (-159))) (-3072 (*1 *1 *1 *2) (-12 (-4 *1 (-159)) (-5 *2 (-1168)))) (-3717 (*1 *1 *1 *2) (-12 (-4 *1 (-159)) (-5 *2 (-1168)))) (-3717 (*1 *1 *1 *2) (-12 (-5 *2 (-1084 *1)) (-4 *1 (-159)))) (-1397 (*1 *1 *1 *2) (-12 (-4 *1 (-159)) (-5 *2 (-1168)))) (-1397 (*1 *1 *1 *2) (-12 (-5 *2 (-1084 *1)) (-4 *1 (-159)))))
-(-13 (-142) (-10 -8 (-15 -3072 ($ $)) (-15 -3072 ($ $ (-1168))) (-15 -3717 ($ $ (-1168))) (-15 -3717 ($ $ (-1084 $))) (-15 -1397 ($ $ (-1168))) (-15 -1397 ($ $ (-1084 $)))))
+((-3836 (*1 *1 *1) (-4 *1 (-159))) (-3836 (*1 *1 *1 *2) (-12 (-4 *1 (-159)) (-5 *2 (-1168)))) (-4026 (*1 *1 *1 *2) (-12 (-4 *1 (-159)) (-5 *2 (-1168)))) (-4026 (*1 *1 *1 *2) (-12 (-5 *2 (-1084 *1)) (-4 *1 (-159)))) (-3912 (*1 *1 *1 *2) (-12 (-4 *1 (-159)) (-5 *2 (-1168)))) (-3912 (*1 *1 *1 *2) (-12 (-5 *2 (-1084 *1)) (-4 *1 (-159)))))
+(-13 (-142) (-10 -8 (-15 -3836 ($ $)) (-15 -3836 ($ $ (-1168))) (-15 -4026 ($ $ (-1168))) (-15 -4026 ($ $ (-1084 $))) (-15 -3912 ($ $ (-1168))) (-15 -3912 ($ $ (-1084 $)))))
(((-142) . T))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-639 (-1127)) $) 9)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-639 (-1127)) $) 9)) (-1733 (((-112) $ $) NIL)))
(((-160) (-13 (-1075) (-10 -8 (-15 -3265 ((-639 (-1127)) $))))) (T -160))
((-3265 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-160)))))
(-13 (-1075) (-10 -8 (-15 -3265 ((-639 (-1127)) $))))
-((-4041 (((-112) $ $) NIL)) (-3836 (($ (-562)) 13) (($ $ $) 14)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 17)) (-1731 (((-112) $ $) 9)))
-(((-161) (-13 (-1092) (-10 -8 (-15 -3836 ($ (-562))) (-15 -3836 ($ $ $))))) (T -161))
-((-3836 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-161)))) (-3836 (*1 *1 *1 *1) (-5 *1 (-161))))
-(-13 (-1092) (-10 -8 (-15 -3836 ($ (-562))) (-15 -3836 ($ $ $))))
-((-2876 (((-114) (-1168)) 97)))
-(((-162) (-10 -7 (-15 -2876 ((-114) (-1168))))) (T -162))
-((-2876 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-114)) (-5 *1 (-162)))))
-(-10 -7 (-15 -2876 ((-114) (-1168))))
-((-2291 ((|#3| |#3|) 19)))
-(((-163 |#1| |#2| |#3|) (-10 -7 (-15 -2291 (|#3| |#3|))) (-1044) (-1232 |#1|) (-1232 |#2|)) (T -163))
-((-2291 (*1 *2 *2) (-12 (-4 *3 (-1044)) (-4 *4 (-1232 *3)) (-5 *1 (-163 *3 *4 *2)) (-4 *2 (-1232 *4)))))
-(-10 -7 (-15 -2291 (|#3| |#3|)))
-((-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 216)) (-1748 ((|#2| $) 95)) (-2988 (($ $) 246)) (-4097 (($ $) 240)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 39)) (-4207 (($ $) 244)) (-4074 (($ $) 238)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#2| "failed") $) 140)) (-3961 (((-562) $) NIL) (((-406 (-562)) $) NIL) ((|#2| $) 138)) (-1811 (($ $ $) 221)) (-2406 (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) 154) (((-683 |#2|) (-683 $)) 148)) (-1955 (($ (-1164 |#2|)) 118) (((-3 $ "failed") (-406 (-1164 |#2|))) NIL)) (-3668 (((-3 $ "failed") $) 208)) (-1726 (((-3 (-406 (-562)) "failed") $) 198)) (-3035 (((-112) $) 193)) (-1291 (((-406 (-562)) $) 196)) (-2173 (((-916)) 88)) (-1787 (($ $ $) 223)) (-2362 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 260)) (-4100 (($) 235)) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 185) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 190)) (-2247 ((|#2| $) 93)) (-1565 (((-1164 |#2|) $) 120)) (-4152 (($ (-1 |#2| |#2|) $) 101)) (-4365 (($ $) 237)) (-1943 (((-1164 |#2|) $) 119)) (-1525 (($ $) 201)) (-2112 (($) 96)) (-3986 (((-417 (-1164 $)) (-1164 $)) 87)) (-3480 (((-417 (-1164 $)) (-1164 $)) 56)) (-1762 (((-3 $ "failed") $ |#2|) 203) (((-3 $ "failed") $ $) 206)) (-3430 (($ $) 236)) (-1577 (((-766) $) 218)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 228)) (-2455 ((|#2| (-1256 $)) NIL) ((|#2|) 90)) (-4029 (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) 112) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL) (($ $ (-766)) NIL) (($ $) NIL)) (-2096 (((-1164 |#2|)) 113)) (-2978 (($ $) 245)) (-4087 (($ $) 239)) (-3593 (((-1256 |#2|) $ (-1256 $)) 127) (((-683 |#2|) (-1256 $) (-1256 $)) NIL) (((-1256 |#2|) $) 109) (((-683 |#2|) (-1256 $)) NIL)) (-4208 (((-1256 |#2|) $) NIL) (($ (-1256 |#2|)) NIL) (((-1164 |#2|) $) NIL) (($ (-1164 |#2|)) NIL) (((-887 (-562)) $) 176) (((-887 (-378)) $) 180) (((-168 (-378)) $) 166) (((-168 (-224)) $) 161) (((-535) $) 172)) (-3665 (($ $) 97)) (-4054 (((-857) $) 137) (($ (-562)) NIL) (($ |#2|) NIL) (($ (-406 (-562))) NIL) (($ $) NIL)) (-3376 (((-1164 |#2|) $) 23)) (-2579 (((-766)) 99)) (-3055 (($ $) 249)) (-4165 (($ $) 243)) (-3033 (($ $) 247)) (-4138 (($ $) 241)) (-2828 ((|#2| $) 232)) (-3044 (($ $) 248)) (-4151 (($ $) 242)) (-3526 (($ $) 156)) (-1731 (((-112) $ $) 103)) (-1759 (((-112) $ $) 192)) (-1848 (($ $) 105) (($ $ $) NIL)) (-1835 (($ $ $) 104)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-406 (-562))) 266) (($ $ $) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 111) (($ $ $) 141) (($ $ |#2|) NIL) (($ |#2| $) 107) (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL)))
-(((-164 |#1| |#2|) (-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4054 (|#1| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1445 ((-2 (|:| -3931 |#1|) (|:| -4389 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -1577 ((-766) |#1|)) (-15 -2080 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -1787 (|#1| |#1| |#1|)) (-15 -1811 (|#1| |#1| |#1|)) (-15 -1525 (|#1| |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -1759 ((-112) |#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4208 ((-168 (-224)) |#1|)) (-15 -4208 ((-168 (-378)) |#1|)) (-15 -4097 (|#1| |#1|)) (-15 -4074 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -4151 (|#1| |#1|)) (-15 -4138 (|#1| |#1|)) (-15 -4165 (|#1| |#1|)) (-15 -2978 (|#1| |#1|)) (-15 -4207 (|#1| |#1|)) (-15 -2988 (|#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -3033 (|#1| |#1|)) (-15 -3055 (|#1| |#1|)) (-15 -4365 (|#1| |#1|)) (-15 -3430 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -4100 (|#1|)) (-15 ** (|#1| |#1| (-406 (-562)))) (-15 -3480 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3986 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -4150 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -1726 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -1291 ((-406 (-562)) |#1|)) (-15 -3035 ((-112) |#1|)) (-15 -2362 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2828 (|#2| |#1|)) (-15 -3526 (|#1| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3665 (|#1| |#1|)) (-15 -2112 (|#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -2533 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -2533 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -1955 ((-3 |#1| "failed") (-406 (-1164 |#2|)))) (-15 -1943 ((-1164 |#2|) |#1|)) (-15 -4208 (|#1| (-1164 |#2|))) (-15 -1955 (|#1| (-1164 |#2|))) (-15 -2096 ((-1164 |#2|))) (-15 -2406 ((-683 |#2|) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-683 (-562)) (-683 |#1|))) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4208 ((-1164 |#2|) |#1|)) (-15 -2455 (|#2|)) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -3593 ((-683 |#2|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1|)) (-15 -1565 ((-1164 |#2|) |#1|)) (-15 -3376 ((-1164 |#2|) |#1|)) (-15 -2455 (|#2| (-1256 |#1|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -2247 (|#2| |#1|)) (-15 -1748 (|#2| |#1|)) (-15 -2173 ((-916))) (-15 -4054 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2579 ((-766))) (-15 -4054 (|#1| (-562))) (-15 ** (|#1| |#1| (-766))) (-15 -3668 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-916))) (-15 * (|#1| (-562) |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -1835 (|#1| |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -1731 ((-112) |#1| |#1|))) (-165 |#2|) (-171)) (T -164))
-((-2579 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-766)) (-5 *1 (-164 *3 *4)) (-4 *3 (-165 *4)))) (-2173 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-916)) (-5 *1 (-164 *3 *4)) (-4 *3 (-165 *4)))) (-2455 (*1 *2) (-12 (-4 *2 (-171)) (-5 *1 (-164 *3 *2)) (-4 *3 (-165 *2)))) (-2096 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-1164 *4)) (-5 *1 (-164 *3 *4)) (-4 *3 (-165 *4)))))
-(-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4054 (|#1| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1445 ((-2 (|:| -3931 |#1|) (|:| -4389 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -1577 ((-766) |#1|)) (-15 -2080 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -1787 (|#1| |#1| |#1|)) (-15 -1811 (|#1| |#1| |#1|)) (-15 -1525 (|#1| |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -1759 ((-112) |#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4208 ((-168 (-224)) |#1|)) (-15 -4208 ((-168 (-378)) |#1|)) (-15 -4097 (|#1| |#1|)) (-15 -4074 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -4151 (|#1| |#1|)) (-15 -4138 (|#1| |#1|)) (-15 -4165 (|#1| |#1|)) (-15 -2978 (|#1| |#1|)) (-15 -4207 (|#1| |#1|)) (-15 -2988 (|#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -3033 (|#1| |#1|)) (-15 -3055 (|#1| |#1|)) (-15 -4365 (|#1| |#1|)) (-15 -3430 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -4100 (|#1|)) (-15 ** (|#1| |#1| (-406 (-562)))) (-15 -3480 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3986 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -4150 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -1726 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -1291 ((-406 (-562)) |#1|)) (-15 -3035 ((-112) |#1|)) (-15 -2362 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2828 (|#2| |#1|)) (-15 -3526 (|#1| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3665 (|#1| |#1|)) (-15 -2112 (|#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -2533 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -2533 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -1955 ((-3 |#1| "failed") (-406 (-1164 |#2|)))) (-15 -1943 ((-1164 |#2|) |#1|)) (-15 -4208 (|#1| (-1164 |#2|))) (-15 -1955 (|#1| (-1164 |#2|))) (-15 -2096 ((-1164 |#2|))) (-15 -2406 ((-683 |#2|) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-683 (-562)) (-683 |#1|))) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4208 ((-1164 |#2|) |#1|)) (-15 -2455 (|#2|)) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -3593 ((-683 |#2|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1|)) (-15 -1565 ((-1164 |#2|) |#1|)) (-15 -3376 ((-1164 |#2|) |#1|)) (-15 -2455 (|#2| (-1256 |#1|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -2247 (|#2| |#1|)) (-15 -1748 (|#2| |#1|)) (-15 -2173 ((-916))) (-15 -4054 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2579 ((-766))) (-15 -4054 (|#1| (-562))) (-15 ** (|#1| |#1| (-766))) (-15 -3668 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-916))) (-15 * (|#1| (-562) |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -1835 (|#1| |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -1731 ((-112) |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 93 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-2796 (($ $) 94 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-4370 (((-112) $) 96 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-1636 (((-683 |#1|) (-1256 $)) 47) (((-683 |#1|)) 62)) (-1748 ((|#1| $) 53)) (-2988 (($ $) 227 (|has| |#1| (-1192)))) (-4097 (($ $) 210 (|has| |#1| (-1192)))) (-3984 (((-1180 (-916) (-766)) (-562)) 146 (|has| |#1| (-348)))) (-3214 (((-3 $ "failed") $ $) 19)) (-3026 (((-417 (-1164 $)) (-1164 $)) 241 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-2798 (($ $) 113 (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-2921 (((-417 $) $) 114 (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-1643 (($ $) 240 (-12 (|has| |#1| (-997)) (|has| |#1| (-1192))))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 244 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-2569 (((-112) $ $) 104 (|has| |#1| (-306)))) (-1382 (((-766)) 87 (|has| |#1| (-367)))) (-4207 (($ $) 226 (|has| |#1| (-1192)))) (-4074 (($ $) 211 (|has| |#1| (-1192)))) (-3014 (($ $) 225 (|has| |#1| (-1192)))) (-4119 (($ $) 212 (|has| |#1| (-1192)))) (-1800 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 169 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 167 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 164)) (-3961 (((-562) $) 168 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 166 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 165)) (-4018 (($ (-1256 |#1|) (-1256 $)) 49) (($ (-1256 |#1|)) 65)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) 152 (|has| |#1| (-348)))) (-1811 (($ $ $) 108 (|has| |#1| (-306)))) (-1958 (((-683 |#1|) $ (-1256 $)) 54) (((-683 |#1|) $) 60)) (-2406 (((-683 (-562)) (-683 $)) 163 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 162 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 161) (((-683 |#1|) (-683 $)) 160)) (-1955 (($ (-1164 |#1|)) 157) (((-3 $ "failed") (-406 (-1164 |#1|))) 154 (|has| |#1| (-362)))) (-3668 (((-3 $ "failed") $) 33)) (-1657 ((|#1| $) 252)) (-1726 (((-3 (-406 (-562)) "failed") $) 245 (|has| |#1| (-544)))) (-3035 (((-112) $) 247 (|has| |#1| (-544)))) (-1291 (((-406 (-562)) $) 246 (|has| |#1| (-544)))) (-2173 (((-916)) 55)) (-1448 (($) 90 (|has| |#1| (-367)))) (-1787 (($ $ $) 107 (|has| |#1| (-306)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 102 (|has| |#1| (-306)))) (-3529 (($) 148 (|has| |#1| (-348)))) (-1322 (((-112) $) 149 (|has| |#1| (-348)))) (-3589 (($ $ (-766)) 140 (|has| |#1| (-348))) (($ $) 139 (|has| |#1| (-348)))) (-2717 (((-112) $) 115 (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-2362 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 248 (-12 (|has| |#1| (-1053)) (|has| |#1| (-1192))))) (-4100 (($) 237 (|has| |#1| (-1192)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 260 (|has| |#1| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 259 (|has| |#1| (-881 (-378))))) (-1900 (((-916) $) 151 (|has| |#1| (-348))) (((-828 (-916)) $) 137 (|has| |#1| (-348)))) (-1957 (((-112) $) 31)) (-1891 (($ $ (-562)) 239 (-12 (|has| |#1| (-997)) (|has| |#1| (-1192))))) (-2247 ((|#1| $) 52)) (-3699 (((-3 $ "failed") $) 141 (|has| |#1| (-348)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 111 (|has| |#1| (-306)))) (-1565 (((-1164 |#1|) $) 45 (|has| |#1| (-362)))) (-1551 (($ $ $) 206 (|has| |#1| (-845)))) (-2993 (($ $ $) 205 (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) 261)) (-1999 (((-916) $) 89 (|has| |#1| (-367)))) (-4365 (($ $) 234 (|has| |#1| (-1192)))) (-1943 (((-1164 |#1|) $) 155)) (-1564 (($ (-639 $)) 100 (-4037 (|has| |#1| (-306)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (($ $ $) 99 (-4037 (|has| |#1| (-306)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-2913 (((-1150) $) 9)) (-1525 (($ $) 116 (|has| |#1| (-362)))) (-3729 (($) 142 (|has| |#1| (-348)) CONST)) (-2466 (($ (-916)) 88 (|has| |#1| (-367)))) (-2112 (($) 256)) (-1670 ((|#1| $) 253)) (-1709 (((-1112) $) 10)) (-3148 (($) 159)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 101 (-4037 (|has| |#1| (-306)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-1606 (($ (-639 $)) 98 (-4037 (|has| |#1| (-306)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (($ $ $) 97 (-4037 (|has| |#1| (-306)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) 145 (|has| |#1| (-348)))) (-3986 (((-417 (-1164 $)) (-1164 $)) 243 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-3480 (((-417 (-1164 $)) (-1164 $)) 242 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-1635 (((-417 $) $) 112 (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-306))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 109 (|has| |#1| (-306)))) (-1762 (((-3 $ "failed") $ |#1|) 251 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 92 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 103 (|has| |#1| (-306)))) (-3430 (($ $) 235 (|has| |#1| (-1192)))) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) 267 (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) 266 (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) 265 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) 264 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) 263 (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) 262 (|has| |#1| (-513 (-1168) |#1|)))) (-1577 (((-766) $) 105 (|has| |#1| (-306)))) (-2343 (($ $ |#1|) 268 (|has| |#1| (-285 |#1| |#1|)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 106 (|has| |#1| (-306)))) (-2455 ((|#1| (-1256 $)) 48) ((|#1|) 61)) (-3362 (((-766) $) 150 (|has| |#1| (-348))) (((-3 (-766) "failed") $ $) 138 (|has| |#1| (-348)))) (-4029 (($ $ (-1 |#1| |#1|) (-766)) 122) (($ $ (-1 |#1| |#1|)) 121) (($ $ (-639 (-1168)) (-639 (-766))) 129 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 130 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 131 (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) 132 (|has| |#1| (-895 (-1168)))) (($ $ (-766)) 134 (-4037 (-2246 (|has| |#1| (-362)) (|has| |#1| (-232))) (|has| |#1| (-232)) (-2246 (|has| |#1| (-232)) (|has| |#1| (-362))))) (($ $) 136 (-4037 (-2246 (|has| |#1| (-362)) (|has| |#1| (-232))) (|has| |#1| (-232)) (-2246 (|has| |#1| (-232)) (|has| |#1| (-362)))))) (-3187 (((-683 |#1|) (-1256 $) (-1 |#1| |#1|)) 153 (|has| |#1| (-362)))) (-2096 (((-1164 |#1|)) 158)) (-3023 (($ $) 224 (|has| |#1| (-1192)))) (-4130 (($ $) 213 (|has| |#1| (-1192)))) (-2283 (($) 147 (|has| |#1| (-348)))) (-3001 (($ $) 223 (|has| |#1| (-1192)))) (-4108 (($ $) 214 (|has| |#1| (-1192)))) (-2978 (($ $) 222 (|has| |#1| (-1192)))) (-4087 (($ $) 215 (|has| |#1| (-1192)))) (-3593 (((-1256 |#1|) $ (-1256 $)) 51) (((-683 |#1|) (-1256 $) (-1256 $)) 50) (((-1256 |#1|) $) 67) (((-683 |#1|) (-1256 $)) 66)) (-4208 (((-1256 |#1|) $) 64) (($ (-1256 |#1|)) 63) (((-1164 |#1|) $) 170) (($ (-1164 |#1|)) 156) (((-887 (-562)) $) 258 (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) 257 (|has| |#1| (-610 (-887 (-378))))) (((-168 (-378)) $) 209 (|has| |#1| (-1017))) (((-168 (-224)) $) 208 (|has| |#1| (-1017))) (((-535) $) 207 (|has| |#1| (-610 (-535))))) (-3665 (($ $) 255)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 144 (-4037 (-2246 (|has| $ (-144)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))) (|has| |#1| (-348))))) (-1418 (($ |#1| |#1|) 254)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38) (($ (-406 (-562))) 86 (-4037 (|has| |#1| (-362)) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) 91 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-2805 (($ $) 143 (|has| |#1| (-348))) (((-3 $ "failed") $) 44 (-4037 (-2246 (|has| $ (-144)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))) (|has| |#1| (-144))))) (-3376 (((-1164 |#1|) $) 46)) (-2579 (((-766)) 28)) (-3928 (((-1256 $)) 68)) (-3055 (($ $) 233 (|has| |#1| (-1192)))) (-4165 (($ $) 221 (|has| |#1| (-1192)))) (-2922 (((-112) $ $) 95 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-3033 (($ $) 232 (|has| |#1| (-1192)))) (-4138 (($ $) 220 (|has| |#1| (-1192)))) (-3078 (($ $) 231 (|has| |#1| (-1192)))) (-4182 (($ $) 219 (|has| |#1| (-1192)))) (-2828 ((|#1| $) 249 (|has| |#1| (-1192)))) (-1566 (($ $) 230 (|has| |#1| (-1192)))) (-4195 (($ $) 218 (|has| |#1| (-1192)))) (-3066 (($ $) 229 (|has| |#1| (-1192)))) (-4174 (($ $) 217 (|has| |#1| (-1192)))) (-3044 (($ $) 228 (|has| |#1| (-1192)))) (-4151 (($ $) 216 (|has| |#1| (-1192)))) (-3526 (($ $) 250 (|has| |#1| (-1053)))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-1 |#1| |#1|) (-766)) 124) (($ $ (-1 |#1| |#1|)) 123) (($ $ (-639 (-1168)) (-639 (-766))) 125 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 126 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 127 (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) 128 (|has| |#1| (-895 (-1168)))) (($ $ (-766)) 133 (-4037 (-2246 (|has| |#1| (-362)) (|has| |#1| (-232))) (|has| |#1| (-232)) (-2246 (|has| |#1| (-232)) (|has| |#1| (-362))))) (($ $) 135 (-4037 (-2246 (|has| |#1| (-362)) (|has| |#1| (-232))) (|has| |#1| (-232)) (-2246 (|has| |#1| (-232)) (|has| |#1| (-362)))))) (-1798 (((-112) $ $) 203 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 202 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 204 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 201 (|has| |#1| (-845)))) (-1859 (($ $ $) 120 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-406 (-562))) 238 (-12 (|has| |#1| (-997)) (|has| |#1| (-1192)))) (($ $ $) 236 (|has| |#1| (-1192))) (($ $ (-562)) 117 (|has| |#1| (-362)))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39) (($ (-406 (-562)) $) 119 (|has| |#1| (-362))) (($ $ (-406 (-562))) 118 (|has| |#1| (-362)))))
+((-4041 (((-112) $ $) NIL)) (-2732 (($ (-562)) 13) (($ $ $) 14)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 17)) (-1733 (((-112) $ $) 9)))
+(((-161) (-13 (-1092) (-10 -8 (-15 -2732 ($ (-562))) (-15 -2732 ($ $ $))))) (T -161))
+((-2732 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-161)))) (-2732 (*1 *1 *1 *1) (-5 *1 (-161))))
+(-13 (-1092) (-10 -8 (-15 -2732 ($ (-562))) (-15 -2732 ($ $ $))))
+((-1502 (((-114) (-1168)) 97)))
+(((-162) (-10 -7 (-15 -1502 ((-114) (-1168))))) (T -162))
+((-1502 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-114)) (-5 *1 (-162)))))
+(-10 -7 (-15 -1502 ((-114) (-1168))))
+((-3554 ((|#3| |#3|) 19)))
+(((-163 |#1| |#2| |#3|) (-10 -7 (-15 -3554 (|#3| |#3|))) (-1044) (-1232 |#1|) (-1232 |#2|)) (T -163))
+((-3554 (*1 *2 *2) (-12 (-4 *3 (-1044)) (-4 *4 (-1232 *3)) (-5 *1 (-163 *3 *4 *2)) (-4 *2 (-1232 *4)))))
+(-10 -7 (-15 -3554 (|#3| |#3|)))
+((-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 216)) (-1748 ((|#2| $) 95)) (-2987 (($ $) 246)) (-4098 (($ $) 240)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 39)) (-4206 (($ $) 244)) (-4074 (($ $) 238)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#2| "failed") $) 140)) (-3960 (((-562) $) NIL) (((-406 (-562)) $) NIL) ((|#2| $) 138)) (-1810 (($ $ $) 221)) (-3449 (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) 154) (((-683 |#2|) (-683 $)) 148)) (-1954 (($ (-1164 |#2|)) 118) (((-3 $ "failed") (-406 (-1164 |#2|))) NIL)) (-1694 (((-3 $ "failed") $) 208)) (-3913 (((-3 (-406 (-562)) "failed") $) 198)) (-3498 (((-112) $) 193)) (-3854 (((-406 (-562)) $) 196)) (-2172 (((-916)) 88)) (-1787 (($ $ $) 223)) (-2994 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 260)) (-4100 (($) 235)) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 185) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 190)) (-4363 ((|#2| $) 93)) (-1937 (((-1164 |#2|) $) 120)) (-4152 (($ (-1 |#2| |#2|) $) 101)) (-4366 (($ $) 237)) (-1942 (((-1164 |#2|) $) 119)) (-1525 (($ $) 201)) (-2396 (($) 96)) (-3586 (((-417 (-1164 $)) (-1164 $)) 87)) (-3468 (((-417 (-1164 $)) (-1164 $)) 56)) (-1762 (((-3 $ "failed") $ |#2|) 203) (((-3 $ "failed") $ $) 206)) (-3430 (($ $) 236)) (-2044 (((-766) $) 218)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 228)) (-2736 ((|#2| (-1256 $)) NIL) ((|#2|) 90)) (-4029 (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) 112) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL) (($ $ (-766)) NIL) (($ $) NIL)) (-3371 (((-1164 |#2|)) 113)) (-2977 (($ $) 245)) (-4087 (($ $) 239)) (-2205 (((-1256 |#2|) $ (-1256 $)) 127) (((-683 |#2|) (-1256 $) (-1256 $)) NIL) (((-1256 |#2|) $) 109) (((-683 |#2|) (-1256 $)) NIL)) (-4208 (((-1256 |#2|) $) NIL) (($ (-1256 |#2|)) NIL) (((-1164 |#2|) $) NIL) (($ (-1164 |#2|)) NIL) (((-887 (-562)) $) 176) (((-887 (-378)) $) 180) (((-168 (-378)) $) 166) (((-168 (-224)) $) 161) (((-535) $) 172)) (-1660 (($ $) 97)) (-4053 (((-857) $) 137) (($ (-562)) NIL) (($ |#2|) NIL) (($ (-406 (-562))) NIL) (($ $) NIL)) (-3683 (((-1164 |#2|) $) 23)) (-1568 (((-766)) 99)) (-3054 (($ $) 249)) (-4165 (($ $) 243)) (-3033 (($ $) 247)) (-4139 (($ $) 241)) (-2282 ((|#2| $) 232)) (-3040 (($ $) 248)) (-4151 (($ $) 242)) (-2757 (($ $) 156)) (-1733 (((-112) $ $) 103)) (-1761 (((-112) $ $) 192)) (-1847 (($ $) 105) (($ $ $) NIL)) (-1836 (($ $ $) 104)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-406 (-562))) 266) (($ $ $) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 111) (($ $ $) 141) (($ $ |#2|) NIL) (($ |#2| $) 107) (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL)))
+(((-164 |#1| |#2|) (-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4053 (|#1| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2271 ((-2 (|:| -4310 |#1|) (|:| -4390 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -2044 ((-766) |#1|)) (-15 -3204 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -1787 (|#1| |#1| |#1|)) (-15 -1810 (|#1| |#1| |#1|)) (-15 -1525 (|#1| |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -1761 ((-112) |#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4208 ((-168 (-224)) |#1|)) (-15 -4208 ((-168 (-378)) |#1|)) (-15 -4098 (|#1| |#1|)) (-15 -4074 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -4151 (|#1| |#1|)) (-15 -4139 (|#1| |#1|)) (-15 -4165 (|#1| |#1|)) (-15 -2977 (|#1| |#1|)) (-15 -4206 (|#1| |#1|)) (-15 -2987 (|#1| |#1|)) (-15 -3040 (|#1| |#1|)) (-15 -3033 (|#1| |#1|)) (-15 -3054 (|#1| |#1|)) (-15 -4366 (|#1| |#1|)) (-15 -3430 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -4100 (|#1|)) (-15 ** (|#1| |#1| (-406 (-562)))) (-15 -3468 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3586 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -2654 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -3913 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3854 ((-406 (-562)) |#1|)) (-15 -3498 ((-112) |#1|)) (-15 -2994 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2282 (|#2| |#1|)) (-15 -2757 (|#1| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1660 (|#1| |#1|)) (-15 -2396 (|#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -2337 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -2337 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -1954 ((-3 |#1| "failed") (-406 (-1164 |#2|)))) (-15 -1942 ((-1164 |#2|) |#1|)) (-15 -4208 (|#1| (-1164 |#2|))) (-15 -1954 (|#1| (-1164 |#2|))) (-15 -3371 ((-1164 |#2|))) (-15 -3449 ((-683 |#2|) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-683 (-562)) (-683 |#1|))) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4208 ((-1164 |#2|) |#1|)) (-15 -2736 (|#2|)) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -2205 ((-683 |#2|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1|)) (-15 -1937 ((-1164 |#2|) |#1|)) (-15 -3683 ((-1164 |#2|) |#1|)) (-15 -2736 (|#2| (-1256 |#1|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -4363 (|#2| |#1|)) (-15 -1748 (|#2| |#1|)) (-15 -2172 ((-916))) (-15 -4053 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1568 ((-766))) (-15 -4053 (|#1| (-562))) (-15 ** (|#1| |#1| (-766))) (-15 -1694 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-916))) (-15 * (|#1| (-562) |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -1836 (|#1| |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -1733 ((-112) |#1| |#1|))) (-165 |#2|) (-171)) (T -164))
+((-1568 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-766)) (-5 *1 (-164 *3 *4)) (-4 *3 (-165 *4)))) (-2172 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-916)) (-5 *1 (-164 *3 *4)) (-4 *3 (-165 *4)))) (-2736 (*1 *2) (-12 (-4 *2 (-171)) (-5 *1 (-164 *3 *2)) (-4 *3 (-165 *2)))) (-3371 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-1164 *4)) (-5 *1 (-164 *3 *4)) (-4 *3 (-165 *4)))))
+(-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4053 (|#1| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2271 ((-2 (|:| -4310 |#1|) (|:| -4390 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -2044 ((-766) |#1|)) (-15 -3204 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -1787 (|#1| |#1| |#1|)) (-15 -1810 (|#1| |#1| |#1|)) (-15 -1525 (|#1| |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -1761 ((-112) |#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4208 ((-168 (-224)) |#1|)) (-15 -4208 ((-168 (-378)) |#1|)) (-15 -4098 (|#1| |#1|)) (-15 -4074 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -4151 (|#1| |#1|)) (-15 -4139 (|#1| |#1|)) (-15 -4165 (|#1| |#1|)) (-15 -2977 (|#1| |#1|)) (-15 -4206 (|#1| |#1|)) (-15 -2987 (|#1| |#1|)) (-15 -3040 (|#1| |#1|)) (-15 -3033 (|#1| |#1|)) (-15 -3054 (|#1| |#1|)) (-15 -4366 (|#1| |#1|)) (-15 -3430 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -4100 (|#1|)) (-15 ** (|#1| |#1| (-406 (-562)))) (-15 -3468 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3586 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -2654 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -3913 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3854 ((-406 (-562)) |#1|)) (-15 -3498 ((-112) |#1|)) (-15 -2994 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2282 (|#2| |#1|)) (-15 -2757 (|#1| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1660 (|#1| |#1|)) (-15 -2396 (|#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -2337 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -2337 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -1954 ((-3 |#1| "failed") (-406 (-1164 |#2|)))) (-15 -1942 ((-1164 |#2|) |#1|)) (-15 -4208 (|#1| (-1164 |#2|))) (-15 -1954 (|#1| (-1164 |#2|))) (-15 -3371 ((-1164 |#2|))) (-15 -3449 ((-683 |#2|) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-683 (-562)) (-683 |#1|))) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4208 ((-1164 |#2|) |#1|)) (-15 -2736 (|#2|)) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -2205 ((-683 |#2|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1|)) (-15 -1937 ((-1164 |#2|) |#1|)) (-15 -3683 ((-1164 |#2|) |#1|)) (-15 -2736 (|#2| (-1256 |#1|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -4363 (|#2| |#1|)) (-15 -1748 (|#2| |#1|)) (-15 -2172 ((-916))) (-15 -4053 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1568 ((-766))) (-15 -4053 (|#1| (-562))) (-15 ** (|#1| |#1| (-766))) (-15 -1694 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-916))) (-15 * (|#1| (-562) |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -1836 (|#1| |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -1733 ((-112) |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 93 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-1965 (($ $) 94 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-4102 (((-112) $) 96 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-4342 (((-683 |#1|) (-1256 $)) 47) (((-683 |#1|)) 62)) (-1748 ((|#1| $) 53)) (-2987 (($ $) 227 (|has| |#1| (-1192)))) (-4098 (($ $) 210 (|has| |#1| (-1192)))) (-1755 (((-1180 (-916) (-766)) (-562)) 146 (|has| |#1| (-348)))) (-2781 (((-3 $ "failed") $ $) 19)) (-3517 (((-417 (-1164 $)) (-1164 $)) 241 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-1977 (($ $) 113 (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-3788 (((-417 $) $) 114 (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-1644 (($ $) 240 (-12 (|has| |#1| (-997)) (|has| |#1| (-1192))))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 244 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-1436 (((-112) $ $) 104 (|has| |#1| (-306)))) (-1382 (((-766)) 87 (|has| |#1| (-367)))) (-4206 (($ $) 226 (|has| |#1| (-1192)))) (-4074 (($ $) 211 (|has| |#1| (-1192)))) (-3013 (($ $) 225 (|has| |#1| (-1192)))) (-4120 (($ $) 212 (|has| |#1| (-1192)))) (-3329 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 169 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 167 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 164)) (-3960 (((-562) $) 168 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 166 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 165)) (-3916 (($ (-1256 |#1|) (-1256 $)) 49) (($ (-1256 |#1|)) 65)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) 152 (|has| |#1| (-348)))) (-1810 (($ $ $) 108 (|has| |#1| (-306)))) (-4376 (((-683 |#1|) $ (-1256 $)) 54) (((-683 |#1|) $) 60)) (-3449 (((-683 (-562)) (-683 $)) 163 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 162 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 161) (((-683 |#1|) (-683 $)) 160)) (-1954 (($ (-1164 |#1|)) 157) (((-3 $ "failed") (-406 (-1164 |#1|))) 154 (|has| |#1| (-362)))) (-1694 (((-3 $ "failed") $) 33)) (-1657 ((|#1| $) 252)) (-3913 (((-3 (-406 (-562)) "failed") $) 245 (|has| |#1| (-544)))) (-3498 (((-112) $) 247 (|has| |#1| (-544)))) (-3854 (((-406 (-562)) $) 246 (|has| |#1| (-544)))) (-2172 (((-916)) 55)) (-1447 (($) 90 (|has| |#1| (-367)))) (-1787 (($ $ $) 107 (|has| |#1| (-306)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 102 (|has| |#1| (-306)))) (-2787 (($) 148 (|has| |#1| (-348)))) (-1844 (((-112) $) 149 (|has| |#1| (-348)))) (-2184 (($ $ (-766)) 140 (|has| |#1| (-348))) (($ $) 139 (|has| |#1| (-348)))) (-3521 (((-112) $) 115 (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-2994 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 248 (-12 (|has| |#1| (-1053)) (|has| |#1| (-1192))))) (-4100 (($) 237 (|has| |#1| (-1192)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 260 (|has| |#1| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 259 (|has| |#1| (-881 (-378))))) (-1993 (((-916) $) 151 (|has| |#1| (-348))) (((-828 (-916)) $) 137 (|has| |#1| (-348)))) (-4367 (((-112) $) 31)) (-1895 (($ $ (-562)) 239 (-12 (|has| |#1| (-997)) (|has| |#1| (-1192))))) (-4363 ((|#1| $) 52)) (-3828 (((-3 $ "failed") $) 141 (|has| |#1| (-348)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 111 (|has| |#1| (-306)))) (-1937 (((-1164 |#1|) $) 45 (|has| |#1| (-362)))) (-1551 (($ $ $) 206 (|has| |#1| (-845)))) (-2993 (($ $ $) 205 (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) 261)) (-3549 (((-916) $) 89 (|has| |#1| (-367)))) (-4366 (($ $) 234 (|has| |#1| (-1192)))) (-1942 (((-1164 |#1|) $) 155)) (-1564 (($ (-639 $)) 100 (-4037 (|has| |#1| (-306)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (($ $ $) 99 (-4037 (|has| |#1| (-306)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-3696 (((-1150) $) 9)) (-1525 (($ $) 116 (|has| |#1| (-362)))) (-3730 (($) 142 (|has| |#1| (-348)) CONST)) (-2464 (($ (-916)) 88 (|has| |#1| (-367)))) (-2396 (($) 256)) (-1670 ((|#1| $) 253)) (-1709 (((-1112) $) 10)) (-3147 (($) 159)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 101 (-4037 (|has| |#1| (-306)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-1606 (($ (-639 $)) 98 (-4037 (|has| |#1| (-306)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (($ $ $) 97 (-4037 (|has| |#1| (-306)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) 145 (|has| |#1| (-348)))) (-3586 (((-417 (-1164 $)) (-1164 $)) 243 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-3468 (((-417 (-1164 $)) (-1164 $)) 242 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-1635 (((-417 $) $) 112 (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-306))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 109 (|has| |#1| (-306)))) (-1762 (((-3 $ "failed") $ |#1|) 251 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 92 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 103 (|has| |#1| (-306)))) (-3430 (($ $) 235 (|has| |#1| (-1192)))) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) 267 (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) 266 (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) 265 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) 264 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) 263 (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) 262 (|has| |#1| (-513 (-1168) |#1|)))) (-2044 (((-766) $) 105 (|has| |#1| (-306)))) (-2343 (($ $ |#1|) 268 (|has| |#1| (-285 |#1| |#1|)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 106 (|has| |#1| (-306)))) (-2736 ((|#1| (-1256 $)) 48) ((|#1|) 61)) (-3543 (((-766) $) 150 (|has| |#1| (-348))) (((-3 (-766) "failed") $ $) 138 (|has| |#1| (-348)))) (-4029 (($ $ (-1 |#1| |#1|) (-766)) 122) (($ $ (-1 |#1| |#1|)) 121) (($ $ (-639 (-1168)) (-639 (-766))) 129 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 130 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 131 (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) 132 (|has| |#1| (-895 (-1168)))) (($ $ (-766)) 134 (-4037 (-2245 (|has| |#1| (-362)) (|has| |#1| (-232))) (|has| |#1| (-232)) (-2245 (|has| |#1| (-232)) (|has| |#1| (-362))))) (($ $) 136 (-4037 (-2245 (|has| |#1| (-362)) (|has| |#1| (-232))) (|has| |#1| (-232)) (-2245 (|has| |#1| (-232)) (|has| |#1| (-362)))))) (-2539 (((-683 |#1|) (-1256 $) (-1 |#1| |#1|)) 153 (|has| |#1| (-362)))) (-3371 (((-1164 |#1|)) 158)) (-3022 (($ $) 224 (|has| |#1| (-1192)))) (-4130 (($ $) 213 (|has| |#1| (-1192)))) (-1653 (($) 147 (|has| |#1| (-348)))) (-3000 (($ $) 223 (|has| |#1| (-1192)))) (-4108 (($ $) 214 (|has| |#1| (-1192)))) (-2977 (($ $) 222 (|has| |#1| (-1192)))) (-4087 (($ $) 215 (|has| |#1| (-1192)))) (-2205 (((-1256 |#1|) $ (-1256 $)) 51) (((-683 |#1|) (-1256 $) (-1256 $)) 50) (((-1256 |#1|) $) 67) (((-683 |#1|) (-1256 $)) 66)) (-4208 (((-1256 |#1|) $) 64) (($ (-1256 |#1|)) 63) (((-1164 |#1|) $) 170) (($ (-1164 |#1|)) 156) (((-887 (-562)) $) 258 (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) 257 (|has| |#1| (-610 (-887 (-378))))) (((-168 (-378)) $) 209 (|has| |#1| (-1017))) (((-168 (-224)) $) 208 (|has| |#1| (-1017))) (((-535) $) 207 (|has| |#1| (-610 (-535))))) (-1660 (($ $) 255)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 144 (-4037 (-2245 (|has| $ (-144)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))) (|has| |#1| (-348))))) (-1418 (($ |#1| |#1|) 254)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38) (($ (-406 (-562))) 86 (-4037 (|has| |#1| (-362)) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) 91 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-2059 (($ $) 143 (|has| |#1| (-348))) (((-3 $ "failed") $) 44 (-4037 (-2245 (|has| $ (-144)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))) (|has| |#1| (-144))))) (-3683 (((-1164 |#1|) $) 46)) (-1568 (((-766)) 28)) (-4291 (((-1256 $)) 68)) (-3054 (($ $) 233 (|has| |#1| (-1192)))) (-4165 (($ $) 221 (|has| |#1| (-1192)))) (-3799 (((-112) $ $) 95 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))) (-3033 (($ $) 232 (|has| |#1| (-1192)))) (-4139 (($ $) 220 (|has| |#1| (-1192)))) (-3077 (($ $) 231 (|has| |#1| (-1192)))) (-4183 (($ $) 219 (|has| |#1| (-1192)))) (-2282 ((|#1| $) 249 (|has| |#1| (-1192)))) (-1567 (($ $) 230 (|has| |#1| (-1192)))) (-4195 (($ $) 218 (|has| |#1| (-1192)))) (-3065 (($ $) 229 (|has| |#1| (-1192)))) (-4175 (($ $) 217 (|has| |#1| (-1192)))) (-3040 (($ $) 228 (|has| |#1| (-1192)))) (-4151 (($ $) 216 (|has| |#1| (-1192)))) (-2757 (($ $) 250 (|has| |#1| (-1053)))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-1 |#1| |#1|) (-766)) 124) (($ $ (-1 |#1| |#1|)) 123) (($ $ (-639 (-1168)) (-639 (-766))) 125 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 126 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 127 (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) 128 (|has| |#1| (-895 (-1168)))) (($ $ (-766)) 133 (-4037 (-2245 (|has| |#1| (-362)) (|has| |#1| (-232))) (|has| |#1| (-232)) (-2245 (|has| |#1| (-232)) (|has| |#1| (-362))))) (($ $) 135 (-4037 (-2245 (|has| |#1| (-362)) (|has| |#1| (-232))) (|has| |#1| (-232)) (-2245 (|has| |#1| (-232)) (|has| |#1| (-362)))))) (-1798 (((-112) $ $) 203 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 202 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 204 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 201 (|has| |#1| (-845)))) (-1859 (($ $ $) 120 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-406 (-562))) 238 (-12 (|has| |#1| (-997)) (|has| |#1| (-1192)))) (($ $ $) 236 (|has| |#1| (-1192))) (($ $ (-562)) 117 (|has| |#1| (-362)))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39) (($ (-406 (-562)) $) 119 (|has| |#1| (-362))) (($ $ (-406 (-562))) 118 (|has| |#1| (-362)))))
(((-165 |#1|) (-139) (-171)) (T -165))
-((-2247 (*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))) (-2112 (*1 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))) (-3665 (*1 *1 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))) (-1418 (*1 *1 *2 *2) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))) (-1670 (*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))) (-1657 (*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))) (-1762 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-165 *2)) (-4 *2 (-171)) (-4 *2 (-554)))) (-3526 (*1 *1 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)) (-4 *2 (-1053)))) (-2828 (*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)) (-4 *2 (-1192)))) (-2362 (*1 *2 *1) (-12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-1053)) (-4 *3 (-1192)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-3035 (*1 *2 *1) (-12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-112)))) (-1291 (*1 *2 *1) (-12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-406 (-562))))) (-1726 (*1 *2 *1) (|partial| -12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-406 (-562))))))
-(-13 (-719 |t#1| (-1164 |t#1|)) (-410 |t#1|) (-230 |t#1|) (-337 |t#1|) (-399 |t#1|) (-879 |t#1|) (-376 |t#1|) (-171) (-10 -8 (-15 -2112 ($)) (-15 -3665 ($ $)) (-15 -1418 ($ |t#1| |t#1|)) (-15 -1670 (|t#1| $)) (-15 -1657 (|t#1| $)) (-15 -2247 (|t#1| $)) (IF (|has| |t#1| (-845)) (-6 (-845)) |%noBranch|) (IF (|has| |t#1| (-554)) (PROGN (-6 (-554)) (-15 -1762 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-306)) (-6 (-306)) |%noBranch|) (IF (|has| |t#1| (-6 -4401)) (-6 -4401) |%noBranch|) (IF (|has| |t#1| (-6 -4398)) (-6 -4398) |%noBranch|) (IF (|has| |t#1| (-362)) (-6 (-362)) |%noBranch|) (IF (|has| |t#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |t#1| (-1017)) (PROGN (-6 (-610 (-168 (-224)))) (-6 (-610 (-168 (-378))))) |%noBranch|) (IF (|has| |t#1| (-1053)) (-15 -3526 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1192)) (PROGN (-6 (-1192)) (-15 -2828 (|t#1| $)) (IF (|has| |t#1| (-997)) (-6 (-997)) |%noBranch|) (IF (|has| |t#1| (-1053)) (-15 -2362 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-544)) (PROGN (-15 -3035 ((-112) $)) (-15 -1291 ((-406 (-562)) $)) (-15 -1726 ((-3 (-406 (-562)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-904)) (IF (|has| |t#1| (-306)) (-6 (-904)) |%noBranch|) |%noBranch|)))
+((-4363 (*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))) (-2396 (*1 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))) (-1660 (*1 *1 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))) (-1418 (*1 *1 *2 *2) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))) (-1670 (*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))) (-1657 (*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))) (-1762 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-165 *2)) (-4 *2 (-171)) (-4 *2 (-554)))) (-2757 (*1 *1 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)) (-4 *2 (-1053)))) (-2282 (*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)) (-4 *2 (-1192)))) (-2994 (*1 *2 *1) (-12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-1053)) (-4 *3 (-1192)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-3498 (*1 *2 *1) (-12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-112)))) (-3854 (*1 *2 *1) (-12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-406 (-562))))) (-3913 (*1 *2 *1) (|partial| -12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-406 (-562))))))
+(-13 (-719 |t#1| (-1164 |t#1|)) (-410 |t#1|) (-230 |t#1|) (-337 |t#1|) (-399 |t#1|) (-879 |t#1|) (-376 |t#1|) (-171) (-10 -8 (-15 -2396 ($)) (-15 -1660 ($ $)) (-15 -1418 ($ |t#1| |t#1|)) (-15 -1670 (|t#1| $)) (-15 -1657 (|t#1| $)) (-15 -4363 (|t#1| $)) (IF (|has| |t#1| (-845)) (-6 (-845)) |%noBranch|) (IF (|has| |t#1| (-554)) (PROGN (-6 (-554)) (-15 -1762 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-306)) (-6 (-306)) |%noBranch|) (IF (|has| |t#1| (-6 -4402)) (-6 -4402) |%noBranch|) (IF (|has| |t#1| (-6 -4399)) (-6 -4399) |%noBranch|) (IF (|has| |t#1| (-362)) (-6 (-362)) |%noBranch|) (IF (|has| |t#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |t#1| (-1017)) (PROGN (-6 (-610 (-168 (-224)))) (-6 (-610 (-168 (-378))))) |%noBranch|) (IF (|has| |t#1| (-1053)) (-15 -2757 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1192)) (PROGN (-6 (-1192)) (-15 -2282 (|t#1| $)) (IF (|has| |t#1| (-997)) (-6 (-997)) |%noBranch|) (IF (|has| |t#1| (-1053)) (-15 -2994 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-544)) (PROGN (-15 -3498 ((-112) $)) (-15 -3854 ((-406 (-562)) $)) (-15 -3913 ((-3 (-406 (-562)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-904)) (IF (|has| |t#1| (-306)) (-6 (-904)) |%noBranch|) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-38 |#1|) . T) ((-38 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-348)) (|has| |#1| (-362)) (|has| |#1| (-306))) ((-35) |has| |#1| (-1192)) ((-95) |has| |#1| (-1192)) ((-102) . T) ((-111 #0# #0#) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-144) -4037 (|has| |#1| (-348)) (|has| |#1| (-144))) ((-146) |has| |#1| (-146)) ((-612 #0#) -4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-348)) (|has| |#1| (-362))) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-612 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-348)) (|has| |#1| (-362)) (|has| |#1| (-306))) ((-609 (-857)) . T) ((-171) . T) ((-610 (-168 (-224))) |has| |#1| (-1017)) ((-610 (-168 (-378))) |has| |#1| (-1017)) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-610 (-887 (-378))) |has| |#1| (-610 (-887 (-378)))) ((-610 (-887 (-562))) |has| |#1| (-610 (-887 (-562)))) ((-610 #1=(-1164 |#1|)) . T) ((-230 |#1|) . T) ((-232) -4037 (|has| |#1| (-348)) (|has| |#1| (-232))) ((-242) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-283) |has| |#1| (-1192)) ((-285 |#1| $) |has| |#1| (-285 |#1| |#1|)) ((-289) -4037 (|has| |#1| (-554)) (|has| |#1| (-348)) (|has| |#1| (-362)) (|has| |#1| (-306))) ((-306) -4037 (|has| |#1| (-348)) (|has| |#1| (-362)) (|has| |#1| (-306))) ((-308 |#1|) |has| |#1| (-308 |#1|)) ((-362) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-401) |has| |#1| (-348)) ((-367) -4037 (|has| |#1| (-367)) (|has| |#1| (-348))) ((-348) |has| |#1| (-348)) ((-369 |#1| #1#) . T) ((-408 |#1| #1#) . T) ((-337 |#1|) . T) ((-376 |#1|) . T) ((-399 |#1|) . T) ((-410 |#1|) . T) ((-451) -4037 (|has| |#1| (-348)) (|has| |#1| (-362)) (|has| |#1| (-306))) ((-492) |has| |#1| (-1192)) ((-513 (-1168) |#1|) |has| |#1| (-513 (-1168) |#1|)) ((-513 |#1| |#1|) |has| |#1| (-308 |#1|)) ((-554) -4037 (|has| |#1| (-554)) (|has| |#1| (-348)) (|has| |#1| (-362)) (|has| |#1| (-306))) ((-642 #0#) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-642 |#1|) . T) ((-642 $) . T) ((-635 (-562)) |has| |#1| (-635 (-562))) ((-635 |#1|) . T) ((-712 #0#) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-712 |#1|) . T) ((-712 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-348)) (|has| |#1| (-362)) (|has| |#1| (-306))) ((-719 |#1| #1#) . T) ((-721) . T) ((-845) |has| |#1| (-845)) ((-895 (-1168)) |has| |#1| (-895 (-1168))) ((-881 (-378)) |has| |#1| (-881 (-378))) ((-881 (-562)) |has| |#1| (-881 (-562))) ((-879 |#1|) . T) ((-904) -12 (|has| |#1| (-306)) (|has| |#1| (-904))) ((-915) -4037 (|has| |#1| (-348)) (|has| |#1| (-362)) (|has| |#1| (-306))) ((-997) -12 (|has| |#1| (-997)) (|has| |#1| (-1192))) ((-1033 (-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 |#1|) . T) ((-1050 #0#) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-1050 |#1|) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1143) |has| |#1| (-348)) ((-1192) |has| |#1| (-1192)) ((-1195) |has| |#1| (-1192)) ((-1207) . T) ((-1211) -4037 (|has| |#1| (-348)) (|has| |#1| (-362)) (-12 (|has| |#1| (-306)) (|has| |#1| (-904)))))
((-1635 (((-417 |#2|) |#2|) 63)))
(((-166 |#1| |#2|) (-10 -7 (-15 -1635 ((-417 |#2|) |#2|))) (-306) (-1232 (-168 |#1|))) (T -166))
@@ -625,7 +625,7 @@ NIL
(((-167 |#1| |#2|) (-10 -7 (-15 -4152 ((-168 |#2|) (-1 |#2| |#1|) (-168 |#1|)))) (-171) (-171)) (T -167))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-168 *5)) (-4 *5 (-171)) (-4 *6 (-171)) (-5 *2 (-168 *6)) (-5 *1 (-167 *5 *6)))))
(-10 -7 (-15 -4152 ((-168 |#2|) (-1 |#2| |#1|) (-168 |#1|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 33)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-554))))) (-2796 (($ $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-554))))) (-4370 (((-112) $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-554))))) (-1636 (((-683 |#1|) (-1256 $)) NIL) (((-683 |#1|)) NIL)) (-1748 ((|#1| $) NIL)) (-2988 (($ $) NIL (|has| |#1| (-1192)))) (-4097 (($ $) NIL (|has| |#1| (-1192)))) (-3984 (((-1180 (-916) (-766)) (-562)) NIL (|has| |#1| (-348)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-2798 (($ $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-2921 (((-417 $) $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-1643 (($ $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1192))))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-2569 (((-112) $ $) NIL (|has| |#1| (-306)))) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-4207 (($ $) NIL (|has| |#1| (-1192)))) (-4074 (($ $) NIL (|has| |#1| (-1192)))) (-3014 (($ $) NIL (|has| |#1| (-1192)))) (-4119 (($ $) NIL (|has| |#1| (-1192)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-4018 (($ (-1256 |#1|) (-1256 $)) NIL) (($ (-1256 |#1|)) NIL)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-348)))) (-1811 (($ $ $) NIL (|has| |#1| (-306)))) (-1958 (((-683 |#1|) $ (-1256 $)) NIL) (((-683 |#1|) $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1955 (($ (-1164 |#1|)) NIL) (((-3 $ "failed") (-406 (-1164 |#1|))) NIL (|has| |#1| (-362)))) (-3668 (((-3 $ "failed") $) NIL)) (-1657 ((|#1| $) 13)) (-1726 (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-544)))) (-3035 (((-112) $) NIL (|has| |#1| (-544)))) (-1291 (((-406 (-562)) $) NIL (|has| |#1| (-544)))) (-2173 (((-916)) NIL)) (-1448 (($) NIL (|has| |#1| (-367)))) (-1787 (($ $ $) NIL (|has| |#1| (-306)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-306)))) (-3529 (($) NIL (|has| |#1| (-348)))) (-1322 (((-112) $) NIL (|has| |#1| (-348)))) (-3589 (($ $ (-766)) NIL (|has| |#1| (-348))) (($ $) NIL (|has| |#1| (-348)))) (-2717 (((-112) $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-2362 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-1053)) (|has| |#1| (-1192))))) (-4100 (($) NIL (|has| |#1| (-1192)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| |#1| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| |#1| (-881 (-378))))) (-1900 (((-916) $) NIL (|has| |#1| (-348))) (((-828 (-916)) $) NIL (|has| |#1| (-348)))) (-1957 (((-112) $) 35)) (-1891 (($ $ (-562)) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1192))))) (-2247 ((|#1| $) 46)) (-3699 (((-3 $ "failed") $) NIL (|has| |#1| (-348)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-306)))) (-1565 (((-1164 |#1|) $) NIL (|has| |#1| (-362)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1999 (((-916) $) NIL (|has| |#1| (-367)))) (-4365 (($ $) NIL (|has| |#1| (-1192)))) (-1943 (((-1164 |#1|) $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-306))) (($ $ $) NIL (|has| |#1| (-306)))) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-3729 (($) NIL (|has| |#1| (-348)) CONST)) (-2466 (($ (-916)) NIL (|has| |#1| (-367)))) (-2112 (($) NIL)) (-1670 ((|#1| $) 15)) (-1709 (((-1112) $) NIL)) (-3148 (($) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-306)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-306))) (($ $ $) NIL (|has| |#1| (-306)))) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL (|has| |#1| (-348)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-1635 (((-417 $) $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-306))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-306)))) (-1762 (((-3 $ "failed") $ |#1|) 44 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 47 (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-554))))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-306)))) (-3430 (($ $) NIL (|has| |#1| (-1192)))) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) NIL (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-513 (-1168) |#1|)))) (-1577 (((-766) $) NIL (|has| |#1| (-306)))) (-2343 (($ $ |#1|) NIL (|has| |#1| (-285 |#1| |#1|)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-306)))) (-2455 ((|#1| (-1256 $)) NIL) ((|#1|) NIL)) (-3362 (((-766) $) NIL (|has| |#1| (-348))) (((-3 (-766) "failed") $ $) NIL (|has| |#1| (-348)))) (-4029 (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $) NIL (|has| |#1| (-232)))) (-3187 (((-683 |#1|) (-1256 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-362)))) (-2096 (((-1164 |#1|)) NIL)) (-3023 (($ $) NIL (|has| |#1| (-1192)))) (-4130 (($ $) NIL (|has| |#1| (-1192)))) (-2283 (($) NIL (|has| |#1| (-348)))) (-3001 (($ $) NIL (|has| |#1| (-1192)))) (-4108 (($ $) NIL (|has| |#1| (-1192)))) (-2978 (($ $) NIL (|has| |#1| (-1192)))) (-4087 (($ $) NIL (|has| |#1| (-1192)))) (-3593 (((-1256 |#1|) $ (-1256 $)) NIL) (((-683 |#1|) (-1256 $) (-1256 $)) NIL) (((-1256 |#1|) $) NIL) (((-683 |#1|) (-1256 $)) NIL)) (-4208 (((-1256 |#1|) $) NIL) (($ (-1256 |#1|)) NIL) (((-1164 |#1|) $) NIL) (($ (-1164 |#1|)) NIL) (((-887 (-562)) $) NIL (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| |#1| (-610 (-887 (-378))))) (((-168 (-378)) $) NIL (|has| |#1| (-1017))) (((-168 (-224)) $) NIL (|has| |#1| (-1017))) (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-3665 (($ $) 45)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-348))))) (-1418 (($ |#1| |#1|) 37)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) 36) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-362)) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-554))))) (-2805 (($ $) NIL (|has| |#1| (-348))) (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-3376 (((-1164 |#1|) $) NIL)) (-2579 (((-766)) NIL)) (-3928 (((-1256 $)) NIL)) (-3055 (($ $) NIL (|has| |#1| (-1192)))) (-4165 (($ $) NIL (|has| |#1| (-1192)))) (-2922 (((-112) $ $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-554))))) (-3033 (($ $) NIL (|has| |#1| (-1192)))) (-4138 (($ $) NIL (|has| |#1| (-1192)))) (-3078 (($ $) NIL (|has| |#1| (-1192)))) (-4182 (($ $) NIL (|has| |#1| (-1192)))) (-2828 ((|#1| $) NIL (|has| |#1| (-1192)))) (-1566 (($ $) NIL (|has| |#1| (-1192)))) (-4195 (($ $) NIL (|has| |#1| (-1192)))) (-3066 (($ $) NIL (|has| |#1| (-1192)))) (-4174 (($ $) NIL (|has| |#1| (-1192)))) (-3044 (($ $) NIL (|has| |#1| (-1192)))) (-4151 (($ $) NIL (|has| |#1| (-1192)))) (-3526 (($ $) NIL (|has| |#1| (-1053)))) (-2286 (($) 28 T CONST)) (-2294 (($) 30 T CONST)) (-2833 (((-1150) $) 23 (|has| |#1| (-823))) (((-1150) $ (-112)) 25 (|has| |#1| (-823))) (((-1261) (-817) $) 26 (|has| |#1| (-823))) (((-1261) (-817) $ (-112)) 27 (|has| |#1| (-823)))) (-3114 (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $) NIL (|has| |#1| (-232)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ $) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 39)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-406 (-562))) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1192)))) (($ $ $) NIL (|has| |#1| (-1192))) (($ $ (-562)) NIL (|has| |#1| (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 42) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-406 (-562)) $) NIL (|has| |#1| (-362))) (($ $ (-406 (-562))) NIL (|has| |#1| (-362)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 33)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-554))))) (-1965 (($ $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-554))))) (-4102 (((-112) $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-554))))) (-4342 (((-683 |#1|) (-1256 $)) NIL) (((-683 |#1|)) NIL)) (-1748 ((|#1| $) NIL)) (-2987 (($ $) NIL (|has| |#1| (-1192)))) (-4098 (($ $) NIL (|has| |#1| (-1192)))) (-1755 (((-1180 (-916) (-766)) (-562)) NIL (|has| |#1| (-348)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-1977 (($ $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-3788 (((-417 $) $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-1644 (($ $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1192))))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-1436 (((-112) $ $) NIL (|has| |#1| (-306)))) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-4206 (($ $) NIL (|has| |#1| (-1192)))) (-4074 (($ $) NIL (|has| |#1| (-1192)))) (-3013 (($ $) NIL (|has| |#1| (-1192)))) (-4120 (($ $) NIL (|has| |#1| (-1192)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-3916 (($ (-1256 |#1|) (-1256 $)) NIL) (($ (-1256 |#1|)) NIL)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-348)))) (-1810 (($ $ $) NIL (|has| |#1| (-306)))) (-4376 (((-683 |#1|) $ (-1256 $)) NIL) (((-683 |#1|) $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1954 (($ (-1164 |#1|)) NIL) (((-3 $ "failed") (-406 (-1164 |#1|))) NIL (|has| |#1| (-362)))) (-1694 (((-3 $ "failed") $) NIL)) (-1657 ((|#1| $) 13)) (-3913 (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-544)))) (-3498 (((-112) $) NIL (|has| |#1| (-544)))) (-3854 (((-406 (-562)) $) NIL (|has| |#1| (-544)))) (-2172 (((-916)) NIL)) (-1447 (($) NIL (|has| |#1| (-367)))) (-1787 (($ $ $) NIL (|has| |#1| (-306)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-306)))) (-2787 (($) NIL (|has| |#1| (-348)))) (-1844 (((-112) $) NIL (|has| |#1| (-348)))) (-2184 (($ $ (-766)) NIL (|has| |#1| (-348))) (($ $) NIL (|has| |#1| (-348)))) (-3521 (((-112) $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-2994 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-1053)) (|has| |#1| (-1192))))) (-4100 (($) NIL (|has| |#1| (-1192)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| |#1| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| |#1| (-881 (-378))))) (-1993 (((-916) $) NIL (|has| |#1| (-348))) (((-828 (-916)) $) NIL (|has| |#1| (-348)))) (-4367 (((-112) $) 35)) (-1895 (($ $ (-562)) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1192))))) (-4363 ((|#1| $) 46)) (-3828 (((-3 $ "failed") $) NIL (|has| |#1| (-348)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-306)))) (-1937 (((-1164 |#1|) $) NIL (|has| |#1| (-362)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3549 (((-916) $) NIL (|has| |#1| (-367)))) (-4366 (($ $) NIL (|has| |#1| (-1192)))) (-1942 (((-1164 |#1|) $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-306))) (($ $ $) NIL (|has| |#1| (-306)))) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-3730 (($) NIL (|has| |#1| (-348)) CONST)) (-2464 (($ (-916)) NIL (|has| |#1| (-367)))) (-2396 (($) NIL)) (-1670 ((|#1| $) 15)) (-1709 (((-1112) $) NIL)) (-3147 (($) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-306)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-306))) (($ $ $) NIL (|has| |#1| (-306)))) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL (|has| |#1| (-348)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#1| (-306)) (|has| |#1| (-904))))) (-1635 (((-417 $) $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-362))))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-306))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-306)))) (-1762 (((-3 $ "failed") $ |#1|) 44 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 47 (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-554))))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-306)))) (-3430 (($ $) NIL (|has| |#1| (-1192)))) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) NIL (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-513 (-1168) |#1|)))) (-2044 (((-766) $) NIL (|has| |#1| (-306)))) (-2343 (($ $ |#1|) NIL (|has| |#1| (-285 |#1| |#1|)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-306)))) (-2736 ((|#1| (-1256 $)) NIL) ((|#1|) NIL)) (-3543 (((-766) $) NIL (|has| |#1| (-348))) (((-3 (-766) "failed") $ $) NIL (|has| |#1| (-348)))) (-4029 (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $) NIL (|has| |#1| (-232)))) (-2539 (((-683 |#1|) (-1256 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-362)))) (-3371 (((-1164 |#1|)) NIL)) (-3022 (($ $) NIL (|has| |#1| (-1192)))) (-4130 (($ $) NIL (|has| |#1| (-1192)))) (-1653 (($) NIL (|has| |#1| (-348)))) (-3000 (($ $) NIL (|has| |#1| (-1192)))) (-4108 (($ $) NIL (|has| |#1| (-1192)))) (-2977 (($ $) NIL (|has| |#1| (-1192)))) (-4087 (($ $) NIL (|has| |#1| (-1192)))) (-2205 (((-1256 |#1|) $ (-1256 $)) NIL) (((-683 |#1|) (-1256 $) (-1256 $)) NIL) (((-1256 |#1|) $) NIL) (((-683 |#1|) (-1256 $)) NIL)) (-4208 (((-1256 |#1|) $) NIL) (($ (-1256 |#1|)) NIL) (((-1164 |#1|) $) NIL) (($ (-1164 |#1|)) NIL) (((-887 (-562)) $) NIL (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| |#1| (-610 (-887 (-378))))) (((-168 (-378)) $) NIL (|has| |#1| (-1017))) (((-168 (-224)) $) NIL (|has| |#1| (-1017))) (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-1660 (($ $) 45)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-348))))) (-1418 (($ |#1| |#1|) 37)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) 36) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-362)) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-554))))) (-2059 (($ $) NIL (|has| |#1| (-348))) (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-3683 (((-1164 |#1|) $) NIL)) (-1568 (((-766)) NIL)) (-4291 (((-1256 $)) NIL)) (-3054 (($ $) NIL (|has| |#1| (-1192)))) (-4165 (($ $) NIL (|has| |#1| (-1192)))) (-3799 (((-112) $ $) NIL (-4037 (-12 (|has| |#1| (-306)) (|has| |#1| (-904))) (|has| |#1| (-554))))) (-3033 (($ $) NIL (|has| |#1| (-1192)))) (-4139 (($ $) NIL (|has| |#1| (-1192)))) (-3077 (($ $) NIL (|has| |#1| (-1192)))) (-4183 (($ $) NIL (|has| |#1| (-1192)))) (-2282 ((|#1| $) NIL (|has| |#1| (-1192)))) (-1567 (($ $) NIL (|has| |#1| (-1192)))) (-4195 (($ $) NIL (|has| |#1| (-1192)))) (-3065 (($ $) NIL (|has| |#1| (-1192)))) (-4175 (($ $) NIL (|has| |#1| (-1192)))) (-3040 (($ $) NIL (|has| |#1| (-1192)))) (-4151 (($ $) NIL (|has| |#1| (-1192)))) (-2757 (($ $) NIL (|has| |#1| (-1053)))) (-2285 (($) 28 T CONST)) (-2294 (($) 30 T CONST)) (-2332 (((-1150) $) 23 (|has| |#1| (-823))) (((-1150) $ (-112)) 25 (|has| |#1| (-823))) (((-1261) (-817) $) 26 (|has| |#1| (-823))) (((-1261) (-817) $ (-112)) 27 (|has| |#1| (-823)))) (-3113 (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $) NIL (|has| |#1| (-232)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ $) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 39)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-406 (-562))) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1192)))) (($ $ $) NIL (|has| |#1| (-1192))) (($ $ (-562)) NIL (|has| |#1| (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 42) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-406 (-562)) $) NIL (|has| |#1| (-362))) (($ $ (-406 (-562))) NIL (|has| |#1| (-362)))))
(((-168 |#1|) (-13 (-165 |#1|) (-10 -7 (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|))) (-171)) (T -168))
NIL
(-13 (-165 |#1|) (-10 -7 (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|)))
@@ -633,369 +633,369 @@ NIL
(((-169 |#1| |#2| |#3|) (-10 -7 (-15 -4208 ((-887 |#1|) |#3|))) (-1092) (-13 (-610 (-887 |#1|)) (-171)) (-165 |#2|)) (T -169))
((-4208 (*1 *2 *3) (-12 (-4 *5 (-13 (-610 *2) (-171))) (-5 *2 (-887 *4)) (-5 *1 (-169 *4 *5 *3)) (-4 *4 (-1092)) (-4 *3 (-165 *5)))))
(-10 -7 (-15 -4208 ((-887 |#1|) |#3|)))
-((-4041 (((-112) $ $) NIL)) (-3073 (((-112) $) 9)) (-1511 (((-112) $ (-112)) 11)) (-1458 (($) 12)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4220 (($ $) 13)) (-4054 (((-857) $) 17)) (-1623 (((-112) $) 8)) (-1450 (((-112) $ (-112)) 10)) (-1731 (((-112) $ $) NIL)))
-(((-170) (-13 (-1092) (-10 -8 (-15 -1458 ($)) (-15 -1623 ((-112) $)) (-15 -3073 ((-112) $)) (-15 -1450 ((-112) $ (-112))) (-15 -1511 ((-112) $ (-112))) (-15 -4220 ($ $))))) (T -170))
-((-1458 (*1 *1) (-5 *1 (-170))) (-1623 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-170)))) (-3073 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-170)))) (-1450 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-170)))) (-1511 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-170)))) (-4220 (*1 *1 *1) (-5 *1 (-170))))
-(-13 (-1092) (-10 -8 (-15 -1458 ($)) (-15 -1623 ((-112) $)) (-15 -3073 ((-112) $)) (-15 -1450 ((-112) $ (-112))) (-15 -1511 ((-112) $ (-112))) (-15 -4220 ($ $))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-562)) 29)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-4041 (((-112) $ $) NIL)) (-3848 (((-112) $) 9)) (-2665 (((-112) $ (-112)) 11)) (-1458 (($) 12)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4220 (($ $) 13)) (-4053 (((-857) $) 17)) (-4231 (((-112) $) 8)) (-1449 (((-112) $ (-112)) 10)) (-1733 (((-112) $ $) NIL)))
+(((-170) (-13 (-1092) (-10 -8 (-15 -1458 ($)) (-15 -4231 ((-112) $)) (-15 -3848 ((-112) $)) (-15 -1449 ((-112) $ (-112))) (-15 -2665 ((-112) $ (-112))) (-15 -4220 ($ $))))) (T -170))
+((-1458 (*1 *1) (-5 *1 (-170))) (-4231 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-170)))) (-3848 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-170)))) (-1449 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-170)))) (-2665 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-170)))) (-4220 (*1 *1 *1) (-5 *1 (-170))))
+(-13 (-1092) (-10 -8 (-15 -1458 ($)) (-15 -4231 ((-112) $)) (-15 -3848 ((-112) $)) (-15 -1449 ((-112) $ (-112))) (-15 -2665 ((-112) $ (-112))) (-15 -4220 ($ $))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-562)) 29)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-171) (-139)) (T -171))
NIL
-(-13 (-1044) (-111 $ $) (-10 -7 (-6 (-4404 "*"))))
+(-13 (-1044) (-111 $ $) (-10 -7 (-6 (-4405 "*"))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-642 $) . T) ((-721) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-3948 (($ $) 6)))
+((-1380 (($ $) 6)))
(((-172) (-139)) (T -172))
-((-3948 (*1 *1 *1) (-4 *1 (-172))))
-(-13 (-10 -8 (-15 -3948 ($ $))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-4246 ((|#1| $) 74)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-1811 (($ $ $) NIL)) (-2645 (($ $) 19)) (-1516 (($ |#1| (-1148 |#1|)) 47)) (-3668 (((-3 $ "failed") $) 116)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-2333 (((-1148 |#1|) $) 81)) (-2735 (((-1148 |#1|) $) 78)) (-3947 (((-1148 |#1|) $) 79)) (-1957 (((-112) $) NIL)) (-2892 (((-1148 |#1|) $) 87)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1564 (($ (-639 $)) NIL) (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ (-639 $)) NIL) (($ $ $) NIL)) (-1635 (((-417 $) $) NIL)) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL)) (-1353 (($ $ (-562)) 90)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3319 (((-1148 |#1|) $) 88)) (-1372 (((-1148 (-406 |#1|)) $) 14)) (-1977 (($ (-406 |#1|)) 17) (($ |#1| (-1148 |#1|) (-1148 |#1|)) 37)) (-2256 (($ $) 92)) (-4054 (((-857) $) 126) (($ (-562)) 50) (($ |#1|) 51) (($ (-406 |#1|)) 35) (($ (-406 (-562))) NIL) (($ $) NIL)) (-2579 (((-766)) 63)) (-2922 (((-112) $ $) NIL)) (-2947 (((-1148 (-406 |#1|)) $) 18)) (-2286 (($) 25 T CONST)) (-2294 (($) 28 T CONST)) (-1731 (((-112) $ $) 34)) (-1859 (($ $ $) 114)) (-1848 (($ $) 105) (($ $ $) 102)) (-1835 (($ $ $) 100)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 112) (($ $ $) 107) (($ $ |#1|) NIL) (($ |#1| $) 109) (($ (-406 |#1|) $) 110) (($ $ (-406 |#1|)) NIL) (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL)))
-(((-173 |#1|) (-13 (-38 |#1|) (-38 (-406 |#1|)) (-362) (-10 -8 (-15 -1977 ($ (-406 |#1|))) (-15 -1977 ($ |#1| (-1148 |#1|) (-1148 |#1|))) (-15 -1516 ($ |#1| (-1148 |#1|))) (-15 -2735 ((-1148 |#1|) $)) (-15 -3947 ((-1148 |#1|) $)) (-15 -2333 ((-1148 |#1|) $)) (-15 -4246 (|#1| $)) (-15 -2645 ($ $)) (-15 -2947 ((-1148 (-406 |#1|)) $)) (-15 -1372 ((-1148 (-406 |#1|)) $)) (-15 -2892 ((-1148 |#1|) $)) (-15 -3319 ((-1148 |#1|) $)) (-15 -1353 ($ $ (-562))) (-15 -2256 ($ $)))) (-306)) (T -173))
-((-1977 (*1 *1 *2) (-12 (-5 *2 (-406 *3)) (-4 *3 (-306)) (-5 *1 (-173 *3)))) (-1977 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1148 *2)) (-4 *2 (-306)) (-5 *1 (-173 *2)))) (-1516 (*1 *1 *2 *3) (-12 (-5 *3 (-1148 *2)) (-4 *2 (-306)) (-5 *1 (-173 *2)))) (-2735 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-3947 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-2333 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-4246 (*1 *2 *1) (-12 (-5 *1 (-173 *2)) (-4 *2 (-306)))) (-2645 (*1 *1 *1) (-12 (-5 *1 (-173 *2)) (-4 *2 (-306)))) (-2947 (*1 *2 *1) (-12 (-5 *2 (-1148 (-406 *3))) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-1372 (*1 *2 *1) (-12 (-5 *2 (-1148 (-406 *3))) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-2892 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-3319 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-1353 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-2256 (*1 *1 *1) (-12 (-5 *1 (-173 *2)) (-4 *2 (-306)))))
-(-13 (-38 |#1|) (-38 (-406 |#1|)) (-362) (-10 -8 (-15 -1977 ($ (-406 |#1|))) (-15 -1977 ($ |#1| (-1148 |#1|) (-1148 |#1|))) (-15 -1516 ($ |#1| (-1148 |#1|))) (-15 -2735 ((-1148 |#1|) $)) (-15 -3947 ((-1148 |#1|) $)) (-15 -2333 ((-1148 |#1|) $)) (-15 -4246 (|#1| $)) (-15 -2645 ($ $)) (-15 -2947 ((-1148 (-406 |#1|)) $)) (-15 -1372 ((-1148 (-406 |#1|)) $)) (-15 -2892 ((-1148 |#1|) $)) (-15 -3319 ((-1148 |#1|) $)) (-15 -1353 ($ $ (-562))) (-15 -2256 ($ $))))
-((-3361 (($ (-109) $) 13)) (-2174 (((-3 (-109) "failed") (-1168) $) 12)) (-4054 (((-857) $) 16)) (-2046 (((-639 (-109)) $) 8)))
-(((-174) (-13 (-609 (-857)) (-10 -8 (-15 -2046 ((-639 (-109)) $)) (-15 -3361 ($ (-109) $)) (-15 -2174 ((-3 (-109) "failed") (-1168) $))))) (T -174))
-((-2046 (*1 *2 *1) (-12 (-5 *2 (-639 (-109))) (-5 *1 (-174)))) (-3361 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-174)))) (-2174 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-109)) (-5 *1 (-174)))))
-(-13 (-609 (-857)) (-10 -8 (-15 -2046 ((-639 (-109)) $)) (-15 -3361 ($ (-109) $)) (-15 -2174 ((-3 (-109) "failed") (-1168) $))))
-((-3378 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 40)) (-2566 (((-938 |#1|) (-938 |#1|)) 19)) (-3611 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 36)) (-1956 (((-938 |#1|) (-938 |#1|)) 17)) (-1452 (((-938 |#1|) (-938 |#1|)) 25)) (-1827 (((-938 |#1|) (-938 |#1|)) 24)) (-1883 (((-938 |#1|) (-938 |#1|)) 23)) (-3382 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 37)) (-2095 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 35)) (-3441 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 34)) (-1480 (((-938 |#1|) (-938 |#1|)) 18)) (-2973 (((-1 (-938 |#1|) (-938 |#1|)) |#1| |#1|) 43)) (-3522 (((-938 |#1|) (-938 |#1|)) 8)) (-3630 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 39)) (-2059 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 38)))
-(((-175 |#1|) (-10 -7 (-15 -3522 ((-938 |#1|) (-938 |#1|))) (-15 -1956 ((-938 |#1|) (-938 |#1|))) (-15 -1480 ((-938 |#1|) (-938 |#1|))) (-15 -2566 ((-938 |#1|) (-938 |#1|))) (-15 -1883 ((-938 |#1|) (-938 |#1|))) (-15 -1827 ((-938 |#1|) (-938 |#1|))) (-15 -1452 ((-938 |#1|) (-938 |#1|))) (-15 -3441 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -2095 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3611 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3382 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -2059 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3630 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3378 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -2973 ((-1 (-938 |#1|) (-938 |#1|)) |#1| |#1|))) (-13 (-362) (-1192) (-997))) (T -175))
-((-2973 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-3378 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-3630 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-2059 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-3382 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-3611 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-2095 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-3441 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-1452 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))) (-1827 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))) (-1883 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))) (-2566 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))) (-1480 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))) (-1956 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))) (-3522 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))))
-(-10 -7 (-15 -3522 ((-938 |#1|) (-938 |#1|))) (-15 -1956 ((-938 |#1|) (-938 |#1|))) (-15 -1480 ((-938 |#1|) (-938 |#1|))) (-15 -2566 ((-938 |#1|) (-938 |#1|))) (-15 -1883 ((-938 |#1|) (-938 |#1|))) (-15 -1827 ((-938 |#1|) (-938 |#1|))) (-15 -1452 ((-938 |#1|) (-938 |#1|))) (-15 -3441 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -2095 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3611 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3382 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -2059 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3630 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3378 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -2973 ((-1 (-938 |#1|) (-938 |#1|)) |#1| |#1|)))
-((-3376 ((|#2| |#3|) 27)))
-(((-176 |#1| |#2| |#3|) (-10 -7 (-15 -3376 (|#2| |#3|))) (-171) (-1232 |#1|) (-719 |#1| |#2|)) (T -176))
-((-3376 (*1 *2 *3) (-12 (-4 *4 (-171)) (-4 *2 (-1232 *4)) (-5 *1 (-176 *4 *2 *3)) (-4 *3 (-719 *4 *2)))))
-(-10 -7 (-15 -3376 (|#2| |#3|)))
-((-2533 (((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)) 47 (|has| (-947 |#2|) (-881 |#1|)))))
-(((-177 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-947 |#2|) (-881 |#1|)) (-15 -2533 ((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))) |%noBranch|)) (-1092) (-13 (-881 |#1|) (-171)) (-165 |#2|)) (T -177))
-((-2533 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 *3)) (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-4 *3 (-165 *6)) (-4 (-947 *6) (-881 *5)) (-4 *6 (-13 (-881 *5) (-171))) (-5 *1 (-177 *5 *6 *3)))))
-(-10 -7 (IF (|has| (-947 |#2|) (-881 |#1|)) (-15 -2533 ((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))) |%noBranch|))
-((-3380 (((-639 |#1|) (-639 |#1|) |#1|) 38)) (-3708 (((-639 |#1|) |#1| (-639 |#1|)) 19)) (-3757 (((-639 |#1|) (-639 (-639 |#1|)) (-639 |#1|)) 33) ((|#1| (-639 |#1|) (-639 |#1|)) 31)))
-(((-178 |#1|) (-10 -7 (-15 -3708 ((-639 |#1|) |#1| (-639 |#1|))) (-15 -3757 (|#1| (-639 |#1|) (-639 |#1|))) (-15 -3757 ((-639 |#1|) (-639 (-639 |#1|)) (-639 |#1|))) (-15 -3380 ((-639 |#1|) (-639 |#1|) |#1|))) (-306)) (T -178))
-((-3380 (*1 *2 *2 *3) (-12 (-5 *2 (-639 *3)) (-4 *3 (-306)) (-5 *1 (-178 *3)))) (-3757 (*1 *2 *3 *2) (-12 (-5 *3 (-639 (-639 *4))) (-5 *2 (-639 *4)) (-4 *4 (-306)) (-5 *1 (-178 *4)))) (-3757 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *2)) (-5 *1 (-178 *2)) (-4 *2 (-306)))) (-3708 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-306)) (-5 *1 (-178 *3)))))
-(-10 -7 (-15 -3708 ((-639 |#1|) |#1| (-639 |#1|))) (-15 -3757 (|#1| (-639 |#1|) (-639 |#1|))) (-15 -3757 ((-639 |#1|) (-639 (-639 |#1|)) (-639 |#1|))) (-15 -3380 ((-639 |#1|) (-639 |#1|) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-4084 (((-1206) $) 13)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1743 (((-1127) $) 10)) (-4054 (((-857) $) 22) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-1380 (*1 *1 *1) (-4 *1 (-172))))
+(-13 (-10 -8 (-15 -1380 ($ $))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2300 ((|#1| $) 74)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-1810 (($ $ $) NIL)) (-4111 (($ $) 19)) (-2709 (($ |#1| (-1148 |#1|)) 47)) (-1694 (((-3 $ "failed") $) 116)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-3971 (((-1148 |#1|) $) 81)) (-2550 (((-1148 |#1|) $) 78)) (-1364 (((-1148 |#1|) $) 79)) (-4367 (((-112) $) NIL)) (-1665 (((-1148 |#1|) $) 87)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1564 (($ (-639 $)) NIL) (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ (-639 $)) NIL) (($ $ $) NIL)) (-1635 (((-417 $) $) NIL)) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL)) (-4316 (($ $ (-562)) 90)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-1296 (((-1148 |#1|) $) 88)) (-2567 (((-1148 (-406 |#1|)) $) 14)) (-1477 (($ (-406 |#1|)) 17) (($ |#1| (-1148 |#1|) (-1148 |#1|)) 37)) (-1345 (($ $) 92)) (-4053 (((-857) $) 126) (($ (-562)) 50) (($ |#1|) 51) (($ (-406 |#1|)) 35) (($ (-406 (-562))) NIL) (($ $) NIL)) (-1568 (((-766)) 63)) (-3799 (((-112) $ $) NIL)) (-4033 (((-1148 (-406 |#1|)) $) 18)) (-2285 (($) 25 T CONST)) (-2294 (($) 28 T CONST)) (-1733 (((-112) $ $) 34)) (-1859 (($ $ $) 114)) (-1847 (($ $) 105) (($ $ $) 102)) (-1836 (($ $ $) 100)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 112) (($ $ $) 107) (($ $ |#1|) NIL) (($ |#1| $) 109) (($ (-406 |#1|) $) 110) (($ $ (-406 |#1|)) NIL) (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL)))
+(((-173 |#1|) (-13 (-38 |#1|) (-38 (-406 |#1|)) (-362) (-10 -8 (-15 -1477 ($ (-406 |#1|))) (-15 -1477 ($ |#1| (-1148 |#1|) (-1148 |#1|))) (-15 -2709 ($ |#1| (-1148 |#1|))) (-15 -2550 ((-1148 |#1|) $)) (-15 -1364 ((-1148 |#1|) $)) (-15 -3971 ((-1148 |#1|) $)) (-15 -2300 (|#1| $)) (-15 -4111 ($ $)) (-15 -4033 ((-1148 (-406 |#1|)) $)) (-15 -2567 ((-1148 (-406 |#1|)) $)) (-15 -1665 ((-1148 |#1|) $)) (-15 -1296 ((-1148 |#1|) $)) (-15 -4316 ($ $ (-562))) (-15 -1345 ($ $)))) (-306)) (T -173))
+((-1477 (*1 *1 *2) (-12 (-5 *2 (-406 *3)) (-4 *3 (-306)) (-5 *1 (-173 *3)))) (-1477 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1148 *2)) (-4 *2 (-306)) (-5 *1 (-173 *2)))) (-2709 (*1 *1 *2 *3) (-12 (-5 *3 (-1148 *2)) (-4 *2 (-306)) (-5 *1 (-173 *2)))) (-2550 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-1364 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-3971 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-2300 (*1 *2 *1) (-12 (-5 *1 (-173 *2)) (-4 *2 (-306)))) (-4111 (*1 *1 *1) (-12 (-5 *1 (-173 *2)) (-4 *2 (-306)))) (-4033 (*1 *2 *1) (-12 (-5 *2 (-1148 (-406 *3))) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-2567 (*1 *2 *1) (-12 (-5 *2 (-1148 (-406 *3))) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-1665 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-1296 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-4316 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-173 *3)) (-4 *3 (-306)))) (-1345 (*1 *1 *1) (-12 (-5 *1 (-173 *2)) (-4 *2 (-306)))))
+(-13 (-38 |#1|) (-38 (-406 |#1|)) (-362) (-10 -8 (-15 -1477 ($ (-406 |#1|))) (-15 -1477 ($ |#1| (-1148 |#1|) (-1148 |#1|))) (-15 -2709 ($ |#1| (-1148 |#1|))) (-15 -2550 ((-1148 |#1|) $)) (-15 -1364 ((-1148 |#1|) $)) (-15 -3971 ((-1148 |#1|) $)) (-15 -2300 (|#1| $)) (-15 -4111 ($ $)) (-15 -4033 ((-1148 (-406 |#1|)) $)) (-15 -2567 ((-1148 (-406 |#1|)) $)) (-15 -1665 ((-1148 |#1|) $)) (-15 -1296 ((-1148 |#1|) $)) (-15 -4316 ($ $ (-562))) (-15 -1345 ($ $))))
+((-3533 (($ (-109) $) 13)) (-1817 (((-3 (-109) "failed") (-1168) $) 12)) (-4053 (((-857) $) 16)) (-4075 (((-639 (-109)) $) 8)))
+(((-174) (-13 (-609 (-857)) (-10 -8 (-15 -4075 ((-639 (-109)) $)) (-15 -3533 ($ (-109) $)) (-15 -1817 ((-3 (-109) "failed") (-1168) $))))) (T -174))
+((-4075 (*1 *2 *1) (-12 (-5 *2 (-639 (-109))) (-5 *1 (-174)))) (-3533 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-174)))) (-1817 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-109)) (-5 *1 (-174)))))
+(-13 (-609 (-857)) (-10 -8 (-15 -4075 ((-639 (-109)) $)) (-15 -3533 ($ (-109) $)) (-15 -1817 ((-3 (-109) "failed") (-1168) $))))
+((-3704 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 40)) (-1396 (((-938 |#1|) (-938 |#1|)) 19)) (-4197 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 36)) (-4357 (((-938 |#1|) (-938 |#1|)) 17)) (-2301 (((-938 |#1|) (-938 |#1|)) 25)) (-2451 (((-938 |#1|) (-938 |#1|)) 24)) (-1796 (((-938 |#1|) (-938 |#1|)) 23)) (-3749 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 37)) (-3359 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 35)) (-3092 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 34)) (-2466 (((-938 |#1|) (-938 |#1|)) 18)) (-3071 (((-1 (-938 |#1|) (-938 |#1|)) |#1| |#1|) 43)) (-2726 (((-938 |#1|) (-938 |#1|)) 8)) (-4368 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 39)) (-2978 (((-1 (-938 |#1|) (-938 |#1|)) |#1|) 38)))
+(((-175 |#1|) (-10 -7 (-15 -2726 ((-938 |#1|) (-938 |#1|))) (-15 -4357 ((-938 |#1|) (-938 |#1|))) (-15 -2466 ((-938 |#1|) (-938 |#1|))) (-15 -1396 ((-938 |#1|) (-938 |#1|))) (-15 -1796 ((-938 |#1|) (-938 |#1|))) (-15 -2451 ((-938 |#1|) (-938 |#1|))) (-15 -2301 ((-938 |#1|) (-938 |#1|))) (-15 -3092 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3359 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -4197 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3749 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -2978 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -4368 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3704 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3071 ((-1 (-938 |#1|) (-938 |#1|)) |#1| |#1|))) (-13 (-362) (-1192) (-997))) (T -175))
+((-3071 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-3704 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-4368 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-2978 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-3749 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-4197 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-3359 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-3092 (*1 *2 *3) (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3)) (-4 *3 (-13 (-362) (-1192) (-997))))) (-2301 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))) (-2451 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))) (-1796 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))) (-1396 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))) (-2466 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))) (-4357 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))) (-2726 (*1 *2 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997))) (-5 *1 (-175 *3)))))
+(-10 -7 (-15 -2726 ((-938 |#1|) (-938 |#1|))) (-15 -4357 ((-938 |#1|) (-938 |#1|))) (-15 -2466 ((-938 |#1|) (-938 |#1|))) (-15 -1396 ((-938 |#1|) (-938 |#1|))) (-15 -1796 ((-938 |#1|) (-938 |#1|))) (-15 -2451 ((-938 |#1|) (-938 |#1|))) (-15 -2301 ((-938 |#1|) (-938 |#1|))) (-15 -3092 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3359 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -4197 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3749 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -2978 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -4368 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3704 ((-1 (-938 |#1|) (-938 |#1|)) |#1|)) (-15 -3071 ((-1 (-938 |#1|) (-938 |#1|)) |#1| |#1|)))
+((-3683 ((|#2| |#3|) 27)))
+(((-176 |#1| |#2| |#3|) (-10 -7 (-15 -3683 (|#2| |#3|))) (-171) (-1232 |#1|) (-719 |#1| |#2|)) (T -176))
+((-3683 (*1 *2 *3) (-12 (-4 *4 (-171)) (-4 *2 (-1232 *4)) (-5 *1 (-176 *4 *2 *3)) (-4 *3 (-719 *4 *2)))))
+(-10 -7 (-15 -3683 (|#2| |#3|)))
+((-2337 (((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)) 47 (|has| (-947 |#2|) (-881 |#1|)))))
+(((-177 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-947 |#2|) (-881 |#1|)) (-15 -2337 ((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))) |%noBranch|)) (-1092) (-13 (-881 |#1|) (-171)) (-165 |#2|)) (T -177))
+((-2337 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 *3)) (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-4 *3 (-165 *6)) (-4 (-947 *6) (-881 *5)) (-4 *6 (-13 (-881 *5) (-171))) (-5 *1 (-177 *5 *6 *3)))))
+(-10 -7 (IF (|has| (-947 |#2|) (-881 |#1|)) (-15 -2337 ((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))) |%noBranch|))
+((-3724 (((-639 |#1|) (-639 |#1|) |#1|) 38)) (-3933 (((-639 |#1|) |#1| (-639 |#1|)) 19)) (-3143 (((-639 |#1|) (-639 (-639 |#1|)) (-639 |#1|)) 33) ((|#1| (-639 |#1|) (-639 |#1|)) 31)))
+(((-178 |#1|) (-10 -7 (-15 -3933 ((-639 |#1|) |#1| (-639 |#1|))) (-15 -3143 (|#1| (-639 |#1|) (-639 |#1|))) (-15 -3143 ((-639 |#1|) (-639 (-639 |#1|)) (-639 |#1|))) (-15 -3724 ((-639 |#1|) (-639 |#1|) |#1|))) (-306)) (T -178))
+((-3724 (*1 *2 *2 *3) (-12 (-5 *2 (-639 *3)) (-4 *3 (-306)) (-5 *1 (-178 *3)))) (-3143 (*1 *2 *3 *2) (-12 (-5 *3 (-639 (-639 *4))) (-5 *2 (-639 *4)) (-4 *4 (-306)) (-5 *1 (-178 *4)))) (-3143 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *2)) (-5 *1 (-178 *2)) (-4 *2 (-306)))) (-3933 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-306)) (-5 *1 (-178 *3)))))
+(-10 -7 (-15 -3933 ((-639 |#1|) |#1| (-639 |#1|))) (-15 -3143 (|#1| (-639 |#1|) (-639 |#1|))) (-15 -3143 ((-639 |#1|) (-639 (-639 |#1|)) (-639 |#1|))) (-15 -3724 ((-639 |#1|) (-639 |#1|) |#1|)))
+((-4041 (((-112) $ $) NIL)) (-4084 (((-1206) $) 13)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1743 (((-1127) $) 10)) (-4053 (((-857) $) 22) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-179) (-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $)) (-15 -4084 ((-1206) $))))) (T -179))
((-1743 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-179)))) (-4084 (*1 *2 *1) (-12 (-5 *2 (-1206)) (-5 *1 (-179)))))
(-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $)) (-15 -4084 ((-1206) $))))
-((-4290 (((-2 (|:| |start| |#2|) (|:| -1510 (-417 |#2|))) |#2|) 61)) (-2804 ((|#1| |#1|) 54)) (-3100 (((-168 |#1|) |#2|) 84)) (-1604 ((|#1| |#2|) 124) ((|#1| |#2| |#1|) 82)) (-1907 ((|#2| |#2|) 83)) (-3386 (((-417 |#2|) |#2| |#1|) 114) (((-417 |#2|) |#2| |#1| (-112)) 81)) (-2247 ((|#1| |#2|) 113)) (-3138 ((|#2| |#2|) 120)) (-1635 (((-417 |#2|) |#2|) 135) (((-417 |#2|) |#2| |#1|) 32) (((-417 |#2|) |#2| |#1| (-112)) 134)) (-1611 (((-639 (-2 (|:| -1510 (-639 |#2|)) (|:| -3964 |#1|))) |#2| |#2|) 133) (((-639 (-2 (|:| -1510 (-639 |#2|)) (|:| -3964 |#1|))) |#2| |#2| (-112)) 76)) (-1962 (((-639 (-168 |#1|)) |#2| |#1|) 40) (((-639 (-168 |#1|)) |#2|) 41)))
-(((-180 |#1| |#2|) (-10 -7 (-15 -1962 ((-639 (-168 |#1|)) |#2|)) (-15 -1962 ((-639 (-168 |#1|)) |#2| |#1|)) (-15 -1611 ((-639 (-2 (|:| -1510 (-639 |#2|)) (|:| -3964 |#1|))) |#2| |#2| (-112))) (-15 -1611 ((-639 (-2 (|:| -1510 (-639 |#2|)) (|:| -3964 |#1|))) |#2| |#2|)) (-15 -1635 ((-417 |#2|) |#2| |#1| (-112))) (-15 -1635 ((-417 |#2|) |#2| |#1|)) (-15 -1635 ((-417 |#2|) |#2|)) (-15 -3138 (|#2| |#2|)) (-15 -2247 (|#1| |#2|)) (-15 -3386 ((-417 |#2|) |#2| |#1| (-112))) (-15 -3386 ((-417 |#2|) |#2| |#1|)) (-15 -1907 (|#2| |#2|)) (-15 -1604 (|#1| |#2| |#1|)) (-15 -1604 (|#1| |#2|)) (-15 -3100 ((-168 |#1|) |#2|)) (-15 -2804 (|#1| |#1|)) (-15 -4290 ((-2 (|:| |start| |#2|) (|:| -1510 (-417 |#2|))) |#2|))) (-13 (-362) (-843)) (-1232 (-168 |#1|))) (T -180))
-((-4290 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-2 (|:| |start| *3) (|:| -1510 (-417 *3)))) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-2804 (*1 *2 *2) (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3)) (-4 *3 (-1232 (-168 *2))))) (-3100 (*1 *2 *3) (-12 (-5 *2 (-168 *4)) (-5 *1 (-180 *4 *3)) (-4 *4 (-13 (-362) (-843))) (-4 *3 (-1232 *2)))) (-1604 (*1 *2 *3) (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3)) (-4 *3 (-1232 (-168 *2))))) (-1604 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3)) (-4 *3 (-1232 (-168 *2))))) (-1907 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-843))) (-5 *1 (-180 *3 *2)) (-4 *2 (-1232 (-168 *3))))) (-3386 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3)) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-3386 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3)) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-2247 (*1 *2 *3) (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3)) (-4 *3 (-1232 (-168 *2))))) (-3138 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-843))) (-5 *1 (-180 *3 *2)) (-4 *2 (-1232 (-168 *3))))) (-1635 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3)) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-1635 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3)) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-1635 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3)) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-1611 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-639 (-2 (|:| -1510 (-639 *3)) (|:| -3964 *4)))) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-1611 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-362) (-843))) (-5 *2 (-639 (-2 (|:| -1510 (-639 *3)) (|:| -3964 *5)))) (-5 *1 (-180 *5 *3)) (-4 *3 (-1232 (-168 *5))))) (-1962 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-639 (-168 *4))) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-1962 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-639 (-168 *4))) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))))
-(-10 -7 (-15 -1962 ((-639 (-168 |#1|)) |#2|)) (-15 -1962 ((-639 (-168 |#1|)) |#2| |#1|)) (-15 -1611 ((-639 (-2 (|:| -1510 (-639 |#2|)) (|:| -3964 |#1|))) |#2| |#2| (-112))) (-15 -1611 ((-639 (-2 (|:| -1510 (-639 |#2|)) (|:| -3964 |#1|))) |#2| |#2|)) (-15 -1635 ((-417 |#2|) |#2| |#1| (-112))) (-15 -1635 ((-417 |#2|) |#2| |#1|)) (-15 -1635 ((-417 |#2|) |#2|)) (-15 -3138 (|#2| |#2|)) (-15 -2247 (|#1| |#2|)) (-15 -3386 ((-417 |#2|) |#2| |#1| (-112))) (-15 -3386 ((-417 |#2|) |#2| |#1|)) (-15 -1907 (|#2| |#2|)) (-15 -1604 (|#1| |#2| |#1|)) (-15 -1604 (|#1| |#2|)) (-15 -3100 ((-168 |#1|) |#2|)) (-15 -2804 (|#1| |#1|)) (-15 -4290 ((-2 (|:| |start| |#2|) (|:| -1510 (-417 |#2|))) |#2|)))
-((-3869 (((-3 |#2| "failed") |#2|) 14)) (-1908 (((-766) |#2|) 16)) (-3549 ((|#2| |#2| |#2|) 18)))
-(((-181 |#1| |#2|) (-10 -7 (-15 -3869 ((-3 |#2| "failed") |#2|)) (-15 -1908 ((-766) |#2|)) (-15 -3549 (|#2| |#2| |#2|))) (-1207) (-668 |#1|)) (T -181))
-((-3549 (*1 *2 *2 *2) (-12 (-4 *3 (-1207)) (-5 *1 (-181 *3 *2)) (-4 *2 (-668 *3)))) (-1908 (*1 *2 *3) (-12 (-4 *4 (-1207)) (-5 *2 (-766)) (-5 *1 (-181 *4 *3)) (-4 *3 (-668 *4)))) (-3869 (*1 *2 *2) (|partial| -12 (-4 *3 (-1207)) (-5 *1 (-181 *3 *2)) (-4 *2 (-668 *3)))))
-(-10 -7 (-15 -3869 ((-3 |#2| "failed") |#2|)) (-15 -1908 ((-766) |#2|)) (-15 -3549 (|#2| |#2| |#2|)))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1876 (((-186) $) 7)) (-4054 (((-857) $) 14)) (-3433 (((-639 (-1173)) $) 10)) (-1731 (((-112) $ $) 12)))
-(((-182) (-13 (-1092) (-10 -8 (-15 -1876 ((-186) $)) (-15 -3433 ((-639 (-1173)) $))))) (T -182))
-((-1876 (*1 *2 *1) (-12 (-5 *2 (-186)) (-5 *1 (-182)))) (-3433 (*1 *2 *1) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-182)))))
-(-13 (-1092) (-10 -8 (-15 -1876 ((-186) $)) (-15 -3433 ((-639 (-1173)) $))))
-((-2421 (((-185) $) 8)) (-3212 (((-639 (-112)) $) 13)) (-3087 (((-55) $) 10)))
-(((-183 |#1|) (-10 -8 (-15 -3212 ((-639 (-112)) |#1|)) (-15 -2421 ((-185) |#1|)) (-15 -3087 ((-55) |#1|))) (-184)) (T -183))
-NIL
-(-10 -8 (-15 -3212 ((-639 (-112)) |#1|)) (-15 -2421 ((-185) |#1|)) (-15 -3087 ((-55) |#1|)))
-((-4041 (((-112) $ $) 7)) (-3254 (((-505) $) 14)) (-2913 (((-1150) $) 9)) (-2421 (((-185) $) 18)) (-1709 (((-1112) $) 10)) (-3212 (((-639 (-112)) $) 17)) (-4054 (((-857) $) 11)) (-3087 (((-55) $) 13)) (-1731 (((-112) $ $) 6)))
+((-1451 (((-2 (|:| |start| |#2|) (|:| -2656 (-417 |#2|))) |#2|) 61)) (-2047 ((|#1| |#1|) 54)) (-2893 (((-168 |#1|) |#2|) 84)) (-2242 ((|#1| |#2|) 124) ((|#1| |#2| |#1|) 82)) (-2071 ((|#2| |#2|) 83)) (-3785 (((-417 |#2|) |#2| |#1|) 114) (((-417 |#2|) |#2| |#1| (-112)) 81)) (-4363 ((|#1| |#2|) 113)) (-3226 ((|#2| |#2|) 120)) (-1635 (((-417 |#2|) |#2|) 135) (((-417 |#2|) |#2| |#1|) 32) (((-417 |#2|) |#2| |#1| (-112)) 134)) (-4115 (((-639 (-2 (|:| -2656 (-639 |#2|)) (|:| -3964 |#1|))) |#2| |#2|) 133) (((-639 (-2 (|:| -2656 (-639 |#2|)) (|:| -3964 |#1|))) |#2| |#2| (-112)) 76)) (-1318 (((-639 (-168 |#1|)) |#2| |#1|) 40) (((-639 (-168 |#1|)) |#2|) 41)))
+(((-180 |#1| |#2|) (-10 -7 (-15 -1318 ((-639 (-168 |#1|)) |#2|)) (-15 -1318 ((-639 (-168 |#1|)) |#2| |#1|)) (-15 -4115 ((-639 (-2 (|:| -2656 (-639 |#2|)) (|:| -3964 |#1|))) |#2| |#2| (-112))) (-15 -4115 ((-639 (-2 (|:| -2656 (-639 |#2|)) (|:| -3964 |#1|))) |#2| |#2|)) (-15 -1635 ((-417 |#2|) |#2| |#1| (-112))) (-15 -1635 ((-417 |#2|) |#2| |#1|)) (-15 -1635 ((-417 |#2|) |#2|)) (-15 -3226 (|#2| |#2|)) (-15 -4363 (|#1| |#2|)) (-15 -3785 ((-417 |#2|) |#2| |#1| (-112))) (-15 -3785 ((-417 |#2|) |#2| |#1|)) (-15 -2071 (|#2| |#2|)) (-15 -2242 (|#1| |#2| |#1|)) (-15 -2242 (|#1| |#2|)) (-15 -2893 ((-168 |#1|) |#2|)) (-15 -2047 (|#1| |#1|)) (-15 -1451 ((-2 (|:| |start| |#2|) (|:| -2656 (-417 |#2|))) |#2|))) (-13 (-362) (-843)) (-1232 (-168 |#1|))) (T -180))
+((-1451 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-2 (|:| |start| *3) (|:| -2656 (-417 *3)))) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-2047 (*1 *2 *2) (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3)) (-4 *3 (-1232 (-168 *2))))) (-2893 (*1 *2 *3) (-12 (-5 *2 (-168 *4)) (-5 *1 (-180 *4 *3)) (-4 *4 (-13 (-362) (-843))) (-4 *3 (-1232 *2)))) (-2242 (*1 *2 *3) (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3)) (-4 *3 (-1232 (-168 *2))))) (-2242 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3)) (-4 *3 (-1232 (-168 *2))))) (-2071 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-843))) (-5 *1 (-180 *3 *2)) (-4 *2 (-1232 (-168 *3))))) (-3785 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3)) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-3785 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3)) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-4363 (*1 *2 *3) (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3)) (-4 *3 (-1232 (-168 *2))))) (-3226 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-843))) (-5 *1 (-180 *3 *2)) (-4 *2 (-1232 (-168 *3))))) (-1635 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3)) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-1635 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3)) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-1635 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3)) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-4115 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-639 (-2 (|:| -2656 (-639 *3)) (|:| -3964 *4)))) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-4115 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-362) (-843))) (-5 *2 (-639 (-2 (|:| -2656 (-639 *3)) (|:| -3964 *5)))) (-5 *1 (-180 *5 *3)) (-4 *3 (-1232 (-168 *5))))) (-1318 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-639 (-168 *4))) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))) (-1318 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-639 (-168 *4))) (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))))
+(-10 -7 (-15 -1318 ((-639 (-168 |#1|)) |#2|)) (-15 -1318 ((-639 (-168 |#1|)) |#2| |#1|)) (-15 -4115 ((-639 (-2 (|:| -2656 (-639 |#2|)) (|:| -3964 |#1|))) |#2| |#2| (-112))) (-15 -4115 ((-639 (-2 (|:| -2656 (-639 |#2|)) (|:| -3964 |#1|))) |#2| |#2|)) (-15 -1635 ((-417 |#2|) |#2| |#1| (-112))) (-15 -1635 ((-417 |#2|) |#2| |#1|)) (-15 -1635 ((-417 |#2|) |#2|)) (-15 -3226 (|#2| |#2|)) (-15 -4363 (|#1| |#2|)) (-15 -3785 ((-417 |#2|) |#2| |#1| (-112))) (-15 -3785 ((-417 |#2|) |#2| |#1|)) (-15 -2071 (|#2| |#2|)) (-15 -2242 (|#1| |#2| |#1|)) (-15 -2242 (|#1| |#2|)) (-15 -2893 ((-168 |#1|) |#2|)) (-15 -2047 (|#1| |#1|)) (-15 -1451 ((-2 (|:| |start| |#2|) (|:| -2656 (-417 |#2|))) |#2|)))
+((-1866 (((-3 |#2| "failed") |#2|) 14)) (-2082 (((-766) |#2|) 16)) (-1770 ((|#2| |#2| |#2|) 18)))
+(((-181 |#1| |#2|) (-10 -7 (-15 -1866 ((-3 |#2| "failed") |#2|)) (-15 -2082 ((-766) |#2|)) (-15 -1770 (|#2| |#2| |#2|))) (-1207) (-668 |#1|)) (T -181))
+((-1770 (*1 *2 *2 *2) (-12 (-4 *3 (-1207)) (-5 *1 (-181 *3 *2)) (-4 *2 (-668 *3)))) (-2082 (*1 *2 *3) (-12 (-4 *4 (-1207)) (-5 *2 (-766)) (-5 *1 (-181 *4 *3)) (-4 *3 (-668 *4)))) (-1866 (*1 *2 *2) (|partial| -12 (-4 *3 (-1207)) (-5 *1 (-181 *3 *2)) (-4 *2 (-668 *3)))))
+(-10 -7 (-15 -1866 ((-3 |#2| "failed") |#2|)) (-15 -2082 ((-766) |#2|)) (-15 -1770 (|#2| |#2| |#2|)))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1875 (((-186) $) 7)) (-4053 (((-857) $) 14)) (-3433 (((-639 (-1173)) $) 10)) (-1733 (((-112) $ $) 12)))
+(((-182) (-13 (-1092) (-10 -8 (-15 -1875 ((-186) $)) (-15 -3433 ((-639 (-1173)) $))))) (T -182))
+((-1875 (*1 *2 *1) (-12 (-5 *2 (-186)) (-5 *1 (-182)))) (-3433 (*1 *2 *1) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-182)))))
+(-13 (-1092) (-10 -8 (-15 -1875 ((-186) $)) (-15 -3433 ((-639 (-1173)) $))))
+((-3360 (((-639 (-860)) $) 16)) (-2420 (((-185) $) 8)) (-2760 (((-639 (-112)) $) 13)) (-3975 (((-55) $) 10)))
+(((-183 |#1|) (-10 -8 (-15 -3360 ((-639 (-860)) |#1|)) (-15 -2760 ((-639 (-112)) |#1|)) (-15 -2420 ((-185) |#1|)) (-15 -3975 ((-55) |#1|))) (-184)) (T -183))
+NIL
+(-10 -8 (-15 -3360 ((-639 (-860)) |#1|)) (-15 -2760 ((-639 (-112)) |#1|)) (-15 -2420 ((-185) |#1|)) (-15 -3975 ((-55) |#1|)))
+((-4041 (((-112) $ $) 7)) (-3360 (((-639 (-860)) $) 17)) (-3253 (((-505) $) 14)) (-3696 (((-1150) $) 9)) (-2420 (((-185) $) 19)) (-1709 (((-1112) $) 10)) (-2760 (((-639 (-112)) $) 18)) (-4053 (((-857) $) 11)) (-3975 (((-55) $) 13)) (-1733 (((-112) $ $) 6)))
(((-184) (-139)) (T -184))
-((-2421 (*1 *2 *1) (-12 (-4 *1 (-184)) (-5 *2 (-185)))) (-3212 (*1 *2 *1) (-12 (-4 *1 (-184)) (-5 *2 (-639 (-112))))))
-(-13 (-830 (-505)) (-10 -8 (-15 -2421 ((-185) $)) (-15 -3212 ((-639 (-112)) $))))
+((-2420 (*1 *2 *1) (-12 (-4 *1 (-184)) (-5 *2 (-185)))) (-2760 (*1 *2 *1) (-12 (-4 *1 (-184)) (-5 *2 (-639 (-112))))) (-3360 (*1 *2 *1) (-12 (-4 *1 (-184)) (-5 *2 (-639 (-860))))))
+(-13 (-830 (-505)) (-10 -8 (-15 -2420 ((-185) $)) (-15 -2760 ((-639 (-112)) $)) (-15 -3360 ((-639 (-860)) $))))
(((-102) . T) ((-609 (-857)) . T) ((-830 (-505)) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-7 (($) 8 T CONST)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-8 (($) 7 T CONST)) (-4054 (((-857) $) 12)) (-9 (($) 6 T CONST)) (-1731 (((-112) $ $) 10)))
+((-4041 (((-112) $ $) NIL)) (-7 (($) 8 T CONST)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-8 (($) 7 T CONST)) (-4053 (((-857) $) 12)) (-9 (($) 6 T CONST)) (-1733 (((-112) $ $) 10)))
(((-185) (-13 (-1092) (-10 -8 (-15 -9 ($) -1497) (-15 -8 ($) -1497) (-15 -7 ($) -1497)))) (T -185))
((-9 (*1 *1) (-5 *1 (-185))) (-8 (*1 *1) (-5 *1 (-185))) (-7 (*1 *1) (-5 *1 (-185))))
(-13 (-1092) (-10 -8 (-15 -9 ($) -1497) (-15 -8 ($) -1497) (-15 -7 ($) -1497)))
-((-4041 (((-112) $ $) NIL)) (-3254 (((-505) $) 8)) (-2913 (((-1150) $) NIL)) (-2421 (((-185) $) 10)) (-1709 (((-1112) $) NIL)) (-3452 (((-685 $) (-1168)) 18)) (-3212 (((-639 (-112)) $) NIL)) (-4054 (((-857) $) NIL)) (-3087 (((-55) $) 12)) (-1731 (((-112) $ $) NIL)))
-(((-186) (-13 (-184) (-10 -8 (-15 -3452 ((-685 $) (-1168)))))) (T -186))
-((-3452 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-685 (-186))) (-5 *1 (-186)))))
-(-13 (-184) (-10 -8 (-15 -3452 ((-685 $) (-1168)))))
-((-1675 ((|#2| |#2|) 28)) (-3263 (((-112) |#2|) 19)) (-1657 (((-315 |#1|) |#2|) 12)) (-1670 (((-315 |#1|) |#2|) 14)) (-3487 ((|#2| |#2| (-1168)) 68) ((|#2| |#2|) 69)) (-1905 (((-168 (-315 |#1|)) |#2|) 10)) (-1984 ((|#2| |#2| (-1168)) 65) ((|#2| |#2|) 59)))
-(((-187 |#1| |#2|) (-10 -7 (-15 -3487 (|#2| |#2|)) (-15 -3487 (|#2| |#2| (-1168))) (-15 -1984 (|#2| |#2|)) (-15 -1984 (|#2| |#2| (-1168))) (-15 -1657 ((-315 |#1|) |#2|)) (-15 -1670 ((-315 |#1|) |#2|)) (-15 -3263 ((-112) |#2|)) (-15 -1675 (|#2| |#2|)) (-15 -1905 ((-168 (-315 |#1|)) |#2|))) (-13 (-554) (-845) (-1033 (-562))) (-13 (-27) (-1192) (-429 (-168 |#1|)))) (T -187))
-((-1905 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-168 (-315 *4))) (-5 *1 (-187 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 (-168 *4)))))) (-1675 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *3)))))) (-3263 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-112)) (-5 *1 (-187 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 (-168 *4)))))) (-1670 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-315 *4)) (-5 *1 (-187 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 (-168 *4)))))) (-1657 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-315 *4)) (-5 *1 (-187 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 (-168 *4)))))) (-1984 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *4)))))) (-1984 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *3)))))) (-3487 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *4)))))) (-3487 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *3)))))))
-(-10 -7 (-15 -3487 (|#2| |#2|)) (-15 -3487 (|#2| |#2| (-1168))) (-15 -1984 (|#2| |#2|)) (-15 -1984 (|#2| |#2| (-1168))) (-15 -1657 ((-315 |#1|) |#2|)) (-15 -1670 ((-315 |#1|) |#2|)) (-15 -3263 ((-112) |#2|)) (-15 -1675 (|#2| |#2|)) (-15 -1905 ((-168 (-315 |#1|)) |#2|)))
-((-2861 (((-1256 (-683 (-947 |#1|))) (-1256 (-683 |#1|))) 24)) (-4054 (((-1256 (-683 (-406 (-947 |#1|)))) (-1256 (-683 |#1|))) 33)))
-(((-188 |#1|) (-10 -7 (-15 -2861 ((-1256 (-683 (-947 |#1|))) (-1256 (-683 |#1|)))) (-15 -4054 ((-1256 (-683 (-406 (-947 |#1|)))) (-1256 (-683 |#1|))))) (-171)) (T -188))
-((-4054 (*1 *2 *3) (-12 (-5 *3 (-1256 (-683 *4))) (-4 *4 (-171)) (-5 *2 (-1256 (-683 (-406 (-947 *4))))) (-5 *1 (-188 *4)))) (-2861 (*1 *2 *3) (-12 (-5 *3 (-1256 (-683 *4))) (-4 *4 (-171)) (-5 *2 (-1256 (-683 (-947 *4)))) (-5 *1 (-188 *4)))))
-(-10 -7 (-15 -2861 ((-1256 (-683 (-947 |#1|))) (-1256 (-683 |#1|)))) (-15 -4054 ((-1256 (-683 (-406 (-947 |#1|)))) (-1256 (-683 |#1|)))))
-((-3304 (((-1170 (-406 (-562))) (-1170 (-406 (-562))) (-1170 (-406 (-562)))) 66)) (-3776 (((-1170 (-406 (-562))) (-639 (-562)) (-639 (-562))) 75)) (-4304 (((-1170 (-406 (-562))) (-562)) 40)) (-2789 (((-1170 (-406 (-562))) (-562)) 52)) (-1433 (((-406 (-562)) (-1170 (-406 (-562)))) 62)) (-3980 (((-1170 (-406 (-562))) (-562)) 32)) (-3255 (((-1170 (-406 (-562))) (-562)) 48)) (-2558 (((-1170 (-406 (-562))) (-562)) 46)) (-1474 (((-1170 (-406 (-562))) (-1170 (-406 (-562))) (-1170 (-406 (-562)))) 60)) (-2256 (((-1170 (-406 (-562))) (-562)) 25)) (-2807 (((-406 (-562)) (-1170 (-406 (-562))) (-1170 (-406 (-562)))) 64)) (-3632 (((-1170 (-406 (-562))) (-562)) 30)) (-1964 (((-1170 (-406 (-562))) (-639 (-562))) 72)))
-(((-189) (-10 -7 (-15 -2256 ((-1170 (-406 (-562))) (-562))) (-15 -4304 ((-1170 (-406 (-562))) (-562))) (-15 -3980 ((-1170 (-406 (-562))) (-562))) (-15 -3632 ((-1170 (-406 (-562))) (-562))) (-15 -2558 ((-1170 (-406 (-562))) (-562))) (-15 -3255 ((-1170 (-406 (-562))) (-562))) (-15 -2789 ((-1170 (-406 (-562))) (-562))) (-15 -2807 ((-406 (-562)) (-1170 (-406 (-562))) (-1170 (-406 (-562))))) (-15 -1474 ((-1170 (-406 (-562))) (-1170 (-406 (-562))) (-1170 (-406 (-562))))) (-15 -1433 ((-406 (-562)) (-1170 (-406 (-562))))) (-15 -3304 ((-1170 (-406 (-562))) (-1170 (-406 (-562))) (-1170 (-406 (-562))))) (-15 -1964 ((-1170 (-406 (-562))) (-639 (-562)))) (-15 -3776 ((-1170 (-406 (-562))) (-639 (-562)) (-639 (-562)))))) (T -189))
-((-3776 (*1 *2 *3 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)))) (-1964 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)))) (-3304 (*1 *2 *2 *2) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)))) (-1433 (*1 *2 *3) (-12 (-5 *3 (-1170 (-406 (-562)))) (-5 *2 (-406 (-562))) (-5 *1 (-189)))) (-1474 (*1 *2 *2 *2) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)))) (-2807 (*1 *2 *3 *3) (-12 (-5 *3 (-1170 (-406 (-562)))) (-5 *2 (-406 (-562))) (-5 *1 (-189)))) (-2789 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))) (-3255 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))) (-2558 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))) (-3632 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))) (-3980 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))) (-4304 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))) (-2256 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))))
-(-10 -7 (-15 -2256 ((-1170 (-406 (-562))) (-562))) (-15 -4304 ((-1170 (-406 (-562))) (-562))) (-15 -3980 ((-1170 (-406 (-562))) (-562))) (-15 -3632 ((-1170 (-406 (-562))) (-562))) (-15 -2558 ((-1170 (-406 (-562))) (-562))) (-15 -3255 ((-1170 (-406 (-562))) (-562))) (-15 -2789 ((-1170 (-406 (-562))) (-562))) (-15 -2807 ((-406 (-562)) (-1170 (-406 (-562))) (-1170 (-406 (-562))))) (-15 -1474 ((-1170 (-406 (-562))) (-1170 (-406 (-562))) (-1170 (-406 (-562))))) (-15 -1433 ((-406 (-562)) (-1170 (-406 (-562))))) (-15 -3304 ((-1170 (-406 (-562))) (-1170 (-406 (-562))) (-1170 (-406 (-562))))) (-15 -1964 ((-1170 (-406 (-562))) (-639 (-562)))) (-15 -3776 ((-1170 (-406 (-562))) (-639 (-562)) (-639 (-562)))))
-((-3459 (((-417 (-1164 (-562))) (-562)) 28)) (-3706 (((-639 (-1164 (-562))) (-562)) 23)) (-2601 (((-1164 (-562)) (-562)) 21)))
-(((-190) (-10 -7 (-15 -3706 ((-639 (-1164 (-562))) (-562))) (-15 -2601 ((-1164 (-562)) (-562))) (-15 -3459 ((-417 (-1164 (-562))) (-562))))) (T -190))
-((-3459 (*1 *2 *3) (-12 (-5 *2 (-417 (-1164 (-562)))) (-5 *1 (-190)) (-5 *3 (-562)))) (-2601 (*1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-190)) (-5 *3 (-562)))) (-3706 (*1 *2 *3) (-12 (-5 *2 (-639 (-1164 (-562)))) (-5 *1 (-190)) (-5 *3 (-562)))))
-(-10 -7 (-15 -3706 ((-639 (-1164 (-562))) (-562))) (-15 -2601 ((-1164 (-562)) (-562))) (-15 -3459 ((-417 (-1164 (-562))) (-562))))
-((-4163 (((-1148 (-224)) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 103)) (-2932 (((-639 (-1150)) (-1148 (-224))) NIL)) (-3015 (((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 79)) (-2025 (((-639 (-224)) (-315 (-224)) (-1168) (-1086 (-838 (-224)))) NIL)) (-3843 (((-639 (-1150)) (-639 (-224))) NIL)) (-2575 (((-224) (-1086 (-838 (-224)))) 24)) (-2300 (((-224) (-1086 (-838 (-224)))) 25)) (-1641 (((-378) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 96)) (-1739 (((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 42)) (-2590 (((-1150) (-224)) NIL)) (-3428 (((-1150) (-639 (-1150))) 20)) (-3890 (((-1030) (-1168) (-1168) (-1030)) 13)))
-(((-191) (-10 -7 (-15 -3015 ((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -1739 ((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2575 ((-224) (-1086 (-838 (-224))))) (-15 -2300 ((-224) (-1086 (-838 (-224))))) (-15 -1641 ((-378) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2025 ((-639 (-224)) (-315 (-224)) (-1168) (-1086 (-838 (-224))))) (-15 -4163 ((-1148 (-224)) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2590 ((-1150) (-224))) (-15 -3843 ((-639 (-1150)) (-639 (-224)))) (-15 -2932 ((-639 (-1150)) (-1148 (-224)))) (-15 -3428 ((-1150) (-639 (-1150)))) (-15 -3890 ((-1030) (-1168) (-1168) (-1030))))) (T -191))
-((-3890 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1030)) (-5 *3 (-1168)) (-5 *1 (-191)))) (-3428 (*1 *2 *3) (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1150)) (-5 *1 (-191)))) (-2932 (*1 *2 *3) (-12 (-5 *3 (-1148 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-191)))) (-3843 (*1 *2 *3) (-12 (-5 *3 (-639 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-191)))) (-2590 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1150)) (-5 *1 (-191)))) (-4163 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-191)))) (-2025 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-315 (-224))) (-5 *4 (-1168)) (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-191)))) (-1641 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-378)) (-5 *1 (-191)))) (-2300 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-191)))) (-2575 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-191)))) (-1739 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (-5 *1 (-191)))) (-3015 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))) (-5 *1 (-191)))))
-(-10 -7 (-15 -3015 ((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -1739 ((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2575 ((-224) (-1086 (-838 (-224))))) (-15 -2300 ((-224) (-1086 (-838 (-224))))) (-15 -1641 ((-378) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2025 ((-639 (-224)) (-315 (-224)) (-1168) (-1086 (-838 (-224))))) (-15 -4163 ((-1148 (-224)) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2590 ((-1150) (-224))) (-15 -3843 ((-639 (-1150)) (-639 (-224)))) (-15 -2932 ((-639 (-1150)) (-1148 (-224)))) (-15 -3428 ((-1150) (-639 (-1150)))) (-15 -3890 ((-1030) (-1168) (-1168) (-1030))))
-((-4041 (((-112) $ $) NIL)) (-3561 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 55) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 32) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-3360 (((-639 (-860)) $) NIL)) (-3253 (((-505) $) 8)) (-3696 (((-1150) $) NIL)) (-2420 (((-185) $) 10)) (-1709 (((-1112) $) NIL)) (-3209 (((-685 $) (-1168)) 18)) (-2760 (((-639 (-112)) $) NIL)) (-4053 (((-857) $) NIL)) (-3975 (((-55) $) 12)) (-1733 (((-112) $ $) NIL)))
+(((-186) (-13 (-184) (-10 -8 (-15 -3209 ((-685 $) (-1168)))))) (T -186))
+((-3209 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-685 (-186))) (-5 *1 (-186)))))
+(-13 (-184) (-10 -8 (-15 -3209 ((-685 $) (-1168)))))
+((-3456 ((|#2| |#2|) 28)) (-2091 (((-112) |#2|) 19)) (-1657 (((-315 |#1|) |#2|) 12)) (-1670 (((-315 |#1|) |#2|) 14)) (-2402 ((|#2| |#2| (-1168)) 68) ((|#2| |#2|) 69)) (-2050 (((-168 (-315 |#1|)) |#2|) 10)) (-1553 ((|#2| |#2| (-1168)) 65) ((|#2| |#2|) 59)))
+(((-187 |#1| |#2|) (-10 -7 (-15 -2402 (|#2| |#2|)) (-15 -2402 (|#2| |#2| (-1168))) (-15 -1553 (|#2| |#2|)) (-15 -1553 (|#2| |#2| (-1168))) (-15 -1657 ((-315 |#1|) |#2|)) (-15 -1670 ((-315 |#1|) |#2|)) (-15 -2091 ((-112) |#2|)) (-15 -3456 (|#2| |#2|)) (-15 -2050 ((-168 (-315 |#1|)) |#2|))) (-13 (-554) (-845) (-1033 (-562))) (-13 (-27) (-1192) (-429 (-168 |#1|)))) (T -187))
+((-2050 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-168 (-315 *4))) (-5 *1 (-187 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 (-168 *4)))))) (-3456 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *3)))))) (-2091 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-112)) (-5 *1 (-187 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 (-168 *4)))))) (-1670 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-315 *4)) (-5 *1 (-187 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 (-168 *4)))))) (-1657 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-315 *4)) (-5 *1 (-187 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 (-168 *4)))))) (-1553 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *4)))))) (-1553 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *3)))))) (-2402 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *4)))))) (-2402 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *3)))))))
+(-10 -7 (-15 -2402 (|#2| |#2|)) (-15 -2402 (|#2| |#2| (-1168))) (-15 -1553 (|#2| |#2|)) (-15 -1553 (|#2| |#2| (-1168))) (-15 -1657 ((-315 |#1|) |#2|)) (-15 -1670 ((-315 |#1|) |#2|)) (-15 -2091 ((-112) |#2|)) (-15 -3456 (|#2| |#2|)) (-15 -2050 ((-168 (-315 |#1|)) |#2|)))
+((-1317 (((-1256 (-683 (-947 |#1|))) (-1256 (-683 |#1|))) 24)) (-4053 (((-1256 (-683 (-406 (-947 |#1|)))) (-1256 (-683 |#1|))) 33)))
+(((-188 |#1|) (-10 -7 (-15 -1317 ((-1256 (-683 (-947 |#1|))) (-1256 (-683 |#1|)))) (-15 -4053 ((-1256 (-683 (-406 (-947 |#1|)))) (-1256 (-683 |#1|))))) (-171)) (T -188))
+((-4053 (*1 *2 *3) (-12 (-5 *3 (-1256 (-683 *4))) (-4 *4 (-171)) (-5 *2 (-1256 (-683 (-406 (-947 *4))))) (-5 *1 (-188 *4)))) (-1317 (*1 *2 *3) (-12 (-5 *3 (-1256 (-683 *4))) (-4 *4 (-171)) (-5 *2 (-1256 (-683 (-947 *4)))) (-5 *1 (-188 *4)))))
+(-10 -7 (-15 -1317 ((-1256 (-683 (-947 |#1|))) (-1256 (-683 |#1|)))) (-15 -4053 ((-1256 (-683 (-406 (-947 |#1|)))) (-1256 (-683 |#1|)))))
+((-4271 (((-1170 (-406 (-562))) (-1170 (-406 (-562))) (-1170 (-406 (-562)))) 66)) (-3348 (((-1170 (-406 (-562))) (-639 (-562)) (-639 (-562))) 75)) (-1629 (((-1170 (-406 (-562))) (-562)) 40)) (-1880 (((-1170 (-406 (-562))) (-562)) 52)) (-1433 (((-406 (-562)) (-1170 (-406 (-562)))) 62)) (-1728 (((-1170 (-406 (-562))) (-562)) 32)) (-1998 (((-1170 (-406 (-562))) (-562)) 48)) (-1310 (((-1170 (-406 (-562))) (-562)) 46)) (-2434 (((-1170 (-406 (-562))) (-1170 (-406 (-562))) (-1170 (-406 (-562)))) 60)) (-1345 (((-1170 (-406 (-562))) (-562)) 25)) (-2080 (((-406 (-562)) (-1170 (-406 (-562))) (-1170 (-406 (-562)))) 64)) (-1292 (((-1170 (-406 (-562))) (-562)) 30)) (-1339 (((-1170 (-406 (-562))) (-639 (-562))) 72)))
+(((-189) (-10 -7 (-15 -1345 ((-1170 (-406 (-562))) (-562))) (-15 -1629 ((-1170 (-406 (-562))) (-562))) (-15 -1728 ((-1170 (-406 (-562))) (-562))) (-15 -1292 ((-1170 (-406 (-562))) (-562))) (-15 -1310 ((-1170 (-406 (-562))) (-562))) (-15 -1998 ((-1170 (-406 (-562))) (-562))) (-15 -1880 ((-1170 (-406 (-562))) (-562))) (-15 -2080 ((-406 (-562)) (-1170 (-406 (-562))) (-1170 (-406 (-562))))) (-15 -2434 ((-1170 (-406 (-562))) (-1170 (-406 (-562))) (-1170 (-406 (-562))))) (-15 -1433 ((-406 (-562)) (-1170 (-406 (-562))))) (-15 -4271 ((-1170 (-406 (-562))) (-1170 (-406 (-562))) (-1170 (-406 (-562))))) (-15 -1339 ((-1170 (-406 (-562))) (-639 (-562)))) (-15 -3348 ((-1170 (-406 (-562))) (-639 (-562)) (-639 (-562)))))) (T -189))
+((-3348 (*1 *2 *3 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)))) (-1339 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)))) (-4271 (*1 *2 *2 *2) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)))) (-1433 (*1 *2 *3) (-12 (-5 *3 (-1170 (-406 (-562)))) (-5 *2 (-406 (-562))) (-5 *1 (-189)))) (-2434 (*1 *2 *2 *2) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)))) (-2080 (*1 *2 *3 *3) (-12 (-5 *3 (-1170 (-406 (-562)))) (-5 *2 (-406 (-562))) (-5 *1 (-189)))) (-1880 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))) (-1998 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))) (-1310 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))) (-1292 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))) (-1728 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))) (-1629 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))) (-1345 (*1 *2 *3) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))))
+(-10 -7 (-15 -1345 ((-1170 (-406 (-562))) (-562))) (-15 -1629 ((-1170 (-406 (-562))) (-562))) (-15 -1728 ((-1170 (-406 (-562))) (-562))) (-15 -1292 ((-1170 (-406 (-562))) (-562))) (-15 -1310 ((-1170 (-406 (-562))) (-562))) (-15 -1998 ((-1170 (-406 (-562))) (-562))) (-15 -1880 ((-1170 (-406 (-562))) (-562))) (-15 -2080 ((-406 (-562)) (-1170 (-406 (-562))) (-1170 (-406 (-562))))) (-15 -2434 ((-1170 (-406 (-562))) (-1170 (-406 (-562))) (-1170 (-406 (-562))))) (-15 -1433 ((-406 (-562)) (-1170 (-406 (-562))))) (-15 -4271 ((-1170 (-406 (-562))) (-1170 (-406 (-562))) (-1170 (-406 (-562))))) (-15 -1339 ((-1170 (-406 (-562))) (-639 (-562)))) (-15 -3348 ((-1170 (-406 (-562))) (-639 (-562)) (-639 (-562)))))
+((-3285 (((-417 (-1164 (-562))) (-562)) 28)) (-3910 (((-639 (-1164 (-562))) (-562)) 23)) (-3612 (((-1164 (-562)) (-562)) 21)))
+(((-190) (-10 -7 (-15 -3910 ((-639 (-1164 (-562))) (-562))) (-15 -3612 ((-1164 (-562)) (-562))) (-15 -3285 ((-417 (-1164 (-562))) (-562))))) (T -190))
+((-3285 (*1 *2 *3) (-12 (-5 *2 (-417 (-1164 (-562)))) (-5 *1 (-190)) (-5 *3 (-562)))) (-3612 (*1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-190)) (-5 *3 (-562)))) (-3910 (*1 *2 *3) (-12 (-5 *2 (-639 (-1164 (-562)))) (-5 *1 (-190)) (-5 *3 (-562)))))
+(-10 -7 (-15 -3910 ((-639 (-1164 (-562))) (-562))) (-15 -3612 ((-1164 (-562)) (-562))) (-15 -3285 ((-417 (-1164 (-562))) (-562))))
+((-2748 (((-1148 (-224)) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 103)) (-3906 (((-639 (-1150)) (-1148 (-224))) NIL)) (-3420 (((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 79)) (-3837 (((-639 (-224)) (-315 (-224)) (-1168) (-1086 (-838 (-224)))) NIL)) (-2793 (((-639 (-1150)) (-639 (-224))) NIL)) (-1516 (((-224) (-1086 (-838 (-224)))) 24)) (-3628 (((-224) (-1086 (-838 (-224)))) 25)) (-1295 (((-378) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 96)) (-4043 (((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 42)) (-1682 (((-1150) (-224)) NIL)) (-2975 (((-1150) (-639 (-1150))) 20)) (-2103 (((-1030) (-1168) (-1168) (-1030)) 13)))
+(((-191) (-10 -7 (-15 -3420 ((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4043 ((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -1516 ((-224) (-1086 (-838 (-224))))) (-15 -3628 ((-224) (-1086 (-838 (-224))))) (-15 -1295 ((-378) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3837 ((-639 (-224)) (-315 (-224)) (-1168) (-1086 (-838 (-224))))) (-15 -2748 ((-1148 (-224)) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -1682 ((-1150) (-224))) (-15 -2793 ((-639 (-1150)) (-639 (-224)))) (-15 -3906 ((-639 (-1150)) (-1148 (-224)))) (-15 -2975 ((-1150) (-639 (-1150)))) (-15 -2103 ((-1030) (-1168) (-1168) (-1030))))) (T -191))
+((-2103 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1030)) (-5 *3 (-1168)) (-5 *1 (-191)))) (-2975 (*1 *2 *3) (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1150)) (-5 *1 (-191)))) (-3906 (*1 *2 *3) (-12 (-5 *3 (-1148 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-191)))) (-2793 (*1 *2 *3) (-12 (-5 *3 (-639 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-191)))) (-1682 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1150)) (-5 *1 (-191)))) (-2748 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-191)))) (-3837 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-315 (-224))) (-5 *4 (-1168)) (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-191)))) (-1295 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-378)) (-5 *1 (-191)))) (-3628 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-191)))) (-1516 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-191)))) (-4043 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (-5 *1 (-191)))) (-3420 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))) (-5 *1 (-191)))))
+(-10 -7 (-15 -3420 ((-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4043 ((-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated")) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -1516 ((-224) (-1086 (-838 (-224))))) (-15 -3628 ((-224) (-1086 (-838 (-224))))) (-15 -1295 ((-378) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3837 ((-639 (-224)) (-315 (-224)) (-1168) (-1086 (-838 (-224))))) (-15 -2748 ((-1148 (-224)) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -1682 ((-1150) (-224))) (-15 -2793 ((-639 (-1150)) (-639 (-224)))) (-15 -3906 ((-639 (-1150)) (-1148 (-224)))) (-15 -2975 ((-1150) (-639 (-1150)))) (-15 -2103 ((-1030) (-1168) (-1168) (-1030))))
+((-4041 (((-112) $ $) NIL)) (-1908 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 55) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 32) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-192) (-782)) (T -192))
NIL
(-782)
-((-4041 (((-112) $ $) NIL)) (-3561 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 60) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 41) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1908 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 60) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 41) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-193) (-782)) (T -193))
NIL
(-782)
-((-4041 (((-112) $ $) NIL)) (-3561 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 69) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 40) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1908 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 69) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 40) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-194) (-782)) (T -194))
NIL
(-782)
-((-4041 (((-112) $ $) NIL)) (-3561 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 56) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 34) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1908 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 56) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 34) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-195) (-782)) (T -195))
NIL
(-782)
-((-4041 (((-112) $ $) NIL)) (-3561 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 67) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 38) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1908 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 67) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 38) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-196) (-782)) (T -196))
NIL
(-782)
-((-4041 (((-112) $ $) NIL)) (-3561 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 73) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 36) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1908 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 73) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 36) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-197) (-782)) (T -197))
NIL
(-782)
-((-4041 (((-112) $ $) NIL)) (-3561 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 80) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 44) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1908 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 80) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 44) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-198) (-782)) (T -198))
NIL
(-782)
-((-4041 (((-112) $ $) NIL)) (-3561 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 70) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 40) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1908 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 70) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 40) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-199) (-782)) (T -199))
NIL
(-782)
-((-4041 (((-112) $ $) NIL)) (-3561 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 65)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 32)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1908 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 65)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 32)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-200) (-782)) (T -200))
NIL
(-782)
-((-4041 (((-112) $ $) NIL)) (-3561 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 63)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 34)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1908 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 63)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 34)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-201) (-782)) (T -201))
NIL
(-782)
-((-4041 (((-112) $ $) NIL)) (-3561 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 90) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 78) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1908 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 90) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 78) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-202) (-782)) (T -202))
NIL
(-782)
-((-2536 (((-3 (-2 (|:| -2431 (-114)) (|:| |w| (-224))) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 84)) (-3124 (((-562) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 42)) (-4357 (((-3 (-639 (-224)) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 73)))
-(((-203) (-10 -7 (-15 -2536 ((-3 (-2 (|:| -2431 (-114)) (|:| |w| (-224))) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4357 ((-3 (-639 (-224)) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3124 ((-562) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))) (T -203))
-((-3124 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-562)) (-5 *1 (-203)))) (-4357 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-203)))) (-2536 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| -2431 (-114)) (|:| |w| (-224)))) (-5 *1 (-203)))))
-(-10 -7 (-15 -2536 ((-3 (-2 (|:| -2431 (-114)) (|:| |w| (-224))) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4357 ((-3 (-639 (-224)) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3124 ((-562) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))
-((-2520 (((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 39)) (-3490 (((-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 128)) (-2745 (((-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))) (-683 (-315 (-224)))) 87)) (-3713 (((-378) (-683 (-315 (-224)))) 111)) (-4326 (((-683 (-315 (-224))) (-1256 (-315 (-224))) (-639 (-1168))) 108)) (-1466 (((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 30)) (-4382 (((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 43)) (-1433 (((-683 (-315 (-224))) (-683 (-315 (-224))) (-639 (-1168)) (-1256 (-315 (-224)))) 100)) (-1842 (((-378) (-378) (-639 (-378))) 105) (((-378) (-378) (-378)) 103)) (-2901 (((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 36)))
-(((-204) (-10 -7 (-15 -1842 ((-378) (-378) (-378))) (-15 -1842 ((-378) (-378) (-639 (-378)))) (-15 -3713 ((-378) (-683 (-315 (-224))))) (-15 -4326 ((-683 (-315 (-224))) (-1256 (-315 (-224))) (-639 (-1168)))) (-15 -1433 ((-683 (-315 (-224))) (-683 (-315 (-224))) (-639 (-1168)) (-1256 (-315 (-224))))) (-15 -2745 ((-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))) (-683 (-315 (-224))))) (-15 -3490 ((-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2520 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4382 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2901 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -1466 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))) (T -204))
-((-1466 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-378)) (-5 *1 (-204)))) (-2901 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-378)) (-5 *1 (-204)))) (-4382 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-378)) (-5 *1 (-204)))) (-2520 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-378)) (-5 *1 (-204)))) (-3490 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378)))) (-5 *1 (-204)))) (-2745 (*1 *2 *3) (-12 (-5 *3 (-683 (-315 (-224)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378)))) (-5 *1 (-204)))) (-1433 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-683 (-315 (-224)))) (-5 *3 (-639 (-1168))) (-5 *4 (-1256 (-315 (-224)))) (-5 *1 (-204)))) (-4326 (*1 *2 *3 *4) (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *4 (-639 (-1168))) (-5 *2 (-683 (-315 (-224)))) (-5 *1 (-204)))) (-3713 (*1 *2 *3) (-12 (-5 *3 (-683 (-315 (-224)))) (-5 *2 (-378)) (-5 *1 (-204)))) (-1842 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-378))) (-5 *2 (-378)) (-5 *1 (-204)))) (-1842 (*1 *2 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-204)))))
-(-10 -7 (-15 -1842 ((-378) (-378) (-378))) (-15 -1842 ((-378) (-378) (-639 (-378)))) (-15 -3713 ((-378) (-683 (-315 (-224))))) (-15 -4326 ((-683 (-315 (-224))) (-1256 (-315 (-224))) (-639 (-1168)))) (-15 -1433 ((-683 (-315 (-224))) (-683 (-315 (-224))) (-639 (-1168)) (-1256 (-315 (-224))))) (-15 -2745 ((-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))) (-683 (-315 (-224))))) (-15 -3490 ((-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2520 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4382 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2901 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -1466 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))
-((-4041 (((-112) $ $) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 41)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-3747 (((-1030) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 64)) (-1731 (((-112) $ $) NIL)))
+((-4186 (((-3 (-2 (|:| -2429 (-114)) (|:| |w| (-224))) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 84)) (-3088 (((-562) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 42)) (-3957 (((-3 (-639 (-224)) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 73)))
+(((-203) (-10 -7 (-15 -4186 ((-3 (-2 (|:| -2429 (-114)) (|:| |w| (-224))) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3957 ((-3 (-639 (-224)) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3088 ((-562) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))) (T -203))
+((-3088 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-562)) (-5 *1 (-203)))) (-3957 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-203)))) (-4186 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| -2429 (-114)) (|:| |w| (-224)))) (-5 *1 (-203)))))
+(-10 -7 (-15 -4186 ((-3 (-2 (|:| -2429 (-114)) (|:| |w| (-224))) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3957 ((-3 (-639 (-224)) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3088 ((-562) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))
+((-2214 (((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 39)) (-2431 (((-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 128)) (-2638 (((-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))) (-683 (-315 (-224)))) 87)) (-3990 (((-378) (-683 (-315 (-224)))) 111)) (-3648 (((-683 (-315 (-224))) (-1256 (-315 (-224))) (-639 (-1168))) 108)) (-2379 (((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 30)) (-4222 (((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 43)) (-1433 (((-683 (-315 (-224))) (-683 (-315 (-224))) (-639 (-1168)) (-1256 (-315 (-224)))) 100)) (-2594 (((-378) (-378) (-639 (-378))) 105) (((-378) (-378) (-378)) 103)) (-3585 (((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 36)))
+(((-204) (-10 -7 (-15 -2594 ((-378) (-378) (-378))) (-15 -2594 ((-378) (-378) (-639 (-378)))) (-15 -3990 ((-378) (-683 (-315 (-224))))) (-15 -3648 ((-683 (-315 (-224))) (-1256 (-315 (-224))) (-639 (-1168)))) (-15 -1433 ((-683 (-315 (-224))) (-683 (-315 (-224))) (-639 (-1168)) (-1256 (-315 (-224))))) (-15 -2638 ((-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))) (-683 (-315 (-224))))) (-15 -2431 ((-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2214 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4222 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3585 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2379 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))) (T -204))
+((-2379 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-378)) (-5 *1 (-204)))) (-3585 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-378)) (-5 *1 (-204)))) (-4222 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-378)) (-5 *1 (-204)))) (-2214 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-378)) (-5 *1 (-204)))) (-2431 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378)))) (-5 *1 (-204)))) (-2638 (*1 *2 *3) (-12 (-5 *3 (-683 (-315 (-224)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378)))) (-5 *1 (-204)))) (-1433 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-683 (-315 (-224)))) (-5 *3 (-639 (-1168))) (-5 *4 (-1256 (-315 (-224)))) (-5 *1 (-204)))) (-3648 (*1 *2 *3 *4) (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *4 (-639 (-1168))) (-5 *2 (-683 (-315 (-224)))) (-5 *1 (-204)))) (-3990 (*1 *2 *3) (-12 (-5 *3 (-683 (-315 (-224)))) (-5 *2 (-378)) (-5 *1 (-204)))) (-2594 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-378))) (-5 *2 (-378)) (-5 *1 (-204)))) (-2594 (*1 *2 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-204)))))
+(-10 -7 (-15 -2594 ((-378) (-378) (-378))) (-15 -2594 ((-378) (-378) (-639 (-378)))) (-15 -3990 ((-378) (-683 (-315 (-224))))) (-15 -3648 ((-683 (-315 (-224))) (-1256 (-315 (-224))) (-639 (-1168)))) (-15 -1433 ((-683 (-315 (-224))) (-683 (-315 (-224))) (-639 (-1168)) (-1256 (-315 (-224))))) (-15 -2638 ((-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))) (-683 (-315 (-224))))) (-15 -2431 ((-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2214 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4222 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3585 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2379 ((-378) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))
+((-4041 (((-112) $ $) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 41)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-3069 (((-1030) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 64)) (-1733 (((-112) $ $) NIL)))
(((-205) (-795)) (T -205))
NIL
(-795)
-((-4041 (((-112) $ $) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 41)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-3747 (((-1030) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 62)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 41)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-3069 (((-1030) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 62)) (-1733 (((-112) $ $) NIL)))
(((-206) (-795)) (T -206))
NIL
(-795)
-((-4041 (((-112) $ $) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 40)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-3747 (((-1030) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 66)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 40)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-3069 (((-1030) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 66)) (-1733 (((-112) $ $) NIL)))
(((-207) (-795)) (T -207))
NIL
(-795)
-((-4041 (((-112) $ $) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 46)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-3747 (((-1030) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 75)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 46)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-3069 (((-1030) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 75)) (-1733 (((-112) $ $) NIL)))
(((-208) (-795)) (T -208))
NIL
(-795)
-((-2852 (((-639 (-1168)) (-1168) (-766)) 23)) (-1673 (((-315 (-224)) (-315 (-224))) 31)) (-2139 (((-112) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 73)) (-1993 (((-112) (-224) (-224) (-639 (-315 (-224)))) 44)))
-(((-209) (-10 -7 (-15 -2852 ((-639 (-1168)) (-1168) (-766))) (-15 -1673 ((-315 (-224)) (-315 (-224)))) (-15 -1993 ((-112) (-224) (-224) (-639 (-315 (-224))))) (-15 -2139 ((-112) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))))))) (T -209))
-((-2139 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) (-5 *2 (-112)) (-5 *1 (-209)))) (-1993 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-639 (-315 (-224)))) (-5 *3 (-224)) (-5 *2 (-112)) (-5 *1 (-209)))) (-1673 (*1 *2 *2) (-12 (-5 *2 (-315 (-224))) (-5 *1 (-209)))) (-2852 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-5 *2 (-639 (-1168))) (-5 *1 (-209)) (-5 *3 (-1168)))))
-(-10 -7 (-15 -2852 ((-639 (-1168)) (-1168) (-766))) (-15 -1673 ((-315 (-224)) (-315 (-224)))) (-15 -1993 ((-112) (-224) (-224) (-639 (-315 (-224))))) (-15 -2139 ((-112) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))))))
-((-4041 (((-112) $ $) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 26)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-2165 (((-1030) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 57)) (-1731 (((-112) $ $) NIL)))
+((-2850 (((-639 (-1168)) (-1168) (-766)) 23)) (-3438 (((-315 (-224)) (-315 (-224))) 31)) (-2666 (((-112) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 73)) (-3490 (((-112) (-224) (-224) (-639 (-315 (-224)))) 44)))
+(((-209) (-10 -7 (-15 -2850 ((-639 (-1168)) (-1168) (-766))) (-15 -3438 ((-315 (-224)) (-315 (-224)))) (-15 -3490 ((-112) (-224) (-224) (-639 (-315 (-224))))) (-15 -2666 ((-112) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))))))) (T -209))
+((-2666 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) (-5 *2 (-112)) (-5 *1 (-209)))) (-3490 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-639 (-315 (-224)))) (-5 *3 (-224)) (-5 *2 (-112)) (-5 *1 (-209)))) (-3438 (*1 *2 *2) (-12 (-5 *2 (-315 (-224))) (-5 *1 (-209)))) (-2850 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-5 *2 (-639 (-1168))) (-5 *1 (-209)) (-5 *3 (-1168)))))
+(-10 -7 (-15 -2850 ((-639 (-1168)) (-1168) (-766))) (-15 -3438 ((-315 (-224)) (-315 (-224)))) (-15 -3490 ((-112) (-224) (-224) (-639 (-315 (-224))))) (-15 -2666 ((-112) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))))))
+((-4041 (((-112) $ $) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 26)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1727 (((-1030) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 57)) (-1733 (((-112) $ $) NIL)))
(((-210) (-890)) (T -210))
NIL
(-890)
-((-4041 (((-112) $ $) NIL)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 21)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-2165 (((-1030) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 21)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1727 (((-1030) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) NIL)) (-1733 (((-112) $ $) NIL)))
(((-211) (-890)) (T -211))
NIL
(-890)
-((-4041 (((-112) $ $) NIL)) (-1431 ((|#2| $ (-766) |#2|) 11)) (-1420 ((|#2| $ (-766)) 10)) (-1458 (($) 8)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 18)) (-1731 (((-112) $ $) 13)))
-(((-212 |#1| |#2|) (-13 (-1092) (-10 -8 (-15 -1458 ($)) (-15 -1420 (|#2| $ (-766))) (-15 -1431 (|#2| $ (-766) |#2|)))) (-916) (-1092)) (T -212))
-((-1458 (*1 *1) (-12 (-5 *1 (-212 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1092)))) (-1420 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *2 (-1092)) (-5 *1 (-212 *4 *2)) (-14 *4 (-916)))) (-1431 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-212 *4 *2)) (-14 *4 (-916)) (-4 *2 (-1092)))))
-(-13 (-1092) (-10 -8 (-15 -1458 ($)) (-15 -1420 (|#2| $ (-766))) (-15 -1431 (|#2| $ (-766) |#2|))))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1966 (((-1261) $) 36) (((-1261) $ (-916) (-916)) 38)) (-2343 (($ $ (-984)) 19) (((-244 (-1150)) $ (-1168)) 15)) (-1479 (((-1261) $) 34)) (-4054 (((-857) $) 31) (($ (-639 |#1|)) 8)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $ $) 27)) (-1835 (($ $ $) 22)))
-(((-213 |#1|) (-13 (-1092) (-612 (-639 |#1|)) (-10 -8 (-15 -2343 ($ $ (-984))) (-15 -2343 ((-244 (-1150)) $ (-1168))) (-15 -1835 ($ $ $)) (-15 -1848 ($ $ $)) (-15 -1479 ((-1261) $)) (-15 -1966 ((-1261) $)) (-15 -1966 ((-1261) $ (-916) (-916))))) (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $)) (-15 -1966 ((-1261) $))))) (T -213))
-((-2343 (*1 *1 *1 *2) (-12 (-5 *2 (-984)) (-5 *1 (-213 *3)) (-4 *3 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $)) (-15 -1966 ((-1261) $))))))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-244 (-1150))) (-5 *1 (-213 *4)) (-4 *4 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ *3)) (-15 -1479 ((-1261) $)) (-15 -1966 ((-1261) $))))))) (-1835 (*1 *1 *1 *1) (-12 (-5 *1 (-213 *2)) (-4 *2 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $)) (-15 -1966 ((-1261) $))))))) (-1848 (*1 *1 *1 *1) (-12 (-5 *1 (-213 *2)) (-4 *2 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $)) (-15 -1966 ((-1261) $))))))) (-1479 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-213 *3)) (-4 *3 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 (*2 $)) (-15 -1966 (*2 $))))))) (-1966 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-213 *3)) (-4 *3 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 (*2 $)) (-15 -1966 (*2 $))))))) (-1966 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1261)) (-5 *1 (-213 *4)) (-4 *4 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 (*2 $)) (-15 -1966 (*2 $))))))))
-(-13 (-1092) (-612 (-639 |#1|)) (-10 -8 (-15 -2343 ($ $ (-984))) (-15 -2343 ((-244 (-1150)) $ (-1168))) (-15 -1835 ($ $ $)) (-15 -1848 ($ $ $)) (-15 -1479 ((-1261) $)) (-15 -1966 ((-1261) $)) (-15 -1966 ((-1261) $ (-916) (-916)))))
-((-1770 ((|#2| |#4| (-1 |#2| |#2|)) 46)))
-(((-214 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1770 (|#2| |#4| (-1 |#2| |#2|)))) (-362) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|)) (T -214))
-((-1770 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-362)) (-4 *6 (-1232 (-406 *2))) (-4 *2 (-1232 *5)) (-5 *1 (-214 *5 *2 *6 *3)) (-4 *3 (-341 *5 *2 *6)))))
-(-10 -7 (-15 -1770 (|#2| |#4| (-1 |#2| |#2|))))
-((-4181 ((|#2| |#2| (-766) |#2|) 42)) (-2383 ((|#2| |#2| (-766) |#2|) 38)) (-1797 (((-639 |#2|) (-639 (-2 (|:| |deg| (-766)) (|:| -2754 |#2|)))) 56)) (-3462 (((-639 (-2 (|:| |deg| (-766)) (|:| -2754 |#2|))) |#2|) 52)) (-4009 (((-112) |#2|) 49)) (-3696 (((-417 |#2|) |#2|) 76)) (-1635 (((-417 |#2|) |#2|) 75)) (-1293 ((|#2| |#2| (-766) |#2|) 36)) (-1659 (((-2 (|:| |cont| |#1|) (|:| -1510 (-639 (-2 (|:| |irr| |#2|) (|:| -2762 (-562)))))) |#2| (-112)) 68)))
-(((-215 |#1| |#2|) (-10 -7 (-15 -1635 ((-417 |#2|) |#2|)) (-15 -3696 ((-417 |#2|) |#2|)) (-15 -1659 ((-2 (|:| |cont| |#1|) (|:| -1510 (-639 (-2 (|:| |irr| |#2|) (|:| -2762 (-562)))))) |#2| (-112))) (-15 -3462 ((-639 (-2 (|:| |deg| (-766)) (|:| -2754 |#2|))) |#2|)) (-15 -1797 ((-639 |#2|) (-639 (-2 (|:| |deg| (-766)) (|:| -2754 |#2|))))) (-15 -1293 (|#2| |#2| (-766) |#2|)) (-15 -2383 (|#2| |#2| (-766) |#2|)) (-15 -4181 (|#2| |#2| (-766) |#2|)) (-15 -4009 ((-112) |#2|))) (-348) (-1232 |#1|)) (T -215))
-((-4009 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-112)) (-5 *1 (-215 *4 *3)) (-4 *3 (-1232 *4)))) (-4181 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-215 *4 *2)) (-4 *2 (-1232 *4)))) (-2383 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-215 *4 *2)) (-4 *2 (-1232 *4)))) (-1293 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-215 *4 *2)) (-4 *2 (-1232 *4)))) (-1797 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| |deg| (-766)) (|:| -2754 *5)))) (-4 *5 (-1232 *4)) (-4 *4 (-348)) (-5 *2 (-639 *5)) (-5 *1 (-215 *4 *5)))) (-3462 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-639 (-2 (|:| |deg| (-766)) (|:| -2754 *3)))) (-5 *1 (-215 *4 *3)) (-4 *3 (-1232 *4)))) (-1659 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-348)) (-5 *2 (-2 (|:| |cont| *5) (|:| -1510 (-639 (-2 (|:| |irr| *3) (|:| -2762 (-562))))))) (-5 *1 (-215 *5 *3)) (-4 *3 (-1232 *5)))) (-3696 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-417 *3)) (-5 *1 (-215 *4 *3)) (-4 *3 (-1232 *4)))) (-1635 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-417 *3)) (-5 *1 (-215 *4 *3)) (-4 *3 (-1232 *4)))))
-(-10 -7 (-15 -1635 ((-417 |#2|) |#2|)) (-15 -3696 ((-417 |#2|) |#2|)) (-15 -1659 ((-2 (|:| |cont| |#1|) (|:| -1510 (-639 (-2 (|:| |irr| |#2|) (|:| -2762 (-562)))))) |#2| (-112))) (-15 -3462 ((-639 (-2 (|:| |deg| (-766)) (|:| -2754 |#2|))) |#2|)) (-15 -1797 ((-639 |#2|) (-639 (-2 (|:| |deg| (-766)) (|:| -2754 |#2|))))) (-15 -1293 (|#2| |#2| (-766) |#2|)) (-15 -2383 (|#2| |#2| (-766) |#2|)) (-15 -4181 (|#2| |#2| (-766) |#2|)) (-15 -4009 ((-112) |#2|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-4246 (((-562) $) NIL (|has| (-562) (-306)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL (|has| (-562) (-815)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| (-562) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-562) (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| (-562) (-1033 (-562))))) (-3961 (((-562) $) NIL) (((-1168) $) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-562) (-1033 (-562)))) (((-562) $) NIL (|has| (-562) (-1033 (-562))))) (-1811 (($ $ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| (-562) (-544)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3519 (((-112) $) NIL (|has| (-562) (-815)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-562) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-562) (-881 (-378))))) (-1957 (((-112) $) NIL)) (-3425 (($ $) NIL)) (-4065 (((-562) $) NIL)) (-3699 (((-3 $ "failed") $) NIL (|has| (-562) (-1143)))) (-3392 (((-112) $) NIL (|has| (-562) (-815)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-562) (-845)))) (-4152 (($ (-1 (-562) (-562)) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| (-562) (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2736 (($ $) NIL (|has| (-562) (-306))) (((-406 (-562)) $) NIL)) (-4014 (((-562) $) NIL (|has| (-562) (-544)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-562)) (-639 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-562) (-562)) NIL (|has| (-562) (-308 (-562)))) (($ $ (-293 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-293 (-562)))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-1168)) (-639 (-562))) NIL (|has| (-562) (-513 (-1168) (-562)))) (($ $ (-1168) (-562)) NIL (|has| (-562) (-513 (-1168) (-562))))) (-1577 (((-766) $) NIL)) (-2343 (($ $ (-562)) NIL (|has| (-562) (-285 (-562) (-562))))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-3658 (($ $) NIL)) (-4076 (((-562) $) NIL)) (-3687 (($ (-406 (-562))) 9)) (-4208 (((-887 (-562)) $) NIL (|has| (-562) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-562) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-562) (-610 (-535)))) (((-378) $) NIL (|has| (-562) (-1017))) (((-224) $) NIL (|has| (-562) (-1017)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-562) (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) 8) (($ (-562)) NIL) (($ (-1168)) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL) (((-999 10) $) 10)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-562) (-904))) (|has| (-562) (-144))))) (-2579 (((-766)) NIL)) (-2604 (((-562) $) NIL (|has| (-562) (-544)))) (-2922 (((-112) $ $) NIL)) (-3526 (($ $) NIL (|has| (-562) (-815)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1772 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1759 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1859 (($ $ $) NIL) (($ (-562) (-562)) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-562) $) NIL) (($ $ (-562)) NIL)))
-(((-216) (-13 (-987 (-562)) (-609 (-406 (-562))) (-609 (-999 10)) (-10 -8 (-15 -2736 ((-406 (-562)) $)) (-15 -3687 ($ (-406 (-562))))))) (T -216))
-((-2736 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-216)))) (-3687 (*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-216)))))
-(-13 (-987 (-562)) (-609 (-406 (-562))) (-609 (-999 10)) (-10 -8 (-15 -2736 ((-406 (-562)) $)) (-15 -3687 ($ (-406 (-562))))))
-((-4041 (((-112) $ $) NIL)) (-2845 (((-1110) $) 13)) (-2913 (((-1150) $) NIL)) (-3063 (((-482) $) 10)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 25) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-1127) $) 15)) (-1731 (((-112) $ $) NIL)))
-(((-217) (-13 (-1075) (-10 -8 (-15 -3063 ((-482) $)) (-15 -2845 ((-1110) $)) (-15 -3265 ((-1127) $))))) (T -217))
-((-3063 (*1 *2 *1) (-12 (-5 *2 (-482)) (-5 *1 (-217)))) (-2845 (*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-217)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-217)))))
-(-13 (-1075) (-10 -8 (-15 -3063 ((-482) $)) (-15 -2845 ((-1110) $)) (-15 -3265 ((-1127) $))))
-((-2667 (((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1084 (-838 |#2|)) (-1150)) 28) (((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1084 (-838 |#2|))) 24)) (-2407 (((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1168) (-838 |#2|) (-838 |#2|) (-112)) 17)))
-(((-218 |#1| |#2|) (-10 -7 (-15 -2667 ((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1084 (-838 |#2|)))) (-15 -2667 ((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1084 (-838 |#2|)) (-1150))) (-15 -2407 ((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1168) (-838 |#2|) (-838 |#2|) (-112)))) (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-954) (-29 |#1|))) (T -218))
-((-2407 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1168)) (-5 *6 (-112)) (-4 *7 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-4 *3 (-13 (-1192) (-954) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-838 *3)) (|:| |f2| (-639 (-838 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-218 *7 *3)) (-5 *5 (-838 *3)))) (-2667 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1084 (-838 *3))) (-5 *5 (-1150)) (-4 *3 (-13 (-1192) (-954) (-29 *6))) (-4 *6 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |f1| (-838 *3)) (|:| |f2| (-639 (-838 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-218 *6 *3)))) (-2667 (*1 *2 *3 *4) (-12 (-5 *4 (-1084 (-838 *3))) (-4 *3 (-13 (-1192) (-954) (-29 *5))) (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |f1| (-838 *3)) (|:| |f2| (-639 (-838 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-218 *5 *3)))))
-(-10 -7 (-15 -2667 ((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1084 (-838 |#2|)))) (-15 -2667 ((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1084 (-838 |#2|)) (-1150))) (-15 -2407 ((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1168) (-838 |#2|) (-838 |#2|) (-112))))
-((-2667 (((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-406 (-947 |#1|)))) (-1150)) 46) (((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-406 (-947 |#1|))))) 43) (((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-315 |#1|))) (-1150)) 47) (((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-315 |#1|)))) 20)))
-(((-219 |#1|) (-10 -7 (-15 -2667 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-315 |#1|))))) (-15 -2667 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-315 |#1|))) (-1150))) (-15 -2667 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-406 (-947 |#1|)))))) (-15 -2667 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-406 (-947 |#1|)))) (-1150)))) (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (T -219))
-((-2667 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1084 (-838 (-406 (-947 *6))))) (-5 *5 (-1150)) (-5 *3 (-406 (-947 *6))) (-4 *6 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |f1| (-838 (-315 *6))) (|:| |f2| (-639 (-838 (-315 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *6)))) (-2667 (*1 *2 *3 *4) (-12 (-5 *4 (-1084 (-838 (-406 (-947 *5))))) (-5 *3 (-406 (-947 *5))) (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |f1| (-838 (-315 *5))) (|:| |f2| (-639 (-838 (-315 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *5)))) (-2667 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-406 (-947 *6))) (-5 *4 (-1084 (-838 (-315 *6)))) (-5 *5 (-1150)) (-4 *6 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |f1| (-838 (-315 *6))) (|:| |f2| (-639 (-838 (-315 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *6)))) (-2667 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1084 (-838 (-315 *5)))) (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |f1| (-838 (-315 *5))) (|:| |f2| (-639 (-838 (-315 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *5)))))
-(-10 -7 (-15 -2667 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-315 |#1|))))) (-15 -2667 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-315 |#1|))) (-1150))) (-15 -2667 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-406 (-947 |#1|)))))) (-15 -2667 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-406 (-947 |#1|)))) (-1150))))
-((-1955 (((-2 (|:| -4380 (-1164 |#1|)) (|:| |deg| (-916))) (-1164 |#1|)) 21)) (-3525 (((-639 (-315 |#2|)) (-315 |#2|) (-916)) 42)))
-(((-220 |#1| |#2|) (-10 -7 (-15 -1955 ((-2 (|:| -4380 (-1164 |#1|)) (|:| |deg| (-916))) (-1164 |#1|))) (-15 -3525 ((-639 (-315 |#2|)) (-315 |#2|) (-916)))) (-1044) (-13 (-554) (-845))) (T -220))
-((-3525 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-4 *6 (-13 (-554) (-845))) (-5 *2 (-639 (-315 *6))) (-5 *1 (-220 *5 *6)) (-5 *3 (-315 *6)) (-4 *5 (-1044)))) (-1955 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-5 *2 (-2 (|:| -4380 (-1164 *4)) (|:| |deg| (-916)))) (-5 *1 (-220 *4 *5)) (-5 *3 (-1164 *4)) (-4 *5 (-13 (-554) (-845))))))
-(-10 -7 (-15 -1955 ((-2 (|:| -4380 (-1164 |#1|)) (|:| |deg| (-916))) (-1164 |#1|))) (-15 -3525 ((-639 (-315 |#2|)) (-315 |#2|) (-916))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2169 ((|#1| $) NIL)) (-2775 ((|#1| $) 25)) (-4336 (((-112) $ (-766)) NIL)) (-1800 (($) NIL T CONST)) (-3109 (($ $) NIL)) (-2447 (($ $) 31)) (-2737 ((|#1| |#1| $) NIL)) (-3064 ((|#1| $) NIL)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-3641 (((-766) $) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3262 ((|#1| $) NIL)) (-3988 ((|#1| |#1| $) 28)) (-1381 ((|#1| |#1| $) 30)) (-4300 (($ |#1| $) NIL)) (-3060 (((-766) $) 27)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3516 ((|#1| $) NIL)) (-2840 ((|#1| $) 26)) (-3833 ((|#1| $) 24)) (-1904 ((|#1| $) NIL)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2391 ((|#1| |#1| $) NIL)) (-2974 (((-112) $) 9)) (-4307 (($) NIL)) (-3872 ((|#1| $) NIL)) (-3543 (($) NIL) (($ (-639 |#1|)) 16)) (-2193 (((-766) $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2549 ((|#1| $) 13)) (-1932 (($ (-639 |#1|)) NIL)) (-3686 ((|#1| $) NIL)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-221 |#1|) (-13 (-253 |#1|) (-10 -8 (-15 -3543 ($ (-639 |#1|))))) (-1092)) (T -221))
-((-3543 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-221 *3)))))
-(-13 (-253 |#1|) (-10 -8 (-15 -3543 ($ (-639 |#1|)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-4044 (($ (-315 |#1|)) 23)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-2585 (((-112) $) NIL)) (-4048 (((-3 (-315 |#1|) "failed") $) NIL)) (-3961 (((-315 |#1|) $) NIL)) (-1601 (($ $) 31)) (-3668 (((-3 $ "failed") $) NIL)) (-1957 (((-112) $) NIL)) (-4152 (($ (-1 (-315 |#1|) (-315 |#1|)) $) NIL)) (-1573 (((-315 |#1|) $) NIL)) (-2765 (($ $) 30)) (-2913 (((-1150) $) NIL)) (-3083 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-3148 (($ (-766)) NIL)) (-4160 (($ $) 32)) (-3598 (((-562) $) NIL)) (-4054 (((-857) $) 57) (($ (-562)) NIL) (($ (-315 |#1|)) NIL)) (-3906 (((-315 |#1|) $ $) NIL)) (-2579 (((-766)) NIL)) (-2286 (($) 25 T CONST)) (-2294 (($) 50 T CONST)) (-1731 (((-112) $ $) 28)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 19)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 24) (($ (-315 |#1|) $) 18)))
-(((-222 |#1| |#2|) (-13 (-616 (-315 |#1|)) (-1033 (-315 |#1|)) (-10 -8 (-15 -1573 ((-315 |#1|) $)) (-15 -2765 ($ $)) (-15 -1601 ($ $)) (-15 -3906 ((-315 |#1|) $ $)) (-15 -3148 ($ (-766))) (-15 -3083 ((-112) $)) (-15 -2585 ((-112) $)) (-15 -3598 ((-562) $)) (-15 -4152 ($ (-1 (-315 |#1|) (-315 |#1|)) $)) (-15 -4044 ($ (-315 |#1|))) (-15 -4160 ($ $)))) (-13 (-1044) (-845)) (-639 (-1168))) (T -222))
-((-1573 (*1 *2 *1) (-12 (-5 *2 (-315 *3)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168))))) (-2765 (*1 *1 *1) (-12 (-5 *1 (-222 *2 *3)) (-4 *2 (-13 (-1044) (-845))) (-14 *3 (-639 (-1168))))) (-1601 (*1 *1 *1) (-12 (-5 *1 (-222 *2 *3)) (-4 *2 (-13 (-1044) (-845))) (-14 *3 (-639 (-1168))))) (-3906 (*1 *2 *1 *1) (-12 (-5 *2 (-315 *3)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168))))) (-3148 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168))))) (-3083 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168))))) (-2585 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168))))) (-3598 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168))))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-315 *3) (-315 *3))) (-4 *3 (-13 (-1044) (-845))) (-5 *1 (-222 *3 *4)) (-14 *4 (-639 (-1168))))) (-4044 (*1 *1 *2) (-12 (-5 *2 (-315 *3)) (-4 *3 (-13 (-1044) (-845))) (-5 *1 (-222 *3 *4)) (-14 *4 (-639 (-1168))))) (-4160 (*1 *1 *1) (-12 (-5 *1 (-222 *2 *3)) (-4 *2 (-13 (-1044) (-845))) (-14 *3 (-639 (-1168))))))
-(-13 (-616 (-315 |#1|)) (-1033 (-315 |#1|)) (-10 -8 (-15 -1573 ((-315 |#1|) $)) (-15 -2765 ($ $)) (-15 -1601 ($ $)) (-15 -3906 ((-315 |#1|) $ $)) (-15 -3148 ($ (-766))) (-15 -3083 ((-112) $)) (-15 -2585 ((-112) $)) (-15 -3598 ((-562) $)) (-15 -4152 ($ (-1 (-315 |#1|) (-315 |#1|)) $)) (-15 -4044 ($ (-315 |#1|))) (-15 -4160 ($ $))))
-((-1319 (((-112) (-1150)) 22)) (-2982 (((-3 (-838 |#2|) "failed") (-608 |#2|) |#2| (-838 |#2|) (-838 |#2|) (-112)) 32)) (-2692 (((-3 (-112) "failed") (-1164 |#2|) (-838 |#2|) (-838 |#2|) (-112)) 73) (((-3 (-112) "failed") (-947 |#1|) (-1168) (-838 |#2|) (-838 |#2|) (-112)) 74)))
-(((-223 |#1| |#2|) (-10 -7 (-15 -1319 ((-112) (-1150))) (-15 -2982 ((-3 (-838 |#2|) "failed") (-608 |#2|) |#2| (-838 |#2|) (-838 |#2|) (-112))) (-15 -2692 ((-3 (-112) "failed") (-947 |#1|) (-1168) (-838 |#2|) (-838 |#2|) (-112))) (-15 -2692 ((-3 (-112) "failed") (-1164 |#2|) (-838 |#2|) (-838 |#2|) (-112)))) (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-29 |#1|))) (T -223))
-((-2692 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1164 *6)) (-5 *4 (-838 *6)) (-4 *6 (-13 (-1192) (-29 *5))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-223 *5 *6)))) (-2692 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-947 *6)) (-5 *4 (-1168)) (-5 *5 (-838 *7)) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-4 *7 (-13 (-1192) (-29 *6))) (-5 *1 (-223 *6 *7)))) (-2982 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-838 *4)) (-5 *3 (-608 *4)) (-5 *5 (-112)) (-4 *4 (-13 (-1192) (-29 *6))) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-223 *6 *4)))) (-1319 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-112)) (-5 *1 (-223 *4 *5)) (-4 *5 (-13 (-1192) (-29 *4))))))
-(-10 -7 (-15 -1319 ((-112) (-1150))) (-15 -2982 ((-3 (-838 |#2|) "failed") (-608 |#2|) |#2| (-838 |#2|) (-838 |#2|) (-112))) (-15 -2692 ((-3 (-112) "failed") (-947 |#1|) (-1168) (-838 |#2|) (-838 |#2|) (-112))) (-15 -2692 ((-3 (-112) "failed") (-1164 |#2|) (-838 |#2|) (-838 |#2|) (-112))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 87)) (-4246 (((-562) $) 98)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2557 (($ $) NIL)) (-2988 (($ $) 75)) (-4097 (($ $) 63)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-1643 (($ $) 54)) (-2569 (((-112) $ $) NIL)) (-4207 (($ $) 73)) (-4074 (($ $) 61)) (-2277 (((-562) $) 115)) (-3014 (($ $) 78)) (-4119 (($ $) 65)) (-1800 (($) NIL T CONST)) (-4103 (($ $) NIL)) (-4048 (((-3 (-562) "failed") $) 114) (((-3 (-406 (-562)) "failed") $) 111)) (-3961 (((-562) $) 112) (((-406 (-562)) $) 109)) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) 91)) (-4248 (((-406 (-562)) $ (-766)) 107) (((-406 (-562)) $ (-766) (-766)) 106)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3327 (((-916)) 27) (((-916) (-916)) NIL (|has| $ (-6 -4393)))) (-3519 (((-112) $) NIL)) (-4100 (($) 37)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL)) (-1900 (((-562) $) 33)) (-1957 (((-112) $) NIL)) (-1891 (($ $ (-562)) NIL)) (-2247 (($ $) NIL)) (-3392 (((-112) $) 86)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) 51) (($) 32 (-12 (-2236 (|has| $ (-6 -4385))) (-2236 (|has| $ (-6 -4393)))))) (-2993 (($ $ $) 50) (($) 31 (-12 (-2236 (|has| $ (-6 -4385))) (-2236 (|has| $ (-6 -4393)))))) (-3946 (((-562) $) 25)) (-2572 (($ $) 28)) (-2983 (($ $) 55)) (-4365 (($ $) 60)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3544 (((-916) (-562)) NIL (|has| $ (-6 -4393)))) (-1709 (((-1112) $) 89)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2736 (($ $) NIL)) (-4014 (($ $) NIL)) (-4235 (($ (-562) (-562)) NIL) (($ (-562) (-562) (-916)) 99)) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1960 (((-562) $) 26)) (-3978 (($) 36)) (-3430 (($ $) 59)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3280 (((-916)) NIL) (((-916) (-916)) NIL (|has| $ (-6 -4393)))) (-4029 (($ $ (-766)) NIL) (($ $) 92)) (-2015 (((-916) (-562)) NIL (|has| $ (-6 -4393)))) (-3023 (($ $) 76)) (-4130 (($ $) 66)) (-3001 (($ $) 77)) (-4108 (($ $) 64)) (-2978 (($ $) 74)) (-4087 (($ $) 62)) (-4208 (((-378) $) 103) (((-224) $) 100) (((-887 (-378)) $) NIL) (((-535) $) 43)) (-4054 (((-857) $) 40) (($ (-562)) 58) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-562)) 58) (($ (-406 (-562))) NIL)) (-2579 (((-766)) NIL)) (-2604 (($ $) NIL)) (-3366 (((-916)) 30) (((-916) (-916)) NIL (|has| $ (-6 -4393)))) (-3241 (((-916)) 23)) (-3055 (($ $) 81)) (-4165 (($ $) 69) (($ $ $) 108)) (-2922 (((-112) $ $) NIL)) (-3033 (($ $) 79)) (-4138 (($ $) 67)) (-3078 (($ $) 84)) (-4182 (($ $) 72)) (-1566 (($ $) 82)) (-4195 (($ $) 70)) (-3066 (($ $) 83)) (-4174 (($ $) 71)) (-3044 (($ $) 80)) (-4151 (($ $) 68)) (-3526 (($ $) 116)) (-2286 (($) 34 T CONST)) (-2294 (($) 35 T CONST)) (-2833 (((-1150) $) 17) (((-1150) $ (-112)) 19) (((-1261) (-817) $) 20) (((-1261) (-817) $ (-112)) 21)) (-3819 (($ $) 95)) (-3114 (($ $ (-766)) NIL) (($ $) NIL)) (-2088 (($ $ $) 97)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 52)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 44)) (-1859 (($ $ $) 85) (($ $ (-562)) 53)) (-1848 (($ $) 45) (($ $ $) 47)) (-1835 (($ $ $) 46)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 56) (($ $ (-406 (-562))) 127) (($ $ $) 57)) (* (($ (-916) $) 29) (($ (-766) $) NIL) (($ (-562) $) 49) (($ $ $) 48) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
-(((-224) (-13 (-403) (-232) (-823) (-1192) (-610 (-535)) (-10 -8 (-15 -1859 ($ $ (-562))) (-15 ** ($ $ $)) (-15 -3978 ($)) (-15 -2572 ($ $)) (-15 -2983 ($ $)) (-15 -4165 ($ $ $)) (-15 -3819 ($ $)) (-15 -2088 ($ $ $)) (-15 -4248 ((-406 (-562)) $ (-766))) (-15 -4248 ((-406 (-562)) $ (-766) (-766)))))) (T -224))
-((** (*1 *1 *1 *1) (-5 *1 (-224))) (-1859 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-224)))) (-3978 (*1 *1) (-5 *1 (-224))) (-2572 (*1 *1 *1) (-5 *1 (-224))) (-2983 (*1 *1 *1) (-5 *1 (-224))) (-4165 (*1 *1 *1 *1) (-5 *1 (-224))) (-3819 (*1 *1 *1) (-5 *1 (-224))) (-2088 (*1 *1 *1 *1) (-5 *1 (-224))) (-4248 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-224)))) (-4248 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-224)))))
-(-13 (-403) (-232) (-823) (-1192) (-610 (-535)) (-10 -8 (-15 -1859 ($ $ (-562))) (-15 ** ($ $ $)) (-15 -3978 ($)) (-15 -2572 ($ $)) (-15 -2983 ($ $)) (-15 -4165 ($ $ $)) (-15 -3819 ($ $)) (-15 -2088 ($ $ $)) (-15 -4248 ((-406 (-562)) $ (-766))) (-15 -4248 ((-406 (-562)) $ (-766) (-766)))))
-((-4230 (((-168 (-224)) (-766) (-168 (-224))) 11) (((-224) (-766) (-224)) 12)) (-2364 (((-168 (-224)) (-168 (-224))) 13) (((-224) (-224)) 14)) (-4030 (((-168 (-224)) (-168 (-224)) (-168 (-224))) 19) (((-224) (-224) (-224)) 22)) (-2791 (((-168 (-224)) (-168 (-224))) 25) (((-224) (-224)) 24)) (-3690 (((-168 (-224)) (-168 (-224)) (-168 (-224))) 43) (((-224) (-224) (-224)) 35)) (-1868 (((-168 (-224)) (-168 (-224)) (-168 (-224))) 48) (((-224) (-224) (-224)) 45)) (-4266 (((-168 (-224)) (-168 (-224)) (-168 (-224))) 15) (((-224) (-224) (-224)) 16)) (-3350 (((-168 (-224)) (-168 (-224)) (-168 (-224))) 17) (((-224) (-224) (-224)) 18)) (-2190 (((-168 (-224)) (-168 (-224))) 60) (((-224) (-224)) 59)) (-3402 (((-224) (-224)) 54) (((-168 (-224)) (-168 (-224))) 58)) (-3819 (((-168 (-224)) (-168 (-224))) 8) (((-224) (-224)) 9)) (-2088 (((-168 (-224)) (-168 (-224)) (-168 (-224))) 30) (((-224) (-224) (-224)) 26)))
-(((-225) (-10 -7 (-15 -3819 ((-224) (-224))) (-15 -3819 ((-168 (-224)) (-168 (-224)))) (-15 -2088 ((-224) (-224) (-224))) (-15 -2088 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -2364 ((-224) (-224))) (-15 -2364 ((-168 (-224)) (-168 (-224)))) (-15 -2791 ((-224) (-224))) (-15 -2791 ((-168 (-224)) (-168 (-224)))) (-15 -4230 ((-224) (-766) (-224))) (-15 -4230 ((-168 (-224)) (-766) (-168 (-224)))) (-15 -4266 ((-224) (-224) (-224))) (-15 -4266 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -3690 ((-224) (-224) (-224))) (-15 -3690 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -3350 ((-224) (-224) (-224))) (-15 -3350 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -1868 ((-224) (-224) (-224))) (-15 -1868 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -3402 ((-168 (-224)) (-168 (-224)))) (-15 -3402 ((-224) (-224))) (-15 -2190 ((-224) (-224))) (-15 -2190 ((-168 (-224)) (-168 (-224)))) (-15 -4030 ((-224) (-224) (-224))) (-15 -4030 ((-168 (-224)) (-168 (-224)) (-168 (-224)))))) (T -225))
-((-4030 (*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-4030 (*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-2190 (*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-2190 (*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-3402 (*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-3402 (*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-1868 (*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-1868 (*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-3350 (*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-3350 (*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-3690 (*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-3690 (*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-4266 (*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-4266 (*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-4230 (*1 *2 *3 *2) (-12 (-5 *2 (-168 (-224))) (-5 *3 (-766)) (-5 *1 (-225)))) (-4230 (*1 *2 *3 *2) (-12 (-5 *2 (-224)) (-5 *3 (-766)) (-5 *1 (-225)))) (-2791 (*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-2791 (*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-2364 (*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-2364 (*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-2088 (*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-2088 (*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-3819 (*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-3819 (*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))))
-(-10 -7 (-15 -3819 ((-224) (-224))) (-15 -3819 ((-168 (-224)) (-168 (-224)))) (-15 -2088 ((-224) (-224) (-224))) (-15 -2088 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -2364 ((-224) (-224))) (-15 -2364 ((-168 (-224)) (-168 (-224)))) (-15 -2791 ((-224) (-224))) (-15 -2791 ((-168 (-224)) (-168 (-224)))) (-15 -4230 ((-224) (-766) (-224))) (-15 -4230 ((-168 (-224)) (-766) (-168 (-224)))) (-15 -4266 ((-224) (-224) (-224))) (-15 -4266 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -3690 ((-224) (-224) (-224))) (-15 -3690 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -3350 ((-224) (-224) (-224))) (-15 -3350 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -1868 ((-224) (-224) (-224))) (-15 -1868 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -3402 ((-168 (-224)) (-168 (-224)))) (-15 -3402 ((-224) (-224))) (-15 -2190 ((-224) (-224))) (-15 -2190 ((-168 (-224)) (-168 (-224)))) (-15 -4030 ((-224) (-224) (-224))) (-15 -4030 ((-168 (-224)) (-168 (-224)) (-168 (-224)))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2911 (($ (-766) (-766)) NIL)) (-2654 (($ $ $) NIL)) (-2529 (($ (-1256 |#1|)) NIL) (($ $) NIL)) (-3817 (($ |#1| |#1| |#1|) 32)) (-2952 (((-112) $) NIL)) (-2188 (($ $ (-562) (-562)) NIL)) (-2467 (($ $ (-562) (-562)) NIL)) (-1593 (($ $ (-562) (-562) (-562) (-562)) NIL)) (-3886 (($ $) NIL)) (-3220 (((-112) $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-4212 (($ $ (-562) (-562) $) NIL)) (-4200 ((|#1| $ (-562) (-562) |#1|) NIL) (($ $ (-639 (-562)) (-639 (-562)) $) NIL)) (-1928 (($ $ (-562) (-1256 |#1|)) NIL)) (-3003 (($ $ (-562) (-1256 |#1|)) NIL)) (-3878 (($ |#1| |#1| |#1|) 31)) (-2554 (($ (-766) |#1|) NIL)) (-1800 (($) NIL T CONST)) (-2522 (($ $) NIL (|has| |#1| (-306)))) (-3796 (((-1256 |#1|) $ (-562)) NIL)) (-2695 (($ |#1|) 30)) (-1318 (($ |#1|) 29)) (-3079 (($ |#1|) 28)) (-2173 (((-766) $) NIL (|has| |#1| (-554)))) (-1505 ((|#1| $ (-562) (-562) |#1|) NIL)) (-1420 ((|#1| $ (-562) (-562)) NIL)) (-1720 (((-639 |#1|) $) NIL)) (-3922 (((-766) $) NIL (|has| |#1| (-554)))) (-2318 (((-639 (-1256 |#1|)) $) NIL (|has| |#1| (-554)))) (-2699 (((-766) $) NIL)) (-1458 (($ (-766) (-766) |#1|) NIL)) (-2709 (((-766) $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-2280 ((|#1| $) NIL (|has| |#1| (-6 (-4404 "*"))))) (-2783 (((-562) $) NIL)) (-4217 (((-562) $) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4088 (((-562) $) NIL)) (-2453 (((-562) $) NIL)) (-2885 (($ (-639 (-639 |#1|))) 11)) (-1490 (($ (-1 |#1| |#1|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2824 (((-639 (-639 |#1|)) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3494 (((-3 $ "failed") $) NIL (|has| |#1| (-362)))) (-1768 (($) 12)) (-2309 (($ $ $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2716 (($ $ |#1|) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ (-562) (-562)) NIL) ((|#1| $ (-562) (-562) |#1|) NIL) (($ $ (-639 (-562)) (-639 (-562))) NIL)) (-3448 (($ (-639 |#1|)) NIL) (($ (-639 $)) NIL)) (-1544 (((-112) $) NIL)) (-3770 ((|#1| $) NIL (|has| |#1| (-6 (-4404 "*"))))) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-2211 (((-1256 |#1|) $ (-562)) NIL)) (-4054 (($ (-1256 |#1|)) NIL) (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1335 (((-112) $) NIL)) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $ $) NIL) (($ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-562) $) NIL) (((-1256 |#1|) $ (-1256 |#1|)) 15) (((-1256 |#1|) (-1256 |#1|) $) NIL) (((-938 |#1|) $ (-938 |#1|)) 20)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-226 |#1|) (-13 (-681 |#1| (-1256 |#1|) (-1256 |#1|)) (-10 -8 (-15 * ((-938 |#1|) $ (-938 |#1|))) (-15 -1768 ($)) (-15 -3079 ($ |#1|)) (-15 -1318 ($ |#1|)) (-15 -2695 ($ |#1|)) (-15 -3878 ($ |#1| |#1| |#1|)) (-15 -3817 ($ |#1| |#1| |#1|)))) (-13 (-362) (-1192))) (T -226))
-((* (*1 *2 *1 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192))) (-5 *1 (-226 *3)))) (-1768 (*1 *1) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))) (-3079 (*1 *1 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))) (-1318 (*1 *1 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))) (-2695 (*1 *1 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))) (-3878 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))) (-3817 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))))
-(-13 (-681 |#1| (-1256 |#1|) (-1256 |#1|)) (-10 -8 (-15 * ((-938 |#1|) $ (-938 |#1|))) (-15 -1768 ($)) (-15 -3079 ($ |#1|)) (-15 -1318 ($ |#1|)) (-15 -2695 ($ |#1|)) (-15 -3878 ($ |#1| |#1| |#1|)) (-15 -3817 ($ |#1| |#1| |#1|))))
-((-3111 (($ (-1 (-112) |#2|) $) 15)) (-4000 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 24)) (-3564 (($) NIL) (($ (-639 |#2|)) 11)) (-1731 (((-112) $ $) 22)))
-(((-227 |#1| |#2|) (-10 -8 (-15 -3111 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4000 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4000 (|#1| |#2| |#1|)) (-15 -3564 (|#1| (-639 |#2|))) (-15 -3564 (|#1|)) (-15 -1731 ((-112) |#1| |#1|))) (-228 |#2|) (-1092)) (T -227))
-NIL
-(-10 -8 (-15 -3111 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4000 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4000 (|#1| |#2| |#1|)) (-15 -3564 (|#1| (-639 |#2|))) (-15 -3564 (|#1|)) (-15 -1731 ((-112) |#1| |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) 8)) (-3111 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-1459 (($ $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4000 (($ |#1| $) 47 (|has| $ (-6 -4402))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4402)))) (-1475 (($ |#1| $) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4402)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3262 ((|#1| $) 39)) (-4300 (($ |#1| $) 40)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-1904 ((|#1| $) 41)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-3564 (($) 49) (($ (-639 |#1|)) 48)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 50)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1932 (($ (-639 |#1|)) 42)) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-1435 ((|#2| $ (-766) |#2|) 11)) (-1420 ((|#2| $ (-766)) 10)) (-1458 (($) 8)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 18)) (-1733 (((-112) $ $) 13)))
+(((-212 |#1| |#2|) (-13 (-1092) (-10 -8 (-15 -1458 ($)) (-15 -1420 (|#2| $ (-766))) (-15 -1435 (|#2| $ (-766) |#2|)))) (-916) (-1092)) (T -212))
+((-1458 (*1 *1) (-12 (-5 *1 (-212 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1092)))) (-1420 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *2 (-1092)) (-5 *1 (-212 *4 *2)) (-14 *4 (-916)))) (-1435 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-212 *4 *2)) (-14 *4 (-916)) (-4 *2 (-1092)))))
+(-13 (-1092) (-10 -8 (-15 -1458 ($)) (-15 -1420 (|#2| $ (-766))) (-15 -1435 (|#2| $ (-766) |#2|))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1359 (((-1261) $) 36) (((-1261) $ (-916) (-916)) 38)) (-2343 (($ $ (-984)) 19) (((-244 (-1150)) $ (-1168)) 15)) (-1479 (((-1261) $) 34)) (-4053 (((-857) $) 31) (($ (-639 |#1|)) 8)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $ $) 27)) (-1836 (($ $ $) 22)))
+(((-213 |#1|) (-13 (-1092) (-612 (-639 |#1|)) (-10 -8 (-15 -2343 ($ $ (-984))) (-15 -2343 ((-244 (-1150)) $ (-1168))) (-15 -1836 ($ $ $)) (-15 -1847 ($ $ $)) (-15 -1479 ((-1261) $)) (-15 -1359 ((-1261) $)) (-15 -1359 ((-1261) $ (-916) (-916))))) (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $)) (-15 -1359 ((-1261) $))))) (T -213))
+((-2343 (*1 *1 *1 *2) (-12 (-5 *2 (-984)) (-5 *1 (-213 *3)) (-4 *3 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $)) (-15 -1359 ((-1261) $))))))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-244 (-1150))) (-5 *1 (-213 *4)) (-4 *4 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ *3)) (-15 -1479 ((-1261) $)) (-15 -1359 ((-1261) $))))))) (-1836 (*1 *1 *1 *1) (-12 (-5 *1 (-213 *2)) (-4 *2 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $)) (-15 -1359 ((-1261) $))))))) (-1847 (*1 *1 *1 *1) (-12 (-5 *1 (-213 *2)) (-4 *2 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $)) (-15 -1359 ((-1261) $))))))) (-1479 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-213 *3)) (-4 *3 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 (*2 $)) (-15 -1359 (*2 $))))))) (-1359 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-213 *3)) (-4 *3 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 (*2 $)) (-15 -1359 (*2 $))))))) (-1359 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1261)) (-5 *1 (-213 *4)) (-4 *4 (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 (*2 $)) (-15 -1359 (*2 $))))))))
+(-13 (-1092) (-612 (-639 |#1|)) (-10 -8 (-15 -2343 ($ $ (-984))) (-15 -2343 ((-244 (-1150)) $ (-1168))) (-15 -1836 ($ $ $)) (-15 -1847 ($ $ $)) (-15 -1479 ((-1261) $)) (-15 -1359 ((-1261) $)) (-15 -1359 ((-1261) $ (-916) (-916)))))
+((-3072 ((|#2| |#4| (-1 |#2| |#2|)) 46)))
+(((-214 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3072 (|#2| |#4| (-1 |#2| |#2|)))) (-362) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|)) (T -214))
+((-3072 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-362)) (-4 *6 (-1232 (-406 *2))) (-4 *2 (-1232 *5)) (-5 *1 (-214 *5 *2 *6 *3)) (-4 *3 (-341 *5 *2 *6)))))
+(-10 -7 (-15 -3072 (|#2| |#4| (-1 |#2| |#2|))))
+((-2883 ((|#2| |#2| (-766) |#2|) 42)) (-3210 ((|#2| |#2| (-766) |#2|) 38)) (-3317 (((-639 |#2|) (-639 (-2 (|:| |deg| (-766)) (|:| -2723 |#2|)))) 56)) (-3318 (((-639 (-2 (|:| |deg| (-766)) (|:| -2723 |#2|))) |#2|) 52)) (-3811 (((-112) |#2|) 49)) (-3805 (((-417 |#2|) |#2|) 76)) (-1635 (((-417 |#2|) |#2|) 75)) (-3880 ((|#2| |#2| (-766) |#2|) 36)) (-1467 (((-2 (|:| |cont| |#1|) (|:| -2656 (-639 (-2 (|:| |irr| |#2|) (|:| -2794 (-562)))))) |#2| (-112)) 68)))
+(((-215 |#1| |#2|) (-10 -7 (-15 -1635 ((-417 |#2|) |#2|)) (-15 -3805 ((-417 |#2|) |#2|)) (-15 -1467 ((-2 (|:| |cont| |#1|) (|:| -2656 (-639 (-2 (|:| |irr| |#2|) (|:| -2794 (-562)))))) |#2| (-112))) (-15 -3318 ((-639 (-2 (|:| |deg| (-766)) (|:| -2723 |#2|))) |#2|)) (-15 -3317 ((-639 |#2|) (-639 (-2 (|:| |deg| (-766)) (|:| -2723 |#2|))))) (-15 -3880 (|#2| |#2| (-766) |#2|)) (-15 -3210 (|#2| |#2| (-766) |#2|)) (-15 -2883 (|#2| |#2| (-766) |#2|)) (-15 -3811 ((-112) |#2|))) (-348) (-1232 |#1|)) (T -215))
+((-3811 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-112)) (-5 *1 (-215 *4 *3)) (-4 *3 (-1232 *4)))) (-2883 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-215 *4 *2)) (-4 *2 (-1232 *4)))) (-3210 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-215 *4 *2)) (-4 *2 (-1232 *4)))) (-3880 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-215 *4 *2)) (-4 *2 (-1232 *4)))) (-3317 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| |deg| (-766)) (|:| -2723 *5)))) (-4 *5 (-1232 *4)) (-4 *4 (-348)) (-5 *2 (-639 *5)) (-5 *1 (-215 *4 *5)))) (-3318 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-639 (-2 (|:| |deg| (-766)) (|:| -2723 *3)))) (-5 *1 (-215 *4 *3)) (-4 *3 (-1232 *4)))) (-1467 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-348)) (-5 *2 (-2 (|:| |cont| *5) (|:| -2656 (-639 (-2 (|:| |irr| *3) (|:| -2794 (-562))))))) (-5 *1 (-215 *5 *3)) (-4 *3 (-1232 *5)))) (-3805 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-417 *3)) (-5 *1 (-215 *4 *3)) (-4 *3 (-1232 *4)))) (-1635 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-417 *3)) (-5 *1 (-215 *4 *3)) (-4 *3 (-1232 *4)))))
+(-10 -7 (-15 -1635 ((-417 |#2|) |#2|)) (-15 -3805 ((-417 |#2|) |#2|)) (-15 -1467 ((-2 (|:| |cont| |#1|) (|:| -2656 (-639 (-2 (|:| |irr| |#2|) (|:| -2794 (-562)))))) |#2| (-112))) (-15 -3318 ((-639 (-2 (|:| |deg| (-766)) (|:| -2723 |#2|))) |#2|)) (-15 -3317 ((-639 |#2|) (-639 (-2 (|:| |deg| (-766)) (|:| -2723 |#2|))))) (-15 -3880 (|#2| |#2| (-766) |#2|)) (-15 -3210 (|#2| |#2| (-766) |#2|)) (-15 -2883 (|#2| |#2| (-766) |#2|)) (-15 -3811 ((-112) |#2|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2300 (((-562) $) NIL (|has| (-562) (-306)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL (|has| (-562) (-815)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| (-562) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-562) (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| (-562) (-1033 (-562))))) (-3960 (((-562) $) NIL) (((-1168) $) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-562) (-1033 (-562)))) (((-562) $) NIL (|has| (-562) (-1033 (-562))))) (-1810 (($ $ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| (-562) (-544)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2696 (((-112) $) NIL (|has| (-562) (-815)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-562) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-562) (-881 (-378))))) (-4367 (((-112) $) NIL)) (-2957 (($ $) NIL)) (-4063 (((-562) $) NIL)) (-3828 (((-3 $ "failed") $) NIL (|has| (-562) (-1143)))) (-3855 (((-112) $) NIL (|has| (-562) (-815)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-562) (-845)))) (-4152 (($ (-1 (-562) (-562)) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| (-562) (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2561 (($ $) NIL (|has| (-562) (-306))) (((-406 (-562)) $) NIL)) (-3870 (((-562) $) NIL (|has| (-562) (-544)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-562)) (-639 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-562) (-562)) NIL (|has| (-562) (-308 (-562)))) (($ $ (-293 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-293 (-562)))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-1168)) (-639 (-562))) NIL (|has| (-562) (-513 (-1168) (-562)))) (($ $ (-1168) (-562)) NIL (|has| (-562) (-513 (-1168) (-562))))) (-2044 (((-766) $) NIL)) (-2343 (($ $ (-562)) NIL (|has| (-562) (-285 (-562) (-562))))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-1580 (($ $) NIL)) (-4079 (((-562) $) NIL)) (-3700 (($ (-406 (-562))) 9)) (-4208 (((-887 (-562)) $) NIL (|has| (-562) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-562) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-562) (-610 (-535)))) (((-378) $) NIL (|has| (-562) (-1017))) (((-224) $) NIL (|has| (-562) (-1017)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-562) (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) 8) (($ (-562)) NIL) (($ (-1168)) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL) (((-999 10) $) 10)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-562) (-904))) (|has| (-562) (-144))))) (-1568 (((-766)) NIL)) (-3636 (((-562) $) NIL (|has| (-562) (-544)))) (-3799 (((-112) $ $) NIL)) (-2757 (($ $) NIL (|has| (-562) (-815)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1771 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1761 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1859 (($ $ $) NIL) (($ (-562) (-562)) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-562) $) NIL) (($ $ (-562)) NIL)))
+(((-216) (-13 (-987 (-562)) (-609 (-406 (-562))) (-609 (-999 10)) (-10 -8 (-15 -2561 ((-406 (-562)) $)) (-15 -3700 ($ (-406 (-562))))))) (T -216))
+((-2561 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-216)))) (-3700 (*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-216)))))
+(-13 (-987 (-562)) (-609 (-406 (-562))) (-609 (-999 10)) (-10 -8 (-15 -2561 ((-406 (-562)) $)) (-15 -3700 ($ (-406 (-562))))))
+((-4041 (((-112) $ $) NIL)) (-2844 (((-1110) $) 13)) (-3696 (((-1150) $) NIL)) (-3757 (((-482) $) 10)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 25) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-1127) $) 15)) (-1733 (((-112) $ $) NIL)))
+(((-217) (-13 (-1075) (-10 -8 (-15 -3757 ((-482) $)) (-15 -2844 ((-1110) $)) (-15 -3265 ((-1127) $))))) (T -217))
+((-3757 (*1 *2 *1) (-12 (-5 *2 (-482)) (-5 *1 (-217)))) (-2844 (*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-217)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-217)))))
+(-13 (-1075) (-10 -8 (-15 -3757 ((-482) $)) (-15 -2844 ((-1110) $)) (-15 -3265 ((-1127) $))))
+((-3081 (((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1084 (-838 |#2|)) (-1150)) 28) (((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1084 (-838 |#2|))) 24)) (-3457 (((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1168) (-838 |#2|) (-838 |#2|) (-112)) 17)))
+(((-218 |#1| |#2|) (-10 -7 (-15 -3081 ((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1084 (-838 |#2|)))) (-15 -3081 ((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1084 (-838 |#2|)) (-1150))) (-15 -3457 ((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1168) (-838 |#2|) (-838 |#2|) (-112)))) (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-954) (-29 |#1|))) (T -218))
+((-3457 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1168)) (-5 *6 (-112)) (-4 *7 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-4 *3 (-13 (-1192) (-954) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-838 *3)) (|:| |f2| (-639 (-838 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-218 *7 *3)) (-5 *5 (-838 *3)))) (-3081 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1084 (-838 *3))) (-5 *5 (-1150)) (-4 *3 (-13 (-1192) (-954) (-29 *6))) (-4 *6 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |f1| (-838 *3)) (|:| |f2| (-639 (-838 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-218 *6 *3)))) (-3081 (*1 *2 *3 *4) (-12 (-5 *4 (-1084 (-838 *3))) (-4 *3 (-13 (-1192) (-954) (-29 *5))) (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |f1| (-838 *3)) (|:| |f2| (-639 (-838 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-218 *5 *3)))))
+(-10 -7 (-15 -3081 ((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1084 (-838 |#2|)))) (-15 -3081 ((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1084 (-838 |#2|)) (-1150))) (-15 -3457 ((-3 (|:| |f1| (-838 |#2|)) (|:| |f2| (-639 (-838 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1168) (-838 |#2|) (-838 |#2|) (-112))))
+((-3081 (((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-406 (-947 |#1|)))) (-1150)) 46) (((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-406 (-947 |#1|))))) 43) (((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-315 |#1|))) (-1150)) 47) (((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-315 |#1|)))) 20)))
+(((-219 |#1|) (-10 -7 (-15 -3081 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-315 |#1|))))) (-15 -3081 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-315 |#1|))) (-1150))) (-15 -3081 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-406 (-947 |#1|)))))) (-15 -3081 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-406 (-947 |#1|)))) (-1150)))) (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (T -219))
+((-3081 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1084 (-838 (-406 (-947 *6))))) (-5 *5 (-1150)) (-5 *3 (-406 (-947 *6))) (-4 *6 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |f1| (-838 (-315 *6))) (|:| |f2| (-639 (-838 (-315 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *6)))) (-3081 (*1 *2 *3 *4) (-12 (-5 *4 (-1084 (-838 (-406 (-947 *5))))) (-5 *3 (-406 (-947 *5))) (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |f1| (-838 (-315 *5))) (|:| |f2| (-639 (-838 (-315 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *5)))) (-3081 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-406 (-947 *6))) (-5 *4 (-1084 (-838 (-315 *6)))) (-5 *5 (-1150)) (-4 *6 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |f1| (-838 (-315 *6))) (|:| |f2| (-639 (-838 (-315 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *6)))) (-3081 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1084 (-838 (-315 *5)))) (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |f1| (-838 (-315 *5))) (|:| |f2| (-639 (-838 (-315 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *5)))))
+(-10 -7 (-15 -3081 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-315 |#1|))))) (-15 -3081 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-315 |#1|))) (-1150))) (-15 -3081 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-406 (-947 |#1|)))))) (-15 -3081 ((-3 (|:| |f1| (-838 (-315 |#1|))) (|:| |f2| (-639 (-838 (-315 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-406 (-947 |#1|)) (-1084 (-838 (-406 (-947 |#1|)))) (-1150))))
+((-1954 (((-2 (|:| -4201 (-1164 |#1|)) (|:| |deg| (-916))) (-1164 |#1|)) 21)) (-3525 (((-639 (-315 |#2|)) (-315 |#2|) (-916)) 42)))
+(((-220 |#1| |#2|) (-10 -7 (-15 -1954 ((-2 (|:| -4201 (-1164 |#1|)) (|:| |deg| (-916))) (-1164 |#1|))) (-15 -3525 ((-639 (-315 |#2|)) (-315 |#2|) (-916)))) (-1044) (-13 (-554) (-845))) (T -220))
+((-3525 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-4 *6 (-13 (-554) (-845))) (-5 *2 (-639 (-315 *6))) (-5 *1 (-220 *5 *6)) (-5 *3 (-315 *6)) (-4 *5 (-1044)))) (-1954 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-5 *2 (-2 (|:| -4201 (-1164 *4)) (|:| |deg| (-916)))) (-5 *1 (-220 *4 *5)) (-5 *3 (-1164 *4)) (-4 *5 (-13 (-554) (-845))))))
+(-10 -7 (-15 -1954 ((-2 (|:| -4201 (-1164 |#1|)) (|:| |deg| (-916))) (-1164 |#1|))) (-15 -3525 ((-639 (-315 |#2|)) (-315 |#2|) (-916))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1768 ((|#1| $) NIL)) (-2774 ((|#1| $) 25)) (-3735 (((-112) $ (-766)) NIL)) (-3329 (($) NIL T CONST)) (-2953 (($ $) NIL)) (-2673 (($ $) 31)) (-2571 ((|#1| |#1| $) NIL)) (-3767 ((|#1| $) NIL)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3641 (((-766) $) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-2078 ((|#1| $) NIL)) (-3607 ((|#1| |#1| $) 28)) (-2216 ((|#1| |#1| $) 30)) (-1581 (($ |#1| $) NIL)) (-3059 (((-766) $) 27)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2662 ((|#1| $) NIL)) (-4234 ((|#1| $) 26)) (-2712 ((|#1| $) 24)) (-2038 ((|#1| $) NIL)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3297 ((|#1| |#1| $) NIL)) (-3087 (((-112) $) 9)) (-1663 (($) NIL)) (-1903 ((|#1| $) NIL)) (-2891 (($) NIL) (($ (-639 |#1|)) 16)) (-2191 (((-766) $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-4311 ((|#1| $) 13)) (-4131 (($ (-639 |#1|)) NIL)) (-3690 ((|#1| $) NIL)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-221 |#1|) (-13 (-253 |#1|) (-10 -8 (-15 -2891 ($ (-639 |#1|))))) (-1092)) (T -221))
+((-2891 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-221 *3)))))
+(-13 (-253 |#1|) (-10 -8 (-15 -2891 ($ (-639 |#1|)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-4136 (($ (-315 |#1|)) 23)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1638 (((-112) $) NIL)) (-4048 (((-3 (-315 |#1|) "failed") $) NIL)) (-3960 (((-315 |#1|) $) NIL)) (-1600 (($ $) 31)) (-1694 (((-3 $ "failed") $) NIL)) (-4367 (((-112) $) NIL)) (-4152 (($ (-1 (-315 |#1|) (-315 |#1|)) $) NIL)) (-1573 (((-315 |#1|) $) NIL)) (-2820 (($ $) 30)) (-3696 (((-1150) $) NIL)) (-3941 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-3147 (($ (-766)) NIL)) (-2717 (($ $) 32)) (-2250 (((-562) $) NIL)) (-4053 (((-857) $) 57) (($ (-562)) NIL) (($ (-315 |#1|)) NIL)) (-2266 (((-315 |#1|) $ $) NIL)) (-1568 (((-766)) NIL)) (-2285 (($) 25 T CONST)) (-2294 (($) 50 T CONST)) (-1733 (((-112) $ $) 28)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 19)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 24) (($ (-315 |#1|) $) 18)))
+(((-222 |#1| |#2|) (-13 (-616 (-315 |#1|)) (-1033 (-315 |#1|)) (-10 -8 (-15 -1573 ((-315 |#1|) $)) (-15 -2820 ($ $)) (-15 -1600 ($ $)) (-15 -2266 ((-315 |#1|) $ $)) (-15 -3147 ($ (-766))) (-15 -3941 ((-112) $)) (-15 -1638 ((-112) $)) (-15 -2250 ((-562) $)) (-15 -4152 ($ (-1 (-315 |#1|) (-315 |#1|)) $)) (-15 -4136 ($ (-315 |#1|))) (-15 -2717 ($ $)))) (-13 (-1044) (-845)) (-639 (-1168))) (T -222))
+((-1573 (*1 *2 *1) (-12 (-5 *2 (-315 *3)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168))))) (-2820 (*1 *1 *1) (-12 (-5 *1 (-222 *2 *3)) (-4 *2 (-13 (-1044) (-845))) (-14 *3 (-639 (-1168))))) (-1600 (*1 *1 *1) (-12 (-5 *1 (-222 *2 *3)) (-4 *2 (-13 (-1044) (-845))) (-14 *3 (-639 (-1168))))) (-2266 (*1 *2 *1 *1) (-12 (-5 *2 (-315 *3)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168))))) (-3147 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168))))) (-3941 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168))))) (-1638 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168))))) (-2250 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168))))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-315 *3) (-315 *3))) (-4 *3 (-13 (-1044) (-845))) (-5 *1 (-222 *3 *4)) (-14 *4 (-639 (-1168))))) (-4136 (*1 *1 *2) (-12 (-5 *2 (-315 *3)) (-4 *3 (-13 (-1044) (-845))) (-5 *1 (-222 *3 *4)) (-14 *4 (-639 (-1168))))) (-2717 (*1 *1 *1) (-12 (-5 *1 (-222 *2 *3)) (-4 *2 (-13 (-1044) (-845))) (-14 *3 (-639 (-1168))))))
+(-13 (-616 (-315 |#1|)) (-1033 (-315 |#1|)) (-10 -8 (-15 -1573 ((-315 |#1|) $)) (-15 -2820 ($ $)) (-15 -1600 ($ $)) (-15 -2266 ((-315 |#1|) $ $)) (-15 -3147 ($ (-766))) (-15 -3941 ((-112) $)) (-15 -1638 ((-112) $)) (-15 -2250 ((-562) $)) (-15 -4152 ($ (-1 (-315 |#1|) (-315 |#1|)) $)) (-15 -4136 ($ (-315 |#1|))) (-15 -2717 ($ $))))
+((-1813 (((-112) (-1150)) 22)) (-3158 (((-3 (-838 |#2|) "failed") (-608 |#2|) |#2| (-838 |#2|) (-838 |#2|) (-112)) 32)) (-3289 (((-3 (-112) "failed") (-1164 |#2|) (-838 |#2|) (-838 |#2|) (-112)) 73) (((-3 (-112) "failed") (-947 |#1|) (-1168) (-838 |#2|) (-838 |#2|) (-112)) 74)))
+(((-223 |#1| |#2|) (-10 -7 (-15 -1813 ((-112) (-1150))) (-15 -3158 ((-3 (-838 |#2|) "failed") (-608 |#2|) |#2| (-838 |#2|) (-838 |#2|) (-112))) (-15 -3289 ((-3 (-112) "failed") (-947 |#1|) (-1168) (-838 |#2|) (-838 |#2|) (-112))) (-15 -3289 ((-3 (-112) "failed") (-1164 |#2|) (-838 |#2|) (-838 |#2|) (-112)))) (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-29 |#1|))) (T -223))
+((-3289 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1164 *6)) (-5 *4 (-838 *6)) (-4 *6 (-13 (-1192) (-29 *5))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-223 *5 *6)))) (-3289 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-947 *6)) (-5 *4 (-1168)) (-5 *5 (-838 *7)) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-4 *7 (-13 (-1192) (-29 *6))) (-5 *1 (-223 *6 *7)))) (-3158 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-838 *4)) (-5 *3 (-608 *4)) (-5 *5 (-112)) (-4 *4 (-13 (-1192) (-29 *6))) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-223 *6 *4)))) (-1813 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-112)) (-5 *1 (-223 *4 *5)) (-4 *5 (-13 (-1192) (-29 *4))))))
+(-10 -7 (-15 -1813 ((-112) (-1150))) (-15 -3158 ((-3 (-838 |#2|) "failed") (-608 |#2|) |#2| (-838 |#2|) (-838 |#2|) (-112))) (-15 -3289 ((-3 (-112) "failed") (-947 |#1|) (-1168) (-838 |#2|) (-838 |#2|) (-112))) (-15 -3289 ((-3 (-112) "failed") (-1164 |#2|) (-838 |#2|) (-838 |#2|) (-112))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 87)) (-2300 (((-562) $) 98)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-1302 (($ $) NIL)) (-2987 (($ $) 75)) (-4098 (($ $) 63)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1644 (($ $) 54)) (-1436 (((-112) $ $) NIL)) (-4206 (($ $) 73)) (-4074 (($ $) 61)) (-1587 (((-562) $) 115)) (-3013 (($ $) 78)) (-4120 (($ $) 65)) (-3329 (($) NIL T CONST)) (-3410 (($ $) NIL)) (-4048 (((-3 (-562) "failed") $) 114) (((-3 (-406 (-562)) "failed") $) 111)) (-3960 (((-562) $) 112) (((-406 (-562)) $) 109)) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) 91)) (-2310 (((-406 (-562)) $ (-766)) 107) (((-406 (-562)) $ (-766) (-766)) 106)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-3326 (((-916)) 27) (((-916) (-916)) NIL (|has| $ (-6 -4394)))) (-2696 (((-112) $) NIL)) (-4100 (($) 37)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL)) (-1993 (((-562) $) 33)) (-4367 (((-112) $) NIL)) (-1895 (($ $ (-562)) NIL)) (-4363 (($ $) NIL)) (-3855 (((-112) $) 86)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) 51) (($) 32 (-12 (-2234 (|has| $ (-6 -4386))) (-2234 (|has| $ (-6 -4394)))))) (-2993 (($ $ $) 50) (($) 31 (-12 (-2234 (|has| $ (-6 -4386))) (-2234 (|has| $ (-6 -4394)))))) (-3946 (((-562) $) 25)) (-1474 (($ $) 28)) (-2982 (($ $) 55)) (-4366 (($ $) 60)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-2898 (((-916) (-562)) NIL (|has| $ (-6 -4394)))) (-1709 (((-1112) $) 89)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2561 (($ $) NIL)) (-3870 (($ $) NIL)) (-4237 (($ (-562) (-562)) NIL) (($ (-562) (-562) (-916)) 99)) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1300 (((-562) $) 26)) (-1701 (($) 36)) (-3430 (($ $) 59)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-2244 (((-916)) NIL) (((-916) (-916)) NIL (|has| $ (-6 -4394)))) (-4029 (($ $ (-766)) NIL) (($ $) 92)) (-3719 (((-916) (-562)) NIL (|has| $ (-6 -4394)))) (-3022 (($ $) 76)) (-4130 (($ $) 66)) (-3000 (($ $) 77)) (-4108 (($ $) 64)) (-2977 (($ $) 74)) (-4087 (($ $) 62)) (-4208 (((-378) $) 103) (((-224) $) 100) (((-887 (-378)) $) NIL) (((-535) $) 43)) (-4053 (((-857) $) 40) (($ (-562)) 58) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-562)) 58) (($ (-406 (-562))) NIL)) (-1568 (((-766)) NIL)) (-3636 (($ $) NIL)) (-3573 (((-916)) 30) (((-916) (-916)) NIL (|has| $ (-6 -4394)))) (-3240 (((-916)) 23)) (-3054 (($ $) 81)) (-4165 (($ $) 69) (($ $ $) 108)) (-3799 (((-112) $ $) NIL)) (-3033 (($ $) 79)) (-4139 (($ $) 67)) (-3077 (($ $) 84)) (-4183 (($ $) 72)) (-1567 (($ $) 82)) (-4195 (($ $) 70)) (-3065 (($ $) 83)) (-4175 (($ $) 71)) (-3040 (($ $) 80)) (-4151 (($ $) 68)) (-2757 (($ $) 116)) (-2285 (($) 34 T CONST)) (-2294 (($) 35 T CONST)) (-2332 (((-1150) $) 17) (((-1150) $ (-112)) 19) (((-1261) (-817) $) 20) (((-1261) (-817) $ (-112)) 21)) (-2582 (($ $) 95)) (-3113 (($ $ (-766)) NIL) (($ $) NIL)) (-3291 (($ $ $) 97)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 52)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 44)) (-1859 (($ $ $) 85) (($ $ (-562)) 53)) (-1847 (($ $) 45) (($ $ $) 47)) (-1836 (($ $ $) 46)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 56) (($ $ (-406 (-562))) 127) (($ $ $) 57)) (* (($ (-916) $) 29) (($ (-766) $) NIL) (($ (-562) $) 49) (($ $ $) 48) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
+(((-224) (-13 (-403) (-232) (-823) (-1192) (-610 (-535)) (-10 -8 (-15 -1859 ($ $ (-562))) (-15 ** ($ $ $)) (-15 -1701 ($)) (-15 -1474 ($ $)) (-15 -2982 ($ $)) (-15 -4165 ($ $ $)) (-15 -2582 ($ $)) (-15 -3291 ($ $ $)) (-15 -2310 ((-406 (-562)) $ (-766))) (-15 -2310 ((-406 (-562)) $ (-766) (-766)))))) (T -224))
+((** (*1 *1 *1 *1) (-5 *1 (-224))) (-1859 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-224)))) (-1701 (*1 *1) (-5 *1 (-224))) (-1474 (*1 *1 *1) (-5 *1 (-224))) (-2982 (*1 *1 *1) (-5 *1 (-224))) (-4165 (*1 *1 *1 *1) (-5 *1 (-224))) (-2582 (*1 *1 *1) (-5 *1 (-224))) (-3291 (*1 *1 *1 *1) (-5 *1 (-224))) (-2310 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-224)))) (-2310 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-224)))))
+(-13 (-403) (-232) (-823) (-1192) (-610 (-535)) (-10 -8 (-15 -1859 ($ $ (-562))) (-15 ** ($ $ $)) (-15 -1701 ($)) (-15 -1474 ($ $)) (-15 -2982 ($ $)) (-15 -4165 ($ $ $)) (-15 -2582 ($ $)) (-15 -3291 ($ $ $)) (-15 -2310 ((-406 (-562)) $ (-766))) (-15 -2310 ((-406 (-562)) $ (-766) (-766)))))
+((-2146 (((-168 (-224)) (-766) (-168 (-224))) 11) (((-224) (-766) (-224)) 12)) (-3018 (((-168 (-224)) (-168 (-224))) 13) (((-224) (-224)) 14)) (-4009 (((-168 (-224)) (-168 (-224)) (-168 (-224))) 19) (((-224) (-224) (-224)) 22)) (-1904 (((-168 (-224)) (-168 (-224))) 25) (((-224) (-224)) 24)) (-3733 (((-168 (-224)) (-168 (-224)) (-168 (-224))) 43) (((-224) (-224) (-224)) 35)) (-2831 (((-168 (-224)) (-168 (-224)) (-168 (-224))) 48) (((-224) (-224) (-224)) 45)) (-4287 (((-168 (-224)) (-168 (-224)) (-168 (-224))) 15) (((-224) (-224) (-224)) 16)) (-1623 (((-168 (-224)) (-168 (-224)) (-168 (-224))) 17) (((-224) (-224) (-224)) 18)) (-2001 (((-168 (-224)) (-168 (-224))) 60) (((-224) (-224)) 59)) (-3950 (((-224) (-224)) 54) (((-168 (-224)) (-168 (-224))) 58)) (-2582 (((-168 (-224)) (-168 (-224))) 8) (((-224) (-224)) 9)) (-3291 (((-168 (-224)) (-168 (-224)) (-168 (-224))) 30) (((-224) (-224) (-224)) 26)))
+(((-225) (-10 -7 (-15 -2582 ((-224) (-224))) (-15 -2582 ((-168 (-224)) (-168 (-224)))) (-15 -3291 ((-224) (-224) (-224))) (-15 -3291 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -3018 ((-224) (-224))) (-15 -3018 ((-168 (-224)) (-168 (-224)))) (-15 -1904 ((-224) (-224))) (-15 -1904 ((-168 (-224)) (-168 (-224)))) (-15 -2146 ((-224) (-766) (-224))) (-15 -2146 ((-168 (-224)) (-766) (-168 (-224)))) (-15 -4287 ((-224) (-224) (-224))) (-15 -4287 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -3733 ((-224) (-224) (-224))) (-15 -3733 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -1623 ((-224) (-224) (-224))) (-15 -1623 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -2831 ((-224) (-224) (-224))) (-15 -2831 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -3950 ((-168 (-224)) (-168 (-224)))) (-15 -3950 ((-224) (-224))) (-15 -2001 ((-224) (-224))) (-15 -2001 ((-168 (-224)) (-168 (-224)))) (-15 -4009 ((-224) (-224) (-224))) (-15 -4009 ((-168 (-224)) (-168 (-224)) (-168 (-224)))))) (T -225))
+((-4009 (*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-4009 (*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-2001 (*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-2001 (*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-3950 (*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-3950 (*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-2831 (*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-2831 (*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-1623 (*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-1623 (*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-3733 (*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-3733 (*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-4287 (*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-4287 (*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-2146 (*1 *2 *3 *2) (-12 (-5 *2 (-168 (-224))) (-5 *3 (-766)) (-5 *1 (-225)))) (-2146 (*1 *2 *3 *2) (-12 (-5 *2 (-224)) (-5 *3 (-766)) (-5 *1 (-225)))) (-1904 (*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-1904 (*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-3018 (*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-3018 (*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-3291 (*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-3291 (*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))) (-2582 (*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))) (-2582 (*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225)))))
+(-10 -7 (-15 -2582 ((-224) (-224))) (-15 -2582 ((-168 (-224)) (-168 (-224)))) (-15 -3291 ((-224) (-224) (-224))) (-15 -3291 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -3018 ((-224) (-224))) (-15 -3018 ((-168 (-224)) (-168 (-224)))) (-15 -1904 ((-224) (-224))) (-15 -1904 ((-168 (-224)) (-168 (-224)))) (-15 -2146 ((-224) (-766) (-224))) (-15 -2146 ((-168 (-224)) (-766) (-168 (-224)))) (-15 -4287 ((-224) (-224) (-224))) (-15 -4287 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -3733 ((-224) (-224) (-224))) (-15 -3733 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -1623 ((-224) (-224) (-224))) (-15 -1623 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -2831 ((-224) (-224) (-224))) (-15 -2831 ((-168 (-224)) (-168 (-224)) (-168 (-224)))) (-15 -3950 ((-168 (-224)) (-168 (-224)))) (-15 -3950 ((-224) (-224))) (-15 -2001 ((-224) (-224))) (-15 -2001 ((-168 (-224)) (-168 (-224)))) (-15 -4009 ((-224) (-224) (-224))) (-15 -4009 ((-168 (-224)) (-168 (-224)) (-168 (-224)))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2910 (($ (-766) (-766)) NIL)) (-2955 (($ $ $) NIL)) (-2309 (($ (-1256 |#1|)) NIL) (($ $) NIL)) (-3818 (($ |#1| |#1| |#1|) 32)) (-4097 (((-112) $) NIL)) (-1975 (($ $ (-562) (-562)) NIL)) (-2842 (($ $ (-562) (-562)) NIL)) (-2167 (($ $ (-562) (-562) (-562) (-562)) NIL)) (-2058 (($ $) NIL)) (-2819 (((-112) $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-1980 (($ $ (-562) (-562) $) NIL)) (-4200 ((|#1| $ (-562) (-562) |#1|) NIL) (($ $ (-639 (-562)) (-639 (-562)) $) NIL)) (-2267 (($ $ (-562) (-1256 |#1|)) NIL)) (-3320 (($ $ (-562) (-1256 |#1|)) NIL)) (-1978 (($ |#1| |#1| |#1|) 31)) (-4369 (($ (-766) |#1|) NIL)) (-3329 (($) NIL T CONST)) (-2239 (($ $) NIL (|has| |#1| (-306)))) (-3511 (((-1256 |#1|) $ (-562)) NIL)) (-3313 (($ |#1|) 30)) (-1802 (($ |#1|) 29)) (-3896 (($ |#1|) 28)) (-2172 (((-766) $) NIL (|has| |#1| (-554)))) (-1507 ((|#1| $ (-562) (-562) |#1|) NIL)) (-1420 ((|#1| $ (-562) (-562)) NIL)) (-1720 (((-639 |#1|) $) NIL)) (-4244 (((-766) $) NIL (|has| |#1| (-554)))) (-3821 (((-639 (-1256 |#1|)) $) NIL (|has| |#1| (-554)))) (-2698 (((-766) $) NIL)) (-1458 (($ (-766) (-766) |#1|) NIL)) (-2708 (((-766) $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1622 ((|#1| $) NIL (|has| |#1| (-6 (-4405 "*"))))) (-1808 (((-562) $) NIL)) (-2028 (((-562) $) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3269 (((-562) $) NIL)) (-2727 (((-562) $) NIL)) (-2884 (($ (-639 (-639 |#1|))) 11)) (-1491 (($ (-1 |#1| |#1|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2247 (((-639 (-639 |#1|)) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-2463 (((-3 $ "failed") $) NIL (|has| |#1| (-362)))) (-3050 (($) 12)) (-3713 (($ $ $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3510 (($ $ |#1|) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ (-562) (-562)) NIL) ((|#1| $ (-562) (-562) |#1|) NIL) (($ $ (-639 (-562)) (-639 (-562))) NIL)) (-3168 (($ (-639 |#1|)) NIL) (($ (-639 $)) NIL)) (-1752 (((-112) $) NIL)) (-3282 ((|#1| $) NIL (|has| |#1| (-6 (-4405 "*"))))) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-2208 (((-1256 |#1|) $ (-562)) NIL)) (-4053 (($ (-1256 |#1|)) NIL) (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1996 (((-112) $) NIL)) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $ $) NIL) (($ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-562) $) NIL) (((-1256 |#1|) $ (-1256 |#1|)) 15) (((-1256 |#1|) (-1256 |#1|) $) NIL) (((-938 |#1|) $ (-938 |#1|)) 20)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-226 |#1|) (-13 (-681 |#1| (-1256 |#1|) (-1256 |#1|)) (-10 -8 (-15 * ((-938 |#1|) $ (-938 |#1|))) (-15 -3050 ($)) (-15 -3896 ($ |#1|)) (-15 -1802 ($ |#1|)) (-15 -3313 ($ |#1|)) (-15 -1978 ($ |#1| |#1| |#1|)) (-15 -3818 ($ |#1| |#1| |#1|)))) (-13 (-362) (-1192))) (T -226))
+((* (*1 *2 *1 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192))) (-5 *1 (-226 *3)))) (-3050 (*1 *1) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))) (-3896 (*1 *1 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))) (-1802 (*1 *1 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))) (-3313 (*1 *1 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))) (-1978 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))) (-3818 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))))
+(-13 (-681 |#1| (-1256 |#1|) (-1256 |#1|)) (-10 -8 (-15 * ((-938 |#1|) $ (-938 |#1|))) (-15 -3050 ($)) (-15 -3896 ($ |#1|)) (-15 -1802 ($ |#1|)) (-15 -3313 ($ |#1|)) (-15 -1978 ($ |#1| |#1| |#1|)) (-15 -3818 ($ |#1| |#1| |#1|))))
+((-2968 (($ (-1 (-112) |#2|) $) 15)) (-3729 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 24)) (-1932 (($) NIL) (($ (-639 |#2|)) 11)) (-1733 (((-112) $ $) 22)))
+(((-227 |#1| |#2|) (-10 -8 (-15 -2968 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3729 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3729 (|#1| |#2| |#1|)) (-15 -1932 (|#1| (-639 |#2|))) (-15 -1932 (|#1|)) (-15 -1733 ((-112) |#1| |#1|))) (-228 |#2|) (-1092)) (T -227))
+NIL
+(-10 -8 (-15 -2968 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3729 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3729 (|#1| |#2| |#1|)) (-15 -1932 (|#1| (-639 |#2|))) (-15 -1932 (|#1|)) (-15 -1733 ((-112) |#1| |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) 8)) (-2968 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-1459 (($ $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-3729 (($ |#1| $) 47 (|has| $ (-6 -4403))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4403)))) (-1475 (($ |#1| $) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4403)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-2078 ((|#1| $) 39)) (-1581 (($ |#1| $) 40)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-2038 ((|#1| $) 41)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-1932 (($) 49) (($ (-639 |#1|)) 48)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 50)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-4131 (($ (-639 |#1|)) 42)) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-228 |#1|) (-139) (-1092)) (T -228))
NIL
(-13 (-234 |t#1|))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-234 |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-4029 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-766)) 11) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) 19) (($ $ (-766)) NIL) (($ $) 16)) (-3114 (($ $ (-1 |#2| |#2|)) 12) (($ $ (-1 |#2| |#2|) (-766)) 14) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL) (($ $ (-766)) NIL) (($ $) NIL)))
-(((-229 |#1| |#2|) (-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -3114 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -3114 (|#1| |#1| (-1168))) (-15 -3114 (|#1| |#1| (-639 (-1168)))) (-15 -3114 (|#1| |#1| (-1168) (-766))) (-15 -3114 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -3114 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -3114 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|)))) (-230 |#2|) (-1044)) (T -229))
+((-4029 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-766)) 11) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) 19) (($ $ (-766)) NIL) (($ $) 16)) (-3113 (($ $ (-1 |#2| |#2|)) 12) (($ $ (-1 |#2| |#2|) (-766)) 14) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL) (($ $ (-766)) NIL) (($ $) NIL)))
+(((-229 |#1| |#2|) (-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -3113 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -3113 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -3113 (|#1| |#1| (-1168))) (-15 -3113 (|#1| |#1| (-639 (-1168)))) (-15 -3113 (|#1| |#1| (-1168) (-766))) (-15 -3113 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -3113 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -3113 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|)))) (-230 |#2|) (-1044)) (T -229))
NIL
-(-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -3114 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -3114 (|#1| |#1| (-1168))) (-15 -3114 (|#1| |#1| (-639 (-1168)))) (-15 -3114 (|#1| |#1| (-1168) (-766))) (-15 -3114 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -3114 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -3114 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4029 (($ $ (-1 |#1| |#1|)) 52) (($ $ (-1 |#1| |#1|) (-766)) 51) (($ $ (-639 (-1168)) (-639 (-766))) 44 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 43 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 42 (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) 41 (|has| |#1| (-895 (-1168)))) (($ $ (-766)) 39 (|has| |#1| (-232))) (($ $) 37 (|has| |#1| (-232)))) (-4054 (((-857) $) 11) (($ (-562)) 29)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-1 |#1| |#1|)) 50) (($ $ (-1 |#1| |#1|) (-766)) 49) (($ $ (-639 (-1168)) (-639 (-766))) 48 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 47 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 46 (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) 45 (|has| |#1| (-895 (-1168)))) (($ $ (-766)) 40 (|has| |#1| (-232))) (($ $) 38 (|has| |#1| (-232)))) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+(-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -3113 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -3113 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -3113 (|#1| |#1| (-1168))) (-15 -3113 (|#1| |#1| (-639 (-1168)))) (-15 -3113 (|#1| |#1| (-1168) (-766))) (-15 -3113 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -3113 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -3113 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4029 (($ $ (-1 |#1| |#1|)) 52) (($ $ (-1 |#1| |#1|) (-766)) 51) (($ $ (-639 (-1168)) (-639 (-766))) 44 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 43 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 42 (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) 41 (|has| |#1| (-895 (-1168)))) (($ $ (-766)) 39 (|has| |#1| (-232))) (($ $) 37 (|has| |#1| (-232)))) (-4053 (((-857) $) 11) (($ (-562)) 29)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-1 |#1| |#1|)) 50) (($ $ (-1 |#1| |#1|) (-766)) 49) (($ $ (-639 (-1168)) (-639 (-766))) 48 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 47 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 46 (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) 45 (|has| |#1| (-895 (-1168)))) (($ $ (-766)) 40 (|has| |#1| (-232))) (($ $) 38 (|has| |#1| (-232)))) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-230 |#1|) (-139) (-1044)) (T -230))
-((-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-230 *3)) (-4 *3 (-1044)))) (-4029 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-766)) (-4 *1 (-230 *4)) (-4 *4 (-1044)))) (-3114 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-230 *3)) (-4 *3 (-1044)))) (-3114 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-766)) (-4 *1 (-230 *4)) (-4 *4 (-1044)))))
-(-13 (-1044) (-10 -8 (-15 -4029 ($ $ (-1 |t#1| |t#1|))) (-15 -4029 ($ $ (-1 |t#1| |t#1|) (-766))) (-15 -3114 ($ $ (-1 |t#1| |t#1|))) (-15 -3114 ($ $ (-1 |t#1| |t#1|) (-766))) (IF (|has| |t#1| (-232)) (-6 (-232)) |%noBranch|) (IF (|has| |t#1| (-895 (-1168))) (-6 (-895 (-1168))) |%noBranch|)))
+((-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-230 *3)) (-4 *3 (-1044)))) (-4029 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-766)) (-4 *1 (-230 *4)) (-4 *4 (-1044)))) (-3113 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-230 *3)) (-4 *3 (-1044)))) (-3113 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-766)) (-4 *1 (-230 *4)) (-4 *4 (-1044)))))
+(-13 (-1044) (-10 -8 (-15 -4029 ($ $ (-1 |t#1| |t#1|))) (-15 -4029 ($ $ (-1 |t#1| |t#1|) (-766))) (-15 -3113 ($ $ (-1 |t#1| |t#1|))) (-15 -3113 ($ $ (-1 |t#1| |t#1|) (-766))) (IF (|has| |t#1| (-232)) (-6 (-232)) |%noBranch|) (IF (|has| |t#1| (-895 (-1168))) (-6 (-895 (-1168))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-232) |has| |#1| (-232)) ((-642 $) . T) ((-721) . T) ((-895 (-1168)) |has| |#1| (-895 (-1168))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4029 (($ $) NIL) (($ $ (-766)) 10)) (-3114 (($ $) 8) (($ $ (-766)) 12)))
-(((-231 |#1|) (-10 -8 (-15 -3114 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-766))) (-15 -3114 (|#1| |#1|)) (-15 -4029 (|#1| |#1|))) (-232)) (T -231))
+((-4029 (($ $) NIL) (($ $ (-766)) 10)) (-3113 (($ $) 8) (($ $ (-766)) 12)))
+(((-231 |#1|) (-10 -8 (-15 -3113 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-766))) (-15 -3113 (|#1| |#1|)) (-15 -4029 (|#1| |#1|))) (-232)) (T -231))
NIL
-(-10 -8 (-15 -3114 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-766))) (-15 -3114 (|#1| |#1|)) (-15 -4029 (|#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4029 (($ $) 38) (($ $ (-766)) 36)) (-4054 (((-857) $) 11) (($ (-562)) 29)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $) 37) (($ $ (-766)) 35)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+(-10 -8 (-15 -3113 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-766))) (-15 -3113 (|#1| |#1|)) (-15 -4029 (|#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4029 (($ $) 38) (($ $ (-766)) 36)) (-4053 (((-857) $) 11) (($ (-562)) 29)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $) 37) (($ $ (-766)) 35)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-232) (-139)) (T -232))
-((-4029 (*1 *1 *1) (-4 *1 (-232))) (-3114 (*1 *1 *1) (-4 *1 (-232))) (-4029 (*1 *1 *1 *2) (-12 (-4 *1 (-232)) (-5 *2 (-766)))) (-3114 (*1 *1 *1 *2) (-12 (-4 *1 (-232)) (-5 *2 (-766)))))
-(-13 (-1044) (-10 -8 (-15 -4029 ($ $)) (-15 -3114 ($ $)) (-15 -4029 ($ $ (-766))) (-15 -3114 ($ $ (-766)))))
+((-4029 (*1 *1 *1) (-4 *1 (-232))) (-3113 (*1 *1 *1) (-4 *1 (-232))) (-4029 (*1 *1 *1 *2) (-12 (-4 *1 (-232)) (-5 *2 (-766)))) (-3113 (*1 *1 *1 *2) (-12 (-4 *1 (-232)) (-5 *2 (-766)))))
+(-13 (-1044) (-10 -8 (-15 -4029 ($ $)) (-15 -3113 ($ $)) (-15 -4029 ($ $ (-766))) (-15 -3113 ($ $ (-766)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-642 $) . T) ((-721) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-3564 (($) 12) (($ (-639 |#2|)) NIL)) (-4220 (($ $) 14)) (-4066 (($ (-639 |#2|)) 10)) (-4054 (((-857) $) 21)))
-(((-233 |#1| |#2|) (-10 -8 (-15 -4054 ((-857) |#1|)) (-15 -3564 (|#1| (-639 |#2|))) (-15 -3564 (|#1|)) (-15 -4066 (|#1| (-639 |#2|))) (-15 -4220 (|#1| |#1|))) (-234 |#2|) (-1092)) (T -233))
+((-1932 (($) 12) (($ (-639 |#2|)) NIL)) (-4220 (($ $) 14)) (-4064 (($ (-639 |#2|)) 10)) (-4053 (((-857) $) 21)))
+(((-233 |#1| |#2|) (-10 -8 (-15 -4053 ((-857) |#1|)) (-15 -1932 (|#1| (-639 |#2|))) (-15 -1932 (|#1|)) (-15 -4064 (|#1| (-639 |#2|))) (-15 -4220 (|#1| |#1|))) (-234 |#2|) (-1092)) (T -233))
NIL
-(-10 -8 (-15 -4054 ((-857) |#1|)) (-15 -3564 (|#1| (-639 |#2|))) (-15 -3564 (|#1|)) (-15 -4066 (|#1| (-639 |#2|))) (-15 -4220 (|#1| |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) 8)) (-3111 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-1459 (($ $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4000 (($ |#1| $) 47 (|has| $ (-6 -4402))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4402)))) (-1475 (($ |#1| $) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4402)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3262 ((|#1| $) 39)) (-4300 (($ |#1| $) 40)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-1904 ((|#1| $) 41)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-3564 (($) 49) (($ (-639 |#1|)) 48)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 50)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1932 (($ (-639 |#1|)) 42)) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+(-10 -8 (-15 -4053 ((-857) |#1|)) (-15 -1932 (|#1| (-639 |#2|))) (-15 -1932 (|#1|)) (-15 -4064 (|#1| (-639 |#2|))) (-15 -4220 (|#1| |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) 8)) (-2968 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-1459 (($ $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-3729 (($ |#1| $) 47 (|has| $ (-6 -4403))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4403)))) (-1475 (($ |#1| $) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4403)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-2078 ((|#1| $) 39)) (-1581 (($ |#1| $) 40)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-2038 ((|#1| $) 41)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-1932 (($) 49) (($ (-639 |#1|)) 48)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 50)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-4131 (($ (-639 |#1|)) 42)) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-234 |#1|) (-139) (-1092)) (T -234))
-((-3564 (*1 *1) (-12 (-4 *1 (-234 *2)) (-4 *2 (-1092)))) (-3564 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-234 *3)))) (-4000 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4402)) (-4 *1 (-234 *2)) (-4 *2 (-1092)))) (-4000 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4402)) (-4 *1 (-234 *3)) (-4 *3 (-1092)))) (-3111 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4402)) (-4 *1 (-234 *3)) (-4 *3 (-1092)))))
-(-13 (-107 |t#1|) (-150 |t#1|) (-10 -8 (-15 -3564 ($)) (-15 -3564 ($ (-639 |t#1|))) (IF (|has| $ (-6 -4402)) (PROGN (-15 -4000 ($ |t#1| $)) (-15 -4000 ($ (-1 (-112) |t#1|) $)) (-15 -3111 ($ (-1 (-112) |t#1|) $))) |%noBranch|)))
+((-1932 (*1 *1) (-12 (-4 *1 (-234 *2)) (-4 *2 (-1092)))) (-1932 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-234 *3)))) (-3729 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-234 *2)) (-4 *2 (-1092)))) (-3729 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4403)) (-4 *1 (-234 *3)) (-4 *3 (-1092)))) (-2968 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4403)) (-4 *1 (-234 *3)) (-4 *3 (-1092)))))
+(-13 (-107 |t#1|) (-150 |t#1|) (-10 -8 (-15 -1932 ($)) (-15 -1932 ($ (-639 |t#1|))) (IF (|has| $ (-6 -4403)) (PROGN (-15 -3729 ($ |t#1| $)) (-15 -3729 ($ (-1 (-112) |t#1|) $)) (-15 -2968 ($ (-1 (-112) |t#1|) $))) |%noBranch|)))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-2147 (((-2 (|:| |varOrder| (-639 (-1168))) (|:| |inhom| (-3 (-639 (-1256 (-766))) "failed")) (|:| |hom| (-639 (-1256 (-766))))) (-293 (-947 (-562)))) 27)))
-(((-235) (-10 -7 (-15 -2147 ((-2 (|:| |varOrder| (-639 (-1168))) (|:| |inhom| (-3 (-639 (-1256 (-766))) "failed")) (|:| |hom| (-639 (-1256 (-766))))) (-293 (-947 (-562))))))) (T -235))
-((-2147 (*1 *2 *3) (-12 (-5 *3 (-293 (-947 (-562)))) (-5 *2 (-2 (|:| |varOrder| (-639 (-1168))) (|:| |inhom| (-3 (-639 (-1256 (-766))) "failed")) (|:| |hom| (-639 (-1256 (-766)))))) (-5 *1 (-235)))))
-(-10 -7 (-15 -2147 ((-2 (|:| |varOrder| (-639 (-1168))) (|:| |inhom| (-3 (-639 (-1256 (-766))) "failed")) (|:| |hom| (-639 (-1256 (-766))))) (-293 (-947 (-562))))))
-((-1382 (((-766)) 51)) (-2406 (((-2 (|:| -1545 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 $) (-1256 $)) 49) (((-683 |#3|) (-683 $)) 41) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL)) (-3627 (((-133)) 57)) (-4029 (($ $ (-1 |#3| |#3|) (-766)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL) (($ $ (-766)) NIL) (($ $) NIL)) (-4054 (((-1256 |#3|) $) NIL) (($ |#3|) NIL) (((-857) $) NIL) (($ (-562)) 12) (($ (-406 (-562))) NIL)) (-2579 (((-766)) 15)) (-1859 (($ $ |#3|) 54)))
-(((-236 |#1| |#2| |#3|) (-10 -8 (-15 -4054 (|#1| (-406 (-562)))) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|)) (-15 -2579 ((-766))) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -2406 ((-683 (-562)) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -4054 (|#1| |#3|)) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|) (-766))) (-15 -2406 ((-683 |#3|) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 |#1|) (-1256 |#1|))) (-15 -1382 ((-766))) (-15 -1859 (|#1| |#1| |#3|)) (-15 -3627 ((-133))) (-15 -4054 ((-1256 |#3|) |#1|))) (-237 |#2| |#3|) (-766) (-1207)) (T -236))
-((-3627 (*1 *2) (-12 (-14 *4 (-766)) (-4 *5 (-1207)) (-5 *2 (-133)) (-5 *1 (-236 *3 *4 *5)) (-4 *3 (-237 *4 *5)))) (-1382 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1207)) (-5 *2 (-766)) (-5 *1 (-236 *3 *4 *5)) (-4 *3 (-237 *4 *5)))) (-2579 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1207)) (-5 *2 (-766)) (-5 *1 (-236 *3 *4 *5)) (-4 *3 (-237 *4 *5)))))
-(-10 -8 (-15 -4054 (|#1| (-406 (-562)))) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|)) (-15 -2579 ((-766))) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -2406 ((-683 (-562)) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -4054 (|#1| |#3|)) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|) (-766))) (-15 -2406 ((-683 |#3|) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 |#1|) (-1256 |#1|))) (-15 -1382 ((-766))) (-15 -1859 (|#1| |#1| |#3|)) (-15 -3627 ((-133))) (-15 -4054 ((-1256 |#3|) |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#2| (-1092)))) (-1952 (((-112) $) 72 (|has| |#2| (-130)))) (-3901 (($ (-916)) 125 (|has| |#2| (-1044)))) (-3052 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4403)))) (-3659 (($ $ $) 121 (|has| |#2| (-788)))) (-3214 (((-3 $ "failed") $ $) 74 (|has| |#2| (-130)))) (-4336 (((-112) $ (-766)) 8)) (-1382 (((-766)) 107 (|has| |#2| (-367)))) (-2277 (((-562) $) 119 (|has| |#2| (-843)))) (-4200 ((|#2| $ (-562) |#2|) 52 (|has| $ (-6 -4403)))) (-1800 (($) 7 T CONST)) (-4048 (((-3 (-562) "failed") $) 67 (-2246 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-3 (-406 (-562)) "failed") $) 64 (-2246 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (((-3 |#2| "failed") $) 61 (|has| |#2| (-1092)))) (-3961 (((-562) $) 66 (-2246 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-406 (-562)) $) 63 (-2246 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) ((|#2| $) 62 (|has| |#2| (-1092)))) (-2406 (((-683 (-562)) (-683 $)) 106 (-2246 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 105 (-2246 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) 104 (|has| |#2| (-1044))) (((-683 |#2|) (-683 $)) 103 (|has| |#2| (-1044)))) (-3668 (((-3 $ "failed") $) 79 (|has| |#2| (-721)))) (-1448 (($) 110 (|has| |#2| (-367)))) (-1505 ((|#2| $ (-562) |#2|) 53 (|has| $ (-6 -4403)))) (-1420 ((|#2| $ (-562)) 51)) (-3519 (((-112) $) 117 (|has| |#2| (-843)))) (-1720 (((-639 |#2|) $) 30 (|has| $ (-6 -4402)))) (-1957 (((-112) $) 81 (|has| |#2| (-721)))) (-3392 (((-112) $) 118 (|has| |#2| (-843)))) (-3292 (((-112) $ (-766)) 9)) (-4197 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 116 (-4037 (|has| |#2| (-843)) (|has| |#2| (-788))))) (-1912 (((-639 |#2|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#2| $) 27 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 115 (-4037 (|has| |#2| (-843)) (|has| |#2| (-788))))) (-1490 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#2| |#2|) $) 35)) (-1999 (((-916) $) 109 (|has| |#2| (-367)))) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#2| (-1092)))) (-2093 (((-639 (-562)) $) 46)) (-1570 (((-112) (-562) $) 47)) (-2466 (($ (-916)) 108 (|has| |#2| (-367)))) (-1709 (((-1112) $) 21 (|has| |#2| (-1092)))) (-1421 ((|#2| $) 42 (|has| (-562) (-845)))) (-2716 (($ $ |#2|) 41 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#2|))) 26 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) 25 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) 23 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#2| $) 45 (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-2411 (((-639 |#2|) $) 48)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#2| $ (-562) |#2|) 50) ((|#2| $ (-562)) 49)) (-4177 ((|#2| $ $) 124 (|has| |#2| (-1044)))) (-1679 (($ (-1256 |#2|)) 126)) (-3627 (((-133)) 123 (|has| |#2| (-362)))) (-4029 (($ $) 98 (-2246 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) 96 (-2246 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) 94 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) 93 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) 92 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) 91 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) 84 (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) 83 (|has| |#2| (-1044)))) (-1723 (((-766) (-1 (-112) |#2|) $) 31 (|has| $ (-6 -4402))) (((-766) |#2| $) 28 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4054 (((-1256 |#2|) $) 127) (($ (-562)) 68 (-4037 (-2246 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092))) (|has| |#2| (-1044)))) (($ (-406 (-562))) 65 (-2246 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (($ |#2|) 60 (|has| |#2| (-1092))) (((-857) $) 18 (|has| |#2| (-609 (-857))))) (-2579 (((-766)) 102 (|has| |#2| (-1044)))) (-1744 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4402)))) (-3526 (($ $) 120 (|has| |#2| (-843)))) (-2286 (($) 71 (|has| |#2| (-130)) CONST)) (-2294 (($) 82 (|has| |#2| (-721)) CONST)) (-3114 (($ $) 97 (-2246 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) 95 (-2246 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) 90 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) 89 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) 88 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) 87 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) 86 (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) 85 (|has| |#2| (-1044)))) (-1798 (((-112) $ $) 113 (-4037 (|has| |#2| (-843)) (|has| |#2| (-788))))) (-1772 (((-112) $ $) 112 (-4037 (|has| |#2| (-843)) (|has| |#2| (-788))))) (-1731 (((-112) $ $) 20 (|has| |#2| (-1092)))) (-1785 (((-112) $ $) 114 (-4037 (|has| |#2| (-843)) (|has| |#2| (-788))))) (-1759 (((-112) $ $) 111 (-4037 (|has| |#2| (-843)) (|has| |#2| (-788))))) (-1859 (($ $ |#2|) 122 (|has| |#2| (-362)))) (-1848 (($ $ $) 100 (|has| |#2| (-1044))) (($ $) 99 (|has| |#2| (-1044)))) (-1835 (($ $ $) 69 (|has| |#2| (-25)))) (** (($ $ (-766)) 80 (|has| |#2| (-721))) (($ $ (-916)) 77 (|has| |#2| (-721)))) (* (($ (-562) $) 101 (|has| |#2| (-1044))) (($ $ $) 78 (|has| |#2| (-721))) (($ $ |#2|) 76 (|has| |#2| (-721))) (($ |#2| $) 75 (|has| |#2| (-721))) (($ (-766) $) 73 (|has| |#2| (-130))) (($ (-916) $) 70 (|has| |#2| (-25)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-2750 (((-2 (|:| |varOrder| (-639 (-1168))) (|:| |inhom| (-3 (-639 (-1256 (-766))) "failed")) (|:| |hom| (-639 (-1256 (-766))))) (-293 (-947 (-562)))) 27)))
+(((-235) (-10 -7 (-15 -2750 ((-2 (|:| |varOrder| (-639 (-1168))) (|:| |inhom| (-3 (-639 (-1256 (-766))) "failed")) (|:| |hom| (-639 (-1256 (-766))))) (-293 (-947 (-562))))))) (T -235))
+((-2750 (*1 *2 *3) (-12 (-5 *3 (-293 (-947 (-562)))) (-5 *2 (-2 (|:| |varOrder| (-639 (-1168))) (|:| |inhom| (-3 (-639 (-1256 (-766))) "failed")) (|:| |hom| (-639 (-1256 (-766)))))) (-5 *1 (-235)))))
+(-10 -7 (-15 -2750 ((-2 (|:| |varOrder| (-639 (-1168))) (|:| |inhom| (-3 (-639 (-1256 (-766))) "failed")) (|:| |hom| (-639 (-1256 (-766))))) (-293 (-947 (-562))))))
+((-1382 (((-766)) 51)) (-3449 (((-2 (|:| -1767 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 $) (-1256 $)) 49) (((-683 |#3|) (-683 $)) 41) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL)) (-4340 (((-133)) 57)) (-4029 (($ $ (-1 |#3| |#3|) (-766)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL) (($ $ (-766)) NIL) (($ $) NIL)) (-4053 (((-1256 |#3|) $) NIL) (($ |#3|) NIL) (((-857) $) NIL) (($ (-562)) 12) (($ (-406 (-562))) NIL)) (-1568 (((-766)) 15)) (-1859 (($ $ |#3|) 54)))
+(((-236 |#1| |#2| |#3|) (-10 -8 (-15 -4053 (|#1| (-406 (-562)))) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|)) (-15 -1568 ((-766))) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -3449 ((-683 (-562)) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -4053 (|#1| |#3|)) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|) (-766))) (-15 -3449 ((-683 |#3|) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 |#1|) (-1256 |#1|))) (-15 -1382 ((-766))) (-15 -1859 (|#1| |#1| |#3|)) (-15 -4340 ((-133))) (-15 -4053 ((-1256 |#3|) |#1|))) (-237 |#2| |#3|) (-766) (-1207)) (T -236))
+((-4340 (*1 *2) (-12 (-14 *4 (-766)) (-4 *5 (-1207)) (-5 *2 (-133)) (-5 *1 (-236 *3 *4 *5)) (-4 *3 (-237 *4 *5)))) (-1382 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1207)) (-5 *2 (-766)) (-5 *1 (-236 *3 *4 *5)) (-4 *3 (-237 *4 *5)))) (-1568 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1207)) (-5 *2 (-766)) (-5 *1 (-236 *3 *4 *5)) (-4 *3 (-237 *4 *5)))))
+(-10 -8 (-15 -4053 (|#1| (-406 (-562)))) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|)) (-15 -1568 ((-766))) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -3449 ((-683 (-562)) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -4053 (|#1| |#3|)) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|) (-766))) (-15 -3449 ((-683 |#3|) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 |#1|) (-1256 |#1|))) (-15 -1382 ((-766))) (-15 -1859 (|#1| |#1| |#3|)) (-15 -4340 ((-133))) (-15 -4053 ((-1256 |#3|) |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#2| (-1092)))) (-4325 (((-112) $) 72 (|has| |#2| (-130)))) (-2211 (($ (-916)) 125 (|has| |#2| (-1044)))) (-3655 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4404)))) (-1593 (($ $ $) 121 (|has| |#2| (-788)))) (-2781 (((-3 $ "failed") $ $) 74 (|has| |#2| (-130)))) (-3735 (((-112) $ (-766)) 8)) (-1382 (((-766)) 107 (|has| |#2| (-367)))) (-1587 (((-562) $) 119 (|has| |#2| (-843)))) (-4200 ((|#2| $ (-562) |#2|) 52 (|has| $ (-6 -4404)))) (-3329 (($) 7 T CONST)) (-4048 (((-3 (-562) "failed") $) 67 (-2245 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-3 (-406 (-562)) "failed") $) 64 (-2245 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (((-3 |#2| "failed") $) 61 (|has| |#2| (-1092)))) (-3960 (((-562) $) 66 (-2245 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-406 (-562)) $) 63 (-2245 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) ((|#2| $) 62 (|has| |#2| (-1092)))) (-3449 (((-683 (-562)) (-683 $)) 106 (-2245 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 105 (-2245 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) 104 (|has| |#2| (-1044))) (((-683 |#2|) (-683 $)) 103 (|has| |#2| (-1044)))) (-1694 (((-3 $ "failed") $) 79 (|has| |#2| (-721)))) (-1447 (($) 110 (|has| |#2| (-367)))) (-1507 ((|#2| $ (-562) |#2|) 53 (|has| $ (-6 -4404)))) (-1420 ((|#2| $ (-562)) 51)) (-2696 (((-112) $) 117 (|has| |#2| (-843)))) (-1720 (((-639 |#2|) $) 30 (|has| $ (-6 -4403)))) (-4367 (((-112) $) 81 (|has| |#2| (-721)))) (-3855 (((-112) $) 118 (|has| |#2| (-843)))) (-4172 (((-112) $ (-766)) 9)) (-1849 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 116 (-4037 (|has| |#2| (-843)) (|has| |#2| (-788))))) (-2123 (((-639 |#2|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#2| $) 27 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 115 (-4037 (|has| |#2| (-843)) (|has| |#2| (-788))))) (-1491 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#2| |#2|) $) 35)) (-3549 (((-916) $) 109 (|has| |#2| (-367)))) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#2| (-1092)))) (-3336 (((-639 (-562)) $) 46)) (-1987 (((-112) (-562) $) 47)) (-2464 (($ (-916)) 108 (|has| |#2| (-367)))) (-1709 (((-1112) $) 21 (|has| |#2| (-1092)))) (-1421 ((|#2| $) 42 (|has| (-562) (-845)))) (-3510 (($ $ |#2|) 41 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#2|))) 26 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) 25 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) 23 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#2| $) 45 (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-2366 (((-639 |#2|) $) 48)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#2| $ (-562) |#2|) 50) ((|#2| $ (-562)) 49)) (-2852 ((|#2| $ $) 124 (|has| |#2| (-1044)))) (-1678 (($ (-1256 |#2|)) 126)) (-4340 (((-133)) 123 (|has| |#2| (-362)))) (-4029 (($ $) 98 (-2245 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) 96 (-2245 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) 94 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) 93 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) 92 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) 91 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) 84 (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) 83 (|has| |#2| (-1044)))) (-1723 (((-766) (-1 (-112) |#2|) $) 31 (|has| $ (-6 -4403))) (((-766) |#2| $) 28 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4053 (((-1256 |#2|) $) 127) (($ (-562)) 68 (-4037 (-2245 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092))) (|has| |#2| (-1044)))) (($ (-406 (-562))) 65 (-2245 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (($ |#2|) 60 (|has| |#2| (-1092))) (((-857) $) 18 (|has| |#2| (-609 (-857))))) (-1568 (((-766)) 102 (|has| |#2| (-1044)))) (-2879 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4403)))) (-2757 (($ $) 120 (|has| |#2| (-843)))) (-2285 (($) 71 (|has| |#2| (-130)) CONST)) (-2294 (($) 82 (|has| |#2| (-721)) CONST)) (-3113 (($ $) 97 (-2245 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) 95 (-2245 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) 90 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) 89 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) 88 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) 87 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) 86 (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) 85 (|has| |#2| (-1044)))) (-1798 (((-112) $ $) 113 (-4037 (|has| |#2| (-843)) (|has| |#2| (-788))))) (-1771 (((-112) $ $) 112 (-4037 (|has| |#2| (-843)) (|has| |#2| (-788))))) (-1733 (((-112) $ $) 20 (|has| |#2| (-1092)))) (-1785 (((-112) $ $) 114 (-4037 (|has| |#2| (-843)) (|has| |#2| (-788))))) (-1761 (((-112) $ $) 111 (-4037 (|has| |#2| (-843)) (|has| |#2| (-788))))) (-1859 (($ $ |#2|) 122 (|has| |#2| (-362)))) (-1847 (($ $ $) 100 (|has| |#2| (-1044))) (($ $) 99 (|has| |#2| (-1044)))) (-1836 (($ $ $) 69 (|has| |#2| (-25)))) (** (($ $ (-766)) 80 (|has| |#2| (-721))) (($ $ (-916)) 77 (|has| |#2| (-721)))) (* (($ (-562) $) 101 (|has| |#2| (-1044))) (($ $ $) 78 (|has| |#2| (-721))) (($ $ |#2|) 76 (|has| |#2| (-721))) (($ |#2| $) 75 (|has| |#2| (-721))) (($ (-766) $) 73 (|has| |#2| (-130))) (($ (-916) $) 70 (|has| |#2| (-25)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-237 |#1| |#2|) (-139) (-766) (-1207)) (T -237))
-((-1679 (*1 *1 *2) (-12 (-5 *2 (-1256 *4)) (-4 *4 (-1207)) (-4 *1 (-237 *3 *4)))) (-3901 (*1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-237 *3 *4)) (-4 *4 (-1044)) (-4 *4 (-1207)))) (-4177 (*1 *2 *1 *1) (-12 (-4 *1 (-237 *3 *2)) (-4 *2 (-1207)) (-4 *2 (-1044)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-237 *3 *2)) (-4 *2 (-1207)) (-4 *2 (-721)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-237 *3 *2)) (-4 *2 (-1207)) (-4 *2 (-721)))))
-(-13 (-600 (-562) |t#2|) (-609 (-1256 |t#2|)) (-10 -8 (-6 -4402) (-15 -1679 ($ (-1256 |t#2|))) (IF (|has| |t#2| (-1092)) (-6 (-410 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-1044)) (PROGN (-6 (-111 |t#2| |t#2|)) (-6 (-230 |t#2|)) (-6 (-376 |t#2|)) (-15 -3901 ($ (-916))) (-15 -4177 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-130)) (-6 (-130)) |%noBranch|) (IF (|has| |t#2| (-721)) (PROGN (-6 (-721)) (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-367)) (-6 (-367)) |%noBranch|) (IF (|has| |t#2| (-171)) (PROGN (-6 (-38 |t#2|)) (-6 (-171))) |%noBranch|) (IF (|has| |t#2| (-6 -4399)) (-6 -4399) |%noBranch|) (IF (|has| |t#2| (-843)) (-6 (-843)) |%noBranch|) (IF (|has| |t#2| (-788)) (-6 (-788)) |%noBranch|) (IF (|has| |t#2| (-362)) (-6 (-1263 |t#2|)) |%noBranch|)))
+((-1678 (*1 *1 *2) (-12 (-5 *2 (-1256 *4)) (-4 *4 (-1207)) (-4 *1 (-237 *3 *4)))) (-2211 (*1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-237 *3 *4)) (-4 *4 (-1044)) (-4 *4 (-1207)))) (-2852 (*1 *2 *1 *1) (-12 (-4 *1 (-237 *3 *2)) (-4 *2 (-1207)) (-4 *2 (-1044)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-237 *3 *2)) (-4 *2 (-1207)) (-4 *2 (-721)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-237 *3 *2)) (-4 *2 (-1207)) (-4 *2 (-721)))))
+(-13 (-600 (-562) |t#2|) (-609 (-1256 |t#2|)) (-10 -8 (-6 -4403) (-15 -1678 ($ (-1256 |t#2|))) (IF (|has| |t#2| (-1092)) (-6 (-410 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-1044)) (PROGN (-6 (-111 |t#2| |t#2|)) (-6 (-230 |t#2|)) (-6 (-376 |t#2|)) (-15 -2211 ($ (-916))) (-15 -2852 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-130)) (-6 (-130)) |%noBranch|) (IF (|has| |t#2| (-721)) (PROGN (-6 (-721)) (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-367)) (-6 (-367)) |%noBranch|) (IF (|has| |t#2| (-171)) (PROGN (-6 (-38 |t#2|)) (-6 (-171))) |%noBranch|) (IF (|has| |t#2| (-6 -4400)) (-6 -4400) |%noBranch|) (IF (|has| |t#2| (-843)) (-6 (-843)) |%noBranch|) (IF (|has| |t#2| (-788)) (-6 (-788)) |%noBranch|) (IF (|has| |t#2| (-362)) (-6 (-1263 |t#2|)) |%noBranch|)))
(((-21) -4037 (|has| |#2| (-1044)) (|has| |#2| (-843)) (|has| |#2| (-362)) (|has| |#2| (-171))) ((-23) -4037 (|has| |#2| (-1044)) (|has| |#2| (-843)) (|has| |#2| (-788)) (|has| |#2| (-362)) (|has| |#2| (-171)) (|has| |#2| (-130))) ((-25) -4037 (|has| |#2| (-1044)) (|has| |#2| (-843)) (|has| |#2| (-788)) (|has| |#2| (-362)) (|has| |#2| (-171)) (|has| |#2| (-130)) (|has| |#2| (-25))) ((-34) . T) ((-38 |#2|) |has| |#2| (-171)) ((-102) -4037 (|has| |#2| (-1092)) (|has| |#2| (-1044)) (|has| |#2| (-843)) (|has| |#2| (-788)) (|has| |#2| (-721)) (|has| |#2| (-367)) (|has| |#2| (-362)) (|has| |#2| (-171)) (|has| |#2| (-130)) (|has| |#2| (-25))) ((-111 |#2| |#2|) -4037 (|has| |#2| (-1044)) (|has| |#2| (-362)) (|has| |#2| (-171))) ((-111 $ $) |has| |#2| (-171)) ((-130) -4037 (|has| |#2| (-1044)) (|has| |#2| (-843)) (|has| |#2| (-788)) (|has| |#2| (-362)) (|has| |#2| (-171)) (|has| |#2| (-130))) ((-612 #0=(-406 (-562))) -12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092))) ((-612 (-562)) -4037 (|has| |#2| (-1044)) (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092))) (|has| |#2| (-843)) (|has| |#2| (-171))) ((-612 |#2|) -4037 (|has| |#2| (-1092)) (|has| |#2| (-171))) ((-609 (-857)) -4037 (|has| |#2| (-1092)) (|has| |#2| (-1044)) (|has| |#2| (-843)) (|has| |#2| (-788)) (|has| |#2| (-721)) (|has| |#2| (-367)) (|has| |#2| (-362)) (|has| |#2| (-171)) (|has| |#2| (-609 (-857))) (|has| |#2| (-130)) (|has| |#2| (-25))) ((-609 (-1256 |#2|)) . T) ((-171) |has| |#2| (-171)) ((-230 |#2|) |has| |#2| (-1044)) ((-232) -12 (|has| |#2| (-232)) (|has| |#2| (-1044))) ((-285 #1=(-562) |#2|) . T) ((-287 #1# |#2|) . T) ((-308 |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-367) |has| |#2| (-367)) ((-376 |#2|) |has| |#2| (-1044)) ((-410 |#2|) |has| |#2| (-1092)) ((-488 |#2|) . T) ((-600 #1# |#2|) . T) ((-513 |#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-642 |#2|) -4037 (|has| |#2| (-1044)) (|has| |#2| (-362)) (|has| |#2| (-171))) ((-642 $) -4037 (|has| |#2| (-1044)) (|has| |#2| (-843)) (|has| |#2| (-171))) ((-635 (-562)) -12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044))) ((-635 |#2|) |has| |#2| (-1044)) ((-712 |#2|) -4037 (|has| |#2| (-362)) (|has| |#2| (-171))) ((-721) -4037 (|has| |#2| (-1044)) (|has| |#2| (-843)) (|has| |#2| (-721)) (|has| |#2| (-171))) ((-786) |has| |#2| (-843)) ((-787) -4037 (|has| |#2| (-843)) (|has| |#2| (-788))) ((-788) |has| |#2| (-788)) ((-789) -4037 (|has| |#2| (-843)) (|has| |#2| (-788))) ((-790) -4037 (|has| |#2| (-843)) (|has| |#2| (-788))) ((-843) |has| |#2| (-843)) ((-845) -4037 (|has| |#2| (-843)) (|has| |#2| (-788))) ((-895 (-1168)) -12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044))) ((-1033 #0#) -12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092))) ((-1033 (-562)) -12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092))) ((-1033 |#2|) |has| |#2| (-1092)) ((-1050 |#2|) -4037 (|has| |#2| (-1044)) (|has| |#2| (-362)) (|has| |#2| (-171))) ((-1050 $) |has| |#2| (-171)) ((-1044) -4037 (|has| |#2| (-1044)) (|has| |#2| (-843)) (|has| |#2| (-171))) ((-1051) -4037 (|has| |#2| (-1044)) (|has| |#2| (-843)) (|has| |#2| (-171))) ((-1104) -4037 (|has| |#2| (-1044)) (|has| |#2| (-843)) (|has| |#2| (-721)) (|has| |#2| (-171))) ((-1092) -4037 (|has| |#2| (-1092)) (|has| |#2| (-1044)) (|has| |#2| (-843)) (|has| |#2| (-788)) (|has| |#2| (-721)) (|has| |#2| (-367)) (|has| |#2| (-362)) (|has| |#2| (-171)) (|has| |#2| (-130)) (|has| |#2| (-25))) ((-1207) . T) ((-1263 |#2|) |has| |#2| (-362)))
-((-2578 (((-239 |#1| |#3|) (-1 |#3| |#2| |#3|) (-239 |#1| |#2|) |#3|) 21)) (-1955 ((|#3| (-1 |#3| |#2| |#3|) (-239 |#1| |#2|) |#3|) 23)) (-4152 (((-239 |#1| |#3|) (-1 |#3| |#2|) (-239 |#1| |#2|)) 18)))
-(((-238 |#1| |#2| |#3|) (-10 -7 (-15 -2578 ((-239 |#1| |#3|) (-1 |#3| |#2| |#3|) (-239 |#1| |#2|) |#3|)) (-15 -1955 (|#3| (-1 |#3| |#2| |#3|) (-239 |#1| |#2|) |#3|)) (-15 -4152 ((-239 |#1| |#3|) (-1 |#3| |#2|) (-239 |#1| |#2|)))) (-766) (-1207) (-1207)) (T -238))
-((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-239 *5 *6)) (-14 *5 (-766)) (-4 *6 (-1207)) (-4 *7 (-1207)) (-5 *2 (-239 *5 *7)) (-5 *1 (-238 *5 *6 *7)))) (-1955 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-239 *5 *6)) (-14 *5 (-766)) (-4 *6 (-1207)) (-4 *2 (-1207)) (-5 *1 (-238 *5 *6 *2)))) (-2578 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-239 *6 *7)) (-14 *6 (-766)) (-4 *7 (-1207)) (-4 *5 (-1207)) (-5 *2 (-239 *6 *5)) (-5 *1 (-238 *6 *7 *5)))))
-(-10 -7 (-15 -2578 ((-239 |#1| |#3|) (-1 |#3| |#2| |#3|) (-239 |#1| |#2|) |#3|)) (-15 -1955 (|#3| (-1 |#3| |#2| |#3|) (-239 |#1| |#2|) |#3|)) (-15 -4152 ((-239 |#1| |#3|) (-1 |#3| |#2|) (-239 |#1| |#2|))))
-((-4041 (((-112) $ $) NIL (|has| |#2| (-1092)))) (-1952 (((-112) $) NIL (|has| |#2| (-130)))) (-3901 (($ (-916)) 56 (|has| |#2| (-1044)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-3659 (($ $ $) 60 (|has| |#2| (-788)))) (-3214 (((-3 $ "failed") $ $) 49 (|has| |#2| (-130)))) (-4336 (((-112) $ (-766)) 17)) (-1382 (((-766)) NIL (|has| |#2| (-367)))) (-2277 (((-562) $) NIL (|has| |#2| (-843)))) (-4200 ((|#2| $ (-562) |#2|) NIL (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (((-3 |#2| "failed") $) 29 (|has| |#2| (-1092)))) (-3961 (((-562) $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-406 (-562)) $) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) ((|#2| $) 27 (|has| |#2| (-1092)))) (-2406 (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL (|has| |#2| (-1044))) (((-683 |#2|) (-683 $)) NIL (|has| |#2| (-1044)))) (-3668 (((-3 $ "failed") $) 53 (|has| |#2| (-721)))) (-1448 (($) NIL (|has| |#2| (-367)))) (-1505 ((|#2| $ (-562) |#2|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#2| $ (-562)) 51)) (-3519 (((-112) $) NIL (|has| |#2| (-843)))) (-1720 (((-639 |#2|) $) 15 (|has| $ (-6 -4402)))) (-1957 (((-112) $) NIL (|has| |#2| (-721)))) (-3392 (((-112) $) NIL (|has| |#2| (-843)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) 20 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1912 (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-3874 (((-562) $) 50 (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1490 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#2| |#2|) $) 41)) (-1999 (((-916) $) NIL (|has| |#2| (-367)))) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#2| (-1092)))) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-2466 (($ (-916)) NIL (|has| |#2| (-367)))) (-1709 (((-1112) $) NIL (|has| |#2| (-1092)))) (-1421 ((|#2| $) NIL (|has| (-562) (-845)))) (-2716 (($ $ |#2|) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#2|) $) 24 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-2411 (((-639 |#2|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#2| $ (-562) |#2|) NIL) ((|#2| $ (-562)) 21)) (-4177 ((|#2| $ $) NIL (|has| |#2| (-1044)))) (-1679 (($ (-1256 |#2|)) 18)) (-3627 (((-133)) NIL (|has| |#2| (-362)))) (-4029 (($ $) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1044)))) (-1723 (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-1256 |#2|) $) 10) (($ (-562)) NIL (-4037 (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092))) (|has| |#2| (-1044)))) (($ (-406 (-562))) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (($ |#2|) 13 (|has| |#2| (-1092))) (((-857) $) NIL (|has| |#2| (-609 (-857))))) (-2579 (((-766)) NIL (|has| |#2| (-1044)))) (-1744 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-3526 (($ $) NIL (|has| |#2| (-843)))) (-2286 (($) 35 (|has| |#2| (-130)) CONST)) (-2294 (($) 38 (|has| |#2| (-721)) CONST)) (-3114 (($ $) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1044)))) (-1798 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1772 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1731 (((-112) $ $) 26 (|has| |#2| (-1092)))) (-1785 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1759 (((-112) $ $) 58 (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1848 (($ $ $) NIL (|has| |#2| (-1044))) (($ $) NIL (|has| |#2| (-1044)))) (-1835 (($ $ $) 33 (|has| |#2| (-25)))) (** (($ $ (-766)) NIL (|has| |#2| (-721))) (($ $ (-916)) NIL (|has| |#2| (-721)))) (* (($ (-562) $) NIL (|has| |#2| (-1044))) (($ $ $) 44 (|has| |#2| (-721))) (($ $ |#2|) 42 (|has| |#2| (-721))) (($ |#2| $) 43 (|has| |#2| (-721))) (($ (-766) $) NIL (|has| |#2| (-130))) (($ (-916) $) NIL (|has| |#2| (-25)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-1555 (((-239 |#1| |#3|) (-1 |#3| |#2| |#3|) (-239 |#1| |#2|) |#3|) 21)) (-1954 ((|#3| (-1 |#3| |#2| |#3|) (-239 |#1| |#2|) |#3|) 23)) (-4152 (((-239 |#1| |#3|) (-1 |#3| |#2|) (-239 |#1| |#2|)) 18)))
+(((-238 |#1| |#2| |#3|) (-10 -7 (-15 -1555 ((-239 |#1| |#3|) (-1 |#3| |#2| |#3|) (-239 |#1| |#2|) |#3|)) (-15 -1954 (|#3| (-1 |#3| |#2| |#3|) (-239 |#1| |#2|) |#3|)) (-15 -4152 ((-239 |#1| |#3|) (-1 |#3| |#2|) (-239 |#1| |#2|)))) (-766) (-1207) (-1207)) (T -238))
+((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-239 *5 *6)) (-14 *5 (-766)) (-4 *6 (-1207)) (-4 *7 (-1207)) (-5 *2 (-239 *5 *7)) (-5 *1 (-238 *5 *6 *7)))) (-1954 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-239 *5 *6)) (-14 *5 (-766)) (-4 *6 (-1207)) (-4 *2 (-1207)) (-5 *1 (-238 *5 *6 *2)))) (-1555 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-239 *6 *7)) (-14 *6 (-766)) (-4 *7 (-1207)) (-4 *5 (-1207)) (-5 *2 (-239 *6 *5)) (-5 *1 (-238 *6 *7 *5)))))
+(-10 -7 (-15 -1555 ((-239 |#1| |#3|) (-1 |#3| |#2| |#3|) (-239 |#1| |#2|) |#3|)) (-15 -1954 (|#3| (-1 |#3| |#2| |#3|) (-239 |#1| |#2|) |#3|)) (-15 -4152 ((-239 |#1| |#3|) (-1 |#3| |#2|) (-239 |#1| |#2|))))
+((-4041 (((-112) $ $) NIL (|has| |#2| (-1092)))) (-4325 (((-112) $) NIL (|has| |#2| (-130)))) (-2211 (($ (-916)) 56 (|has| |#2| (-1044)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1593 (($ $ $) 60 (|has| |#2| (-788)))) (-2781 (((-3 $ "failed") $ $) 49 (|has| |#2| (-130)))) (-3735 (((-112) $ (-766)) 17)) (-1382 (((-766)) NIL (|has| |#2| (-367)))) (-1587 (((-562) $) NIL (|has| |#2| (-843)))) (-4200 ((|#2| $ (-562) |#2|) NIL (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (((-3 |#2| "failed") $) 29 (|has| |#2| (-1092)))) (-3960 (((-562) $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-406 (-562)) $) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) ((|#2| $) 27 (|has| |#2| (-1092)))) (-3449 (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL (|has| |#2| (-1044))) (((-683 |#2|) (-683 $)) NIL (|has| |#2| (-1044)))) (-1694 (((-3 $ "failed") $) 53 (|has| |#2| (-721)))) (-1447 (($) NIL (|has| |#2| (-367)))) (-1507 ((|#2| $ (-562) |#2|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#2| $ (-562)) 51)) (-2696 (((-112) $) NIL (|has| |#2| (-843)))) (-1720 (((-639 |#2|) $) 15 (|has| $ (-6 -4403)))) (-4367 (((-112) $) NIL (|has| |#2| (-721)))) (-3855 (((-112) $) NIL (|has| |#2| (-843)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) 20 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-2123 (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-1929 (((-562) $) 50 (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1491 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#2| |#2|) $) 41)) (-3549 (((-916) $) NIL (|has| |#2| (-367)))) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#2| (-1092)))) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-2464 (($ (-916)) NIL (|has| |#2| (-367)))) (-1709 (((-1112) $) NIL (|has| |#2| (-1092)))) (-1421 ((|#2| $) NIL (|has| (-562) (-845)))) (-3510 (($ $ |#2|) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#2|) $) 24 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-2366 (((-639 |#2|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#2| $ (-562) |#2|) NIL) ((|#2| $ (-562)) 21)) (-2852 ((|#2| $ $) NIL (|has| |#2| (-1044)))) (-1678 (($ (-1256 |#2|)) 18)) (-4340 (((-133)) NIL (|has| |#2| (-362)))) (-4029 (($ $) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1044)))) (-1723 (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-1256 |#2|) $) 10) (($ (-562)) NIL (-4037 (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092))) (|has| |#2| (-1044)))) (($ (-406 (-562))) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (($ |#2|) 13 (|has| |#2| (-1092))) (((-857) $) NIL (|has| |#2| (-609 (-857))))) (-1568 (((-766)) NIL (|has| |#2| (-1044)))) (-2879 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-2757 (($ $) NIL (|has| |#2| (-843)))) (-2285 (($) 35 (|has| |#2| (-130)) CONST)) (-2294 (($) 38 (|has| |#2| (-721)) CONST)) (-3113 (($ $) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1044)))) (-1798 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1771 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1733 (((-112) $ $) 26 (|has| |#2| (-1092)))) (-1785 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1761 (((-112) $ $) 58 (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1847 (($ $ $) NIL (|has| |#2| (-1044))) (($ $) NIL (|has| |#2| (-1044)))) (-1836 (($ $ $) 33 (|has| |#2| (-25)))) (** (($ $ (-766)) NIL (|has| |#2| (-721))) (($ $ (-916)) NIL (|has| |#2| (-721)))) (* (($ (-562) $) NIL (|has| |#2| (-1044))) (($ $ $) 44 (|has| |#2| (-721))) (($ $ |#2|) 42 (|has| |#2| (-721))) (($ |#2| $) 43 (|has| |#2| (-721))) (($ (-766) $) NIL (|has| |#2| (-130))) (($ (-916) $) NIL (|has| |#2| (-25)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-239 |#1| |#2|) (-237 |#1| |#2|) (-766) (-1207)) (T -239))
NIL
(-237 |#1| |#2|)
-((-2658 (((-562) (-639 (-1150))) 24) (((-562) (-1150)) 19)) (-2594 (((-1261) (-639 (-1150))) 29) (((-1261) (-1150)) 28)) (-1765 (((-1150)) 14)) (-4062 (((-1150) (-562) (-1150)) 16)) (-2328 (((-639 (-1150)) (-639 (-1150)) (-562) (-1150)) 25) (((-1150) (-1150) (-562) (-1150)) 23)) (-3983 (((-639 (-1150)) (-639 (-1150))) 13) (((-639 (-1150)) (-1150)) 11)))
-(((-240) (-10 -7 (-15 -3983 ((-639 (-1150)) (-1150))) (-15 -3983 ((-639 (-1150)) (-639 (-1150)))) (-15 -1765 ((-1150))) (-15 -4062 ((-1150) (-562) (-1150))) (-15 -2328 ((-1150) (-1150) (-562) (-1150))) (-15 -2328 ((-639 (-1150)) (-639 (-1150)) (-562) (-1150))) (-15 -2594 ((-1261) (-1150))) (-15 -2594 ((-1261) (-639 (-1150)))) (-15 -2658 ((-562) (-1150))) (-15 -2658 ((-562) (-639 (-1150)))))) (T -240))
-((-2658 (*1 *2 *3) (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-562)) (-5 *1 (-240)))) (-2658 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-562)) (-5 *1 (-240)))) (-2594 (*1 *2 *3) (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1261)) (-5 *1 (-240)))) (-2594 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-240)))) (-2328 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-639 (-1150))) (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *1 (-240)))) (-2328 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1150)) (-5 *3 (-562)) (-5 *1 (-240)))) (-4062 (*1 *2 *3 *2) (-12 (-5 *2 (-1150)) (-5 *3 (-562)) (-5 *1 (-240)))) (-1765 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-240)))) (-3983 (*1 *2 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-240)))) (-3983 (*1 *2 *3) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-240)) (-5 *3 (-1150)))))
-(-10 -7 (-15 -3983 ((-639 (-1150)) (-1150))) (-15 -3983 ((-639 (-1150)) (-639 (-1150)))) (-15 -1765 ((-1150))) (-15 -4062 ((-1150) (-562) (-1150))) (-15 -2328 ((-1150) (-1150) (-562) (-1150))) (-15 -2328 ((-639 (-1150)) (-639 (-1150)) (-562) (-1150))) (-15 -2594 ((-1261) (-1150))) (-15 -2594 ((-1261) (-639 (-1150)))) (-15 -2658 ((-562) (-1150))) (-15 -2658 ((-562) (-639 (-1150)))))
+((-2980 (((-562) (-639 (-1150))) 24) (((-562) (-1150)) 19)) (-2593 (((-1261) (-639 (-1150))) 29) (((-1261) (-1150)) 28)) (-3029 (((-1150)) 14)) (-3051 (((-1150) (-562) (-1150)) 16)) (-2328 (((-639 (-1150)) (-639 (-1150)) (-562) (-1150)) 25) (((-1150) (-1150) (-562) (-1150)) 23)) (-3982 (((-639 (-1150)) (-639 (-1150))) 13) (((-639 (-1150)) (-1150)) 11)))
+(((-240) (-10 -7 (-15 -3982 ((-639 (-1150)) (-1150))) (-15 -3982 ((-639 (-1150)) (-639 (-1150)))) (-15 -3029 ((-1150))) (-15 -3051 ((-1150) (-562) (-1150))) (-15 -2328 ((-1150) (-1150) (-562) (-1150))) (-15 -2328 ((-639 (-1150)) (-639 (-1150)) (-562) (-1150))) (-15 -2593 ((-1261) (-1150))) (-15 -2593 ((-1261) (-639 (-1150)))) (-15 -2980 ((-562) (-1150))) (-15 -2980 ((-562) (-639 (-1150)))))) (T -240))
+((-2980 (*1 *2 *3) (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-562)) (-5 *1 (-240)))) (-2980 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-562)) (-5 *1 (-240)))) (-2593 (*1 *2 *3) (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1261)) (-5 *1 (-240)))) (-2593 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-240)))) (-2328 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-639 (-1150))) (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *1 (-240)))) (-2328 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1150)) (-5 *3 (-562)) (-5 *1 (-240)))) (-3051 (*1 *2 *3 *2) (-12 (-5 *2 (-1150)) (-5 *3 (-562)) (-5 *1 (-240)))) (-3029 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-240)))) (-3982 (*1 *2 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-240)))) (-3982 (*1 *2 *3) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-240)) (-5 *3 (-1150)))))
+(-10 -7 (-15 -3982 ((-639 (-1150)) (-1150))) (-15 -3982 ((-639 (-1150)) (-639 (-1150)))) (-15 -3029 ((-1150))) (-15 -3051 ((-1150) (-562) (-1150))) (-15 -2328 ((-1150) (-1150) (-562) (-1150))) (-15 -2328 ((-639 (-1150)) (-639 (-1150)) (-562) (-1150))) (-15 -2593 ((-1261) (-1150))) (-15 -2593 ((-1261) (-639 (-1150)))) (-15 -2980 ((-562) (-1150))) (-15 -2980 ((-562) (-639 (-1150)))))
((** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 16)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ (-406 (-562)) $) 23) (($ $ (-406 (-562))) NIL)))
(((-241 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-562))) (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 ** (|#1| |#1| (-766))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-916))) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|))) (-242)) (T -241))
NIL
(-10 -8 (-15 ** (|#1| |#1| (-562))) (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 ** (|#1| |#1| (-766))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-916))) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 40)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 44)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 41)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ (-406 (-562)) $) 43) (($ $ (-406 (-562))) 42)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 40)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 44)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 41)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ (-406 (-562)) $) 43) (($ $ (-406 (-562))) 42)))
(((-242) (-139)) (T -242))
((** (*1 *1 *1 *2) (-12 (-4 *1 (-242)) (-5 *2 (-562)))) (-1525 (*1 *1 *1) (-4 *1 (-242))))
(-13 (-289) (-38 (-406 (-562))) (-10 -8 (-15 ** ($ $ (-562))) (-15 -1525 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-612 #0#) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-289) . T) ((-642 #0#) . T) ((-642 $) . T) ((-712 #0#) . T) ((-721) . T) ((-1050 #0#) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2534 ((|#1| $) 48)) (-3121 (($ $) 57)) (-4336 (((-112) $ (-766)) 8)) (-1512 ((|#1| $ |#1|) 39 (|has| $ (-6 -4403)))) (-3914 (($ $ $) 53 (|has| $ (-6 -4403)))) (-4319 (($ $ $) 52 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) 41 (|has| $ (-6 -4403)))) (-1800 (($) 7 T CONST)) (-3364 (($ $) 56)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) 50)) (-4379 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-4335 (($ $) 55)) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-4007 (((-639 |#1|) $) 45)) (-3449 (((-112) $) 49)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1504 ((|#1| $) 59)) (-3063 (($ $) 58)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ "value") 47)) (-2568 (((-562) $ $) 44)) (-2424 (((-112) $) 46)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4142 (($ $ $) 54 (|has| $ (-6 -4403)))) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) 51)) (-4055 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2533 ((|#1| $) 48)) (-3120 (($ $) 57)) (-3735 (((-112) $ (-766)) 8)) (-2677 ((|#1| $ |#1|) 39 (|has| $ (-6 -4404)))) (-2342 (($ $ $) 53 (|has| $ (-6 -4404)))) (-1777 (($ $ $) 52 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) 41 (|has| $ (-6 -4404)))) (-3329 (($) 7 T CONST)) (-3364 (($ $) 56)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) 50)) (-4188 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-4336 (($ $) 55)) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-4008 (((-639 |#1|) $) 45)) (-3179 (((-112) $) 49)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1504 ((|#1| $) 59)) (-3757 (($ $) 58)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ "value") 47)) (-1423 (((-562) $ $) 44)) (-2473 (((-112) $) 46)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-2587 (($ $ $) 54 (|has| $ (-6 -4404)))) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) 51)) (-2985 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-243 |#1|) (-139) (-1207)) (T -243))
-((-1504 (*1 *2 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-3063 (*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-3121 (*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-3364 (*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-4335 (*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-4142 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-3914 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-4319 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-243 *2)) (-4 *2 (-1207)))))
-(-13 (-1005 |t#1|) (-10 -8 (-15 -1504 (|t#1| $)) (-15 -3063 ($ $)) (-15 -3121 ($ $)) (-15 -3364 ($ $)) (-15 -4335 ($ $)) (IF (|has| $ (-6 -4403)) (PROGN (-15 -4142 ($ $ $)) (-15 -3914 ($ $ $)) (-15 -4319 ($ $ $))) |%noBranch|)))
+((-1504 (*1 *2 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-3757 (*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-3120 (*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-3364 (*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-4336 (*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-2587 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-2342 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-243 *2)) (-4 *2 (-1207)))) (-1777 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-243 *2)) (-4 *2 (-1207)))))
+(-13 (-1005 |t#1|) (-10 -8 (-15 -1504 (|t#1| $)) (-15 -3757 ($ $)) (-15 -3120 ($ $)) (-15 -3364 ($ $)) (-15 -4336 ($ $)) (IF (|has| $ (-6 -4404)) (PROGN (-15 -2587 ($ $ $)) (-15 -2342 ($ $ $)) (-15 -1777 ($ $ $))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1005 |#1|) . T) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2534 ((|#1| $) NIL)) (-2359 ((|#1| $) NIL)) (-3121 (($ $) NIL)) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-2254 (($ $ (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) $) NIL (|has| |#1| (-845))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3381 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-845)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-1395 (($ $) 10 (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-1512 ((|#1| $ |#1|) NIL (|has| $ (-6 -4403)))) (-3012 (($ $ $) NIL (|has| $ (-6 -4403)))) (-3950 ((|#1| $ |#1|) NIL (|has| $ (-6 -4403)))) (-2687 ((|#1| $ |#1|) NIL (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4403))) (($ $ "rest" $) NIL (|has| $ (-6 -4403))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) NIL (|has| $ (-6 -4403)))) (-3111 (($ (-1 (-112) |#1|) $) NIL)) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-2350 ((|#1| $) NIL)) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-1434 (($ $) NIL) (($ $ (-766)) NIL)) (-4354 (($ $) NIL (|has| |#1| (-1092)))) (-1459 (($ $) 7 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4000 (($ |#1| $) NIL (|has| |#1| (-1092))) (($ (-1 (-112) |#1|) $) NIL)) (-1475 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1505 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) NIL)) (-3266 (((-112) $) NIL)) (-4264 (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092))) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) (-1 (-112) |#1|) $) NIL)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) NIL)) (-4379 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1458 (($ (-766) |#1|) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2673 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-1610 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3716 (($ |#1|) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-4007 (((-639 |#1|) $) NIL)) (-3449 (((-112) $) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1504 ((|#1| $) NIL) (($ $ (-766)) NIL)) (-4300 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-3297 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL) (($ $ (-766)) NIL)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2716 (($ $ |#1|) NIL (|has| $ (-6 -4403)))) (-2017 (((-112) $) NIL)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1223 (-562))) NIL) ((|#1| $ (-562)) NIL) ((|#1| $ (-562) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-766) $ "count") 16)) (-2568 (((-562) $ $) NIL)) (-2878 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2880 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-3264 (($ (-639 |#1|)) 22)) (-2424 (((-112) $) NIL)) (-2613 (($ $) NIL)) (-4327 (($ $) NIL (|has| $ (-6 -4403)))) (-2296 (((-766) $) NIL)) (-3913 (($ $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) NIL)) (-4142 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2767 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-639 $)) NIL) (($ $ |#1|) NIL)) (-4054 (($ (-639 |#1|)) 17) (((-639 |#1|) $) 18) (((-857) $) 21 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) NIL)) (-4055 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) 14 (|has| $ (-6 -4402)))))
-(((-244 |#1|) (-13 (-660 |#1|) (-489 (-639 |#1|)) (-10 -8 (-15 -3264 ($ (-639 |#1|))) (-15 -2343 ($ $ "unique")) (-15 -2343 ($ $ "sort")) (-15 -2343 ((-766) $ "count")))) (-845)) (T -244))
-((-3264 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-244 *3)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-244 *3)) (-4 *3 (-845)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-244 *3)) (-4 *3 (-845)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-766)) (-5 *1 (-244 *4)) (-4 *4 (-845)))))
-(-13 (-660 |#1|) (-489 (-639 |#1|)) (-10 -8 (-15 -3264 ($ (-639 |#1|))) (-15 -2343 ($ $ "unique")) (-15 -2343 ($ $ "sort")) (-15 -2343 ((-766) $ "count"))))
-((-2412 (((-3 (-766) "failed") |#1| |#1| (-766)) 26)))
-(((-245 |#1|) (-10 -7 (-15 -2412 ((-3 (-766) "failed") |#1| |#1| (-766)))) (-13 (-721) (-367) (-10 -7 (-15 ** (|#1| |#1| (-562)))))) (T -245))
-((-2412 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-766)) (-4 *3 (-13 (-721) (-367) (-10 -7 (-15 ** (*3 *3 (-562)))))) (-5 *1 (-245 *3)))))
-(-10 -7 (-15 -2412 ((-3 (-766) "failed") |#1| |#1| (-766))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1402 (((-639 (-859 |#1|)) $) NIL)) (-1599 (((-1164 $) $ (-859 |#1|)) NIL) (((-1164 |#2|) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#2| (-554)))) (-2796 (($ $) NIL (|has| |#2| (-554)))) (-4370 (((-112) $) NIL (|has| |#2| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 (-859 |#1|))) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-2798 (($ $) NIL (|has| |#2| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#2| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-859 |#1|) "failed") $) NIL)) (-3961 ((|#2| $) NIL) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-859 |#1|) $) NIL)) (-2835 (($ $ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-2040 (($ $ (-639 (-562))) NIL)) (-1601 (($ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#2| (-904)))) (-3122 (($ $ |#2| (-239 (-3492 |#1|) (-766)) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-1390 (($ (-1164 |#2|) (-859 |#1|)) NIL) (($ (-1164 $) (-859 |#1|)) NIL)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#2| (-239 (-3492 |#1|) (-766))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ (-859 |#1|)) NIL)) (-2076 (((-239 (-3492 |#1|) (-766)) $) NIL) (((-766) $ (-859 |#1|)) NIL) (((-639 (-766)) $ (-639 (-859 |#1|))) NIL)) (-1551 (($ $ $) NIL (|has| |#2| (-845)))) (-2993 (($ $ $) NIL (|has| |#2| (-845)))) (-2836 (($ (-1 (-239 (-3492 |#1|) (-766)) (-239 (-3492 |#1|) (-766))) $) NIL)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-3372 (((-3 (-859 |#1|) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#2| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-2913 (((-1150) $) NIL)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| (-859 |#1|)) (|:| -1960 (-766))) "failed") $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#2| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#2| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#2| (-904)))) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-859 |#1|) |#2|) NIL) (($ $ (-639 (-859 |#1|)) (-639 |#2|)) NIL) (($ $ (-859 |#1|) $) NIL) (($ $ (-639 (-859 |#1|)) (-639 $)) NIL)) (-2455 (($ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-4029 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-3598 (((-239 (-3492 |#1|) (-766)) $) NIL) (((-766) $ (-859 |#1|)) NIL) (((-639 (-766)) $ (-639 (-859 |#1|))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-859 |#1|) (-610 (-535))) (|has| |#2| (-610 (-535)))))) (-3900 ((|#2| $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) NIL) (($ (-859 |#1|)) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#2| (-38 (-406 (-562)))) (|has| |#2| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#2| (-554)))) (-4358 (((-639 |#2|) $) NIL)) (-3906 ((|#2| $ (-239 (-3492 |#1|) (-766))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#2| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#2| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#2| (-554)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#2| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#2| (-38 (-406 (-562))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-246 |#1| |#2|) (-13 (-944 |#2| (-239 (-3492 |#1|) (-766)) (-859 |#1|)) (-10 -8 (-15 -2040 ($ $ (-639 (-562)))))) (-639 (-1168)) (-1044)) (T -246))
-((-2040 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-246 *3 *4)) (-14 *3 (-639 (-1168))) (-4 *4 (-1044)))))
-(-13 (-944 |#2| (-239 (-3492 |#1|) (-766)) (-859 |#1|)) (-10 -8 (-15 -2040 ($ $ (-639 (-562))))))
-((-4041 (((-112) $ $) NIL)) (-1688 (((-1261) $) 17)) (-4210 (((-182) $) 11)) (-2653 (($ (-182)) 12)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1876 (((-248) $) 7)) (-4054 (((-857) $) 9)) (-1731 (((-112) $ $) 15)))
-(((-247) (-13 (-1092) (-10 -8 (-15 -1876 ((-248) $)) (-15 -4210 ((-182) $)) (-15 -2653 ($ (-182))) (-15 -1688 ((-1261) $))))) (T -247))
-((-1876 (*1 *2 *1) (-12 (-5 *2 (-248)) (-5 *1 (-247)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-182)) (-5 *1 (-247)))) (-2653 (*1 *1 *2) (-12 (-5 *2 (-182)) (-5 *1 (-247)))) (-1688 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-247)))))
-(-13 (-1092) (-10 -8 (-15 -1876 ((-248) $)) (-15 -4210 ((-182) $)) (-15 -2653 ($ (-182))) (-15 -1688 ((-1261) $))))
-((-4041 (((-112) $ $) NIL)) (-3254 (((-505) $) NIL)) (-2913 (((-1150) $) NIL)) (-2421 (((-185) $) NIL)) (-1709 (((-1112) $) NIL)) (-3212 (((-639 (-112)) $) NIL)) (-4054 (((-857) $) NIL) (((-186) $) 6)) (-3087 (((-55) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2533 ((|#1| $) NIL)) (-2358 ((|#1| $) NIL)) (-3120 (($ $) NIL)) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1335 (($ $ (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) $) NIL (|has| |#1| (-845))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3737 (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| |#1| (-845)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-1395 (($ $) 10 (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-2677 ((|#1| $ |#1|) NIL (|has| $ (-6 -4404)))) (-3400 (($ $ $) NIL (|has| $ (-6 -4404)))) (-1393 ((|#1| $ |#1|) NIL (|has| $ (-6 -4404)))) (-3239 ((|#1| $ |#1|) NIL (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4404))) (($ $ "rest" $) NIL (|has| $ (-6 -4404))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) NIL (|has| $ (-6 -4404)))) (-2968 (($ (-1 (-112) |#1|) $) NIL)) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-2349 ((|#1| $) NIL)) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1434 (($ $) NIL) (($ $ (-766)) NIL)) (-3923 (($ $) NIL (|has| |#1| (-1092)))) (-1459 (($ $) 7 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3729 (($ |#1| $) NIL (|has| |#1| (-1092))) (($ (-1 (-112) |#1|) $) NIL)) (-1475 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1507 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) NIL)) (-2101 (((-112) $) NIL)) (-4265 (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092))) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) (-1 (-112) |#1|) $) NIL)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) NIL)) (-4188 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1458 (($ (-766) |#1|) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-3124 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-4103 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3716 (($ |#1|) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-4008 (((-639 |#1|) $) NIL)) (-3179 (((-112) $) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1504 ((|#1| $) NIL) (($ $ (-766)) NIL)) (-1581 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-3295 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL) (($ $ (-766)) NIL)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3510 (($ $ |#1|) NIL (|has| $ (-6 -4404)))) (-3745 (((-112) $) NIL)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1223 (-562))) NIL) ((|#1| $ (-562)) NIL) ((|#1| $ (-562) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-766) $ "count") 16)) (-1423 (((-562) $ $) NIL)) (-1527 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2880 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-3263 (($ (-639 |#1|)) 22)) (-2473 (((-112) $) NIL)) (-3734 (($ $) NIL)) (-3659 (($ $) NIL (|has| $ (-6 -4404)))) (-3595 (((-766) $) NIL)) (-2333 (($ $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) NIL)) (-2587 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2767 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-639 $)) NIL) (($ $ |#1|) NIL)) (-4053 (($ (-639 |#1|)) 17) (((-639 |#1|) $) 18) (((-857) $) 21 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) NIL)) (-2985 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) 14 (|has| $ (-6 -4403)))))
+(((-244 |#1|) (-13 (-660 |#1|) (-489 (-639 |#1|)) (-10 -8 (-15 -3263 ($ (-639 |#1|))) (-15 -2343 ($ $ "unique")) (-15 -2343 ($ $ "sort")) (-15 -2343 ((-766) $ "count")))) (-845)) (T -244))
+((-3263 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-244 *3)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-244 *3)) (-4 *3 (-845)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-244 *3)) (-4 *3 (-845)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-766)) (-5 *1 (-244 *4)) (-4 *4 (-845)))))
+(-13 (-660 |#1|) (-489 (-639 |#1|)) (-10 -8 (-15 -3263 ($ (-639 |#1|))) (-15 -2343 ($ $ "unique")) (-15 -2343 ($ $ "sort")) (-15 -2343 ((-766) $ "count"))))
+((-2376 (((-3 (-766) "failed") |#1| |#1| (-766)) 26)))
+(((-245 |#1|) (-10 -7 (-15 -2376 ((-3 (-766) "failed") |#1| |#1| (-766)))) (-13 (-721) (-367) (-10 -7 (-15 ** (|#1| |#1| (-562)))))) (T -245))
+((-2376 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-766)) (-4 *3 (-13 (-721) (-367) (-10 -7 (-15 ** (*3 *3 (-562)))))) (-5 *1 (-245 *3)))))
+(-10 -7 (-15 -2376 ((-3 (-766) "failed") |#1| |#1| (-766))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1401 (((-639 (-859 |#1|)) $) NIL)) (-1602 (((-1164 $) $ (-859 |#1|)) NIL) (((-1164 |#2|) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#2| (-554)))) (-1965 (($ $) NIL (|has| |#2| (-554)))) (-4102 (((-112) $) NIL (|has| |#2| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 (-859 |#1|))) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1977 (($ $) NIL (|has| |#2| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#2| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-859 |#1|) "failed") $) NIL)) (-3960 ((|#2| $) NIL) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-859 |#1|) $) NIL)) (-2355 (($ $ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-3999 (($ $ (-639 (-562))) NIL)) (-1600 (($ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#2| (-904)))) (-3066 (($ $ |#2| (-239 (-3492 |#1|) (-766)) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-1389 (($ (-1164 |#2|) (-859 |#1|)) NIL) (($ (-1164 $) (-859 |#1|)) NIL)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#2| (-239 (-3492 |#1|) (-766))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ (-859 |#1|)) NIL)) (-3161 (((-239 (-3492 |#1|) (-766)) $) NIL) (((-766) $ (-859 |#1|)) NIL) (((-639 (-766)) $ (-639 (-859 |#1|))) NIL)) (-1551 (($ $ $) NIL (|has| |#2| (-845)))) (-2993 (($ $ $) NIL (|has| |#2| (-845)))) (-2363 (($ (-1 (-239 (-3492 |#1|) (-766)) (-239 (-3492 |#1|) (-766))) $) NIL)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-3640 (((-3 (-859 |#1|) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#2| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-3696 (((-1150) $) NIL)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| (-859 |#1|)) (|:| -1300 (-766))) "failed") $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#2| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#2| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#2| (-904)))) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-859 |#1|) |#2|) NIL) (($ $ (-639 (-859 |#1|)) (-639 |#2|)) NIL) (($ $ (-859 |#1|) $) NIL) (($ $ (-639 (-859 |#1|)) (-639 $)) NIL)) (-2736 (($ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-4029 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2250 (((-239 (-3492 |#1|) (-766)) $) NIL) (((-766) $ (-859 |#1|)) NIL) (((-639 (-766)) $ (-639 (-859 |#1|))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-859 |#1|) (-610 (-535))) (|has| |#2| (-610 (-535)))))) (-2201 ((|#2| $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) NIL) (($ (-859 |#1|)) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#2| (-38 (-406 (-562)))) (|has| |#2| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#2| (-554)))) (-3969 (((-639 |#2|) $) NIL)) (-2266 ((|#2| $ (-239 (-3492 |#1|) (-766))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#2| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#2| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#2| (-554)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#2| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#2| (-38 (-406 (-562))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-246 |#1| |#2|) (-13 (-944 |#2| (-239 (-3492 |#1|) (-766)) (-859 |#1|)) (-10 -8 (-15 -3999 ($ $ (-639 (-562)))))) (-639 (-1168)) (-1044)) (T -246))
+((-3999 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-246 *3 *4)) (-14 *3 (-639 (-1168))) (-4 *4 (-1044)))))
+(-13 (-944 |#2| (-239 (-3492 |#1|) (-766)) (-859 |#1|)) (-10 -8 (-15 -3999 ($ $ (-639 (-562))))))
+((-4041 (((-112) $ $) NIL)) (-1686 (((-1261) $) 17)) (-1955 (((-182) $) 11)) (-2946 (($ (-182)) 12)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1875 (((-248) $) 7)) (-4053 (((-857) $) 9)) (-1733 (((-112) $ $) 15)))
+(((-247) (-13 (-1092) (-10 -8 (-15 -1875 ((-248) $)) (-15 -1955 ((-182) $)) (-15 -2946 ($ (-182))) (-15 -1686 ((-1261) $))))) (T -247))
+((-1875 (*1 *2 *1) (-12 (-5 *2 (-248)) (-5 *1 (-247)))) (-1955 (*1 *2 *1) (-12 (-5 *2 (-182)) (-5 *1 (-247)))) (-2946 (*1 *1 *2) (-12 (-5 *2 (-182)) (-5 *1 (-247)))) (-1686 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-247)))))
+(-13 (-1092) (-10 -8 (-15 -1875 ((-248) $)) (-15 -1955 ((-182) $)) (-15 -2946 ($ (-182))) (-15 -1686 ((-1261) $))))
+((-4041 (((-112) $ $) NIL)) (-3360 (((-639 (-860)) $) NIL)) (-3253 (((-505) $) NIL)) (-3696 (((-1150) $) NIL)) (-2420 (((-185) $) NIL)) (-1709 (((-1112) $) NIL)) (-2760 (((-639 (-112)) $) NIL)) (-4053 (((-857) $) NIL) (((-186) $) 6)) (-3975 (((-55) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-248) (-13 (-184) (-609 (-186)))) (T -248))
NIL
(-13 (-184) (-609 (-186)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3901 (($ (-916)) NIL (|has| |#4| (-1044)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-3659 (($ $ $) NIL (|has| |#4| (-788)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| |#4| (-367)))) (-2277 (((-562) $) NIL (|has| |#4| (-843)))) (-4200 ((|#4| $ (-562) |#4|) NIL (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1092))) (((-3 (-562) "failed") $) NIL (-12 (|has| |#4| (-1033 (-562))) (|has| |#4| (-1092)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#4| (-1033 (-406 (-562)))) (|has| |#4| (-1092))))) (-3961 ((|#4| $) NIL (|has| |#4| (-1092))) (((-562) $) NIL (-12 (|has| |#4| (-1033 (-562))) (|has| |#4| (-1092)))) (((-406 (-562)) $) NIL (-12 (|has| |#4| (-1033 (-406 (-562)))) (|has| |#4| (-1092))))) (-2406 (((-2 (|:| -1545 (-683 |#4|)) (|:| |vec| (-1256 |#4|))) (-683 $) (-1256 $)) NIL (|has| |#4| (-1044))) (((-683 |#4|) (-683 $)) NIL (|has| |#4| (-1044))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044)))) (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))))) (-3668 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))) (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))) (|has| |#4| (-721)) (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))))) (-1448 (($) NIL (|has| |#4| (-367)))) (-1505 ((|#4| $ (-562) |#4|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#4| $ (-562)) NIL)) (-3519 (((-112) $) NIL (|has| |#4| (-843)))) (-1720 (((-639 |#4|) $) NIL (|has| $ (-6 -4402)))) (-1957 (((-112) $) NIL (-4037 (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))) (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))) (|has| |#4| (-721)) (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))))) (-3392 (((-112) $) NIL (|has| |#4| (-843)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (-4037 (|has| |#4| (-788)) (|has| |#4| (-843))))) (-1912 (((-639 |#4|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (-4037 (|has| |#4| (-788)) (|has| |#4| (-843))))) (-1490 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#4| |#4|) $) NIL)) (-1999 (((-916) $) NIL (|has| |#4| (-367)))) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-2466 (($ (-916)) NIL (|has| |#4| (-367)))) (-1709 (((-1112) $) NIL)) (-1421 ((|#4| $) NIL (|has| (-562) (-845)))) (-2716 (($ $ |#4|) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#4|))) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 |#4|) (-639 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-2411 (((-639 |#4|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#4| $ (-562) |#4|) NIL) ((|#4| $ (-562)) 12)) (-4177 ((|#4| $ $) NIL (|has| |#4| (-1044)))) (-1679 (($ (-1256 |#4|)) NIL)) (-3627 (((-133)) NIL (|has| |#4| (-362)))) (-4029 (($ $ (-1 |#4| |#4|) (-766)) NIL (|has| |#4| (-1044))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1044))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#4| (-232)) (|has| |#4| (-1044)))) (($ $) NIL (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))))) (-1723 (((-766) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402))) (((-766) |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-1256 |#4|) $) NIL) (((-857) $) NIL) (($ |#4|) NIL (|has| |#4| (-1092))) (($ (-562)) NIL (-4037 (-12 (|has| |#4| (-1033 (-562))) (|has| |#4| (-1092))) (|has| |#4| (-1044)))) (($ (-406 (-562))) NIL (-12 (|has| |#4| (-1033 (-406 (-562)))) (|has| |#4| (-1092))))) (-2579 (((-766)) NIL (|has| |#4| (-1044)))) (-1744 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-3526 (($ $) NIL (|has| |#4| (-843)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL (-4037 (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))) (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))) (|has| |#4| (-721)) (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) CONST)) (-3114 (($ $ (-1 |#4| |#4|) (-766)) NIL (|has| |#4| (-1044))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1044))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#4| (-232)) (|has| |#4| (-1044)))) (($ $) NIL (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))))) (-1798 (((-112) $ $) NIL (-4037 (|has| |#4| (-788)) (|has| |#4| (-843))))) (-1772 (((-112) $ $) NIL (-4037 (|has| |#4| (-788)) (|has| |#4| (-843))))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (-4037 (|has| |#4| (-788)) (|has| |#4| (-843))))) (-1759 (((-112) $ $) NIL (-4037 (|has| |#4| (-788)) (|has| |#4| (-843))))) (-1859 (($ $ |#4|) NIL (|has| |#4| (-362)))) (-1848 (($ $ $) NIL) (($ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-766)) NIL (-4037 (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))) (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))) (|has| |#4| (-721)) (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044))))) (($ $ (-916)) NIL (-4037 (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))) (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))) (|has| |#4| (-721)) (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))))) (* (($ |#2| $) 14) (($ (-562) $) NIL) (($ (-766) $) NIL) (($ (-916) $) NIL) (($ |#3| $) 18) (($ $ |#4|) NIL (|has| |#4| (-721))) (($ |#4| $) NIL (|has| |#4| (-721))) (($ $ $) NIL (-4037 (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))) (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))) (|has| |#4| (-721)) (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2211 (($ (-916)) NIL (|has| |#4| (-1044)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1593 (($ $ $) NIL (|has| |#4| (-788)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| |#4| (-367)))) (-1587 (((-562) $) NIL (|has| |#4| (-843)))) (-4200 ((|#4| $ (-562) |#4|) NIL (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1092))) (((-3 (-562) "failed") $) NIL (-12 (|has| |#4| (-1033 (-562))) (|has| |#4| (-1092)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#4| (-1033 (-406 (-562)))) (|has| |#4| (-1092))))) (-3960 ((|#4| $) NIL (|has| |#4| (-1092))) (((-562) $) NIL (-12 (|has| |#4| (-1033 (-562))) (|has| |#4| (-1092)))) (((-406 (-562)) $) NIL (-12 (|has| |#4| (-1033 (-406 (-562)))) (|has| |#4| (-1092))))) (-3449 (((-2 (|:| -1767 (-683 |#4|)) (|:| |vec| (-1256 |#4|))) (-683 $) (-1256 $)) NIL (|has| |#4| (-1044))) (((-683 |#4|) (-683 $)) NIL (|has| |#4| (-1044))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044)))) (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))))) (-1694 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))) (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))) (|has| |#4| (-721)) (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))))) (-1447 (($) NIL (|has| |#4| (-367)))) (-1507 ((|#4| $ (-562) |#4|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#4| $ (-562)) NIL)) (-2696 (((-112) $) NIL (|has| |#4| (-843)))) (-1720 (((-639 |#4|) $) NIL (|has| $ (-6 -4403)))) (-4367 (((-112) $) NIL (-4037 (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))) (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))) (|has| |#4| (-721)) (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))))) (-3855 (((-112) $) NIL (|has| |#4| (-843)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (-4037 (|has| |#4| (-788)) (|has| |#4| (-843))))) (-2123 (((-639 |#4|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (-4037 (|has| |#4| (-788)) (|has| |#4| (-843))))) (-1491 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#4| |#4|) $) NIL)) (-3549 (((-916) $) NIL (|has| |#4| (-367)))) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-2464 (($ (-916)) NIL (|has| |#4| (-367)))) (-1709 (((-1112) $) NIL)) (-1421 ((|#4| $) NIL (|has| (-562) (-845)))) (-3510 (($ $ |#4|) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#4|))) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 |#4|) (-639 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-2366 (((-639 |#4|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#4| $ (-562) |#4|) NIL) ((|#4| $ (-562)) 12)) (-2852 ((|#4| $ $) NIL (|has| |#4| (-1044)))) (-1678 (($ (-1256 |#4|)) NIL)) (-4340 (((-133)) NIL (|has| |#4| (-362)))) (-4029 (($ $ (-1 |#4| |#4|) (-766)) NIL (|has| |#4| (-1044))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1044))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#4| (-232)) (|has| |#4| (-1044)))) (($ $) NIL (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))))) (-1723 (((-766) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403))) (((-766) |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-1256 |#4|) $) NIL) (((-857) $) NIL) (($ |#4|) NIL (|has| |#4| (-1092))) (($ (-562)) NIL (-4037 (-12 (|has| |#4| (-1033 (-562))) (|has| |#4| (-1092))) (|has| |#4| (-1044)))) (($ (-406 (-562))) NIL (-12 (|has| |#4| (-1033 (-406 (-562)))) (|has| |#4| (-1092))))) (-1568 (((-766)) NIL (|has| |#4| (-1044)))) (-2879 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-2757 (($ $) NIL (|has| |#4| (-843)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL (-4037 (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))) (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))) (|has| |#4| (-721)) (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) CONST)) (-3113 (($ $ (-1 |#4| |#4|) (-766)) NIL (|has| |#4| (-1044))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1044))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#4| (-232)) (|has| |#4| (-1044)))) (($ $) NIL (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))))) (-1798 (((-112) $ $) NIL (-4037 (|has| |#4| (-788)) (|has| |#4| (-843))))) (-1771 (((-112) $ $) NIL (-4037 (|has| |#4| (-788)) (|has| |#4| (-843))))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (-4037 (|has| |#4| (-788)) (|has| |#4| (-843))))) (-1761 (((-112) $ $) NIL (-4037 (|has| |#4| (-788)) (|has| |#4| (-843))))) (-1859 (($ $ |#4|) NIL (|has| |#4| (-362)))) (-1847 (($ $ $) NIL) (($ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-766)) NIL (-4037 (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))) (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))) (|has| |#4| (-721)) (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044))))) (($ $ (-916)) NIL (-4037 (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))) (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))) (|has| |#4| (-721)) (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))))) (* (($ |#2| $) 14) (($ (-562) $) NIL) (($ (-766) $) NIL) (($ (-916) $) NIL) (($ |#3| $) 18) (($ $ |#4|) NIL (|has| |#4| (-721))) (($ |#4| $) NIL (|has| |#4| (-721))) (($ $ $) NIL (-4037 (-12 (|has| |#4| (-232)) (|has| |#4| (-1044))) (-12 (|has| |#4| (-635 (-562))) (|has| |#4| (-1044))) (|has| |#4| (-721)) (-12 (|has| |#4| (-895 (-1168))) (|has| |#4| (-1044)))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-249 |#1| |#2| |#3| |#4|) (-13 (-237 |#1| |#4|) (-642 |#2|) (-642 |#3|)) (-916) (-1044) (-1115 |#1| |#2| (-239 |#1| |#2|) (-239 |#1| |#2|)) (-642 |#2|)) (T -249))
NIL
(-13 (-237 |#1| |#4|) (-642 |#2|) (-642 |#3|))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3901 (($ (-916)) NIL (|has| |#3| (-1044)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-3659 (($ $ $) NIL (|has| |#3| (-788)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| |#3| (-367)))) (-2277 (((-562) $) NIL (|has| |#3| (-843)))) (-4200 ((|#3| $ (-562) |#3|) NIL (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1092))) (((-3 (-562) "failed") $) NIL (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092))))) (-3961 ((|#3| $) NIL (|has| |#3| (-1092))) (((-562) $) NIL (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092)))) (((-406 (-562)) $) NIL (-12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092))))) (-2406 (((-2 (|:| -1545 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 $) (-1256 $)) NIL (|has| |#3| (-1044))) (((-683 |#3|) (-683 $)) NIL (|has| |#3| (-1044))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044)))) (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))))) (-3668 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))) (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))) (|has| |#3| (-721)) (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))))) (-1448 (($) NIL (|has| |#3| (-367)))) (-1505 ((|#3| $ (-562) |#3|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#3| $ (-562)) NIL)) (-3519 (((-112) $) NIL (|has| |#3| (-843)))) (-1720 (((-639 |#3|) $) NIL (|has| $ (-6 -4402)))) (-1957 (((-112) $) NIL (-4037 (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))) (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))) (|has| |#3| (-721)) (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))))) (-3392 (((-112) $) NIL (|has| |#3| (-843)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1912 (((-639 |#3|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#3| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1490 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#3| |#3|) $) NIL)) (-1999 (((-916) $) NIL (|has| |#3| (-367)))) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-2466 (($ (-916)) NIL (|has| |#3| (-367)))) (-1709 (((-1112) $) NIL)) (-1421 ((|#3| $) NIL (|has| (-562) (-845)))) (-2716 (($ $ |#3|) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#3|))) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-293 |#3|)) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-639 |#3|) (-639 |#3|)) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#3| (-1092))))) (-2411 (((-639 |#3|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#3| $ (-562) |#3|) NIL) ((|#3| $ (-562)) 11)) (-4177 ((|#3| $ $) NIL (|has| |#3| (-1044)))) (-1679 (($ (-1256 |#3|)) NIL)) (-3627 (((-133)) NIL (|has| |#3| (-362)))) (-4029 (($ $ (-1 |#3| |#3|) (-766)) NIL (|has| |#3| (-1044))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1044))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))) (($ $) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))))) (-1723 (((-766) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4402))) (((-766) |#3| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#3| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-1256 |#3|) $) NIL) (((-857) $) NIL) (($ |#3|) NIL (|has| |#3| (-1092))) (($ (-562)) NIL (-4037 (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092))) (|has| |#3| (-1044)))) (($ (-406 (-562))) NIL (-12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092))))) (-2579 (((-766)) NIL (|has| |#3| (-1044)))) (-1744 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4402)))) (-3526 (($ $) NIL (|has| |#3| (-843)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL (-4037 (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))) (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))) (|has| |#3| (-721)) (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) CONST)) (-3114 (($ $ (-1 |#3| |#3|) (-766)) NIL (|has| |#3| (-1044))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1044))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))) (($ $) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))))) (-1798 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1772 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1759 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1859 (($ $ |#3|) NIL (|has| |#3| (-362)))) (-1848 (($ $ $) NIL) (($ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-766)) NIL (-4037 (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))) (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))) (|has| |#3| (-721)) (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044))))) (($ $ (-916)) NIL (-4037 (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))) (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))) (|has| |#3| (-721)) (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))))) (* (($ |#2| $) 13) (($ (-562) $) NIL) (($ (-766) $) NIL) (($ (-916) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-721))) (($ |#3| $) NIL (|has| |#3| (-721))) (($ $ $) NIL (-4037 (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))) (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))) (|has| |#3| (-721)) (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2211 (($ (-916)) NIL (|has| |#3| (-1044)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1593 (($ $ $) NIL (|has| |#3| (-788)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| |#3| (-367)))) (-1587 (((-562) $) NIL (|has| |#3| (-843)))) (-4200 ((|#3| $ (-562) |#3|) NIL (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1092))) (((-3 (-562) "failed") $) NIL (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092))))) (-3960 ((|#3| $) NIL (|has| |#3| (-1092))) (((-562) $) NIL (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092)))) (((-406 (-562)) $) NIL (-12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092))))) (-3449 (((-2 (|:| -1767 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 $) (-1256 $)) NIL (|has| |#3| (-1044))) (((-683 |#3|) (-683 $)) NIL (|has| |#3| (-1044))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044)))) (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))))) (-1694 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))) (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))) (|has| |#3| (-721)) (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))))) (-1447 (($) NIL (|has| |#3| (-367)))) (-1507 ((|#3| $ (-562) |#3|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#3| $ (-562)) NIL)) (-2696 (((-112) $) NIL (|has| |#3| (-843)))) (-1720 (((-639 |#3|) $) NIL (|has| $ (-6 -4403)))) (-4367 (((-112) $) NIL (-4037 (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))) (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))) (|has| |#3| (-721)) (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))))) (-3855 (((-112) $) NIL (|has| |#3| (-843)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-2123 (((-639 |#3|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#3| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1491 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#3| |#3|) $) NIL)) (-3549 (((-916) $) NIL (|has| |#3| (-367)))) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-2464 (($ (-916)) NIL (|has| |#3| (-367)))) (-1709 (((-1112) $) NIL)) (-1421 ((|#3| $) NIL (|has| (-562) (-845)))) (-3510 (($ $ |#3|) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#3|))) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-293 |#3|)) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-639 |#3|) (-639 |#3|)) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#3| (-1092))))) (-2366 (((-639 |#3|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#3| $ (-562) |#3|) NIL) ((|#3| $ (-562)) 11)) (-2852 ((|#3| $ $) NIL (|has| |#3| (-1044)))) (-1678 (($ (-1256 |#3|)) NIL)) (-4340 (((-133)) NIL (|has| |#3| (-362)))) (-4029 (($ $ (-1 |#3| |#3|) (-766)) NIL (|has| |#3| (-1044))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1044))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))) (($ $) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))))) (-1723 (((-766) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4403))) (((-766) |#3| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#3| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-1256 |#3|) $) NIL) (((-857) $) NIL) (($ |#3|) NIL (|has| |#3| (-1092))) (($ (-562)) NIL (-4037 (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092))) (|has| |#3| (-1044)))) (($ (-406 (-562))) NIL (-12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092))))) (-1568 (((-766)) NIL (|has| |#3| (-1044)))) (-2879 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4403)))) (-2757 (($ $) NIL (|has| |#3| (-843)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL (-4037 (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))) (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))) (|has| |#3| (-721)) (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) CONST)) (-3113 (($ $ (-1 |#3| |#3|) (-766)) NIL (|has| |#3| (-1044))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1044))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))) (($ $) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))))) (-1798 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1771 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1761 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1859 (($ $ |#3|) NIL (|has| |#3| (-362)))) (-1847 (($ $ $) NIL) (($ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-766)) NIL (-4037 (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))) (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))) (|has| |#3| (-721)) (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044))))) (($ $ (-916)) NIL (-4037 (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))) (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))) (|has| |#3| (-721)) (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))))) (* (($ |#2| $) 13) (($ (-562) $) NIL) (($ (-766) $) NIL) (($ (-916) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-721))) (($ |#3| $) NIL (|has| |#3| (-721))) (($ $ $) NIL (-4037 (-12 (|has| |#3| (-232)) (|has| |#3| (-1044))) (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044))) (|has| |#3| (-721)) (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-250 |#1| |#2| |#3|) (-13 (-237 |#1| |#3|) (-642 |#2|)) (-766) (-1044) (-642 |#2|)) (T -250))
NIL
(-13 (-237 |#1| |#3|) (-642 |#2|))
-((-1880 (((-639 (-766)) $) 47) (((-639 (-766)) $ |#3|) 50)) (-1929 (((-766) $) 49) (((-766) $ |#3|) 52)) (-3677 (($ $) 65)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 (-562) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 72)) (-1900 (((-766) $ |#3|) 39) (((-766) $) 36)) (-3603 (((-1 $ (-766)) |#3|) 15) (((-1 $ (-766)) $) 77)) (-3736 ((|#4| $) 58)) (-3349 (((-112) $) 56)) (-3592 (($ $) 64)) (-1433 (($ $ (-639 (-293 $))) 97) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-639 |#4|) (-639 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-639 |#4|) (-639 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-639 |#3|) (-639 $)) 89) (($ $ |#3| |#2|) NIL) (($ $ (-639 |#3|) (-639 |#2|)) 84)) (-4029 (($ $ |#4|) NIL) (($ $ (-639 |#4|)) NIL) (($ $ |#4| (-766)) NIL) (($ $ (-639 |#4|) (-639 (-766))) NIL) (($ $) NIL) (($ $ (-766)) NIL) (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-4333 (((-639 |#3|) $) 75)) (-3598 ((|#5| $) NIL) (((-766) $ |#4|) NIL) (((-639 (-766)) $ (-639 |#4|)) NIL) (((-766) $ |#3|) 44)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 67) (($ (-406 (-562))) NIL) (($ $) NIL)))
-(((-251 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -4054 (|#1| |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -1433 (|#1| |#1| (-639 |#3|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#3| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#3|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#3| |#1|)) (-15 -3603 ((-1 |#1| (-766)) |#1|)) (-15 -3677 (|#1| |#1|)) (-15 -3592 (|#1| |#1|)) (-15 -3736 (|#4| |#1|)) (-15 -3349 ((-112) |#1|)) (-15 -1929 ((-766) |#1| |#3|)) (-15 -1880 ((-639 (-766)) |#1| |#3|)) (-15 -1929 ((-766) |#1|)) (-15 -1880 ((-639 (-766)) |#1|)) (-15 -3598 ((-766) |#1| |#3|)) (-15 -1900 ((-766) |#1|)) (-15 -1900 ((-766) |#1| |#3|)) (-15 -4333 ((-639 |#3|) |#1|)) (-15 -3603 ((-1 |#1| (-766)) |#3|)) (-15 -4054 (|#1| |#3|)) (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -3598 ((-639 (-766)) |#1| (-639 |#4|))) (-15 -3598 ((-766) |#1| |#4|)) (-15 -4054 (|#1| |#4|)) (-15 -4048 ((-3 |#4| "failed") |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#4| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#4| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -3598 (|#5| |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -4029 (|#1| |#1| (-639 |#4|) (-639 (-766)))) (-15 -4029 (|#1| |#1| |#4| (-766))) (-15 -4029 (|#1| |#1| (-639 |#4|))) (-15 -4029 (|#1| |#1| |#4|)) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|))) (-252 |#2| |#3| |#4| |#5|) (-1044) (-845) (-265 |#3|) (-788)) (T -251))
+((-1759 (((-639 (-766)) $) 47) (((-639 (-766)) $ |#3|) 50)) (-2277 (((-766) $) 49) (((-766) $ |#3|) 52)) (-3611 (($ $) 65)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 (-562) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 72)) (-1993 (((-766) $ |#3|) 39) (((-766) $) 36)) (-2298 (((-1 $ (-766)) |#3|) 15) (((-1 $ (-766)) $) 77)) (-3736 ((|#4| $) 58)) (-1611 (((-112) $) 56)) (-3592 (($ $) 64)) (-1433 (($ $ (-639 (-293 $))) 97) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-639 |#4|) (-639 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-639 |#4|) (-639 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-639 |#3|) (-639 $)) 89) (($ $ |#3| |#2|) NIL) (($ $ (-639 |#3|) (-639 |#2|)) 84)) (-4029 (($ $ |#4|) NIL) (($ $ (-639 |#4|)) NIL) (($ $ |#4| (-766)) NIL) (($ $ (-639 |#4|) (-639 (-766))) NIL) (($ $) NIL) (($ $ (-766)) NIL) (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-3712 (((-639 |#3|) $) 75)) (-2250 ((|#5| $) NIL) (((-766) $ |#4|) NIL) (((-639 (-766)) $ (-639 |#4|)) NIL) (((-766) $ |#3|) 44)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 67) (($ (-406 (-562))) NIL) (($ $) NIL)))
+(((-251 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -4053 (|#1| |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -1433 (|#1| |#1| (-639 |#3|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#3| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#3|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#3| |#1|)) (-15 -2298 ((-1 |#1| (-766)) |#1|)) (-15 -3611 (|#1| |#1|)) (-15 -3592 (|#1| |#1|)) (-15 -3736 (|#4| |#1|)) (-15 -1611 ((-112) |#1|)) (-15 -2277 ((-766) |#1| |#3|)) (-15 -1759 ((-639 (-766)) |#1| |#3|)) (-15 -2277 ((-766) |#1|)) (-15 -1759 ((-639 (-766)) |#1|)) (-15 -2250 ((-766) |#1| |#3|)) (-15 -1993 ((-766) |#1|)) (-15 -1993 ((-766) |#1| |#3|)) (-15 -3712 ((-639 |#3|) |#1|)) (-15 -2298 ((-1 |#1| (-766)) |#3|)) (-15 -4053 (|#1| |#3|)) (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -2250 ((-639 (-766)) |#1| (-639 |#4|))) (-15 -2250 ((-766) |#1| |#4|)) (-15 -4053 (|#1| |#4|)) (-15 -4048 ((-3 |#4| "failed") |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#4| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#4| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -2250 (|#5| |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -4029 (|#1| |#1| (-639 |#4|) (-639 (-766)))) (-15 -4029 (|#1| |#1| |#4| (-766))) (-15 -4029 (|#1| |#1| (-639 |#4|))) (-15 -4029 (|#1| |#1| |#4|)) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|))) (-252 |#2| |#3| |#4| |#5|) (-1044) (-845) (-265 |#3|) (-788)) (T -251))
NIL
-(-10 -8 (-15 -4054 (|#1| |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -1433 (|#1| |#1| (-639 |#3|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#3| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#3|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#3| |#1|)) (-15 -3603 ((-1 |#1| (-766)) |#1|)) (-15 -3677 (|#1| |#1|)) (-15 -3592 (|#1| |#1|)) (-15 -3736 (|#4| |#1|)) (-15 -3349 ((-112) |#1|)) (-15 -1929 ((-766) |#1| |#3|)) (-15 -1880 ((-639 (-766)) |#1| |#3|)) (-15 -1929 ((-766) |#1|)) (-15 -1880 ((-639 (-766)) |#1|)) (-15 -3598 ((-766) |#1| |#3|)) (-15 -1900 ((-766) |#1|)) (-15 -1900 ((-766) |#1| |#3|)) (-15 -4333 ((-639 |#3|) |#1|)) (-15 -3603 ((-1 |#1| (-766)) |#3|)) (-15 -4054 (|#1| |#3|)) (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -3598 ((-639 (-766)) |#1| (-639 |#4|))) (-15 -3598 ((-766) |#1| |#4|)) (-15 -4054 (|#1| |#4|)) (-15 -4048 ((-3 |#4| "failed") |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#4| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#4| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -3598 (|#5| |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -4029 (|#1| |#1| (-639 |#4|) (-639 (-766)))) (-15 -4029 (|#1| |#1| |#4| (-766))) (-15 -4029 (|#1| |#1| (-639 |#4|))) (-15 -4029 (|#1| |#1| |#4|)) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1880 (((-639 (-766)) $) 214) (((-639 (-766)) $ |#2|) 212)) (-1929 (((-766) $) 213) (((-766) $ |#2|) 211)) (-1402 (((-639 |#3|) $) 110)) (-1599 (((-1164 $) $ |#3|) 125) (((-1164 |#1|) $) 124)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 87 (|has| |#1| (-554)))) (-2796 (($ $) 88 (|has| |#1| (-554)))) (-4370 (((-112) $) 90 (|has| |#1| (-554)))) (-1986 (((-766) $) 112) (((-766) $ (-639 |#3|)) 111)) (-3214 (((-3 $ "failed") $ $) 19)) (-3026 (((-417 (-1164 $)) (-1164 $)) 100 (|has| |#1| (-904)))) (-2798 (($ $) 98 (|has| |#1| (-451)))) (-2921 (((-417 $) $) 97 (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 103 (|has| |#1| (-904)))) (-3677 (($ $) 207)) (-1800 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 164) (((-3 (-406 (-562)) "failed") $) 161 (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) 159 (|has| |#1| (-1033 (-562)))) (((-3 |#3| "failed") $) 136) (((-3 |#2| "failed") $) 221)) (-3961 ((|#1| $) 163) (((-406 (-562)) $) 162 (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) 160 (|has| |#1| (-1033 (-562)))) ((|#3| $) 137) ((|#2| $) 222)) (-2835 (($ $ $ |#3|) 108 (|has| |#1| (-171)))) (-1601 (($ $) 154)) (-2406 (((-683 (-562)) (-683 $)) 134 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 133 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 132) (((-683 |#1|) (-683 $)) 131)) (-3668 (((-3 $ "failed") $) 33)) (-1498 (($ $) 176 (|has| |#1| (-451))) (($ $ |#3|) 105 (|has| |#1| (-451)))) (-1586 (((-639 $) $) 109)) (-2717 (((-112) $) 96 (|has| |#1| (-904)))) (-3122 (($ $ |#1| |#4| $) 172)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 84 (-12 (|has| |#3| (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 83 (-12 (|has| |#3| (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1900 (((-766) $ |#2|) 217) (((-766) $) 216)) (-1957 (((-112) $) 31)) (-1694 (((-766) $) 169)) (-1390 (($ (-1164 |#1|) |#3|) 117) (($ (-1164 $) |#3|) 116)) (-1889 (((-639 $) $) 126)) (-3536 (((-112) $) 152)) (-1378 (($ |#1| |#4|) 153) (($ $ |#3| (-766)) 119) (($ $ (-639 |#3|) (-639 (-766))) 118)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ |#3|) 120)) (-2076 ((|#4| $) 170) (((-766) $ |#3|) 122) (((-639 (-766)) $ (-639 |#3|)) 121)) (-1551 (($ $ $) 79 (|has| |#1| (-845)))) (-2993 (($ $ $) 78 (|has| |#1| (-845)))) (-2836 (($ (-1 |#4| |#4|) $) 171)) (-4152 (($ (-1 |#1| |#1|) $) 151)) (-3603 (((-1 $ (-766)) |#2|) 219) (((-1 $ (-766)) $) 206 (|has| |#1| (-232)))) (-3372 (((-3 |#3| "failed") $) 123)) (-1560 (($ $) 149)) (-1573 ((|#1| $) 148)) (-3736 ((|#3| $) 209)) (-1564 (($ (-639 $)) 94 (|has| |#1| (-451))) (($ $ $) 93 (|has| |#1| (-451)))) (-2913 (((-1150) $) 9)) (-3349 (((-112) $) 210)) (-2042 (((-3 (-639 $) "failed") $) 114)) (-1546 (((-3 (-639 $) "failed") $) 115)) (-1628 (((-3 (-2 (|:| |var| |#3|) (|:| -1960 (-766))) "failed") $) 113)) (-3592 (($ $) 208)) (-1709 (((-1112) $) 10)) (-1534 (((-112) $) 166)) (-1547 ((|#1| $) 167)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 95 (|has| |#1| (-451)))) (-1606 (($ (-639 $)) 92 (|has| |#1| (-451))) (($ $ $) 91 (|has| |#1| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) 102 (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) 101 (|has| |#1| (-904)))) (-1635 (((-417 $) $) 99 (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) 145) (($ $ (-293 $)) 144) (($ $ $ $) 143) (($ $ (-639 $) (-639 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-639 |#3|) (-639 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-639 |#3|) (-639 $)) 138) (($ $ |#2| $) 205 (|has| |#1| (-232))) (($ $ (-639 |#2|) (-639 $)) 204 (|has| |#1| (-232))) (($ $ |#2| |#1|) 203 (|has| |#1| (-232))) (($ $ (-639 |#2|) (-639 |#1|)) 202 (|has| |#1| (-232)))) (-2455 (($ $ |#3|) 107 (|has| |#1| (-171)))) (-4029 (($ $ |#3|) 42) (($ $ (-639 |#3|)) 41) (($ $ |#3| (-766)) 40) (($ $ (-639 |#3|) (-639 (-766))) 39) (($ $) 238 (|has| |#1| (-232))) (($ $ (-766)) 236 (|has| |#1| (-232))) (($ $ (-1168)) 234 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 233 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 232 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 231 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 224) (($ $ (-1 |#1| |#1|)) 223)) (-4333 (((-639 |#2|) $) 218)) (-3598 ((|#4| $) 150) (((-766) $ |#3|) 130) (((-639 (-766)) $ (-639 |#3|)) 129) (((-766) $ |#2|) 215)) (-4208 (((-887 (-378)) $) 82 (-12 (|has| |#3| (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) 81 (-12 (|has| |#3| (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) 80 (-12 (|has| |#3| (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-3900 ((|#1| $) 175 (|has| |#1| (-451))) (($ $ |#3|) 106 (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 104 (-2246 (|has| $ (-144)) (|has| |#1| (-904))))) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 165) (($ |#3|) 135) (($ |#2|) 220) (($ (-406 (-562))) 72 (-4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562)))))) (($ $) 85 (|has| |#1| (-554)))) (-4358 (((-639 |#1|) $) 168)) (-3906 ((|#1| $ |#4|) 155) (($ $ |#3| (-766)) 128) (($ $ (-639 |#3|) (-639 (-766))) 127)) (-2805 (((-3 $ "failed") $) 73 (-4037 (-2246 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) 28)) (-3548 (($ $ $ (-766)) 173 (|has| |#1| (-171)))) (-2922 (((-112) $ $) 89 (|has| |#1| (-554)))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ |#3|) 38) (($ $ (-639 |#3|)) 37) (($ $ |#3| (-766)) 36) (($ $ (-639 |#3|) (-639 (-766))) 35) (($ $) 237 (|has| |#1| (-232))) (($ $ (-766)) 235 (|has| |#1| (-232))) (($ $ (-1168)) 230 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 229 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 228 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 227 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 226) (($ $ (-1 |#1| |#1|)) 225)) (-1798 (((-112) $ $) 76 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 75 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 77 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 74 (|has| |#1| (-845)))) (-1859 (($ $ |#1|) 156 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 158 (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) 157 (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+(-10 -8 (-15 -4053 (|#1| |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -1433 (|#1| |#1| (-639 |#3|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#3| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#3|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#3| |#1|)) (-15 -2298 ((-1 |#1| (-766)) |#1|)) (-15 -3611 (|#1| |#1|)) (-15 -3592 (|#1| |#1|)) (-15 -3736 (|#4| |#1|)) (-15 -1611 ((-112) |#1|)) (-15 -2277 ((-766) |#1| |#3|)) (-15 -1759 ((-639 (-766)) |#1| |#3|)) (-15 -2277 ((-766) |#1|)) (-15 -1759 ((-639 (-766)) |#1|)) (-15 -2250 ((-766) |#1| |#3|)) (-15 -1993 ((-766) |#1|)) (-15 -1993 ((-766) |#1| |#3|)) (-15 -3712 ((-639 |#3|) |#1|)) (-15 -2298 ((-1 |#1| (-766)) |#3|)) (-15 -4053 (|#1| |#3|)) (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -2250 ((-639 (-766)) |#1| (-639 |#4|))) (-15 -2250 ((-766) |#1| |#4|)) (-15 -4053 (|#1| |#4|)) (-15 -4048 ((-3 |#4| "failed") |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#4| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#4| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -2250 (|#5| |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -4029 (|#1| |#1| (-639 |#4|) (-639 (-766)))) (-15 -4029 (|#1| |#1| |#4| (-766))) (-15 -4029 (|#1| |#1| (-639 |#4|))) (-15 -4029 (|#1| |#1| |#4|)) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-1759 (((-639 (-766)) $) 214) (((-639 (-766)) $ |#2|) 212)) (-2277 (((-766) $) 213) (((-766) $ |#2|) 211)) (-1401 (((-639 |#3|) $) 110)) (-1602 (((-1164 $) $ |#3|) 125) (((-1164 |#1|) $) 124)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 87 (|has| |#1| (-554)))) (-1965 (($ $) 88 (|has| |#1| (-554)))) (-4102 (((-112) $) 90 (|has| |#1| (-554)))) (-1578 (((-766) $) 112) (((-766) $ (-639 |#3|)) 111)) (-2781 (((-3 $ "failed") $ $) 19)) (-3517 (((-417 (-1164 $)) (-1164 $)) 100 (|has| |#1| (-904)))) (-1977 (($ $) 98 (|has| |#1| (-451)))) (-3788 (((-417 $) $) 97 (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 103 (|has| |#1| (-904)))) (-3611 (($ $) 207)) (-3329 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 164) (((-3 (-406 (-562)) "failed") $) 161 (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) 159 (|has| |#1| (-1033 (-562)))) (((-3 |#3| "failed") $) 136) (((-3 |#2| "failed") $) 221)) (-3960 ((|#1| $) 163) (((-406 (-562)) $) 162 (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) 160 (|has| |#1| (-1033 (-562)))) ((|#3| $) 137) ((|#2| $) 222)) (-2355 (($ $ $ |#3|) 108 (|has| |#1| (-171)))) (-1600 (($ $) 154)) (-3449 (((-683 (-562)) (-683 $)) 134 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 133 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 132) (((-683 |#1|) (-683 $)) 131)) (-1694 (((-3 $ "failed") $) 33)) (-2578 (($ $) 176 (|has| |#1| (-451))) (($ $ |#3|) 105 (|has| |#1| (-451)))) (-1585 (((-639 $) $) 109)) (-3521 (((-112) $) 96 (|has| |#1| (-904)))) (-3066 (($ $ |#1| |#4| $) 172)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 84 (-12 (|has| |#3| (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 83 (-12 (|has| |#3| (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1993 (((-766) $ |#2|) 217) (((-766) $) 216)) (-4367 (((-112) $) 31)) (-3627 (((-766) $) 169)) (-1389 (($ (-1164 |#1|) |#3|) 117) (($ (-1164 $) |#3|) 116)) (-1869 (((-639 $) $) 126)) (-2833 (((-112) $) 152)) (-1377 (($ |#1| |#4|) 153) (($ $ |#3| (-766)) 119) (($ $ (-639 |#3|) (-639 (-766))) 118)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ |#3|) 120)) (-3161 ((|#4| $) 170) (((-766) $ |#3|) 122) (((-639 (-766)) $ (-639 |#3|)) 121)) (-1551 (($ $ $) 79 (|has| |#1| (-845)))) (-2993 (($ $ $) 78 (|has| |#1| (-845)))) (-2363 (($ (-1 |#4| |#4|) $) 171)) (-4152 (($ (-1 |#1| |#1|) $) 151)) (-2298 (((-1 $ (-766)) |#2|) 219) (((-1 $ (-766)) $) 206 (|has| |#1| (-232)))) (-3640 (((-3 |#3| "failed") $) 123)) (-1560 (($ $) 149)) (-1573 ((|#1| $) 148)) (-3736 ((|#3| $) 209)) (-1564 (($ (-639 $)) 94 (|has| |#1| (-451))) (($ $ $) 93 (|has| |#1| (-451)))) (-3696 (((-1150) $) 9)) (-1611 (((-112) $) 210)) (-4025 (((-3 (-639 $) "failed") $) 114)) (-1778 (((-3 (-639 $) "failed") $) 115)) (-4270 (((-3 (-2 (|:| |var| |#3|) (|:| -1300 (-766))) "failed") $) 113)) (-3592 (($ $) 208)) (-1709 (((-1112) $) 10)) (-1534 (((-112) $) 166)) (-1547 ((|#1| $) 167)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 95 (|has| |#1| (-451)))) (-1606 (($ (-639 $)) 92 (|has| |#1| (-451))) (($ $ $) 91 (|has| |#1| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) 102 (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) 101 (|has| |#1| (-904)))) (-1635 (((-417 $) $) 99 (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) 145) (($ $ (-293 $)) 144) (($ $ $ $) 143) (($ $ (-639 $) (-639 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-639 |#3|) (-639 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-639 |#3|) (-639 $)) 138) (($ $ |#2| $) 205 (|has| |#1| (-232))) (($ $ (-639 |#2|) (-639 $)) 204 (|has| |#1| (-232))) (($ $ |#2| |#1|) 203 (|has| |#1| (-232))) (($ $ (-639 |#2|) (-639 |#1|)) 202 (|has| |#1| (-232)))) (-2736 (($ $ |#3|) 107 (|has| |#1| (-171)))) (-4029 (($ $ |#3|) 42) (($ $ (-639 |#3|)) 41) (($ $ |#3| (-766)) 40) (($ $ (-639 |#3|) (-639 (-766))) 39) (($ $) 238 (|has| |#1| (-232))) (($ $ (-766)) 236 (|has| |#1| (-232))) (($ $ (-1168)) 234 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 233 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 232 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 231 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 224) (($ $ (-1 |#1| |#1|)) 223)) (-3712 (((-639 |#2|) $) 218)) (-2250 ((|#4| $) 150) (((-766) $ |#3|) 130) (((-639 (-766)) $ (-639 |#3|)) 129) (((-766) $ |#2|) 215)) (-4208 (((-887 (-378)) $) 82 (-12 (|has| |#3| (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) 81 (-12 (|has| |#3| (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) 80 (-12 (|has| |#3| (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-2201 ((|#1| $) 175 (|has| |#1| (-451))) (($ $ |#3|) 106 (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 104 (-2245 (|has| $ (-144)) (|has| |#1| (-904))))) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 165) (($ |#3|) 135) (($ |#2|) 220) (($ (-406 (-562))) 72 (-4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562)))))) (($ $) 85 (|has| |#1| (-554)))) (-3969 (((-639 |#1|) $) 168)) (-2266 ((|#1| $ |#4|) 155) (($ $ |#3| (-766)) 128) (($ $ (-639 |#3|) (-639 (-766))) 127)) (-2059 (((-3 $ "failed") $) 73 (-4037 (-2245 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) 28)) (-1760 (($ $ $ (-766)) 173 (|has| |#1| (-171)))) (-3799 (((-112) $ $) 89 (|has| |#1| (-554)))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ |#3|) 38) (($ $ (-639 |#3|)) 37) (($ $ |#3| (-766)) 36) (($ $ (-639 |#3|) (-639 (-766))) 35) (($ $) 237 (|has| |#1| (-232))) (($ $ (-766)) 235 (|has| |#1| (-232))) (($ $ (-1168)) 230 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 229 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 228 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 227 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 226) (($ $ (-1 |#1| |#1|)) 225)) (-1798 (((-112) $ $) 76 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 75 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 77 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 74 (|has| |#1| (-845)))) (-1859 (($ $ |#1|) 156 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 158 (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) 157 (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
(((-252 |#1| |#2| |#3| |#4|) (-139) (-1044) (-845) (-265 |t#2|) (-788)) (T -252))
-((-3603 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *3 (-845)) (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-1 *1 (-766))) (-4 *1 (-252 *4 *3 *5 *6)))) (-4333 (*1 *2 *1) (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-639 *4)))) (-1900 (*1 *2 *1 *3) (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845)) (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-766)))) (-1900 (*1 *2 *1) (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-766)))) (-3598 (*1 *2 *1 *3) (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845)) (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-766)))) (-1880 (*1 *2 *1) (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-639 (-766))))) (-1929 (*1 *2 *1) (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-766)))) (-1880 (*1 *2 *1 *3) (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845)) (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-639 (-766))))) (-1929 (*1 *2 *1 *3) (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845)) (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-766)))) (-3349 (*1 *2 *1) (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-112)))) (-3736 (*1 *2 *1) (-12 (-4 *1 (-252 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-788)) (-4 *2 (-265 *4)))) (-3592 (*1 *1 *1) (-12 (-4 *1 (-252 *2 *3 *4 *5)) (-4 *2 (-1044)) (-4 *3 (-845)) (-4 *4 (-265 *3)) (-4 *5 (-788)))) (-3677 (*1 *1 *1) (-12 (-4 *1 (-252 *2 *3 *4 *5)) (-4 *2 (-1044)) (-4 *3 (-845)) (-4 *4 (-265 *3)) (-4 *5 (-788)))) (-3603 (*1 *2 *1) (-12 (-4 *3 (-232)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-1 *1 (-766))) (-4 *1 (-252 *3 *4 *5 *6)))))
-(-13 (-944 |t#1| |t#4| |t#3|) (-230 |t#1|) (-1033 |t#2|) (-10 -8 (-15 -3603 ((-1 $ (-766)) |t#2|)) (-15 -4333 ((-639 |t#2|) $)) (-15 -1900 ((-766) $ |t#2|)) (-15 -1900 ((-766) $)) (-15 -3598 ((-766) $ |t#2|)) (-15 -1880 ((-639 (-766)) $)) (-15 -1929 ((-766) $)) (-15 -1880 ((-639 (-766)) $ |t#2|)) (-15 -1929 ((-766) $ |t#2|)) (-15 -3349 ((-112) $)) (-15 -3736 (|t#3| $)) (-15 -3592 ($ $)) (-15 -3677 ($ $)) (IF (|has| |t#1| (-232)) (PROGN (-6 (-513 |t#2| |t#1|)) (-6 (-513 |t#2| $)) (-6 (-308 $)) (-15 -3603 ((-1 $ (-766)) $))) |%noBranch|)))
+((-2298 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *3 (-845)) (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-1 *1 (-766))) (-4 *1 (-252 *4 *3 *5 *6)))) (-3712 (*1 *2 *1) (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-639 *4)))) (-1993 (*1 *2 *1 *3) (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845)) (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-766)))) (-1993 (*1 *2 *1) (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-766)))) (-2250 (*1 *2 *1 *3) (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845)) (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-766)))) (-1759 (*1 *2 *1) (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-639 (-766))))) (-2277 (*1 *2 *1) (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-766)))) (-1759 (*1 *2 *1 *3) (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845)) (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-639 (-766))))) (-2277 (*1 *2 *1 *3) (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845)) (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-766)))) (-1611 (*1 *2 *1) (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-112)))) (-3736 (*1 *2 *1) (-12 (-4 *1 (-252 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-788)) (-4 *2 (-265 *4)))) (-3592 (*1 *1 *1) (-12 (-4 *1 (-252 *2 *3 *4 *5)) (-4 *2 (-1044)) (-4 *3 (-845)) (-4 *4 (-265 *3)) (-4 *5 (-788)))) (-3611 (*1 *1 *1) (-12 (-4 *1 (-252 *2 *3 *4 *5)) (-4 *2 (-1044)) (-4 *3 (-845)) (-4 *4 (-265 *3)) (-4 *5 (-788)))) (-2298 (*1 *2 *1) (-12 (-4 *3 (-232)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-1 *1 (-766))) (-4 *1 (-252 *3 *4 *5 *6)))))
+(-13 (-944 |t#1| |t#4| |t#3|) (-230 |t#1|) (-1033 |t#2|) (-10 -8 (-15 -2298 ((-1 $ (-766)) |t#2|)) (-15 -3712 ((-639 |t#2|) $)) (-15 -1993 ((-766) $ |t#2|)) (-15 -1993 ((-766) $)) (-15 -2250 ((-766) $ |t#2|)) (-15 -1759 ((-639 (-766)) $)) (-15 -2277 ((-766) $)) (-15 -1759 ((-639 (-766)) $ |t#2|)) (-15 -2277 ((-766) $ |t#2|)) (-15 -1611 ((-112) $)) (-15 -3736 (|t#3| $)) (-15 -3592 ($ $)) (-15 -3611 ($ $)) (IF (|has| |t#1| (-232)) (PROGN (-6 (-513 |t#2| |t#1|)) (-6 (-513 |t#2| $)) (-6 (-308 $)) (-15 -2298 ((-1 $ (-766)) $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| |#4|) . T) ((-25) . T) ((-38 #0=(-406 (-562))) |has| |#1| (-38 (-406 (-562)))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-406 (-562)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #0#) -4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562))))) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-612 |#2|) . T) ((-612 |#3|) . T) ((-612 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-171))) ((-610 (-535)) -12 (|has| |#1| (-610 (-535))) (|has| |#3| (-610 (-535)))) ((-610 (-887 (-378))) -12 (|has| |#1| (-610 (-887 (-378)))) (|has| |#3| (-610 (-887 (-378))))) ((-610 (-887 (-562))) -12 (|has| |#1| (-610 (-887 (-562)))) (|has| |#3| (-610 (-887 (-562))))) ((-230 |#1|) . T) ((-232) |has| |#1| (-232)) ((-289) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-308 $) . T) ((-325 |#1| |#4|) . T) ((-376 |#1|) . T) ((-410 |#1|) . T) ((-451) -4037 (|has| |#1| (-904)) (|has| |#1| (-451))) ((-513 |#2| |#1|) |has| |#1| (-232)) ((-513 |#2| $) |has| |#1| (-232)) ((-513 |#3| |#1|) . T) ((-513 |#3| $) . T) ((-513 $ $) . T) ((-554) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-642 #0#) |has| |#1| (-38 (-406 (-562)))) ((-642 |#1|) . T) ((-642 $) . T) ((-635 (-562)) |has| |#1| (-635 (-562))) ((-635 |#1|) . T) ((-712 #0#) |has| |#1| (-38 (-406 (-562)))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-721) . T) ((-845) |has| |#1| (-845)) ((-895 (-1168)) |has| |#1| (-895 (-1168))) ((-895 |#3|) . T) ((-881 (-378)) -12 (|has| |#1| (-881 (-378))) (|has| |#3| (-881 (-378)))) ((-881 (-562)) -12 (|has| |#1| (-881 (-562))) (|has| |#3| (-881 (-562)))) ((-944 |#1| |#4| |#3|) . T) ((-904) |has| |#1| (-904)) ((-1033 (-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 |#1|) . T) ((-1033 |#2|) . T) ((-1033 |#3|) . T) ((-1050 #0#) |has| |#1| (-38 (-406 (-562)))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1211) |has| |#1| (-904)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2169 ((|#1| $) 54)) (-2775 ((|#1| $) 44)) (-4336 (((-112) $ (-766)) 8)) (-1800 (($) 7 T CONST)) (-3109 (($ $) 60)) (-2447 (($ $) 48)) (-2737 ((|#1| |#1| $) 46)) (-3064 ((|#1| $) 45)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-3641 (((-766) $) 61)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3262 ((|#1| $) 39)) (-3988 ((|#1| |#1| $) 52)) (-1381 ((|#1| |#1| $) 51)) (-4300 (($ |#1| $) 40)) (-3060 (((-766) $) 55)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3516 ((|#1| $) 62)) (-2840 ((|#1| $) 50)) (-3833 ((|#1| $) 49)) (-1904 ((|#1| $) 41)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2391 ((|#1| |#1| $) 58)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-3872 ((|#1| $) 59)) (-3543 (($) 57) (($ (-639 |#1|)) 56)) (-2193 (((-766) $) 43)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2549 ((|#1| $) 53)) (-1932 (($ (-639 |#1|)) 42)) (-3686 ((|#1| $) 63)) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-1768 ((|#1| $) 54)) (-2774 ((|#1| $) 44)) (-3735 (((-112) $ (-766)) 8)) (-3329 (($) 7 T CONST)) (-2953 (($ $) 60)) (-2673 (($ $) 48)) (-2571 ((|#1| |#1| $) 46)) (-3767 ((|#1| $) 45)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3641 (((-766) $) 61)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-2078 ((|#1| $) 39)) (-3607 ((|#1| |#1| $) 52)) (-2216 ((|#1| |#1| $) 51)) (-1581 (($ |#1| $) 40)) (-3059 (((-766) $) 55)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-2662 ((|#1| $) 62)) (-4234 ((|#1| $) 50)) (-2712 ((|#1| $) 49)) (-2038 ((|#1| $) 41)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3297 ((|#1| |#1| $) 58)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-1903 ((|#1| $) 59)) (-2891 (($) 57) (($ (-639 |#1|)) 56)) (-2191 (((-766) $) 43)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-4311 ((|#1| $) 53)) (-4131 (($ (-639 |#1|)) 42)) (-3690 ((|#1| $) 63)) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-253 |#1|) (-139) (-1207)) (T -253))
-((-3543 (*1 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-3543 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-4 *1 (-253 *3)))) (-3060 (*1 *2 *1) (-12 (-4 *1 (-253 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))) (-2169 (*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-2549 (*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-3988 (*1 *2 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-1381 (*1 *2 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-2840 (*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-3833 (*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-2447 (*1 *1 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
-(-13 (-1113 |t#1|) (-990 |t#1|) (-10 -8 (-15 -3543 ($)) (-15 -3543 ($ (-639 |t#1|))) (-15 -3060 ((-766) $)) (-15 -2169 (|t#1| $)) (-15 -2549 (|t#1| $)) (-15 -3988 (|t#1| |t#1| $)) (-15 -1381 (|t#1| |t#1| $)) (-15 -2840 (|t#1| $)) (-15 -3833 (|t#1| $)) (-15 -2447 ($ $))))
+((-2891 (*1 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-2891 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-4 *1 (-253 *3)))) (-3059 (*1 *2 *1) (-12 (-4 *1 (-253 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))) (-1768 (*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-4311 (*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-3607 (*1 *2 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-2216 (*1 *2 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-4234 (*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-2712 (*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))) (-2673 (*1 *1 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
+(-13 (-1113 |t#1|) (-990 |t#1|) (-10 -8 (-15 -2891 ($)) (-15 -2891 ($ (-639 |t#1|))) (-15 -3059 ((-766) $)) (-15 -1768 (|t#1| $)) (-15 -4311 (|t#1| $)) (-15 -3607 (|t#1| |t#1| $)) (-15 -2216 (|t#1| |t#1| $)) (-15 -4234 (|t#1| $)) (-15 -2712 (|t#1| $)) (-15 -2673 ($ $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-990 |#1|) . T) ((-1092) |has| |#1| (-1092)) ((-1113 |#1|) . T) ((-1207) . T))
-((-3168 (((-1 (-938 (-224)) (-224) (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1 (-224) (-224) (-224) (-224))) 139)) (-4199 (((-1125 (-224)) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378))) 160) (((-1125 (-224)) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)) (-639 (-262))) 158) (((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378))) 163) (((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262))) 159) (((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378))) 150) (((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262))) 149) (((-1125 (-224)) (-1 (-938 (-224)) (-224)) (-1086 (-378))) 129) (((-1125 (-224)) (-1 (-938 (-224)) (-224)) (-1086 (-378)) (-639 (-262))) 127) (((-1125 (-224)) (-874 (-1 (-224) (-224))) (-1086 (-378))) 128) (((-1125 (-224)) (-874 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262))) 125)) (-4155 (((-1258) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378))) 162) (((-1258) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)) (-639 (-262))) 161) (((-1258) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378))) 165) (((-1258) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262))) 164) (((-1258) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378))) 152) (((-1258) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262))) 151) (((-1258) (-1 (-938 (-224)) (-224)) (-1086 (-378))) 135) (((-1258) (-1 (-938 (-224)) (-224)) (-1086 (-378)) (-639 (-262))) 134) (((-1258) (-874 (-1 (-224) (-224))) (-1086 (-378))) 133) (((-1258) (-874 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262))) 132) (((-1257) (-872 (-1 (-224) (-224))) (-1086 (-378))) 100) (((-1257) (-872 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262))) 99) (((-1257) (-1 (-224) (-224)) (-1086 (-378))) 96) (((-1257) (-1 (-224) (-224)) (-1086 (-378)) (-639 (-262))) 95)))
-(((-254) (-10 -7 (-15 -4155 ((-1257) (-1 (-224) (-224)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1257) (-1 (-224) (-224)) (-1086 (-378)))) (-15 -4155 ((-1257) (-872 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1257) (-872 (-1 (-224) (-224))) (-1086 (-378)))) (-15 -4155 ((-1258) (-874 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-874 (-1 (-224) (-224))) (-1086 (-378)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-874 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-874 (-1 (-224) (-224))) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224)) (-1086 (-378)))) (-15 -4155 ((-1258) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4155 ((-1258) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)))) (-15 -3168 ((-1 (-938 (-224)) (-224) (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1 (-224) (-224) (-224) (-224)))))) (T -254))
-((-3168 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-938 (-224)) (-224) (-224))) (-5 *3 (-1 (-224) (-224) (-224) (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-877 (-1 (-224) (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-877 (-1 (-224) (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-877 (-1 (-224) (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-877 (-1 (-224) (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-938 (-224)) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-938 (-224)) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4) (-12 (-5 *3 (-874 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-874 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-938 (-224)) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-938 (-224)) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-874 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-874 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-872 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *2 (-1257)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-872 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1257)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1257)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1257)) (-5 *1 (-254)))))
-(-10 -7 (-15 -4155 ((-1257) (-1 (-224) (-224)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1257) (-1 (-224) (-224)) (-1086 (-378)))) (-15 -4155 ((-1257) (-872 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1257) (-872 (-1 (-224) (-224))) (-1086 (-378)))) (-15 -4155 ((-1258) (-874 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-874 (-1 (-224) (-224))) (-1086 (-378)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-874 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-874 (-1 (-224) (-224))) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224)) (-1086 (-378)))) (-15 -4155 ((-1258) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4155 ((-1258) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)))) (-15 -3168 ((-1 (-938 (-224)) (-224) (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1 (-224) (-224) (-224) (-224)))))
+((-2380 (((-1 (-938 (-224)) (-224) (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1 (-224) (-224) (-224) (-224))) 139)) (-4199 (((-1125 (-224)) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378))) 160) (((-1125 (-224)) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)) (-639 (-262))) 158) (((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378))) 163) (((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262))) 159) (((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378))) 150) (((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262))) 149) (((-1125 (-224)) (-1 (-938 (-224)) (-224)) (-1086 (-378))) 129) (((-1125 (-224)) (-1 (-938 (-224)) (-224)) (-1086 (-378)) (-639 (-262))) 127) (((-1125 (-224)) (-874 (-1 (-224) (-224))) (-1086 (-378))) 128) (((-1125 (-224)) (-874 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262))) 125)) (-4155 (((-1258) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378))) 162) (((-1258) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)) (-639 (-262))) 161) (((-1258) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378))) 165) (((-1258) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262))) 164) (((-1258) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378))) 152) (((-1258) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262))) 151) (((-1258) (-1 (-938 (-224)) (-224)) (-1086 (-378))) 135) (((-1258) (-1 (-938 (-224)) (-224)) (-1086 (-378)) (-639 (-262))) 134) (((-1258) (-874 (-1 (-224) (-224))) (-1086 (-378))) 133) (((-1258) (-874 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262))) 132) (((-1257) (-872 (-1 (-224) (-224))) (-1086 (-378))) 100) (((-1257) (-872 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262))) 99) (((-1257) (-1 (-224) (-224)) (-1086 (-378))) 96) (((-1257) (-1 (-224) (-224)) (-1086 (-378)) (-639 (-262))) 95)))
+(((-254) (-10 -7 (-15 -4155 ((-1257) (-1 (-224) (-224)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1257) (-1 (-224) (-224)) (-1086 (-378)))) (-15 -4155 ((-1257) (-872 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1257) (-872 (-1 (-224) (-224))) (-1086 (-378)))) (-15 -4155 ((-1258) (-874 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-874 (-1 (-224) (-224))) (-1086 (-378)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-874 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-874 (-1 (-224) (-224))) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224)) (-1086 (-378)))) (-15 -4155 ((-1258) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4155 ((-1258) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)))) (-15 -2380 ((-1 (-938 (-224)) (-224) (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1 (-224) (-224) (-224) (-224)))))) (T -254))
+((-2380 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-938 (-224)) (-224) (-224))) (-5 *3 (-1 (-224) (-224) (-224) (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-877 (-1 (-224) (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-877 (-1 (-224) (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-877 (-1 (-224) (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-877 (-1 (-224) (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-938 (-224)) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-938 (-224)) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4) (-12 (-5 *3 (-874 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4199 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-874 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-938 (-224)) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-938 (-224)) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-874 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-874 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1258)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-872 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *2 (-1257)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-872 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1257)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *2 (-1257)) (-5 *1 (-254)))) (-4155 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-224) (-224))) (-5 *4 (-1086 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1257)) (-5 *1 (-254)))))
+(-10 -7 (-15 -4155 ((-1257) (-1 (-224) (-224)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1257) (-1 (-224) (-224)) (-1086 (-378)))) (-15 -4155 ((-1257) (-872 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1257) (-872 (-1 (-224) (-224))) (-1086 (-378)))) (-15 -4155 ((-1258) (-874 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-874 (-1 (-224) (-224))) (-1086 (-378)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-874 (-1 (-224) (-224))) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-874 (-1 (-224) (-224))) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224)) (-1086 (-378)))) (-15 -4155 ((-1258) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-378)) (-1086 (-378)))) (-15 -4155 ((-1258) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)))) (-15 -4199 ((-1125 (-224)) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-877 (-1 (-224) (-224) (-224))) (-1086 (-378)) (-1086 (-378)))) (-15 -2380 ((-1 (-938 (-224)) (-224) (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1 (-224) (-224) (-224) (-224)))))
((-4155 (((-1257) (-293 |#2|) (-1168) (-1168) (-639 (-262))) 96)))
(((-255 |#1| |#2|) (-10 -7 (-15 -4155 ((-1257) (-293 |#2|) (-1168) (-1168) (-639 (-262))))) (-13 (-554) (-845) (-1033 (-562))) (-429 |#1|)) (T -255))
((-4155 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-293 *7)) (-5 *4 (-1168)) (-5 *5 (-639 (-262))) (-4 *7 (-429 *6)) (-4 *6 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-1257)) (-5 *1 (-255 *6 *7)))))
(-10 -7 (-15 -4155 ((-1257) (-293 |#2|) (-1168) (-1168) (-639 (-262)))))
-((-3226 (((-562) (-562)) 50)) (-2636 (((-562) (-562)) 51)) (-4178 (((-224) (-224)) 52)) (-3877 (((-1258) (-1 (-168 (-224)) (-168 (-224))) (-1086 (-224)) (-1086 (-224))) 49)) (-1509 (((-1258) (-1 (-168 (-224)) (-168 (-224))) (-1086 (-224)) (-1086 (-224)) (-112)) 47)))
-(((-256) (-10 -7 (-15 -1509 ((-1258) (-1 (-168 (-224)) (-168 (-224))) (-1086 (-224)) (-1086 (-224)) (-112))) (-15 -3877 ((-1258) (-1 (-168 (-224)) (-168 (-224))) (-1086 (-224)) (-1086 (-224)))) (-15 -3226 ((-562) (-562))) (-15 -2636 ((-562) (-562))) (-15 -4178 ((-224) (-224))))) (T -256))
-((-4178 (*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-256)))) (-2636 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-256)))) (-3226 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-256)))) (-3877 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-168 (-224)) (-168 (-224)))) (-5 *4 (-1086 (-224))) (-5 *2 (-1258)) (-5 *1 (-256)))) (-1509 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-168 (-224)) (-168 (-224)))) (-5 *4 (-1086 (-224))) (-5 *5 (-112)) (-5 *2 (-1258)) (-5 *1 (-256)))))
-(-10 -7 (-15 -1509 ((-1258) (-1 (-168 (-224)) (-168 (-224))) (-1086 (-224)) (-1086 (-224)) (-112))) (-15 -3877 ((-1258) (-1 (-168 (-224)) (-168 (-224))) (-1086 (-224)) (-1086 (-224)))) (-15 -3226 ((-562) (-562))) (-15 -2636 ((-562) (-562))) (-15 -4178 ((-224) (-224))))
-((-4054 (((-1084 (-378)) (-1084 (-315 |#1|))) 16)))
-(((-257 |#1|) (-10 -7 (-15 -4054 ((-1084 (-378)) (-1084 (-315 |#1|))))) (-13 (-845) (-554) (-610 (-378)))) (T -257))
-((-4054 (*1 *2 *3) (-12 (-5 *3 (-1084 (-315 *4))) (-4 *4 (-13 (-845) (-554) (-610 (-378)))) (-5 *2 (-1084 (-378))) (-5 *1 (-257 *4)))))
-(-10 -7 (-15 -4054 ((-1084 (-378)) (-1084 (-315 |#1|)))))
+((-2870 (((-562) (-562)) 50)) (-4001 (((-562) (-562)) 51)) (-2860 (((-224) (-224)) 52)) (-1964 (((-1258) (-1 (-168 (-224)) (-168 (-224))) (-1086 (-224)) (-1086 (-224))) 49)) (-2644 (((-1258) (-1 (-168 (-224)) (-168 (-224))) (-1086 (-224)) (-1086 (-224)) (-112)) 47)))
+(((-256) (-10 -7 (-15 -2644 ((-1258) (-1 (-168 (-224)) (-168 (-224))) (-1086 (-224)) (-1086 (-224)) (-112))) (-15 -1964 ((-1258) (-1 (-168 (-224)) (-168 (-224))) (-1086 (-224)) (-1086 (-224)))) (-15 -2870 ((-562) (-562))) (-15 -4001 ((-562) (-562))) (-15 -2860 ((-224) (-224))))) (T -256))
+((-2860 (*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-256)))) (-4001 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-256)))) (-2870 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-256)))) (-1964 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-168 (-224)) (-168 (-224)))) (-5 *4 (-1086 (-224))) (-5 *2 (-1258)) (-5 *1 (-256)))) (-2644 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-168 (-224)) (-168 (-224)))) (-5 *4 (-1086 (-224))) (-5 *5 (-112)) (-5 *2 (-1258)) (-5 *1 (-256)))))
+(-10 -7 (-15 -2644 ((-1258) (-1 (-168 (-224)) (-168 (-224))) (-1086 (-224)) (-1086 (-224)) (-112))) (-15 -1964 ((-1258) (-1 (-168 (-224)) (-168 (-224))) (-1086 (-224)) (-1086 (-224)))) (-15 -2870 ((-562) (-562))) (-15 -4001 ((-562) (-562))) (-15 -2860 ((-224) (-224))))
+((-4053 (((-1084 (-378)) (-1084 (-315 |#1|))) 16)))
+(((-257 |#1|) (-10 -7 (-15 -4053 ((-1084 (-378)) (-1084 (-315 |#1|))))) (-13 (-845) (-554) (-610 (-378)))) (T -257))
+((-4053 (*1 *2 *3) (-12 (-5 *3 (-1084 (-315 *4))) (-4 *4 (-13 (-845) (-554) (-610 (-378)))) (-5 *2 (-1084 (-378))) (-5 *1 (-257 *4)))))
+(-10 -7 (-15 -4053 ((-1084 (-378)) (-1084 (-315 |#1|)))))
((-4199 (((-1125 (-224)) (-877 |#1|) (-1084 (-378)) (-1084 (-378))) 71) (((-1125 (-224)) (-877 |#1|) (-1084 (-378)) (-1084 (-378)) (-639 (-262))) 70) (((-1125 (-224)) |#1| (-1084 (-378)) (-1084 (-378))) 61) (((-1125 (-224)) |#1| (-1084 (-378)) (-1084 (-378)) (-639 (-262))) 60) (((-1125 (-224)) (-874 |#1|) (-1084 (-378))) 52) (((-1125 (-224)) (-874 |#1|) (-1084 (-378)) (-639 (-262))) 51)) (-4155 (((-1258) (-877 |#1|) (-1084 (-378)) (-1084 (-378))) 74) (((-1258) (-877 |#1|) (-1084 (-378)) (-1084 (-378)) (-639 (-262))) 73) (((-1258) |#1| (-1084 (-378)) (-1084 (-378))) 64) (((-1258) |#1| (-1084 (-378)) (-1084 (-378)) (-639 (-262))) 63) (((-1258) (-874 |#1|) (-1084 (-378))) 56) (((-1258) (-874 |#1|) (-1084 (-378)) (-639 (-262))) 55) (((-1257) (-872 |#1|) (-1084 (-378))) 43) (((-1257) (-872 |#1|) (-1084 (-378)) (-639 (-262))) 42) (((-1257) |#1| (-1084 (-378))) 35) (((-1257) |#1| (-1084 (-378)) (-639 (-262))) 34)))
(((-258 |#1|) (-10 -7 (-15 -4155 ((-1257) |#1| (-1084 (-378)) (-639 (-262)))) (-15 -4155 ((-1257) |#1| (-1084 (-378)))) (-15 -4155 ((-1257) (-872 |#1|) (-1084 (-378)) (-639 (-262)))) (-15 -4155 ((-1257) (-872 |#1|) (-1084 (-378)))) (-15 -4155 ((-1258) (-874 |#1|) (-1084 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-874 |#1|) (-1084 (-378)))) (-15 -4199 ((-1125 (-224)) (-874 |#1|) (-1084 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-874 |#1|) (-1084 (-378)))) (-15 -4155 ((-1258) |#1| (-1084 (-378)) (-1084 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) |#1| (-1084 (-378)) (-1084 (-378)))) (-15 -4199 ((-1125 (-224)) |#1| (-1084 (-378)) (-1084 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) |#1| (-1084 (-378)) (-1084 (-378)))) (-15 -4155 ((-1258) (-877 |#1|) (-1084 (-378)) (-1084 (-378)) (-639 (-262)))) (-15 -4155 ((-1258) (-877 |#1|) (-1084 (-378)) (-1084 (-378)))) (-15 -4199 ((-1125 (-224)) (-877 |#1|) (-1084 (-378)) (-1084 (-378)) (-639 (-262)))) (-15 -4199 ((-1125 (-224)) (-877 |#1|) (-1084 (-378)) (-1084 (-378))))) (-13 (-610 (-535)) (-1092))) (T -258))
((-4199 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-877 *5)) (-5 *4 (-1084 (-378))) (-4 *5 (-13 (-610 (-535)) (-1092))) (-5 *2 (-1125 (-224))) (-5 *1 (-258 *5)))) (-4199 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-877 *6)) (-5 *4 (-1084 (-378))) (-5 *5 (-639 (-262))) (-4 *6 (-13 (-610 (-535)) (-1092))) (-5 *2 (-1125 (-224))) (-5 *1 (-258 *6)))) (-4155 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-877 *5)) (-5 *4 (-1084 (-378))) (-4 *5 (-13 (-610 (-535)) (-1092))) (-5 *2 (-1258)) (-5 *1 (-258 *5)))) (-4155 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-877 *6)) (-5 *4 (-1084 (-378))) (-5 *5 (-639 (-262))) (-4 *6 (-13 (-610 (-535)) (-1092))) (-5 *2 (-1258)) (-5 *1 (-258 *6)))) (-4199 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1084 (-378))) (-5 *2 (-1125 (-224))) (-5 *1 (-258 *3)) (-4 *3 (-13 (-610 (-535)) (-1092))))) (-4199 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1084 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-258 *3)) (-4 *3 (-13 (-610 (-535)) (-1092))))) (-4155 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1084 (-378))) (-5 *2 (-1258)) (-5 *1 (-258 *3)) (-4 *3 (-13 (-610 (-535)) (-1092))))) (-4155 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1084 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1258)) (-5 *1 (-258 *3)) (-4 *3 (-13 (-610 (-535)) (-1092))))) (-4199 (*1 *2 *3 *4) (-12 (-5 *3 (-874 *5)) (-5 *4 (-1084 (-378))) (-4 *5 (-13 (-610 (-535)) (-1092))) (-5 *2 (-1125 (-224))) (-5 *1 (-258 *5)))) (-4199 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-874 *6)) (-5 *4 (-1084 (-378))) (-5 *5 (-639 (-262))) (-4 *6 (-13 (-610 (-535)) (-1092))) (-5 *2 (-1125 (-224))) (-5 *1 (-258 *6)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-874 *5)) (-5 *4 (-1084 (-378))) (-4 *5 (-13 (-610 (-535)) (-1092))) (-5 *2 (-1258)) (-5 *1 (-258 *5)))) (-4155 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-874 *6)) (-5 *4 (-1084 (-378))) (-5 *5 (-639 (-262))) (-4 *6 (-13 (-610 (-535)) (-1092))) (-5 *2 (-1258)) (-5 *1 (-258 *6)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-872 *5)) (-5 *4 (-1084 (-378))) (-4 *5 (-13 (-610 (-535)) (-1092))) (-5 *2 (-1257)) (-5 *1 (-258 *5)))) (-4155 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-872 *6)) (-5 *4 (-1084 (-378))) (-5 *5 (-639 (-262))) (-4 *6 (-13 (-610 (-535)) (-1092))) (-5 *2 (-1257)) (-5 *1 (-258 *6)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *4 (-1084 (-378))) (-5 *2 (-1257)) (-5 *1 (-258 *3)) (-4 *3 (-13 (-610 (-535)) (-1092))))) (-4155 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1084 (-378))) (-5 *5 (-639 (-262))) (-5 *2 (-1257)) (-5 *1 (-258 *3)) (-4 *3 (-13 (-610 (-535)) (-1092))))))
@@ -1004,150 +1004,150 @@ NIL
(((-259) (-10 -7 (-15 -4155 ((-1257) (-639 (-224)) (-639 (-224)))) (-15 -4155 ((-1257) (-639 (-224)) (-639 (-224)) (-639 (-262)))) (-15 -4155 ((-1257) (-639 (-938 (-224))))) (-15 -4155 ((-1257) (-639 (-938 (-224))) (-639 (-262)))) (-15 -4155 ((-1258) (-639 (-224)) (-639 (-224)) (-639 (-224)))) (-15 -4155 ((-1258) (-639 (-224)) (-639 (-224)) (-639 (-224)) (-639 (-262)))))) (T -259))
((-4155 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-639 (-224))) (-5 *4 (-639 (-262))) (-5 *2 (-1258)) (-5 *1 (-259)))) (-4155 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-639 (-224))) (-5 *2 (-1258)) (-5 *1 (-259)))) (-4155 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-938 (-224)))) (-5 *4 (-639 (-262))) (-5 *2 (-1257)) (-5 *1 (-259)))) (-4155 (*1 *2 *3) (-12 (-5 *3 (-639 (-938 (-224)))) (-5 *2 (-1257)) (-5 *1 (-259)))) (-4155 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-639 (-224))) (-5 *4 (-639 (-262))) (-5 *2 (-1257)) (-5 *1 (-259)))) (-4155 (*1 *2 *3 *3) (-12 (-5 *3 (-639 (-224))) (-5 *2 (-1257)) (-5 *1 (-259)))))
(-10 -7 (-15 -4155 ((-1257) (-639 (-224)) (-639 (-224)))) (-15 -4155 ((-1257) (-639 (-224)) (-639 (-224)) (-639 (-262)))) (-15 -4155 ((-1257) (-639 (-938 (-224))))) (-15 -4155 ((-1257) (-639 (-938 (-224))) (-639 (-262)))) (-15 -4155 ((-1258) (-639 (-224)) (-639 (-224)) (-639 (-224)))) (-15 -4155 ((-1258) (-639 (-224)) (-639 (-224)) (-639 (-224)) (-639 (-262)))))
-((-3891 (((-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))) (-639 (-262)) (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) 26)) (-3016 (((-916) (-639 (-262)) (-916)) 53)) (-4244 (((-916) (-639 (-262)) (-916)) 52)) (-3426 (((-639 (-378)) (-639 (-262)) (-639 (-378))) 69)) (-1552 (((-378) (-639 (-262)) (-378)) 58)) (-4275 (((-916) (-639 (-262)) (-916)) 54)) (-4231 (((-112) (-639 (-262)) (-112)) 28)) (-3563 (((-1150) (-639 (-262)) (-1150)) 20)) (-1979 (((-1150) (-639 (-262)) (-1150)) 27)) (-3566 (((-1125 (-224)) (-639 (-262))) 47)) (-3545 (((-639 (-1086 (-378))) (-639 (-262)) (-639 (-1086 (-378)))) 41)) (-3724 (((-869) (-639 (-262)) (-869)) 33)) (-2385 (((-869) (-639 (-262)) (-869)) 34)) (-1715 (((-1 (-938 (-224)) (-938 (-224))) (-639 (-262)) (-1 (-938 (-224)) (-938 (-224)))) 64)) (-2853 (((-112) (-639 (-262)) (-112)) 16)) (-3470 (((-112) (-639 (-262)) (-112)) 15)))
-(((-260) (-10 -7 (-15 -3470 ((-112) (-639 (-262)) (-112))) (-15 -2853 ((-112) (-639 (-262)) (-112))) (-15 -3891 ((-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))) (-639 (-262)) (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))) (-15 -3563 ((-1150) (-639 (-262)) (-1150))) (-15 -1979 ((-1150) (-639 (-262)) (-1150))) (-15 -4231 ((-112) (-639 (-262)) (-112))) (-15 -3724 ((-869) (-639 (-262)) (-869))) (-15 -2385 ((-869) (-639 (-262)) (-869))) (-15 -3545 ((-639 (-1086 (-378))) (-639 (-262)) (-639 (-1086 (-378))))) (-15 -4244 ((-916) (-639 (-262)) (-916))) (-15 -3016 ((-916) (-639 (-262)) (-916))) (-15 -3566 ((-1125 (-224)) (-639 (-262)))) (-15 -4275 ((-916) (-639 (-262)) (-916))) (-15 -1552 ((-378) (-639 (-262)) (-378))) (-15 -1715 ((-1 (-938 (-224)) (-938 (-224))) (-639 (-262)) (-1 (-938 (-224)) (-938 (-224))))) (-15 -3426 ((-639 (-378)) (-639 (-262)) (-639 (-378)))))) (T -260))
-((-3426 (*1 *2 *3 *2) (-12 (-5 *2 (-639 (-378))) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-1715 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-938 (-224)) (-938 (-224)))) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-1552 (*1 *2 *3 *2) (-12 (-5 *2 (-378)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-4275 (*1 *2 *3 *2) (-12 (-5 *2 (-916)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-3566 (*1 *2 *3) (-12 (-5 *3 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-260)))) (-3016 (*1 *2 *3 *2) (-12 (-5 *2 (-916)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-4244 (*1 *2 *3 *2) (-12 (-5 *2 (-916)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-3545 (*1 *2 *3 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-2385 (*1 *2 *3 *2) (-12 (-5 *2 (-869)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-3724 (*1 *2 *3 *2) (-12 (-5 *2 (-869)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-4231 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-1979 (*1 *2 *3 *2) (-12 (-5 *2 (-1150)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-3563 (*1 *2 *3 *2) (-12 (-5 *2 (-1150)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-3891 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-2853 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-3470 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))))
-(-10 -7 (-15 -3470 ((-112) (-639 (-262)) (-112))) (-15 -2853 ((-112) (-639 (-262)) (-112))) (-15 -3891 ((-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))) (-639 (-262)) (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))) (-15 -3563 ((-1150) (-639 (-262)) (-1150))) (-15 -1979 ((-1150) (-639 (-262)) (-1150))) (-15 -4231 ((-112) (-639 (-262)) (-112))) (-15 -3724 ((-869) (-639 (-262)) (-869))) (-15 -2385 ((-869) (-639 (-262)) (-869))) (-15 -3545 ((-639 (-1086 (-378))) (-639 (-262)) (-639 (-1086 (-378))))) (-15 -4244 ((-916) (-639 (-262)) (-916))) (-15 -3016 ((-916) (-639 (-262)) (-916))) (-15 -3566 ((-1125 (-224)) (-639 (-262)))) (-15 -4275 ((-916) (-639 (-262)) (-916))) (-15 -1552 ((-378) (-639 (-262)) (-378))) (-15 -1715 ((-1 (-938 (-224)) (-938 (-224))) (-639 (-262)) (-1 (-938 (-224)) (-938 (-224))))) (-15 -3426 ((-639 (-378)) (-639 (-262)) (-639 (-378)))))
-((-1895 (((-3 |#1| "failed") (-639 (-262)) (-1168)) 17)))
-(((-261 |#1|) (-10 -7 (-15 -1895 ((-3 |#1| "failed") (-639 (-262)) (-1168)))) (-1207)) (T -261))
-((-1895 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-639 (-262))) (-5 *4 (-1168)) (-5 *1 (-261 *2)) (-4 *2 (-1207)))))
-(-10 -7 (-15 -1895 ((-3 |#1| "failed") (-639 (-262)) (-1168))))
-((-4041 (((-112) $ $) NIL)) (-3891 (($ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) 15)) (-3016 (($ (-916)) 76)) (-4244 (($ (-916)) 75)) (-3931 (($ (-639 (-378))) 82)) (-1552 (($ (-378)) 58)) (-4275 (($ (-916)) 77)) (-4231 (($ (-112)) 23)) (-3563 (($ (-1150)) 18)) (-1979 (($ (-1150)) 19)) (-3566 (($ (-1125 (-224))) 71)) (-3545 (($ (-639 (-1086 (-378)))) 67)) (-1590 (($ (-639 (-1086 (-378)))) 59) (($ (-639 (-1086 (-406 (-562))))) 66)) (-1613 (($ (-378)) 29) (($ (-869)) 33)) (-4005 (((-112) (-639 $) (-1168)) 91)) (-1895 (((-3 (-52) "failed") (-639 $) (-1168)) 93)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1807 (($ (-378)) 34) (($ (-869)) 35)) (-3593 (($ (-1 (-938 (-224)) (-938 (-224)))) 57)) (-1715 (($ (-1 (-938 (-224)) (-938 (-224)))) 78)) (-3185 (($ (-1 (-224) (-224))) 39) (($ (-1 (-224) (-224) (-224))) 43) (($ (-1 (-224) (-224) (-224) (-224))) 47)) (-4054 (((-857) $) 87)) (-3201 (($ (-112)) 24) (($ (-639 (-1086 (-378)))) 52)) (-3470 (($ (-112)) 25)) (-1731 (((-112) $ $) 89)))
-(((-262) (-13 (-1092) (-10 -8 (-15 -3470 ($ (-112))) (-15 -3201 ($ (-112))) (-15 -3891 ($ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))) (-15 -3563 ($ (-1150))) (-15 -1979 ($ (-1150))) (-15 -4231 ($ (-112))) (-15 -3201 ($ (-639 (-1086 (-378))))) (-15 -3593 ($ (-1 (-938 (-224)) (-938 (-224))))) (-15 -1613 ($ (-378))) (-15 -1613 ($ (-869))) (-15 -1807 ($ (-378))) (-15 -1807 ($ (-869))) (-15 -3185 ($ (-1 (-224) (-224)))) (-15 -3185 ($ (-1 (-224) (-224) (-224)))) (-15 -3185 ($ (-1 (-224) (-224) (-224) (-224)))) (-15 -1552 ($ (-378))) (-15 -1590 ($ (-639 (-1086 (-378))))) (-15 -1590 ($ (-639 (-1086 (-406 (-562)))))) (-15 -3545 ($ (-639 (-1086 (-378))))) (-15 -3566 ($ (-1125 (-224)))) (-15 -4244 ($ (-916))) (-15 -3016 ($ (-916))) (-15 -4275 ($ (-916))) (-15 -1715 ($ (-1 (-938 (-224)) (-938 (-224))))) (-15 -3931 ($ (-639 (-378)))) (-15 -1895 ((-3 (-52) "failed") (-639 $) (-1168))) (-15 -4005 ((-112) (-639 $) (-1168)))))) (T -262))
-((-3470 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-262)))) (-3201 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-262)))) (-3891 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) (-5 *1 (-262)))) (-3563 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-262)))) (-1979 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-262)))) (-4231 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-262)))) (-3201 (*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-262)))) (-3593 (*1 *1 *2) (-12 (-5 *2 (-1 (-938 (-224)) (-938 (-224)))) (-5 *1 (-262)))) (-1613 (*1 *1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-262)))) (-1613 (*1 *1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-262)))) (-1807 (*1 *1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-262)))) (-1807 (*1 *1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-262)))) (-3185 (*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *1 (-262)))) (-3185 (*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224) (-224))) (-5 *1 (-262)))) (-3185 (*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224) (-224) (-224))) (-5 *1 (-262)))) (-1552 (*1 *1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-262)))) (-1590 (*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-262)))) (-1590 (*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-406 (-562))))) (-5 *1 (-262)))) (-3545 (*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-262)))) (-3566 (*1 *1 *2) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-262)))) (-4244 (*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-262)))) (-3016 (*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-262)))) (-4275 (*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-262)))) (-1715 (*1 *1 *2) (-12 (-5 *2 (-1 (-938 (-224)) (-938 (-224)))) (-5 *1 (-262)))) (-3931 (*1 *1 *2) (-12 (-5 *2 (-639 (-378))) (-5 *1 (-262)))) (-1895 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-639 (-262))) (-5 *4 (-1168)) (-5 *2 (-52)) (-5 *1 (-262)))) (-4005 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-262))) (-5 *4 (-1168)) (-5 *2 (-112)) (-5 *1 (-262)))))
-(-13 (-1092) (-10 -8 (-15 -3470 ($ (-112))) (-15 -3201 ($ (-112))) (-15 -3891 ($ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))) (-15 -3563 ($ (-1150))) (-15 -1979 ($ (-1150))) (-15 -4231 ($ (-112))) (-15 -3201 ($ (-639 (-1086 (-378))))) (-15 -3593 ($ (-1 (-938 (-224)) (-938 (-224))))) (-15 -1613 ($ (-378))) (-15 -1613 ($ (-869))) (-15 -1807 ($ (-378))) (-15 -1807 ($ (-869))) (-15 -3185 ($ (-1 (-224) (-224)))) (-15 -3185 ($ (-1 (-224) (-224) (-224)))) (-15 -3185 ($ (-1 (-224) (-224) (-224) (-224)))) (-15 -1552 ($ (-378))) (-15 -1590 ($ (-639 (-1086 (-378))))) (-15 -1590 ($ (-639 (-1086 (-406 (-562)))))) (-15 -3545 ($ (-639 (-1086 (-378))))) (-15 -3566 ($ (-1125 (-224)))) (-15 -4244 ($ (-916))) (-15 -3016 ($ (-916))) (-15 -4275 ($ (-916))) (-15 -1715 ($ (-1 (-938 (-224)) (-938 (-224))))) (-15 -3931 ($ (-639 (-378)))) (-15 -1895 ((-3 (-52) "failed") (-639 $) (-1168))) (-15 -4005 ((-112) (-639 $) (-1168)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1880 (((-639 (-766)) $) NIL) (((-639 (-766)) $ |#2|) NIL)) (-1929 (((-766) $) NIL) (((-766) $ |#2|) NIL)) (-1402 (((-639 |#3|) $) NIL)) (-1599 (((-1164 $) $ |#3|) NIL) (((-1164 |#1|) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 |#3|)) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-2798 (($ $) NIL (|has| |#1| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3677 (($ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1117 |#1| |#2|) "failed") $) 21)) (-3961 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1117 |#1| |#2|) $) NIL)) (-2835 (($ $ $ |#3|) NIL (|has| |#1| (-171)))) (-1601 (($ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#1| (-451))) (($ $ |#3|) NIL (|has| |#1| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#1| (-904)))) (-3122 (($ $ |#1| (-530 |#3|) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| |#1| (-881 (-378))) (|has| |#3| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| |#1| (-881 (-562))) (|has| |#3| (-881 (-562)))))) (-1900 (((-766) $ |#2|) NIL) (((-766) $) 10)) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-1390 (($ (-1164 |#1|) |#3|) NIL) (($ (-1164 $) |#3|) NIL)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-530 |#3|)) NIL) (($ $ |#3| (-766)) NIL) (($ $ (-639 |#3|) (-639 (-766))) NIL)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ |#3|) NIL)) (-2076 (((-530 |#3|) $) NIL) (((-766) $ |#3|) NIL) (((-639 (-766)) $ (-639 |#3|)) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2836 (($ (-1 (-530 |#3|) (-530 |#3|)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3603 (((-1 $ (-766)) |#2|) NIL) (((-1 $ (-766)) $) NIL (|has| |#1| (-232)))) (-3372 (((-3 |#3| "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-3736 ((|#3| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-2913 (((-1150) $) NIL)) (-3349 (((-112) $) NIL)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| |#3|) (|:| -1960 (-766))) "failed") $) NIL)) (-3592 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#1| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-639 |#3|) (-639 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-639 |#3|) (-639 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-232))) (($ $ (-639 |#2|) (-639 $)) NIL (|has| |#1| (-232))) (($ $ |#2| |#1|) NIL (|has| |#1| (-232))) (($ $ (-639 |#2|) (-639 |#1|)) NIL (|has| |#1| (-232)))) (-2455 (($ $ |#3|) NIL (|has| |#1| (-171)))) (-4029 (($ $ |#3|) NIL) (($ $ (-639 |#3|)) NIL) (($ $ |#3| (-766)) NIL) (($ $ (-639 |#3|) (-639 (-766))) NIL) (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4333 (((-639 |#2|) $) NIL)) (-3598 (((-530 |#3|) $) NIL) (((-766) $ |#3|) NIL) (((-639 (-766)) $ (-639 |#3|)) NIL) (((-766) $ |#2|) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| |#1| (-610 (-887 (-378)))) (|has| |#3| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| |#1| (-610 (-887 (-562)))) (|has| |#3| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| |#1| (-610 (-535))) (|has| |#3| (-610 (-535)))))) (-3900 ((|#1| $) NIL (|has| |#1| (-451))) (($ $ |#3|) NIL (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) 24) (($ |#3|) 23) (($ |#2|) NIL) (($ (-1117 |#1| |#2|)) 30) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-530 |#3|)) NIL) (($ $ |#3| (-766)) NIL) (($ $ (-639 |#3|) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ |#3|) NIL) (($ $ (-639 |#3|)) NIL) (($ $ |#3| (-766)) NIL) (($ $ (-639 |#3|) (-639 (-766))) NIL) (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-2113 (((-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))) (-639 (-262)) (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) 26)) (-3431 (((-916) (-639 (-262)) (-916)) 53)) (-2280 (((-916) (-639 (-262)) (-916)) 52)) (-3426 (((-639 (-378)) (-639 (-262)) (-639 (-378))) 69)) (-1827 (((-378) (-639 (-262)) (-378)) 58)) (-4379 (((-916) (-639 (-262)) (-916)) 54)) (-2156 (((-112) (-639 (-262)) (-112)) 28)) (-3563 (((-1150) (-639 (-262)) (-1150)) 20)) (-1506 (((-1150) (-639 (-262)) (-1150)) 27)) (-1957 (((-1125 (-224)) (-639 (-262))) 47)) (-1732 (((-639 (-1086 (-378))) (-639 (-262)) (-639 (-1086 (-378)))) 41)) (-4112 (((-869) (-639 (-262)) (-869)) 33)) (-3232 (((-869) (-639 (-262)) (-869)) 34)) (-3830 (((-1 (-938 (-224)) (-938 (-224))) (-639 (-262)) (-1 (-938 (-224)) (-938 (-224)))) 64)) (-4334 (((-112) (-639 (-262)) (-112)) 16)) (-3376 (((-112) (-639 (-262)) (-112)) 15)))
+(((-260) (-10 -7 (-15 -3376 ((-112) (-639 (-262)) (-112))) (-15 -4334 ((-112) (-639 (-262)) (-112))) (-15 -2113 ((-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))) (-639 (-262)) (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))) (-15 -3563 ((-1150) (-639 (-262)) (-1150))) (-15 -1506 ((-1150) (-639 (-262)) (-1150))) (-15 -2156 ((-112) (-639 (-262)) (-112))) (-15 -4112 ((-869) (-639 (-262)) (-869))) (-15 -3232 ((-869) (-639 (-262)) (-869))) (-15 -1732 ((-639 (-1086 (-378))) (-639 (-262)) (-639 (-1086 (-378))))) (-15 -2280 ((-916) (-639 (-262)) (-916))) (-15 -3431 ((-916) (-639 (-262)) (-916))) (-15 -1957 ((-1125 (-224)) (-639 (-262)))) (-15 -4379 ((-916) (-639 (-262)) (-916))) (-15 -1827 ((-378) (-639 (-262)) (-378))) (-15 -3830 ((-1 (-938 (-224)) (-938 (-224))) (-639 (-262)) (-1 (-938 (-224)) (-938 (-224))))) (-15 -3426 ((-639 (-378)) (-639 (-262)) (-639 (-378)))))) (T -260))
+((-3426 (*1 *2 *3 *2) (-12 (-5 *2 (-639 (-378))) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-3830 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-938 (-224)) (-938 (-224)))) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-1827 (*1 *2 *3 *2) (-12 (-5 *2 (-378)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-4379 (*1 *2 *3 *2) (-12 (-5 *2 (-916)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-1957 (*1 *2 *3) (-12 (-5 *3 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-260)))) (-3431 (*1 *2 *3 *2) (-12 (-5 *2 (-916)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-2280 (*1 *2 *3 *2) (-12 (-5 *2 (-916)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-1732 (*1 *2 *3 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-3232 (*1 *2 *3 *2) (-12 (-5 *2 (-869)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-4112 (*1 *2 *3 *2) (-12 (-5 *2 (-869)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-2156 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-1506 (*1 *2 *3 *2) (-12 (-5 *2 (-1150)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-3563 (*1 *2 *3 *2) (-12 (-5 *2 (-1150)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-2113 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-4334 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))) (-3376 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))))
+(-10 -7 (-15 -3376 ((-112) (-639 (-262)) (-112))) (-15 -4334 ((-112) (-639 (-262)) (-112))) (-15 -2113 ((-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))) (-639 (-262)) (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))) (-15 -3563 ((-1150) (-639 (-262)) (-1150))) (-15 -1506 ((-1150) (-639 (-262)) (-1150))) (-15 -2156 ((-112) (-639 (-262)) (-112))) (-15 -4112 ((-869) (-639 (-262)) (-869))) (-15 -3232 ((-869) (-639 (-262)) (-869))) (-15 -1732 ((-639 (-1086 (-378))) (-639 (-262)) (-639 (-1086 (-378))))) (-15 -2280 ((-916) (-639 (-262)) (-916))) (-15 -3431 ((-916) (-639 (-262)) (-916))) (-15 -1957 ((-1125 (-224)) (-639 (-262)))) (-15 -4379 ((-916) (-639 (-262)) (-916))) (-15 -1827 ((-378) (-639 (-262)) (-378))) (-15 -3830 ((-1 (-938 (-224)) (-938 (-224))) (-639 (-262)) (-1 (-938 (-224)) (-938 (-224))))) (-15 -3426 ((-639 (-378)) (-639 (-262)) (-639 (-378)))))
+((-1893 (((-3 |#1| "failed") (-639 (-262)) (-1168)) 17)))
+(((-261 |#1|) (-10 -7 (-15 -1893 ((-3 |#1| "failed") (-639 (-262)) (-1168)))) (-1207)) (T -261))
+((-1893 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-639 (-262))) (-5 *4 (-1168)) (-5 *1 (-261 *2)) (-4 *2 (-1207)))))
+(-10 -7 (-15 -1893 ((-3 |#1| "failed") (-639 (-262)) (-1168))))
+((-4041 (((-112) $ $) NIL)) (-2113 (($ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) 15)) (-3431 (($ (-916)) 76)) (-2280 (($ (-916)) 75)) (-4310 (($ (-639 (-378))) 82)) (-1827 (($ (-378)) 58)) (-4379 (($ (-916)) 77)) (-2156 (($ (-112)) 23)) (-3563 (($ (-1150)) 18)) (-1506 (($ (-1150)) 19)) (-1957 (($ (-1125 (-224))) 71)) (-1732 (($ (-639 (-1086 (-378)))) 67)) (-2147 (($ (-639 (-1086 (-378)))) 59) (($ (-639 (-1086 (-406 (-562))))) 66)) (-4135 (($ (-378)) 29) (($ (-869)) 33)) (-3775 (((-112) (-639 $) (-1168)) 91)) (-1893 (((-3 (-52) "failed") (-639 $) (-1168)) 93)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3406 (($ (-378)) 34) (($ (-869)) 35)) (-2205 (($ (-1 (-938 (-224)) (-938 (-224)))) 57)) (-3830 (($ (-1 (-938 (-224)) (-938 (-224)))) 78)) (-2519 (($ (-1 (-224) (-224))) 39) (($ (-1 (-224) (-224) (-224))) 43) (($ (-1 (-224) (-224) (-224) (-224))) 47)) (-4053 (((-857) $) 87)) (-2657 (($ (-112)) 24) (($ (-639 (-1086 (-378)))) 52)) (-3376 (($ (-112)) 25)) (-1733 (((-112) $ $) 89)))
+(((-262) (-13 (-1092) (-10 -8 (-15 -3376 ($ (-112))) (-15 -2657 ($ (-112))) (-15 -2113 ($ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))) (-15 -3563 ($ (-1150))) (-15 -1506 ($ (-1150))) (-15 -2156 ($ (-112))) (-15 -2657 ($ (-639 (-1086 (-378))))) (-15 -2205 ($ (-1 (-938 (-224)) (-938 (-224))))) (-15 -4135 ($ (-378))) (-15 -4135 ($ (-869))) (-15 -3406 ($ (-378))) (-15 -3406 ($ (-869))) (-15 -2519 ($ (-1 (-224) (-224)))) (-15 -2519 ($ (-1 (-224) (-224) (-224)))) (-15 -2519 ($ (-1 (-224) (-224) (-224) (-224)))) (-15 -1827 ($ (-378))) (-15 -2147 ($ (-639 (-1086 (-378))))) (-15 -2147 ($ (-639 (-1086 (-406 (-562)))))) (-15 -1732 ($ (-639 (-1086 (-378))))) (-15 -1957 ($ (-1125 (-224)))) (-15 -2280 ($ (-916))) (-15 -3431 ($ (-916))) (-15 -4379 ($ (-916))) (-15 -3830 ($ (-1 (-938 (-224)) (-938 (-224))))) (-15 -4310 ($ (-639 (-378)))) (-15 -1893 ((-3 (-52) "failed") (-639 $) (-1168))) (-15 -3775 ((-112) (-639 $) (-1168)))))) (T -262))
+((-3376 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-262)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-262)))) (-2113 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) (-5 *1 (-262)))) (-3563 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-262)))) (-1506 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-262)))) (-2156 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-262)))) (-2657 (*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-262)))) (-2205 (*1 *1 *2) (-12 (-5 *2 (-1 (-938 (-224)) (-938 (-224)))) (-5 *1 (-262)))) (-4135 (*1 *1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-262)))) (-4135 (*1 *1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-262)))) (-3406 (*1 *1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-262)))) (-3406 (*1 *1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-262)))) (-2519 (*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *1 (-262)))) (-2519 (*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224) (-224))) (-5 *1 (-262)))) (-2519 (*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224) (-224) (-224))) (-5 *1 (-262)))) (-1827 (*1 *1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-262)))) (-2147 (*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-262)))) (-2147 (*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-406 (-562))))) (-5 *1 (-262)))) (-1732 (*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-262)))) (-1957 (*1 *1 *2) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-262)))) (-2280 (*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-262)))) (-3431 (*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-262)))) (-4379 (*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-262)))) (-3830 (*1 *1 *2) (-12 (-5 *2 (-1 (-938 (-224)) (-938 (-224)))) (-5 *1 (-262)))) (-4310 (*1 *1 *2) (-12 (-5 *2 (-639 (-378))) (-5 *1 (-262)))) (-1893 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-639 (-262))) (-5 *4 (-1168)) (-5 *2 (-52)) (-5 *1 (-262)))) (-3775 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-262))) (-5 *4 (-1168)) (-5 *2 (-112)) (-5 *1 (-262)))))
+(-13 (-1092) (-10 -8 (-15 -3376 ($ (-112))) (-15 -2657 ($ (-112))) (-15 -2113 ($ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))) (-15 -3563 ($ (-1150))) (-15 -1506 ($ (-1150))) (-15 -2156 ($ (-112))) (-15 -2657 ($ (-639 (-1086 (-378))))) (-15 -2205 ($ (-1 (-938 (-224)) (-938 (-224))))) (-15 -4135 ($ (-378))) (-15 -4135 ($ (-869))) (-15 -3406 ($ (-378))) (-15 -3406 ($ (-869))) (-15 -2519 ($ (-1 (-224) (-224)))) (-15 -2519 ($ (-1 (-224) (-224) (-224)))) (-15 -2519 ($ (-1 (-224) (-224) (-224) (-224)))) (-15 -1827 ($ (-378))) (-15 -2147 ($ (-639 (-1086 (-378))))) (-15 -2147 ($ (-639 (-1086 (-406 (-562)))))) (-15 -1732 ($ (-639 (-1086 (-378))))) (-15 -1957 ($ (-1125 (-224)))) (-15 -2280 ($ (-916))) (-15 -3431 ($ (-916))) (-15 -4379 ($ (-916))) (-15 -3830 ($ (-1 (-938 (-224)) (-938 (-224))))) (-15 -4310 ($ (-639 (-378)))) (-15 -1893 ((-3 (-52) "failed") (-639 $) (-1168))) (-15 -3775 ((-112) (-639 $) (-1168)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1759 (((-639 (-766)) $) NIL) (((-639 (-766)) $ |#2|) NIL)) (-2277 (((-766) $) NIL) (((-766) $ |#2|) NIL)) (-1401 (((-639 |#3|) $) NIL)) (-1602 (((-1164 $) $ |#3|) NIL) (((-1164 |#1|) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 |#3|)) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1977 (($ $) NIL (|has| |#1| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3611 (($ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1117 |#1| |#2|) "failed") $) 21)) (-3960 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1117 |#1| |#2|) $) NIL)) (-2355 (($ $ $ |#3|) NIL (|has| |#1| (-171)))) (-1600 (($ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#1| (-451))) (($ $ |#3|) NIL (|has| |#1| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#1| (-904)))) (-3066 (($ $ |#1| (-530 |#3|) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| |#1| (-881 (-378))) (|has| |#3| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| |#1| (-881 (-562))) (|has| |#3| (-881 (-562)))))) (-1993 (((-766) $ |#2|) NIL) (((-766) $) 10)) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-1389 (($ (-1164 |#1|) |#3|) NIL) (($ (-1164 $) |#3|) NIL)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-530 |#3|)) NIL) (($ $ |#3| (-766)) NIL) (($ $ (-639 |#3|) (-639 (-766))) NIL)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ |#3|) NIL)) (-3161 (((-530 |#3|) $) NIL) (((-766) $ |#3|) NIL) (((-639 (-766)) $ (-639 |#3|)) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2363 (($ (-1 (-530 |#3|) (-530 |#3|)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2298 (((-1 $ (-766)) |#2|) NIL) (((-1 $ (-766)) $) NIL (|has| |#1| (-232)))) (-3640 (((-3 |#3| "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-3736 ((|#3| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3696 (((-1150) $) NIL)) (-1611 (((-112) $) NIL)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| |#3|) (|:| -1300 (-766))) "failed") $) NIL)) (-3592 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#1| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-639 |#3|) (-639 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-639 |#3|) (-639 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-232))) (($ $ (-639 |#2|) (-639 $)) NIL (|has| |#1| (-232))) (($ $ |#2| |#1|) NIL (|has| |#1| (-232))) (($ $ (-639 |#2|) (-639 |#1|)) NIL (|has| |#1| (-232)))) (-2736 (($ $ |#3|) NIL (|has| |#1| (-171)))) (-4029 (($ $ |#3|) NIL) (($ $ (-639 |#3|)) NIL) (($ $ |#3| (-766)) NIL) (($ $ (-639 |#3|) (-639 (-766))) NIL) (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3712 (((-639 |#2|) $) NIL)) (-2250 (((-530 |#3|) $) NIL) (((-766) $ |#3|) NIL) (((-639 (-766)) $ (-639 |#3|)) NIL) (((-766) $ |#2|) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| |#1| (-610 (-887 (-378)))) (|has| |#3| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| |#1| (-610 (-887 (-562)))) (|has| |#3| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| |#1| (-610 (-535))) (|has| |#3| (-610 (-535)))))) (-2201 ((|#1| $) NIL (|has| |#1| (-451))) (($ $ |#3|) NIL (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) 24) (($ |#3|) 23) (($ |#2|) NIL) (($ (-1117 |#1| |#2|)) 30) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-530 |#3|)) NIL) (($ $ |#3| (-766)) NIL) (($ $ (-639 |#3|) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ |#3|) NIL) (($ $ (-639 |#3|)) NIL) (($ $ |#3| (-766)) NIL) (($ $ (-639 |#3|) (-639 (-766))) NIL) (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-263 |#1| |#2| |#3|) (-13 (-252 |#1| |#2| |#3| (-530 |#3|)) (-1033 (-1117 |#1| |#2|))) (-1044) (-845) (-265 |#2|)) (T -263))
NIL
(-13 (-252 |#1| |#2| |#3| (-530 |#3|)) (-1033 (-1117 |#1| |#2|)))
-((-1929 (((-766) $) 30)) (-4048 (((-3 |#2| "failed") $) 17)) (-3961 ((|#2| $) 27)) (-4029 (($ $) 12) (($ $ (-766)) 15)) (-4054 (((-857) $) 26) (($ |#2|) 10)) (-1731 (((-112) $ $) 20)) (-1759 (((-112) $ $) 29)))
-(((-264 |#1| |#2|) (-10 -8 (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -1929 ((-766) |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -1759 ((-112) |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -1731 ((-112) |#1| |#1|))) (-265 |#2|) (-845)) (T -264))
+((-2277 (((-766) $) 30)) (-4048 (((-3 |#2| "failed") $) 17)) (-3960 ((|#2| $) 27)) (-4029 (($ $) 12) (($ $ (-766)) 15)) (-4053 (((-857) $) 26) (($ |#2|) 10)) (-1733 (((-112) $ $) 20)) (-1761 (((-112) $ $) 29)))
+(((-264 |#1| |#2|) (-10 -8 (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -2277 ((-766) |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -1761 ((-112) |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -1733 ((-112) |#1| |#1|))) (-265 |#2|) (-845)) (T -264))
NIL
-(-10 -8 (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -1929 ((-766) |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -1759 ((-112) |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -1731 ((-112) |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1929 (((-766) $) 22)) (-2444 ((|#1| $) 23)) (-4048 (((-3 |#1| "failed") $) 27)) (-3961 ((|#1| $) 28)) (-1900 (((-766) $) 24)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-3603 (($ |#1| (-766)) 25)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4029 (($ $) 21) (($ $ (-766)) 20)) (-4054 (((-857) $) 11) (($ |#1|) 26)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)))
+(-10 -8 (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -2277 ((-766) |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -1761 ((-112) |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -1733 ((-112) |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-2277 (((-766) $) 22)) (-2443 ((|#1| $) 23)) (-4048 (((-3 |#1| "failed") $) 27)) (-3960 ((|#1| $) 28)) (-1993 (((-766) $) 24)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-2298 (($ |#1| (-766)) 25)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4029 (($ $) 21) (($ $ (-766)) 20)) (-4053 (((-857) $) 11) (($ |#1|) 26)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)))
(((-265 |#1|) (-139) (-845)) (T -265))
-((-4054 (*1 *1 *2) (-12 (-4 *1 (-265 *2)) (-4 *2 (-845)))) (-3603 (*1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-265 *2)) (-4 *2 (-845)))) (-1900 (*1 *2 *1) (-12 (-4 *1 (-265 *3)) (-4 *3 (-845)) (-5 *2 (-766)))) (-2444 (*1 *2 *1) (-12 (-4 *1 (-265 *2)) (-4 *2 (-845)))) (-1929 (*1 *2 *1) (-12 (-4 *1 (-265 *3)) (-4 *3 (-845)) (-5 *2 (-766)))) (-4029 (*1 *1 *1) (-12 (-4 *1 (-265 *2)) (-4 *2 (-845)))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-265 *3)) (-4 *3 (-845)))))
-(-13 (-845) (-1033 |t#1|) (-10 -8 (-15 -3603 ($ |t#1| (-766))) (-15 -1900 ((-766) $)) (-15 -2444 (|t#1| $)) (-15 -1929 ((-766) $)) (-15 -4029 ($ $)) (-15 -4029 ($ $ (-766))) (-15 -4054 ($ |t#1|))))
+((-4053 (*1 *1 *2) (-12 (-4 *1 (-265 *2)) (-4 *2 (-845)))) (-2298 (*1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-265 *2)) (-4 *2 (-845)))) (-1993 (*1 *2 *1) (-12 (-4 *1 (-265 *3)) (-4 *3 (-845)) (-5 *2 (-766)))) (-2443 (*1 *2 *1) (-12 (-4 *1 (-265 *2)) (-4 *2 (-845)))) (-2277 (*1 *2 *1) (-12 (-4 *1 (-265 *3)) (-4 *3 (-845)) (-5 *2 (-766)))) (-4029 (*1 *1 *1) (-12 (-4 *1 (-265 *2)) (-4 *2 (-845)))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-265 *3)) (-4 *3 (-845)))))
+(-13 (-845) (-1033 |t#1|) (-10 -8 (-15 -2298 ($ |t#1| (-766))) (-15 -1993 ((-766) $)) (-15 -2443 (|t#1| $)) (-15 -2277 ((-766) $)) (-15 -4029 ($ $)) (-15 -4029 ($ $ (-766))) (-15 -4053 ($ |t#1|))))
(((-102) . T) ((-612 |#1|) . T) ((-609 (-857)) . T) ((-845) . T) ((-1033 |#1|) . T) ((-1092) . T))
-((-1402 (((-639 (-1168)) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) 41)) (-2852 (((-639 (-1168)) (-315 (-224)) (-766)) 80)) (-3859 (((-3 (-315 (-224)) "failed") (-315 (-224))) 51)) (-1642 (((-315 (-224)) (-315 (-224))) 67)) (-2214 (((-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 26)) (-3093 (((-112) (-639 (-315 (-224)))) 84)) (-2592 (((-112) (-315 (-224))) 24)) (-4017 (((-639 (-1150)) (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))))) 105)) (-4001 (((-639 (-315 (-224))) (-639 (-315 (-224)))) 87)) (-4302 (((-639 (-315 (-224))) (-639 (-315 (-224)))) 86)) (-2757 (((-683 (-224)) (-639 (-315 (-224))) (-766)) 94)) (-2605 (((-112) (-315 (-224))) 20) (((-112) (-639 (-315 (-224)))) 85)) (-2317 (((-639 (-224)) (-639 (-838 (-224))) (-224)) 14)) (-2787 (((-378) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) 100)) (-4278 (((-1030) (-1168) (-1030)) 34)))
-(((-266) (-10 -7 (-15 -2317 ((-639 (-224)) (-639 (-838 (-224))) (-224))) (-15 -2214 ((-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))))) (-15 -3859 ((-3 (-315 (-224)) "failed") (-315 (-224)))) (-15 -1642 ((-315 (-224)) (-315 (-224)))) (-15 -3093 ((-112) (-639 (-315 (-224))))) (-15 -2605 ((-112) (-639 (-315 (-224))))) (-15 -2605 ((-112) (-315 (-224)))) (-15 -2757 ((-683 (-224)) (-639 (-315 (-224))) (-766))) (-15 -4302 ((-639 (-315 (-224))) (-639 (-315 (-224))))) (-15 -4001 ((-639 (-315 (-224))) (-639 (-315 (-224))))) (-15 -2592 ((-112) (-315 (-224)))) (-15 -1402 ((-639 (-1168)) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))) (-15 -2852 ((-639 (-1168)) (-315 (-224)) (-766))) (-15 -4278 ((-1030) (-1168) (-1030))) (-15 -2787 ((-378) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))) (-15 -4017 ((-639 (-1150)) (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))))))) (T -266))
-((-4017 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))))) (-5 *2 (-639 (-1150))) (-5 *1 (-266)))) (-2787 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) (-5 *2 (-378)) (-5 *1 (-266)))) (-4278 (*1 *2 *3 *2) (-12 (-5 *2 (-1030)) (-5 *3 (-1168)) (-5 *1 (-266)))) (-2852 (*1 *2 *3 *4) (-12 (-5 *3 (-315 (-224))) (-5 *4 (-766)) (-5 *2 (-639 (-1168))) (-5 *1 (-266)))) (-1402 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) (-5 *2 (-639 (-1168))) (-5 *1 (-266)))) (-2592 (*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-112)) (-5 *1 (-266)))) (-4001 (*1 *2 *2) (-12 (-5 *2 (-639 (-315 (-224)))) (-5 *1 (-266)))) (-4302 (*1 *2 *2) (-12 (-5 *2 (-639 (-315 (-224)))) (-5 *1 (-266)))) (-2757 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-315 (-224)))) (-5 *4 (-766)) (-5 *2 (-683 (-224))) (-5 *1 (-266)))) (-2605 (*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-112)) (-5 *1 (-266)))) (-2605 (*1 *2 *3) (-12 (-5 *3 (-639 (-315 (-224)))) (-5 *2 (-112)) (-5 *1 (-266)))) (-3093 (*1 *2 *3) (-12 (-5 *3 (-639 (-315 (-224)))) (-5 *2 (-112)) (-5 *1 (-266)))) (-1642 (*1 *2 *2) (-12 (-5 *2 (-315 (-224))) (-5 *1 (-266)))) (-3859 (*1 *2 *2) (|partial| -12 (-5 *2 (-315 (-224))) (-5 *1 (-266)))) (-2214 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (-5 *1 (-266)))) (-2317 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-838 (-224)))) (-5 *4 (-224)) (-5 *2 (-639 *4)) (-5 *1 (-266)))))
-(-10 -7 (-15 -2317 ((-639 (-224)) (-639 (-838 (-224))) (-224))) (-15 -2214 ((-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))))) (-15 -3859 ((-3 (-315 (-224)) "failed") (-315 (-224)))) (-15 -1642 ((-315 (-224)) (-315 (-224)))) (-15 -3093 ((-112) (-639 (-315 (-224))))) (-15 -2605 ((-112) (-639 (-315 (-224))))) (-15 -2605 ((-112) (-315 (-224)))) (-15 -2757 ((-683 (-224)) (-639 (-315 (-224))) (-766))) (-15 -4302 ((-639 (-315 (-224))) (-639 (-315 (-224))))) (-15 -4001 ((-639 (-315 (-224))) (-639 (-315 (-224))))) (-15 -2592 ((-112) (-315 (-224)))) (-15 -1402 ((-639 (-1168)) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))) (-15 -2852 ((-639 (-1168)) (-315 (-224)) (-766))) (-15 -4278 ((-1030) (-1168) (-1030))) (-15 -2787 ((-378) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))) (-15 -4017 ((-639 (-1150)) (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))))))
-((-4041 (((-112) $ $) NIL)) (-3508 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 44)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 26) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-1401 (((-639 (-1168)) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) 41)) (-2850 (((-639 (-1168)) (-315 (-224)) (-766)) 80)) (-2919 (((-3 (-315 (-224)) "failed") (-315 (-224))) 51)) (-1304 (((-315 (-224)) (-315 (-224))) 67)) (-2243 (((-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 26)) (-4049 (((-112) (-639 (-315 (-224)))) 84)) (-1705 (((-112) (-315 (-224))) 24)) (-3905 (((-639 (-1150)) (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))))) 105)) (-3741 (((-639 (-315 (-224))) (-639 (-315 (-224)))) 87)) (-1609 (((-639 (-315 (-224))) (-639 (-315 (-224)))) 86)) (-2742 (((-683 (-224)) (-639 (-315 (-224))) (-766)) 94)) (-3647 (((-112) (-315 (-224))) 20) (((-112) (-639 (-315 (-224)))) 85)) (-3809 (((-639 (-224)) (-639 (-838 (-224))) (-224)) 14)) (-1854 (((-378) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) 100)) (-1312 (((-1030) (-1168) (-1030)) 34)))
+(((-266) (-10 -7 (-15 -3809 ((-639 (-224)) (-639 (-838 (-224))) (-224))) (-15 -2243 ((-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))))) (-15 -2919 ((-3 (-315 (-224)) "failed") (-315 (-224)))) (-15 -1304 ((-315 (-224)) (-315 (-224)))) (-15 -4049 ((-112) (-639 (-315 (-224))))) (-15 -3647 ((-112) (-639 (-315 (-224))))) (-15 -3647 ((-112) (-315 (-224)))) (-15 -2742 ((-683 (-224)) (-639 (-315 (-224))) (-766))) (-15 -1609 ((-639 (-315 (-224))) (-639 (-315 (-224))))) (-15 -3741 ((-639 (-315 (-224))) (-639 (-315 (-224))))) (-15 -1705 ((-112) (-315 (-224)))) (-15 -1401 ((-639 (-1168)) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))) (-15 -2850 ((-639 (-1168)) (-315 (-224)) (-766))) (-15 -1312 ((-1030) (-1168) (-1030))) (-15 -1854 ((-378) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))) (-15 -3905 ((-639 (-1150)) (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))))))) (T -266))
+((-3905 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))))) (-5 *2 (-639 (-1150))) (-5 *1 (-266)))) (-1854 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) (-5 *2 (-378)) (-5 *1 (-266)))) (-1312 (*1 *2 *3 *2) (-12 (-5 *2 (-1030)) (-5 *3 (-1168)) (-5 *1 (-266)))) (-2850 (*1 *2 *3 *4) (-12 (-5 *3 (-315 (-224))) (-5 *4 (-766)) (-5 *2 (-639 (-1168))) (-5 *1 (-266)))) (-1401 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) (-5 *2 (-639 (-1168))) (-5 *1 (-266)))) (-1705 (*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-112)) (-5 *1 (-266)))) (-3741 (*1 *2 *2) (-12 (-5 *2 (-639 (-315 (-224)))) (-5 *1 (-266)))) (-1609 (*1 *2 *2) (-12 (-5 *2 (-639 (-315 (-224)))) (-5 *1 (-266)))) (-2742 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-315 (-224)))) (-5 *4 (-766)) (-5 *2 (-683 (-224))) (-5 *1 (-266)))) (-3647 (*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-112)) (-5 *1 (-266)))) (-3647 (*1 *2 *3) (-12 (-5 *3 (-639 (-315 (-224)))) (-5 *2 (-112)) (-5 *1 (-266)))) (-4049 (*1 *2 *3) (-12 (-5 *3 (-639 (-315 (-224)))) (-5 *2 (-112)) (-5 *1 (-266)))) (-1304 (*1 *2 *2) (-12 (-5 *2 (-315 (-224))) (-5 *1 (-266)))) (-2919 (*1 *2 *2) (|partial| -12 (-5 *2 (-315 (-224))) (-5 *1 (-266)))) (-2243 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (-5 *1 (-266)))) (-3809 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-838 (-224)))) (-5 *4 (-224)) (-5 *2 (-639 *4)) (-5 *1 (-266)))))
+(-10 -7 (-15 -3809 ((-639 (-224)) (-639 (-838 (-224))) (-224))) (-15 -2243 ((-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))))) (-15 -2919 ((-3 (-315 (-224)) "failed") (-315 (-224)))) (-15 -1304 ((-315 (-224)) (-315 (-224)))) (-15 -4049 ((-112) (-639 (-315 (-224))))) (-15 -3647 ((-112) (-639 (-315 (-224))))) (-15 -3647 ((-112) (-315 (-224)))) (-15 -2742 ((-683 (-224)) (-639 (-315 (-224))) (-766))) (-15 -1609 ((-639 (-315 (-224))) (-639 (-315 (-224))))) (-15 -3741 ((-639 (-315 (-224))) (-639 (-315 (-224))))) (-15 -1705 ((-112) (-315 (-224)))) (-15 -1401 ((-639 (-1168)) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))) (-15 -2850 ((-639 (-1168)) (-315 (-224)) (-766))) (-15 -1312 ((-1030) (-1168) (-1030))) (-15 -1854 ((-378) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))) (-15 -3905 ((-639 (-1150)) (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))))))
+((-4041 (((-112) $ $) NIL)) (-2605 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 44)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 26) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-267) (-834)) (T -267))
NIL
(-834)
-((-4041 (((-112) $ $) NIL)) (-3508 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) 58) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 54)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 34) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) 36)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-2605 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) 58) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 54)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 34) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) 36)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-268) (-834)) (T -268))
NIL
(-834)
-((-4041 (((-112) $ $) NIL)) (-3508 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) 76) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 73)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 44) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) 55)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-2605 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) 76) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 73)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 44) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) 55)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-269) (-834)) (T -269))
NIL
(-834)
-((-4041 (((-112) $ $) NIL)) (-3508 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 50)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 31) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-2605 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 50)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 31) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-270) (-834)) (T -270))
NIL
(-834)
-((-4041 (((-112) $ $) NIL)) (-3508 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 50)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 28) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-2605 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 50)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 28) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-271) (-834)) (T -271))
NIL
(-834)
-((-4041 (((-112) $ $) NIL)) (-3508 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 73)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 28) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-2605 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 73)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 28) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-272) (-834)) (T -272))
NIL
(-834)
-((-4041 (((-112) $ $) NIL)) (-3508 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 77)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 25) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-2605 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) NIL) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 77)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 25) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-273) (-834)) (T -273))
NIL
(-834)
-((-4041 (((-112) $ $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1328 (((-639 (-562)) $) 18)) (-3598 (((-766) $) 16)) (-4054 (((-857) $) 22) (($ (-639 (-562))) 14)) (-2685 (($ (-766)) 19)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 9)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 10)))
-(((-274) (-13 (-845) (-10 -8 (-15 -4054 ($ (-639 (-562)))) (-15 -3598 ((-766) $)) (-15 -1328 ((-639 (-562)) $)) (-15 -2685 ($ (-766)))))) (T -274))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-274)))) (-3598 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-274)))) (-1328 (*1 *2 *1) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-274)))) (-2685 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-274)))))
-(-13 (-845) (-10 -8 (-15 -4054 ($ (-639 (-562)))) (-15 -3598 ((-766) $)) (-15 -1328 ((-639 (-562)) $)) (-15 -2685 ($ (-766)))))
-((-2988 ((|#2| |#2|) 77)) (-4097 ((|#2| |#2|) 65)) (-1701 (((-3 |#2| "failed") |#2| (-639 (-2 (|:| |func| |#2|) (|:| |pole| (-112))))) 116)) (-4207 ((|#2| |#2|) 75)) (-4074 ((|#2| |#2|) 63)) (-3014 ((|#2| |#2|) 79)) (-4119 ((|#2| |#2|) 67)) (-4100 ((|#2|) 46)) (-2876 (((-114) (-114)) 95)) (-4365 ((|#2| |#2|) 61)) (-3388 (((-112) |#2|) 134)) (-3532 ((|#2| |#2|) 181)) (-3146 ((|#2| |#2|) 157)) (-3633 ((|#2|) 59)) (-3183 ((|#2|) 58)) (-2353 ((|#2| |#2|) 177)) (-1296 ((|#2| |#2|) 153)) (-3613 ((|#2| |#2|) 185)) (-4186 ((|#2| |#2|) 161)) (-1878 ((|#2| |#2|) 149)) (-3302 ((|#2| |#2|) 151)) (-2043 ((|#2| |#2|) 187)) (-3861 ((|#2| |#2|) 163)) (-2027 ((|#2| |#2|) 183)) (-2816 ((|#2| |#2|) 159)) (-2057 ((|#2| |#2|) 179)) (-4116 ((|#2| |#2|) 155)) (-3737 ((|#2| |#2|) 193)) (-1557 ((|#2| |#2|) 169)) (-2340 ((|#2| |#2|) 189)) (-2470 ((|#2| |#2|) 165)) (-3058 ((|#2| |#2|) 197)) (-2226 ((|#2| |#2|) 173)) (-1781 ((|#2| |#2|) 199)) (-3634 ((|#2| |#2|) 175)) (-1320 ((|#2| |#2|) 195)) (-3417 ((|#2| |#2|) 171)) (-2148 ((|#2| |#2|) 191)) (-2081 ((|#2| |#2|) 167)) (-3430 ((|#2| |#2|) 62)) (-3023 ((|#2| |#2|) 80)) (-4130 ((|#2| |#2|) 68)) (-3001 ((|#2| |#2|) 78)) (-4108 ((|#2| |#2|) 66)) (-2978 ((|#2| |#2|) 76)) (-4087 ((|#2| |#2|) 64)) (-2803 (((-112) (-114)) 93)) (-3055 ((|#2| |#2|) 83)) (-4165 ((|#2| |#2|) 71)) (-3033 ((|#2| |#2|) 81)) (-4138 ((|#2| |#2|) 69)) (-3078 ((|#2| |#2|) 85)) (-4182 ((|#2| |#2|) 73)) (-1566 ((|#2| |#2|) 86)) (-4195 ((|#2| |#2|) 74)) (-3066 ((|#2| |#2|) 84)) (-4174 ((|#2| |#2|) 72)) (-3044 ((|#2| |#2|) 82)) (-4151 ((|#2| |#2|) 70)))
-(((-275 |#1| |#2|) (-10 -7 (-15 -3430 (|#2| |#2|)) (-15 -4365 (|#2| |#2|)) (-15 -4074 (|#2| |#2|)) (-15 -4087 (|#2| |#2|)) (-15 -4097 (|#2| |#2|)) (-15 -4108 (|#2| |#2|)) (-15 -4119 (|#2| |#2|)) (-15 -4130 (|#2| |#2|)) (-15 -4138 (|#2| |#2|)) (-15 -4151 (|#2| |#2|)) (-15 -4165 (|#2| |#2|)) (-15 -4174 (|#2| |#2|)) (-15 -4182 (|#2| |#2|)) (-15 -4195 (|#2| |#2|)) (-15 -4207 (|#2| |#2|)) (-15 -2978 (|#2| |#2|)) (-15 -2988 (|#2| |#2|)) (-15 -3001 (|#2| |#2|)) (-15 -3014 (|#2| |#2|)) (-15 -3023 (|#2| |#2|)) (-15 -3033 (|#2| |#2|)) (-15 -3044 (|#2| |#2|)) (-15 -3055 (|#2| |#2|)) (-15 -3066 (|#2| |#2|)) (-15 -3078 (|#2| |#2|)) (-15 -1566 (|#2| |#2|)) (-15 -4100 (|#2|)) (-15 -2803 ((-112) (-114))) (-15 -2876 ((-114) (-114))) (-15 -3183 (|#2|)) (-15 -3633 (|#2|)) (-15 -3302 (|#2| |#2|)) (-15 -1878 (|#2| |#2|)) (-15 -1296 (|#2| |#2|)) (-15 -4116 (|#2| |#2|)) (-15 -3146 (|#2| |#2|)) (-15 -2816 (|#2| |#2|)) (-15 -4186 (|#2| |#2|)) (-15 -3861 (|#2| |#2|)) (-15 -2470 (|#2| |#2|)) (-15 -2081 (|#2| |#2|)) (-15 -1557 (|#2| |#2|)) (-15 -3417 (|#2| |#2|)) (-15 -2226 (|#2| |#2|)) (-15 -3634 (|#2| |#2|)) (-15 -2353 (|#2| |#2|)) (-15 -2057 (|#2| |#2|)) (-15 -3532 (|#2| |#2|)) (-15 -2027 (|#2| |#2|)) (-15 -3613 (|#2| |#2|)) (-15 -2043 (|#2| |#2|)) (-15 -2340 (|#2| |#2|)) (-15 -2148 (|#2| |#2|)) (-15 -3737 (|#2| |#2|)) (-15 -1320 (|#2| |#2|)) (-15 -3058 (|#2| |#2|)) (-15 -1781 (|#2| |#2|)) (-15 -1701 ((-3 |#2| "failed") |#2| (-639 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -3388 ((-112) |#2|))) (-13 (-845) (-554)) (-13 (-429 |#1|) (-997))) (T -275))
-((-3388 (*1 *2 *3) (-12 (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-275 *4 *3)) (-4 *3 (-13 (-429 *4) (-997))))) (-1701 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-639 (-2 (|:| |func| *2) (|:| |pole| (-112))))) (-4 *2 (-13 (-429 *4) (-997))) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-275 *4 *2)))) (-1781 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3058 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-1320 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3737 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2148 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2340 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2043 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3613 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2027 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3532 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2057 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2353 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3634 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2226 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3417 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-1557 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2081 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2470 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3861 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4186 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2816 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3146 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4116 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-1296 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-1878 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3302 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3633 (*1 *2) (-12 (-4 *2 (-13 (-429 *3) (-997))) (-5 *1 (-275 *3 *2)) (-4 *3 (-13 (-845) (-554))))) (-3183 (*1 *2) (-12 (-4 *2 (-13 (-429 *3) (-997))) (-5 *1 (-275 *3 *2)) (-4 *3 (-13 (-845) (-554))))) (-2876 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *4)) (-4 *4 (-13 (-429 *3) (-997))))) (-2803 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-275 *4 *5)) (-4 *5 (-13 (-429 *4) (-997))))) (-4100 (*1 *2) (-12 (-4 *2 (-13 (-429 *3) (-997))) (-5 *1 (-275 *3 *2)) (-4 *3 (-13 (-845) (-554))))) (-1566 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3078 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3066 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3055 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3044 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3033 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3023 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3014 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3001 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2988 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2978 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4207 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4195 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4182 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4174 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4165 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4151 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4138 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4130 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4119 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4108 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4097 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4087 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4074 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4365 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3430 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))))
-(-10 -7 (-15 -3430 (|#2| |#2|)) (-15 -4365 (|#2| |#2|)) (-15 -4074 (|#2| |#2|)) (-15 -4087 (|#2| |#2|)) (-15 -4097 (|#2| |#2|)) (-15 -4108 (|#2| |#2|)) (-15 -4119 (|#2| |#2|)) (-15 -4130 (|#2| |#2|)) (-15 -4138 (|#2| |#2|)) (-15 -4151 (|#2| |#2|)) (-15 -4165 (|#2| |#2|)) (-15 -4174 (|#2| |#2|)) (-15 -4182 (|#2| |#2|)) (-15 -4195 (|#2| |#2|)) (-15 -4207 (|#2| |#2|)) (-15 -2978 (|#2| |#2|)) (-15 -2988 (|#2| |#2|)) (-15 -3001 (|#2| |#2|)) (-15 -3014 (|#2| |#2|)) (-15 -3023 (|#2| |#2|)) (-15 -3033 (|#2| |#2|)) (-15 -3044 (|#2| |#2|)) (-15 -3055 (|#2| |#2|)) (-15 -3066 (|#2| |#2|)) (-15 -3078 (|#2| |#2|)) (-15 -1566 (|#2| |#2|)) (-15 -4100 (|#2|)) (-15 -2803 ((-112) (-114))) (-15 -2876 ((-114) (-114))) (-15 -3183 (|#2|)) (-15 -3633 (|#2|)) (-15 -3302 (|#2| |#2|)) (-15 -1878 (|#2| |#2|)) (-15 -1296 (|#2| |#2|)) (-15 -4116 (|#2| |#2|)) (-15 -3146 (|#2| |#2|)) (-15 -2816 (|#2| |#2|)) (-15 -4186 (|#2| |#2|)) (-15 -3861 (|#2| |#2|)) (-15 -2470 (|#2| |#2|)) (-15 -2081 (|#2| |#2|)) (-15 -1557 (|#2| |#2|)) (-15 -3417 (|#2| |#2|)) (-15 -2226 (|#2| |#2|)) (-15 -3634 (|#2| |#2|)) (-15 -2353 (|#2| |#2|)) (-15 -2057 (|#2| |#2|)) (-15 -3532 (|#2| |#2|)) (-15 -2027 (|#2| |#2|)) (-15 -3613 (|#2| |#2|)) (-15 -2043 (|#2| |#2|)) (-15 -2340 (|#2| |#2|)) (-15 -2148 (|#2| |#2|)) (-15 -3737 (|#2| |#2|)) (-15 -1320 (|#2| |#2|)) (-15 -3058 (|#2| |#2|)) (-15 -1781 (|#2| |#2|)) (-15 -1701 ((-3 |#2| "failed") |#2| (-639 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -3388 ((-112) |#2|)))
-((-2521 (((-3 |#2| "failed") (-639 (-608 |#2|)) |#2| (-1168)) 135)) (-3958 ((|#2| (-406 (-562)) |#2|) 51)) (-4171 ((|#2| |#2| (-608 |#2|)) 128)) (-3050 (((-2 (|:| |func| |#2|) (|:| |kers| (-639 (-608 |#2|))) (|:| |vals| (-639 |#2|))) |#2| (-1168)) 127)) (-3919 ((|#2| |#2| (-1168)) 20) ((|#2| |#2|) 23)) (-3270 ((|#2| |#2| (-1168)) 141) ((|#2| |#2|) 139)))
-(((-276 |#1| |#2|) (-10 -7 (-15 -3270 (|#2| |#2|)) (-15 -3270 (|#2| |#2| (-1168))) (-15 -3050 ((-2 (|:| |func| |#2|) (|:| |kers| (-639 (-608 |#2|))) (|:| |vals| (-639 |#2|))) |#2| (-1168))) (-15 -3919 (|#2| |#2|)) (-15 -3919 (|#2| |#2| (-1168))) (-15 -2521 ((-3 |#2| "failed") (-639 (-608 |#2|)) |#2| (-1168))) (-15 -4171 (|#2| |#2| (-608 |#2|))) (-15 -3958 (|#2| (-406 (-562)) |#2|))) (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -276))
-((-3958 (*1 *2 *3 *2) (-12 (-5 *3 (-406 (-562))) (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))) (-4171 (*1 *2 *2 *3) (-12 (-5 *3 (-608 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))) (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *4 *2)))) (-2521 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-639 (-608 *2))) (-5 *4 (-1168)) (-4 *2 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *5 *2)))) (-3919 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))) (-3919 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))) (-3050 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-639 (-608 *3))) (|:| |vals| (-639 *3)))) (-5 *1 (-276 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-3270 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))) (-3270 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))))
-(-10 -7 (-15 -3270 (|#2| |#2|)) (-15 -3270 (|#2| |#2| (-1168))) (-15 -3050 ((-2 (|:| |func| |#2|) (|:| |kers| (-639 (-608 |#2|))) (|:| |vals| (-639 |#2|))) |#2| (-1168))) (-15 -3919 (|#2| |#2|)) (-15 -3919 (|#2| |#2| (-1168))) (-15 -2521 ((-3 |#2| "failed") (-639 (-608 |#2|)) |#2| (-1168))) (-15 -4171 (|#2| |#2| (-608 |#2|))) (-15 -3958 (|#2| (-406 (-562)) |#2|)))
-((-3200 (((-3 |#3| "failed") |#3|) 110)) (-2988 ((|#3| |#3|) 131)) (-1898 (((-3 |#3| "failed") |#3|) 82)) (-4097 ((|#3| |#3|) 121)) (-4353 (((-3 |#3| "failed") |#3|) 58)) (-4207 ((|#3| |#3|) 129)) (-3458 (((-3 |#3| "failed") |#3|) 46)) (-4074 ((|#3| |#3|) 119)) (-4312 (((-3 |#3| "failed") |#3|) 112)) (-3014 ((|#3| |#3|) 133)) (-3145 (((-3 |#3| "failed") |#3|) 84)) (-4119 ((|#3| |#3|) 123)) (-2571 (((-3 |#3| "failed") |#3| (-766)) 36)) (-3810 (((-3 |#3| "failed") |#3|) 74)) (-4365 ((|#3| |#3|) 118)) (-2314 (((-3 |#3| "failed") |#3|) 44)) (-3430 ((|#3| |#3|) 117)) (-4027 (((-3 |#3| "failed") |#3|) 113)) (-3023 ((|#3| |#3|) 134)) (-2930 (((-3 |#3| "failed") |#3|) 85)) (-4130 ((|#3| |#3|) 124)) (-2777 (((-3 |#3| "failed") |#3|) 111)) (-3001 ((|#3| |#3|) 132)) (-1543 (((-3 |#3| "failed") |#3|) 83)) (-4108 ((|#3| |#3|) 122)) (-4059 (((-3 |#3| "failed") |#3|) 60)) (-2978 ((|#3| |#3|) 130)) (-3387 (((-3 |#3| "failed") |#3|) 48)) (-4087 ((|#3| |#3|) 120)) (-2938 (((-3 |#3| "failed") |#3|) 66)) (-3055 ((|#3| |#3|) 137)) (-3940 (((-3 |#3| "failed") |#3|) 104)) (-4165 ((|#3| |#3|) 142)) (-2603 (((-3 |#3| "failed") |#3|) 62)) (-3033 ((|#3| |#3|) 135)) (-1442 (((-3 |#3| "failed") |#3|) 50)) (-4138 ((|#3| |#3|) 125)) (-3577 (((-3 |#3| "failed") |#3|) 70)) (-3078 ((|#3| |#3|) 139)) (-3080 (((-3 |#3| "failed") |#3|) 54)) (-4182 ((|#3| |#3|) 127)) (-2390 (((-3 |#3| "failed") |#3|) 72)) (-1566 ((|#3| |#3|) 140)) (-1699 (((-3 |#3| "failed") |#3|) 56)) (-4195 ((|#3| |#3|) 128)) (-1760 (((-3 |#3| "failed") |#3|) 68)) (-3066 ((|#3| |#3|) 138)) (-3506 (((-3 |#3| "failed") |#3|) 107)) (-4174 ((|#3| |#3|) 143)) (-2374 (((-3 |#3| "failed") |#3|) 64)) (-3044 ((|#3| |#3|) 136)) (-3170 (((-3 |#3| "failed") |#3|) 52)) (-4151 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-406 (-562))) 40 (|has| |#1| (-362)))))
-(((-277 |#1| |#2| |#3|) (-13 (-978 |#3|) (-10 -7 (IF (|has| |#1| (-362)) (-15 ** (|#3| |#3| (-406 (-562)))) |%noBranch|) (-15 -3430 (|#3| |#3|)) (-15 -4365 (|#3| |#3|)) (-15 -4074 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4097 (|#3| |#3|)) (-15 -4108 (|#3| |#3|)) (-15 -4119 (|#3| |#3|)) (-15 -4130 (|#3| |#3|)) (-15 -4138 (|#3| |#3|)) (-15 -4151 (|#3| |#3|)) (-15 -4165 (|#3| |#3|)) (-15 -4174 (|#3| |#3|)) (-15 -4182 (|#3| |#3|)) (-15 -4195 (|#3| |#3|)) (-15 -4207 (|#3| |#3|)) (-15 -2978 (|#3| |#3|)) (-15 -2988 (|#3| |#3|)) (-15 -3001 (|#3| |#3|)) (-15 -3014 (|#3| |#3|)) (-15 -3023 (|#3| |#3|)) (-15 -3033 (|#3| |#3|)) (-15 -3044 (|#3| |#3|)) (-15 -3055 (|#3| |#3|)) (-15 -3066 (|#3| |#3|)) (-15 -3078 (|#3| |#3|)) (-15 -1566 (|#3| |#3|)))) (-38 (-406 (-562))) (-1247 |#1|) (-1218 |#1| |#2|)) (T -277))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-406 (-562))) (-4 *4 (-362)) (-4 *4 (-38 *3)) (-4 *5 (-1247 *4)) (-5 *1 (-277 *4 *5 *2)) (-4 *2 (-1218 *4 *5)))) (-3430 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4365 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4074 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4087 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4097 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4108 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4119 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4130 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4138 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4151 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4165 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4174 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4182 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4195 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4207 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-2978 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-2988 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3001 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3014 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3023 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3033 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3044 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3055 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3066 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3078 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-1566 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))))
-(-13 (-978 |#3|) (-10 -7 (IF (|has| |#1| (-362)) (-15 ** (|#3| |#3| (-406 (-562)))) |%noBranch|) (-15 -3430 (|#3| |#3|)) (-15 -4365 (|#3| |#3|)) (-15 -4074 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4097 (|#3| |#3|)) (-15 -4108 (|#3| |#3|)) (-15 -4119 (|#3| |#3|)) (-15 -4130 (|#3| |#3|)) (-15 -4138 (|#3| |#3|)) (-15 -4151 (|#3| |#3|)) (-15 -4165 (|#3| |#3|)) (-15 -4174 (|#3| |#3|)) (-15 -4182 (|#3| |#3|)) (-15 -4195 (|#3| |#3|)) (-15 -4207 (|#3| |#3|)) (-15 -2978 (|#3| |#3|)) (-15 -2988 (|#3| |#3|)) (-15 -3001 (|#3| |#3|)) (-15 -3014 (|#3| |#3|)) (-15 -3023 (|#3| |#3|)) (-15 -3033 (|#3| |#3|)) (-15 -3044 (|#3| |#3|)) (-15 -3055 (|#3| |#3|)) (-15 -3066 (|#3| |#3|)) (-15 -3078 (|#3| |#3|)) (-15 -1566 (|#3| |#3|))))
-((-3200 (((-3 |#3| "failed") |#3|) 66)) (-2988 ((|#3| |#3|) 129)) (-1898 (((-3 |#3| "failed") |#3|) 50)) (-4097 ((|#3| |#3|) 117)) (-4353 (((-3 |#3| "failed") |#3|) 62)) (-4207 ((|#3| |#3|) 127)) (-3458 (((-3 |#3| "failed") |#3|) 46)) (-4074 ((|#3| |#3|) 115)) (-4312 (((-3 |#3| "failed") |#3|) 70)) (-3014 ((|#3| |#3|) 131)) (-3145 (((-3 |#3| "failed") |#3|) 54)) (-4119 ((|#3| |#3|) 119)) (-2571 (((-3 |#3| "failed") |#3| (-766)) 35)) (-3810 (((-3 |#3| "failed") |#3|) 44)) (-4365 ((|#3| |#3|) 104)) (-2314 (((-3 |#3| "failed") |#3|) 42)) (-3430 ((|#3| |#3|) 114)) (-4027 (((-3 |#3| "failed") |#3|) 72)) (-3023 ((|#3| |#3|) 132)) (-2930 (((-3 |#3| "failed") |#3|) 56)) (-4130 ((|#3| |#3|) 120)) (-2777 (((-3 |#3| "failed") |#3|) 68)) (-3001 ((|#3| |#3|) 130)) (-1543 (((-3 |#3| "failed") |#3|) 52)) (-4108 ((|#3| |#3|) 118)) (-4059 (((-3 |#3| "failed") |#3|) 64)) (-2978 ((|#3| |#3|) 128)) (-3387 (((-3 |#3| "failed") |#3|) 48)) (-4087 ((|#3| |#3|) 116)) (-2938 (((-3 |#3| "failed") |#3|) 74)) (-3055 ((|#3| |#3|) 135)) (-3940 (((-3 |#3| "failed") |#3|) 58)) (-4165 ((|#3| |#3|) 123)) (-2603 (((-3 |#3| "failed") |#3|) 105)) (-3033 ((|#3| |#3|) 133)) (-1442 (((-3 |#3| "failed") |#3|) 94)) (-4138 ((|#3| |#3|) 121)) (-3577 (((-3 |#3| "failed") |#3|) 109)) (-3078 ((|#3| |#3|) 137)) (-3080 (((-3 |#3| "failed") |#3|) 101)) (-4182 ((|#3| |#3|) 125)) (-2390 (((-3 |#3| "failed") |#3|) 110)) (-1566 ((|#3| |#3|) 138)) (-1699 (((-3 |#3| "failed") |#3|) 103)) (-4195 ((|#3| |#3|) 126)) (-1760 (((-3 |#3| "failed") |#3|) 76)) (-3066 ((|#3| |#3|) 136)) (-3506 (((-3 |#3| "failed") |#3|) 60)) (-4174 ((|#3| |#3|) 124)) (-2374 (((-3 |#3| "failed") |#3|) 106)) (-3044 ((|#3| |#3|) 134)) (-3170 (((-3 |#3| "failed") |#3|) 97)) (-4151 ((|#3| |#3|) 122)) (** ((|#3| |#3| (-406 (-562))) 40 (|has| |#1| (-362)))))
-(((-278 |#1| |#2| |#3| |#4|) (-13 (-978 |#3|) (-10 -7 (IF (|has| |#1| (-362)) (-15 ** (|#3| |#3| (-406 (-562)))) |%noBranch|) (-15 -3430 (|#3| |#3|)) (-15 -4365 (|#3| |#3|)) (-15 -4074 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4097 (|#3| |#3|)) (-15 -4108 (|#3| |#3|)) (-15 -4119 (|#3| |#3|)) (-15 -4130 (|#3| |#3|)) (-15 -4138 (|#3| |#3|)) (-15 -4151 (|#3| |#3|)) (-15 -4165 (|#3| |#3|)) (-15 -4174 (|#3| |#3|)) (-15 -4182 (|#3| |#3|)) (-15 -4195 (|#3| |#3|)) (-15 -4207 (|#3| |#3|)) (-15 -2978 (|#3| |#3|)) (-15 -2988 (|#3| |#3|)) (-15 -3001 (|#3| |#3|)) (-15 -3014 (|#3| |#3|)) (-15 -3023 (|#3| |#3|)) (-15 -3033 (|#3| |#3|)) (-15 -3044 (|#3| |#3|)) (-15 -3055 (|#3| |#3|)) (-15 -3066 (|#3| |#3|)) (-15 -3078 (|#3| |#3|)) (-15 -1566 (|#3| |#3|)))) (-38 (-406 (-562))) (-1216 |#1|) (-1239 |#1| |#2|) (-978 |#2|)) (T -278))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-406 (-562))) (-4 *4 (-362)) (-4 *4 (-38 *3)) (-4 *5 (-1216 *4)) (-5 *1 (-278 *4 *5 *2 *6)) (-4 *2 (-1239 *4 *5)) (-4 *6 (-978 *5)))) (-3430 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4365 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4074 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4087 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4097 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4108 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4119 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4130 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4138 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4151 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4165 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4174 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4182 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4195 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4207 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-2978 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-2988 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3001 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3014 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3023 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3033 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3044 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3055 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3066 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3078 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-1566 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))))
-(-13 (-978 |#3|) (-10 -7 (IF (|has| |#1| (-362)) (-15 ** (|#3| |#3| (-406 (-562)))) |%noBranch|) (-15 -3430 (|#3| |#3|)) (-15 -4365 (|#3| |#3|)) (-15 -4074 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4097 (|#3| |#3|)) (-15 -4108 (|#3| |#3|)) (-15 -4119 (|#3| |#3|)) (-15 -4130 (|#3| |#3|)) (-15 -4138 (|#3| |#3|)) (-15 -4151 (|#3| |#3|)) (-15 -4165 (|#3| |#3|)) (-15 -4174 (|#3| |#3|)) (-15 -4182 (|#3| |#3|)) (-15 -4195 (|#3| |#3|)) (-15 -4207 (|#3| |#3|)) (-15 -2978 (|#3| |#3|)) (-15 -2988 (|#3| |#3|)) (-15 -3001 (|#3| |#3|)) (-15 -3014 (|#3| |#3|)) (-15 -3023 (|#3| |#3|)) (-15 -3033 (|#3| |#3|)) (-15 -3044 (|#3| |#3|)) (-15 -3055 (|#3| |#3|)) (-15 -3066 (|#3| |#3|)) (-15 -3078 (|#3| |#3|)) (-15 -1566 (|#3| |#3|))))
-((-3400 (((-112) $) 18)) (-3681 (((-182) $) 7)) (-4068 (((-3 (-1168) "failed") $) 14)) (-2369 (((-3 (-639 $) "failed") $) NIL)) (-2867 (((-3 (-1168) "failed") $) 20)) (-1476 (((-3 (-1096) "failed") $) 17)) (-3989 (((-112) $) 15)) (-4054 (((-857) $) NIL)) (-2525 (((-112) $) 9)))
-(((-279) (-13 (-609 (-857)) (-10 -8 (-15 -3681 ((-182) $)) (-15 -3989 ((-112) $)) (-15 -1476 ((-3 (-1096) "failed") $)) (-15 -3400 ((-112) $)) (-15 -2867 ((-3 (-1168) "failed") $)) (-15 -2525 ((-112) $)) (-15 -4068 ((-3 (-1168) "failed") $)) (-15 -2369 ((-3 (-639 $) "failed") $))))) (T -279))
-((-3681 (*1 *2 *1) (-12 (-5 *2 (-182)) (-5 *1 (-279)))) (-3989 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-279)))) (-1476 (*1 *2 *1) (|partial| -12 (-5 *2 (-1096)) (-5 *1 (-279)))) (-3400 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-279)))) (-2867 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-279)))) (-2525 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-279)))) (-4068 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-279)))) (-2369 (*1 *2 *1) (|partial| -12 (-5 *2 (-639 (-279))) (-5 *1 (-279)))))
-(-13 (-609 (-857)) (-10 -8 (-15 -3681 ((-182) $)) (-15 -3989 ((-112) $)) (-15 -1476 ((-3 (-1096) "failed") $)) (-15 -3400 ((-112) $)) (-15 -2867 ((-3 (-1168) "failed") $)) (-15 -2525 ((-112) $)) (-15 -4068 ((-3 (-1168) "failed") $)) (-15 -2369 ((-3 (-639 $) "failed") $))))
-((-3556 (($ (-1 (-112) |#2|) $) 24)) (-1459 (($ $) 36)) (-4000 (($ (-1 (-112) |#2|) $) NIL) (($ |#2| $) 34)) (-1475 (($ |#2| $) 32) (($ (-1 (-112) |#2|) $) 18)) (-2673 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 40)) (-3297 (($ |#2| $ (-562)) 20) (($ $ $ (-562)) 22)) (-2880 (($ $ (-562)) 11) (($ $ (-1223 (-562))) 14)) (-4142 (($ $ |#2|) 30) (($ $ $) NIL)) (-2767 (($ $ |#2|) 29) (($ |#2| $) NIL) (($ $ $) 26) (($ (-639 $)) NIL)))
-(((-280 |#1| |#2|) (-10 -8 (-15 -2673 (|#1| |#1| |#1|)) (-15 -4000 (|#1| |#2| |#1|)) (-15 -2673 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4000 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4142 (|#1| |#1| |#1|)) (-15 -4142 (|#1| |#1| |#2|)) (-15 -3297 (|#1| |#1| |#1| (-562))) (-15 -3297 (|#1| |#2| |#1| (-562))) (-15 -2880 (|#1| |#1| (-1223 (-562)))) (-15 -2880 (|#1| |#1| (-562))) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -1475 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3556 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1475 (|#1| |#2| |#1|)) (-15 -1459 (|#1| |#1|))) (-281 |#2|) (-1207)) (T -280))
-NIL
-(-10 -8 (-15 -2673 (|#1| |#1| |#1|)) (-15 -4000 (|#1| |#2| |#1|)) (-15 -2673 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4000 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4142 (|#1| |#1| |#1|)) (-15 -4142 (|#1| |#1| |#2|)) (-15 -3297 (|#1| |#1| |#1| (-562))) (-15 -3297 (|#1| |#2| |#1| (-562))) (-15 -2880 (|#1| |#1| (-1223 (-562)))) (-15 -2880 (|#1| |#1| (-562))) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -1475 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3556 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1475 (|#1| |#2| |#1|)) (-15 -1459 (|#1| |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3052 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) |#1|) 52 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) 58 (|has| $ (-6 -4403)))) (-3111 (($ (-1 (-112) |#1|) $) 85)) (-3556 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-4354 (($ $) 83 (|has| |#1| (-1092)))) (-1459 (($ $) 78 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4000 (($ (-1 (-112) |#1|) $) 89) (($ |#1| $) 84 (|has| |#1| (-1092)))) (-1475 (($ |#1| $) 77 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) 53 (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) 51)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-1458 (($ (-766) |#1|) 69)) (-3292 (((-112) $ (-766)) 9)) (-4197 (((-562) $) 43 (|has| (-562) (-845)))) (-2673 (($ (-1 (-112) |#1| |#1|) $ $) 86) (($ $ $) 82 (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 44 (|has| (-562) (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-4300 (($ |#1| $ (-562)) 88) (($ $ $ (-562)) 87)) (-3297 (($ |#1| $ (-562)) 60) (($ $ $ (-562)) 59)) (-2093 (((-639 (-562)) $) 46)) (-1570 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 42 (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2716 (($ $ |#1|) 41 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) 48)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ (-562) |#1|) 50) ((|#1| $ (-562)) 49) (($ $ (-1223 (-562))) 63)) (-2878 (($ $ (-562)) 91) (($ $ (-1223 (-562))) 90)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 70)) (-4142 (($ $ |#1|) 93) (($ $ $) 92)) (-2767 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1920 (((-639 (-562)) $) 18)) (-2250 (((-766) $) 16)) (-4053 (((-857) $) 22) (($ (-639 (-562))) 14)) (-3213 (($ (-766)) 19)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 9)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 10)))
+(((-274) (-13 (-845) (-10 -8 (-15 -4053 ($ (-639 (-562)))) (-15 -2250 ((-766) $)) (-15 -1920 ((-639 (-562)) $)) (-15 -3213 ($ (-766)))))) (T -274))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-274)))) (-2250 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-274)))) (-1920 (*1 *2 *1) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-274)))) (-3213 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-274)))))
+(-13 (-845) (-10 -8 (-15 -4053 ($ (-639 (-562)))) (-15 -2250 ((-766) $)) (-15 -1920 ((-639 (-562)) $)) (-15 -3213 ($ (-766)))))
+((-2987 ((|#2| |#2|) 77)) (-4098 ((|#2| |#2|) 65)) (-3703 (((-3 |#2| "failed") |#2| (-639 (-2 (|:| |func| |#2|) (|:| |pole| (-112))))) 116)) (-4206 ((|#2| |#2|) 75)) (-4074 ((|#2| |#2|) 63)) (-3013 ((|#2| |#2|) 79)) (-4120 ((|#2| |#2|) 67)) (-4100 ((|#2|) 46)) (-1502 (((-114) (-114)) 95)) (-4366 ((|#2| |#2|) 61)) (-3810 (((-112) |#2|) 134)) (-2806 ((|#2| |#2|) 181)) (-3301 ((|#2| |#2|) 157)) (-1301 ((|#2|) 59)) (-2500 ((|#2|) 58)) (-2931 ((|#2| |#2|) 177)) (-3220 ((|#2| |#2|) 153)) (-4218 ((|#2| |#2|) 185)) (-2907 ((|#2| |#2|) 161)) (-1731 ((|#2| |#2|) 149)) (-4249 ((|#2| |#2|) 151)) (-4035 ((|#2| |#2|) 187)) (-1781 ((|#2| |#2|) 163)) (-3859 ((|#2| |#2|) 183)) (-2170 ((|#2| |#2|) 159)) (-2961 ((|#2| |#2|) 179)) (-3505 ((|#2| |#2|) 155)) (-2981 ((|#2| |#2|) 193)) (-1876 ((|#2| |#2|) 169)) (-4044 ((|#2| |#2|) 189)) (-2866 ((|#2| |#2|) 165)) (-3708 ((|#2| |#2|) 197)) (-4179 ((|#2| |#2|) 173)) (-3165 ((|#2| |#2|) 199)) (-1311 ((|#2| |#2|) 175)) (-1821 ((|#2| |#2|) 195)) (-4104 ((|#2| |#2|) 171)) (-2761 ((|#2| |#2|) 191)) (-3214 ((|#2| |#2|) 167)) (-3430 ((|#2| |#2|) 62)) (-3022 ((|#2| |#2|) 80)) (-4130 ((|#2| |#2|) 68)) (-3000 ((|#2| |#2|) 78)) (-4108 ((|#2| |#2|) 66)) (-2977 ((|#2| |#2|) 76)) (-4087 ((|#2| |#2|) 64)) (-2036 (((-112) (-114)) 93)) (-3054 ((|#2| |#2|) 83)) (-4165 ((|#2| |#2|) 71)) (-3033 ((|#2| |#2|) 81)) (-4139 ((|#2| |#2|) 69)) (-3077 ((|#2| |#2|) 85)) (-4183 ((|#2| |#2|) 73)) (-1567 ((|#2| |#2|) 86)) (-4195 ((|#2| |#2|) 74)) (-3065 ((|#2| |#2|) 84)) (-4175 ((|#2| |#2|) 72)) (-3040 ((|#2| |#2|) 82)) (-4151 ((|#2| |#2|) 70)))
+(((-275 |#1| |#2|) (-10 -7 (-15 -3430 (|#2| |#2|)) (-15 -4366 (|#2| |#2|)) (-15 -4074 (|#2| |#2|)) (-15 -4087 (|#2| |#2|)) (-15 -4098 (|#2| |#2|)) (-15 -4108 (|#2| |#2|)) (-15 -4120 (|#2| |#2|)) (-15 -4130 (|#2| |#2|)) (-15 -4139 (|#2| |#2|)) (-15 -4151 (|#2| |#2|)) (-15 -4165 (|#2| |#2|)) (-15 -4175 (|#2| |#2|)) (-15 -4183 (|#2| |#2|)) (-15 -4195 (|#2| |#2|)) (-15 -4206 (|#2| |#2|)) (-15 -2977 (|#2| |#2|)) (-15 -2987 (|#2| |#2|)) (-15 -3000 (|#2| |#2|)) (-15 -3013 (|#2| |#2|)) (-15 -3022 (|#2| |#2|)) (-15 -3033 (|#2| |#2|)) (-15 -3040 (|#2| |#2|)) (-15 -3054 (|#2| |#2|)) (-15 -3065 (|#2| |#2|)) (-15 -3077 (|#2| |#2|)) (-15 -1567 (|#2| |#2|)) (-15 -4100 (|#2|)) (-15 -2036 ((-112) (-114))) (-15 -1502 ((-114) (-114))) (-15 -2500 (|#2|)) (-15 -1301 (|#2|)) (-15 -4249 (|#2| |#2|)) (-15 -1731 (|#2| |#2|)) (-15 -3220 (|#2| |#2|)) (-15 -3505 (|#2| |#2|)) (-15 -3301 (|#2| |#2|)) (-15 -2170 (|#2| |#2|)) (-15 -2907 (|#2| |#2|)) (-15 -1781 (|#2| |#2|)) (-15 -2866 (|#2| |#2|)) (-15 -3214 (|#2| |#2|)) (-15 -1876 (|#2| |#2|)) (-15 -4104 (|#2| |#2|)) (-15 -4179 (|#2| |#2|)) (-15 -1311 (|#2| |#2|)) (-15 -2931 (|#2| |#2|)) (-15 -2961 (|#2| |#2|)) (-15 -2806 (|#2| |#2|)) (-15 -3859 (|#2| |#2|)) (-15 -4218 (|#2| |#2|)) (-15 -4035 (|#2| |#2|)) (-15 -4044 (|#2| |#2|)) (-15 -2761 (|#2| |#2|)) (-15 -2981 (|#2| |#2|)) (-15 -1821 (|#2| |#2|)) (-15 -3708 (|#2| |#2|)) (-15 -3165 (|#2| |#2|)) (-15 -3703 ((-3 |#2| "failed") |#2| (-639 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -3810 ((-112) |#2|))) (-13 (-845) (-554)) (-13 (-429 |#1|) (-997))) (T -275))
+((-3810 (*1 *2 *3) (-12 (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-275 *4 *3)) (-4 *3 (-13 (-429 *4) (-997))))) (-3703 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-639 (-2 (|:| |func| *2) (|:| |pole| (-112))))) (-4 *2 (-13 (-429 *4) (-997))) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-275 *4 *2)))) (-3165 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3708 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-1821 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2981 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2761 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4044 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4035 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4218 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3859 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2806 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2961 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2931 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-1311 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4179 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4104 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-1876 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3214 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2866 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-1781 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2907 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2170 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3301 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3505 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3220 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-1731 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4249 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-1301 (*1 *2) (-12 (-4 *2 (-13 (-429 *3) (-997))) (-5 *1 (-275 *3 *2)) (-4 *3 (-13 (-845) (-554))))) (-2500 (*1 *2) (-12 (-4 *2 (-13 (-429 *3) (-997))) (-5 *1 (-275 *3 *2)) (-4 *3 (-13 (-845) (-554))))) (-1502 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *4)) (-4 *4 (-13 (-429 *3) (-997))))) (-2036 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-275 *4 *5)) (-4 *5 (-13 (-429 *4) (-997))))) (-4100 (*1 *2) (-12 (-4 *2 (-13 (-429 *3) (-997))) (-5 *1 (-275 *3 *2)) (-4 *3 (-13 (-845) (-554))))) (-1567 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3077 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3065 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3054 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3040 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3033 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3022 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3013 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3000 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2987 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-2977 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4206 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4195 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4183 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4175 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4165 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4151 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4139 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4130 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4120 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4108 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4098 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4087 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4074 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-4366 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))) (-3430 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2)) (-4 *2 (-13 (-429 *3) (-997))))))
+(-10 -7 (-15 -3430 (|#2| |#2|)) (-15 -4366 (|#2| |#2|)) (-15 -4074 (|#2| |#2|)) (-15 -4087 (|#2| |#2|)) (-15 -4098 (|#2| |#2|)) (-15 -4108 (|#2| |#2|)) (-15 -4120 (|#2| |#2|)) (-15 -4130 (|#2| |#2|)) (-15 -4139 (|#2| |#2|)) (-15 -4151 (|#2| |#2|)) (-15 -4165 (|#2| |#2|)) (-15 -4175 (|#2| |#2|)) (-15 -4183 (|#2| |#2|)) (-15 -4195 (|#2| |#2|)) (-15 -4206 (|#2| |#2|)) (-15 -2977 (|#2| |#2|)) (-15 -2987 (|#2| |#2|)) (-15 -3000 (|#2| |#2|)) (-15 -3013 (|#2| |#2|)) (-15 -3022 (|#2| |#2|)) (-15 -3033 (|#2| |#2|)) (-15 -3040 (|#2| |#2|)) (-15 -3054 (|#2| |#2|)) (-15 -3065 (|#2| |#2|)) (-15 -3077 (|#2| |#2|)) (-15 -1567 (|#2| |#2|)) (-15 -4100 (|#2|)) (-15 -2036 ((-112) (-114))) (-15 -1502 ((-114) (-114))) (-15 -2500 (|#2|)) (-15 -1301 (|#2|)) (-15 -4249 (|#2| |#2|)) (-15 -1731 (|#2| |#2|)) (-15 -3220 (|#2| |#2|)) (-15 -3505 (|#2| |#2|)) (-15 -3301 (|#2| |#2|)) (-15 -2170 (|#2| |#2|)) (-15 -2907 (|#2| |#2|)) (-15 -1781 (|#2| |#2|)) (-15 -2866 (|#2| |#2|)) (-15 -3214 (|#2| |#2|)) (-15 -1876 (|#2| |#2|)) (-15 -4104 (|#2| |#2|)) (-15 -4179 (|#2| |#2|)) (-15 -1311 (|#2| |#2|)) (-15 -2931 (|#2| |#2|)) (-15 -2961 (|#2| |#2|)) (-15 -2806 (|#2| |#2|)) (-15 -3859 (|#2| |#2|)) (-15 -4218 (|#2| |#2|)) (-15 -4035 (|#2| |#2|)) (-15 -4044 (|#2| |#2|)) (-15 -2761 (|#2| |#2|)) (-15 -2981 (|#2| |#2|)) (-15 -1821 (|#2| |#2|)) (-15 -3708 (|#2| |#2|)) (-15 -3165 (|#2| |#2|)) (-15 -3703 ((-3 |#2| "failed") |#2| (-639 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -3810 ((-112) |#2|)))
+((-2226 (((-3 |#2| "failed") (-639 (-608 |#2|)) |#2| (-1168)) 135)) (-1495 ((|#2| (-406 (-562)) |#2|) 51)) (-2808 ((|#2| |#2| (-608 |#2|)) 128)) (-3633 (((-2 (|:| |func| |#2|) (|:| |kers| (-639 (-608 |#2|))) (|:| |vals| (-639 |#2|))) |#2| (-1168)) 127)) (-2382 ((|#2| |#2| (-1168)) 20) ((|#2| |#2|) 23)) (-2140 ((|#2| |#2| (-1168)) 141) ((|#2| |#2|) 139)))
+(((-276 |#1| |#2|) (-10 -7 (-15 -2140 (|#2| |#2|)) (-15 -2140 (|#2| |#2| (-1168))) (-15 -3633 ((-2 (|:| |func| |#2|) (|:| |kers| (-639 (-608 |#2|))) (|:| |vals| (-639 |#2|))) |#2| (-1168))) (-15 -2382 (|#2| |#2|)) (-15 -2382 (|#2| |#2| (-1168))) (-15 -2226 ((-3 |#2| "failed") (-639 (-608 |#2|)) |#2| (-1168))) (-15 -2808 (|#2| |#2| (-608 |#2|))) (-15 -1495 (|#2| (-406 (-562)) |#2|))) (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -276))
+((-1495 (*1 *2 *3 *2) (-12 (-5 *3 (-406 (-562))) (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))) (-2808 (*1 *2 *2 *3) (-12 (-5 *3 (-608 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))) (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *4 *2)))) (-2226 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-639 (-608 *2))) (-5 *4 (-1168)) (-4 *2 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *5 *2)))) (-2382 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))) (-2382 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))) (-3633 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-639 (-608 *3))) (|:| |vals| (-639 *3)))) (-5 *1 (-276 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-2140 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))) (-2140 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))))
+(-10 -7 (-15 -2140 (|#2| |#2|)) (-15 -2140 (|#2| |#2| (-1168))) (-15 -3633 ((-2 (|:| |func| |#2|) (|:| |kers| (-639 (-608 |#2|))) (|:| |vals| (-639 |#2|))) |#2| (-1168))) (-15 -2382 (|#2| |#2|)) (-15 -2382 (|#2| |#2| (-1168))) (-15 -2226 ((-3 |#2| "failed") (-639 (-608 |#2|)) |#2| (-1168))) (-15 -2808 (|#2| |#2| (-608 |#2|))) (-15 -1495 (|#2| (-406 (-562)) |#2|)))
+((-2647 (((-3 |#3| "failed") |#3|) 110)) (-2987 ((|#3| |#3|) 131)) (-1969 (((-3 |#3| "failed") |#3|) 82)) (-4098 ((|#3| |#3|) 121)) (-3911 (((-3 |#3| "failed") |#3|) 58)) (-4206 ((|#3| |#3|) 129)) (-3275 (((-3 |#3| "failed") |#3|) 46)) (-4074 ((|#3| |#3|) 119)) (-1710 (((-3 |#3| "failed") |#3|) 112)) (-3013 ((|#3| |#3|) 133)) (-3290 (((-3 |#3| "failed") |#3|) 84)) (-4120 ((|#3| |#3|) 123)) (-1464 (((-3 |#3| "failed") |#3| (-766)) 36)) (-2501 (((-3 |#3| "failed") |#3|) 74)) (-4366 ((|#3| |#3|) 118)) (-3774 (((-3 |#3| "failed") |#3|) 44)) (-3430 ((|#3| |#3|) 117)) (-3986 (((-3 |#3| "failed") |#3|) 113)) (-3022 ((|#3| |#3|) 134)) (-3882 (((-3 |#3| "failed") |#3|) 85)) (-4130 ((|#3| |#3|) 124)) (-2904 (((-3 |#3| "failed") |#3|) 111)) (-3000 ((|#3| |#3|) 132)) (-1738 (((-3 |#3| "failed") |#3|) 83)) (-4108 ((|#3| |#3|) 122)) (-3021 (((-3 |#3| "failed") |#3|) 60)) (-2977 ((|#3| |#3|) 130)) (-3797 (((-3 |#3| "failed") |#3|) 48)) (-4087 ((|#3| |#3|) 120)) (-3963 (((-3 |#3| "failed") |#3|) 66)) (-3054 ((|#3| |#3|) 137)) (-1308 (((-3 |#3| "failed") |#3|) 104)) (-4165 ((|#3| |#3|) 142)) (-3625 (((-3 |#3| "failed") |#3|) 62)) (-3033 ((|#3| |#3|) 135)) (-2099 (((-3 |#3| "failed") |#3|) 50)) (-4139 ((|#3| |#3|) 125)) (-2073 (((-3 |#3| "failed") |#3|) 70)) (-3077 ((|#3| |#3|) 139)) (-3908 (((-3 |#3| "failed") |#3|) 54)) (-4183 ((|#3| |#3|) 127)) (-3286 (((-3 |#3| "failed") |#3|) 72)) (-1567 ((|#3| |#3|) 140)) (-3682 (((-3 |#3| "failed") |#3|) 56)) (-4195 ((|#3| |#3|) 128)) (-2984 (((-3 |#3| "failed") |#3|) 68)) (-3065 ((|#3| |#3|) 138)) (-2585 (((-3 |#3| "failed") |#3|) 107)) (-4175 ((|#3| |#3|) 143)) (-3117 (((-3 |#3| "failed") |#3|) 64)) (-3040 ((|#3| |#3|) 136)) (-2397 (((-3 |#3| "failed") |#3|) 52)) (-4151 ((|#3| |#3|) 126)) (** ((|#3| |#3| (-406 (-562))) 40 (|has| |#1| (-362)))))
+(((-277 |#1| |#2| |#3|) (-13 (-978 |#3|) (-10 -7 (IF (|has| |#1| (-362)) (-15 ** (|#3| |#3| (-406 (-562)))) |%noBranch|) (-15 -3430 (|#3| |#3|)) (-15 -4366 (|#3| |#3|)) (-15 -4074 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4098 (|#3| |#3|)) (-15 -4108 (|#3| |#3|)) (-15 -4120 (|#3| |#3|)) (-15 -4130 (|#3| |#3|)) (-15 -4139 (|#3| |#3|)) (-15 -4151 (|#3| |#3|)) (-15 -4165 (|#3| |#3|)) (-15 -4175 (|#3| |#3|)) (-15 -4183 (|#3| |#3|)) (-15 -4195 (|#3| |#3|)) (-15 -4206 (|#3| |#3|)) (-15 -2977 (|#3| |#3|)) (-15 -2987 (|#3| |#3|)) (-15 -3000 (|#3| |#3|)) (-15 -3013 (|#3| |#3|)) (-15 -3022 (|#3| |#3|)) (-15 -3033 (|#3| |#3|)) (-15 -3040 (|#3| |#3|)) (-15 -3054 (|#3| |#3|)) (-15 -3065 (|#3| |#3|)) (-15 -3077 (|#3| |#3|)) (-15 -1567 (|#3| |#3|)))) (-38 (-406 (-562))) (-1247 |#1|) (-1218 |#1| |#2|)) (T -277))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-406 (-562))) (-4 *4 (-362)) (-4 *4 (-38 *3)) (-4 *5 (-1247 *4)) (-5 *1 (-277 *4 *5 *2)) (-4 *2 (-1218 *4 *5)))) (-3430 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4366 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4074 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4087 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4098 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4108 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4120 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4130 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4139 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4151 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4165 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4175 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4183 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4195 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-4206 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-2977 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-2987 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3000 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3013 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3022 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3033 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3040 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3054 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3065 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-3077 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))) (-1567 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1247 *3)) (-5 *1 (-277 *3 *4 *2)) (-4 *2 (-1218 *3 *4)))))
+(-13 (-978 |#3|) (-10 -7 (IF (|has| |#1| (-362)) (-15 ** (|#3| |#3| (-406 (-562)))) |%noBranch|) (-15 -3430 (|#3| |#3|)) (-15 -4366 (|#3| |#3|)) (-15 -4074 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4098 (|#3| |#3|)) (-15 -4108 (|#3| |#3|)) (-15 -4120 (|#3| |#3|)) (-15 -4130 (|#3| |#3|)) (-15 -4139 (|#3| |#3|)) (-15 -4151 (|#3| |#3|)) (-15 -4165 (|#3| |#3|)) (-15 -4175 (|#3| |#3|)) (-15 -4183 (|#3| |#3|)) (-15 -4195 (|#3| |#3|)) (-15 -4206 (|#3| |#3|)) (-15 -2977 (|#3| |#3|)) (-15 -2987 (|#3| |#3|)) (-15 -3000 (|#3| |#3|)) (-15 -3013 (|#3| |#3|)) (-15 -3022 (|#3| |#3|)) (-15 -3033 (|#3| |#3|)) (-15 -3040 (|#3| |#3|)) (-15 -3054 (|#3| |#3|)) (-15 -3065 (|#3| |#3|)) (-15 -3077 (|#3| |#3|)) (-15 -1567 (|#3| |#3|))))
+((-2647 (((-3 |#3| "failed") |#3|) 66)) (-2987 ((|#3| |#3|) 129)) (-1969 (((-3 |#3| "failed") |#3|) 50)) (-4098 ((|#3| |#3|) 117)) (-3911 (((-3 |#3| "failed") |#3|) 62)) (-4206 ((|#3| |#3|) 127)) (-3275 (((-3 |#3| "failed") |#3|) 46)) (-4074 ((|#3| |#3|) 115)) (-1710 (((-3 |#3| "failed") |#3|) 70)) (-3013 ((|#3| |#3|) 131)) (-3290 (((-3 |#3| "failed") |#3|) 54)) (-4120 ((|#3| |#3|) 119)) (-1464 (((-3 |#3| "failed") |#3| (-766)) 35)) (-2501 (((-3 |#3| "failed") |#3|) 44)) (-4366 ((|#3| |#3|) 104)) (-3774 (((-3 |#3| "failed") |#3|) 42)) (-3430 ((|#3| |#3|) 114)) (-3986 (((-3 |#3| "failed") |#3|) 72)) (-3022 ((|#3| |#3|) 132)) (-3882 (((-3 |#3| "failed") |#3|) 56)) (-4130 ((|#3| |#3|) 120)) (-2904 (((-3 |#3| "failed") |#3|) 68)) (-3000 ((|#3| |#3|) 130)) (-1738 (((-3 |#3| "failed") |#3|) 52)) (-4108 ((|#3| |#3|) 118)) (-3021 (((-3 |#3| "failed") |#3|) 64)) (-2977 ((|#3| |#3|) 128)) (-3797 (((-3 |#3| "failed") |#3|) 48)) (-4087 ((|#3| |#3|) 116)) (-3963 (((-3 |#3| "failed") |#3|) 74)) (-3054 ((|#3| |#3|) 135)) (-1308 (((-3 |#3| "failed") |#3|) 58)) (-4165 ((|#3| |#3|) 123)) (-3625 (((-3 |#3| "failed") |#3|) 105)) (-3033 ((|#3| |#3|) 133)) (-2099 (((-3 |#3| "failed") |#3|) 94)) (-4139 ((|#3| |#3|) 121)) (-2073 (((-3 |#3| "failed") |#3|) 109)) (-3077 ((|#3| |#3|) 137)) (-3908 (((-3 |#3| "failed") |#3|) 101)) (-4183 ((|#3| |#3|) 125)) (-3286 (((-3 |#3| "failed") |#3|) 110)) (-1567 ((|#3| |#3|) 138)) (-3682 (((-3 |#3| "failed") |#3|) 103)) (-4195 ((|#3| |#3|) 126)) (-2984 (((-3 |#3| "failed") |#3|) 76)) (-3065 ((|#3| |#3|) 136)) (-2585 (((-3 |#3| "failed") |#3|) 60)) (-4175 ((|#3| |#3|) 124)) (-3117 (((-3 |#3| "failed") |#3|) 106)) (-3040 ((|#3| |#3|) 134)) (-2397 (((-3 |#3| "failed") |#3|) 97)) (-4151 ((|#3| |#3|) 122)) (** ((|#3| |#3| (-406 (-562))) 40 (|has| |#1| (-362)))))
+(((-278 |#1| |#2| |#3| |#4|) (-13 (-978 |#3|) (-10 -7 (IF (|has| |#1| (-362)) (-15 ** (|#3| |#3| (-406 (-562)))) |%noBranch|) (-15 -3430 (|#3| |#3|)) (-15 -4366 (|#3| |#3|)) (-15 -4074 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4098 (|#3| |#3|)) (-15 -4108 (|#3| |#3|)) (-15 -4120 (|#3| |#3|)) (-15 -4130 (|#3| |#3|)) (-15 -4139 (|#3| |#3|)) (-15 -4151 (|#3| |#3|)) (-15 -4165 (|#3| |#3|)) (-15 -4175 (|#3| |#3|)) (-15 -4183 (|#3| |#3|)) (-15 -4195 (|#3| |#3|)) (-15 -4206 (|#3| |#3|)) (-15 -2977 (|#3| |#3|)) (-15 -2987 (|#3| |#3|)) (-15 -3000 (|#3| |#3|)) (-15 -3013 (|#3| |#3|)) (-15 -3022 (|#3| |#3|)) (-15 -3033 (|#3| |#3|)) (-15 -3040 (|#3| |#3|)) (-15 -3054 (|#3| |#3|)) (-15 -3065 (|#3| |#3|)) (-15 -3077 (|#3| |#3|)) (-15 -1567 (|#3| |#3|)))) (-38 (-406 (-562))) (-1216 |#1|) (-1239 |#1| |#2|) (-978 |#2|)) (T -278))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-406 (-562))) (-4 *4 (-362)) (-4 *4 (-38 *3)) (-4 *5 (-1216 *4)) (-5 *1 (-278 *4 *5 *2 *6)) (-4 *2 (-1239 *4 *5)) (-4 *6 (-978 *5)))) (-3430 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4366 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4074 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4087 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4098 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4108 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4120 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4130 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4139 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4151 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4165 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4175 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4183 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4195 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-4206 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-2977 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-2987 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3000 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3013 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3022 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3033 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3040 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3054 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3065 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-3077 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))) (-1567 (*1 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *4 (-1216 *3)) (-5 *1 (-278 *3 *4 *2 *5)) (-4 *2 (-1239 *3 *4)) (-4 *5 (-978 *4)))))
+(-13 (-978 |#3|) (-10 -7 (IF (|has| |#1| (-362)) (-15 ** (|#3| |#3| (-406 (-562)))) |%noBranch|) (-15 -3430 (|#3| |#3|)) (-15 -4366 (|#3| |#3|)) (-15 -4074 (|#3| |#3|)) (-15 -4087 (|#3| |#3|)) (-15 -4098 (|#3| |#3|)) (-15 -4108 (|#3| |#3|)) (-15 -4120 (|#3| |#3|)) (-15 -4130 (|#3| |#3|)) (-15 -4139 (|#3| |#3|)) (-15 -4151 (|#3| |#3|)) (-15 -4165 (|#3| |#3|)) (-15 -4175 (|#3| |#3|)) (-15 -4183 (|#3| |#3|)) (-15 -4195 (|#3| |#3|)) (-15 -4206 (|#3| |#3|)) (-15 -2977 (|#3| |#3|)) (-15 -2987 (|#3| |#3|)) (-15 -3000 (|#3| |#3|)) (-15 -3013 (|#3| |#3|)) (-15 -3022 (|#3| |#3|)) (-15 -3033 (|#3| |#3|)) (-15 -3040 (|#3| |#3|)) (-15 -3054 (|#3| |#3|)) (-15 -3065 (|#3| |#3|)) (-15 -3077 (|#3| |#3|)) (-15 -1567 (|#3| |#3|))))
+((-3927 (((-112) $) 18)) (-3681 (((-182) $) 7)) (-3098 (((-3 (-1168) "failed") $) 14)) (-3075 (((-3 (-639 $) "failed") $) NIL)) (-1379 (((-3 (-1168) "failed") $) 20)) (-2445 (((-3 (-1096) "failed") $) 17)) (-3620 (((-112) $) 15)) (-4053 (((-857) $) NIL)) (-2268 (((-112) $) 9)))
+(((-279) (-13 (-609 (-857)) (-10 -8 (-15 -3681 ((-182) $)) (-15 -3620 ((-112) $)) (-15 -2445 ((-3 (-1096) "failed") $)) (-15 -3927 ((-112) $)) (-15 -1379 ((-3 (-1168) "failed") $)) (-15 -2268 ((-112) $)) (-15 -3098 ((-3 (-1168) "failed") $)) (-15 -3075 ((-3 (-639 $) "failed") $))))) (T -279))
+((-3681 (*1 *2 *1) (-12 (-5 *2 (-182)) (-5 *1 (-279)))) (-3620 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-279)))) (-2445 (*1 *2 *1) (|partial| -12 (-5 *2 (-1096)) (-5 *1 (-279)))) (-3927 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-279)))) (-1379 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-279)))) (-2268 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-279)))) (-3098 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-279)))) (-3075 (*1 *2 *1) (|partial| -12 (-5 *2 (-639 (-279))) (-5 *1 (-279)))))
+(-13 (-609 (-857)) (-10 -8 (-15 -3681 ((-182) $)) (-15 -3620 ((-112) $)) (-15 -2445 ((-3 (-1096) "failed") $)) (-15 -3927 ((-112) $)) (-15 -1379 ((-3 (-1168) "failed") $)) (-15 -2268 ((-112) $)) (-15 -3098 ((-3 (-1168) "failed") $)) (-15 -3075 ((-3 (-639 $) "failed") $))))
+((-3556 (($ (-1 (-112) |#2|) $) 24)) (-1459 (($ $) 36)) (-3729 (($ (-1 (-112) |#2|) $) NIL) (($ |#2| $) 34)) (-1475 (($ |#2| $) 32) (($ (-1 (-112) |#2|) $) 18)) (-3124 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 40)) (-3295 (($ |#2| $ (-562)) 20) (($ $ $ (-562)) 22)) (-2880 (($ $ (-562)) 11) (($ $ (-1223 (-562))) 14)) (-2587 (($ $ |#2|) 30) (($ $ $) NIL)) (-2767 (($ $ |#2|) 29) (($ |#2| $) NIL) (($ $ $) 26) (($ (-639 $)) NIL)))
+(((-280 |#1| |#2|) (-10 -8 (-15 -3124 (|#1| |#1| |#1|)) (-15 -3729 (|#1| |#2| |#1|)) (-15 -3124 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3729 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2587 (|#1| |#1| |#1|)) (-15 -2587 (|#1| |#1| |#2|)) (-15 -3295 (|#1| |#1| |#1| (-562))) (-15 -3295 (|#1| |#2| |#1| (-562))) (-15 -2880 (|#1| |#1| (-1223 (-562)))) (-15 -2880 (|#1| |#1| (-562))) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -1475 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3556 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1475 (|#1| |#2| |#1|)) (-15 -1459 (|#1| |#1|))) (-281 |#2|) (-1207)) (T -280))
+NIL
+(-10 -8 (-15 -3124 (|#1| |#1| |#1|)) (-15 -3729 (|#1| |#2| |#1|)) (-15 -3124 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3729 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2587 (|#1| |#1| |#1|)) (-15 -2587 (|#1| |#1| |#2|)) (-15 -3295 (|#1| |#1| |#1| (-562))) (-15 -3295 (|#1| |#2| |#1| (-562))) (-15 -2880 (|#1| |#1| (-1223 (-562)))) (-15 -2880 (|#1| |#1| (-562))) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -1475 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3556 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1475 (|#1| |#2| |#1|)) (-15 -1459 (|#1| |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3655 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) |#1|) 52 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) 58 (|has| $ (-6 -4404)))) (-2968 (($ (-1 (-112) |#1|) $) 85)) (-3556 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-3923 (($ $) 83 (|has| |#1| (-1092)))) (-1459 (($ $) 78 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-3729 (($ (-1 (-112) |#1|) $) 89) (($ |#1| $) 84 (|has| |#1| (-1092)))) (-1475 (($ |#1| $) 77 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) 53 (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) 51)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-1458 (($ (-766) |#1|) 69)) (-4172 (((-112) $ (-766)) 9)) (-1849 (((-562) $) 43 (|has| (-562) (-845)))) (-3124 (($ (-1 (-112) |#1| |#1|) $ $) 86) (($ $ $) 82 (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 44 (|has| (-562) (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1581 (($ |#1| $ (-562)) 88) (($ $ $ (-562)) 87)) (-3295 (($ |#1| $ (-562)) 60) (($ $ $ (-562)) 59)) (-3336 (((-639 (-562)) $) 46)) (-1987 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 42 (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-3510 (($ $ |#1|) 41 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) 48)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ (-562) |#1|) 50) ((|#1| $ (-562)) 49) (($ $ (-1223 (-562))) 63)) (-1527 (($ $ (-562)) 91) (($ $ (-1223 (-562))) 90)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 70)) (-2587 (($ $ |#1|) 93) (($ $ $) 92)) (-2767 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-281 |#1|) (-139) (-1207)) (T -281))
-((-4142 (*1 *1 *1 *2) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)))) (-4142 (*1 *1 *1 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)))) (-2878 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))) (-2878 (*1 *1 *1 *2) (-12 (-5 *2 (-1223 (-562))) (-4 *1 (-281 *3)) (-4 *3 (-1207)))) (-4000 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))) (-4300 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-281 *2)) (-4 *2 (-1207)))) (-4300 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))) (-2673 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))) (-3111 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))) (-4000 (*1 *1 *2 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)) (-4 *2 (-1092)))) (-4354 (*1 *1 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)) (-4 *2 (-1092)))) (-2673 (*1 *1 *1 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)) (-4 *2 (-845)))))
-(-13 (-645 |t#1|) (-10 -8 (-6 -4403) (-15 -4142 ($ $ |t#1|)) (-15 -4142 ($ $ $)) (-15 -2878 ($ $ (-562))) (-15 -2878 ($ $ (-1223 (-562)))) (-15 -4000 ($ (-1 (-112) |t#1|) $)) (-15 -4300 ($ |t#1| $ (-562))) (-15 -4300 ($ $ $ (-562))) (-15 -2673 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -3111 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1092)) (PROGN (-15 -4000 ($ |t#1| $)) (-15 -4354 ($ $))) |%noBranch|) (IF (|has| |t#1| (-845)) (-15 -2673 ($ $ $)) |%noBranch|)))
+((-2587 (*1 *1 *1 *2) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)))) (-2587 (*1 *1 *1 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)))) (-1527 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))) (-1527 (*1 *1 *1 *2) (-12 (-5 *2 (-1223 (-562))) (-4 *1 (-281 *3)) (-4 *3 (-1207)))) (-3729 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))) (-1581 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-281 *2)) (-4 *2 (-1207)))) (-1581 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))) (-3124 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))) (-2968 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))) (-3729 (*1 *1 *2 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)) (-4 *2 (-1092)))) (-3923 (*1 *1 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)) (-4 *2 (-1092)))) (-3124 (*1 *1 *1 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)) (-4 *2 (-845)))))
+(-13 (-645 |t#1|) (-10 -8 (-6 -4404) (-15 -2587 ($ $ |t#1|)) (-15 -2587 ($ $ $)) (-15 -1527 ($ $ (-562))) (-15 -1527 ($ $ (-1223 (-562)))) (-15 -3729 ($ (-1 (-112) |t#1|) $)) (-15 -1581 ($ |t#1| $ (-562))) (-15 -1581 ($ $ $ (-562))) (-15 -3124 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -2968 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1092)) (PROGN (-15 -3729 ($ |t#1| $)) (-15 -3923 ($ $))) |%noBranch|) (IF (|has| |t#1| (-845)) (-15 -3124 ($ $ $)) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-285 #0=(-562) |#1|) . T) ((-287 #0# |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-600 #0# |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-645 |#1|) . T) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
((** (($ $ $) 10)))
(((-282 |#1|) (-10 -8 (-15 ** (|#1| |#1| |#1|))) (-283)) (T -282))
NIL
(-10 -8 (-15 ** (|#1| |#1| |#1|)))
-((-4365 (($ $) 6)) (-3430 (($ $) 7)) (** (($ $ $) 8)))
+((-4366 (($ $) 6)) (-3430 (($ $) 7)) (** (($ $ $) 8)))
(((-283) (-139)) (T -283))
-((** (*1 *1 *1 *1) (-4 *1 (-283))) (-3430 (*1 *1 *1) (-4 *1 (-283))) (-4365 (*1 *1 *1) (-4 *1 (-283))))
-(-13 (-10 -8 (-15 -4365 ($ $)) (-15 -3430 ($ $)) (-15 ** ($ $ $))))
-((-1339 (((-639 (-1148 |#1|)) (-1148 |#1|) |#1|) 35)) (-1438 ((|#2| |#2| |#1|) 38)) (-2335 ((|#2| |#2| |#1|) 40)) (-3071 ((|#2| |#2| |#1|) 39)))
-(((-284 |#1| |#2|) (-10 -7 (-15 -1438 (|#2| |#2| |#1|)) (-15 -3071 (|#2| |#2| |#1|)) (-15 -2335 (|#2| |#2| |#1|)) (-15 -1339 ((-639 (-1148 |#1|)) (-1148 |#1|) |#1|))) (-362) (-1247 |#1|)) (T -284))
-((-1339 (*1 *2 *3 *4) (-12 (-4 *4 (-362)) (-5 *2 (-639 (-1148 *4))) (-5 *1 (-284 *4 *5)) (-5 *3 (-1148 *4)) (-4 *5 (-1247 *4)))) (-2335 (*1 *2 *2 *3) (-12 (-4 *3 (-362)) (-5 *1 (-284 *3 *2)) (-4 *2 (-1247 *3)))) (-3071 (*1 *2 *2 *3) (-12 (-4 *3 (-362)) (-5 *1 (-284 *3 *2)) (-4 *2 (-1247 *3)))) (-1438 (*1 *2 *2 *3) (-12 (-4 *3 (-362)) (-5 *1 (-284 *3 *2)) (-4 *2 (-1247 *3)))))
-(-10 -7 (-15 -1438 (|#2| |#2| |#1|)) (-15 -3071 (|#2| |#2| |#1|)) (-15 -2335 (|#2| |#2| |#1|)) (-15 -1339 ((-639 (-1148 |#1|)) (-1148 |#1|) |#1|)))
+((** (*1 *1 *1 *1) (-4 *1 (-283))) (-3430 (*1 *1 *1) (-4 *1 (-283))) (-4366 (*1 *1 *1) (-4 *1 (-283))))
+(-13 (-10 -8 (-15 -4366 ($ $)) (-15 -3430 ($ $)) (-15 ** ($ $ $))))
+((-2039 (((-639 (-1148 |#1|)) (-1148 |#1|) |#1|) 35)) (-2049 ((|#2| |#2| |#1|) 38)) (-3995 ((|#2| |#2| |#1|) 40)) (-3070 ((|#2| |#2| |#1|) 39)))
+(((-284 |#1| |#2|) (-10 -7 (-15 -2049 (|#2| |#2| |#1|)) (-15 -3070 (|#2| |#2| |#1|)) (-15 -3995 (|#2| |#2| |#1|)) (-15 -2039 ((-639 (-1148 |#1|)) (-1148 |#1|) |#1|))) (-362) (-1247 |#1|)) (T -284))
+((-2039 (*1 *2 *3 *4) (-12 (-4 *4 (-362)) (-5 *2 (-639 (-1148 *4))) (-5 *1 (-284 *4 *5)) (-5 *3 (-1148 *4)) (-4 *5 (-1247 *4)))) (-3995 (*1 *2 *2 *3) (-12 (-4 *3 (-362)) (-5 *1 (-284 *3 *2)) (-4 *2 (-1247 *3)))) (-3070 (*1 *2 *2 *3) (-12 (-4 *3 (-362)) (-5 *1 (-284 *3 *2)) (-4 *2 (-1247 *3)))) (-2049 (*1 *2 *2 *3) (-12 (-4 *3 (-362)) (-5 *1 (-284 *3 *2)) (-4 *2 (-1247 *3)))))
+(-10 -7 (-15 -2049 (|#2| |#2| |#1|)) (-15 -3070 (|#2| |#2| |#1|)) (-15 -3995 (|#2| |#2| |#1|)) (-15 -2039 ((-639 (-1148 |#1|)) (-1148 |#1|) |#1|)))
((-2343 ((|#2| $ |#1|) 6)))
(((-285 |#1| |#2|) (-139) (-1092) (-1207)) (T -285))
((-2343 (*1 *2 *1 *3) (-12 (-4 *1 (-285 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1207)))))
(-13 (-10 -8 (-15 -2343 (|t#2| $ |t#1|))))
-((-1505 ((|#3| $ |#2| |#3|) 12)) (-1420 ((|#3| $ |#2|) 10)))
-(((-286 |#1| |#2| |#3|) (-10 -8 (-15 -1505 (|#3| |#1| |#2| |#3|)) (-15 -1420 (|#3| |#1| |#2|))) (-287 |#2| |#3|) (-1092) (-1207)) (T -286))
+((-1507 ((|#3| $ |#2| |#3|) 12)) (-1420 ((|#3| $ |#2|) 10)))
+(((-286 |#1| |#2| |#3|) (-10 -8 (-15 -1507 (|#3| |#1| |#2| |#3|)) (-15 -1420 (|#3| |#1| |#2|))) (-287 |#2| |#3|) (-1092) (-1207)) (T -286))
NIL
-(-10 -8 (-15 -1505 (|#3| |#1| |#2| |#3|)) (-15 -1420 (|#3| |#1| |#2|)))
-((-4200 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4403)))) (-1505 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4403)))) (-1420 ((|#2| $ |#1|) 11)) (-2343 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
+(-10 -8 (-15 -1507 (|#3| |#1| |#2| |#3|)) (-15 -1420 (|#3| |#1| |#2|)))
+((-4200 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4404)))) (-1507 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4404)))) (-1420 ((|#2| $ |#1|) 11)) (-2343 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
(((-287 |#1| |#2|) (-139) (-1092) (-1207)) (T -287))
-((-2343 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-287 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1207)))) (-1420 (*1 *2 *1 *3) (-12 (-4 *1 (-287 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1207)))) (-4200 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-287 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1207)))) (-1505 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-287 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1207)))))
-(-13 (-285 |t#1| |t#2|) (-10 -8 (-15 -2343 (|t#2| $ |t#1| |t#2|)) (-15 -1420 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4403)) (PROGN (-15 -4200 (|t#2| $ |t#1| |t#2|)) (-15 -1505 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
+((-2343 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-287 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1207)))) (-1420 (*1 *2 *1 *3) (-12 (-4 *1 (-287 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1207)))) (-4200 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-287 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1207)))) (-1507 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-287 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1207)))))
+(-13 (-285 |t#1| |t#2|) (-10 -8 (-15 -2343 (|t#2| $ |t#1| |t#2|)) (-15 -1420 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4404)) (PROGN (-15 -4200 (|t#2| $ |t#1| |t#2|)) (-15 -1507 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
(((-285 |#1| |#2|) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 34)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 39)) (-2796 (($ $) 37)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2569 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-1811 (($ $ $) 32)) (-1955 (($ |#2| |#3|) 19)) (-3668 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-1957 (((-112) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3518 ((|#3| $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 20)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2302 (((-3 $ "failed") $ $) NIL)) (-1577 (((-766) $) 33)) (-2343 ((|#2| $ |#2|) 41)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 24)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-2579 (((-766)) NIL)) (-2922 (((-112) $ $) NIL)) (-2286 (($) 28 T CONST)) (-2294 (($) 35 T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 36)))
-(((-288 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-306) (-10 -8 (-15 -3518 (|#3| $)) (-15 -4054 (|#2| $)) (-15 -1955 ($ |#2| |#3|)) (-15 -2302 ((-3 $ "failed") $ $)) (-15 -3668 ((-3 $ "failed") $)) (-15 -1525 ($ $)) (-15 -2343 (|#2| $ |#2|)))) (-171) (-1232 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -288))
-((-3668 (*1 *1 *1) (|partial| -12 (-4 *2 (-171)) (-5 *1 (-288 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1232 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-3518 (*1 *2 *1) (-12 (-4 *3 (-171)) (-4 *2 (-23)) (-5 *1 (-288 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1232 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-4054 (*1 *2 *1) (-12 (-4 *2 (-1232 *3)) (-5 *1 (-288 *3 *2 *4 *5 *6 *7)) (-4 *3 (-171)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4)))) (-1955 (*1 *1 *2 *3) (-12 (-4 *4 (-171)) (-5 *1 (-288 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1232 *4)) (-4 *3 (-23)) (-14 *5 (-1 *2 *2 *3)) (-14 *6 (-1 (-3 *3 "failed") *3 *3)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *3)))) (-2302 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-171)) (-5 *1 (-288 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1232 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-1525 (*1 *1 *1) (-12 (-4 *2 (-171)) (-5 *1 (-288 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1232 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-2343 (*1 *2 *1 *2) (-12 (-4 *3 (-171)) (-5 *1 (-288 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1232 *3)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4)))))
-(-13 (-306) (-10 -8 (-15 -3518 (|#3| $)) (-15 -4054 (|#2| $)) (-15 -1955 ($ |#2| |#3|)) (-15 -2302 ((-3 $ "failed") $ $)) (-15 -3668 ((-3 $ "failed") $)) (-15 -1525 ($ $)) (-15 -2343 (|#2| $ |#2|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-562)) 29)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 34)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 39)) (-1965 (($ $) 37)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1436 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-1810 (($ $ $) 32)) (-1954 (($ |#2| |#3|) 19)) (-1694 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-4367 (((-112) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2685 ((|#3| $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 20)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3649 (((-3 $ "failed") $ $) NIL)) (-2044 (((-766) $) 33)) (-2343 ((|#2| $ |#2|) 41)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 24)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-1568 (((-766)) NIL)) (-3799 (((-112) $ $) NIL)) (-2285 (($) 28 T CONST)) (-2294 (($) 35 T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 36)))
+(((-288 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-306) (-10 -8 (-15 -2685 (|#3| $)) (-15 -4053 (|#2| $)) (-15 -1954 ($ |#2| |#3|)) (-15 -3649 ((-3 $ "failed") $ $)) (-15 -1694 ((-3 $ "failed") $)) (-15 -1525 ($ $)) (-15 -2343 (|#2| $ |#2|)))) (-171) (-1232 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -288))
+((-1694 (*1 *1 *1) (|partial| -12 (-4 *2 (-171)) (-5 *1 (-288 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1232 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-2685 (*1 *2 *1) (-12 (-4 *3 (-171)) (-4 *2 (-23)) (-5 *1 (-288 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1232 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-4053 (*1 *2 *1) (-12 (-4 *2 (-1232 *3)) (-5 *1 (-288 *3 *2 *4 *5 *6 *7)) (-4 *3 (-171)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4)))) (-1954 (*1 *1 *2 *3) (-12 (-4 *4 (-171)) (-5 *1 (-288 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1232 *4)) (-4 *3 (-23)) (-14 *5 (-1 *2 *2 *3)) (-14 *6 (-1 (-3 *3 "failed") *3 *3)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3649 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-171)) (-5 *1 (-288 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1232 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-1525 (*1 *1 *1) (-12 (-4 *2 (-171)) (-5 *1 (-288 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1232 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4)))) (-2343 (*1 *2 *1 *2) (-12 (-4 *3 (-171)) (-5 *1 (-288 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1232 *3)) (-4 *4 (-23)) (-14 *5 (-1 *2 *2 *4)) (-14 *6 (-1 (-3 *4 "failed") *4 *4)) (-14 *7 (-1 (-3 *2 "failed") *2 *2 *4)))))
+(-13 (-306) (-10 -8 (-15 -2685 (|#3| $)) (-15 -4053 (|#2| $)) (-15 -1954 ($ |#2| |#3|)) (-15 -3649 ((-3 $ "failed") $ $)) (-15 -1694 ((-3 $ "failed") $)) (-15 -1525 ($ $)) (-15 -2343 (|#2| $ |#2|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-562)) 29)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-289) (-139)) (T -289))
NIL
-(-13 (-1044) (-111 $ $) (-10 -7 (-6 -4395)))
+(-13 (-1044) (-111 $ $) (-10 -7 (-6 -4396)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-642 $) . T) ((-721) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-2301 (($ (-1168) (-1168) (-1096) $) 17)) (-2209 (($ (-1168) (-639 (-960)) $) 22)) (-1529 (((-639 (-1077)) $) 10)) (-3911 (((-3 (-1096) "failed") (-1168) (-1168) $) 16)) (-3865 (((-3 (-639 (-960)) "failed") (-1168) $) 21)) (-4307 (($) 7)) (-1368 (($) 23)) (-4054 (((-857) $) 27)) (-2331 (($) 24)))
-(((-290) (-13 (-609 (-857)) (-10 -8 (-15 -4307 ($)) (-15 -1529 ((-639 (-1077)) $)) (-15 -3911 ((-3 (-1096) "failed") (-1168) (-1168) $)) (-15 -2301 ($ (-1168) (-1168) (-1096) $)) (-15 -3865 ((-3 (-639 (-960)) "failed") (-1168) $)) (-15 -2209 ($ (-1168) (-639 (-960)) $)) (-15 -1368 ($)) (-15 -2331 ($))))) (T -290))
-((-4307 (*1 *1) (-5 *1 (-290))) (-1529 (*1 *2 *1) (-12 (-5 *2 (-639 (-1077))) (-5 *1 (-290)))) (-3911 (*1 *2 *3 *3 *1) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-1096)) (-5 *1 (-290)))) (-2301 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-1168)) (-5 *3 (-1096)) (-5 *1 (-290)))) (-3865 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-639 (-960))) (-5 *1 (-290)))) (-2209 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-960))) (-5 *1 (-290)))) (-1368 (*1 *1) (-5 *1 (-290))) (-2331 (*1 *1) (-5 *1 (-290))))
-(-13 (-609 (-857)) (-10 -8 (-15 -4307 ($)) (-15 -1529 ((-639 (-1077)) $)) (-15 -3911 ((-3 (-1096) "failed") (-1168) (-1168) $)) (-15 -2301 ($ (-1168) (-1168) (-1096) $)) (-15 -3865 ((-3 (-639 (-960)) "failed") (-1168) $)) (-15 -2209 ($ (-1168) (-639 (-960)) $)) (-15 -1368 ($)) (-15 -2331 ($))))
-((-1517 (((-639 (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |geneigvec| (-639 (-683 (-406 (-947 |#1|))))))) (-683 (-406 (-947 |#1|)))) 85)) (-3925 (((-639 (-683 (-406 (-947 |#1|)))) (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 |#1|)))))) (-683 (-406 (-947 |#1|)))) 80) (((-639 (-683 (-406 (-947 |#1|)))) (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|))) (-683 (-406 (-947 |#1|))) (-766) (-766)) 38)) (-3229 (((-639 (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 |#1|))))))) (-683 (-406 (-947 |#1|)))) 82)) (-4125 (((-639 (-683 (-406 (-947 |#1|)))) (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|))) (-683 (-406 (-947 |#1|)))) 62)) (-2499 (((-639 (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (-683 (-406 (-947 |#1|)))) 61)) (-3376 (((-947 |#1|) (-683 (-406 (-947 |#1|)))) 50) (((-947 |#1|) (-683 (-406 (-947 |#1|))) (-1168)) 51)))
-(((-291 |#1|) (-10 -7 (-15 -3376 ((-947 |#1|) (-683 (-406 (-947 |#1|))) (-1168))) (-15 -3376 ((-947 |#1|) (-683 (-406 (-947 |#1|))))) (-15 -2499 ((-639 (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (-683 (-406 (-947 |#1|))))) (-15 -4125 ((-639 (-683 (-406 (-947 |#1|)))) (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|))) (-683 (-406 (-947 |#1|))))) (-15 -3925 ((-639 (-683 (-406 (-947 |#1|)))) (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|))) (-683 (-406 (-947 |#1|))) (-766) (-766))) (-15 -3925 ((-639 (-683 (-406 (-947 |#1|)))) (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 |#1|)))))) (-683 (-406 (-947 |#1|))))) (-15 -1517 ((-639 (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |geneigvec| (-639 (-683 (-406 (-947 |#1|))))))) (-683 (-406 (-947 |#1|))))) (-15 -3229 ((-639 (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 |#1|))))))) (-683 (-406 (-947 |#1|)))))) (-451)) (T -291))
-((-3229 (*1 *2 *3) (-12 (-4 *4 (-451)) (-5 *2 (-639 (-2 (|:| |eigval| (-3 (-406 (-947 *4)) (-1157 (-1168) (-947 *4)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 *4)))))))) (-5 *1 (-291 *4)) (-5 *3 (-683 (-406 (-947 *4)))))) (-1517 (*1 *2 *3) (-12 (-4 *4 (-451)) (-5 *2 (-639 (-2 (|:| |eigval| (-3 (-406 (-947 *4)) (-1157 (-1168) (-947 *4)))) (|:| |geneigvec| (-639 (-683 (-406 (-947 *4)))))))) (-5 *1 (-291 *4)) (-5 *3 (-683 (-406 (-947 *4)))))) (-3925 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-406 (-947 *5)) (-1157 (-1168) (-947 *5)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 *4)))) (-4 *5 (-451)) (-5 *2 (-639 (-683 (-406 (-947 *5))))) (-5 *1 (-291 *5)) (-5 *4 (-683 (-406 (-947 *5)))))) (-3925 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-406 (-947 *6)) (-1157 (-1168) (-947 *6)))) (-5 *5 (-766)) (-4 *6 (-451)) (-5 *2 (-639 (-683 (-406 (-947 *6))))) (-5 *1 (-291 *6)) (-5 *4 (-683 (-406 (-947 *6)))))) (-4125 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-406 (-947 *5)) (-1157 (-1168) (-947 *5)))) (-4 *5 (-451)) (-5 *2 (-639 (-683 (-406 (-947 *5))))) (-5 *1 (-291 *5)) (-5 *4 (-683 (-406 (-947 *5)))))) (-2499 (*1 *2 *3) (-12 (-5 *3 (-683 (-406 (-947 *4)))) (-4 *4 (-451)) (-5 *2 (-639 (-3 (-406 (-947 *4)) (-1157 (-1168) (-947 *4))))) (-5 *1 (-291 *4)))) (-3376 (*1 *2 *3) (-12 (-5 *3 (-683 (-406 (-947 *4)))) (-5 *2 (-947 *4)) (-5 *1 (-291 *4)) (-4 *4 (-451)))) (-3376 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-406 (-947 *5)))) (-5 *4 (-1168)) (-5 *2 (-947 *5)) (-5 *1 (-291 *5)) (-4 *5 (-451)))))
-(-10 -7 (-15 -3376 ((-947 |#1|) (-683 (-406 (-947 |#1|))) (-1168))) (-15 -3376 ((-947 |#1|) (-683 (-406 (-947 |#1|))))) (-15 -2499 ((-639 (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (-683 (-406 (-947 |#1|))))) (-15 -4125 ((-639 (-683 (-406 (-947 |#1|)))) (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|))) (-683 (-406 (-947 |#1|))))) (-15 -3925 ((-639 (-683 (-406 (-947 |#1|)))) (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|))) (-683 (-406 (-947 |#1|))) (-766) (-766))) (-15 -3925 ((-639 (-683 (-406 (-947 |#1|)))) (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 |#1|)))))) (-683 (-406 (-947 |#1|))))) (-15 -1517 ((-639 (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |geneigvec| (-639 (-683 (-406 (-947 |#1|))))))) (-683 (-406 (-947 |#1|))))) (-15 -3229 ((-639 (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 |#1|))))))) (-683 (-406 (-947 |#1|))))))
+((-3638 (($ (-1168) (-1168) (-1096) $) 17)) (-2187 (($ (-1168) (-639 (-960)) $) 22)) (-2809 (((-639 (-1077)) $) 10)) (-2314 (((-3 (-1096) "failed") (-1168) (-1168) $) 16)) (-1819 (((-3 (-639 (-960)) "failed") (-1168) $) 21)) (-1663 (($) 7)) (-1368 (($) 23)) (-4053 (((-857) $) 27)) (-3947 (($) 24)))
+(((-290) (-13 (-609 (-857)) (-10 -8 (-15 -1663 ($)) (-15 -2809 ((-639 (-1077)) $)) (-15 -2314 ((-3 (-1096) "failed") (-1168) (-1168) $)) (-15 -3638 ($ (-1168) (-1168) (-1096) $)) (-15 -1819 ((-3 (-639 (-960)) "failed") (-1168) $)) (-15 -2187 ($ (-1168) (-639 (-960)) $)) (-15 -1368 ($)) (-15 -3947 ($))))) (T -290))
+((-1663 (*1 *1) (-5 *1 (-290))) (-2809 (*1 *2 *1) (-12 (-5 *2 (-639 (-1077))) (-5 *1 (-290)))) (-2314 (*1 *2 *3 *3 *1) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-1096)) (-5 *1 (-290)))) (-3638 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-1168)) (-5 *3 (-1096)) (-5 *1 (-290)))) (-1819 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-639 (-960))) (-5 *1 (-290)))) (-2187 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-960))) (-5 *1 (-290)))) (-1368 (*1 *1) (-5 *1 (-290))) (-3947 (*1 *1) (-5 *1 (-290))))
+(-13 (-609 (-857)) (-10 -8 (-15 -1663 ($)) (-15 -2809 ((-639 (-1077)) $)) (-15 -2314 ((-3 (-1096) "failed") (-1168) (-1168) $)) (-15 -3638 ($ (-1168) (-1168) (-1096) $)) (-15 -1819 ((-3 (-639 (-960)) "failed") (-1168) $)) (-15 -2187 ($ (-1168) (-639 (-960)) $)) (-15 -1368 ($)) (-15 -3947 ($))))
+((-2719 (((-639 (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |geneigvec| (-639 (-683 (-406 (-947 |#1|))))))) (-683 (-406 (-947 |#1|)))) 85)) (-4259 (((-639 (-683 (-406 (-947 |#1|)))) (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 |#1|)))))) (-683 (-406 (-947 |#1|)))) 80) (((-639 (-683 (-406 (-947 |#1|)))) (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|))) (-683 (-406 (-947 |#1|))) (-766) (-766)) 38)) (-1711 (((-639 (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 |#1|))))))) (-683 (-406 (-947 |#1|)))) 82)) (-2455 (((-639 (-683 (-406 (-947 |#1|)))) (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|))) (-683 (-406 (-947 |#1|)))) 62)) (-1992 (((-639 (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (-683 (-406 (-947 |#1|)))) 61)) (-3683 (((-947 |#1|) (-683 (-406 (-947 |#1|)))) 50) (((-947 |#1|) (-683 (-406 (-947 |#1|))) (-1168)) 51)))
+(((-291 |#1|) (-10 -7 (-15 -3683 ((-947 |#1|) (-683 (-406 (-947 |#1|))) (-1168))) (-15 -3683 ((-947 |#1|) (-683 (-406 (-947 |#1|))))) (-15 -1992 ((-639 (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (-683 (-406 (-947 |#1|))))) (-15 -2455 ((-639 (-683 (-406 (-947 |#1|)))) (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|))) (-683 (-406 (-947 |#1|))))) (-15 -4259 ((-639 (-683 (-406 (-947 |#1|)))) (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|))) (-683 (-406 (-947 |#1|))) (-766) (-766))) (-15 -4259 ((-639 (-683 (-406 (-947 |#1|)))) (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 |#1|)))))) (-683 (-406 (-947 |#1|))))) (-15 -2719 ((-639 (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |geneigvec| (-639 (-683 (-406 (-947 |#1|))))))) (-683 (-406 (-947 |#1|))))) (-15 -1711 ((-639 (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 |#1|))))))) (-683 (-406 (-947 |#1|)))))) (-451)) (T -291))
+((-1711 (*1 *2 *3) (-12 (-4 *4 (-451)) (-5 *2 (-639 (-2 (|:| |eigval| (-3 (-406 (-947 *4)) (-1157 (-1168) (-947 *4)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 *4)))))))) (-5 *1 (-291 *4)) (-5 *3 (-683 (-406 (-947 *4)))))) (-2719 (*1 *2 *3) (-12 (-4 *4 (-451)) (-5 *2 (-639 (-2 (|:| |eigval| (-3 (-406 (-947 *4)) (-1157 (-1168) (-947 *4)))) (|:| |geneigvec| (-639 (-683 (-406 (-947 *4)))))))) (-5 *1 (-291 *4)) (-5 *3 (-683 (-406 (-947 *4)))))) (-4259 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-406 (-947 *5)) (-1157 (-1168) (-947 *5)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 *4)))) (-4 *5 (-451)) (-5 *2 (-639 (-683 (-406 (-947 *5))))) (-5 *1 (-291 *5)) (-5 *4 (-683 (-406 (-947 *5)))))) (-4259 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-406 (-947 *6)) (-1157 (-1168) (-947 *6)))) (-5 *5 (-766)) (-4 *6 (-451)) (-5 *2 (-639 (-683 (-406 (-947 *6))))) (-5 *1 (-291 *6)) (-5 *4 (-683 (-406 (-947 *6)))))) (-2455 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-406 (-947 *5)) (-1157 (-1168) (-947 *5)))) (-4 *5 (-451)) (-5 *2 (-639 (-683 (-406 (-947 *5))))) (-5 *1 (-291 *5)) (-5 *4 (-683 (-406 (-947 *5)))))) (-1992 (*1 *2 *3) (-12 (-5 *3 (-683 (-406 (-947 *4)))) (-4 *4 (-451)) (-5 *2 (-639 (-3 (-406 (-947 *4)) (-1157 (-1168) (-947 *4))))) (-5 *1 (-291 *4)))) (-3683 (*1 *2 *3) (-12 (-5 *3 (-683 (-406 (-947 *4)))) (-5 *2 (-947 *4)) (-5 *1 (-291 *4)) (-4 *4 (-451)))) (-3683 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-406 (-947 *5)))) (-5 *4 (-1168)) (-5 *2 (-947 *5)) (-5 *1 (-291 *5)) (-4 *5 (-451)))))
+(-10 -7 (-15 -3683 ((-947 |#1|) (-683 (-406 (-947 |#1|))) (-1168))) (-15 -3683 ((-947 |#1|) (-683 (-406 (-947 |#1|))))) (-15 -1992 ((-639 (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (-683 (-406 (-947 |#1|))))) (-15 -2455 ((-639 (-683 (-406 (-947 |#1|)))) (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|))) (-683 (-406 (-947 |#1|))))) (-15 -4259 ((-639 (-683 (-406 (-947 |#1|)))) (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|))) (-683 (-406 (-947 |#1|))) (-766) (-766))) (-15 -4259 ((-639 (-683 (-406 (-947 |#1|)))) (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 |#1|)))))) (-683 (-406 (-947 |#1|))))) (-15 -2719 ((-639 (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |geneigvec| (-639 (-683 (-406 (-947 |#1|))))))) (-683 (-406 (-947 |#1|))))) (-15 -1711 ((-639 (-2 (|:| |eigval| (-3 (-406 (-947 |#1|)) (-1157 (-1168) (-947 |#1|)))) (|:| |eigmult| (-766)) (|:| |eigvec| (-639 (-683 (-406 (-947 |#1|))))))) (-683 (-406 (-947 |#1|))))))
((-4152 (((-293 |#2|) (-1 |#2| |#1|) (-293 |#1|)) 14)))
(((-292 |#1| |#2|) (-10 -7 (-15 -4152 ((-293 |#2|) (-1 |#2| |#1|) (-293 |#1|)))) (-1207) (-1207)) (T -292))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-293 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-293 *6)) (-5 *1 (-292 *5 *6)))))
(-10 -7 (-15 -4152 ((-293 |#2|) (-1 |#2| |#1|) (-293 |#1|))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1952 (((-112) $) NIL (|has| |#1| (-21)))) (-2291 (($ $) 12)) (-3214 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3165 (($ $ $) 94 (|has| |#1| (-301)))) (-1800 (($) NIL (-4037 (|has| |#1| (-21)) (|has| |#1| (-721))) CONST)) (-4124 (($ $) 50 (|has| |#1| (-21)))) (-3695 (((-3 $ "failed") $) 61 (|has| |#1| (-721)))) (-4328 ((|#1| $) 11)) (-3668 (((-3 $ "failed") $) 59 (|has| |#1| (-721)))) (-1957 (((-112) $) NIL (|has| |#1| (-721)))) (-4152 (($ (-1 |#1| |#1|) $) 14)) (-4316 ((|#1| $) 10)) (-3335 (($ $) 49 (|has| |#1| (-21)))) (-3505 (((-3 $ "failed") $) 60 (|has| |#1| (-721)))) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1525 (($ $) 63 (-4037 (|has| |#1| (-362)) (|has| |#1| (-472))))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2014 (((-639 $) $) 84 (|has| |#1| (-554)))) (-1433 (($ $ $) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 $)) 28 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-1168) |#1|) 17 (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) 21 (|has| |#1| (-513 (-1168) |#1|)))) (-3680 (($ |#1| |#1|) 9)) (-3627 (((-133)) 89 (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) 86 (|has| |#1| (-895 (-1168))))) (-3665 (($ $ $) NIL (|has| |#1| (-472)))) (-1911 (($ $ $) NIL (|has| |#1| (-472)))) (-4054 (($ (-562)) NIL (|has| |#1| (-1044))) (((-112) $) 36 (|has| |#1| (-1092))) (((-857) $) 35 (|has| |#1| (-1092)))) (-2579 (((-766)) 66 (|has| |#1| (-1044)))) (-2286 (($) 46 (|has| |#1| (-21)) CONST)) (-2294 (($) 56 (|has| |#1| (-721)) CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168))))) (-1731 (($ |#1| |#1|) 8) (((-112) $ $) 31 (|has| |#1| (-1092)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) 91 (-4037 (|has| |#1| (-362)) (|has| |#1| (-472))))) (-1848 (($ |#1| $) 44 (|has| |#1| (-21))) (($ $ |#1|) 45 (|has| |#1| (-21))) (($ $ $) 43 (|has| |#1| (-21))) (($ $) 42 (|has| |#1| (-21)))) (-1835 (($ |#1| $) 39 (|has| |#1| (-25))) (($ $ |#1|) 40 (|has| |#1| (-25))) (($ $ $) 38 (|has| |#1| (-25)))) (** (($ $ (-562)) NIL (|has| |#1| (-472))) (($ $ (-766)) NIL (|has| |#1| (-721))) (($ $ (-916)) NIL (|has| |#1| (-1104)))) (* (($ $ |#1|) 54 (|has| |#1| (-1104))) (($ |#1| $) 53 (|has| |#1| (-1104))) (($ $ $) 52 (|has| |#1| (-1104))) (($ (-562) $) 69 (|has| |#1| (-21))) (($ (-766) $) NIL (|has| |#1| (-21))) (($ (-916) $) NIL (|has| |#1| (-25)))))
-(((-293 |#1|) (-13 (-1207) (-10 -8 (-15 -1731 ($ |#1| |#1|)) (-15 -3680 ($ |#1| |#1|)) (-15 -2291 ($ $)) (-15 -4316 (|#1| $)) (-15 -4328 (|#1| $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-513 (-1168) |#1|)) (-6 (-513 (-1168) |#1|)) |%noBranch|) (IF (|has| |#1| (-1092)) (PROGN (-6 (-1092)) (-6 (-609 (-112))) (IF (|has| |#1| (-308 |#1|)) (PROGN (-15 -1433 ($ $ $)) (-15 -1433 ($ $ (-639 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -1835 ($ |#1| $)) (-15 -1835 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -3335 ($ $)) (-15 -4124 ($ $)) (-15 -1848 ($ |#1| $)) (-15 -1848 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1104)) (PROGN (-6 (-1104)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-721)) (PROGN (-6 (-721)) (-15 -3505 ((-3 $ "failed") $)) (-15 -3695 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-472)) (PROGN (-6 (-472)) (-15 -3505 ((-3 $ "failed") $)) (-15 -3695 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1044)) (PROGN (-6 (-1044)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-171)) (-6 (-712 |#1|)) |%noBranch|) (IF (|has| |#1| (-554)) (-15 -2014 ((-639 $) $)) |%noBranch|) (IF (|has| |#1| (-895 (-1168))) (-6 (-895 (-1168))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-6 (-1263 |#1|)) (-15 -1859 ($ $ $)) (-15 -1525 ($ $))) |%noBranch|) (IF (|has| |#1| (-301)) (-15 -3165 ($ $ $)) |%noBranch|))) (-1207)) (T -293))
-((-1731 (*1 *1 *2 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207)))) (-3680 (*1 *1 *2 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207)))) (-2291 (*1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207)))) (-4316 (*1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207)))) (-4328 (*1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207)))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1207)) (-5 *1 (-293 *3)))) (-1433 (*1 *1 *1 *1) (-12 (-4 *2 (-308 *2)) (-4 *2 (-1092)) (-4 *2 (-1207)) (-5 *1 (-293 *2)))) (-1433 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-293 *3))) (-4 *3 (-308 *3)) (-4 *3 (-1092)) (-4 *3 (-1207)) (-5 *1 (-293 *3)))) (-1835 (*1 *1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-25)) (-4 *2 (-1207)))) (-1835 (*1 *1 *1 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-25)) (-4 *2 (-1207)))) (-3335 (*1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207)))) (-4124 (*1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207)))) (-1848 (*1 *1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207)))) (-1848 (*1 *1 *1 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207)))) (-3505 (*1 *1 *1) (|partial| -12 (-5 *1 (-293 *2)) (-4 *2 (-721)) (-4 *2 (-1207)))) (-3695 (*1 *1 *1) (|partial| -12 (-5 *1 (-293 *2)) (-4 *2 (-721)) (-4 *2 (-1207)))) (-2014 (*1 *2 *1) (-12 (-5 *2 (-639 (-293 *3))) (-5 *1 (-293 *3)) (-4 *3 (-554)) (-4 *3 (-1207)))) (-3165 (*1 *1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-301)) (-4 *2 (-1207)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1104)) (-4 *2 (-1207)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1104)) (-4 *2 (-1207)))) (-1859 (*1 *1 *1 *1) (-4037 (-12 (-5 *1 (-293 *2)) (-4 *2 (-362)) (-4 *2 (-1207))) (-12 (-5 *1 (-293 *2)) (-4 *2 (-472)) (-4 *2 (-1207))))) (-1525 (*1 *1 *1) (-4037 (-12 (-5 *1 (-293 *2)) (-4 *2 (-362)) (-4 *2 (-1207))) (-12 (-5 *1 (-293 *2)) (-4 *2 (-472)) (-4 *2 (-1207))))))
-(-13 (-1207) (-10 -8 (-15 -1731 ($ |#1| |#1|)) (-15 -3680 ($ |#1| |#1|)) (-15 -2291 ($ $)) (-15 -4316 (|#1| $)) (-15 -4328 (|#1| $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-513 (-1168) |#1|)) (-6 (-513 (-1168) |#1|)) |%noBranch|) (IF (|has| |#1| (-1092)) (PROGN (-6 (-1092)) (-6 (-609 (-112))) (IF (|has| |#1| (-308 |#1|)) (PROGN (-15 -1433 ($ $ $)) (-15 -1433 ($ $ (-639 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -1835 ($ |#1| $)) (-15 -1835 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -3335 ($ $)) (-15 -4124 ($ $)) (-15 -1848 ($ |#1| $)) (-15 -1848 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1104)) (PROGN (-6 (-1104)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-721)) (PROGN (-6 (-721)) (-15 -3505 ((-3 $ "failed") $)) (-15 -3695 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-472)) (PROGN (-6 (-472)) (-15 -3505 ((-3 $ "failed") $)) (-15 -3695 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1044)) (PROGN (-6 (-1044)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-171)) (-6 (-712 |#1|)) |%noBranch|) (IF (|has| |#1| (-554)) (-15 -2014 ((-639 $) $)) |%noBranch|) (IF (|has| |#1| (-895 (-1168))) (-6 (-895 (-1168))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-6 (-1263 |#1|)) (-15 -1859 ($ $ $)) (-15 -1525 ($ $))) |%noBranch|) (IF (|has| |#1| (-301)) (-15 -3165 ($ $ $)) |%noBranch|)))
-((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-3052 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#2| $ |#1| |#2|) NIL)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1472 (((-3 |#2| "failed") |#1| $) NIL)) (-1800 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-4000 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-3 |#2| "failed") |#1| $) NIL)) (-1475 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#2| $ |#1|) NIL)) (-1720 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 ((|#1| $) NIL (|has| |#1| (-845)))) (-1912 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-3874 ((|#1| $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4403))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1520 (((-639 |#1|) $) NIL)) (-4265 (((-112) |#1| $) NIL)) (-3262 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-4300 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-2093 (((-639 |#1|) $) NIL)) (-1570 (((-112) |#1| $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845)))) (-3251 (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL)) (-2716 (($ $ |#2|) NIL (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-2411 (((-639 |#2|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3564 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-4054 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-1932 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-294 |#1| |#2|) (-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4402))) (-1092) (-1092)) (T -294))
-NIL
-(-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4402)))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-4325 (((-112) $) NIL (|has| |#1| (-21)))) (-3554 (($ $) 12)) (-2781 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3164 (($ $ $) 94 (|has| |#1| (-301)))) (-3329 (($) NIL (-4037 (|has| |#1| (-21)) (|has| |#1| (-721))) CONST)) (-2444 (($ $) 50 (|has| |#1| (-21)))) (-3790 (((-3 $ "failed") $) 61 (|has| |#1| (-721)))) (-4330 ((|#1| $) 11)) (-1694 (((-3 $ "failed") $) 59 (|has| |#1| (-721)))) (-4367 (((-112) $) NIL (|has| |#1| (-721)))) (-4152 (($ (-1 |#1| |#1|) $) 14)) (-4318 ((|#1| $) 10)) (-1440 (($ $) 49 (|has| |#1| (-21)))) (-2574 (((-3 $ "failed") $) 60 (|has| |#1| (-721)))) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1525 (($ $) 63 (-4037 (|has| |#1| (-362)) (|has| |#1| (-472))))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3709 (((-639 $) $) 84 (|has| |#1| (-554)))) (-1433 (($ $ $) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 $)) 28 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-1168) |#1|) 17 (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) 21 (|has| |#1| (-513 (-1168) |#1|)))) (-3680 (($ |#1| |#1|) 9)) (-4340 (((-133)) 89 (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) 86 (|has| |#1| (-895 (-1168))))) (-1660 (($ $ $) NIL (|has| |#1| (-472)))) (-2114 (($ $ $) NIL (|has| |#1| (-472)))) (-4053 (($ (-562)) NIL (|has| |#1| (-1044))) (((-112) $) 36 (|has| |#1| (-1092))) (((-857) $) 35 (|has| |#1| (-1092)))) (-1568 (((-766)) 66 (|has| |#1| (-1044)))) (-2285 (($) 46 (|has| |#1| (-21)) CONST)) (-2294 (($) 56 (|has| |#1| (-721)) CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168))))) (-1733 (($ |#1| |#1|) 8) (((-112) $ $) 31 (|has| |#1| (-1092)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) 91 (-4037 (|has| |#1| (-362)) (|has| |#1| (-472))))) (-1847 (($ |#1| $) 44 (|has| |#1| (-21))) (($ $ |#1|) 45 (|has| |#1| (-21))) (($ $ $) 43 (|has| |#1| (-21))) (($ $) 42 (|has| |#1| (-21)))) (-1836 (($ |#1| $) 39 (|has| |#1| (-25))) (($ $ |#1|) 40 (|has| |#1| (-25))) (($ $ $) 38 (|has| |#1| (-25)))) (** (($ $ (-562)) NIL (|has| |#1| (-472))) (($ $ (-766)) NIL (|has| |#1| (-721))) (($ $ (-916)) NIL (|has| |#1| (-1104)))) (* (($ $ |#1|) 54 (|has| |#1| (-1104))) (($ |#1| $) 53 (|has| |#1| (-1104))) (($ $ $) 52 (|has| |#1| (-1104))) (($ (-562) $) 69 (|has| |#1| (-21))) (($ (-766) $) NIL (|has| |#1| (-21))) (($ (-916) $) NIL (|has| |#1| (-25)))))
+(((-293 |#1|) (-13 (-1207) (-10 -8 (-15 -1733 ($ |#1| |#1|)) (-15 -3680 ($ |#1| |#1|)) (-15 -3554 ($ $)) (-15 -4318 (|#1| $)) (-15 -4330 (|#1| $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-513 (-1168) |#1|)) (-6 (-513 (-1168) |#1|)) |%noBranch|) (IF (|has| |#1| (-1092)) (PROGN (-6 (-1092)) (-6 (-609 (-112))) (IF (|has| |#1| (-308 |#1|)) (PROGN (-15 -1433 ($ $ $)) (-15 -1433 ($ $ (-639 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -1836 ($ |#1| $)) (-15 -1836 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -1440 ($ $)) (-15 -2444 ($ $)) (-15 -1847 ($ |#1| $)) (-15 -1847 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1104)) (PROGN (-6 (-1104)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-721)) (PROGN (-6 (-721)) (-15 -2574 ((-3 $ "failed") $)) (-15 -3790 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-472)) (PROGN (-6 (-472)) (-15 -2574 ((-3 $ "failed") $)) (-15 -3790 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1044)) (PROGN (-6 (-1044)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-171)) (-6 (-712 |#1|)) |%noBranch|) (IF (|has| |#1| (-554)) (-15 -3709 ((-639 $) $)) |%noBranch|) (IF (|has| |#1| (-895 (-1168))) (-6 (-895 (-1168))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-6 (-1263 |#1|)) (-15 -1859 ($ $ $)) (-15 -1525 ($ $))) |%noBranch|) (IF (|has| |#1| (-301)) (-15 -3164 ($ $ $)) |%noBranch|))) (-1207)) (T -293))
+((-1733 (*1 *1 *2 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207)))) (-3680 (*1 *1 *2 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207)))) (-3554 (*1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207)))) (-4318 (*1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207)))) (-4330 (*1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207)))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1207)) (-5 *1 (-293 *3)))) (-1433 (*1 *1 *1 *1) (-12 (-4 *2 (-308 *2)) (-4 *2 (-1092)) (-4 *2 (-1207)) (-5 *1 (-293 *2)))) (-1433 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-293 *3))) (-4 *3 (-308 *3)) (-4 *3 (-1092)) (-4 *3 (-1207)) (-5 *1 (-293 *3)))) (-1836 (*1 *1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-25)) (-4 *2 (-1207)))) (-1836 (*1 *1 *1 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-25)) (-4 *2 (-1207)))) (-1440 (*1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207)))) (-2444 (*1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207)))) (-1847 (*1 *1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207)))) (-1847 (*1 *1 *1 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207)))) (-2574 (*1 *1 *1) (|partial| -12 (-5 *1 (-293 *2)) (-4 *2 (-721)) (-4 *2 (-1207)))) (-3790 (*1 *1 *1) (|partial| -12 (-5 *1 (-293 *2)) (-4 *2 (-721)) (-4 *2 (-1207)))) (-3709 (*1 *2 *1) (-12 (-5 *2 (-639 (-293 *3))) (-5 *1 (-293 *3)) (-4 *3 (-554)) (-4 *3 (-1207)))) (-3164 (*1 *1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-301)) (-4 *2 (-1207)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1104)) (-4 *2 (-1207)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1104)) (-4 *2 (-1207)))) (-1859 (*1 *1 *1 *1) (-4037 (-12 (-5 *1 (-293 *2)) (-4 *2 (-362)) (-4 *2 (-1207))) (-12 (-5 *1 (-293 *2)) (-4 *2 (-472)) (-4 *2 (-1207))))) (-1525 (*1 *1 *1) (-4037 (-12 (-5 *1 (-293 *2)) (-4 *2 (-362)) (-4 *2 (-1207))) (-12 (-5 *1 (-293 *2)) (-4 *2 (-472)) (-4 *2 (-1207))))))
+(-13 (-1207) (-10 -8 (-15 -1733 ($ |#1| |#1|)) (-15 -3680 ($ |#1| |#1|)) (-15 -3554 ($ $)) (-15 -4318 (|#1| $)) (-15 -4330 (|#1| $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-513 (-1168) |#1|)) (-6 (-513 (-1168) |#1|)) |%noBranch|) (IF (|has| |#1| (-1092)) (PROGN (-6 (-1092)) (-6 (-609 (-112))) (IF (|has| |#1| (-308 |#1|)) (PROGN (-15 -1433 ($ $ $)) (-15 -1433 ($ $ (-639 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -1836 ($ |#1| $)) (-15 -1836 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -1440 ($ $)) (-15 -2444 ($ $)) (-15 -1847 ($ |#1| $)) (-15 -1847 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1104)) (PROGN (-6 (-1104)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-721)) (PROGN (-6 (-721)) (-15 -2574 ((-3 $ "failed") $)) (-15 -3790 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-472)) (PROGN (-6 (-472)) (-15 -2574 ((-3 $ "failed") $)) (-15 -3790 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1044)) (PROGN (-6 (-1044)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-171)) (-6 (-712 |#1|)) |%noBranch|) (IF (|has| |#1| (-554)) (-15 -3709 ((-639 $) $)) |%noBranch|) (IF (|has| |#1| (-895 (-1168))) (-6 (-895 (-1168))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-6 (-1263 |#1|)) (-15 -1859 ($ $ $)) (-15 -1525 ($ $))) |%noBranch|) (IF (|has| |#1| (-301)) (-15 -3164 ($ $ $)) |%noBranch|)))
+((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-3655 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#2| $ |#1| |#2|) NIL)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1472 (((-3 |#2| "failed") |#1| $) NIL)) (-3329 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-3729 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-3 |#2| "failed") |#1| $) NIL)) (-1475 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#2| $ |#1|) NIL)) (-1720 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 ((|#1| $) NIL (|has| |#1| (-845)))) (-2123 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-1929 ((|#1| $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4404))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1521 (((-639 |#1|) $) NIL)) (-4278 (((-112) |#1| $) NIL)) (-2078 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-1581 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3336 (((-639 |#1|) $) NIL)) (-1987 (((-112) |#1| $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845)))) (-1963 (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL)) (-3510 (($ $ |#2|) NIL (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-2366 (((-639 |#2|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-1932 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-4053 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-4131 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-294 |#1| |#2|) (-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4403))) (-1092) (-1092)) (T -294))
+NIL
+(-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4403)))
((-3964 (((-311) (-1150) (-639 (-1150))) 16) (((-311) (-1150) (-1150)) 15) (((-311) (-639 (-1150))) 14) (((-311) (-1150)) 12)))
(((-295) (-10 -7 (-15 -3964 ((-311) (-1150))) (-15 -3964 ((-311) (-639 (-1150)))) (-15 -3964 ((-311) (-1150) (-1150))) (-15 -3964 ((-311) (-1150) (-639 (-1150)))))) (T -295))
((-3964 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-1150))) (-5 *3 (-1150)) (-5 *2 (-311)) (-5 *1 (-295)))) (-3964 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-311)) (-5 *1 (-295)))) (-3964 (*1 *2 *3) (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-311)) (-5 *1 (-295)))) (-3964 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-311)) (-5 *1 (-295)))))
@@ -1160,43 +1160,43 @@ NIL
(((-297 |#1| |#2|) (-10 -7 (-15 -4152 (|#2| (-1 |#2| |#1|) (-608 |#1|)))) (-301) (-301)) (T -297))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-608 *5)) (-4 *5 (-301)) (-4 *2 (-301)) (-5 *1 (-297 *5 *2)))))
(-10 -7 (-15 -4152 (|#2| (-1 |#2| |#1|) (-608 |#1|))))
-((-3601 (((-112) (-224)) 10)))
-(((-298 |#1| |#2|) (-10 -7 (-15 -3601 ((-112) (-224)))) (-224) (-224)) (T -298))
-((-3601 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-112)) (-5 *1 (-298 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-10 -7 (-15 -3601 ((-112) (-224))))
-((-1404 (((-1148 (-224)) (-315 (-224)) (-639 (-1168)) (-1086 (-838 (-224)))) 92)) (-4163 (((-1148 (-224)) (-1256 (-315 (-224))) (-639 (-1168)) (-1086 (-838 (-224)))) 106) (((-1148 (-224)) (-315 (-224)) (-639 (-1168)) (-1086 (-838 (-224)))) 61)) (-2932 (((-639 (-1150)) (-1148 (-224))) NIL)) (-2025 (((-639 (-224)) (-315 (-224)) (-1168) (-1086 (-838 (-224)))) 58)) (-2556 (((-639 (-224)) (-947 (-406 (-562))) (-1168) (-1086 (-838 (-224)))) 49)) (-3843 (((-639 (-1150)) (-639 (-224))) NIL)) (-2575 (((-224) (-1086 (-838 (-224)))) 25)) (-2300 (((-224) (-1086 (-838 (-224)))) 26)) (-3445 (((-112) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 54)) (-2590 (((-1150) (-224)) NIL)))
-(((-299) (-10 -7 (-15 -2575 ((-224) (-1086 (-838 (-224))))) (-15 -2300 ((-224) (-1086 (-838 (-224))))) (-15 -3445 ((-112) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2025 ((-639 (-224)) (-315 (-224)) (-1168) (-1086 (-838 (-224))))) (-15 -1404 ((-1148 (-224)) (-315 (-224)) (-639 (-1168)) (-1086 (-838 (-224))))) (-15 -4163 ((-1148 (-224)) (-315 (-224)) (-639 (-1168)) (-1086 (-838 (-224))))) (-15 -4163 ((-1148 (-224)) (-1256 (-315 (-224))) (-639 (-1168)) (-1086 (-838 (-224))))) (-15 -2556 ((-639 (-224)) (-947 (-406 (-562))) (-1168) (-1086 (-838 (-224))))) (-15 -2590 ((-1150) (-224))) (-15 -3843 ((-639 (-1150)) (-639 (-224)))) (-15 -2932 ((-639 (-1150)) (-1148 (-224)))))) (T -299))
-((-2932 (*1 *2 *3) (-12 (-5 *3 (-1148 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-299)))) (-3843 (*1 *2 *3) (-12 (-5 *3 (-639 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-299)))) (-2590 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1150)) (-5 *1 (-299)))) (-2556 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-947 (-406 (-562)))) (-5 *4 (-1168)) (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-299)))) (-4163 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *4 (-639 (-1168))) (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-299)))) (-4163 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-315 (-224))) (-5 *4 (-639 (-1168))) (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-299)))) (-1404 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-315 (-224))) (-5 *4 (-639 (-1168))) (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-299)))) (-2025 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-315 (-224))) (-5 *4 (-1168)) (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-299)))) (-3445 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-112)) (-5 *1 (-299)))) (-2300 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-299)))) (-2575 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-299)))))
-(-10 -7 (-15 -2575 ((-224) (-1086 (-838 (-224))))) (-15 -2300 ((-224) (-1086 (-838 (-224))))) (-15 -3445 ((-112) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2025 ((-639 (-224)) (-315 (-224)) (-1168) (-1086 (-838 (-224))))) (-15 -1404 ((-1148 (-224)) (-315 (-224)) (-639 (-1168)) (-1086 (-838 (-224))))) (-15 -4163 ((-1148 (-224)) (-315 (-224)) (-639 (-1168)) (-1086 (-838 (-224))))) (-15 -4163 ((-1148 (-224)) (-1256 (-315 (-224))) (-639 (-1168)) (-1086 (-838 (-224))))) (-15 -2556 ((-639 (-224)) (-947 (-406 (-562))) (-1168) (-1086 (-838 (-224))))) (-15 -2590 ((-1150) (-224))) (-15 -3843 ((-639 (-1150)) (-639 (-224)))) (-15 -2932 ((-639 (-1150)) (-1148 (-224)))))
-((-1495 (((-639 (-608 $)) $) 30)) (-3165 (($ $ (-293 $)) 80) (($ $ (-639 (-293 $))) 122) (($ $ (-639 (-608 $)) (-639 $)) NIL)) (-4048 (((-3 (-608 $) "failed") $) 112)) (-3961 (((-608 $) $) 111)) (-1383 (($ $) 19) (($ (-639 $)) 55)) (-3936 (((-639 (-114)) $) 38)) (-2876 (((-114) (-114)) 90)) (-3130 (((-112) $) 130)) (-4152 (($ (-1 $ $) (-608 $)) 88)) (-4367 (((-3 (-608 $) "failed") $) 92)) (-4141 (($ (-114) $) 60) (($ (-114) (-639 $)) 99)) (-1776 (((-112) $ (-114)) 116) (((-112) $ (-1168)) 115)) (-3060 (((-766) $) 46)) (-4296 (((-112) $ $) 58) (((-112) $ (-1168)) 50)) (-3803 (((-112) $) 128)) (-1433 (($ $ (-608 $) $) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL) (($ $ (-639 (-293 $))) 120) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ $))) 83) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-1168) (-1 $ (-639 $))) 68) (($ $ (-1168) (-1 $ $)) 74) (($ $ (-639 (-114)) (-639 (-1 $ $))) 82) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) 84) (($ $ (-114) (-1 $ (-639 $))) 70) (($ $ (-114) (-1 $ $)) 76)) (-2343 (($ (-114) $) 61) (($ (-114) $ $) 62) (($ (-114) $ $ $) 63) (($ (-114) $ $ $ $) 64) (($ (-114) (-639 $)) 108)) (-3790 (($ $) 52) (($ $ $) 118)) (-2746 (($ $) 17) (($ (-639 $)) 54)) (-2803 (((-112) (-114)) 22)))
-(((-300 |#1|) (-10 -8 (-15 -3130 ((-112) |#1|)) (-15 -3803 ((-112) |#1|)) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| |#1|)))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| |#1|)))) (-15 -4296 ((-112) |#1| (-1168))) (-15 -4296 ((-112) |#1| |#1|)) (-15 -4152 (|#1| (-1 |#1| |#1|) (-608 |#1|))) (-15 -4141 (|#1| (-114) (-639 |#1|))) (-15 -4141 (|#1| (-114) |#1|)) (-15 -1776 ((-112) |#1| (-1168))) (-15 -1776 ((-112) |#1| (-114))) (-15 -2803 ((-112) (-114))) (-15 -2876 ((-114) (-114))) (-15 -3936 ((-639 (-114)) |#1|)) (-15 -1495 ((-639 (-608 |#1|)) |#1|)) (-15 -4367 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3060 ((-766) |#1|)) (-15 -3790 (|#1| |#1| |#1|)) (-15 -3790 (|#1| |#1|)) (-15 -1383 (|#1| (-639 |#1|))) (-15 -1383 (|#1| |#1|)) (-15 -2746 (|#1| (-639 |#1|))) (-15 -2746 (|#1| |#1|)) (-15 -3165 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -3165 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -3165 (|#1| |#1| (-293 |#1|))) (-15 -2343 (|#1| (-114) (-639 |#1|))) (-15 -2343 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -1433 (|#1| |#1| (-608 |#1|) |#1|)) (-15 -4048 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3961 ((-608 |#1|) |#1|))) (-301)) (T -300))
-((-2876 (*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-300 *3)) (-4 *3 (-301)))) (-2803 (*1 *2 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-300 *4)) (-4 *4 (-301)))))
-(-10 -8 (-15 -3130 ((-112) |#1|)) (-15 -3803 ((-112) |#1|)) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| |#1|)))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| |#1|)))) (-15 -4296 ((-112) |#1| (-1168))) (-15 -4296 ((-112) |#1| |#1|)) (-15 -4152 (|#1| (-1 |#1| |#1|) (-608 |#1|))) (-15 -4141 (|#1| (-114) (-639 |#1|))) (-15 -4141 (|#1| (-114) |#1|)) (-15 -1776 ((-112) |#1| (-1168))) (-15 -1776 ((-112) |#1| (-114))) (-15 -2803 ((-112) (-114))) (-15 -2876 ((-114) (-114))) (-15 -3936 ((-639 (-114)) |#1|)) (-15 -1495 ((-639 (-608 |#1|)) |#1|)) (-15 -4367 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3060 ((-766) |#1|)) (-15 -3790 (|#1| |#1| |#1|)) (-15 -3790 (|#1| |#1|)) (-15 -1383 (|#1| (-639 |#1|))) (-15 -1383 (|#1| |#1|)) (-15 -2746 (|#1| (-639 |#1|))) (-15 -2746 (|#1| |#1|)) (-15 -3165 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -3165 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -3165 (|#1| |#1| (-293 |#1|))) (-15 -2343 (|#1| (-114) (-639 |#1|))) (-15 -2343 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -1433 (|#1| |#1| (-608 |#1|) |#1|)) (-15 -4048 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3961 ((-608 |#1|) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1495 (((-639 (-608 $)) $) 44)) (-3165 (($ $ (-293 $)) 56) (($ $ (-639 (-293 $))) 55) (($ $ (-639 (-608 $)) (-639 $)) 54)) (-4048 (((-3 (-608 $) "failed") $) 69)) (-3961 (((-608 $) $) 70)) (-1383 (($ $) 51) (($ (-639 $)) 50)) (-3936 (((-639 (-114)) $) 43)) (-2876 (((-114) (-114)) 42)) (-3130 (((-112) $) 22 (|has| $ (-1033 (-562))))) (-1677 (((-1164 $) (-608 $)) 25 (|has| $ (-1044)))) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-4152 (($ (-1 $ $) (-608 $)) 36)) (-4367 (((-3 (-608 $) "failed") $) 46)) (-2913 (((-1150) $) 9)) (-1583 (((-639 (-608 $)) $) 45)) (-4141 (($ (-114) $) 38) (($ (-114) (-639 $)) 37)) (-1776 (((-112) $ (-114)) 40) (((-112) $ (-1168)) 39)) (-3060 (((-766) $) 47)) (-1709 (((-1112) $) 10)) (-4296 (((-112) $ $) 35) (((-112) $ (-1168)) 34)) (-3803 (((-112) $) 23 (|has| $ (-1033 (-562))))) (-1433 (($ $ (-608 $) $) 67) (($ $ (-639 (-608 $)) (-639 $)) 66) (($ $ (-639 (-293 $))) 65) (($ $ (-293 $)) 64) (($ $ $ $) 63) (($ $ (-639 $) (-639 $)) 62) (($ $ (-639 (-1168)) (-639 (-1 $ $))) 33) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) 32) (($ $ (-1168) (-1 $ (-639 $))) 31) (($ $ (-1168) (-1 $ $)) 30) (($ $ (-639 (-114)) (-639 (-1 $ $))) 29) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) 28) (($ $ (-114) (-1 $ (-639 $))) 27) (($ $ (-114) (-1 $ $)) 26)) (-2343 (($ (-114) $) 61) (($ (-114) $ $) 60) (($ (-114) $ $ $) 59) (($ (-114) $ $ $ $) 58) (($ (-114) (-639 $)) 57)) (-3790 (($ $) 49) (($ $ $) 48)) (-2096 (($ $) 24 (|has| $ (-1044)))) (-4054 (((-857) $) 11) (($ (-608 $)) 68)) (-2746 (($ $) 53) (($ (-639 $)) 52)) (-2803 (((-112) (-114)) 41)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)))
+((-2278 (((-112) (-224)) 10)))
+(((-298 |#1| |#2|) (-10 -7 (-15 -2278 ((-112) (-224)))) (-224) (-224)) (T -298))
+((-2278 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-112)) (-5 *1 (-298 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-10 -7 (-15 -2278 ((-112) (-224))))
+((-1763 (((-1148 (-224)) (-315 (-224)) (-639 (-1168)) (-1086 (-838 (-224)))) 92)) (-2748 (((-1148 (-224)) (-1256 (-315 (-224))) (-639 (-1168)) (-1086 (-838 (-224)))) 106) (((-1148 (-224)) (-315 (-224)) (-639 (-1168)) (-1086 (-838 (-224)))) 61)) (-3906 (((-639 (-1150)) (-1148 (-224))) NIL)) (-3837 (((-639 (-224)) (-315 (-224)) (-1168) (-1086 (-838 (-224)))) 58)) (-1293 (((-639 (-224)) (-947 (-406 (-562))) (-1168) (-1086 (-838 (-224)))) 49)) (-2793 (((-639 (-1150)) (-639 (-224))) NIL)) (-1516 (((-224) (-1086 (-838 (-224)))) 25)) (-3628 (((-224) (-1086 (-838 (-224)))) 26)) (-3135 (((-112) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 54)) (-1682 (((-1150) (-224)) NIL)))
+(((-299) (-10 -7 (-15 -1516 ((-224) (-1086 (-838 (-224))))) (-15 -3628 ((-224) (-1086 (-838 (-224))))) (-15 -3135 ((-112) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3837 ((-639 (-224)) (-315 (-224)) (-1168) (-1086 (-838 (-224))))) (-15 -1763 ((-1148 (-224)) (-315 (-224)) (-639 (-1168)) (-1086 (-838 (-224))))) (-15 -2748 ((-1148 (-224)) (-315 (-224)) (-639 (-1168)) (-1086 (-838 (-224))))) (-15 -2748 ((-1148 (-224)) (-1256 (-315 (-224))) (-639 (-1168)) (-1086 (-838 (-224))))) (-15 -1293 ((-639 (-224)) (-947 (-406 (-562))) (-1168) (-1086 (-838 (-224))))) (-15 -1682 ((-1150) (-224))) (-15 -2793 ((-639 (-1150)) (-639 (-224)))) (-15 -3906 ((-639 (-1150)) (-1148 (-224)))))) (T -299))
+((-3906 (*1 *2 *3) (-12 (-5 *3 (-1148 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-299)))) (-2793 (*1 *2 *3) (-12 (-5 *3 (-639 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-299)))) (-1682 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1150)) (-5 *1 (-299)))) (-1293 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-947 (-406 (-562)))) (-5 *4 (-1168)) (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-299)))) (-2748 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *4 (-639 (-1168))) (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-299)))) (-2748 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-315 (-224))) (-5 *4 (-639 (-1168))) (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-299)))) (-1763 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-315 (-224))) (-5 *4 (-639 (-1168))) (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-299)))) (-3837 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-315 (-224))) (-5 *4 (-1168)) (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-299)))) (-3135 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-112)) (-5 *1 (-299)))) (-3628 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-299)))) (-1516 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-299)))))
+(-10 -7 (-15 -1516 ((-224) (-1086 (-838 (-224))))) (-15 -3628 ((-224) (-1086 (-838 (-224))))) (-15 -3135 ((-112) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3837 ((-639 (-224)) (-315 (-224)) (-1168) (-1086 (-838 (-224))))) (-15 -1763 ((-1148 (-224)) (-315 (-224)) (-639 (-1168)) (-1086 (-838 (-224))))) (-15 -2748 ((-1148 (-224)) (-315 (-224)) (-639 (-1168)) (-1086 (-838 (-224))))) (-15 -2748 ((-1148 (-224)) (-1256 (-315 (-224))) (-639 (-1168)) (-1086 (-838 (-224))))) (-15 -1293 ((-639 (-224)) (-947 (-406 (-562))) (-1168) (-1086 (-838 (-224))))) (-15 -1682 ((-1150) (-224))) (-15 -2793 ((-639 (-1150)) (-639 (-224)))) (-15 -3906 ((-639 (-1150)) (-1148 (-224)))))
+((-1501 (((-639 (-608 $)) $) 30)) (-3164 (($ $ (-293 $)) 80) (($ $ (-639 (-293 $))) 122) (($ $ (-639 (-608 $)) (-639 $)) NIL)) (-4048 (((-3 (-608 $) "failed") $) 112)) (-3960 (((-608 $) $) 111)) (-2229 (($ $) 19) (($ (-639 $)) 55)) (-4364 (((-639 (-114)) $) 38)) (-1502 (((-114) (-114)) 90)) (-3152 (((-112) $) 130)) (-4152 (($ (-1 $ $) (-608 $)) 88)) (-4068 (((-3 (-608 $) "failed") $) 92)) (-4141 (($ (-114) $) 60) (($ (-114) (-639 $)) 99)) (-3115 (((-112) $ (-114)) 116) (((-112) $ (-1168)) 115)) (-3059 (((-766) $) 46)) (-1533 (((-112) $ $) 58) (((-112) $ (-1168)) 50)) (-2438 (((-112) $) 128)) (-1433 (($ $ (-608 $) $) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL) (($ $ (-639 (-293 $))) 120) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ $))) 83) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-1168) (-1 $ (-639 $))) 68) (($ $ (-1168) (-1 $ $)) 74) (($ $ (-639 (-114)) (-639 (-1 $ $))) 82) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) 84) (($ $ (-114) (-1 $ (-639 $))) 70) (($ $ (-114) (-1 $ $)) 76)) (-2343 (($ (-114) $) 61) (($ (-114) $ $) 62) (($ (-114) $ $ $) 63) (($ (-114) $ $ $ $) 64) (($ (-114) (-639 $)) 108)) (-3461 (($ $) 52) (($ $ $) 118)) (-2745 (($ $) 17) (($ (-639 $)) 54)) (-2036 (((-112) (-114)) 22)))
+(((-300 |#1|) (-10 -8 (-15 -3152 ((-112) |#1|)) (-15 -2438 ((-112) |#1|)) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| |#1|)))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| |#1|)))) (-15 -1533 ((-112) |#1| (-1168))) (-15 -1533 ((-112) |#1| |#1|)) (-15 -4152 (|#1| (-1 |#1| |#1|) (-608 |#1|))) (-15 -4141 (|#1| (-114) (-639 |#1|))) (-15 -4141 (|#1| (-114) |#1|)) (-15 -3115 ((-112) |#1| (-1168))) (-15 -3115 ((-112) |#1| (-114))) (-15 -2036 ((-112) (-114))) (-15 -1502 ((-114) (-114))) (-15 -4364 ((-639 (-114)) |#1|)) (-15 -1501 ((-639 (-608 |#1|)) |#1|)) (-15 -4068 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3059 ((-766) |#1|)) (-15 -3461 (|#1| |#1| |#1|)) (-15 -3461 (|#1| |#1|)) (-15 -2229 (|#1| (-639 |#1|))) (-15 -2229 (|#1| |#1|)) (-15 -2745 (|#1| (-639 |#1|))) (-15 -2745 (|#1| |#1|)) (-15 -3164 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -3164 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -3164 (|#1| |#1| (-293 |#1|))) (-15 -2343 (|#1| (-114) (-639 |#1|))) (-15 -2343 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -1433 (|#1| |#1| (-608 |#1|) |#1|)) (-15 -4048 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3960 ((-608 |#1|) |#1|))) (-301)) (T -300))
+((-1502 (*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-300 *3)) (-4 *3 (-301)))) (-2036 (*1 *2 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-300 *4)) (-4 *4 (-301)))))
+(-10 -8 (-15 -3152 ((-112) |#1|)) (-15 -2438 ((-112) |#1|)) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| |#1|)))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| |#1|)))) (-15 -1533 ((-112) |#1| (-1168))) (-15 -1533 ((-112) |#1| |#1|)) (-15 -4152 (|#1| (-1 |#1| |#1|) (-608 |#1|))) (-15 -4141 (|#1| (-114) (-639 |#1|))) (-15 -4141 (|#1| (-114) |#1|)) (-15 -3115 ((-112) |#1| (-1168))) (-15 -3115 ((-112) |#1| (-114))) (-15 -2036 ((-112) (-114))) (-15 -1502 ((-114) (-114))) (-15 -4364 ((-639 (-114)) |#1|)) (-15 -1501 ((-639 (-608 |#1|)) |#1|)) (-15 -4068 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3059 ((-766) |#1|)) (-15 -3461 (|#1| |#1| |#1|)) (-15 -3461 (|#1| |#1|)) (-15 -2229 (|#1| (-639 |#1|))) (-15 -2229 (|#1| |#1|)) (-15 -2745 (|#1| (-639 |#1|))) (-15 -2745 (|#1| |#1|)) (-15 -3164 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -3164 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -3164 (|#1| |#1| (-293 |#1|))) (-15 -2343 (|#1| (-114) (-639 |#1|))) (-15 -2343 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -1433 (|#1| |#1| (-608 |#1|) |#1|)) (-15 -4048 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3960 ((-608 |#1|) |#1|)))
+((-4041 (((-112) $ $) 7)) (-1501 (((-639 (-608 $)) $) 44)) (-3164 (($ $ (-293 $)) 56) (($ $ (-639 (-293 $))) 55) (($ $ (-639 (-608 $)) (-639 $)) 54)) (-4048 (((-3 (-608 $) "failed") $) 69)) (-3960 (((-608 $) $) 70)) (-2229 (($ $) 51) (($ (-639 $)) 50)) (-4364 (((-639 (-114)) $) 43)) (-1502 (((-114) (-114)) 42)) (-3152 (((-112) $) 22 (|has| $ (-1033 (-562))))) (-3476 (((-1164 $) (-608 $)) 25 (|has| $ (-1044)))) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-4152 (($ (-1 $ $) (-608 $)) 36)) (-4068 (((-3 (-608 $) "failed") $) 46)) (-3696 (((-1150) $) 9)) (-1582 (((-639 (-608 $)) $) 45)) (-4141 (($ (-114) $) 38) (($ (-114) (-639 $)) 37)) (-3115 (((-112) $ (-114)) 40) (((-112) $ (-1168)) 39)) (-3059 (((-766) $) 47)) (-1709 (((-1112) $) 10)) (-1533 (((-112) $ $) 35) (((-112) $ (-1168)) 34)) (-2438 (((-112) $) 23 (|has| $ (-1033 (-562))))) (-1433 (($ $ (-608 $) $) 67) (($ $ (-639 (-608 $)) (-639 $)) 66) (($ $ (-639 (-293 $))) 65) (($ $ (-293 $)) 64) (($ $ $ $) 63) (($ $ (-639 $) (-639 $)) 62) (($ $ (-639 (-1168)) (-639 (-1 $ $))) 33) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) 32) (($ $ (-1168) (-1 $ (-639 $))) 31) (($ $ (-1168) (-1 $ $)) 30) (($ $ (-639 (-114)) (-639 (-1 $ $))) 29) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) 28) (($ $ (-114) (-1 $ (-639 $))) 27) (($ $ (-114) (-1 $ $)) 26)) (-2343 (($ (-114) $) 61) (($ (-114) $ $) 60) (($ (-114) $ $ $) 59) (($ (-114) $ $ $ $) 58) (($ (-114) (-639 $)) 57)) (-3461 (($ $) 49) (($ $ $) 48)) (-3371 (($ $) 24 (|has| $ (-1044)))) (-4053 (((-857) $) 11) (($ (-608 $)) 68)) (-2745 (($ $) 53) (($ (-639 $)) 52)) (-2036 (((-112) (-114)) 41)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)))
(((-301) (-139)) (T -301))
-((-2343 (*1 *1 *2 *1) (-12 (-4 *1 (-301)) (-5 *2 (-114)))) (-2343 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-301)) (-5 *2 (-114)))) (-2343 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-301)) (-5 *2 (-114)))) (-2343 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-301)) (-5 *2 (-114)))) (-2343 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-639 *1)) (-4 *1 (-301)))) (-3165 (*1 *1 *1 *2) (-12 (-5 *2 (-293 *1)) (-4 *1 (-301)))) (-3165 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-293 *1))) (-4 *1 (-301)))) (-3165 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-608 *1))) (-5 *3 (-639 *1)) (-4 *1 (-301)))) (-2746 (*1 *1 *1) (-4 *1 (-301))) (-2746 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-301)))) (-1383 (*1 *1 *1) (-4 *1 (-301))) (-1383 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-301)))) (-3790 (*1 *1 *1) (-4 *1 (-301))) (-3790 (*1 *1 *1 *1) (-4 *1 (-301))) (-3060 (*1 *2 *1) (-12 (-4 *1 (-301)) (-5 *2 (-766)))) (-4367 (*1 *2 *1) (|partial| -12 (-5 *2 (-608 *1)) (-4 *1 (-301)))) (-1583 (*1 *2 *1) (-12 (-5 *2 (-639 (-608 *1))) (-4 *1 (-301)))) (-1495 (*1 *2 *1) (-12 (-5 *2 (-639 (-608 *1))) (-4 *1 (-301)))) (-3936 (*1 *2 *1) (-12 (-4 *1 (-301)) (-5 *2 (-639 (-114))))) (-2876 (*1 *2 *2) (-12 (-4 *1 (-301)) (-5 *2 (-114)))) (-2803 (*1 *2 *3) (-12 (-4 *1 (-301)) (-5 *3 (-114)) (-5 *2 (-112)))) (-1776 (*1 *2 *1 *3) (-12 (-4 *1 (-301)) (-5 *3 (-114)) (-5 *2 (-112)))) (-1776 (*1 *2 *1 *3) (-12 (-4 *1 (-301)) (-5 *3 (-1168)) (-5 *2 (-112)))) (-4141 (*1 *1 *2 *1) (-12 (-4 *1 (-301)) (-5 *2 (-114)))) (-4141 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-639 *1)) (-4 *1 (-301)))) (-4152 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-608 *1)) (-4 *1 (-301)))) (-4296 (*1 *2 *1 *1) (-12 (-4 *1 (-301)) (-5 *2 (-112)))) (-4296 (*1 *2 *1 *3) (-12 (-4 *1 (-301)) (-5 *3 (-1168)) (-5 *2 (-112)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-639 (-1 *1 *1))) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-639 (-1 *1 (-639 *1)))) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1 *1 (-639 *1))) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1 *1 *1)) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-114))) (-5 *3 (-639 (-1 *1 *1))) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-114))) (-5 *3 (-639 (-1 *1 (-639 *1)))) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 (-639 *1))) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 *1)) (-4 *1 (-301)))) (-1677 (*1 *2 *3) (-12 (-5 *3 (-608 *1)) (-4 *1 (-1044)) (-4 *1 (-301)) (-5 *2 (-1164 *1)))) (-2096 (*1 *1 *1) (-12 (-4 *1 (-1044)) (-4 *1 (-301)))) (-3803 (*1 *2 *1) (-12 (-4 *1 (-1033 (-562))) (-4 *1 (-301)) (-5 *2 (-112)))) (-3130 (*1 *2 *1) (-12 (-4 *1 (-1033 (-562))) (-4 *1 (-301)) (-5 *2 (-112)))))
-(-13 (-845) (-1033 (-608 $)) (-513 (-608 $) $) (-308 $) (-10 -8 (-15 -2343 ($ (-114) $)) (-15 -2343 ($ (-114) $ $)) (-15 -2343 ($ (-114) $ $ $)) (-15 -2343 ($ (-114) $ $ $ $)) (-15 -2343 ($ (-114) (-639 $))) (-15 -3165 ($ $ (-293 $))) (-15 -3165 ($ $ (-639 (-293 $)))) (-15 -3165 ($ $ (-639 (-608 $)) (-639 $))) (-15 -2746 ($ $)) (-15 -2746 ($ (-639 $))) (-15 -1383 ($ $)) (-15 -1383 ($ (-639 $))) (-15 -3790 ($ $)) (-15 -3790 ($ $ $)) (-15 -3060 ((-766) $)) (-15 -4367 ((-3 (-608 $) "failed") $)) (-15 -1583 ((-639 (-608 $)) $)) (-15 -1495 ((-639 (-608 $)) $)) (-15 -3936 ((-639 (-114)) $)) (-15 -2876 ((-114) (-114))) (-15 -2803 ((-112) (-114))) (-15 -1776 ((-112) $ (-114))) (-15 -1776 ((-112) $ (-1168))) (-15 -4141 ($ (-114) $)) (-15 -4141 ($ (-114) (-639 $))) (-15 -4152 ($ (-1 $ $) (-608 $))) (-15 -4296 ((-112) $ $)) (-15 -4296 ((-112) $ (-1168))) (-15 -1433 ($ $ (-639 (-1168)) (-639 (-1 $ $)))) (-15 -1433 ($ $ (-639 (-1168)) (-639 (-1 $ (-639 $))))) (-15 -1433 ($ $ (-1168) (-1 $ (-639 $)))) (-15 -1433 ($ $ (-1168) (-1 $ $))) (-15 -1433 ($ $ (-639 (-114)) (-639 (-1 $ $)))) (-15 -1433 ($ $ (-639 (-114)) (-639 (-1 $ (-639 $))))) (-15 -1433 ($ $ (-114) (-1 $ (-639 $)))) (-15 -1433 ($ $ (-114) (-1 $ $))) (IF (|has| $ (-1044)) (PROGN (-15 -1677 ((-1164 $) (-608 $))) (-15 -2096 ($ $))) |%noBranch|) (IF (|has| $ (-1033 (-562))) (PROGN (-15 -3803 ((-112) $)) (-15 -3130 ((-112) $))) |%noBranch|)))
+((-2343 (*1 *1 *2 *1) (-12 (-4 *1 (-301)) (-5 *2 (-114)))) (-2343 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-301)) (-5 *2 (-114)))) (-2343 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-301)) (-5 *2 (-114)))) (-2343 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-301)) (-5 *2 (-114)))) (-2343 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-639 *1)) (-4 *1 (-301)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 (-293 *1)) (-4 *1 (-301)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-293 *1))) (-4 *1 (-301)))) (-3164 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-608 *1))) (-5 *3 (-639 *1)) (-4 *1 (-301)))) (-2745 (*1 *1 *1) (-4 *1 (-301))) (-2745 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-301)))) (-2229 (*1 *1 *1) (-4 *1 (-301))) (-2229 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-301)))) (-3461 (*1 *1 *1) (-4 *1 (-301))) (-3461 (*1 *1 *1 *1) (-4 *1 (-301))) (-3059 (*1 *2 *1) (-12 (-4 *1 (-301)) (-5 *2 (-766)))) (-4068 (*1 *2 *1) (|partial| -12 (-5 *2 (-608 *1)) (-4 *1 (-301)))) (-1582 (*1 *2 *1) (-12 (-5 *2 (-639 (-608 *1))) (-4 *1 (-301)))) (-1501 (*1 *2 *1) (-12 (-5 *2 (-639 (-608 *1))) (-4 *1 (-301)))) (-4364 (*1 *2 *1) (-12 (-4 *1 (-301)) (-5 *2 (-639 (-114))))) (-1502 (*1 *2 *2) (-12 (-4 *1 (-301)) (-5 *2 (-114)))) (-2036 (*1 *2 *3) (-12 (-4 *1 (-301)) (-5 *3 (-114)) (-5 *2 (-112)))) (-3115 (*1 *2 *1 *3) (-12 (-4 *1 (-301)) (-5 *3 (-114)) (-5 *2 (-112)))) (-3115 (*1 *2 *1 *3) (-12 (-4 *1 (-301)) (-5 *3 (-1168)) (-5 *2 (-112)))) (-4141 (*1 *1 *2 *1) (-12 (-4 *1 (-301)) (-5 *2 (-114)))) (-4141 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-639 *1)) (-4 *1 (-301)))) (-4152 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-608 *1)) (-4 *1 (-301)))) (-1533 (*1 *2 *1 *1) (-12 (-4 *1 (-301)) (-5 *2 (-112)))) (-1533 (*1 *2 *1 *3) (-12 (-4 *1 (-301)) (-5 *3 (-1168)) (-5 *2 (-112)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-639 (-1 *1 *1))) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-639 (-1 *1 (-639 *1)))) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1 *1 (-639 *1))) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1 *1 *1)) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-114))) (-5 *3 (-639 (-1 *1 *1))) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-114))) (-5 *3 (-639 (-1 *1 (-639 *1)))) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 (-639 *1))) (-4 *1 (-301)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 *1)) (-4 *1 (-301)))) (-3476 (*1 *2 *3) (-12 (-5 *3 (-608 *1)) (-4 *1 (-1044)) (-4 *1 (-301)) (-5 *2 (-1164 *1)))) (-3371 (*1 *1 *1) (-12 (-4 *1 (-1044)) (-4 *1 (-301)))) (-2438 (*1 *2 *1) (-12 (-4 *1 (-1033 (-562))) (-4 *1 (-301)) (-5 *2 (-112)))) (-3152 (*1 *2 *1) (-12 (-4 *1 (-1033 (-562))) (-4 *1 (-301)) (-5 *2 (-112)))))
+(-13 (-845) (-1033 (-608 $)) (-513 (-608 $) $) (-308 $) (-10 -8 (-15 -2343 ($ (-114) $)) (-15 -2343 ($ (-114) $ $)) (-15 -2343 ($ (-114) $ $ $)) (-15 -2343 ($ (-114) $ $ $ $)) (-15 -2343 ($ (-114) (-639 $))) (-15 -3164 ($ $ (-293 $))) (-15 -3164 ($ $ (-639 (-293 $)))) (-15 -3164 ($ $ (-639 (-608 $)) (-639 $))) (-15 -2745 ($ $)) (-15 -2745 ($ (-639 $))) (-15 -2229 ($ $)) (-15 -2229 ($ (-639 $))) (-15 -3461 ($ $)) (-15 -3461 ($ $ $)) (-15 -3059 ((-766) $)) (-15 -4068 ((-3 (-608 $) "failed") $)) (-15 -1582 ((-639 (-608 $)) $)) (-15 -1501 ((-639 (-608 $)) $)) (-15 -4364 ((-639 (-114)) $)) (-15 -1502 ((-114) (-114))) (-15 -2036 ((-112) (-114))) (-15 -3115 ((-112) $ (-114))) (-15 -3115 ((-112) $ (-1168))) (-15 -4141 ($ (-114) $)) (-15 -4141 ($ (-114) (-639 $))) (-15 -4152 ($ (-1 $ $) (-608 $))) (-15 -1533 ((-112) $ $)) (-15 -1533 ((-112) $ (-1168))) (-15 -1433 ($ $ (-639 (-1168)) (-639 (-1 $ $)))) (-15 -1433 ($ $ (-639 (-1168)) (-639 (-1 $ (-639 $))))) (-15 -1433 ($ $ (-1168) (-1 $ (-639 $)))) (-15 -1433 ($ $ (-1168) (-1 $ $))) (-15 -1433 ($ $ (-639 (-114)) (-639 (-1 $ $)))) (-15 -1433 ($ $ (-639 (-114)) (-639 (-1 $ (-639 $))))) (-15 -1433 ($ $ (-114) (-1 $ (-639 $)))) (-15 -1433 ($ $ (-114) (-1 $ $))) (IF (|has| $ (-1044)) (PROGN (-15 -3476 ((-1164 $) (-608 $))) (-15 -3371 ($ $))) |%noBranch|) (IF (|has| $ (-1033 (-562))) (PROGN (-15 -2438 ((-112) $)) (-15 -3152 ((-112) $))) |%noBranch|)))
(((-102) . T) ((-612 #0=(-608 $)) . T) ((-609 (-857)) . T) ((-308 $) . T) ((-513 (-608 $) $) . T) ((-513 $ $) . T) ((-845) . T) ((-1033 #0#) . T) ((-1092) . T))
-((-2934 (((-639 |#1|) (-639 |#1|)) 10)))
-(((-302 |#1|) (-10 -7 (-15 -2934 ((-639 |#1|) (-639 |#1|)))) (-843)) (T -302))
-((-2934 (*1 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-843)) (-5 *1 (-302 *3)))))
-(-10 -7 (-15 -2934 ((-639 |#1|) (-639 |#1|))))
+((-3928 (((-639 |#1|) (-639 |#1|)) 10)))
+(((-302 |#1|) (-10 -7 (-15 -3928 ((-639 |#1|) (-639 |#1|)))) (-843)) (T -302))
+((-3928 (*1 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-843)) (-5 *1 (-302 *3)))))
+(-10 -7 (-15 -3928 ((-639 |#1|) (-639 |#1|))))
((-4152 (((-683 |#2|) (-1 |#2| |#1|) (-683 |#1|)) 17)))
(((-303 |#1| |#2|) (-10 -7 (-15 -4152 ((-683 |#2|) (-1 |#2| |#1|) (-683 |#1|)))) (-1044) (-1044)) (T -303))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-683 *5)) (-4 *5 (-1044)) (-4 *6 (-1044)) (-5 *2 (-683 *6)) (-5 *1 (-303 *5 *6)))))
(-10 -7 (-15 -4152 ((-683 |#2|) (-1 |#2| |#1|) (-683 |#1|))))
-((-2894 (((-1256 (-315 (-378))) (-1256 (-315 (-224)))) 105)) (-2023 (((-1086 (-838 (-224))) (-1086 (-838 (-378)))) 40)) (-2932 (((-639 (-1150)) (-1148 (-224))) 87)) (-2705 (((-315 (-378)) (-947 (-224))) 50)) (-1461 (((-224) (-947 (-224))) 46)) (-3804 (((-1150) (-378)) 169)) (-3434 (((-838 (-224)) (-838 (-378))) 34)) (-4284 (((-2 (|:| |additions| (-562)) (|:| |multiplications| (-562)) (|:| |exponentiations| (-562)) (|:| |functionCalls| (-562))) (-1256 (-315 (-224)))) 143)) (-2418 (((-1030) (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030)))) 181) (((-1030) (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))))) 179)) (-1545 (((-683 (-224)) (-639 (-224)) (-766)) 14)) (-3753 (((-1256 (-693)) (-639 (-224))) 94)) (-3843 (((-639 (-1150)) (-639 (-224))) 75)) (-3007 (((-3 (-315 (-224)) "failed") (-315 (-224))) 120)) (-3601 (((-112) (-224) (-1086 (-838 (-224)))) 109)) (-3902 (((-1030) (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))) 198)) (-2575 (((-224) (-1086 (-838 (-224)))) 107)) (-2300 (((-224) (-1086 (-838 (-224)))) 108)) (-1879 (((-224) (-406 (-562))) 27)) (-4180 (((-1150) (-378)) 73)) (-3213 (((-224) (-378)) 17)) (-2787 (((-378) (-1256 (-315 (-224)))) 154)) (-3731 (((-315 (-224)) (-315 (-378))) 23)) (-3188 (((-406 (-562)) (-315 (-224))) 53)) (-4063 (((-315 (-406 (-562))) (-315 (-224))) 69)) (-3321 (((-315 (-378)) (-315 (-224))) 98)) (-2842 (((-224) (-315 (-224))) 54)) (-4308 (((-639 (-224)) (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) 64)) (-2630 (((-1086 (-838 (-224))) (-1086 (-838 (-224)))) 61)) (-2590 (((-1150) (-224)) 72)) (-4070 (((-693) (-224)) 90)) (-1653 (((-406 (-562)) (-224)) 55)) (-3312 (((-315 (-378)) (-224)) 49)) (-4208 (((-639 (-1086 (-838 (-224)))) (-639 (-1086 (-838 (-378))))) 43)) (-2767 (((-1030) (-639 (-1030))) 165) (((-1030) (-1030) (-1030)) 162)) (-2201 (((-1030) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) 195)))
-(((-304) (-10 -7 (-15 -3213 ((-224) (-378))) (-15 -3731 ((-315 (-224)) (-315 (-378)))) (-15 -3434 ((-838 (-224)) (-838 (-378)))) (-15 -2023 ((-1086 (-838 (-224))) (-1086 (-838 (-378))))) (-15 -4208 ((-639 (-1086 (-838 (-224)))) (-639 (-1086 (-838 (-378)))))) (-15 -1653 ((-406 (-562)) (-224))) (-15 -3188 ((-406 (-562)) (-315 (-224)))) (-15 -2842 ((-224) (-315 (-224)))) (-15 -3007 ((-3 (-315 (-224)) "failed") (-315 (-224)))) (-15 -2787 ((-378) (-1256 (-315 (-224))))) (-15 -4284 ((-2 (|:| |additions| (-562)) (|:| |multiplications| (-562)) (|:| |exponentiations| (-562)) (|:| |functionCalls| (-562))) (-1256 (-315 (-224))))) (-15 -4063 ((-315 (-406 (-562))) (-315 (-224)))) (-15 -2630 ((-1086 (-838 (-224))) (-1086 (-838 (-224))))) (-15 -4308 ((-639 (-224)) (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))) (-15 -4070 ((-693) (-224))) (-15 -3753 ((-1256 (-693)) (-639 (-224)))) (-15 -3321 ((-315 (-378)) (-315 (-224)))) (-15 -2894 ((-1256 (-315 (-378))) (-1256 (-315 (-224))))) (-15 -3601 ((-112) (-224) (-1086 (-838 (-224))))) (-15 -2590 ((-1150) (-224))) (-15 -4180 ((-1150) (-378))) (-15 -3843 ((-639 (-1150)) (-639 (-224)))) (-15 -2932 ((-639 (-1150)) (-1148 (-224)))) (-15 -2575 ((-224) (-1086 (-838 (-224))))) (-15 -2300 ((-224) (-1086 (-838 (-224))))) (-15 -2767 ((-1030) (-1030) (-1030))) (-15 -2767 ((-1030) (-639 (-1030)))) (-15 -3804 ((-1150) (-378))) (-15 -2418 ((-1030) (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))))) (-15 -2418 ((-1030) (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))))) (-15 -2201 ((-1030) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))) (-15 -3902 ((-1030) (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))))) (-15 -2705 ((-315 (-378)) (-947 (-224)))) (-15 -1461 ((-224) (-947 (-224)))) (-15 -3312 ((-315 (-378)) (-224))) (-15 -1879 ((-224) (-406 (-562)))) (-15 -1545 ((-683 (-224)) (-639 (-224)) (-766))))) (T -304))
-((-1545 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-224))) (-5 *4 (-766)) (-5 *2 (-683 (-224))) (-5 *1 (-304)))) (-1879 (*1 *2 *3) (-12 (-5 *3 (-406 (-562))) (-5 *2 (-224)) (-5 *1 (-304)))) (-3312 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-315 (-378))) (-5 *1 (-304)))) (-1461 (*1 *2 *3) (-12 (-5 *3 (-947 (-224))) (-5 *2 (-224)) (-5 *1 (-304)))) (-2705 (*1 *2 *3) (-12 (-5 *3 (-947 (-224))) (-5 *2 (-315 (-378))) (-5 *1 (-304)))) (-3902 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))) (-5 *2 (-1030)) (-5 *1 (-304)))) (-2201 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *2 (-1030)) (-5 *1 (-304)))) (-2418 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030)))) (-5 *2 (-1030)) (-5 *1 (-304)))) (-2418 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *2 (-1030)) (-5 *1 (-304)))) (-3804 (*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1150)) (-5 *1 (-304)))) (-2767 (*1 *2 *3) (-12 (-5 *3 (-639 (-1030))) (-5 *2 (-1030)) (-5 *1 (-304)))) (-2767 (*1 *2 *2 *2) (-12 (-5 *2 (-1030)) (-5 *1 (-304)))) (-2300 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-304)))) (-2575 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-304)))) (-2932 (*1 *2 *3) (-12 (-5 *3 (-1148 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-304)))) (-3843 (*1 *2 *3) (-12 (-5 *3 (-639 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-304)))) (-4180 (*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1150)) (-5 *1 (-304)))) (-2590 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1150)) (-5 *1 (-304)))) (-3601 (*1 *2 *3 *4) (-12 (-5 *4 (-1086 (-838 (-224)))) (-5 *3 (-224)) (-5 *2 (-112)) (-5 *1 (-304)))) (-2894 (*1 *2 *3) (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *2 (-1256 (-315 (-378)))) (-5 *1 (-304)))) (-3321 (*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-315 (-378))) (-5 *1 (-304)))) (-3753 (*1 *2 *3) (-12 (-5 *3 (-639 (-224))) (-5 *2 (-1256 (-693))) (-5 *1 (-304)))) (-4070 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-693)) (-5 *1 (-304)))) (-4308 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-5 *2 (-639 (-224))) (-5 *1 (-304)))) (-2630 (*1 *2 *2) (-12 (-5 *2 (-1086 (-838 (-224)))) (-5 *1 (-304)))) (-4063 (*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-315 (-406 (-562)))) (-5 *1 (-304)))) (-4284 (*1 *2 *3) (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *2 (-2 (|:| |additions| (-562)) (|:| |multiplications| (-562)) (|:| |exponentiations| (-562)) (|:| |functionCalls| (-562)))) (-5 *1 (-304)))) (-2787 (*1 *2 *3) (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *2 (-378)) (-5 *1 (-304)))) (-3007 (*1 *2 *2) (|partial| -12 (-5 *2 (-315 (-224))) (-5 *1 (-304)))) (-2842 (*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-224)) (-5 *1 (-304)))) (-3188 (*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-406 (-562))) (-5 *1 (-304)))) (-1653 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-406 (-562))) (-5 *1 (-304)))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-639 (-1086 (-838 (-378))))) (-5 *2 (-639 (-1086 (-838 (-224))))) (-5 *1 (-304)))) (-2023 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-378)))) (-5 *2 (-1086 (-838 (-224)))) (-5 *1 (-304)))) (-3434 (*1 *2 *3) (-12 (-5 *3 (-838 (-378))) (-5 *2 (-838 (-224))) (-5 *1 (-304)))) (-3731 (*1 *2 *3) (-12 (-5 *3 (-315 (-378))) (-5 *2 (-315 (-224))) (-5 *1 (-304)))) (-3213 (*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-224)) (-5 *1 (-304)))))
-(-10 -7 (-15 -3213 ((-224) (-378))) (-15 -3731 ((-315 (-224)) (-315 (-378)))) (-15 -3434 ((-838 (-224)) (-838 (-378)))) (-15 -2023 ((-1086 (-838 (-224))) (-1086 (-838 (-378))))) (-15 -4208 ((-639 (-1086 (-838 (-224)))) (-639 (-1086 (-838 (-378)))))) (-15 -1653 ((-406 (-562)) (-224))) (-15 -3188 ((-406 (-562)) (-315 (-224)))) (-15 -2842 ((-224) (-315 (-224)))) (-15 -3007 ((-3 (-315 (-224)) "failed") (-315 (-224)))) (-15 -2787 ((-378) (-1256 (-315 (-224))))) (-15 -4284 ((-2 (|:| |additions| (-562)) (|:| |multiplications| (-562)) (|:| |exponentiations| (-562)) (|:| |functionCalls| (-562))) (-1256 (-315 (-224))))) (-15 -4063 ((-315 (-406 (-562))) (-315 (-224)))) (-15 -2630 ((-1086 (-838 (-224))) (-1086 (-838 (-224))))) (-15 -4308 ((-639 (-224)) (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))) (-15 -4070 ((-693) (-224))) (-15 -3753 ((-1256 (-693)) (-639 (-224)))) (-15 -3321 ((-315 (-378)) (-315 (-224)))) (-15 -2894 ((-1256 (-315 (-378))) (-1256 (-315 (-224))))) (-15 -3601 ((-112) (-224) (-1086 (-838 (-224))))) (-15 -2590 ((-1150) (-224))) (-15 -4180 ((-1150) (-378))) (-15 -3843 ((-639 (-1150)) (-639 (-224)))) (-15 -2932 ((-639 (-1150)) (-1148 (-224)))) (-15 -2575 ((-224) (-1086 (-838 (-224))))) (-15 -2300 ((-224) (-1086 (-838 (-224))))) (-15 -2767 ((-1030) (-1030) (-1030))) (-15 -2767 ((-1030) (-639 (-1030)))) (-15 -3804 ((-1150) (-378))) (-15 -2418 ((-1030) (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))))) (-15 -2418 ((-1030) (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))))) (-15 -2201 ((-1030) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))) (-15 -3902 ((-1030) (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))))) (-15 -2705 ((-315 (-378)) (-947 (-224)))) (-15 -1461 ((-224) (-947 (-224)))) (-15 -3312 ((-315 (-378)) (-224))) (-15 -1879 ((-224) (-406 (-562)))) (-15 -1545 ((-683 (-224)) (-639 (-224)) (-766))))
-((-2569 (((-112) $ $) 11)) (-1811 (($ $ $) 15)) (-1787 (($ $ $) 14)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 43)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 52)) (-1606 (($ $ $) 20) (($ (-639 $)) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 31) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 36)) (-1762 (((-3 $ "failed") $ $) 17)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 45)))
-(((-305 |#1|) (-10 -8 (-15 -1312 ((-3 (-639 |#1|) "failed") (-639 |#1|) |#1|)) (-15 -4102 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -4102 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3148 |#1|)) |#1| |#1|)) (-15 -1811 (|#1| |#1| |#1|)) (-15 -1787 (|#1| |#1| |#1|)) (-15 -2569 ((-112) |#1| |#1|)) (-15 -3870 ((-3 (-639 |#1|) "failed") (-639 |#1|) |#1|)) (-15 -2527 ((-2 (|:| -4221 (-639 |#1|)) (|:| -3148 |#1|)) (-639 |#1|))) (-15 -1606 (|#1| (-639 |#1|))) (-15 -1606 (|#1| |#1| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|))) (-306)) (T -305))
-NIL
-(-10 -8 (-15 -1312 ((-3 (-639 |#1|) "failed") (-639 |#1|) |#1|)) (-15 -4102 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -4102 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3148 |#1|)) |#1| |#1|)) (-15 -1811 (|#1| |#1| |#1|)) (-15 -1787 (|#1| |#1| |#1|)) (-15 -2569 ((-112) |#1| |#1|)) (-15 -3870 ((-3 (-639 |#1|) "failed") (-639 |#1|) |#1|)) (-15 -2527 ((-2 (|:| -4221 (-639 |#1|)) (|:| -3148 |#1|)) (-639 |#1|))) (-15 -1606 (|#1| (-639 |#1|))) (-15 -1606 (|#1| |#1| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-2569 (((-112) $ $) 60)) (-1800 (($) 17 T CONST)) (-1811 (($ $ $) 56)) (-3668 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-1957 (((-112) $) 31)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1577 (((-766) $) 59)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 58)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-1690 (((-1256 (-315 (-378))) (-1256 (-315 (-224)))) 105)) (-3813 (((-1086 (-838 (-224))) (-1086 (-838 (-378)))) 40)) (-3906 (((-639 (-1150)) (-1148 (-224))) 87)) (-3414 (((-315 (-378)) (-947 (-224))) 50)) (-2351 (((-224) (-947 (-224))) 46)) (-2448 (((-1150) (-378)) 169)) (-3020 (((-838 (-224)) (-838 (-378))) 34)) (-1374 (((-2 (|:| |additions| (-562)) (|:| |multiplications| (-562)) (|:| |exponentiations| (-562)) (|:| |functionCalls| (-562))) (-1256 (-315 (-224)))) 143)) (-2432 (((-1030) (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030)))) 181) (((-1030) (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))))) 179)) (-1767 (((-683 (-224)) (-639 (-224)) (-766)) 14)) (-3123 (((-1256 (-693)) (-639 (-224))) 94)) (-2793 (((-639 (-1150)) (-639 (-224))) 75)) (-3006 (((-3 (-315 (-224)) "failed") (-315 (-224))) 120)) (-2278 (((-112) (-224) (-1086 (-838 (-224)))) 109)) (-2219 (((-1030) (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))) 198)) (-1516 (((-224) (-1086 (-838 (-224)))) 107)) (-3628 (((-224) (-1086 (-838 (-224)))) 108)) (-1745 (((-224) (-406 (-562))) 27)) (-2876 (((-1150) (-378)) 73)) (-2771 (((-224) (-378)) 17)) (-1854 (((-378) (-1256 (-315 (-224)))) 154)) (-4167 (((-315 (-224)) (-315 (-378))) 23)) (-2548 (((-406 (-562)) (-315 (-224))) 53)) (-3060 (((-315 (-406 (-562))) (-315 (-224))) 69)) (-1314 (((-315 (-378)) (-315 (-224))) 98)) (-4243 (((-224) (-315 (-224))) 54)) (-1676 (((-639 (-224)) (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) 64)) (-3934 (((-1086 (-838 (-224))) (-1086 (-838 (-224)))) 61)) (-1682 (((-1150) (-224)) 72)) (-3118 (((-693) (-224)) 90)) (-1413 (((-406 (-562)) (-224)) 55)) (-4343 (((-315 (-378)) (-224)) 49)) (-4208 (((-639 (-1086 (-838 (-224)))) (-639 (-1086 (-838 (-378))))) 43)) (-2767 (((-1030) (-639 (-1030))) 165) (((-1030) (-1030) (-1030)) 162)) (-2110 (((-1030) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) 195)))
+(((-304) (-10 -7 (-15 -2771 ((-224) (-378))) (-15 -4167 ((-315 (-224)) (-315 (-378)))) (-15 -3020 ((-838 (-224)) (-838 (-378)))) (-15 -3813 ((-1086 (-838 (-224))) (-1086 (-838 (-378))))) (-15 -4208 ((-639 (-1086 (-838 (-224)))) (-639 (-1086 (-838 (-378)))))) (-15 -1413 ((-406 (-562)) (-224))) (-15 -2548 ((-406 (-562)) (-315 (-224)))) (-15 -4243 ((-224) (-315 (-224)))) (-15 -3006 ((-3 (-315 (-224)) "failed") (-315 (-224)))) (-15 -1854 ((-378) (-1256 (-315 (-224))))) (-15 -1374 ((-2 (|:| |additions| (-562)) (|:| |multiplications| (-562)) (|:| |exponentiations| (-562)) (|:| |functionCalls| (-562))) (-1256 (-315 (-224))))) (-15 -3060 ((-315 (-406 (-562))) (-315 (-224)))) (-15 -3934 ((-1086 (-838 (-224))) (-1086 (-838 (-224))))) (-15 -1676 ((-639 (-224)) (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))) (-15 -3118 ((-693) (-224))) (-15 -3123 ((-1256 (-693)) (-639 (-224)))) (-15 -1314 ((-315 (-378)) (-315 (-224)))) (-15 -1690 ((-1256 (-315 (-378))) (-1256 (-315 (-224))))) (-15 -2278 ((-112) (-224) (-1086 (-838 (-224))))) (-15 -1682 ((-1150) (-224))) (-15 -2876 ((-1150) (-378))) (-15 -2793 ((-639 (-1150)) (-639 (-224)))) (-15 -3906 ((-639 (-1150)) (-1148 (-224)))) (-15 -1516 ((-224) (-1086 (-838 (-224))))) (-15 -3628 ((-224) (-1086 (-838 (-224))))) (-15 -2767 ((-1030) (-1030) (-1030))) (-15 -2767 ((-1030) (-639 (-1030)))) (-15 -2448 ((-1150) (-378))) (-15 -2432 ((-1030) (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))))) (-15 -2432 ((-1030) (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))))) (-15 -2110 ((-1030) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))) (-15 -2219 ((-1030) (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))))) (-15 -3414 ((-315 (-378)) (-947 (-224)))) (-15 -2351 ((-224) (-947 (-224)))) (-15 -4343 ((-315 (-378)) (-224))) (-15 -1745 ((-224) (-406 (-562)))) (-15 -1767 ((-683 (-224)) (-639 (-224)) (-766))))) (T -304))
+((-1767 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-224))) (-5 *4 (-766)) (-5 *2 (-683 (-224))) (-5 *1 (-304)))) (-1745 (*1 *2 *3) (-12 (-5 *3 (-406 (-562))) (-5 *2 (-224)) (-5 *1 (-304)))) (-4343 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-315 (-378))) (-5 *1 (-304)))) (-2351 (*1 *2 *3) (-12 (-5 *3 (-947 (-224))) (-5 *2 (-224)) (-5 *1 (-304)))) (-3414 (*1 *2 *3) (-12 (-5 *3 (-947 (-224))) (-5 *2 (-315 (-378))) (-5 *1 (-304)))) (-2219 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))) (-5 *2 (-1030)) (-5 *1 (-304)))) (-2110 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *2 (-1030)) (-5 *1 (-304)))) (-2432 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030)))) (-5 *2 (-1030)) (-5 *1 (-304)))) (-2432 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *2 (-1030)) (-5 *1 (-304)))) (-2448 (*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1150)) (-5 *1 (-304)))) (-2767 (*1 *2 *3) (-12 (-5 *3 (-639 (-1030))) (-5 *2 (-1030)) (-5 *1 (-304)))) (-2767 (*1 *2 *2 *2) (-12 (-5 *2 (-1030)) (-5 *1 (-304)))) (-3628 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-304)))) (-1516 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-304)))) (-3906 (*1 *2 *3) (-12 (-5 *3 (-1148 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-304)))) (-2793 (*1 *2 *3) (-12 (-5 *3 (-639 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-304)))) (-2876 (*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1150)) (-5 *1 (-304)))) (-1682 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1150)) (-5 *1 (-304)))) (-2278 (*1 *2 *3 *4) (-12 (-5 *4 (-1086 (-838 (-224)))) (-5 *3 (-224)) (-5 *2 (-112)) (-5 *1 (-304)))) (-1690 (*1 *2 *3) (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *2 (-1256 (-315 (-378)))) (-5 *1 (-304)))) (-1314 (*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-315 (-378))) (-5 *1 (-304)))) (-3123 (*1 *2 *3) (-12 (-5 *3 (-639 (-224))) (-5 *2 (-1256 (-693))) (-5 *1 (-304)))) (-3118 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-693)) (-5 *1 (-304)))) (-1676 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-5 *2 (-639 (-224))) (-5 *1 (-304)))) (-3934 (*1 *2 *2) (-12 (-5 *2 (-1086 (-838 (-224)))) (-5 *1 (-304)))) (-3060 (*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-315 (-406 (-562)))) (-5 *1 (-304)))) (-1374 (*1 *2 *3) (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *2 (-2 (|:| |additions| (-562)) (|:| |multiplications| (-562)) (|:| |exponentiations| (-562)) (|:| |functionCalls| (-562)))) (-5 *1 (-304)))) (-1854 (*1 *2 *3) (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *2 (-378)) (-5 *1 (-304)))) (-3006 (*1 *2 *2) (|partial| -12 (-5 *2 (-315 (-224))) (-5 *1 (-304)))) (-4243 (*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-224)) (-5 *1 (-304)))) (-2548 (*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-406 (-562))) (-5 *1 (-304)))) (-1413 (*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-406 (-562))) (-5 *1 (-304)))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-639 (-1086 (-838 (-378))))) (-5 *2 (-639 (-1086 (-838 (-224))))) (-5 *1 (-304)))) (-3813 (*1 *2 *3) (-12 (-5 *3 (-1086 (-838 (-378)))) (-5 *2 (-1086 (-838 (-224)))) (-5 *1 (-304)))) (-3020 (*1 *2 *3) (-12 (-5 *3 (-838 (-378))) (-5 *2 (-838 (-224))) (-5 *1 (-304)))) (-4167 (*1 *2 *3) (-12 (-5 *3 (-315 (-378))) (-5 *2 (-315 (-224))) (-5 *1 (-304)))) (-2771 (*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-224)) (-5 *1 (-304)))))
+(-10 -7 (-15 -2771 ((-224) (-378))) (-15 -4167 ((-315 (-224)) (-315 (-378)))) (-15 -3020 ((-838 (-224)) (-838 (-378)))) (-15 -3813 ((-1086 (-838 (-224))) (-1086 (-838 (-378))))) (-15 -4208 ((-639 (-1086 (-838 (-224)))) (-639 (-1086 (-838 (-378)))))) (-15 -1413 ((-406 (-562)) (-224))) (-15 -2548 ((-406 (-562)) (-315 (-224)))) (-15 -4243 ((-224) (-315 (-224)))) (-15 -3006 ((-3 (-315 (-224)) "failed") (-315 (-224)))) (-15 -1854 ((-378) (-1256 (-315 (-224))))) (-15 -1374 ((-2 (|:| |additions| (-562)) (|:| |multiplications| (-562)) (|:| |exponentiations| (-562)) (|:| |functionCalls| (-562))) (-1256 (-315 (-224))))) (-15 -3060 ((-315 (-406 (-562))) (-315 (-224)))) (-15 -3934 ((-1086 (-838 (-224))) (-1086 (-838 (-224))))) (-15 -1676 ((-639 (-224)) (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))) (-15 -3118 ((-693) (-224))) (-15 -3123 ((-1256 (-693)) (-639 (-224)))) (-15 -1314 ((-315 (-378)) (-315 (-224)))) (-15 -1690 ((-1256 (-315 (-378))) (-1256 (-315 (-224))))) (-15 -2278 ((-112) (-224) (-1086 (-838 (-224))))) (-15 -1682 ((-1150) (-224))) (-15 -2876 ((-1150) (-378))) (-15 -2793 ((-639 (-1150)) (-639 (-224)))) (-15 -3906 ((-639 (-1150)) (-1148 (-224)))) (-15 -1516 ((-224) (-1086 (-838 (-224))))) (-15 -3628 ((-224) (-1086 (-838 (-224))))) (-15 -2767 ((-1030) (-1030) (-1030))) (-15 -2767 ((-1030) (-639 (-1030)))) (-15 -2448 ((-1150) (-378))) (-15 -2432 ((-1030) (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))))) (-15 -2432 ((-1030) (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))))) (-15 -2110 ((-1030) (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))) (-15 -2219 ((-1030) (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))))) (-15 -3414 ((-315 (-378)) (-947 (-224)))) (-15 -2351 ((-224) (-947 (-224)))) (-15 -4343 ((-315 (-378)) (-224))) (-15 -1745 ((-224) (-406 (-562)))) (-15 -1767 ((-683 (-224)) (-639 (-224)) (-766))))
+((-1436 (((-112) $ $) 11)) (-1810 (($ $ $) 15)) (-1787 (($ $ $) 14)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 43)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 52)) (-1606 (($ $ $) 20) (($ (-639 $)) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 31) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 36)) (-1762 (((-3 $ "failed") $ $) 17)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 45)))
+(((-305 |#1|) (-10 -8 (-15 -1719 ((-3 (-639 |#1|) "failed") (-639 |#1|) |#1|)) (-15 -3399 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -3399 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3147 |#1|)) |#1| |#1|)) (-15 -1810 (|#1| |#1| |#1|)) (-15 -1787 (|#1| |#1| |#1|)) (-15 -1436 ((-112) |#1| |#1|)) (-15 -1879 ((-3 (-639 |#1|) "failed") (-639 |#1|) |#1|)) (-15 -2288 ((-2 (|:| -4221 (-639 |#1|)) (|:| -3147 |#1|)) (-639 |#1|))) (-15 -1606 (|#1| (-639 |#1|))) (-15 -1606 (|#1| |#1| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|))) (-306)) (T -305))
+NIL
+(-10 -8 (-15 -1719 ((-3 (-639 |#1|) "failed") (-639 |#1|) |#1|)) (-15 -3399 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -3399 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3147 |#1|)) |#1| |#1|)) (-15 -1810 (|#1| |#1| |#1|)) (-15 -1787 (|#1| |#1| |#1|)) (-15 -1436 ((-112) |#1| |#1|)) (-15 -1879 ((-3 (-639 |#1|) "failed") (-639 |#1|) |#1|)) (-15 -2288 ((-2 (|:| -4221 (-639 |#1|)) (|:| -3147 |#1|)) (-639 |#1|))) (-15 -1606 (|#1| (-639 |#1|))) (-15 -1606 (|#1| |#1| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-1436 (((-112) $ $) 60)) (-3329 (($) 17 T CONST)) (-1810 (($ $ $) 56)) (-1694 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-4367 (((-112) $) 31)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-2044 (((-766) $) 59)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 58)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-306) (-139)) (T -306))
-((-2569 (*1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-112)))) (-1577 (*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-766)))) (-2080 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-306)))) (-1787 (*1 *1 *1 *1) (-4 *1 (-306))) (-1811 (*1 *1 *1 *1) (-4 *1 (-306))) (-4102 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3148 *1))) (-4 *1 (-306)))) (-4102 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-306)))) (-1312 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-639 *1)) (-4 *1 (-306)))))
-(-13 (-915) (-10 -8 (-15 -2569 ((-112) $ $)) (-15 -1577 ((-766) $)) (-15 -2080 ((-2 (|:| -2097 $) (|:| -2264 $)) $ $)) (-15 -1787 ($ $ $)) (-15 -1811 ($ $ $)) (-15 -4102 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $)) (-15 -4102 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -1312 ((-3 (-639 $) "failed") (-639 $) $))))
+((-1436 (*1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-112)))) (-2044 (*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-766)))) (-3204 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-306)))) (-1787 (*1 *1 *1 *1) (-4 *1 (-306))) (-1810 (*1 *1 *1 *1) (-4 *1 (-306))) (-3399 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3147 *1))) (-4 *1 (-306)))) (-3399 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-306)))) (-1719 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-639 *1)) (-4 *1 (-306)))))
+(-13 (-915) (-10 -8 (-15 -1436 ((-112) $ $)) (-15 -2044 ((-766) $)) (-15 -3204 ((-2 (|:| -3380 $) (|:| -1441 $)) $ $)) (-15 -1787 ($ $ $)) (-15 -1810 ($ $ $)) (-15 -3399 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $)) (-15 -3399 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -1719 ((-3 (-639 $) "failed") (-639 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-289) . T) ((-451) . T) ((-554) . T) ((-642 $) . T) ((-712 $) . T) ((-721) . T) ((-915) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
((-1433 (($ $ (-639 |#2|) (-639 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-293 |#2|)) 11) (($ $ (-639 (-293 |#2|))) NIL)))
(((-307 |#1| |#2|) (-10 -8 (-15 -1433 (|#1| |#1| (-639 (-293 |#2|)))) (-15 -1433 (|#1| |#1| (-293 |#2|))) (-15 -1433 (|#1| |#1| |#2| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#2|) (-639 |#2|)))) (-308 |#2|) (-1092)) (T -307))
@@ -1211,114 +1211,114 @@ NIL
(((-309 |#1|) (-10 -7 (-15 -1433 (|#1| (-1 |#1| (-562)) (-1170 (-406 (-562)))))) (-38 (-406 (-562)))) (T -309))
((-1433 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-562))) (-5 *4 (-1170 (-406 (-562)))) (-5 *1 (-309 *2)) (-4 *2 (-38 (-406 (-562)))))))
(-10 -7 (-15 -1433 (|#1| (-1 |#1| (-562)) (-1170 (-406 (-562))))))
-((-4041 (((-112) $ $) NIL)) (-3328 (((-562) $) 12)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1743 (((-1127) $) 9)) (-4054 (((-857) $) 21) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-310) (-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $)) (-15 -3328 ((-562) $))))) (T -310))
-((-1743 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-310)))) (-3328 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-310)))))
-(-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $)) (-15 -3328 ((-562) $))))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 7)) (-1731 (((-112) $ $) 9)))
+((-4041 (((-112) $ $) NIL)) (-3327 (((-562) $) 12)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1743 (((-1127) $) 9)) (-4053 (((-857) $) 21) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-310) (-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $)) (-15 -3327 ((-562) $))))) (T -310))
+((-1743 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-310)))) (-3327 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-310)))))
+(-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $)) (-15 -3327 ((-562) $))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 7)) (-1733 (((-112) $ $) 9)))
(((-311) (-1092)) (T -311))
NIL
(-1092)
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 62)) (-4246 (((-1242 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-306)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-904)))) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-904)))) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-815)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-1242 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-562)))) (((-3 (-1241 |#2| |#3| |#4|) "failed") $) 25)) (-3961 (((-1242 |#1| |#2| |#3| |#4|) $) NIL) (((-1168) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-562)))) (((-562) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-562)))) (((-1241 |#2| |#3| |#4|) $) NIL)) (-1811 (($ $ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-1242 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1256 (-1242 |#1| |#2| |#3| |#4|)))) (-683 $) (-1256 $)) NIL) (((-683 (-1242 |#1| |#2| |#3| |#4|)) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-544)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3519 (((-112) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-815)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-881 (-378))))) (-1957 (((-112) $) NIL)) (-3425 (($ $) NIL)) (-4065 (((-1242 |#1| |#2| |#3| |#4|) $) 21)) (-3699 (((-3 $ "failed") $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1143)))) (-3392 (((-112) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-815)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-845)))) (-2993 (($ $ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-845)))) (-4152 (($ (-1 (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|)) $) NIL)) (-2332 (((-3 (-838 |#2|) "failed") $) 78)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2736 (($ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-306)))) (-4014 (((-1242 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-544)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-904)))) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-1242 |#1| |#2| |#3| |#4|)) (-639 (-1242 |#1| |#2| |#3| |#4|))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-308 (-1242 |#1| |#2| |#3| |#4|)))) (($ $ (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-308 (-1242 |#1| |#2| |#3| |#4|)))) (($ $ (-293 (-1242 |#1| |#2| |#3| |#4|))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-308 (-1242 |#1| |#2| |#3| |#4|)))) (($ $ (-639 (-293 (-1242 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-308 (-1242 |#1| |#2| |#3| |#4|)))) (($ $ (-639 (-1168)) (-639 (-1242 |#1| |#2| |#3| |#4|))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-513 (-1168) (-1242 |#1| |#2| |#3| |#4|)))) (($ $ (-1168) (-1242 |#1| |#2| |#3| |#4|)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-513 (-1168) (-1242 |#1| |#2| |#3| |#4|))))) (-1577 (((-766) $) NIL)) (-2343 (($ $ (-1242 |#1| |#2| |#3| |#4|)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-285 (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|))))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-232))) (($ $ (-766)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-232))) (($ $ (-1168)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-1 (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|)) (-766)) NIL) (($ $ (-1 (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|))) NIL)) (-3658 (($ $) NIL)) (-4076 (((-1242 |#1| |#2| |#3| |#4|) $) 17)) (-4208 (((-887 (-562)) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-610 (-535)))) (((-378) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1017))) (((-224) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1017)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-1242 |#1| |#2| |#3| |#4|) (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-1242 |#1| |#2| |#3| |#4|)) 29) (($ (-1168)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-1168)))) (($ (-1241 |#2| |#3| |#4|)) 36)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-1242 |#1| |#2| |#3| |#4|) (-904))) (|has| (-1242 |#1| |#2| |#3| |#4|) (-144))))) (-2579 (((-766)) NIL)) (-2604 (((-1242 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-544)))) (-2922 (((-112) $ $) NIL)) (-3526 (($ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-815)))) (-2286 (($) 41 T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-232))) (($ $ (-766)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-232))) (($ $ (-1168)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-1 (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|)) (-766)) NIL) (($ $ (-1 (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-845)))) (-1772 (((-112) $ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-845)))) (-1759 (((-112) $ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-845)))) (-1859 (($ $ $) 34) (($ (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|)) 31)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-1242 |#1| |#2| |#3| |#4|) $) 30) (($ $ (-1242 |#1| |#2| |#3| |#4|)) NIL)))
-(((-312 |#1| |#2| |#3| |#4|) (-13 (-987 (-1242 |#1| |#2| |#3| |#4|)) (-1033 (-1241 |#2| |#3| |#4|)) (-10 -8 (-15 -2332 ((-3 (-838 |#2|) "failed") $)) (-15 -4054 ($ (-1241 |#2| |#3| |#4|))))) (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451)) (-13 (-27) (-1192) (-429 |#1|)) (-1168) |#2|) (T -312))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1241 *4 *5 *6)) (-4 *4 (-13 (-27) (-1192) (-429 *3))) (-14 *5 (-1168)) (-14 *6 *4) (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451))) (-5 *1 (-312 *3 *4 *5 *6)))) (-2332 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451))) (-5 *2 (-838 *4)) (-5 *1 (-312 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1192) (-429 *3))) (-14 *5 (-1168)) (-14 *6 *4))))
-(-13 (-987 (-1242 |#1| |#2| |#3| |#4|)) (-1033 (-1241 |#2| |#3| |#4|)) (-10 -8 (-15 -2332 ((-3 (-838 |#2|) "failed") $)) (-15 -4054 ($ (-1241 |#2| |#3| |#4|)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 62)) (-2300 (((-1242 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-306)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-904)))) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-904)))) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-815)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-1242 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-562)))) (((-3 (-1241 |#2| |#3| |#4|) "failed") $) 25)) (-3960 (((-1242 |#1| |#2| |#3| |#4|) $) NIL) (((-1168) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-562)))) (((-562) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-562)))) (((-1241 |#2| |#3| |#4|) $) NIL)) (-1810 (($ $ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-1242 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1256 (-1242 |#1| |#2| |#3| |#4|)))) (-683 $) (-1256 $)) NIL) (((-683 (-1242 |#1| |#2| |#3| |#4|)) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-544)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2696 (((-112) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-815)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-881 (-378))))) (-4367 (((-112) $) NIL)) (-2957 (($ $) NIL)) (-4063 (((-1242 |#1| |#2| |#3| |#4|) $) 21)) (-3828 (((-3 $ "failed") $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1143)))) (-3855 (((-112) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-815)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-845)))) (-2993 (($ $ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-845)))) (-4152 (($ (-1 (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|)) $) NIL)) (-3961 (((-3 (-838 |#2|) "failed") $) 78)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2561 (($ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-306)))) (-3870 (((-1242 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-544)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-904)))) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-1242 |#1| |#2| |#3| |#4|)) (-639 (-1242 |#1| |#2| |#3| |#4|))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-308 (-1242 |#1| |#2| |#3| |#4|)))) (($ $ (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-308 (-1242 |#1| |#2| |#3| |#4|)))) (($ $ (-293 (-1242 |#1| |#2| |#3| |#4|))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-308 (-1242 |#1| |#2| |#3| |#4|)))) (($ $ (-639 (-293 (-1242 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-308 (-1242 |#1| |#2| |#3| |#4|)))) (($ $ (-639 (-1168)) (-639 (-1242 |#1| |#2| |#3| |#4|))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-513 (-1168) (-1242 |#1| |#2| |#3| |#4|)))) (($ $ (-1168) (-1242 |#1| |#2| |#3| |#4|)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-513 (-1168) (-1242 |#1| |#2| |#3| |#4|))))) (-2044 (((-766) $) NIL)) (-2343 (($ $ (-1242 |#1| |#2| |#3| |#4|)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-285 (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|))))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-232))) (($ $ (-766)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-232))) (($ $ (-1168)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-1 (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|)) (-766)) NIL) (($ $ (-1 (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|))) NIL)) (-1580 (($ $) NIL)) (-4079 (((-1242 |#1| |#2| |#3| |#4|) $) 17)) (-4208 (((-887 (-562)) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-610 (-535)))) (((-378) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1017))) (((-224) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1017)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-1242 |#1| |#2| |#3| |#4|) (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-1242 |#1| |#2| |#3| |#4|)) 29) (($ (-1168)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-1033 (-1168)))) (($ (-1241 |#2| |#3| |#4|)) 36)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-1242 |#1| |#2| |#3| |#4|) (-904))) (|has| (-1242 |#1| |#2| |#3| |#4|) (-144))))) (-1568 (((-766)) NIL)) (-3636 (((-1242 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-544)))) (-3799 (((-112) $ $) NIL)) (-2757 (($ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-815)))) (-2285 (($) 41 T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-232))) (($ $ (-766)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-232))) (($ $ (-1168)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-895 (-1168)))) (($ $ (-1 (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|)) (-766)) NIL) (($ $ (-1 (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-845)))) (-1771 (((-112) $ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-845)))) (-1761 (((-112) $ $) NIL (|has| (-1242 |#1| |#2| |#3| |#4|) (-845)))) (-1859 (($ $ $) 34) (($ (-1242 |#1| |#2| |#3| |#4|) (-1242 |#1| |#2| |#3| |#4|)) 31)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-1242 |#1| |#2| |#3| |#4|) $) 30) (($ $ (-1242 |#1| |#2| |#3| |#4|)) NIL)))
+(((-312 |#1| |#2| |#3| |#4|) (-13 (-987 (-1242 |#1| |#2| |#3| |#4|)) (-1033 (-1241 |#2| |#3| |#4|)) (-10 -8 (-15 -3961 ((-3 (-838 |#2|) "failed") $)) (-15 -4053 ($ (-1241 |#2| |#3| |#4|))))) (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451)) (-13 (-27) (-1192) (-429 |#1|)) (-1168) |#2|) (T -312))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1241 *4 *5 *6)) (-4 *4 (-13 (-27) (-1192) (-429 *3))) (-14 *5 (-1168)) (-14 *6 *4) (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451))) (-5 *1 (-312 *3 *4 *5 *6)))) (-3961 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451))) (-5 *2 (-838 *4)) (-5 *1 (-312 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1192) (-429 *3))) (-14 *5 (-1168)) (-14 *6 *4))))
+(-13 (-987 (-1242 |#1| |#2| |#3| |#4|)) (-1033 (-1241 |#2| |#3| |#4|)) (-10 -8 (-15 -3961 ((-3 (-838 |#2|) "failed") $)) (-15 -4053 ($ (-1241 |#2| |#3| |#4|)))))
((-4152 (((-315 |#2|) (-1 |#2| |#1|) (-315 |#1|)) 13)))
(((-313 |#1| |#2|) (-10 -7 (-15 -4152 ((-315 |#2|) (-1 |#2| |#1|) (-315 |#1|)))) (-845) (-845)) (T -313))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-315 *5)) (-4 *5 (-845)) (-4 *6 (-845)) (-5 *2 (-315 *6)) (-5 *1 (-313 *5 *6)))))
(-10 -7 (-15 -4152 ((-315 |#2|) (-1 |#2| |#1|) (-315 |#1|))))
-((-1469 (((-52) |#2| (-293 |#2|) (-766)) 33) (((-52) |#2| (-293 |#2|)) 24) (((-52) |#2| (-766)) 28) (((-52) |#2|) 25) (((-52) (-1168)) 21)) (-1503 (((-52) |#2| (-293 |#2|) (-406 (-562))) 51) (((-52) |#2| (-293 |#2|)) 48) (((-52) |#2| (-406 (-562))) 50) (((-52) |#2|) 49) (((-52) (-1168)) 47)) (-1499 (((-52) |#2| (-293 |#2|) (-406 (-562))) 46) (((-52) |#2| (-293 |#2|)) 43) (((-52) |#2| (-406 (-562))) 45) (((-52) |#2|) 44) (((-52) (-1168)) 42)) (-1485 (((-52) |#2| (-293 |#2|) (-562)) 39) (((-52) |#2| (-293 |#2|)) 35) (((-52) |#2| (-562)) 38) (((-52) |#2|) 36) (((-52) (-1168)) 34)))
-(((-314 |#1| |#2|) (-10 -7 (-15 -1469 ((-52) (-1168))) (-15 -1469 ((-52) |#2|)) (-15 -1469 ((-52) |#2| (-766))) (-15 -1469 ((-52) |#2| (-293 |#2|))) (-15 -1469 ((-52) |#2| (-293 |#2|) (-766))) (-15 -1485 ((-52) (-1168))) (-15 -1485 ((-52) |#2|)) (-15 -1485 ((-52) |#2| (-562))) (-15 -1485 ((-52) |#2| (-293 |#2|))) (-15 -1485 ((-52) |#2| (-293 |#2|) (-562))) (-15 -1499 ((-52) (-1168))) (-15 -1499 ((-52) |#2|)) (-15 -1499 ((-52) |#2| (-406 (-562)))) (-15 -1499 ((-52) |#2| (-293 |#2|))) (-15 -1499 ((-52) |#2| (-293 |#2|) (-406 (-562)))) (-15 -1503 ((-52) (-1168))) (-15 -1503 ((-52) |#2|)) (-15 -1503 ((-52) |#2| (-406 (-562)))) (-15 -1503 ((-52) |#2| (-293 |#2|))) (-15 -1503 ((-52) |#2| (-293 |#2|) (-406 (-562))))) (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -314))
-((-1503 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-293 *3)) (-5 *5 (-406 (-562))) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *6 *3)))) (-1503 (*1 *2 *3 *4) (-12 (-5 *4 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)))) (-1503 (*1 *2 *3 *4) (-12 (-5 *4 (-406 (-562))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-1503 (*1 *2 *3) (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))) (-1503 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *5)) (-4 *5 (-13 (-27) (-1192) (-429 *4))))) (-1499 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-293 *3)) (-5 *5 (-406 (-562))) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *6 *3)))) (-1499 (*1 *2 *3 *4) (-12 (-5 *4 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)))) (-1499 (*1 *2 *3 *4) (-12 (-5 *4 (-406 (-562))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-1499 (*1 *2 *3) (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))) (-1499 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *5)) (-4 *5 (-13 (-27) (-1192) (-429 *4))))) (-1485 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-451) (-845) (-1033 *5) (-635 *5))) (-5 *5 (-562)) (-5 *2 (-52)) (-5 *1 (-314 *6 *3)))) (-1485 (*1 *2 *3 *4) (-12 (-5 *4 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)))) (-1485 (*1 *2 *3 *4) (-12 (-5 *4 (-562)) (-4 *5 (-13 (-451) (-845) (-1033 *4) (-635 *4))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-1485 (*1 *2 *3) (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))) (-1485 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *5)) (-4 *5 (-13 (-27) (-1192) (-429 *4))))) (-1469 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-293 *3)) (-5 *5 (-766)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *6 *3)))) (-1469 (*1 *2 *3 *4) (-12 (-5 *4 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)))) (-1469 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-1469 (*1 *2 *3) (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))) (-1469 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *5)) (-4 *5 (-13 (-27) (-1192) (-429 *4))))))
-(-10 -7 (-15 -1469 ((-52) (-1168))) (-15 -1469 ((-52) |#2|)) (-15 -1469 ((-52) |#2| (-766))) (-15 -1469 ((-52) |#2| (-293 |#2|))) (-15 -1469 ((-52) |#2| (-293 |#2|) (-766))) (-15 -1485 ((-52) (-1168))) (-15 -1485 ((-52) |#2|)) (-15 -1485 ((-52) |#2| (-562))) (-15 -1485 ((-52) |#2| (-293 |#2|))) (-15 -1485 ((-52) |#2| (-293 |#2|) (-562))) (-15 -1499 ((-52) (-1168))) (-15 -1499 ((-52) |#2|)) (-15 -1499 ((-52) |#2| (-406 (-562)))) (-15 -1499 ((-52) |#2| (-293 |#2|))) (-15 -1499 ((-52) |#2| (-293 |#2|) (-406 (-562)))) (-15 -1503 ((-52) (-1168))) (-15 -1503 ((-52) |#2|)) (-15 -1503 ((-52) |#2| (-406 (-562)))) (-15 -1503 ((-52) |#2| (-293 |#2|))) (-15 -1503 ((-52) |#2| (-293 |#2|) (-406 (-562)))))
-((-4041 (((-112) $ $) NIL)) (-1404 (((-639 $) $ (-1168)) NIL (|has| |#1| (-554))) (((-639 $) $) NIL (|has| |#1| (-554))) (((-639 $) (-1164 $) (-1168)) NIL (|has| |#1| (-554))) (((-639 $) (-1164 $)) NIL (|has| |#1| (-554))) (((-639 $) (-947 $)) NIL (|has| |#1| (-554)))) (-1821 (($ $ (-1168)) NIL (|has| |#1| (-554))) (($ $) NIL (|has| |#1| (-554))) (($ (-1164 $) (-1168)) NIL (|has| |#1| (-554))) (($ (-1164 $)) NIL (|has| |#1| (-554))) (($ (-947 $)) NIL (|has| |#1| (-554)))) (-1952 (((-112) $) 27 (-4037 (|has| |#1| (-25)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))))) (-1402 (((-639 (-1168)) $) 349)) (-1599 (((-406 (-1164 $)) $ (-608 $)) NIL (|has| |#1| (-554)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-1495 (((-639 (-608 $)) $) NIL)) (-2988 (($ $) 159 (|has| |#1| (-554)))) (-4097 (($ $) 135 (|has| |#1| (-554)))) (-3717 (($ $ (-1084 $)) 220 (|has| |#1| (-554))) (($ $ (-1168)) 216 (|has| |#1| (-554)))) (-3214 (((-3 $ "failed") $ $) NIL (-4037 (|has| |#1| (-21)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))))) (-3165 (($ $ (-293 $)) NIL) (($ $ (-639 (-293 $))) 366) (($ $ (-639 (-608 $)) (-639 $)) 410)) (-3026 (((-417 (-1164 $)) (-1164 $)) 294 (-12 (|has| |#1| (-451)) (|has| |#1| (-554))))) (-2798 (($ $) NIL (|has| |#1| (-554)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-554)))) (-1643 (($ $) NIL (|has| |#1| (-554)))) (-2569 (((-112) $ $) NIL (|has| |#1| (-554)))) (-4207 (($ $) 155 (|has| |#1| (-554)))) (-4074 (($ $) 131 (|has| |#1| (-554)))) (-4305 (($ $ (-562)) 69 (|has| |#1| (-554)))) (-3014 (($ $) 163 (|has| |#1| (-554)))) (-4119 (($ $) 139 (|has| |#1| (-554)))) (-1800 (($) NIL (-4037 (|has| |#1| (-25)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104))) CONST)) (-3646 (((-639 $) $ (-1168)) NIL (|has| |#1| (-554))) (((-639 $) $) NIL (|has| |#1| (-554))) (((-639 $) (-1164 $) (-1168)) NIL (|has| |#1| (-554))) (((-639 $) (-1164 $)) NIL (|has| |#1| (-554))) (((-639 $) (-947 $)) NIL (|has| |#1| (-554)))) (-1502 (($ $ (-1168)) NIL (|has| |#1| (-554))) (($ $) NIL (|has| |#1| (-554))) (($ (-1164 $) (-1168)) 122 (|has| |#1| (-554))) (($ (-1164 $)) NIL (|has| |#1| (-554))) (($ (-947 $)) NIL (|has| |#1| (-554)))) (-4048 (((-3 (-608 $) "failed") $) 17) (((-3 (-1168) "failed") $) NIL) (((-3 |#1| "failed") $) 419) (((-3 (-48) "failed") $) 322 (-12 (|has| |#1| (-554)) (|has| |#1| (-1033 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-947 |#1|)) "failed") $) NIL (|has| |#1| (-554))) (((-3 (-947 |#1|) "failed") $) NIL (|has| |#1| (-1044))) (((-3 (-406 (-562)) "failed") $) 46 (-4037 (-12 (|has| |#1| (-554)) (|has| |#1| (-1033 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-3961 (((-608 $) $) 11) (((-1168) $) NIL) ((|#1| $) 401) (((-48) $) NIL (-12 (|has| |#1| (-554)) (|has| |#1| (-1033 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-947 |#1|)) $) NIL (|has| |#1| (-554))) (((-947 |#1|) $) NIL (|has| |#1| (-1044))) (((-406 (-562)) $) 305 (-4037 (-12 (|has| |#1| (-554)) (|has| |#1| (-1033 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-1811 (($ $ $) NIL (|has| |#1| (-554)))) (-2406 (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 115 (|has| |#1| (-1044))) (((-683 |#1|) (-683 $)) 105 (|has| |#1| (-1044))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))) (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))))) (-1955 (($ $) 87 (|has| |#1| (-554)))) (-3668 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104))))) (-1787 (($ $ $) NIL (|has| |#1| (-554)))) (-1397 (($ $ (-1084 $)) 224 (|has| |#1| (-554))) (($ $ (-1168)) 222 (|has| |#1| (-554)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-554)))) (-2717 (((-112) $) NIL (|has| |#1| (-554)))) (-4230 (($ $ $) 190 (|has| |#1| (-554)))) (-4100 (($) 125 (|has| |#1| (-554)))) (-2794 (($ $ $) 210 (|has| |#1| (-554)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 372 (|has| |#1| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 379 (|has| |#1| (-881 (-378))))) (-1383 (($ $) NIL) (($ (-639 $)) NIL)) (-3936 (((-639 (-114)) $) NIL)) (-2876 (((-114) (-114)) 265)) (-1957 (((-112) $) 25 (-4037 (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104))))) (-3130 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-3425 (($ $) 68 (|has| |#1| (-1044)))) (-4065 (((-1117 |#1| (-608 $)) $) 82 (|has| |#1| (-1044)))) (-1934 (((-112) $) 61 (|has| |#1| (-554)))) (-1891 (($ $ (-562)) NIL (|has| |#1| (-554)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-554)))) (-1677 (((-1164 $) (-608 $)) 266 (|has| $ (-1044)))) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 $ $) (-608 $)) 406)) (-4367 (((-3 (-608 $) "failed") $) NIL)) (-4365 (($ $) 129 (|has| |#1| (-554)))) (-2033 (($ $) 235 (|has| |#1| (-554)))) (-1564 (($ (-639 $)) NIL (|has| |#1| (-554))) (($ $ $) NIL (|has| |#1| (-554)))) (-2913 (((-1150) $) NIL)) (-1583 (((-639 (-608 $)) $) 49)) (-4141 (($ (-114) $) NIL) (($ (-114) (-639 $)) 411)) (-2042 (((-3 (-639 $) "failed") $) NIL (|has| |#1| (-1104)))) (-3218 (((-3 (-2 (|:| |val| $) (|:| -1960 (-562))) "failed") $) NIL (|has| |#1| (-1044)))) (-1546 (((-3 (-639 $) "failed") $) 414 (|has| |#1| (-25)))) (-3853 (((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 $))) "failed") $) 418 (|has| |#1| (-25)))) (-1628 (((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $) NIL (|has| |#1| (-1104))) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $ (-114)) NIL (|has| |#1| (-1044))) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $ (-1168)) NIL (|has| |#1| (-1044)))) (-1776 (((-112) $ (-114)) NIL) (((-112) $ (-1168)) 53)) (-1525 (($ $) NIL (-4037 (|has| |#1| (-472)) (|has| |#1| (-554))))) (-1982 (($ $ (-1168)) 239 (|has| |#1| (-554))) (($ $ (-1084 $)) 241 (|has| |#1| (-554)))) (-3060 (((-766) $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) 43)) (-1547 ((|#1| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 287 (|has| |#1| (-554)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-554))) (($ $ $) NIL (|has| |#1| (-554)))) (-4296 (((-112) $ $) NIL) (((-112) $ (-1168)) NIL)) (-3072 (($ $ (-1168)) 214 (|has| |#1| (-554))) (($ $) 212 (|has| |#1| (-554)))) (-1351 (($ $) 206 (|has| |#1| (-554)))) (-3480 (((-417 (-1164 $)) (-1164 $)) 292 (-12 (|has| |#1| (-451)) (|has| |#1| (-554))))) (-1635 (((-417 $) $) NIL (|has| |#1| (-554)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-554))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-554)))) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-554)))) (-3430 (($ $) 127 (|has| |#1| (-554)))) (-3803 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-1433 (($ $ (-608 $) $) NIL) (($ $ (-639 (-608 $)) (-639 $)) 405) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-1168) (-1 $ (-639 $))) NIL) (($ $ (-1168) (-1 $ $)) NIL) (($ $ (-639 (-114)) (-639 (-1 $ $))) 359) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-114) (-1 $ (-639 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1168)) NIL (|has| |#1| (-610 (-535)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-610 (-535)))) (($ $) NIL (|has| |#1| (-610 (-535)))) (($ $ (-114) $ (-1168)) 347 (|has| |#1| (-610 (-535)))) (($ $ (-639 (-114)) (-639 $) (-1168)) 346 (|has| |#1| (-610 (-535)))) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ $))) NIL (|has| |#1| (-1044))) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ (-639 $)))) NIL (|has| |#1| (-1044))) (($ $ (-1168) (-766) (-1 $ (-639 $))) NIL (|has| |#1| (-1044))) (($ $ (-1168) (-766) (-1 $ $)) NIL (|has| |#1| (-1044)))) (-1577 (((-766) $) NIL (|has| |#1| (-554)))) (-4021 (($ $) 227 (|has| |#1| (-554)))) (-2343 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-639 $)) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-554)))) (-3790 (($ $) NIL) (($ $ $) NIL)) (-4056 (($ $) 237 (|has| |#1| (-554)))) (-2791 (($ $) 188 (|has| |#1| (-554)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-1044))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-1044))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-1044))) (($ $ (-1168)) NIL (|has| |#1| (-1044)))) (-3658 (($ $) 70 (|has| |#1| (-554)))) (-4076 (((-1117 |#1| (-608 $)) $) 84 (|has| |#1| (-554)))) (-2096 (($ $) 303 (|has| $ (-1044)))) (-3023 (($ $) 165 (|has| |#1| (-554)))) (-4130 (($ $) 141 (|has| |#1| (-554)))) (-3001 (($ $) 161 (|has| |#1| (-554)))) (-4108 (($ $) 137 (|has| |#1| (-554)))) (-2978 (($ $) 157 (|has| |#1| (-554)))) (-4087 (($ $) 133 (|has| |#1| (-554)))) (-4208 (((-887 (-562)) $) NIL (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| |#1| (-610 (-887 (-378))))) (($ (-417 $)) NIL (|has| |#1| (-554))) (((-535) $) 344 (|has| |#1| (-610 (-535))))) (-3665 (($ $ $) NIL (|has| |#1| (-472)))) (-1911 (($ $ $) NIL (|has| |#1| (-472)))) (-4054 (((-857) $) 404) (($ (-608 $)) 395) (($ (-1168)) 361) (($ |#1|) 323) (($ $) NIL (|has| |#1| (-554))) (($ (-48)) 298 (-12 (|has| |#1| (-554)) (|has| |#1| (-1033 (-562))))) (($ (-1117 |#1| (-608 $))) 86 (|has| |#1| (-1044))) (($ (-406 |#1|)) NIL (|has| |#1| (-554))) (($ (-947 (-406 |#1|))) NIL (|has| |#1| (-554))) (($ (-406 (-947 (-406 |#1|)))) NIL (|has| |#1| (-554))) (($ (-406 (-947 |#1|))) NIL (|has| |#1| (-554))) (($ (-947 |#1|)) NIL (|has| |#1| (-1044))) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-554)) (|has| |#1| (-1033 (-406 (-562)))))) (($ (-562)) 34 (-4037 (|has| |#1| (-1033 (-562))) (|has| |#1| (-1044))))) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL (|has| |#1| (-1044)))) (-2746 (($ $) NIL) (($ (-639 $)) NIL)) (-3261 (($ $ $) 208 (|has| |#1| (-554)))) (-3690 (($ $ $) 194 (|has| |#1| (-554)))) (-1868 (($ $ $) 198 (|has| |#1| (-554)))) (-4266 (($ $ $) 192 (|has| |#1| (-554)))) (-3350 (($ $ $) 196 (|has| |#1| (-554)))) (-2803 (((-112) (-114)) 9)) (-3055 (($ $) 171 (|has| |#1| (-554)))) (-4165 (($ $) 147 (|has| |#1| (-554)))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) 167 (|has| |#1| (-554)))) (-4138 (($ $) 143 (|has| |#1| (-554)))) (-3078 (($ $) 175 (|has| |#1| (-554)))) (-4182 (($ $) 151 (|has| |#1| (-554)))) (-3105 (($ (-1168) $) NIL) (($ (-1168) $ $) NIL) (($ (-1168) $ $ $) NIL) (($ (-1168) $ $ $ $) NIL) (($ (-1168) (-639 $)) NIL)) (-2190 (($ $) 202 (|has| |#1| (-554)))) (-3402 (($ $) 200 (|has| |#1| (-554)))) (-1566 (($ $) 177 (|has| |#1| (-554)))) (-4195 (($ $) 153 (|has| |#1| (-554)))) (-3066 (($ $) 173 (|has| |#1| (-554)))) (-4174 (($ $) 149 (|has| |#1| (-554)))) (-3044 (($ $) 169 (|has| |#1| (-554)))) (-4151 (($ $) 145 (|has| |#1| (-554)))) (-3526 (($ $) 180 (|has| |#1| (-554)))) (-2286 (($) 20 (-4037 (|has| |#1| (-25)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))) CONST)) (-4083 (($ $) 231 (|has| |#1| (-554)))) (-2294 (($) 22 (-4037 (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104))) CONST)) (-3819 (($ $) 182 (|has| |#1| (-554))) (($ $ $) 184 (|has| |#1| (-554)))) (-2537 (($ $) 229 (|has| |#1| (-554)))) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-1044))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-1044))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-1044))) (($ $ (-1168)) NIL (|has| |#1| (-1044)))) (-4361 (($ $) 233 (|has| |#1| (-554)))) (-2088 (($ $ $) 186 (|has| |#1| (-554)))) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 79)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 78)) (-1859 (($ (-1117 |#1| (-608 $)) (-1117 |#1| (-608 $))) 96 (|has| |#1| (-554))) (($ $ $) 42 (-4037 (|has| |#1| (-472)) (|has| |#1| (-554))))) (-1848 (($ $ $) 40 (-4037 (|has| |#1| (-21)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))))) (($ $) 29 (-4037 (|has| |#1| (-21)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))))) (-1835 (($ $ $) 38 (-4037 (|has| |#1| (-25)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))))) (** (($ $ $) 63 (|has| |#1| (-554))) (($ $ (-406 (-562))) 300 (|has| |#1| (-554))) (($ $ (-562)) 74 (-4037 (|has| |#1| (-472)) (|has| |#1| (-554)))) (($ $ (-766)) 71 (-4037 (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104)))) (($ $ (-916)) 76 (-4037 (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104))))) (* (($ (-406 (-562)) $) NIL (|has| |#1| (-554))) (($ $ (-406 (-562))) NIL (|has| |#1| (-554))) (($ |#1| $) NIL (|has| |#1| (-171))) (($ $ |#1|) NIL (|has| |#1| (-171))) (($ $ $) 36 (-4037 (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104)))) (($ (-562) $) 32 (-4037 (|has| |#1| (-21)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))))) (($ (-766) $) NIL (-4037 (|has| |#1| (-25)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))))) (($ (-916) $) NIL (-4037 (|has| |#1| (-25)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))))))
-(((-315 |#1|) (-13 (-429 |#1|) (-10 -8 (IF (|has| |#1| (-554)) (PROGN (-6 (-29 |#1|)) (-6 (-1192)) (-6 (-159)) (-6 (-625)) (-6 (-1131)) (-15 -1955 ($ $)) (-15 -1934 ((-112) $)) (-15 -4305 ($ $ (-562))) (IF (|has| |#1| (-451)) (PROGN (-15 -3480 ((-417 (-1164 $)) (-1164 $))) (-15 -3026 ((-417 (-1164 $)) (-1164 $)))) |%noBranch|) (IF (|has| |#1| (-1033 (-562))) (-6 (-1033 (-48))) |%noBranch|)) |%noBranch|))) (-845)) (T -315))
-((-1955 (*1 *1 *1) (-12 (-5 *1 (-315 *2)) (-4 *2 (-554)) (-4 *2 (-845)))) (-1934 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-315 *3)) (-4 *3 (-554)) (-4 *3 (-845)))) (-4305 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-315 *3)) (-4 *3 (-554)) (-4 *3 (-845)))) (-3480 (*1 *2 *3) (-12 (-5 *2 (-417 (-1164 *1))) (-5 *1 (-315 *4)) (-5 *3 (-1164 *1)) (-4 *4 (-451)) (-4 *4 (-554)) (-4 *4 (-845)))) (-3026 (*1 *2 *3) (-12 (-5 *2 (-417 (-1164 *1))) (-5 *1 (-315 *4)) (-5 *3 (-1164 *1)) (-4 *4 (-451)) (-4 *4 (-554)) (-4 *4 (-845)))))
-(-13 (-429 |#1|) (-10 -8 (IF (|has| |#1| (-554)) (PROGN (-6 (-29 |#1|)) (-6 (-1192)) (-6 (-159)) (-6 (-625)) (-6 (-1131)) (-15 -1955 ($ $)) (-15 -1934 ((-112) $)) (-15 -4305 ($ $ (-562))) (IF (|has| |#1| (-451)) (PROGN (-15 -3480 ((-417 (-1164 $)) (-1164 $))) (-15 -3026 ((-417 (-1164 $)) (-1164 $)))) |%noBranch|) (IF (|has| |#1| (-1033 (-562))) (-6 (-1033 (-48))) |%noBranch|)) |%noBranch|)))
-((-1617 (((-52) |#2| (-114) (-293 |#2|) (-639 |#2|)) 88) (((-52) |#2| (-114) (-293 |#2|) (-293 |#2|)) 84) (((-52) |#2| (-114) (-293 |#2|) |#2|) 86) (((-52) (-293 |#2|) (-114) (-293 |#2|) |#2|) 87) (((-52) (-639 |#2|) (-639 (-114)) (-293 |#2|) (-639 (-293 |#2|))) 80) (((-52) (-639 |#2|) (-639 (-114)) (-293 |#2|) (-639 |#2|)) 82) (((-52) (-639 (-293 |#2|)) (-639 (-114)) (-293 |#2|) (-639 |#2|)) 83) (((-52) (-639 (-293 |#2|)) (-639 (-114)) (-293 |#2|) (-639 (-293 |#2|))) 81) (((-52) (-293 |#2|) (-114) (-293 |#2|) (-639 |#2|)) 89) (((-52) (-293 |#2|) (-114) (-293 |#2|) (-293 |#2|)) 85)))
-(((-316 |#1| |#2|) (-10 -7 (-15 -1617 ((-52) (-293 |#2|) (-114) (-293 |#2|) (-293 |#2|))) (-15 -1617 ((-52) (-293 |#2|) (-114) (-293 |#2|) (-639 |#2|))) (-15 -1617 ((-52) (-639 (-293 |#2|)) (-639 (-114)) (-293 |#2|) (-639 (-293 |#2|)))) (-15 -1617 ((-52) (-639 (-293 |#2|)) (-639 (-114)) (-293 |#2|) (-639 |#2|))) (-15 -1617 ((-52) (-639 |#2|) (-639 (-114)) (-293 |#2|) (-639 |#2|))) (-15 -1617 ((-52) (-639 |#2|) (-639 (-114)) (-293 |#2|) (-639 (-293 |#2|)))) (-15 -1617 ((-52) (-293 |#2|) (-114) (-293 |#2|) |#2|)) (-15 -1617 ((-52) |#2| (-114) (-293 |#2|) |#2|)) (-15 -1617 ((-52) |#2| (-114) (-293 |#2|) (-293 |#2|))) (-15 -1617 ((-52) |#2| (-114) (-293 |#2|) (-639 |#2|)))) (-13 (-845) (-554) (-610 (-535))) (-429 |#1|)) (T -316))
-((-1617 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-114)) (-5 *5 (-293 *3)) (-5 *6 (-639 *3)) (-4 *3 (-429 *7)) (-4 *7 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *7 *3)))) (-1617 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-114)) (-5 *5 (-293 *3)) (-4 *3 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *3)))) (-1617 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-114)) (-5 *5 (-293 *3)) (-4 *3 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *3)))) (-1617 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-293 *5)) (-5 *4 (-114)) (-4 *5 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *5)))) (-1617 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 (-114))) (-5 *6 (-639 (-293 *8))) (-4 *8 (-429 *7)) (-5 *5 (-293 *8)) (-4 *7 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *7 *8)))) (-1617 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-639 *7)) (-5 *4 (-639 (-114))) (-5 *5 (-293 *7)) (-4 *7 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *7)))) (-1617 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-639 (-293 *8))) (-5 *4 (-639 (-114))) (-5 *5 (-293 *8)) (-5 *6 (-639 *8)) (-4 *8 (-429 *7)) (-4 *7 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *7 *8)))) (-1617 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-639 (-293 *7))) (-5 *4 (-639 (-114))) (-5 *5 (-293 *7)) (-4 *7 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *7)))) (-1617 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-293 *7)) (-5 *4 (-114)) (-5 *5 (-639 *7)) (-4 *7 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *7)))) (-1617 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-293 *6)) (-5 *4 (-114)) (-4 *6 (-429 *5)) (-4 *5 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *6)))))
-(-10 -7 (-15 -1617 ((-52) (-293 |#2|) (-114) (-293 |#2|) (-293 |#2|))) (-15 -1617 ((-52) (-293 |#2|) (-114) (-293 |#2|) (-639 |#2|))) (-15 -1617 ((-52) (-639 (-293 |#2|)) (-639 (-114)) (-293 |#2|) (-639 (-293 |#2|)))) (-15 -1617 ((-52) (-639 (-293 |#2|)) (-639 (-114)) (-293 |#2|) (-639 |#2|))) (-15 -1617 ((-52) (-639 |#2|) (-639 (-114)) (-293 |#2|) (-639 |#2|))) (-15 -1617 ((-52) (-639 |#2|) (-639 (-114)) (-293 |#2|) (-639 (-293 |#2|)))) (-15 -1617 ((-52) (-293 |#2|) (-114) (-293 |#2|) |#2|)) (-15 -1617 ((-52) |#2| (-114) (-293 |#2|) |#2|)) (-15 -1617 ((-52) |#2| (-114) (-293 |#2|) (-293 |#2|))) (-15 -1617 ((-52) |#2| (-114) (-293 |#2|) (-639 |#2|))))
-((-1817 (((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-224) (-562) (-1150)) 45) (((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-224) (-562)) 46) (((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-1 (-224) (-224)) (-562) (-1150)) 42) (((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-1 (-224) (-224)) (-562)) 43)) (-3203 (((-1 (-224) (-224)) (-224)) 44)))
-(((-317) (-10 -7 (-15 -3203 ((-1 (-224) (-224)) (-224))) (-15 -1817 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-1 (-224) (-224)) (-562))) (-15 -1817 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-1 (-224) (-224)) (-562) (-1150))) (-15 -1817 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-224) (-562))) (-15 -1817 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-224) (-562) (-1150))))) (T -317))
-((-1817 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224))) (-5 *5 (-1086 (-224))) (-5 *6 (-224)) (-5 *7 (-562)) (-5 *8 (-1150)) (-5 *2 (-1202 (-921))) (-5 *1 (-317)))) (-1817 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224))) (-5 *5 (-1086 (-224))) (-5 *6 (-224)) (-5 *7 (-562)) (-5 *2 (-1202 (-921))) (-5 *1 (-317)))) (-1817 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224))) (-5 *5 (-1086 (-224))) (-5 *6 (-562)) (-5 *7 (-1150)) (-5 *2 (-1202 (-921))) (-5 *1 (-317)))) (-1817 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224))) (-5 *5 (-1086 (-224))) (-5 *6 (-562)) (-5 *2 (-1202 (-921))) (-5 *1 (-317)))) (-3203 (*1 *2 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *1 (-317)) (-5 *3 (-224)))))
-(-10 -7 (-15 -3203 ((-1 (-224) (-224)) (-224))) (-15 -1817 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-1 (-224) (-224)) (-562))) (-15 -1817 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-1 (-224) (-224)) (-562) (-1150))) (-15 -1817 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-224) (-562))) (-15 -1817 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-224) (-562) (-1150))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 25)) (-1402 (((-639 (-1074)) $) NIL)) (-2444 (((-1168) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-2557 (($ $ (-406 (-562))) NIL) (($ $ (-406 (-562)) (-406 (-562))) NIL)) (-1938 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) 20)) (-2988 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL (|has| |#1| (-362)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1643 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4207 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) NIL)) (-3014 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) NIL T CONST)) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1601 (($ $) 31)) (-3668 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-2717 (((-112) $) NIL (|has| |#1| (-362)))) (-1756 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-406 (-562)) $) NIL) (((-406 (-562)) $ (-406 (-562))) 16)) (-1957 (((-112) $) NIL)) (-1891 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3374 (($ $ (-916)) NIL) (($ $ (-406 (-562))) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-406 (-562))) NIL) (($ $ (-1074) (-406 (-562))) NIL) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4365 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-2667 (($ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192)))))) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1353 (($ $ (-406 (-562))) NIL)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1631 (((-406 (-562)) $) 17)) (-3876 (($ (-1241 |#1| |#2| |#3|)) 11)) (-1960 (((-1241 |#1| |#2| |#3|) $) 12)) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-1577 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) NIL) (($ $ $) NIL (|has| (-406 (-562)) (-1104)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-3598 (((-406 (-562)) $) NIL)) (-3023 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) 10)) (-4054 (((-857) $) 37) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554)))) (-3906 ((|#1| $ (-406 (-562))) 29)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-2328 ((|#1| $) NIL)) (-3055 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 27)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 32)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
-(((-318 |#1| |#2| |#3|) (-13 (-1237 |#1|) (-787) (-10 -8 (-15 -3876 ($ (-1241 |#1| |#2| |#3|))) (-15 -1960 ((-1241 |#1| |#2| |#3|) $)) (-15 -1631 ((-406 (-562)) $)))) (-13 (-362) (-845)) (-1168) |#1|) (T -318))
-((-3876 (*1 *1 *2) (-12 (-5 *2 (-1241 *3 *4 *5)) (-4 *3 (-13 (-362) (-845))) (-14 *4 (-1168)) (-14 *5 *3) (-5 *1 (-318 *3 *4 *5)))) (-1960 (*1 *2 *1) (-12 (-5 *2 (-1241 *3 *4 *5)) (-5 *1 (-318 *3 *4 *5)) (-4 *3 (-13 (-362) (-845))) (-14 *4 (-1168)) (-14 *5 *3))) (-1631 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-318 *3 *4 *5)) (-4 *3 (-13 (-362) (-845))) (-14 *4 (-1168)) (-14 *5 *3))))
-(-13 (-1237 |#1|) (-787) (-10 -8 (-15 -3876 ($ (-1241 |#1| |#2| |#3|))) (-15 -1960 ((-1241 |#1| |#2| |#3|) $)) (-15 -1631 ((-406 (-562)) $))))
-((-1891 (((-2 (|:| -1960 (-766)) (|:| -4221 |#1|) (|:| |radicand| (-639 |#1|))) (-417 |#1|) (-766)) 24)) (-4365 (((-639 (-2 (|:| -4221 (-766)) (|:| |logand| |#1|))) (-417 |#1|)) 28)))
-(((-319 |#1|) (-10 -7 (-15 -1891 ((-2 (|:| -1960 (-766)) (|:| -4221 |#1|) (|:| |radicand| (-639 |#1|))) (-417 |#1|) (-766))) (-15 -4365 ((-639 (-2 (|:| -4221 (-766)) (|:| |logand| |#1|))) (-417 |#1|)))) (-554)) (T -319))
-((-4365 (*1 *2 *3) (-12 (-5 *3 (-417 *4)) (-4 *4 (-554)) (-5 *2 (-639 (-2 (|:| -4221 (-766)) (|:| |logand| *4)))) (-5 *1 (-319 *4)))) (-1891 (*1 *2 *3 *4) (-12 (-5 *3 (-417 *5)) (-4 *5 (-554)) (-5 *2 (-2 (|:| -1960 (-766)) (|:| -4221 *5) (|:| |radicand| (-639 *5)))) (-5 *1 (-319 *5)) (-5 *4 (-766)))))
-(-10 -7 (-15 -1891 ((-2 (|:| -1960 (-766)) (|:| -4221 |#1|) (|:| |radicand| (-639 |#1|))) (-417 |#1|) (-766))) (-15 -4365 ((-639 (-2 (|:| -4221 (-766)) (|:| |logand| |#1|))) (-417 |#1|))))
-((-1402 (((-639 |#2|) (-1164 |#4|)) 43)) (-1987 ((|#3| (-562)) 46)) (-3769 (((-1164 |#4|) (-1164 |#3|)) 30)) (-3520 (((-1164 |#4|) (-1164 |#4|) (-562)) 55)) (-2215 (((-1164 |#3|) (-1164 |#4|)) 21)) (-3598 (((-639 (-766)) (-1164 |#4|) (-639 |#2|)) 40)) (-3333 (((-1164 |#3|) (-1164 |#4|) (-639 |#2|) (-639 |#3|)) 35)))
-(((-320 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3333 ((-1164 |#3|) (-1164 |#4|) (-639 |#2|) (-639 |#3|))) (-15 -3598 ((-639 (-766)) (-1164 |#4|) (-639 |#2|))) (-15 -1402 ((-639 |#2|) (-1164 |#4|))) (-15 -2215 ((-1164 |#3|) (-1164 |#4|))) (-15 -3769 ((-1164 |#4|) (-1164 |#3|))) (-15 -3520 ((-1164 |#4|) (-1164 |#4|) (-562))) (-15 -1987 (|#3| (-562)))) (-788) (-845) (-1044) (-944 |#3| |#1| |#2|)) (T -320))
-((-1987 (*1 *2 *3) (-12 (-5 *3 (-562)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1044)) (-5 *1 (-320 *4 *5 *2 *6)) (-4 *6 (-944 *2 *4 *5)))) (-3520 (*1 *2 *2 *3) (-12 (-5 *2 (-1164 *7)) (-5 *3 (-562)) (-4 *7 (-944 *6 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-5 *1 (-320 *4 *5 *6 *7)))) (-3769 (*1 *2 *3) (-12 (-5 *3 (-1164 *6)) (-4 *6 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-1164 *7)) (-5 *1 (-320 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))) (-2215 (*1 *2 *3) (-12 (-5 *3 (-1164 *7)) (-4 *7 (-944 *6 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-5 *2 (-1164 *6)) (-5 *1 (-320 *4 *5 *6 *7)))) (-1402 (*1 *2 *3) (-12 (-5 *3 (-1164 *7)) (-4 *7 (-944 *6 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-5 *2 (-639 *5)) (-5 *1 (-320 *4 *5 *6 *7)))) (-3598 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *8)) (-5 *4 (-639 *6)) (-4 *6 (-845)) (-4 *8 (-944 *7 *5 *6)) (-4 *5 (-788)) (-4 *7 (-1044)) (-5 *2 (-639 (-766))) (-5 *1 (-320 *5 *6 *7 *8)))) (-3333 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1164 *9)) (-5 *4 (-639 *7)) (-5 *5 (-639 *8)) (-4 *7 (-845)) (-4 *8 (-1044)) (-4 *9 (-944 *8 *6 *7)) (-4 *6 (-788)) (-5 *2 (-1164 *8)) (-5 *1 (-320 *6 *7 *8 *9)))))
-(-10 -7 (-15 -3333 ((-1164 |#3|) (-1164 |#4|) (-639 |#2|) (-639 |#3|))) (-15 -3598 ((-639 (-766)) (-1164 |#4|) (-639 |#2|))) (-15 -1402 ((-639 |#2|) (-1164 |#4|))) (-15 -2215 ((-1164 |#3|) (-1164 |#4|))) (-15 -3769 ((-1164 |#4|) (-1164 |#3|))) (-15 -3520 ((-1164 |#4|) (-1164 |#4|) (-562))) (-15 -1987 (|#3| (-562))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 14)) (-1938 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-562)))) $) 18)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1382 (((-766) $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3961 ((|#1| $) NIL)) (-3126 ((|#1| $ (-562)) NIL)) (-4173 (((-562) $ (-562)) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1304 (($ (-1 |#1| |#1|) $) NIL)) (-3344 (($ (-1 (-562) (-562)) $) 10)) (-2913 (((-1150) $) NIL)) (-1755 (($ $ $) NIL (|has| (-562) (-787)))) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL) (($ |#1|) NIL)) (-3906 (((-562) |#1| $) NIL)) (-2286 (($) 15 T CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) 21 (|has| |#1| (-845)))) (-1848 (($ $) 11) (($ $ $) 20)) (-1835 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ (-562)) NIL) (($ (-562) |#1|) 19)))
+((-1470 (((-52) |#2| (-293 |#2|) (-766)) 33) (((-52) |#2| (-293 |#2|)) 24) (((-52) |#2| (-766)) 28) (((-52) |#2|) 25) (((-52) (-1168)) 21)) (-1503 (((-52) |#2| (-293 |#2|) (-406 (-562))) 51) (((-52) |#2| (-293 |#2|)) 48) (((-52) |#2| (-406 (-562))) 50) (((-52) |#2|) 49) (((-52) (-1168)) 47)) (-1499 (((-52) |#2| (-293 |#2|) (-406 (-562))) 46) (((-52) |#2| (-293 |#2|)) 43) (((-52) |#2| (-406 (-562))) 45) (((-52) |#2|) 44) (((-52) (-1168)) 42)) (-1487 (((-52) |#2| (-293 |#2|) (-562)) 39) (((-52) |#2| (-293 |#2|)) 35) (((-52) |#2| (-562)) 38) (((-52) |#2|) 36) (((-52) (-1168)) 34)))
+(((-314 |#1| |#2|) (-10 -7 (-15 -1470 ((-52) (-1168))) (-15 -1470 ((-52) |#2|)) (-15 -1470 ((-52) |#2| (-766))) (-15 -1470 ((-52) |#2| (-293 |#2|))) (-15 -1470 ((-52) |#2| (-293 |#2|) (-766))) (-15 -1487 ((-52) (-1168))) (-15 -1487 ((-52) |#2|)) (-15 -1487 ((-52) |#2| (-562))) (-15 -1487 ((-52) |#2| (-293 |#2|))) (-15 -1487 ((-52) |#2| (-293 |#2|) (-562))) (-15 -1499 ((-52) (-1168))) (-15 -1499 ((-52) |#2|)) (-15 -1499 ((-52) |#2| (-406 (-562)))) (-15 -1499 ((-52) |#2| (-293 |#2|))) (-15 -1499 ((-52) |#2| (-293 |#2|) (-406 (-562)))) (-15 -1503 ((-52) (-1168))) (-15 -1503 ((-52) |#2|)) (-15 -1503 ((-52) |#2| (-406 (-562)))) (-15 -1503 ((-52) |#2| (-293 |#2|))) (-15 -1503 ((-52) |#2| (-293 |#2|) (-406 (-562))))) (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -314))
+((-1503 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-293 *3)) (-5 *5 (-406 (-562))) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *6 *3)))) (-1503 (*1 *2 *3 *4) (-12 (-5 *4 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)))) (-1503 (*1 *2 *3 *4) (-12 (-5 *4 (-406 (-562))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-1503 (*1 *2 *3) (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))) (-1503 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *5)) (-4 *5 (-13 (-27) (-1192) (-429 *4))))) (-1499 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-293 *3)) (-5 *5 (-406 (-562))) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *6 *3)))) (-1499 (*1 *2 *3 *4) (-12 (-5 *4 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)))) (-1499 (*1 *2 *3 *4) (-12 (-5 *4 (-406 (-562))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-1499 (*1 *2 *3) (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))) (-1499 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *5)) (-4 *5 (-13 (-27) (-1192) (-429 *4))))) (-1487 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-451) (-845) (-1033 *5) (-635 *5))) (-5 *5 (-562)) (-5 *2 (-52)) (-5 *1 (-314 *6 *3)))) (-1487 (*1 *2 *3 *4) (-12 (-5 *4 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)))) (-1487 (*1 *2 *3 *4) (-12 (-5 *4 (-562)) (-4 *5 (-13 (-451) (-845) (-1033 *4) (-635 *4))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-1487 (*1 *2 *3) (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))) (-1487 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *5)) (-4 *5 (-13 (-27) (-1192) (-429 *4))))) (-1470 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-293 *3)) (-5 *5 (-766)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *6 *3)))) (-1470 (*1 *2 *3 *4) (-12 (-5 *4 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)))) (-1470 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-1470 (*1 *2 *3) (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))) (-1470 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-314 *4 *5)) (-4 *5 (-13 (-27) (-1192) (-429 *4))))))
+(-10 -7 (-15 -1470 ((-52) (-1168))) (-15 -1470 ((-52) |#2|)) (-15 -1470 ((-52) |#2| (-766))) (-15 -1470 ((-52) |#2| (-293 |#2|))) (-15 -1470 ((-52) |#2| (-293 |#2|) (-766))) (-15 -1487 ((-52) (-1168))) (-15 -1487 ((-52) |#2|)) (-15 -1487 ((-52) |#2| (-562))) (-15 -1487 ((-52) |#2| (-293 |#2|))) (-15 -1487 ((-52) |#2| (-293 |#2|) (-562))) (-15 -1499 ((-52) (-1168))) (-15 -1499 ((-52) |#2|)) (-15 -1499 ((-52) |#2| (-406 (-562)))) (-15 -1499 ((-52) |#2| (-293 |#2|))) (-15 -1499 ((-52) |#2| (-293 |#2|) (-406 (-562)))) (-15 -1503 ((-52) (-1168))) (-15 -1503 ((-52) |#2|)) (-15 -1503 ((-52) |#2| (-406 (-562)))) (-15 -1503 ((-52) |#2| (-293 |#2|))) (-15 -1503 ((-52) |#2| (-293 |#2|) (-406 (-562)))))
+((-4041 (((-112) $ $) NIL)) (-1763 (((-639 $) $ (-1168)) NIL (|has| |#1| (-554))) (((-639 $) $) NIL (|has| |#1| (-554))) (((-639 $) (-1164 $) (-1168)) NIL (|has| |#1| (-554))) (((-639 $) (-1164 $)) NIL (|has| |#1| (-554))) (((-639 $) (-947 $)) NIL (|has| |#1| (-554)))) (-2391 (($ $ (-1168)) NIL (|has| |#1| (-554))) (($ $) NIL (|has| |#1| (-554))) (($ (-1164 $) (-1168)) NIL (|has| |#1| (-554))) (($ (-1164 $)) NIL (|has| |#1| (-554))) (($ (-947 $)) NIL (|has| |#1| (-554)))) (-4325 (((-112) $) 27 (-4037 (|has| |#1| (-25)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))))) (-1401 (((-639 (-1168)) $) 349)) (-1602 (((-406 (-1164 $)) $ (-608 $)) NIL (|has| |#1| (-554)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1501 (((-639 (-608 $)) $) NIL)) (-2987 (($ $) 159 (|has| |#1| (-554)))) (-4098 (($ $) 135 (|has| |#1| (-554)))) (-4026 (($ $ (-1084 $)) 220 (|has| |#1| (-554))) (($ $ (-1168)) 216 (|has| |#1| (-554)))) (-2781 (((-3 $ "failed") $ $) NIL (-4037 (|has| |#1| (-21)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))))) (-3164 (($ $ (-293 $)) NIL) (($ $ (-639 (-293 $))) 366) (($ $ (-639 (-608 $)) (-639 $)) 410)) (-3517 (((-417 (-1164 $)) (-1164 $)) 294 (-12 (|has| |#1| (-451)) (|has| |#1| (-554))))) (-1977 (($ $) NIL (|has| |#1| (-554)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-554)))) (-1644 (($ $) NIL (|has| |#1| (-554)))) (-1436 (((-112) $ $) NIL (|has| |#1| (-554)))) (-4206 (($ $) 155 (|has| |#1| (-554)))) (-4074 (($ $) 131 (|has| |#1| (-554)))) (-1639 (($ $ (-562)) 69 (|has| |#1| (-554)))) (-3013 (($ $) 163 (|has| |#1| (-554)))) (-4120 (($ $) 139 (|has| |#1| (-554)))) (-3329 (($) NIL (-4037 (|has| |#1| (-25)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104))) CONST)) (-1431 (((-639 $) $ (-1168)) NIL (|has| |#1| (-554))) (((-639 $) $) NIL (|has| |#1| (-554))) (((-639 $) (-1164 $) (-1168)) NIL (|has| |#1| (-554))) (((-639 $) (-1164 $)) NIL (|has| |#1| (-554))) (((-639 $) (-947 $)) NIL (|has| |#1| (-554)))) (-2608 (($ $ (-1168)) NIL (|has| |#1| (-554))) (($ $) NIL (|has| |#1| (-554))) (($ (-1164 $) (-1168)) 122 (|has| |#1| (-554))) (($ (-1164 $)) NIL (|has| |#1| (-554))) (($ (-947 $)) NIL (|has| |#1| (-554)))) (-4048 (((-3 (-608 $) "failed") $) 17) (((-3 (-1168) "failed") $) NIL) (((-3 |#1| "failed") $) 419) (((-3 (-48) "failed") $) 322 (-12 (|has| |#1| (-554)) (|has| |#1| (-1033 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-947 |#1|)) "failed") $) NIL (|has| |#1| (-554))) (((-3 (-947 |#1|) "failed") $) NIL (|has| |#1| (-1044))) (((-3 (-406 (-562)) "failed") $) 46 (-4037 (-12 (|has| |#1| (-554)) (|has| |#1| (-1033 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-3960 (((-608 $) $) 11) (((-1168) $) NIL) ((|#1| $) 401) (((-48) $) NIL (-12 (|has| |#1| (-554)) (|has| |#1| (-1033 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-947 |#1|)) $) NIL (|has| |#1| (-554))) (((-947 |#1|) $) NIL (|has| |#1| (-1044))) (((-406 (-562)) $) 305 (-4037 (-12 (|has| |#1| (-554)) (|has| |#1| (-1033 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-1810 (($ $ $) NIL (|has| |#1| (-554)))) (-3449 (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 115 (|has| |#1| (-1044))) (((-683 |#1|) (-683 $)) 105 (|has| |#1| (-1044))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))) (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))))) (-1954 (($ $) 87 (|has| |#1| (-554)))) (-1694 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104))))) (-1787 (($ $ $) NIL (|has| |#1| (-554)))) (-3912 (($ $ (-1084 $)) 224 (|has| |#1| (-554))) (($ $ (-1168)) 222 (|has| |#1| (-554)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-554)))) (-3521 (((-112) $) NIL (|has| |#1| (-554)))) (-2146 (($ $ $) 190 (|has| |#1| (-554)))) (-4100 (($) 125 (|has| |#1| (-554)))) (-1940 (($ $ $) 210 (|has| |#1| (-554)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 372 (|has| |#1| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 379 (|has| |#1| (-881 (-378))))) (-2229 (($ $) NIL) (($ (-639 $)) NIL)) (-4364 (((-639 (-114)) $) NIL)) (-1502 (((-114) (-114)) 265)) (-4367 (((-112) $) 25 (-4037 (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104))))) (-3152 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-2957 (($ $) 68 (|has| |#1| (-1044)))) (-4063 (((-1117 |#1| (-608 $)) $) 82 (|has| |#1| (-1044)))) (-4153 (((-112) $) 61 (|has| |#1| (-554)))) (-1895 (($ $ (-562)) NIL (|has| |#1| (-554)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-554)))) (-3476 (((-1164 $) (-608 $)) 266 (|has| $ (-1044)))) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 $ $) (-608 $)) 406)) (-4068 (((-3 (-608 $) "failed") $) NIL)) (-4366 (($ $) 129 (|has| |#1| (-554)))) (-2032 (($ $) 235 (|has| |#1| (-554)))) (-1564 (($ (-639 $)) NIL (|has| |#1| (-554))) (($ $ $) NIL (|has| |#1| (-554)))) (-3696 (((-1150) $) NIL)) (-1582 (((-639 (-608 $)) $) 49)) (-4141 (($ (-114) $) NIL) (($ (-114) (-639 $)) 411)) (-4025 (((-3 (-639 $) "failed") $) NIL (|has| |#1| (-1104)))) (-2811 (((-3 (-2 (|:| |val| $) (|:| -1300 (-562))) "failed") $) NIL (|has| |#1| (-1044)))) (-1778 (((-3 (-639 $) "failed") $) 414 (|has| |#1| (-25)))) (-2871 (((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 $))) "failed") $) 418 (|has| |#1| (-25)))) (-4270 (((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $) NIL (|has| |#1| (-1104))) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $ (-114)) NIL (|has| |#1| (-1044))) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $ (-1168)) NIL (|has| |#1| (-1044)))) (-3115 (((-112) $ (-114)) NIL) (((-112) $ (-1168)) 53)) (-1525 (($ $) NIL (-4037 (|has| |#1| (-472)) (|has| |#1| (-554))))) (-1529 (($ $ (-1168)) 239 (|has| |#1| (-554))) (($ $ (-1084 $)) 241 (|has| |#1| (-554)))) (-3059 (((-766) $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) 43)) (-1547 ((|#1| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 287 (|has| |#1| (-554)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-554))) (($ $ $) NIL (|has| |#1| (-554)))) (-1533 (((-112) $ $) NIL) (((-112) $ (-1168)) NIL)) (-3836 (($ $ (-1168)) 214 (|has| |#1| (-554))) (($ $) 212 (|has| |#1| (-554)))) (-3350 (($ $) 206 (|has| |#1| (-554)))) (-3468 (((-417 (-1164 $)) (-1164 $)) 292 (-12 (|has| |#1| (-451)) (|has| |#1| (-554))))) (-1635 (((-417 $) $) NIL (|has| |#1| (-554)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-554))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-554)))) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-554)))) (-3430 (($ $) 127 (|has| |#1| (-554)))) (-2438 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-1433 (($ $ (-608 $) $) NIL) (($ $ (-639 (-608 $)) (-639 $)) 405) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-1168) (-1 $ (-639 $))) NIL) (($ $ (-1168) (-1 $ $)) NIL) (($ $ (-639 (-114)) (-639 (-1 $ $))) 359) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-114) (-1 $ (-639 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1168)) NIL (|has| |#1| (-610 (-535)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-610 (-535)))) (($ $) NIL (|has| |#1| (-610 (-535)))) (($ $ (-114) $ (-1168)) 347 (|has| |#1| (-610 (-535)))) (($ $ (-639 (-114)) (-639 $) (-1168)) 346 (|has| |#1| (-610 (-535)))) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ $))) NIL (|has| |#1| (-1044))) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ (-639 $)))) NIL (|has| |#1| (-1044))) (($ $ (-1168) (-766) (-1 $ (-639 $))) NIL (|has| |#1| (-1044))) (($ $ (-1168) (-766) (-1 $ $)) NIL (|has| |#1| (-1044)))) (-2044 (((-766) $) NIL (|has| |#1| (-554)))) (-4021 (($ $) 227 (|has| |#1| (-554)))) (-2343 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-639 $)) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-554)))) (-3461 (($ $) NIL) (($ $ $) NIL)) (-4057 (($ $) 237 (|has| |#1| (-554)))) (-1904 (($ $) 188 (|has| |#1| (-554)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-1044))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-1044))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-1044))) (($ $ (-1168)) NIL (|has| |#1| (-1044)))) (-1580 (($ $) 70 (|has| |#1| (-554)))) (-4079 (((-1117 |#1| (-608 $)) $) 84 (|has| |#1| (-554)))) (-3371 (($ $) 303 (|has| $ (-1044)))) (-3022 (($ $) 165 (|has| |#1| (-554)))) (-4130 (($ $) 141 (|has| |#1| (-554)))) (-3000 (($ $) 161 (|has| |#1| (-554)))) (-4108 (($ $) 137 (|has| |#1| (-554)))) (-2977 (($ $) 157 (|has| |#1| (-554)))) (-4087 (($ $) 133 (|has| |#1| (-554)))) (-4208 (((-887 (-562)) $) NIL (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| |#1| (-610 (-887 (-378))))) (($ (-417 $)) NIL (|has| |#1| (-554))) (((-535) $) 344 (|has| |#1| (-610 (-535))))) (-1660 (($ $ $) NIL (|has| |#1| (-472)))) (-2114 (($ $ $) NIL (|has| |#1| (-472)))) (-4053 (((-857) $) 404) (($ (-608 $)) 395) (($ (-1168)) 361) (($ |#1|) 323) (($ $) NIL (|has| |#1| (-554))) (($ (-48)) 298 (-12 (|has| |#1| (-554)) (|has| |#1| (-1033 (-562))))) (($ (-1117 |#1| (-608 $))) 86 (|has| |#1| (-1044))) (($ (-406 |#1|)) NIL (|has| |#1| (-554))) (($ (-947 (-406 |#1|))) NIL (|has| |#1| (-554))) (($ (-406 (-947 (-406 |#1|)))) NIL (|has| |#1| (-554))) (($ (-406 (-947 |#1|))) NIL (|has| |#1| (-554))) (($ (-947 |#1|)) NIL (|has| |#1| (-1044))) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-554)) (|has| |#1| (-1033 (-406 (-562)))))) (($ (-562)) 34 (-4037 (|has| |#1| (-1033 (-562))) (|has| |#1| (-1044))))) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL (|has| |#1| (-1044)))) (-2745 (($ $) NIL) (($ (-639 $)) NIL)) (-2068 (($ $ $) 208 (|has| |#1| (-554)))) (-3733 (($ $ $) 194 (|has| |#1| (-554)))) (-2831 (($ $ $) 198 (|has| |#1| (-554)))) (-4287 (($ $ $) 192 (|has| |#1| (-554)))) (-1623 (($ $ $) 196 (|has| |#1| (-554)))) (-2036 (((-112) (-114)) 9)) (-3054 (($ $) 171 (|has| |#1| (-554)))) (-4165 (($ $) 147 (|has| |#1| (-554)))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) 167 (|has| |#1| (-554)))) (-4139 (($ $) 143 (|has| |#1| (-554)))) (-3077 (($ $) 175 (|has| |#1| (-554)))) (-4183 (($ $) 151 (|has| |#1| (-554)))) (-3105 (($ (-1168) $) NIL) (($ (-1168) $ $) NIL) (($ (-1168) $ $ $) NIL) (($ (-1168) $ $ $ $) NIL) (($ (-1168) (-639 $)) NIL)) (-2001 (($ $) 202 (|has| |#1| (-554)))) (-3950 (($ $) 200 (|has| |#1| (-554)))) (-1567 (($ $) 177 (|has| |#1| (-554)))) (-4195 (($ $) 153 (|has| |#1| (-554)))) (-3065 (($ $) 173 (|has| |#1| (-554)))) (-4175 (($ $) 149 (|has| |#1| (-554)))) (-3040 (($ $) 169 (|has| |#1| (-554)))) (-4151 (($ $) 145 (|has| |#1| (-554)))) (-2757 (($ $) 180 (|has| |#1| (-554)))) (-2285 (($) 20 (-4037 (|has| |#1| (-25)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))) CONST)) (-3234 (($ $) 231 (|has| |#1| (-554)))) (-2294 (($) 22 (-4037 (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104))) CONST)) (-2582 (($ $) 182 (|has| |#1| (-554))) (($ $ $) 184 (|has| |#1| (-554)))) (-4198 (($ $) 229 (|has| |#1| (-554)))) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-1044))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-1044))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-1044))) (($ $ (-1168)) NIL (|has| |#1| (-1044)))) (-4003 (($ $) 233 (|has| |#1| (-554)))) (-3291 (($ $ $) 186 (|has| |#1| (-554)))) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 79)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 78)) (-1859 (($ (-1117 |#1| (-608 $)) (-1117 |#1| (-608 $))) 96 (|has| |#1| (-554))) (($ $ $) 42 (-4037 (|has| |#1| (-472)) (|has| |#1| (-554))))) (-1847 (($ $ $) 40 (-4037 (|has| |#1| (-21)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))))) (($ $) 29 (-4037 (|has| |#1| (-21)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))))) (-1836 (($ $ $) 38 (-4037 (|has| |#1| (-25)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))))) (** (($ $ $) 63 (|has| |#1| (-554))) (($ $ (-406 (-562))) 300 (|has| |#1| (-554))) (($ $ (-562)) 74 (-4037 (|has| |#1| (-472)) (|has| |#1| (-554)))) (($ $ (-766)) 71 (-4037 (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104)))) (($ $ (-916)) 76 (-4037 (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104))))) (* (($ (-406 (-562)) $) NIL (|has| |#1| (-554))) (($ $ (-406 (-562))) NIL (|has| |#1| (-554))) (($ |#1| $) NIL (|has| |#1| (-171))) (($ $ |#1|) NIL (|has| |#1| (-171))) (($ $ $) 36 (-4037 (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) (|has| |#1| (-1104)))) (($ (-562) $) 32 (-4037 (|has| |#1| (-21)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))))) (($ (-766) $) NIL (-4037 (|has| |#1| (-25)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))))) (($ (-916) $) NIL (-4037 (|has| |#1| (-25)) (-12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))))))
+(((-315 |#1|) (-13 (-429 |#1|) (-10 -8 (IF (|has| |#1| (-554)) (PROGN (-6 (-29 |#1|)) (-6 (-1192)) (-6 (-159)) (-6 (-625)) (-6 (-1131)) (-15 -1954 ($ $)) (-15 -4153 ((-112) $)) (-15 -1639 ($ $ (-562))) (IF (|has| |#1| (-451)) (PROGN (-15 -3468 ((-417 (-1164 $)) (-1164 $))) (-15 -3517 ((-417 (-1164 $)) (-1164 $)))) |%noBranch|) (IF (|has| |#1| (-1033 (-562))) (-6 (-1033 (-48))) |%noBranch|)) |%noBranch|))) (-845)) (T -315))
+((-1954 (*1 *1 *1) (-12 (-5 *1 (-315 *2)) (-4 *2 (-554)) (-4 *2 (-845)))) (-4153 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-315 *3)) (-4 *3 (-554)) (-4 *3 (-845)))) (-1639 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-315 *3)) (-4 *3 (-554)) (-4 *3 (-845)))) (-3468 (*1 *2 *3) (-12 (-5 *2 (-417 (-1164 *1))) (-5 *1 (-315 *4)) (-5 *3 (-1164 *1)) (-4 *4 (-451)) (-4 *4 (-554)) (-4 *4 (-845)))) (-3517 (*1 *2 *3) (-12 (-5 *2 (-417 (-1164 *1))) (-5 *1 (-315 *4)) (-5 *3 (-1164 *1)) (-4 *4 (-451)) (-4 *4 (-554)) (-4 *4 (-845)))))
+(-13 (-429 |#1|) (-10 -8 (IF (|has| |#1| (-554)) (PROGN (-6 (-29 |#1|)) (-6 (-1192)) (-6 (-159)) (-6 (-625)) (-6 (-1131)) (-15 -1954 ($ $)) (-15 -4153 ((-112) $)) (-15 -1639 ($ $ (-562))) (IF (|has| |#1| (-451)) (PROGN (-15 -3468 ((-417 (-1164 $)) (-1164 $))) (-15 -3517 ((-417 (-1164 $)) (-1164 $)))) |%noBranch|) (IF (|has| |#1| (-1033 (-562))) (-6 (-1033 (-48))) |%noBranch|)) |%noBranch|)))
+((-4170 (((-52) |#2| (-114) (-293 |#2|) (-639 |#2|)) 88) (((-52) |#2| (-114) (-293 |#2|) (-293 |#2|)) 84) (((-52) |#2| (-114) (-293 |#2|) |#2|) 86) (((-52) (-293 |#2|) (-114) (-293 |#2|) |#2|) 87) (((-52) (-639 |#2|) (-639 (-114)) (-293 |#2|) (-639 (-293 |#2|))) 80) (((-52) (-639 |#2|) (-639 (-114)) (-293 |#2|) (-639 |#2|)) 82) (((-52) (-639 (-293 |#2|)) (-639 (-114)) (-293 |#2|) (-639 |#2|)) 83) (((-52) (-639 (-293 |#2|)) (-639 (-114)) (-293 |#2|) (-639 (-293 |#2|))) 81) (((-52) (-293 |#2|) (-114) (-293 |#2|) (-639 |#2|)) 89) (((-52) (-293 |#2|) (-114) (-293 |#2|) (-293 |#2|)) 85)))
+(((-316 |#1| |#2|) (-10 -7 (-15 -4170 ((-52) (-293 |#2|) (-114) (-293 |#2|) (-293 |#2|))) (-15 -4170 ((-52) (-293 |#2|) (-114) (-293 |#2|) (-639 |#2|))) (-15 -4170 ((-52) (-639 (-293 |#2|)) (-639 (-114)) (-293 |#2|) (-639 (-293 |#2|)))) (-15 -4170 ((-52) (-639 (-293 |#2|)) (-639 (-114)) (-293 |#2|) (-639 |#2|))) (-15 -4170 ((-52) (-639 |#2|) (-639 (-114)) (-293 |#2|) (-639 |#2|))) (-15 -4170 ((-52) (-639 |#2|) (-639 (-114)) (-293 |#2|) (-639 (-293 |#2|)))) (-15 -4170 ((-52) (-293 |#2|) (-114) (-293 |#2|) |#2|)) (-15 -4170 ((-52) |#2| (-114) (-293 |#2|) |#2|)) (-15 -4170 ((-52) |#2| (-114) (-293 |#2|) (-293 |#2|))) (-15 -4170 ((-52) |#2| (-114) (-293 |#2|) (-639 |#2|)))) (-13 (-845) (-554) (-610 (-535))) (-429 |#1|)) (T -316))
+((-4170 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-114)) (-5 *5 (-293 *3)) (-5 *6 (-639 *3)) (-4 *3 (-429 *7)) (-4 *7 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *7 *3)))) (-4170 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-114)) (-5 *5 (-293 *3)) (-4 *3 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *3)))) (-4170 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-114)) (-5 *5 (-293 *3)) (-4 *3 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *3)))) (-4170 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-293 *5)) (-5 *4 (-114)) (-4 *5 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *5)))) (-4170 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 (-114))) (-5 *6 (-639 (-293 *8))) (-4 *8 (-429 *7)) (-5 *5 (-293 *8)) (-4 *7 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *7 *8)))) (-4170 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-639 *7)) (-5 *4 (-639 (-114))) (-5 *5 (-293 *7)) (-4 *7 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *7)))) (-4170 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-639 (-293 *8))) (-5 *4 (-639 (-114))) (-5 *5 (-293 *8)) (-5 *6 (-639 *8)) (-4 *8 (-429 *7)) (-4 *7 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *7 *8)))) (-4170 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-639 (-293 *7))) (-5 *4 (-639 (-114))) (-5 *5 (-293 *7)) (-4 *7 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *7)))) (-4170 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-293 *7)) (-5 *4 (-114)) (-5 *5 (-639 *7)) (-4 *7 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *7)))) (-4170 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-293 *6)) (-5 *4 (-114)) (-4 *6 (-429 *5)) (-4 *5 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *6)))))
+(-10 -7 (-15 -4170 ((-52) (-293 |#2|) (-114) (-293 |#2|) (-293 |#2|))) (-15 -4170 ((-52) (-293 |#2|) (-114) (-293 |#2|) (-639 |#2|))) (-15 -4170 ((-52) (-639 (-293 |#2|)) (-639 (-114)) (-293 |#2|) (-639 (-293 |#2|)))) (-15 -4170 ((-52) (-639 (-293 |#2|)) (-639 (-114)) (-293 |#2|) (-639 |#2|))) (-15 -4170 ((-52) (-639 |#2|) (-639 (-114)) (-293 |#2|) (-639 |#2|))) (-15 -4170 ((-52) (-639 |#2|) (-639 (-114)) (-293 |#2|) (-639 (-293 |#2|)))) (-15 -4170 ((-52) (-293 |#2|) (-114) (-293 |#2|) |#2|)) (-15 -4170 ((-52) |#2| (-114) (-293 |#2|) |#2|)) (-15 -4170 ((-52) |#2| (-114) (-293 |#2|) (-293 |#2|))) (-15 -4170 ((-52) |#2| (-114) (-293 |#2|) (-639 |#2|))))
+((-2365 (((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-224) (-562) (-1150)) 45) (((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-224) (-562)) 46) (((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-1 (-224) (-224)) (-562) (-1150)) 42) (((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-1 (-224) (-224)) (-562)) 43)) (-2678 (((-1 (-224) (-224)) (-224)) 44)))
+(((-317) (-10 -7 (-15 -2678 ((-1 (-224) (-224)) (-224))) (-15 -2365 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-1 (-224) (-224)) (-562))) (-15 -2365 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-1 (-224) (-224)) (-562) (-1150))) (-15 -2365 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-224) (-562))) (-15 -2365 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-224) (-562) (-1150))))) (T -317))
+((-2365 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224))) (-5 *5 (-1086 (-224))) (-5 *6 (-224)) (-5 *7 (-562)) (-5 *8 (-1150)) (-5 *2 (-1202 (-921))) (-5 *1 (-317)))) (-2365 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224))) (-5 *5 (-1086 (-224))) (-5 *6 (-224)) (-5 *7 (-562)) (-5 *2 (-1202 (-921))) (-5 *1 (-317)))) (-2365 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224))) (-5 *5 (-1086 (-224))) (-5 *6 (-562)) (-5 *7 (-1150)) (-5 *2 (-1202 (-921))) (-5 *1 (-317)))) (-2365 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224))) (-5 *5 (-1086 (-224))) (-5 *6 (-562)) (-5 *2 (-1202 (-921))) (-5 *1 (-317)))) (-2678 (*1 *2 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *1 (-317)) (-5 *3 (-224)))))
+(-10 -7 (-15 -2678 ((-1 (-224) (-224)) (-224))) (-15 -2365 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-1 (-224) (-224)) (-562))) (-15 -2365 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-1 (-224) (-224)) (-562) (-1150))) (-15 -2365 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-224) (-562))) (-15 -2365 ((-1202 (-921)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-224) (-562) (-1150))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 25)) (-1401 (((-639 (-1074)) $) NIL)) (-2443 (((-1168) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1302 (($ $ (-406 (-562))) NIL) (($ $ (-406 (-562)) (-406 (-562))) NIL)) (-4196 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) 20)) (-2987 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL (|has| |#1| (-362)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1644 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4206 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) NIL)) (-3013 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) NIL T CONST)) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-1600 (($ $) 31)) (-1694 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-3521 (((-112) $) NIL (|has| |#1| (-362)))) (-2965 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-406 (-562)) $) NIL) (((-406 (-562)) $ (-406 (-562))) 16)) (-4367 (((-112) $) NIL)) (-1895 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3662 (($ $ (-916)) NIL) (($ $ (-406 (-562))) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-406 (-562))) NIL) (($ $ (-1074) (-406 (-562))) NIL) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4366 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-3081 (($ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192)))))) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-4316 (($ $ (-406 (-562))) NIL)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-4297 (((-406 (-562)) $) 17)) (-1952 (($ (-1241 |#1| |#2| |#3|)) 11)) (-1300 (((-1241 |#1| |#2| |#3|) $) 12)) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-2044 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) NIL) (($ $ $) NIL (|has| (-406 (-562)) (-1104)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-2250 (((-406 (-562)) $) NIL)) (-3022 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) 10)) (-4053 (((-857) $) 37) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554)))) (-2266 ((|#1| $ (-406 (-562))) 29)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-2328 ((|#1| $) NIL)) (-3054 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 27)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 32)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+(((-318 |#1| |#2| |#3|) (-13 (-1237 |#1|) (-787) (-10 -8 (-15 -1952 ($ (-1241 |#1| |#2| |#3|))) (-15 -1300 ((-1241 |#1| |#2| |#3|) $)) (-15 -4297 ((-406 (-562)) $)))) (-13 (-362) (-845)) (-1168) |#1|) (T -318))
+((-1952 (*1 *1 *2) (-12 (-5 *2 (-1241 *3 *4 *5)) (-4 *3 (-13 (-362) (-845))) (-14 *4 (-1168)) (-14 *5 *3) (-5 *1 (-318 *3 *4 *5)))) (-1300 (*1 *2 *1) (-12 (-5 *2 (-1241 *3 *4 *5)) (-5 *1 (-318 *3 *4 *5)) (-4 *3 (-13 (-362) (-845))) (-14 *4 (-1168)) (-14 *5 *3))) (-4297 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-318 *3 *4 *5)) (-4 *3 (-13 (-362) (-845))) (-14 *4 (-1168)) (-14 *5 *3))))
+(-13 (-1237 |#1|) (-787) (-10 -8 (-15 -1952 ($ (-1241 |#1| |#2| |#3|))) (-15 -1300 ((-1241 |#1| |#2| |#3|) $)) (-15 -4297 ((-406 (-562)) $))))
+((-1895 (((-2 (|:| -1300 (-766)) (|:| -4221 |#1|) (|:| |radicand| (-639 |#1|))) (-417 |#1|) (-766)) 24)) (-4366 (((-639 (-2 (|:| -4221 (-766)) (|:| |logand| |#1|))) (-417 |#1|)) 28)))
+(((-319 |#1|) (-10 -7 (-15 -1895 ((-2 (|:| -1300 (-766)) (|:| -4221 |#1|) (|:| |radicand| (-639 |#1|))) (-417 |#1|) (-766))) (-15 -4366 ((-639 (-2 (|:| -4221 (-766)) (|:| |logand| |#1|))) (-417 |#1|)))) (-554)) (T -319))
+((-4366 (*1 *2 *3) (-12 (-5 *3 (-417 *4)) (-4 *4 (-554)) (-5 *2 (-639 (-2 (|:| -4221 (-766)) (|:| |logand| *4)))) (-5 *1 (-319 *4)))) (-1895 (*1 *2 *3 *4) (-12 (-5 *3 (-417 *5)) (-4 *5 (-554)) (-5 *2 (-2 (|:| -1300 (-766)) (|:| -4221 *5) (|:| |radicand| (-639 *5)))) (-5 *1 (-319 *5)) (-5 *4 (-766)))))
+(-10 -7 (-15 -1895 ((-2 (|:| -1300 (-766)) (|:| -4221 |#1|) (|:| |radicand| (-639 |#1|))) (-417 |#1|) (-766))) (-15 -4366 ((-639 (-2 (|:| -4221 (-766)) (|:| |logand| |#1|))) (-417 |#1|))))
+((-1401 (((-639 |#2|) (-1164 |#4|)) 43)) (-1590 ((|#3| (-562)) 46)) (-3272 (((-1164 |#4|) (-1164 |#3|)) 30)) (-2705 (((-1164 |#4|) (-1164 |#4|) (-562)) 55)) (-2252 (((-1164 |#3|) (-1164 |#4|)) 21)) (-2250 (((-639 (-766)) (-1164 |#4|) (-639 |#2|)) 40)) (-1414 (((-1164 |#3|) (-1164 |#4|) (-639 |#2|) (-639 |#3|)) 35)))
+(((-320 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1414 ((-1164 |#3|) (-1164 |#4|) (-639 |#2|) (-639 |#3|))) (-15 -2250 ((-639 (-766)) (-1164 |#4|) (-639 |#2|))) (-15 -1401 ((-639 |#2|) (-1164 |#4|))) (-15 -2252 ((-1164 |#3|) (-1164 |#4|))) (-15 -3272 ((-1164 |#4|) (-1164 |#3|))) (-15 -2705 ((-1164 |#4|) (-1164 |#4|) (-562))) (-15 -1590 (|#3| (-562)))) (-788) (-845) (-1044) (-944 |#3| |#1| |#2|)) (T -320))
+((-1590 (*1 *2 *3) (-12 (-5 *3 (-562)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1044)) (-5 *1 (-320 *4 *5 *2 *6)) (-4 *6 (-944 *2 *4 *5)))) (-2705 (*1 *2 *2 *3) (-12 (-5 *2 (-1164 *7)) (-5 *3 (-562)) (-4 *7 (-944 *6 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-5 *1 (-320 *4 *5 *6 *7)))) (-3272 (*1 *2 *3) (-12 (-5 *3 (-1164 *6)) (-4 *6 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-1164 *7)) (-5 *1 (-320 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))) (-2252 (*1 *2 *3) (-12 (-5 *3 (-1164 *7)) (-4 *7 (-944 *6 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-5 *2 (-1164 *6)) (-5 *1 (-320 *4 *5 *6 *7)))) (-1401 (*1 *2 *3) (-12 (-5 *3 (-1164 *7)) (-4 *7 (-944 *6 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-5 *2 (-639 *5)) (-5 *1 (-320 *4 *5 *6 *7)))) (-2250 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *8)) (-5 *4 (-639 *6)) (-4 *6 (-845)) (-4 *8 (-944 *7 *5 *6)) (-4 *5 (-788)) (-4 *7 (-1044)) (-5 *2 (-639 (-766))) (-5 *1 (-320 *5 *6 *7 *8)))) (-1414 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1164 *9)) (-5 *4 (-639 *7)) (-5 *5 (-639 *8)) (-4 *7 (-845)) (-4 *8 (-1044)) (-4 *9 (-944 *8 *6 *7)) (-4 *6 (-788)) (-5 *2 (-1164 *8)) (-5 *1 (-320 *6 *7 *8 *9)))))
+(-10 -7 (-15 -1414 ((-1164 |#3|) (-1164 |#4|) (-639 |#2|) (-639 |#3|))) (-15 -2250 ((-639 (-766)) (-1164 |#4|) (-639 |#2|))) (-15 -1401 ((-639 |#2|) (-1164 |#4|))) (-15 -2252 ((-1164 |#3|) (-1164 |#4|))) (-15 -3272 ((-1164 |#4|) (-1164 |#3|))) (-15 -2705 ((-1164 |#4|) (-1164 |#4|) (-562))) (-15 -1590 (|#3| (-562))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 14)) (-4196 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-562)))) $) 18)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1382 (((-766) $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3960 ((|#1| $) NIL)) (-3111 ((|#1| $ (-562)) NIL)) (-2826 (((-562) $ (-562)) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2491 (($ (-1 |#1| |#1|) $) NIL)) (-1545 (($ (-1 (-562) (-562)) $) 10)) (-3696 (((-1150) $) NIL)) (-2956 (($ $ $) NIL (|has| (-562) (-787)))) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL) (($ |#1|) NIL)) (-2266 (((-562) |#1| $) NIL)) (-2285 (($) 15 T CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) 21 (|has| |#1| (-845)))) (-1847 (($ $) 11) (($ $ $) 20)) (-1836 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ (-562)) NIL) (($ (-562) |#1|) 19)))
(((-321 |#1|) (-13 (-21) (-712 (-562)) (-322 |#1| (-562)) (-10 -7 (IF (|has| |#1| (-845)) (-6 (-845)) |%noBranch|))) (-1092)) (T -321))
NIL
(-13 (-21) (-712 (-562)) (-322 |#1| (-562)) (-10 -7 (IF (|has| |#1| (-845)) (-6 (-845)) |%noBranch|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1938 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))) $) 27)) (-3214 (((-3 $ "failed") $ $) 19)) (-1382 (((-766) $) 28)) (-1800 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 32)) (-3961 ((|#1| $) 33)) (-3126 ((|#1| $ (-562)) 25)) (-4173 ((|#2| $ (-562)) 26)) (-1304 (($ (-1 |#1| |#1|) $) 22)) (-3344 (($ (-1 |#2| |#2|) $) 23)) (-2913 (((-1150) $) 9)) (-1755 (($ $ $) 21 (|has| |#2| (-787)))) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ |#1|) 31)) (-3906 ((|#2| |#1| $) 24)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1835 (($ $ $) 14) (($ |#1| $) 30)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ |#2| |#1|) 29)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-4196 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))) $) 27)) (-2781 (((-3 $ "failed") $ $) 19)) (-1382 (((-766) $) 28)) (-3329 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 32)) (-3960 ((|#1| $) 33)) (-3111 ((|#1| $ (-562)) 25)) (-2826 ((|#2| $ (-562)) 26)) (-2491 (($ (-1 |#1| |#1|) $) 22)) (-1545 (($ (-1 |#2| |#2|) $) 23)) (-3696 (((-1150) $) 9)) (-2956 (($ $ $) 21 (|has| |#2| (-787)))) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ |#1|) 31)) (-2266 ((|#2| |#1| $) 24)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1836 (($ $ $) 14) (($ |#1| $) 30)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ |#2| |#1|) 29)))
(((-322 |#1| |#2|) (-139) (-1092) (-130)) (T -322))
-((-1835 (*1 *1 *2 *1) (-12 (-4 *1 (-322 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-130)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-322 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-130)))) (-1382 (*1 *2 *1) (-12 (-4 *1 (-322 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-130)) (-5 *2 (-766)))) (-1938 (*1 *2 *1) (-12 (-4 *1 (-322 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-130)) (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 *4)))))) (-4173 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-322 *4 *2)) (-4 *4 (-1092)) (-4 *2 (-130)))) (-3126 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-322 *2 *4)) (-4 *4 (-130)) (-4 *2 (-1092)))) (-3906 (*1 *2 *3 *1) (-12 (-4 *1 (-322 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-130)))) (-3344 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-322 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-130)))) (-1304 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-322 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-130)))) (-1755 (*1 *1 *1 *1) (-12 (-4 *1 (-322 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-130)) (-4 *3 (-787)))))
-(-13 (-130) (-1033 |t#1|) (-10 -8 (-15 -1835 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -1382 ((-766) $)) (-15 -1938 ((-639 (-2 (|:| |gen| |t#1|) (|:| -3430 |t#2|))) $)) (-15 -4173 (|t#2| $ (-562))) (-15 -3126 (|t#1| $ (-562))) (-15 -3906 (|t#2| |t#1| $)) (-15 -3344 ($ (-1 |t#2| |t#2|) $)) (-15 -1304 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-787)) (-15 -1755 ($ $ $)) |%noBranch|)))
+((-1836 (*1 *1 *2 *1) (-12 (-4 *1 (-322 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-130)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-322 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-130)))) (-1382 (*1 *2 *1) (-12 (-4 *1 (-322 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-130)) (-5 *2 (-766)))) (-4196 (*1 *2 *1) (-12 (-4 *1 (-322 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-130)) (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 *4)))))) (-2826 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-322 *4 *2)) (-4 *4 (-1092)) (-4 *2 (-130)))) (-3111 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-322 *2 *4)) (-4 *4 (-130)) (-4 *2 (-1092)))) (-2266 (*1 *2 *3 *1) (-12 (-4 *1 (-322 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-130)))) (-1545 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-322 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-130)))) (-2491 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-322 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-130)))) (-2956 (*1 *1 *1 *1) (-12 (-4 *1 (-322 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-130)) (-4 *3 (-787)))))
+(-13 (-130) (-1033 |t#1|) (-10 -8 (-15 -1836 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -1382 ((-766) $)) (-15 -4196 ((-639 (-2 (|:| |gen| |t#1|) (|:| -3430 |t#2|))) $)) (-15 -2826 (|t#2| $ (-562))) (-15 -3111 (|t#1| $ (-562))) (-15 -2266 (|t#2| |t#1| $)) (-15 -1545 ($ (-1 |t#2| |t#2|) $)) (-15 -2491 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-787)) (-15 -2956 ($ $ $)) |%noBranch|)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-612 |#1|) . T) ((-609 (-857)) . T) ((-1033 |#1|) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1938 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1382 (((-766) $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3961 ((|#1| $) NIL)) (-3126 ((|#1| $ (-562)) NIL)) (-4173 (((-766) $ (-562)) NIL)) (-1304 (($ (-1 |#1| |#1|) $) NIL)) (-3344 (($ (-1 (-766) (-766)) $) NIL)) (-2913 (((-1150) $) NIL)) (-1755 (($ $ $) NIL (|has| (-766) (-787)))) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL) (($ |#1|) NIL)) (-3906 (((-766) |#1| $) NIL)) (-2286 (($) NIL T CONST)) (-1731 (((-112) $ $) NIL)) (-1835 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-766) |#1|) NIL)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-4196 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1382 (((-766) $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3960 ((|#1| $) NIL)) (-3111 ((|#1| $ (-562)) NIL)) (-2826 (((-766) $ (-562)) NIL)) (-2491 (($ (-1 |#1| |#1|) $) NIL)) (-1545 (($ (-1 (-766) (-766)) $) NIL)) (-3696 (((-1150) $) NIL)) (-2956 (($ $ $) NIL (|has| (-766) (-787)))) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL) (($ |#1|) NIL)) (-2266 (((-766) |#1| $) NIL)) (-2285 (($) NIL T CONST)) (-1733 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-766) |#1|) NIL)))
(((-323 |#1|) (-322 |#1| (-766)) (-1092)) (T -323))
NIL
(-322 |#1| (-766))
-((-1498 (($ $) 52)) (-3122 (($ $ |#2| |#3| $) 14)) (-2836 (($ (-1 |#3| |#3|) $) 33)) (-1534 (((-112) $) 24)) (-1547 ((|#2| $) 26)) (-1762 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 43)) (-3900 ((|#2| $) 48)) (-4358 (((-639 |#2|) $) 36)) (-3548 (($ $ $ (-766)) 20)) (-1859 (($ $ |#2|) 40)))
-(((-324 |#1| |#2| |#3|) (-10 -8 (-15 -1498 (|#1| |#1|)) (-15 -3900 (|#2| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3548 (|#1| |#1| |#1| (-766))) (-15 -3122 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2836 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4358 ((-639 |#2|) |#1|)) (-15 -1547 (|#2| |#1|)) (-15 -1534 ((-112) |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1859 (|#1| |#1| |#2|))) (-325 |#2| |#3|) (-1044) (-787)) (T -324))
+((-2578 (($ $) 52)) (-3066 (($ $ |#2| |#3| $) 14)) (-2363 (($ (-1 |#3| |#3|) $) 33)) (-1534 (((-112) $) 24)) (-1547 ((|#2| $) 26)) (-1762 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 43)) (-2201 ((|#2| $) 48)) (-3969 (((-639 |#2|) $) 36)) (-1760 (($ $ $ (-766)) 20)) (-1859 (($ $ |#2|) 40)))
+(((-324 |#1| |#2| |#3|) (-10 -8 (-15 -2578 (|#1| |#1|)) (-15 -2201 (|#2| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1760 (|#1| |#1| |#1| (-766))) (-15 -3066 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2363 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3969 ((-639 |#2|) |#1|)) (-15 -1547 (|#2| |#1|)) (-15 -1534 ((-112) |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1859 (|#1| |#1| |#2|))) (-325 |#2| |#3|) (-1044) (-787)) (T -324))
NIL
-(-10 -8 (-15 -1498 (|#1| |#1|)) (-15 -3900 (|#2| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3548 (|#1| |#1| |#1| (-766))) (-15 -3122 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2836 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4358 ((-639 |#2|) |#1|)) (-15 -1547 (|#2| |#1|)) (-15 -1534 ((-112) |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1859 (|#1| |#1| |#2|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-2796 (($ $) 55 (|has| |#1| (-554)))) (-4370 (((-112) $) 57 (|has| |#1| (-554)))) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 91 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 89 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 86)) (-3961 (((-562) $) 90 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 88 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 87)) (-1601 (($ $) 63)) (-3668 (((-3 $ "failed") $) 33)) (-1498 (($ $) 75 (|has| |#1| (-451)))) (-3122 (($ $ |#1| |#2| $) 79)) (-1957 (((-112) $) 31)) (-1694 (((-766) $) 82)) (-3536 (((-112) $) 65)) (-1378 (($ |#1| |#2|) 64)) (-2076 ((|#2| $) 81)) (-2836 (($ (-1 |#2| |#2|) $) 80)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1534 (((-112) $) 85)) (-1547 ((|#1| $) 84)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554))) (((-3 $ "failed") $ |#1|) 77 (|has| |#1| (-554)))) (-3598 ((|#2| $) 67)) (-3900 ((|#1| $) 76 (|has| |#1| (-451)))) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 52 (|has| |#1| (-554))) (($ |#1|) 50) (($ (-406 (-562))) 60 (-4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562))))))) (-4358 (((-639 |#1|) $) 83)) (-3906 ((|#1| $ |#2|) 62)) (-2805 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-2579 (((-766)) 28)) (-3548 (($ $ $ (-766)) 78 (|has| |#1| (-171)))) (-2922 (((-112) $ $) 56 (|has| |#1| (-554)))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
+(-10 -8 (-15 -2578 (|#1| |#1|)) (-15 -2201 (|#2| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 -1760 (|#1| |#1| |#1| (-766))) (-15 -3066 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2363 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3969 ((-639 |#2|) |#1|)) (-15 -1547 (|#2| |#1|)) (-15 -1534 ((-112) |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1859 (|#1| |#1| |#2|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-1965 (($ $) 55 (|has| |#1| (-554)))) (-4102 (((-112) $) 57 (|has| |#1| (-554)))) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 91 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 89 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 86)) (-3960 (((-562) $) 90 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 88 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 87)) (-1600 (($ $) 63)) (-1694 (((-3 $ "failed") $) 33)) (-2578 (($ $) 75 (|has| |#1| (-451)))) (-3066 (($ $ |#1| |#2| $) 79)) (-4367 (((-112) $) 31)) (-3627 (((-766) $) 82)) (-2833 (((-112) $) 65)) (-1377 (($ |#1| |#2|) 64)) (-3161 ((|#2| $) 81)) (-2363 (($ (-1 |#2| |#2|) $) 80)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1534 (((-112) $) 85)) (-1547 ((|#1| $) 84)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554))) (((-3 $ "failed") $ |#1|) 77 (|has| |#1| (-554)))) (-2250 ((|#2| $) 67)) (-2201 ((|#1| $) 76 (|has| |#1| (-451)))) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 52 (|has| |#1| (-554))) (($ |#1|) 50) (($ (-406 (-562))) 60 (-4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562))))))) (-3969 (((-639 |#1|) $) 83)) (-2266 ((|#1| $ |#2|) 62)) (-2059 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-1568 (((-766)) 28)) (-1760 (($ $ $ (-766)) 78 (|has| |#1| (-171)))) (-3799 (((-112) $ $) 56 (|has| |#1| (-554)))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
(((-325 |#1| |#2|) (-139) (-1044) (-787)) (T -325))
-((-1534 (*1 *2 *1) (-12 (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-5 *2 (-112)))) (-1547 (*1 *2 *1) (-12 (-4 *1 (-325 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)))) (-4358 (*1 *2 *1) (-12 (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-5 *2 (-639 *3)))) (-1694 (*1 *2 *1) (-12 (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-5 *2 (-766)))) (-2076 (*1 *2 *1) (-12 (-4 *1 (-325 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-2836 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)))) (-3122 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-325 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)))) (-3548 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-4 *3 (-171)))) (-1762 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-325 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)) (-4 *2 (-554)))) (-3900 (*1 *2 *1) (-12 (-4 *1 (-325 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)) (-4 *2 (-451)))) (-1498 (*1 *1 *1) (-12 (-4 *1 (-325 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)) (-4 *2 (-451)))))
-(-13 (-47 |t#1| |t#2|) (-410 |t#1|) (-10 -8 (-15 -1534 ((-112) $)) (-15 -1547 (|t#1| $)) (-15 -4358 ((-639 |t#1|) $)) (-15 -1694 ((-766) $)) (-15 -2076 (|t#2| $)) (-15 -2836 ($ (-1 |t#2| |t#2|) $)) (-15 -3122 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-171)) (-15 -3548 ($ $ $ (-766))) |%noBranch|) (IF (|has| |t#1| (-554)) (-15 -1762 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-451)) (PROGN (-15 -3900 (|t#1| $)) (-15 -1498 ($ $))) |%noBranch|)))
+((-1534 (*1 *2 *1) (-12 (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-5 *2 (-112)))) (-1547 (*1 *2 *1) (-12 (-4 *1 (-325 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)))) (-3969 (*1 *2 *1) (-12 (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-5 *2 (-639 *3)))) (-3627 (*1 *2 *1) (-12 (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-5 *2 (-766)))) (-3161 (*1 *2 *1) (-12 (-4 *1 (-325 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-2363 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)))) (-3066 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-325 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)))) (-1760 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-4 *3 (-171)))) (-1762 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-325 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)) (-4 *2 (-554)))) (-2201 (*1 *2 *1) (-12 (-4 *1 (-325 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)) (-4 *2 (-451)))) (-2578 (*1 *1 *1) (-12 (-4 *1 (-325 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)) (-4 *2 (-451)))))
+(-13 (-47 |t#1| |t#2|) (-410 |t#1|) (-10 -8 (-15 -1534 ((-112) $)) (-15 -1547 (|t#1| $)) (-15 -3969 ((-639 |t#1|) $)) (-15 -3627 ((-766) $)) (-15 -3161 (|t#2| $)) (-15 -2363 ($ (-1 |t#2| |t#2|) $)) (-15 -3066 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-171)) (-15 -1760 ($ $ $ (-766))) |%noBranch|) (IF (|has| |t#1| (-554)) (-15 -1762 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-451)) (PROGN (-15 -2201 (|t#1| $)) (-15 -2578 ($ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-406 (-562))) |has| |#1| (-38 (-406 (-562)))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) |has| |#1| (-554)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-406 (-562)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #0#) -4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562))))) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-612 $) |has| |#1| (-554)) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-289) |has| |#1| (-554)) ((-410 |#1|) . T) ((-554) |has| |#1| (-554)) ((-642 #0#) |has| |#1| (-38 (-406 (-562)))) ((-642 |#1|) . T) ((-642 $) . T) ((-712 #0#) |has| |#1| (-38 (-406 (-562)))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) |has| |#1| (-554)) ((-721) . T) ((-1033 (-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 |#1|) . T) ((-1050 #0#) |has| |#1| (-38 (-406 (-562)))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3381 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4403))) (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-4336 (((-112) $ (-766)) NIL)) (-4250 (((-112) (-112)) NIL)) (-4200 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4403)))) (-3111 (($ (-1 (-112) |#1|) $) NIL)) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-4354 (($ $) NIL (|has| |#1| (-1092)))) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4000 (($ |#1| $) NIL (|has| |#1| (-1092))) (($ (-1 (-112) |#1|) $) NIL)) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) NIL)) (-4264 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-2933 (($ $ (-562)) NIL)) (-3189 (((-766) $) NIL)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1458 (($ (-766) |#1|) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2673 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-1610 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-4300 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-3297 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2851 (($ (-639 |#1|)) NIL)) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2716 (($ $ |#1|) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-2878 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) NIL)) (-4142 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-326 |#1|) (-13 (-19 |#1|) (-281 |#1|) (-10 -8 (-15 -2851 ($ (-639 |#1|))) (-15 -3189 ((-766) $)) (-15 -2933 ($ $ (-562))) (-15 -4250 ((-112) (-112))))) (-1207)) (T -326))
-((-2851 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-326 *3)))) (-3189 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-326 *3)) (-4 *3 (-1207)))) (-2933 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-326 *3)) (-4 *3 (-1207)))) (-4250 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-326 *3)) (-4 *3 (-1207)))))
-(-13 (-19 |#1|) (-281 |#1|) (-10 -8 (-15 -2851 ($ (-639 |#1|))) (-15 -3189 ((-766) $)) (-15 -2933 ($ $ (-562))) (-15 -4250 ((-112) (-112)))))
-((-2024 (((-112) $) 42)) (-3285 (((-766)) 22)) (-1748 ((|#2| $) 46) (($ $ (-916)) 100)) (-1382 (((-766)) 101)) (-4018 (($ (-1256 |#2|)) 20)) (-1316 (((-112) $) 114)) (-2247 ((|#2| $) 48) (($ $ (-916)) 98)) (-1565 (((-1164 |#2|) $) NIL) (((-1164 $) $ (-916)) 94)) (-3892 (((-1164 |#2|) $) 82)) (-4203 (((-1164 |#2|) $) 79) (((-3 (-1164 |#2|) "failed") $ $) 76)) (-2393 (($ $ (-1164 |#2|)) 53)) (-4121 (((-828 (-916))) 28) (((-916)) 43)) (-3627 (((-133)) 25)) (-3598 (((-828 (-916)) $) 30) (((-916) $) 116)) (-2624 (($) 107)) (-3593 (((-1256 |#2|) $) NIL) (((-683 |#2|) (-1256 $)) 39)) (-2805 (($ $) NIL) (((-3 $ "failed") $) 85)) (-3694 (((-112) $) 41)))
-(((-327 |#1| |#2|) (-10 -8 (-15 -2805 ((-3 |#1| "failed") |#1|)) (-15 -1382 ((-766))) (-15 -2805 (|#1| |#1|)) (-15 -4203 ((-3 (-1164 |#2|) "failed") |#1| |#1|)) (-15 -4203 ((-1164 |#2|) |#1|)) (-15 -3892 ((-1164 |#2|) |#1|)) (-15 -2393 (|#1| |#1| (-1164 |#2|))) (-15 -1316 ((-112) |#1|)) (-15 -2624 (|#1|)) (-15 -1748 (|#1| |#1| (-916))) (-15 -2247 (|#1| |#1| (-916))) (-15 -1565 ((-1164 |#1|) |#1| (-916))) (-15 -1748 (|#2| |#1|)) (-15 -2247 (|#2| |#1|)) (-15 -3598 ((-916) |#1|)) (-15 -4121 ((-916))) (-15 -1565 ((-1164 |#2|) |#1|)) (-15 -4018 (|#1| (-1256 |#2|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1|)) (-15 -3285 ((-766))) (-15 -4121 ((-828 (-916)))) (-15 -3598 ((-828 (-916)) |#1|)) (-15 -2024 ((-112) |#1|)) (-15 -3694 ((-112) |#1|)) (-15 -3627 ((-133)))) (-328 |#2|) (-362)) (T -327))
-((-3627 (*1 *2) (-12 (-4 *4 (-362)) (-5 *2 (-133)) (-5 *1 (-327 *3 *4)) (-4 *3 (-328 *4)))) (-4121 (*1 *2) (-12 (-4 *4 (-362)) (-5 *2 (-828 (-916))) (-5 *1 (-327 *3 *4)) (-4 *3 (-328 *4)))) (-3285 (*1 *2) (-12 (-4 *4 (-362)) (-5 *2 (-766)) (-5 *1 (-327 *3 *4)) (-4 *3 (-328 *4)))) (-4121 (*1 *2) (-12 (-4 *4 (-362)) (-5 *2 (-916)) (-5 *1 (-327 *3 *4)) (-4 *3 (-328 *4)))) (-1382 (*1 *2) (-12 (-4 *4 (-362)) (-5 *2 (-766)) (-5 *1 (-327 *3 *4)) (-4 *3 (-328 *4)))))
-(-10 -8 (-15 -2805 ((-3 |#1| "failed") |#1|)) (-15 -1382 ((-766))) (-15 -2805 (|#1| |#1|)) (-15 -4203 ((-3 (-1164 |#2|) "failed") |#1| |#1|)) (-15 -4203 ((-1164 |#2|) |#1|)) (-15 -3892 ((-1164 |#2|) |#1|)) (-15 -2393 (|#1| |#1| (-1164 |#2|))) (-15 -1316 ((-112) |#1|)) (-15 -2624 (|#1|)) (-15 -1748 (|#1| |#1| (-916))) (-15 -2247 (|#1| |#1| (-916))) (-15 -1565 ((-1164 |#1|) |#1| (-916))) (-15 -1748 (|#2| |#1|)) (-15 -2247 (|#2| |#1|)) (-15 -3598 ((-916) |#1|)) (-15 -4121 ((-916))) (-15 -1565 ((-1164 |#2|) |#1|)) (-15 -4018 (|#1| (-1256 |#2|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1|)) (-15 -3285 ((-766))) (-15 -4121 ((-828 (-916)))) (-15 -3598 ((-828 (-916)) |#1|)) (-15 -2024 ((-112) |#1|)) (-15 -3694 ((-112) |#1|)) (-15 -3627 ((-133))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-2024 (((-112) $) 95)) (-3285 (((-766)) 91)) (-1748 ((|#1| $) 141) (($ $ (-916)) 138 (|has| |#1| (-367)))) (-3984 (((-1180 (-916) (-766)) (-562)) 123 (|has| |#1| (-367)))) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 74)) (-2921 (((-417 $) $) 73)) (-2569 (((-112) $ $) 60)) (-1382 (((-766)) 113 (|has| |#1| (-367)))) (-1800 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 102)) (-3961 ((|#1| $) 103)) (-4018 (($ (-1256 |#1|)) 147)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) 129 (|has| |#1| (-367)))) (-1811 (($ $ $) 56)) (-3668 (((-3 $ "failed") $) 33)) (-1448 (($) 110 (|has| |#1| (-367)))) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-3529 (($) 125 (|has| |#1| (-367)))) (-1322 (((-112) $) 126 (|has| |#1| (-367)))) (-3589 (($ $ (-766)) 88 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) 87 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2717 (((-112) $) 72)) (-1900 (((-916) $) 128 (|has| |#1| (-367))) (((-828 (-916)) $) 85 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1957 (((-112) $) 31)) (-1846 (($) 136 (|has| |#1| (-367)))) (-1316 (((-112) $) 135 (|has| |#1| (-367)))) (-2247 ((|#1| $) 142) (($ $ (-916)) 139 (|has| |#1| (-367)))) (-3699 (((-3 $ "failed") $) 114 (|has| |#1| (-367)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1565 (((-1164 |#1|) $) 146) (((-1164 $) $ (-916)) 140 (|has| |#1| (-367)))) (-1999 (((-916) $) 111 (|has| |#1| (-367)))) (-3892 (((-1164 |#1|) $) 132 (|has| |#1| (-367)))) (-4203 (((-1164 |#1|) $) 131 (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) 130 (|has| |#1| (-367)))) (-2393 (($ $ (-1164 |#1|)) 133 (|has| |#1| (-367)))) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 71)) (-3729 (($) 115 (|has| |#1| (-367)) CONST)) (-2466 (($ (-916)) 112 (|has| |#1| (-367)))) (-3113 (((-112) $) 94)) (-1709 (((-1112) $) 10)) (-3148 (($) 134 (|has| |#1| (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) 122 (|has| |#1| (-367)))) (-1635 (((-417 $) $) 75)) (-4121 (((-828 (-916))) 92) (((-916)) 144)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1577 (((-766) $) 59)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 58)) (-3362 (((-766) $) 127 (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) 86 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3627 (((-133)) 100)) (-4029 (($ $) 119 (|has| |#1| (-367))) (($ $ (-766)) 117 (|has| |#1| (-367)))) (-3598 (((-828 (-916)) $) 93) (((-916) $) 143)) (-2096 (((-1164 |#1|)) 145)) (-2283 (($) 124 (|has| |#1| (-367)))) (-2624 (($) 137 (|has| |#1| (-367)))) (-3593 (((-1256 |#1|) $) 149) (((-683 |#1|) (-1256 $)) 148)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 121 (|has| |#1| (-367)))) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67) (($ |#1|) 101)) (-2805 (($ $) 120 (|has| |#1| (-367))) (((-3 $ "failed") $) 84 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2579 (((-766)) 28)) (-3928 (((-1256 $)) 151) (((-1256 $) (-916)) 150)) (-2922 (((-112) $ $) 40)) (-3694 (((-112) $) 96)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-4374 (($ $) 90 (|has| |#1| (-367))) (($ $ (-766)) 89 (|has| |#1| (-367)))) (-3114 (($ $) 118 (|has| |#1| (-367))) (($ $ (-766)) 116 (|has| |#1| (-367)))) (-1731 (((-112) $ $) 6)) (-1859 (($ $ $) 66) (($ $ |#1|) 99)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68) (($ $ |#1|) 98) (($ |#1| $) 97)))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3737 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4404))) (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-3735 (((-112) $ (-766)) NIL)) (-2327 (((-112) (-112)) NIL)) (-4200 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4404)))) (-2968 (($ (-1 (-112) |#1|) $) NIL)) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-3923 (($ $) NIL (|has| |#1| (-1092)))) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3729 (($ |#1| $) NIL (|has| |#1| (-1092))) (($ (-1 (-112) |#1|) $) NIL)) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) NIL)) (-4265 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-3917 (($ $ (-562)) NIL)) (-2558 (((-766) $) NIL)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1458 (($ (-766) |#1|) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-3124 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-4103 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1581 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-3295 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-4322 (($ (-639 |#1|)) NIL)) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3510 (($ $ |#1|) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1527 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) NIL)) (-2587 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-326 |#1|) (-13 (-19 |#1|) (-281 |#1|) (-10 -8 (-15 -4322 ($ (-639 |#1|))) (-15 -2558 ((-766) $)) (-15 -3917 ($ $ (-562))) (-15 -2327 ((-112) (-112))))) (-1207)) (T -326))
+((-4322 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-326 *3)))) (-2558 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-326 *3)) (-4 *3 (-1207)))) (-3917 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-326 *3)) (-4 *3 (-1207)))) (-2327 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-326 *3)) (-4 *3 (-1207)))))
+(-13 (-19 |#1|) (-281 |#1|) (-10 -8 (-15 -4322 ($ (-639 |#1|))) (-15 -2558 ((-766) $)) (-15 -3917 ($ $ (-562))) (-15 -2327 ((-112) (-112)))))
+((-3826 (((-112) $) 42)) (-2284 (((-766)) 22)) (-1748 ((|#2| $) 46) (($ $ (-916)) 100)) (-1382 (((-766)) 101)) (-3916 (($ (-1256 |#2|)) 20)) (-1775 (((-112) $) 114)) (-4363 ((|#2| $) 48) (($ $ (-916)) 98)) (-1937 (((-1164 |#2|) $) NIL) (((-1164 $) $ (-916)) 94)) (-2121 (((-1164 |#2|) $) 82)) (-1894 (((-1164 |#2|) $) 79) (((-3 (-1164 |#2|) "failed") $ $) 76)) (-3319 (($ $ (-1164 |#2|)) 53)) (-3548 (((-828 (-916))) 28) (((-916)) 43)) (-4340 (((-133)) 25)) (-2250 (((-828 (-916)) $) 30) (((-916) $) 116)) (-3861 (($) 107)) (-2205 (((-1256 |#2|) $) NIL) (((-683 |#2|) (-1256 $)) 39)) (-2059 (($ $) NIL) (((-3 $ "failed") $) 85)) (-3782 (((-112) $) 41)))
+(((-327 |#1| |#2|) (-10 -8 (-15 -2059 ((-3 |#1| "failed") |#1|)) (-15 -1382 ((-766))) (-15 -2059 (|#1| |#1|)) (-15 -1894 ((-3 (-1164 |#2|) "failed") |#1| |#1|)) (-15 -1894 ((-1164 |#2|) |#1|)) (-15 -2121 ((-1164 |#2|) |#1|)) (-15 -3319 (|#1| |#1| (-1164 |#2|))) (-15 -1775 ((-112) |#1|)) (-15 -3861 (|#1|)) (-15 -1748 (|#1| |#1| (-916))) (-15 -4363 (|#1| |#1| (-916))) (-15 -1937 ((-1164 |#1|) |#1| (-916))) (-15 -1748 (|#2| |#1|)) (-15 -4363 (|#2| |#1|)) (-15 -2250 ((-916) |#1|)) (-15 -3548 ((-916))) (-15 -1937 ((-1164 |#2|) |#1|)) (-15 -3916 (|#1| (-1256 |#2|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1|)) (-15 -2284 ((-766))) (-15 -3548 ((-828 (-916)))) (-15 -2250 ((-828 (-916)) |#1|)) (-15 -3826 ((-112) |#1|)) (-15 -3782 ((-112) |#1|)) (-15 -4340 ((-133)))) (-328 |#2|) (-362)) (T -327))
+((-4340 (*1 *2) (-12 (-4 *4 (-362)) (-5 *2 (-133)) (-5 *1 (-327 *3 *4)) (-4 *3 (-328 *4)))) (-3548 (*1 *2) (-12 (-4 *4 (-362)) (-5 *2 (-828 (-916))) (-5 *1 (-327 *3 *4)) (-4 *3 (-328 *4)))) (-2284 (*1 *2) (-12 (-4 *4 (-362)) (-5 *2 (-766)) (-5 *1 (-327 *3 *4)) (-4 *3 (-328 *4)))) (-3548 (*1 *2) (-12 (-4 *4 (-362)) (-5 *2 (-916)) (-5 *1 (-327 *3 *4)) (-4 *3 (-328 *4)))) (-1382 (*1 *2) (-12 (-4 *4 (-362)) (-5 *2 (-766)) (-5 *1 (-327 *3 *4)) (-4 *3 (-328 *4)))))
+(-10 -8 (-15 -2059 ((-3 |#1| "failed") |#1|)) (-15 -1382 ((-766))) (-15 -2059 (|#1| |#1|)) (-15 -1894 ((-3 (-1164 |#2|) "failed") |#1| |#1|)) (-15 -1894 ((-1164 |#2|) |#1|)) (-15 -2121 ((-1164 |#2|) |#1|)) (-15 -3319 (|#1| |#1| (-1164 |#2|))) (-15 -1775 ((-112) |#1|)) (-15 -3861 (|#1|)) (-15 -1748 (|#1| |#1| (-916))) (-15 -4363 (|#1| |#1| (-916))) (-15 -1937 ((-1164 |#1|) |#1| (-916))) (-15 -1748 (|#2| |#1|)) (-15 -4363 (|#2| |#1|)) (-15 -2250 ((-916) |#1|)) (-15 -3548 ((-916))) (-15 -1937 ((-1164 |#2|) |#1|)) (-15 -3916 (|#1| (-1256 |#2|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1|)) (-15 -2284 ((-766))) (-15 -3548 ((-828 (-916)))) (-15 -2250 ((-828 (-916)) |#1|)) (-15 -3826 ((-112) |#1|)) (-15 -3782 ((-112) |#1|)) (-15 -4340 ((-133))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-3826 (((-112) $) 95)) (-2284 (((-766)) 91)) (-1748 ((|#1| $) 141) (($ $ (-916)) 138 (|has| |#1| (-367)))) (-1755 (((-1180 (-916) (-766)) (-562)) 123 (|has| |#1| (-367)))) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 74)) (-3788 (((-417 $) $) 73)) (-1436 (((-112) $ $) 60)) (-1382 (((-766)) 113 (|has| |#1| (-367)))) (-3329 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 102)) (-3960 ((|#1| $) 103)) (-3916 (($ (-1256 |#1|)) 147)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) 129 (|has| |#1| (-367)))) (-1810 (($ $ $) 56)) (-1694 (((-3 $ "failed") $) 33)) (-1447 (($) 110 (|has| |#1| (-367)))) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-2787 (($) 125 (|has| |#1| (-367)))) (-1844 (((-112) $) 126 (|has| |#1| (-367)))) (-2184 (($ $ (-766)) 88 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) 87 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3521 (((-112) $) 72)) (-1993 (((-916) $) 128 (|has| |#1| (-367))) (((-828 (-916)) $) 85 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4367 (((-112) $) 31)) (-2631 (($) 136 (|has| |#1| (-367)))) (-1775 (((-112) $) 135 (|has| |#1| (-367)))) (-4363 ((|#1| $) 142) (($ $ (-916)) 139 (|has| |#1| (-367)))) (-3828 (((-3 $ "failed") $) 114 (|has| |#1| (-367)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1937 (((-1164 |#1|) $) 146) (((-1164 $) $ (-916)) 140 (|has| |#1| (-367)))) (-3549 (((-916) $) 111 (|has| |#1| (-367)))) (-2121 (((-1164 |#1|) $) 132 (|has| |#1| (-367)))) (-1894 (((-1164 |#1|) $) 131 (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) 130 (|has| |#1| (-367)))) (-3319 (($ $ (-1164 |#1|)) 133 (|has| |#1| (-367)))) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 71)) (-3730 (($) 115 (|has| |#1| (-367)) CONST)) (-2464 (($ (-916)) 112 (|has| |#1| (-367)))) (-2991 (((-112) $) 94)) (-1709 (((-1112) $) 10)) (-3147 (($) 134 (|has| |#1| (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) 122 (|has| |#1| (-367)))) (-1635 (((-417 $) $) 75)) (-3548 (((-828 (-916))) 92) (((-916)) 144)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-2044 (((-766) $) 59)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 58)) (-3543 (((-766) $) 127 (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) 86 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4340 (((-133)) 100)) (-4029 (($ $) 119 (|has| |#1| (-367))) (($ $ (-766)) 117 (|has| |#1| (-367)))) (-2250 (((-828 (-916)) $) 93) (((-916) $) 143)) (-3371 (((-1164 |#1|)) 145)) (-1653 (($) 124 (|has| |#1| (-367)))) (-3861 (($) 137 (|has| |#1| (-367)))) (-2205 (((-1256 |#1|) $) 149) (((-683 |#1|) (-1256 $)) 148)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 121 (|has| |#1| (-367)))) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67) (($ |#1|) 101)) (-2059 (($ $) 120 (|has| |#1| (-367))) (((-3 $ "failed") $) 84 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1568 (((-766)) 28)) (-4291 (((-1256 $)) 151) (((-1256 $) (-916)) 150)) (-3799 (((-112) $ $) 40)) (-3782 (((-112) $) 96)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-4144 (($ $) 90 (|has| |#1| (-367))) (($ $ (-766)) 89 (|has| |#1| (-367)))) (-3113 (($ $) 118 (|has| |#1| (-367))) (($ $ (-766)) 116 (|has| |#1| (-367)))) (-1733 (((-112) $ $) 6)) (-1859 (($ $ $) 66) (($ $ |#1|) 99)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68) (($ $ |#1|) 98) (($ |#1| $) 97)))
(((-328 |#1|) (-139) (-362)) (T -328))
-((-3928 (*1 *2) (-12 (-4 *3 (-362)) (-5 *2 (-1256 *1)) (-4 *1 (-328 *3)))) (-3928 (*1 *2 *3) (-12 (-5 *3 (-916)) (-4 *4 (-362)) (-5 *2 (-1256 *1)) (-4 *1 (-328 *4)))) (-3593 (*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-1256 *3)))) (-3593 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-328 *4)) (-4 *4 (-362)) (-5 *2 (-683 *4)))) (-4018 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-362)) (-4 *1 (-328 *3)))) (-1565 (*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-1164 *3)))) (-2096 (*1 *2) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-1164 *3)))) (-4121 (*1 *2) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-916)))) (-3598 (*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-916)))) (-2247 (*1 *2 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-362)))) (-1748 (*1 *2 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-362)))) (-1565 (*1 *2 *1 *3) (-12 (-5 *3 (-916)) (-4 *4 (-367)) (-4 *4 (-362)) (-5 *2 (-1164 *1)) (-4 *1 (-328 *4)))) (-2247 (*1 *1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)))) (-1748 (*1 *1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)))) (-2624 (*1 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-367)) (-4 *2 (-362)))) (-1846 (*1 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-367)) (-4 *2 (-362)))) (-1316 (*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)) (-5 *2 (-112)))) (-3148 (*1 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-367)) (-4 *2 (-362)))) (-2393 (*1 *1 *1 *2) (-12 (-5 *2 (-1164 *3)) (-4 *3 (-367)) (-4 *1 (-328 *3)) (-4 *3 (-362)))) (-3892 (*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)) (-5 *2 (-1164 *3)))) (-4203 (*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)) (-5 *2 (-1164 *3)))) (-4203 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)) (-5 *2 (-1164 *3)))))
-(-13 (-1275 |t#1|) (-1033 |t#1|) (-10 -8 (-15 -3928 ((-1256 $))) (-15 -3928 ((-1256 $) (-916))) (-15 -3593 ((-1256 |t#1|) $)) (-15 -3593 ((-683 |t#1|) (-1256 $))) (-15 -4018 ($ (-1256 |t#1|))) (-15 -1565 ((-1164 |t#1|) $)) (-15 -2096 ((-1164 |t#1|))) (-15 -4121 ((-916))) (-15 -3598 ((-916) $)) (-15 -2247 (|t#1| $)) (-15 -1748 (|t#1| $)) (IF (|has| |t#1| (-367)) (PROGN (-6 (-348)) (-15 -1565 ((-1164 $) $ (-916))) (-15 -2247 ($ $ (-916))) (-15 -1748 ($ $ (-916))) (-15 -2624 ($)) (-15 -1846 ($)) (-15 -1316 ((-112) $)) (-15 -3148 ($)) (-15 -2393 ($ $ (-1164 |t#1|))) (-15 -3892 ((-1164 |t#1|) $)) (-15 -4203 ((-1164 |t#1|) $)) (-15 -4203 ((-3 (-1164 |t#1|) "failed") $ $))) |%noBranch|)))
+((-4291 (*1 *2) (-12 (-4 *3 (-362)) (-5 *2 (-1256 *1)) (-4 *1 (-328 *3)))) (-4291 (*1 *2 *3) (-12 (-5 *3 (-916)) (-4 *4 (-362)) (-5 *2 (-1256 *1)) (-4 *1 (-328 *4)))) (-2205 (*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-1256 *3)))) (-2205 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-328 *4)) (-4 *4 (-362)) (-5 *2 (-683 *4)))) (-3916 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-362)) (-4 *1 (-328 *3)))) (-1937 (*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-1164 *3)))) (-3371 (*1 *2) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-1164 *3)))) (-3548 (*1 *2) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-916)))) (-2250 (*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-916)))) (-4363 (*1 *2 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-362)))) (-1748 (*1 *2 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-362)))) (-1937 (*1 *2 *1 *3) (-12 (-5 *3 (-916)) (-4 *4 (-367)) (-4 *4 (-362)) (-5 *2 (-1164 *1)) (-4 *1 (-328 *4)))) (-4363 (*1 *1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)))) (-1748 (*1 *1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)))) (-3861 (*1 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-367)) (-4 *2 (-362)))) (-2631 (*1 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-367)) (-4 *2 (-362)))) (-1775 (*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)) (-5 *2 (-112)))) (-3147 (*1 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-367)) (-4 *2 (-362)))) (-3319 (*1 *1 *1 *2) (-12 (-5 *2 (-1164 *3)) (-4 *3 (-367)) (-4 *1 (-328 *3)) (-4 *3 (-362)))) (-2121 (*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)) (-5 *2 (-1164 *3)))) (-1894 (*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)) (-5 *2 (-1164 *3)))) (-1894 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)) (-5 *2 (-1164 *3)))))
+(-13 (-1275 |t#1|) (-1033 |t#1|) (-10 -8 (-15 -4291 ((-1256 $))) (-15 -4291 ((-1256 $) (-916))) (-15 -2205 ((-1256 |t#1|) $)) (-15 -2205 ((-683 |t#1|) (-1256 $))) (-15 -3916 ($ (-1256 |t#1|))) (-15 -1937 ((-1164 |t#1|) $)) (-15 -3371 ((-1164 |t#1|))) (-15 -3548 ((-916))) (-15 -2250 ((-916) $)) (-15 -4363 (|t#1| $)) (-15 -1748 (|t#1| $)) (IF (|has| |t#1| (-367)) (PROGN (-6 (-348)) (-15 -1937 ((-1164 $) $ (-916))) (-15 -4363 ($ $ (-916))) (-15 -1748 ($ $ (-916))) (-15 -3861 ($)) (-15 -2631 ($)) (-15 -1775 ((-112) $)) (-15 -3147 ($)) (-15 -3319 ($ $ (-1164 |t#1|))) (-15 -2121 ((-1164 |t#1|) $)) (-15 -1894 ((-1164 |t#1|) $)) (-15 -1894 ((-3 (-1164 |t#1|) "failed") $ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-144) -4037 (|has| |#1| (-367)) (|has| |#1| (-144))) ((-146) |has| |#1| (-146)) ((-612 #0#) . T) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-232) |has| |#1| (-367)) ((-242) . T) ((-289) . T) ((-306) . T) ((-1275 |#1|) . T) ((-362) . T) ((-401) -4037 (|has| |#1| (-367)) (|has| |#1| (-144))) ((-367) |has| |#1| (-367)) ((-348) |has| |#1| (-367)) ((-451) . T) ((-554) . T) ((-642 #0#) . T) ((-642 |#1|) . T) ((-642 $) . T) ((-712 #0#) . T) ((-712 |#1|) . T) ((-712 $) . T) ((-721) . T) ((-915) . T) ((-1033 |#1|) . T) ((-1050 #0#) . T) ((-1050 |#1|) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1143) |has| |#1| (-367)) ((-1211) . T) ((-1263 |#1|) . T))
-((-4041 (((-112) $ $) NIL)) (-2731 (($ (-1167) $) 87)) (-3290 (($) 76)) (-2269 (((-1112) (-1112)) 9)) (-2683 (($) 77)) (-2307 (($) 89) (($ (-315 (-693))) 97) (($ (-315 (-695))) 93) (($ (-315 (-688))) 101) (($ (-315 (-378))) 108) (($ (-315 (-562))) 104) (($ (-315 (-168 (-378)))) 112)) (-4011 (($ (-1167) $) 88)) (-1991 (($ (-639 (-857))) 78)) (-3422 (((-1261) $) 74)) (-3581 (((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $) 26)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4131 (($ (-1112)) 50)) (-3759 (((-1096) $) 24)) (-1297 (($ (-1084 (-947 (-562))) $) 84) (($ (-1084 (-947 (-562))) (-947 (-562)) $) 85)) (-4109 (($ (-1112)) 86)) (-2943 (($ (-1167) $) 114) (($ (-1167) $ $) 115)) (-3075 (($ (-1168) (-639 (-1168))) 75)) (-2718 (($ (-1150)) 81) (($ (-639 (-1150))) 79)) (-4054 (((-857) $) 117)) (-3473 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1168)) (|:| |arrayIndex| (-639 (-947 (-562)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2404 (-857)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1168)) (|:| |rand| (-857)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1167)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -2974 (-112)) (|:| -2534 (-2 (|:| |ints2Floats?| (-112)) (|:| -2404 (-857)))))) (|:| |blockBranch| (-639 $)) (|:| |commentBranch| (-639 (-1150))) (|:| |callBranch| (-1150)) (|:| |forBranch| (-2 (|:| -1590 (-1084 (-947 (-562)))) (|:| |span| (-947 (-562))) (|:| -3265 $))) (|:| |labelBranch| (-1112)) (|:| |loopBranch| (-2 (|:| |switch| (-1167)) (|:| -3265 $))) (|:| |commonBranch| (-2 (|:| -3254 (-1168)) (|:| |contents| (-639 (-1168))))) (|:| |printBranch| (-639 (-857)))) $) 43)) (-1385 (($ (-1150)) 186)) (-1488 (($ (-639 $)) 113)) (-1855 (($ (-1168) (-1150)) 119) (($ (-1168) (-315 (-695))) 159) (($ (-1168) (-315 (-693))) 160) (($ (-1168) (-315 (-688))) 161) (($ (-1168) (-683 (-695))) 122) (($ (-1168) (-683 (-693))) 125) (($ (-1168) (-683 (-688))) 128) (($ (-1168) (-1256 (-695))) 131) (($ (-1168) (-1256 (-693))) 134) (($ (-1168) (-1256 (-688))) 137) (($ (-1168) (-683 (-315 (-695)))) 140) (($ (-1168) (-683 (-315 (-693)))) 143) (($ (-1168) (-683 (-315 (-688)))) 146) (($ (-1168) (-1256 (-315 (-695)))) 149) (($ (-1168) (-1256 (-315 (-693)))) 152) (($ (-1168) (-1256 (-315 (-688)))) 155) (($ (-1168) (-639 (-947 (-562))) (-315 (-695))) 156) (($ (-1168) (-639 (-947 (-562))) (-315 (-693))) 157) (($ (-1168) (-639 (-947 (-562))) (-315 (-688))) 158) (($ (-1168) (-315 (-562))) 183) (($ (-1168) (-315 (-378))) 184) (($ (-1168) (-315 (-168 (-378)))) 185) (($ (-1168) (-683 (-315 (-562)))) 164) (($ (-1168) (-683 (-315 (-378)))) 167) (($ (-1168) (-683 (-315 (-168 (-378))))) 170) (($ (-1168) (-1256 (-315 (-562)))) 173) (($ (-1168) (-1256 (-315 (-378)))) 176) (($ (-1168) (-1256 (-315 (-168 (-378))))) 179) (($ (-1168) (-639 (-947 (-562))) (-315 (-562))) 180) (($ (-1168) (-639 (-947 (-562))) (-315 (-378))) 181) (($ (-1168) (-639 (-947 (-562))) (-315 (-168 (-378)))) 182)) (-1731 (((-112) $ $) NIL)))
-(((-329) (-13 (-1092) (-10 -8 (-15 -1297 ($ (-1084 (-947 (-562))) $)) (-15 -1297 ($ (-1084 (-947 (-562))) (-947 (-562)) $)) (-15 -2731 ($ (-1167) $)) (-15 -4011 ($ (-1167) $)) (-15 -4131 ($ (-1112))) (-15 -4109 ($ (-1112))) (-15 -2718 ($ (-1150))) (-15 -2718 ($ (-639 (-1150)))) (-15 -1385 ($ (-1150))) (-15 -2307 ($)) (-15 -2307 ($ (-315 (-693)))) (-15 -2307 ($ (-315 (-695)))) (-15 -2307 ($ (-315 (-688)))) (-15 -2307 ($ (-315 (-378)))) (-15 -2307 ($ (-315 (-562)))) (-15 -2307 ($ (-315 (-168 (-378))))) (-15 -2943 ($ (-1167) $)) (-15 -2943 ($ (-1167) $ $)) (-15 -1855 ($ (-1168) (-1150))) (-15 -1855 ($ (-1168) (-315 (-695)))) (-15 -1855 ($ (-1168) (-315 (-693)))) (-15 -1855 ($ (-1168) (-315 (-688)))) (-15 -1855 ($ (-1168) (-683 (-695)))) (-15 -1855 ($ (-1168) (-683 (-693)))) (-15 -1855 ($ (-1168) (-683 (-688)))) (-15 -1855 ($ (-1168) (-1256 (-695)))) (-15 -1855 ($ (-1168) (-1256 (-693)))) (-15 -1855 ($ (-1168) (-1256 (-688)))) (-15 -1855 ($ (-1168) (-683 (-315 (-695))))) (-15 -1855 ($ (-1168) (-683 (-315 (-693))))) (-15 -1855 ($ (-1168) (-683 (-315 (-688))))) (-15 -1855 ($ (-1168) (-1256 (-315 (-695))))) (-15 -1855 ($ (-1168) (-1256 (-315 (-693))))) (-15 -1855 ($ (-1168) (-1256 (-315 (-688))))) (-15 -1855 ($ (-1168) (-639 (-947 (-562))) (-315 (-695)))) (-15 -1855 ($ (-1168) (-639 (-947 (-562))) (-315 (-693)))) (-15 -1855 ($ (-1168) (-639 (-947 (-562))) (-315 (-688)))) (-15 -1855 ($ (-1168) (-315 (-562)))) (-15 -1855 ($ (-1168) (-315 (-378)))) (-15 -1855 ($ (-1168) (-315 (-168 (-378))))) (-15 -1855 ($ (-1168) (-683 (-315 (-562))))) (-15 -1855 ($ (-1168) (-683 (-315 (-378))))) (-15 -1855 ($ (-1168) (-683 (-315 (-168 (-378)))))) (-15 -1855 ($ (-1168) (-1256 (-315 (-562))))) (-15 -1855 ($ (-1168) (-1256 (-315 (-378))))) (-15 -1855 ($ (-1168) (-1256 (-315 (-168 (-378)))))) (-15 -1855 ($ (-1168) (-639 (-947 (-562))) (-315 (-562)))) (-15 -1855 ($ (-1168) (-639 (-947 (-562))) (-315 (-378)))) (-15 -1855 ($ (-1168) (-639 (-947 (-562))) (-315 (-168 (-378))))) (-15 -1488 ($ (-639 $))) (-15 -3290 ($)) (-15 -2683 ($)) (-15 -1991 ($ (-639 (-857)))) (-15 -3075 ($ (-1168) (-639 (-1168)))) (-15 -3581 ((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $)) (-15 -3473 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1168)) (|:| |arrayIndex| (-639 (-947 (-562)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2404 (-857)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1168)) (|:| |rand| (-857)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1167)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -2974 (-112)) (|:| -2534 (-2 (|:| |ints2Floats?| (-112)) (|:| -2404 (-857)))))) (|:| |blockBranch| (-639 $)) (|:| |commentBranch| (-639 (-1150))) (|:| |callBranch| (-1150)) (|:| |forBranch| (-2 (|:| -1590 (-1084 (-947 (-562)))) (|:| |span| (-947 (-562))) (|:| -3265 $))) (|:| |labelBranch| (-1112)) (|:| |loopBranch| (-2 (|:| |switch| (-1167)) (|:| -3265 $))) (|:| |commonBranch| (-2 (|:| -3254 (-1168)) (|:| |contents| (-639 (-1168))))) (|:| |printBranch| (-639 (-857)))) $)) (-15 -3422 ((-1261) $)) (-15 -3759 ((-1096) $)) (-15 -2269 ((-1112) (-1112)))))) (T -329))
-((-1297 (*1 *1 *2 *1) (-12 (-5 *2 (-1084 (-947 (-562)))) (-5 *1 (-329)))) (-1297 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1084 (-947 (-562)))) (-5 *3 (-947 (-562))) (-5 *1 (-329)))) (-2731 (*1 *1 *2 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))) (-4011 (*1 *1 *2 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))) (-4131 (*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-329)))) (-4109 (*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-329)))) (-2718 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-329)))) (-2718 (*1 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-329)))) (-1385 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-329)))) (-2307 (*1 *1) (-5 *1 (-329))) (-2307 (*1 *1 *2) (-12 (-5 *2 (-315 (-693))) (-5 *1 (-329)))) (-2307 (*1 *1 *2) (-12 (-5 *2 (-315 (-695))) (-5 *1 (-329)))) (-2307 (*1 *1 *2) (-12 (-5 *2 (-315 (-688))) (-5 *1 (-329)))) (-2307 (*1 *1 *2) (-12 (-5 *2 (-315 (-378))) (-5 *1 (-329)))) (-2307 (*1 *1 *2) (-12 (-5 *2 (-315 (-562))) (-5 *1 (-329)))) (-2307 (*1 *1 *2) (-12 (-5 *2 (-315 (-168 (-378)))) (-5 *1 (-329)))) (-2943 (*1 *1 *2 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))) (-2943 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1150)) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-695))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-693))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-688))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-695))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-693))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-688))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-695))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-693))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-688))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-695)))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-693)))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-688)))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-695)))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-693)))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-688)))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-315 (-695))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-315 (-693))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-315 (-688))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-562))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-378))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-168 (-378)))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-562)))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-378)))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-168 (-378))))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-562)))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-378)))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-168 (-378))))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-315 (-562))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-315 (-378))) (-5 *1 (-329)))) (-1855 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-315 (-168 (-378)))) (-5 *1 (-329)))) (-1488 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-5 *1 (-329)))) (-3290 (*1 *1) (-5 *1 (-329))) (-2683 (*1 *1) (-5 *1 (-329))) (-1991 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-329)))) (-3075 (*1 *1 *2 *3) (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1168)) (-5 *1 (-329)))) (-3581 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print"))) (-5 *1 (-329)))) (-3473 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1168)) (|:| |arrayIndex| (-639 (-947 (-562)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2404 (-857)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1168)) (|:| |rand| (-857)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1167)) (|:| |thenClause| (-329)) (|:| |elseClause| (-329)))) (|:| |returnBranch| (-2 (|:| -2974 (-112)) (|:| -2534 (-2 (|:| |ints2Floats?| (-112)) (|:| -2404 (-857)))))) (|:| |blockBranch| (-639 (-329))) (|:| |commentBranch| (-639 (-1150))) (|:| |callBranch| (-1150)) (|:| |forBranch| (-2 (|:| -1590 (-1084 (-947 (-562)))) (|:| |span| (-947 (-562))) (|:| -3265 (-329)))) (|:| |labelBranch| (-1112)) (|:| |loopBranch| (-2 (|:| |switch| (-1167)) (|:| -3265 (-329)))) (|:| |commonBranch| (-2 (|:| -3254 (-1168)) (|:| |contents| (-639 (-1168))))) (|:| |printBranch| (-639 (-857))))) (-5 *1 (-329)))) (-3422 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-329)))) (-3759 (*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-329)))) (-2269 (*1 *2 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-329)))))
-(-13 (-1092) (-10 -8 (-15 -1297 ($ (-1084 (-947 (-562))) $)) (-15 -1297 ($ (-1084 (-947 (-562))) (-947 (-562)) $)) (-15 -2731 ($ (-1167) $)) (-15 -4011 ($ (-1167) $)) (-15 -4131 ($ (-1112))) (-15 -4109 ($ (-1112))) (-15 -2718 ($ (-1150))) (-15 -2718 ($ (-639 (-1150)))) (-15 -1385 ($ (-1150))) (-15 -2307 ($)) (-15 -2307 ($ (-315 (-693)))) (-15 -2307 ($ (-315 (-695)))) (-15 -2307 ($ (-315 (-688)))) (-15 -2307 ($ (-315 (-378)))) (-15 -2307 ($ (-315 (-562)))) (-15 -2307 ($ (-315 (-168 (-378))))) (-15 -2943 ($ (-1167) $)) (-15 -2943 ($ (-1167) $ $)) (-15 -1855 ($ (-1168) (-1150))) (-15 -1855 ($ (-1168) (-315 (-695)))) (-15 -1855 ($ (-1168) (-315 (-693)))) (-15 -1855 ($ (-1168) (-315 (-688)))) (-15 -1855 ($ (-1168) (-683 (-695)))) (-15 -1855 ($ (-1168) (-683 (-693)))) (-15 -1855 ($ (-1168) (-683 (-688)))) (-15 -1855 ($ (-1168) (-1256 (-695)))) (-15 -1855 ($ (-1168) (-1256 (-693)))) (-15 -1855 ($ (-1168) (-1256 (-688)))) (-15 -1855 ($ (-1168) (-683 (-315 (-695))))) (-15 -1855 ($ (-1168) (-683 (-315 (-693))))) (-15 -1855 ($ (-1168) (-683 (-315 (-688))))) (-15 -1855 ($ (-1168) (-1256 (-315 (-695))))) (-15 -1855 ($ (-1168) (-1256 (-315 (-693))))) (-15 -1855 ($ (-1168) (-1256 (-315 (-688))))) (-15 -1855 ($ (-1168) (-639 (-947 (-562))) (-315 (-695)))) (-15 -1855 ($ (-1168) (-639 (-947 (-562))) (-315 (-693)))) (-15 -1855 ($ (-1168) (-639 (-947 (-562))) (-315 (-688)))) (-15 -1855 ($ (-1168) (-315 (-562)))) (-15 -1855 ($ (-1168) (-315 (-378)))) (-15 -1855 ($ (-1168) (-315 (-168 (-378))))) (-15 -1855 ($ (-1168) (-683 (-315 (-562))))) (-15 -1855 ($ (-1168) (-683 (-315 (-378))))) (-15 -1855 ($ (-1168) (-683 (-315 (-168 (-378)))))) (-15 -1855 ($ (-1168) (-1256 (-315 (-562))))) (-15 -1855 ($ (-1168) (-1256 (-315 (-378))))) (-15 -1855 ($ (-1168) (-1256 (-315 (-168 (-378)))))) (-15 -1855 ($ (-1168) (-639 (-947 (-562))) (-315 (-562)))) (-15 -1855 ($ (-1168) (-639 (-947 (-562))) (-315 (-378)))) (-15 -1855 ($ (-1168) (-639 (-947 (-562))) (-315 (-168 (-378))))) (-15 -1488 ($ (-639 $))) (-15 -3290 ($)) (-15 -2683 ($)) (-15 -1991 ($ (-639 (-857)))) (-15 -3075 ($ (-1168) (-639 (-1168)))) (-15 -3581 ((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $)) (-15 -3473 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1168)) (|:| |arrayIndex| (-639 (-947 (-562)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2404 (-857)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1168)) (|:| |rand| (-857)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1167)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -2974 (-112)) (|:| -2534 (-2 (|:| |ints2Floats?| (-112)) (|:| -2404 (-857)))))) (|:| |blockBranch| (-639 $)) (|:| |commentBranch| (-639 (-1150))) (|:| |callBranch| (-1150)) (|:| |forBranch| (-2 (|:| -1590 (-1084 (-947 (-562)))) (|:| |span| (-947 (-562))) (|:| -3265 $))) (|:| |labelBranch| (-1112)) (|:| |loopBranch| (-2 (|:| |switch| (-1167)) (|:| -3265 $))) (|:| |commonBranch| (-2 (|:| -3254 (-1168)) (|:| |contents| (-639 (-1168))))) (|:| |printBranch| (-639 (-857)))) $)) (-15 -3422 ((-1261) $)) (-15 -3759 ((-1096) $)) (-15 -2269 ((-1112) (-1112)))))
-((-4041 (((-112) $ $) NIL)) (-4006 (((-112) $) 11)) (-4074 (($ |#1|) 8)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4087 (($ |#1|) 9)) (-4054 (((-857) $) 17)) (-2828 ((|#1| $) 12)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 19)))
-(((-330 |#1|) (-13 (-845) (-10 -8 (-15 -4074 ($ |#1|)) (-15 -4087 ($ |#1|)) (-15 -4006 ((-112) $)) (-15 -2828 (|#1| $)))) (-845)) (T -330))
-((-4074 (*1 *1 *2) (-12 (-5 *1 (-330 *2)) (-4 *2 (-845)))) (-4087 (*1 *1 *2) (-12 (-5 *1 (-330 *2)) (-4 *2 (-845)))) (-4006 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-330 *3)) (-4 *3 (-845)))) (-2828 (*1 *2 *1) (-12 (-5 *1 (-330 *2)) (-4 *2 (-845)))))
-(-13 (-845) (-10 -8 (-15 -4074 ($ |#1|)) (-15 -4087 ($ |#1|)) (-15 -4006 ((-112) $)) (-15 -2828 (|#1| $))))
-((-2360 (((-329) (-1168) (-947 (-562))) 23)) (-3841 (((-329) (-1168) (-947 (-562))) 27)) (-2496 (((-329) (-1168) (-1084 (-947 (-562))) (-1084 (-947 (-562)))) 26) (((-329) (-1168) (-947 (-562)) (-947 (-562))) 24)) (-2213 (((-329) (-1168) (-947 (-562))) 31)))
-(((-331) (-10 -7 (-15 -2360 ((-329) (-1168) (-947 (-562)))) (-15 -2496 ((-329) (-1168) (-947 (-562)) (-947 (-562)))) (-15 -2496 ((-329) (-1168) (-1084 (-947 (-562))) (-1084 (-947 (-562))))) (-15 -3841 ((-329) (-1168) (-947 (-562)))) (-15 -2213 ((-329) (-1168) (-947 (-562)))))) (T -331))
-((-2213 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329)) (-5 *1 (-331)))) (-3841 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329)) (-5 *1 (-331)))) (-2496 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-1084 (-947 (-562)))) (-5 *2 (-329)) (-5 *1 (-331)))) (-2496 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329)) (-5 *1 (-331)))) (-2360 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329)) (-5 *1 (-331)))))
-(-10 -7 (-15 -2360 ((-329) (-1168) (-947 (-562)))) (-15 -2496 ((-329) (-1168) (-947 (-562)) (-947 (-562)))) (-15 -2496 ((-329) (-1168) (-1084 (-947 (-562))) (-1084 (-947 (-562))))) (-15 -3841 ((-329) (-1168) (-947 (-562)))) (-15 -2213 ((-329) (-1168) (-947 (-562)))))
+((-4041 (((-112) $ $) NIL)) (-2511 (($ (-1167) $) 87)) (-3292 (($) 76)) (-1496 (((-1112) (-1112)) 9)) (-2682 (($) 77)) (-3705 (($) 89) (($ (-315 (-693))) 97) (($ (-315 (-695))) 93) (($ (-315 (-688))) 101) (($ (-315 (-378))) 108) (($ (-315 (-562))) 104) (($ (-315 (-168 (-378)))) 112)) (-3833 (($ (-1167) $) 88)) (-3471 (($ (-639 (-857))) 78)) (-2932 (((-1261) $) 74)) (-3582 (((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $) 26)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2506 (($ (-1112)) 50)) (-3162 (((-1096) $) 24)) (-1327 (($ (-1084 (-947 (-562))) $) 84) (($ (-1084 (-947 (-562))) (-947 (-562)) $) 85)) (-4109 (($ (-1112)) 86)) (-2942 (($ (-1167) $) 114) (($ (-1167) $ $) 115)) (-3073 (($ (-1168) (-639 (-1168))) 75)) (-2718 (($ (-1150)) 81) (($ (-639 (-1150))) 79)) (-4053 (((-857) $) 117)) (-3473 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1168)) (|:| |arrayIndex| (-639 (-947 (-562)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2400 (-857)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1168)) (|:| |rand| (-857)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1167)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3087 (-112)) (|:| -2533 (-2 (|:| |ints2Floats?| (-112)) (|:| -2400 (-857)))))) (|:| |blockBranch| (-639 $)) (|:| |commentBranch| (-639 (-1150))) (|:| |callBranch| (-1150)) (|:| |forBranch| (-2 (|:| -2147 (-1084 (-947 (-562)))) (|:| |span| (-947 (-562))) (|:| -3265 $))) (|:| |labelBranch| (-1112)) (|:| |loopBranch| (-2 (|:| |switch| (-1167)) (|:| -3265 $))) (|:| |commonBranch| (-2 (|:| -3253 (-1168)) (|:| |contents| (-639 (-1168))))) (|:| |printBranch| (-639 (-857)))) $) 43)) (-1385 (($ (-1150)) 186)) (-2508 (($ (-639 $)) 113)) (-2714 (($ (-1168) (-1150)) 119) (($ (-1168) (-315 (-695))) 159) (($ (-1168) (-315 (-693))) 160) (($ (-1168) (-315 (-688))) 161) (($ (-1168) (-683 (-695))) 122) (($ (-1168) (-683 (-693))) 125) (($ (-1168) (-683 (-688))) 128) (($ (-1168) (-1256 (-695))) 131) (($ (-1168) (-1256 (-693))) 134) (($ (-1168) (-1256 (-688))) 137) (($ (-1168) (-683 (-315 (-695)))) 140) (($ (-1168) (-683 (-315 (-693)))) 143) (($ (-1168) (-683 (-315 (-688)))) 146) (($ (-1168) (-1256 (-315 (-695)))) 149) (($ (-1168) (-1256 (-315 (-693)))) 152) (($ (-1168) (-1256 (-315 (-688)))) 155) (($ (-1168) (-639 (-947 (-562))) (-315 (-695))) 156) (($ (-1168) (-639 (-947 (-562))) (-315 (-693))) 157) (($ (-1168) (-639 (-947 (-562))) (-315 (-688))) 158) (($ (-1168) (-315 (-562))) 183) (($ (-1168) (-315 (-378))) 184) (($ (-1168) (-315 (-168 (-378)))) 185) (($ (-1168) (-683 (-315 (-562)))) 164) (($ (-1168) (-683 (-315 (-378)))) 167) (($ (-1168) (-683 (-315 (-168 (-378))))) 170) (($ (-1168) (-1256 (-315 (-562)))) 173) (($ (-1168) (-1256 (-315 (-378)))) 176) (($ (-1168) (-1256 (-315 (-168 (-378))))) 179) (($ (-1168) (-639 (-947 (-562))) (-315 (-562))) 180) (($ (-1168) (-639 (-947 (-562))) (-315 (-378))) 181) (($ (-1168) (-639 (-947 (-562))) (-315 (-168 (-378)))) 182)) (-1733 (((-112) $ $) NIL)))
+(((-329) (-13 (-1092) (-10 -8 (-15 -1327 ($ (-1084 (-947 (-562))) $)) (-15 -1327 ($ (-1084 (-947 (-562))) (-947 (-562)) $)) (-15 -2511 ($ (-1167) $)) (-15 -3833 ($ (-1167) $)) (-15 -2506 ($ (-1112))) (-15 -4109 ($ (-1112))) (-15 -2718 ($ (-1150))) (-15 -2718 ($ (-639 (-1150)))) (-15 -1385 ($ (-1150))) (-15 -3705 ($)) (-15 -3705 ($ (-315 (-693)))) (-15 -3705 ($ (-315 (-695)))) (-15 -3705 ($ (-315 (-688)))) (-15 -3705 ($ (-315 (-378)))) (-15 -3705 ($ (-315 (-562)))) (-15 -3705 ($ (-315 (-168 (-378))))) (-15 -2942 ($ (-1167) $)) (-15 -2942 ($ (-1167) $ $)) (-15 -2714 ($ (-1168) (-1150))) (-15 -2714 ($ (-1168) (-315 (-695)))) (-15 -2714 ($ (-1168) (-315 (-693)))) (-15 -2714 ($ (-1168) (-315 (-688)))) (-15 -2714 ($ (-1168) (-683 (-695)))) (-15 -2714 ($ (-1168) (-683 (-693)))) (-15 -2714 ($ (-1168) (-683 (-688)))) (-15 -2714 ($ (-1168) (-1256 (-695)))) (-15 -2714 ($ (-1168) (-1256 (-693)))) (-15 -2714 ($ (-1168) (-1256 (-688)))) (-15 -2714 ($ (-1168) (-683 (-315 (-695))))) (-15 -2714 ($ (-1168) (-683 (-315 (-693))))) (-15 -2714 ($ (-1168) (-683 (-315 (-688))))) (-15 -2714 ($ (-1168) (-1256 (-315 (-695))))) (-15 -2714 ($ (-1168) (-1256 (-315 (-693))))) (-15 -2714 ($ (-1168) (-1256 (-315 (-688))))) (-15 -2714 ($ (-1168) (-639 (-947 (-562))) (-315 (-695)))) (-15 -2714 ($ (-1168) (-639 (-947 (-562))) (-315 (-693)))) (-15 -2714 ($ (-1168) (-639 (-947 (-562))) (-315 (-688)))) (-15 -2714 ($ (-1168) (-315 (-562)))) (-15 -2714 ($ (-1168) (-315 (-378)))) (-15 -2714 ($ (-1168) (-315 (-168 (-378))))) (-15 -2714 ($ (-1168) (-683 (-315 (-562))))) (-15 -2714 ($ (-1168) (-683 (-315 (-378))))) (-15 -2714 ($ (-1168) (-683 (-315 (-168 (-378)))))) (-15 -2714 ($ (-1168) (-1256 (-315 (-562))))) (-15 -2714 ($ (-1168) (-1256 (-315 (-378))))) (-15 -2714 ($ (-1168) (-1256 (-315 (-168 (-378)))))) (-15 -2714 ($ (-1168) (-639 (-947 (-562))) (-315 (-562)))) (-15 -2714 ($ (-1168) (-639 (-947 (-562))) (-315 (-378)))) (-15 -2714 ($ (-1168) (-639 (-947 (-562))) (-315 (-168 (-378))))) (-15 -2508 ($ (-639 $))) (-15 -3292 ($)) (-15 -2682 ($)) (-15 -3471 ($ (-639 (-857)))) (-15 -3073 ($ (-1168) (-639 (-1168)))) (-15 -3582 ((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $)) (-15 -3473 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1168)) (|:| |arrayIndex| (-639 (-947 (-562)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2400 (-857)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1168)) (|:| |rand| (-857)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1167)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3087 (-112)) (|:| -2533 (-2 (|:| |ints2Floats?| (-112)) (|:| -2400 (-857)))))) (|:| |blockBranch| (-639 $)) (|:| |commentBranch| (-639 (-1150))) (|:| |callBranch| (-1150)) (|:| |forBranch| (-2 (|:| -2147 (-1084 (-947 (-562)))) (|:| |span| (-947 (-562))) (|:| -3265 $))) (|:| |labelBranch| (-1112)) (|:| |loopBranch| (-2 (|:| |switch| (-1167)) (|:| -3265 $))) (|:| |commonBranch| (-2 (|:| -3253 (-1168)) (|:| |contents| (-639 (-1168))))) (|:| |printBranch| (-639 (-857)))) $)) (-15 -2932 ((-1261) $)) (-15 -3162 ((-1096) $)) (-15 -1496 ((-1112) (-1112)))))) (T -329))
+((-1327 (*1 *1 *2 *1) (-12 (-5 *2 (-1084 (-947 (-562)))) (-5 *1 (-329)))) (-1327 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1084 (-947 (-562)))) (-5 *3 (-947 (-562))) (-5 *1 (-329)))) (-2511 (*1 *1 *2 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))) (-3833 (*1 *1 *2 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))) (-2506 (*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-329)))) (-4109 (*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-329)))) (-2718 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-329)))) (-2718 (*1 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-329)))) (-1385 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-329)))) (-3705 (*1 *1) (-5 *1 (-329))) (-3705 (*1 *1 *2) (-12 (-5 *2 (-315 (-693))) (-5 *1 (-329)))) (-3705 (*1 *1 *2) (-12 (-5 *2 (-315 (-695))) (-5 *1 (-329)))) (-3705 (*1 *1 *2) (-12 (-5 *2 (-315 (-688))) (-5 *1 (-329)))) (-3705 (*1 *1 *2) (-12 (-5 *2 (-315 (-378))) (-5 *1 (-329)))) (-3705 (*1 *1 *2) (-12 (-5 *2 (-315 (-562))) (-5 *1 (-329)))) (-3705 (*1 *1 *2) (-12 (-5 *2 (-315 (-168 (-378)))) (-5 *1 (-329)))) (-2942 (*1 *1 *2 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))) (-2942 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1150)) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-695))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-693))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-688))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-695))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-693))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-688))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-695))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-693))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-688))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-695)))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-693)))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-688)))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-695)))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-693)))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-688)))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-315 (-695))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-315 (-693))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-315 (-688))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-562))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-378))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-168 (-378)))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-562)))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-378)))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-168 (-378))))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-562)))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-378)))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-168 (-378))))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-315 (-562))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-315 (-378))) (-5 *1 (-329)))) (-2714 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-315 (-168 (-378)))) (-5 *1 (-329)))) (-2508 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-5 *1 (-329)))) (-3292 (*1 *1) (-5 *1 (-329))) (-2682 (*1 *1) (-5 *1 (-329))) (-3471 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-329)))) (-3073 (*1 *1 *2 *3) (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1168)) (-5 *1 (-329)))) (-3582 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print"))) (-5 *1 (-329)))) (-3473 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1168)) (|:| |arrayIndex| (-639 (-947 (-562)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2400 (-857)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1168)) (|:| |rand| (-857)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1167)) (|:| |thenClause| (-329)) (|:| |elseClause| (-329)))) (|:| |returnBranch| (-2 (|:| -3087 (-112)) (|:| -2533 (-2 (|:| |ints2Floats?| (-112)) (|:| -2400 (-857)))))) (|:| |blockBranch| (-639 (-329))) (|:| |commentBranch| (-639 (-1150))) (|:| |callBranch| (-1150)) (|:| |forBranch| (-2 (|:| -2147 (-1084 (-947 (-562)))) (|:| |span| (-947 (-562))) (|:| -3265 (-329)))) (|:| |labelBranch| (-1112)) (|:| |loopBranch| (-2 (|:| |switch| (-1167)) (|:| -3265 (-329)))) (|:| |commonBranch| (-2 (|:| -3253 (-1168)) (|:| |contents| (-639 (-1168))))) (|:| |printBranch| (-639 (-857))))) (-5 *1 (-329)))) (-2932 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-329)))) (-3162 (*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-329)))) (-1496 (*1 *2 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-329)))))
+(-13 (-1092) (-10 -8 (-15 -1327 ($ (-1084 (-947 (-562))) $)) (-15 -1327 ($ (-1084 (-947 (-562))) (-947 (-562)) $)) (-15 -2511 ($ (-1167) $)) (-15 -3833 ($ (-1167) $)) (-15 -2506 ($ (-1112))) (-15 -4109 ($ (-1112))) (-15 -2718 ($ (-1150))) (-15 -2718 ($ (-639 (-1150)))) (-15 -1385 ($ (-1150))) (-15 -3705 ($)) (-15 -3705 ($ (-315 (-693)))) (-15 -3705 ($ (-315 (-695)))) (-15 -3705 ($ (-315 (-688)))) (-15 -3705 ($ (-315 (-378)))) (-15 -3705 ($ (-315 (-562)))) (-15 -3705 ($ (-315 (-168 (-378))))) (-15 -2942 ($ (-1167) $)) (-15 -2942 ($ (-1167) $ $)) (-15 -2714 ($ (-1168) (-1150))) (-15 -2714 ($ (-1168) (-315 (-695)))) (-15 -2714 ($ (-1168) (-315 (-693)))) (-15 -2714 ($ (-1168) (-315 (-688)))) (-15 -2714 ($ (-1168) (-683 (-695)))) (-15 -2714 ($ (-1168) (-683 (-693)))) (-15 -2714 ($ (-1168) (-683 (-688)))) (-15 -2714 ($ (-1168) (-1256 (-695)))) (-15 -2714 ($ (-1168) (-1256 (-693)))) (-15 -2714 ($ (-1168) (-1256 (-688)))) (-15 -2714 ($ (-1168) (-683 (-315 (-695))))) (-15 -2714 ($ (-1168) (-683 (-315 (-693))))) (-15 -2714 ($ (-1168) (-683 (-315 (-688))))) (-15 -2714 ($ (-1168) (-1256 (-315 (-695))))) (-15 -2714 ($ (-1168) (-1256 (-315 (-693))))) (-15 -2714 ($ (-1168) (-1256 (-315 (-688))))) (-15 -2714 ($ (-1168) (-639 (-947 (-562))) (-315 (-695)))) (-15 -2714 ($ (-1168) (-639 (-947 (-562))) (-315 (-693)))) (-15 -2714 ($ (-1168) (-639 (-947 (-562))) (-315 (-688)))) (-15 -2714 ($ (-1168) (-315 (-562)))) (-15 -2714 ($ (-1168) (-315 (-378)))) (-15 -2714 ($ (-1168) (-315 (-168 (-378))))) (-15 -2714 ($ (-1168) (-683 (-315 (-562))))) (-15 -2714 ($ (-1168) (-683 (-315 (-378))))) (-15 -2714 ($ (-1168) (-683 (-315 (-168 (-378)))))) (-15 -2714 ($ (-1168) (-1256 (-315 (-562))))) (-15 -2714 ($ (-1168) (-1256 (-315 (-378))))) (-15 -2714 ($ (-1168) (-1256 (-315 (-168 (-378)))))) (-15 -2714 ($ (-1168) (-639 (-947 (-562))) (-315 (-562)))) (-15 -2714 ($ (-1168) (-639 (-947 (-562))) (-315 (-378)))) (-15 -2714 ($ (-1168) (-639 (-947 (-562))) (-315 (-168 (-378))))) (-15 -2508 ($ (-639 $))) (-15 -3292 ($)) (-15 -2682 ($)) (-15 -3471 ($ (-639 (-857)))) (-15 -3073 ($ (-1168) (-639 (-1168)))) (-15 -3582 ((-3 (|:| |Null| "null") (|:| |Assignment| "assignment") (|:| |Conditional| "conditional") (|:| |Return| "return") (|:| |Block| "block") (|:| |Comment| "comment") (|:| |Call| "call") (|:| |For| "for") (|:| |While| "while") (|:| |Repeat| "repeat") (|:| |Goto| "goto") (|:| |Continue| "continue") (|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save") (|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")) $)) (-15 -3473 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1168)) (|:| |arrayIndex| (-639 (-947 (-562)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2400 (-857)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1168)) (|:| |rand| (-857)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1167)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3087 (-112)) (|:| -2533 (-2 (|:| |ints2Floats?| (-112)) (|:| -2400 (-857)))))) (|:| |blockBranch| (-639 $)) (|:| |commentBranch| (-639 (-1150))) (|:| |callBranch| (-1150)) (|:| |forBranch| (-2 (|:| -2147 (-1084 (-947 (-562)))) (|:| |span| (-947 (-562))) (|:| -3265 $))) (|:| |labelBranch| (-1112)) (|:| |loopBranch| (-2 (|:| |switch| (-1167)) (|:| -3265 $))) (|:| |commonBranch| (-2 (|:| -3253 (-1168)) (|:| |contents| (-639 (-1168))))) (|:| |printBranch| (-639 (-857)))) $)) (-15 -2932 ((-1261) $)) (-15 -3162 ((-1096) $)) (-15 -1496 ((-1112) (-1112)))))
+((-4041 (((-112) $ $) NIL)) (-3787 (((-112) $) 11)) (-4074 (($ |#1|) 8)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4087 (($ |#1|) 9)) (-4053 (((-857) $) 17)) (-2282 ((|#1| $) 12)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 19)))
+(((-330 |#1|) (-13 (-845) (-10 -8 (-15 -4074 ($ |#1|)) (-15 -4087 ($ |#1|)) (-15 -3787 ((-112) $)) (-15 -2282 (|#1| $)))) (-845)) (T -330))
+((-4074 (*1 *1 *2) (-12 (-5 *1 (-330 *2)) (-4 *2 (-845)))) (-4087 (*1 *1 *2) (-12 (-5 *1 (-330 *2)) (-4 *2 (-845)))) (-3787 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-330 *3)) (-4 *3 (-845)))) (-2282 (*1 *2 *1) (-12 (-5 *1 (-330 *2)) (-4 *2 (-845)))))
+(-13 (-845) (-10 -8 (-15 -4074 ($ |#1|)) (-15 -4087 ($ |#1|)) (-15 -3787 ((-112) $)) (-15 -2282 (|#1| $))))
+((-2972 (((-329) (-1168) (-947 (-562))) 23)) (-2772 (((-329) (-1168) (-947 (-562))) 27)) (-1970 (((-329) (-1168) (-1084 (-947 (-562))) (-1084 (-947 (-562)))) 26) (((-329) (-1168) (-947 (-562)) (-947 (-562))) 24)) (-2230 (((-329) (-1168) (-947 (-562))) 31)))
+(((-331) (-10 -7 (-15 -2972 ((-329) (-1168) (-947 (-562)))) (-15 -1970 ((-329) (-1168) (-947 (-562)) (-947 (-562)))) (-15 -1970 ((-329) (-1168) (-1084 (-947 (-562))) (-1084 (-947 (-562))))) (-15 -2772 ((-329) (-1168) (-947 (-562)))) (-15 -2230 ((-329) (-1168) (-947 (-562)))))) (T -331))
+((-2230 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329)) (-5 *1 (-331)))) (-2772 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329)) (-5 *1 (-331)))) (-1970 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-1084 (-947 (-562)))) (-5 *2 (-329)) (-5 *1 (-331)))) (-1970 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329)) (-5 *1 (-331)))) (-2972 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329)) (-5 *1 (-331)))))
+(-10 -7 (-15 -2972 ((-329) (-1168) (-947 (-562)))) (-15 -1970 ((-329) (-1168) (-947 (-562)) (-947 (-562)))) (-15 -1970 ((-329) (-1168) (-1084 (-947 (-562))) (-1084 (-947 (-562))))) (-15 -2772 ((-329) (-1168) (-947 (-562)))) (-15 -2230 ((-329) (-1168) (-947 (-562)))))
((-4152 (((-335 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-335 |#1| |#2| |#3| |#4|)) 33)))
(((-332 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -4152 ((-335 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-335 |#1| |#2| |#3| |#4|)))) (-362) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|) (-362) (-1232 |#5|) (-1232 (-406 |#6|)) (-341 |#5| |#6| |#7|)) (T -332))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-335 *5 *6 *7 *8)) (-4 *5 (-362)) (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6))) (-4 *8 (-341 *5 *6 *7)) (-4 *9 (-362)) (-4 *10 (-1232 *9)) (-4 *11 (-1232 (-406 *10))) (-5 *2 (-335 *9 *10 *11 *12)) (-5 *1 (-332 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-341 *9 *10 *11)))))
(-10 -7 (-15 -4152 ((-335 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-335 |#1| |#2| |#3| |#4|))))
-((-2875 (((-112) $) 14)))
-(((-333 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2875 ((-112) |#1|))) (-334 |#2| |#3| |#4| |#5|) (-362) (-1232 |#2|) (-1232 (-406 |#3|)) (-341 |#2| |#3| |#4|)) (T -333))
+((-1488 (((-112) $) 14)))
+(((-333 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1488 ((-112) |#1|))) (-334 |#2| |#3| |#4| |#5|) (-362) (-1232 |#2|) (-1232 (-406 |#3|)) (-341 |#2| |#3| |#4|)) (T -333))
NIL
-(-10 -8 (-15 -2875 ((-112) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-1955 (($ $) 26)) (-2875 (((-112) $) 25)) (-2913 (((-1150) $) 9)) (-1366 (((-412 |#2| (-406 |#2|) |#3| |#4|) $) 32)) (-1709 (((-1112) $) 10)) (-3148 (((-3 |#4| "failed") $) 24)) (-1329 (($ (-412 |#2| (-406 |#2|) |#3| |#4|)) 31) (($ |#4|) 30) (($ |#1| |#1|) 29) (($ |#1| |#1| (-562)) 28) (($ |#4| |#2| |#2| |#2| |#1|) 23)) (-2018 (((-2 (|:| -1416 (-412 |#2| (-406 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 27)) (-4054 (((-857) $) 11)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20)))
+(-10 -8 (-15 -1488 ((-112) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1954 (($ $) 26)) (-1488 (((-112) $) 25)) (-3696 (((-1150) $) 9)) (-1387 (((-412 |#2| (-406 |#2|) |#3| |#4|) $) 32)) (-1709 (((-1112) $) 10)) (-3147 (((-3 |#4| "failed") $) 24)) (-1933 (($ (-412 |#2| (-406 |#2|) |#3| |#4|)) 31) (($ |#4|) 30) (($ |#1| |#1|) 29) (($ |#1| |#1| (-562)) 28) (($ |#4| |#2| |#2| |#2| |#1|) 23)) (-3758 (((-2 (|:| -1416 (-412 |#2| (-406 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 27)) (-4053 (((-857) $) 11)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20)))
(((-334 |#1| |#2| |#3| |#4|) (-139) (-362) (-1232 |t#1|) (-1232 (-406 |t#2|)) (-341 |t#1| |t#2| |t#3|)) (T -334))
-((-1366 (*1 *2 *1) (-12 (-4 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5)) (-5 *2 (-412 *4 (-406 *4) *5 *6)))) (-1329 (*1 *1 *2) (-12 (-5 *2 (-412 *4 (-406 *4) *5 *6)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5)) (-4 *3 (-362)) (-4 *1 (-334 *3 *4 *5 *6)))) (-1329 (*1 *1 *2) (-12 (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *1 (-334 *3 *4 *5 *2)) (-4 *2 (-341 *3 *4 *5)))) (-1329 (*1 *1 *2 *2) (-12 (-4 *2 (-362)) (-4 *3 (-1232 *2)) (-4 *4 (-1232 (-406 *3))) (-4 *1 (-334 *2 *3 *4 *5)) (-4 *5 (-341 *2 *3 *4)))) (-1329 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-562)) (-4 *2 (-362)) (-4 *4 (-1232 *2)) (-4 *5 (-1232 (-406 *4))) (-4 *1 (-334 *2 *4 *5 *6)) (-4 *6 (-341 *2 *4 *5)))) (-2018 (*1 *2 *1) (-12 (-4 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5)) (-5 *2 (-2 (|:| -1416 (-412 *4 (-406 *4) *5 *6)) (|:| |principalPart| *6))))) (-1955 (*1 *1 *1) (-12 (-4 *1 (-334 *2 *3 *4 *5)) (-4 *2 (-362)) (-4 *3 (-1232 *2)) (-4 *4 (-1232 (-406 *3))) (-4 *5 (-341 *2 *3 *4)))) (-2875 (*1 *2 *1) (-12 (-4 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5)) (-5 *2 (-112)))) (-3148 (*1 *2 *1) (|partial| -12 (-4 *1 (-334 *3 *4 *5 *2)) (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *2 (-341 *3 *4 *5)))) (-1329 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-362)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 (-406 *3))) (-4 *1 (-334 *4 *3 *5 *2)) (-4 *2 (-341 *4 *3 *5)))))
-(-13 (-21) (-10 -8 (-15 -1366 ((-412 |t#2| (-406 |t#2|) |t#3| |t#4|) $)) (-15 -1329 ($ (-412 |t#2| (-406 |t#2|) |t#3| |t#4|))) (-15 -1329 ($ |t#4|)) (-15 -1329 ($ |t#1| |t#1|)) (-15 -1329 ($ |t#1| |t#1| (-562))) (-15 -2018 ((-2 (|:| -1416 (-412 |t#2| (-406 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -1955 ($ $)) (-15 -2875 ((-112) $)) (-15 -3148 ((-3 |t#4| "failed") $)) (-15 -1329 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
+((-1387 (*1 *2 *1) (-12 (-4 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5)) (-5 *2 (-412 *4 (-406 *4) *5 *6)))) (-1933 (*1 *1 *2) (-12 (-5 *2 (-412 *4 (-406 *4) *5 *6)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5)) (-4 *3 (-362)) (-4 *1 (-334 *3 *4 *5 *6)))) (-1933 (*1 *1 *2) (-12 (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *1 (-334 *3 *4 *5 *2)) (-4 *2 (-341 *3 *4 *5)))) (-1933 (*1 *1 *2 *2) (-12 (-4 *2 (-362)) (-4 *3 (-1232 *2)) (-4 *4 (-1232 (-406 *3))) (-4 *1 (-334 *2 *3 *4 *5)) (-4 *5 (-341 *2 *3 *4)))) (-1933 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-562)) (-4 *2 (-362)) (-4 *4 (-1232 *2)) (-4 *5 (-1232 (-406 *4))) (-4 *1 (-334 *2 *4 *5 *6)) (-4 *6 (-341 *2 *4 *5)))) (-3758 (*1 *2 *1) (-12 (-4 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5)) (-5 *2 (-2 (|:| -1416 (-412 *4 (-406 *4) *5 *6)) (|:| |principalPart| *6))))) (-1954 (*1 *1 *1) (-12 (-4 *1 (-334 *2 *3 *4 *5)) (-4 *2 (-362)) (-4 *3 (-1232 *2)) (-4 *4 (-1232 (-406 *3))) (-4 *5 (-341 *2 *3 *4)))) (-1488 (*1 *2 *1) (-12 (-4 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5)) (-5 *2 (-112)))) (-3147 (*1 *2 *1) (|partial| -12 (-4 *1 (-334 *3 *4 *5 *2)) (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *2 (-341 *3 *4 *5)))) (-1933 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-362)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 (-406 *3))) (-4 *1 (-334 *4 *3 *5 *2)) (-4 *2 (-341 *4 *3 *5)))))
+(-13 (-21) (-10 -8 (-15 -1387 ((-412 |t#2| (-406 |t#2|) |t#3| |t#4|) $)) (-15 -1933 ($ (-412 |t#2| (-406 |t#2|) |t#3| |t#4|))) (-15 -1933 ($ |t#4|)) (-15 -1933 ($ |t#1| |t#1|)) (-15 -1933 ($ |t#1| |t#1| (-562))) (-15 -3758 ((-2 (|:| -1416 (-412 |t#2| (-406 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -1954 ($ $)) (-15 -1488 ((-112) $)) (-15 -3147 ((-3 |t#4| "failed") $)) (-15 -1933 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1955 (($ $) 33)) (-2875 (((-112) $) NIL)) (-2913 (((-1150) $) NIL)) (-2519 (((-1256 |#4|) $) 125)) (-1366 (((-412 |#2| (-406 |#2|) |#3| |#4|) $) 31)) (-1709 (((-1112) $) NIL)) (-3148 (((-3 |#4| "failed") $) 36)) (-4159 (((-1256 |#4|) $) 118)) (-1329 (($ (-412 |#2| (-406 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-562)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-2018 (((-2 (|:| -1416 (-412 |#2| (-406 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-4054 (((-857) $) 17)) (-2286 (($) 14 T CONST)) (-1731 (((-112) $ $) 20)) (-1848 (($ $) 27) (($ $ $) NIL)) (-1835 (($ $ $) 25)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 23)))
-(((-335 |#1| |#2| |#3| |#4|) (-13 (-334 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4159 ((-1256 |#4|) $)) (-15 -2519 ((-1256 |#4|) $)))) (-362) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|)) (T -335))
-((-4159 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-1256 *6)) (-5 *1 (-335 *3 *4 *5 *6)) (-4 *6 (-341 *3 *4 *5)))) (-2519 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-1256 *6)) (-5 *1 (-335 *3 *4 *5 *6)) (-4 *6 (-341 *3 *4 *5)))))
-(-13 (-334 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4159 ((-1256 |#4|) $)) (-15 -2519 ((-1256 |#4|) $))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1954 (($ $) 33)) (-1488 (((-112) $) NIL)) (-3696 (((-1150) $) NIL)) (-2204 (((-1256 |#4|) $) 125)) (-1387 (((-412 |#2| (-406 |#2|) |#3| |#4|) $) 31)) (-1709 (((-1112) $) NIL)) (-3147 (((-3 |#4| "failed") $) 36)) (-2707 (((-1256 |#4|) $) 118)) (-1933 (($ (-412 |#2| (-406 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-562)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-3758 (((-2 (|:| -1416 (-412 |#2| (-406 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-4053 (((-857) $) 17)) (-2285 (($) 14 T CONST)) (-1733 (((-112) $ $) 20)) (-1847 (($ $) 27) (($ $ $) NIL)) (-1836 (($ $ $) 25)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 23)))
+(((-335 |#1| |#2| |#3| |#4|) (-13 (-334 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2707 ((-1256 |#4|) $)) (-15 -2204 ((-1256 |#4|) $)))) (-362) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|)) (T -335))
+((-2707 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-1256 *6)) (-5 *1 (-335 *3 *4 *5 *6)) (-4 *6 (-341 *3 *4 *5)))) (-2204 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-1256 *6)) (-5 *1 (-335 *3 *4 *5 *6)) (-4 *6 (-341 *3 *4 *5)))))
+(-13 (-334 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2707 ((-1256 |#4|) $)) (-15 -2204 ((-1256 |#4|) $))))
((-1433 (($ $ (-1168) |#2|) NIL) (($ $ (-639 (-1168)) (-639 |#2|)) 20) (($ $ (-639 (-293 |#2|))) 15) (($ $ (-293 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-639 |#2|) (-639 |#2|)) NIL)) (-2343 (($ $ |#2|) 11)))
(((-336 |#1| |#2|) (-10 -8 (-15 -2343 (|#1| |#1| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#2|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#2| |#2|)) (-15 -1433 (|#1| |#1| (-293 |#2|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#2|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 |#2|))) (-15 -1433 (|#1| |#1| (-1168) |#2|))) (-337 |#2|) (-1092)) (T -336))
NIL
@@ -1328,289 +1328,289 @@ NIL
((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-337 *3)) (-4 *3 (-1092)))))
(-13 (-10 -8 (-15 -4152 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-285 |t#1| |t#1|)) (-6 (-285 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-308 |t#1|)) (-6 (-308 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-513 (-1168) |t#1|)) (-6 (-513 (-1168) |t#1|)) |%noBranch|)))
(((-285 |#1| $) |has| |#1| (-285 |#1| |#1|)) ((-308 |#1|) |has| |#1| (-308 |#1|)) ((-513 (-1168) |#1|) |has| |#1| (-513 (-1168) |#1|)) ((-513 |#1| |#1|) |has| |#1| (-308 |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1402 (((-639 (-1168)) $) NIL)) (-2955 (((-112)) 90) (((-112) (-112)) 91)) (-1495 (((-639 (-608 $)) $) NIL)) (-2988 (($ $) NIL)) (-4097 (($ $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3165 (($ $ (-293 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL)) (-1643 (($ $) NIL)) (-4207 (($ $) NIL)) (-4074 (($ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-608 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-315 |#3|)) 70) (((-3 $ "failed") (-1168)) 96) (((-3 $ "failed") (-315 (-562))) 58 (|has| |#3| (-1033 (-562)))) (((-3 $ "failed") (-406 (-947 (-562)))) 64 (|has| |#3| (-1033 (-562)))) (((-3 $ "failed") (-947 (-562))) 59 (|has| |#3| (-1033 (-562)))) (((-3 $ "failed") (-315 (-378))) 88 (|has| |#3| (-1033 (-378)))) (((-3 $ "failed") (-406 (-947 (-378)))) 82 (|has| |#3| (-1033 (-378)))) (((-3 $ "failed") (-947 (-378))) 77 (|has| |#3| (-1033 (-378))))) (-3961 (((-608 $) $) NIL) ((|#3| $) NIL) (($ (-315 |#3|)) 71) (($ (-1168)) 97) (($ (-315 (-562))) 60 (|has| |#3| (-1033 (-562)))) (($ (-406 (-947 (-562)))) 65 (|has| |#3| (-1033 (-562)))) (($ (-947 (-562))) 61 (|has| |#3| (-1033 (-562)))) (($ (-315 (-378))) 89 (|has| |#3| (-1033 (-378)))) (($ (-406 (-947 (-378)))) 83 (|has| |#3| (-1033 (-378)))) (($ (-947 (-378))) 79 (|has| |#3| (-1033 (-378))))) (-3668 (((-3 $ "failed") $) NIL)) (-4100 (($) 10)) (-1383 (($ $) NIL) (($ (-639 $)) NIL)) (-3936 (((-639 (-114)) $) NIL)) (-2876 (((-114) (-114)) NIL)) (-1957 (((-112) $) NIL)) (-3130 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-1677 (((-1164 $) (-608 $)) NIL (|has| $ (-1044)))) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 $ $) (-608 $)) NIL)) (-4367 (((-3 (-608 $) "failed") $) NIL)) (-2983 (($ $) 93)) (-4365 (($ $) NIL)) (-2913 (((-1150) $) NIL)) (-1583 (((-639 (-608 $)) $) NIL)) (-4141 (($ (-114) $) 92) (($ (-114) (-639 $)) NIL)) (-1776 (((-112) $ (-114)) NIL) (((-112) $ (-1168)) NIL)) (-3060 (((-766) $) NIL)) (-1709 (((-1112) $) NIL)) (-4296 (((-112) $ $) NIL) (((-112) $ (-1168)) NIL)) (-3430 (($ $) NIL)) (-3803 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-1433 (($ $ (-608 $) $) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-1168) (-1 $ (-639 $))) NIL) (($ $ (-1168) (-1 $ $)) NIL) (($ $ (-639 (-114)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-114) (-1 $ (-639 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-2343 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-639 $)) NIL)) (-3790 (($ $) NIL) (($ $ $) NIL)) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL)) (-2096 (($ $) NIL (|has| $ (-1044)))) (-2978 (($ $) NIL)) (-4087 (($ $) NIL)) (-4054 (((-857) $) NIL) (($ (-608 $)) NIL) (($ |#3|) NIL) (($ (-562)) NIL) (((-315 |#3|) $) 95)) (-2579 (((-766)) NIL)) (-2746 (($ $) NIL) (($ (-639 $)) NIL)) (-2803 (((-112) (-114)) NIL)) (-4165 (($ $) NIL)) (-4138 (($ $) NIL)) (-4151 (($ $) NIL)) (-3526 (($ $) NIL)) (-2286 (($) 94 T CONST)) (-2294 (($) 24 T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)) (-1848 (($ $ $) NIL) (($ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-766)) NIL) (($ $ (-916)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-562) $) NIL) (($ (-766) $) NIL) (($ (-916) $) NIL)))
-(((-338 |#1| |#2| |#3|) (-13 (-301) (-38 |#3|) (-1033 |#3|) (-895 (-1168)) (-10 -8 (-15 -3961 ($ (-315 |#3|))) (-15 -4048 ((-3 $ "failed") (-315 |#3|))) (-15 -3961 ($ (-1168))) (-15 -4048 ((-3 $ "failed") (-1168))) (-15 -4054 ((-315 |#3|) $)) (IF (|has| |#3| (-1033 (-562))) (PROGN (-15 -3961 ($ (-315 (-562)))) (-15 -4048 ((-3 $ "failed") (-315 (-562)))) (-15 -3961 ($ (-406 (-947 (-562))))) (-15 -4048 ((-3 $ "failed") (-406 (-947 (-562))))) (-15 -3961 ($ (-947 (-562)))) (-15 -4048 ((-3 $ "failed") (-947 (-562))))) |%noBranch|) (IF (|has| |#3| (-1033 (-378))) (PROGN (-15 -3961 ($ (-315 (-378)))) (-15 -4048 ((-3 $ "failed") (-315 (-378)))) (-15 -3961 ($ (-406 (-947 (-378))))) (-15 -4048 ((-3 $ "failed") (-406 (-947 (-378))))) (-15 -3961 ($ (-947 (-378)))) (-15 -4048 ((-3 $ "failed") (-947 (-378))))) |%noBranch|) (-15 -3526 ($ $)) (-15 -1643 ($ $)) (-15 -3430 ($ $)) (-15 -4365 ($ $)) (-15 -2983 ($ $)) (-15 -4074 ($ $)) (-15 -4087 ($ $)) (-15 -4097 ($ $)) (-15 -4138 ($ $)) (-15 -4151 ($ $)) (-15 -4165 ($ $)) (-15 -4207 ($ $)) (-15 -2978 ($ $)) (-15 -2988 ($ $)) (-15 -4100 ($)) (-15 -1402 ((-639 (-1168)) $)) (-15 -2955 ((-112))) (-15 -2955 ((-112) (-112))))) (-639 (-1168)) (-639 (-1168)) (-386)) (T -338))
-((-3961 (*1 *1 *2) (-12 (-5 *2 (-315 *5)) (-4 *5 (-386)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-315 *5)) (-4 *5 (-386)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 *2)) (-14 *4 (-639 *2)) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 *2)) (-14 *4 (-639 *2)) (-4 *5 (-386)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-315 *5)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-315 (-562))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-562))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-315 (-562))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-562))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-406 (-947 (-562)))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-562))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-406 (-947 (-562)))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-562))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-947 (-562))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-562))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-947 (-562))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-562))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-315 (-378))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-378))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-315 (-378))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-378))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-406 (-947 (-378)))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-378))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-406 (-947 (-378)))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-378))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-947 (-378))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-378))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-947 (-378))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-378))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3526 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-1643 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-3430 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4365 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-2983 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4074 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4087 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4097 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4138 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4151 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4165 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4207 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-2978 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-2988 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4100 (*1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-1402 (*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-338 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-386)))) (-2955 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-2955 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))))
-(-13 (-301) (-38 |#3|) (-1033 |#3|) (-895 (-1168)) (-10 -8 (-15 -3961 ($ (-315 |#3|))) (-15 -4048 ((-3 $ "failed") (-315 |#3|))) (-15 -3961 ($ (-1168))) (-15 -4048 ((-3 $ "failed") (-1168))) (-15 -4054 ((-315 |#3|) $)) (IF (|has| |#3| (-1033 (-562))) (PROGN (-15 -3961 ($ (-315 (-562)))) (-15 -4048 ((-3 $ "failed") (-315 (-562)))) (-15 -3961 ($ (-406 (-947 (-562))))) (-15 -4048 ((-3 $ "failed") (-406 (-947 (-562))))) (-15 -3961 ($ (-947 (-562)))) (-15 -4048 ((-3 $ "failed") (-947 (-562))))) |%noBranch|) (IF (|has| |#3| (-1033 (-378))) (PROGN (-15 -3961 ($ (-315 (-378)))) (-15 -4048 ((-3 $ "failed") (-315 (-378)))) (-15 -3961 ($ (-406 (-947 (-378))))) (-15 -4048 ((-3 $ "failed") (-406 (-947 (-378))))) (-15 -3961 ($ (-947 (-378)))) (-15 -4048 ((-3 $ "failed") (-947 (-378))))) |%noBranch|) (-15 -3526 ($ $)) (-15 -1643 ($ $)) (-15 -3430 ($ $)) (-15 -4365 ($ $)) (-15 -2983 ($ $)) (-15 -4074 ($ $)) (-15 -4087 ($ $)) (-15 -4097 ($ $)) (-15 -4138 ($ $)) (-15 -4151 ($ $)) (-15 -4165 ($ $)) (-15 -4207 ($ $)) (-15 -2978 ($ $)) (-15 -2988 ($ $)) (-15 -4100 ($)) (-15 -1402 ((-639 (-1168)) $)) (-15 -2955 ((-112))) (-15 -2955 ((-112) (-112)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1401 (((-639 (-1168)) $) NIL)) (-4126 (((-112)) 90) (((-112) (-112)) 91)) (-1501 (((-639 (-608 $)) $) NIL)) (-2987 (($ $) NIL)) (-4098 (($ $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3164 (($ $ (-293 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL)) (-1644 (($ $) NIL)) (-4206 (($ $) NIL)) (-4074 (($ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-608 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-315 |#3|)) 70) (((-3 $ "failed") (-1168)) 96) (((-3 $ "failed") (-315 (-562))) 58 (|has| |#3| (-1033 (-562)))) (((-3 $ "failed") (-406 (-947 (-562)))) 64 (|has| |#3| (-1033 (-562)))) (((-3 $ "failed") (-947 (-562))) 59 (|has| |#3| (-1033 (-562)))) (((-3 $ "failed") (-315 (-378))) 88 (|has| |#3| (-1033 (-378)))) (((-3 $ "failed") (-406 (-947 (-378)))) 82 (|has| |#3| (-1033 (-378)))) (((-3 $ "failed") (-947 (-378))) 77 (|has| |#3| (-1033 (-378))))) (-3960 (((-608 $) $) NIL) ((|#3| $) NIL) (($ (-315 |#3|)) 71) (($ (-1168)) 97) (($ (-315 (-562))) 60 (|has| |#3| (-1033 (-562)))) (($ (-406 (-947 (-562)))) 65 (|has| |#3| (-1033 (-562)))) (($ (-947 (-562))) 61 (|has| |#3| (-1033 (-562)))) (($ (-315 (-378))) 89 (|has| |#3| (-1033 (-378)))) (($ (-406 (-947 (-378)))) 83 (|has| |#3| (-1033 (-378)))) (($ (-947 (-378))) 79 (|has| |#3| (-1033 (-378))))) (-1694 (((-3 $ "failed") $) NIL)) (-4100 (($) 10)) (-2229 (($ $) NIL) (($ (-639 $)) NIL)) (-4364 (((-639 (-114)) $) NIL)) (-1502 (((-114) (-114)) NIL)) (-4367 (((-112) $) NIL)) (-3152 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-3476 (((-1164 $) (-608 $)) NIL (|has| $ (-1044)))) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 $ $) (-608 $)) NIL)) (-4068 (((-3 (-608 $) "failed") $) NIL)) (-2982 (($ $) 93)) (-4366 (($ $) NIL)) (-3696 (((-1150) $) NIL)) (-1582 (((-639 (-608 $)) $) NIL)) (-4141 (($ (-114) $) 92) (($ (-114) (-639 $)) NIL)) (-3115 (((-112) $ (-114)) NIL) (((-112) $ (-1168)) NIL)) (-3059 (((-766) $) NIL)) (-1709 (((-1112) $) NIL)) (-1533 (((-112) $ $) NIL) (((-112) $ (-1168)) NIL)) (-3430 (($ $) NIL)) (-2438 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-1433 (($ $ (-608 $) $) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-1168) (-1 $ (-639 $))) NIL) (($ $ (-1168) (-1 $ $)) NIL) (($ $ (-639 (-114)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-114) (-1 $ (-639 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-2343 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-639 $)) NIL)) (-3461 (($ $) NIL) (($ $ $) NIL)) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL)) (-3371 (($ $) NIL (|has| $ (-1044)))) (-2977 (($ $) NIL)) (-4087 (($ $) NIL)) (-4053 (((-857) $) NIL) (($ (-608 $)) NIL) (($ |#3|) NIL) (($ (-562)) NIL) (((-315 |#3|) $) 95)) (-1568 (((-766)) NIL)) (-2745 (($ $) NIL) (($ (-639 $)) NIL)) (-2036 (((-112) (-114)) NIL)) (-4165 (($ $) NIL)) (-4139 (($ $) NIL)) (-4151 (($ $) NIL)) (-2757 (($ $) NIL)) (-2285 (($) 94 T CONST)) (-2294 (($) 24 T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)) (-1847 (($ $ $) NIL) (($ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-766)) NIL) (($ $ (-916)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-562) $) NIL) (($ (-766) $) NIL) (($ (-916) $) NIL)))
+(((-338 |#1| |#2| |#3|) (-13 (-301) (-38 |#3|) (-1033 |#3|) (-895 (-1168)) (-10 -8 (-15 -3960 ($ (-315 |#3|))) (-15 -4048 ((-3 $ "failed") (-315 |#3|))) (-15 -3960 ($ (-1168))) (-15 -4048 ((-3 $ "failed") (-1168))) (-15 -4053 ((-315 |#3|) $)) (IF (|has| |#3| (-1033 (-562))) (PROGN (-15 -3960 ($ (-315 (-562)))) (-15 -4048 ((-3 $ "failed") (-315 (-562)))) (-15 -3960 ($ (-406 (-947 (-562))))) (-15 -4048 ((-3 $ "failed") (-406 (-947 (-562))))) (-15 -3960 ($ (-947 (-562)))) (-15 -4048 ((-3 $ "failed") (-947 (-562))))) |%noBranch|) (IF (|has| |#3| (-1033 (-378))) (PROGN (-15 -3960 ($ (-315 (-378)))) (-15 -4048 ((-3 $ "failed") (-315 (-378)))) (-15 -3960 ($ (-406 (-947 (-378))))) (-15 -4048 ((-3 $ "failed") (-406 (-947 (-378))))) (-15 -3960 ($ (-947 (-378)))) (-15 -4048 ((-3 $ "failed") (-947 (-378))))) |%noBranch|) (-15 -2757 ($ $)) (-15 -1644 ($ $)) (-15 -3430 ($ $)) (-15 -4366 ($ $)) (-15 -2982 ($ $)) (-15 -4074 ($ $)) (-15 -4087 ($ $)) (-15 -4098 ($ $)) (-15 -4139 ($ $)) (-15 -4151 ($ $)) (-15 -4165 ($ $)) (-15 -4206 ($ $)) (-15 -2977 ($ $)) (-15 -2987 ($ $)) (-15 -4100 ($)) (-15 -1401 ((-639 (-1168)) $)) (-15 -4126 ((-112))) (-15 -4126 ((-112) (-112))))) (-639 (-1168)) (-639 (-1168)) (-386)) (T -338))
+((-3960 (*1 *1 *2) (-12 (-5 *2 (-315 *5)) (-4 *5 (-386)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-315 *5)) (-4 *5 (-386)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 *2)) (-14 *4 (-639 *2)) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 *2)) (-14 *4 (-639 *2)) (-4 *5 (-386)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-315 *5)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-315 (-562))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-562))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-315 (-562))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-562))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-406 (-947 (-562)))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-562))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-406 (-947 (-562)))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-562))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-947 (-562))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-562))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-947 (-562))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-562))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-315 (-378))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-378))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-315 (-378))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-378))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-406 (-947 (-378)))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-378))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-406 (-947 (-378)))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-378))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-947 (-378))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-378))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-947 (-378))) (-5 *1 (-338 *3 *4 *5)) (-4 *5 (-1033 (-378))) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-2757 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-1644 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-3430 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4366 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-2982 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4074 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4087 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4098 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4139 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4151 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4165 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4206 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-2977 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-2987 (*1 *1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-4100 (*1 *1) (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168))) (-14 *3 (-639 (-1168))) (-4 *4 (-386)))) (-1401 (*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-338 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-386)))) (-4126 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))) (-4126 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-1168))) (-4 *5 (-386)))))
+(-13 (-301) (-38 |#3|) (-1033 |#3|) (-895 (-1168)) (-10 -8 (-15 -3960 ($ (-315 |#3|))) (-15 -4048 ((-3 $ "failed") (-315 |#3|))) (-15 -3960 ($ (-1168))) (-15 -4048 ((-3 $ "failed") (-1168))) (-15 -4053 ((-315 |#3|) $)) (IF (|has| |#3| (-1033 (-562))) (PROGN (-15 -3960 ($ (-315 (-562)))) (-15 -4048 ((-3 $ "failed") (-315 (-562)))) (-15 -3960 ($ (-406 (-947 (-562))))) (-15 -4048 ((-3 $ "failed") (-406 (-947 (-562))))) (-15 -3960 ($ (-947 (-562)))) (-15 -4048 ((-3 $ "failed") (-947 (-562))))) |%noBranch|) (IF (|has| |#3| (-1033 (-378))) (PROGN (-15 -3960 ($ (-315 (-378)))) (-15 -4048 ((-3 $ "failed") (-315 (-378)))) (-15 -3960 ($ (-406 (-947 (-378))))) (-15 -4048 ((-3 $ "failed") (-406 (-947 (-378))))) (-15 -3960 ($ (-947 (-378)))) (-15 -4048 ((-3 $ "failed") (-947 (-378))))) |%noBranch|) (-15 -2757 ($ $)) (-15 -1644 ($ $)) (-15 -3430 ($ $)) (-15 -4366 ($ $)) (-15 -2982 ($ $)) (-15 -4074 ($ $)) (-15 -4087 ($ $)) (-15 -4098 ($ $)) (-15 -4139 ($ $)) (-15 -4151 ($ $)) (-15 -4165 ($ $)) (-15 -4206 ($ $)) (-15 -2977 ($ $)) (-15 -2987 ($ $)) (-15 -4100 ($)) (-15 -1401 ((-639 (-1168)) $)) (-15 -4126 ((-112))) (-15 -4126 ((-112) (-112)))))
((-4152 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
(((-339 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -4152 (|#8| (-1 |#5| |#1|) |#4|))) (-1211) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|) (-1211) (-1232 |#5|) (-1232 (-406 |#6|)) (-341 |#5| |#6| |#7|)) (T -339))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1211)) (-4 *8 (-1211)) (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6))) (-4 *9 (-1232 *8)) (-4 *2 (-341 *8 *9 *10)) (-5 *1 (-339 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-341 *5 *6 *7)) (-4 *10 (-1232 (-406 *9))))))
(-10 -7 (-15 -4152 (|#8| (-1 |#5| |#1|) |#4|)))
-((-3971 (((-2 (|:| |num| (-1256 |#3|)) (|:| |den| |#3|)) $) 38)) (-4018 (($ (-1256 (-406 |#3|)) (-1256 $)) NIL) (($ (-1256 (-406 |#3|))) NIL) (($ (-1256 |#3|) |#3|) 160)) (-2435 (((-1256 $) (-1256 $)) 144)) (-2753 (((-639 (-639 |#2|))) 118)) (-1877 (((-112) |#2| |#2|) 73)) (-1498 (($ $) 138)) (-3684 (((-766)) 31)) (-2142 (((-1256 $) (-1256 $)) 197)) (-1336 (((-639 (-947 |#2|)) (-1168)) 110)) (-4346 (((-112) $) 157)) (-2472 (((-112) $) 25) (((-112) $ |#2|) 29) (((-112) $ |#3|) 201)) (-2676 (((-3 |#3| "failed")) 50)) (-2116 (((-766)) 169)) (-2343 ((|#2| $ |#2| |#2|) 131)) (-3441 (((-3 |#3| "failed")) 68)) (-4029 (($ $ (-1 (-406 |#3|) (-406 |#3|)) (-766)) NIL) (($ $ (-1 (-406 |#3|) (-406 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 205) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL) (($ $ (-766)) NIL) (($ $) NIL)) (-1624 (((-1256 $) (-1256 $)) 150)) (-4193 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 66)) (-2386 (((-112)) 33)))
-(((-340 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -2753 ((-639 (-639 |#2|)))) (-15 -1336 ((-639 (-947 |#2|)) (-1168))) (-15 -4193 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2676 ((-3 |#3| "failed"))) (-15 -3441 ((-3 |#3| "failed"))) (-15 -2343 (|#2| |#1| |#2| |#2|)) (-15 -1498 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2472 ((-112) |#1| |#3|)) (-15 -2472 ((-112) |#1| |#2|)) (-15 -4018 (|#1| (-1256 |#3|) |#3|)) (-15 -3971 ((-2 (|:| |num| (-1256 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2435 ((-1256 |#1|) (-1256 |#1|))) (-15 -2142 ((-1256 |#1|) (-1256 |#1|))) (-15 -1624 ((-1256 |#1|) (-1256 |#1|))) (-15 -2472 ((-112) |#1|)) (-15 -4346 ((-112) |#1|)) (-15 -1877 ((-112) |#2| |#2|)) (-15 -2386 ((-112))) (-15 -2116 ((-766))) (-15 -3684 ((-766))) (-15 -4029 (|#1| |#1| (-1 (-406 |#3|) (-406 |#3|)))) (-15 -4029 (|#1| |#1| (-1 (-406 |#3|) (-406 |#3|)) (-766))) (-15 -4018 (|#1| (-1256 (-406 |#3|)))) (-15 -4018 (|#1| (-1256 (-406 |#3|)) (-1256 |#1|)))) (-341 |#2| |#3| |#4|) (-1211) (-1232 |#2|) (-1232 (-406 |#3|))) (T -340))
-((-3684 (*1 *2) (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-766)) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6)))) (-2116 (*1 *2) (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-766)) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6)))) (-2386 (*1 *2) (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-112)) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6)))) (-1877 (*1 *2 *3 *3) (-12 (-4 *3 (-1211)) (-4 *5 (-1232 *3)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-112)) (-5 *1 (-340 *4 *3 *5 *6)) (-4 *4 (-341 *3 *5 *6)))) (-3441 (*1 *2) (|partial| -12 (-4 *4 (-1211)) (-4 *5 (-1232 (-406 *2))) (-4 *2 (-1232 *4)) (-5 *1 (-340 *3 *4 *2 *5)) (-4 *3 (-341 *4 *2 *5)))) (-2676 (*1 *2) (|partial| -12 (-4 *4 (-1211)) (-4 *5 (-1232 (-406 *2))) (-4 *2 (-1232 *4)) (-5 *1 (-340 *3 *4 *2 *5)) (-4 *3 (-341 *4 *2 *5)))) (-1336 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *5 (-1211)) (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6))) (-5 *2 (-639 (-947 *5))) (-5 *1 (-340 *4 *5 *6 *7)) (-4 *4 (-341 *5 *6 *7)))) (-2753 (*1 *2) (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-639 (-639 *4))) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6)))))
-(-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -2753 ((-639 (-639 |#2|)))) (-15 -1336 ((-639 (-947 |#2|)) (-1168))) (-15 -4193 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2676 ((-3 |#3| "failed"))) (-15 -3441 ((-3 |#3| "failed"))) (-15 -2343 (|#2| |#1| |#2| |#2|)) (-15 -1498 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2472 ((-112) |#1| |#3|)) (-15 -2472 ((-112) |#1| |#2|)) (-15 -4018 (|#1| (-1256 |#3|) |#3|)) (-15 -3971 ((-2 (|:| |num| (-1256 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2435 ((-1256 |#1|) (-1256 |#1|))) (-15 -2142 ((-1256 |#1|) (-1256 |#1|))) (-15 -1624 ((-1256 |#1|) (-1256 |#1|))) (-15 -2472 ((-112) |#1|)) (-15 -4346 ((-112) |#1|)) (-15 -1877 ((-112) |#2| |#2|)) (-15 -2386 ((-112))) (-15 -2116 ((-766))) (-15 -3684 ((-766))) (-15 -4029 (|#1| |#1| (-1 (-406 |#3|) (-406 |#3|)))) (-15 -4029 (|#1| |#1| (-1 (-406 |#3|) (-406 |#3|)) (-766))) (-15 -4018 (|#1| (-1256 (-406 |#3|)))) (-15 -4018 (|#1| (-1256 (-406 |#3|)) (-1256 |#1|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3971 (((-2 (|:| |num| (-1256 |#2|)) (|:| |den| |#2|)) $) 195)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 93 (|has| (-406 |#2|) (-362)))) (-2796 (($ $) 94 (|has| (-406 |#2|) (-362)))) (-4370 (((-112) $) 96 (|has| (-406 |#2|) (-362)))) (-1636 (((-683 (-406 |#2|)) (-1256 $)) 47) (((-683 (-406 |#2|))) 62)) (-1748 (((-406 |#2|) $) 53)) (-3984 (((-1180 (-916) (-766)) (-562)) 146 (|has| (-406 |#2|) (-348)))) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 113 (|has| (-406 |#2|) (-362)))) (-2921 (((-417 $) $) 114 (|has| (-406 |#2|) (-362)))) (-2569 (((-112) $ $) 104 (|has| (-406 |#2|) (-362)))) (-1382 (((-766)) 87 (|has| (-406 |#2|) (-367)))) (-2083 (((-112)) 212)) (-3797 (((-112) |#1|) 211) (((-112) |#2|) 210)) (-1800 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 169 (|has| (-406 |#2|) (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 167 (|has| (-406 |#2|) (-1033 (-406 (-562))))) (((-3 (-406 |#2|) "failed") $) 164)) (-3961 (((-562) $) 168 (|has| (-406 |#2|) (-1033 (-562)))) (((-406 (-562)) $) 166 (|has| (-406 |#2|) (-1033 (-406 (-562))))) (((-406 |#2|) $) 165)) (-4018 (($ (-1256 (-406 |#2|)) (-1256 $)) 49) (($ (-1256 (-406 |#2|))) 65) (($ (-1256 |#2|) |#2|) 194)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) 152 (|has| (-406 |#2|) (-348)))) (-1811 (($ $ $) 108 (|has| (-406 |#2|) (-362)))) (-1958 (((-683 (-406 |#2|)) $ (-1256 $)) 54) (((-683 (-406 |#2|)) $) 60)) (-2406 (((-683 (-562)) (-683 $)) 163 (|has| (-406 |#2|) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 162 (|has| (-406 |#2|) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-406 |#2|))) (|:| |vec| (-1256 (-406 |#2|)))) (-683 $) (-1256 $)) 161) (((-683 (-406 |#2|)) (-683 $)) 160)) (-2435 (((-1256 $) (-1256 $)) 200)) (-1955 (($ |#3|) 157) (((-3 $ "failed") (-406 |#3|)) 154 (|has| (-406 |#2|) (-362)))) (-3668 (((-3 $ "failed") $) 33)) (-2753 (((-639 (-639 |#1|))) 181 (|has| |#1| (-367)))) (-1877 (((-112) |#1| |#1|) 216)) (-2173 (((-916)) 55)) (-1448 (($) 90 (|has| (-406 |#2|) (-367)))) (-4240 (((-112)) 209)) (-2792 (((-112) |#1|) 208) (((-112) |#2|) 207)) (-1787 (($ $ $) 107 (|has| (-406 |#2|) (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 102 (|has| (-406 |#2|) (-362)))) (-1498 (($ $) 187)) (-3529 (($) 148 (|has| (-406 |#2|) (-348)))) (-1322 (((-112) $) 149 (|has| (-406 |#2|) (-348)))) (-3589 (($ $ (-766)) 140 (|has| (-406 |#2|) (-348))) (($ $) 139 (|has| (-406 |#2|) (-348)))) (-2717 (((-112) $) 115 (|has| (-406 |#2|) (-362)))) (-1900 (((-916) $) 151 (|has| (-406 |#2|) (-348))) (((-828 (-916)) $) 137 (|has| (-406 |#2|) (-348)))) (-1957 (((-112) $) 31)) (-3684 (((-766)) 219)) (-2142 (((-1256 $) (-1256 $)) 201)) (-2247 (((-406 |#2|) $) 52)) (-1336 (((-639 (-947 |#1|)) (-1168)) 182 (|has| |#1| (-362)))) (-3699 (((-3 $ "failed") $) 141 (|has| (-406 |#2|) (-348)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 111 (|has| (-406 |#2|) (-362)))) (-1565 ((|#3| $) 45 (|has| (-406 |#2|) (-362)))) (-1999 (((-916) $) 89 (|has| (-406 |#2|) (-367)))) (-1943 ((|#3| $) 155)) (-1564 (($ (-639 $)) 100 (|has| (-406 |#2|) (-362))) (($ $ $) 99 (|has| (-406 |#2|) (-362)))) (-2913 (((-1150) $) 9)) (-2452 (((-683 (-406 |#2|))) 196)) (-4245 (((-683 (-406 |#2|))) 198)) (-1525 (($ $) 116 (|has| (-406 |#2|) (-362)))) (-2679 (($ (-1256 |#2|) |#2|) 192)) (-2696 (((-683 (-406 |#2|))) 197)) (-3933 (((-683 (-406 |#2|))) 199)) (-2979 (((-2 (|:| |num| (-683 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 191)) (-4270 (((-2 (|:| |num| (-1256 |#2|)) (|:| |den| |#2|)) $) 193)) (-2980 (((-1256 $)) 205)) (-3826 (((-1256 $)) 206)) (-4346 (((-112) $) 204)) (-2472 (((-112) $) 203) (((-112) $ |#1|) 190) (((-112) $ |#2|) 189)) (-3729 (($) 142 (|has| (-406 |#2|) (-348)) CONST)) (-2466 (($ (-916)) 88 (|has| (-406 |#2|) (-367)))) (-2676 (((-3 |#2| "failed")) 184)) (-1709 (((-1112) $) 10)) (-2116 (((-766)) 218)) (-3148 (($) 159)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 101 (|has| (-406 |#2|) (-362)))) (-1606 (($ (-639 $)) 98 (|has| (-406 |#2|) (-362))) (($ $ $) 97 (|has| (-406 |#2|) (-362)))) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) 145 (|has| (-406 |#2|) (-348)))) (-1635 (((-417 $) $) 112 (|has| (-406 |#2|) (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| (-406 |#2|) (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 109 (|has| (-406 |#2|) (-362)))) (-1762 (((-3 $ "failed") $ $) 92 (|has| (-406 |#2|) (-362)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 103 (|has| (-406 |#2|) (-362)))) (-1577 (((-766) $) 105 (|has| (-406 |#2|) (-362)))) (-2343 ((|#1| $ |#1| |#1|) 186)) (-3441 (((-3 |#2| "failed")) 185)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 106 (|has| (-406 |#2|) (-362)))) (-2455 (((-406 |#2|) (-1256 $)) 48) (((-406 |#2|)) 61)) (-3362 (((-766) $) 150 (|has| (-406 |#2|) (-348))) (((-3 (-766) "failed") $ $) 138 (|has| (-406 |#2|) (-348)))) (-4029 (($ $ (-1 (-406 |#2|) (-406 |#2|)) (-766)) 122 (|has| (-406 |#2|) (-362))) (($ $ (-1 (-406 |#2|) (-406 |#2|))) 121 (|has| (-406 |#2|) (-362))) (($ $ (-1 |#2| |#2|)) 188) (($ $ (-639 (-1168)) (-639 (-766))) 129 (-4037 (-2246 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2246 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-1168) (-766)) 130 (-4037 (-2246 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2246 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-639 (-1168))) 131 (-4037 (-2246 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2246 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-1168)) 132 (-4037 (-2246 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2246 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-766)) 134 (-4037 (-2246 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-232))) (-2246 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348)))) (($ $) 136 (-4037 (-2246 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-232))) (-2246 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348))))) (-3187 (((-683 (-406 |#2|)) (-1256 $) (-1 (-406 |#2|) (-406 |#2|))) 153 (|has| (-406 |#2|) (-362)))) (-2096 ((|#3|) 158)) (-2283 (($) 147 (|has| (-406 |#2|) (-348)))) (-3593 (((-1256 (-406 |#2|)) $ (-1256 $)) 51) (((-683 (-406 |#2|)) (-1256 $) (-1256 $)) 50) (((-1256 (-406 |#2|)) $) 67) (((-683 (-406 |#2|)) (-1256 $)) 66)) (-4208 (((-1256 (-406 |#2|)) $) 64) (($ (-1256 (-406 |#2|))) 63) ((|#3| $) 170) (($ |#3|) 156)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 144 (|has| (-406 |#2|) (-348)))) (-1624 (((-1256 $) (-1256 $)) 202)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ (-406 |#2|)) 38) (($ (-406 (-562))) 86 (-4037 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-1033 (-406 (-562)))))) (($ $) 91 (|has| (-406 |#2|) (-362)))) (-2805 (($ $) 143 (|has| (-406 |#2|) (-348))) (((-3 $ "failed") $) 44 (|has| (-406 |#2|) (-144)))) (-3376 ((|#3| $) 46)) (-2579 (((-766)) 28)) (-1946 (((-112)) 215)) (-1719 (((-112) |#1|) 214) (((-112) |#2|) 213)) (-3928 (((-1256 $)) 68)) (-2922 (((-112) $ $) 95 (|has| (-406 |#2|) (-362)))) (-4193 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 183)) (-2386 (((-112)) 217)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-1 (-406 |#2|) (-406 |#2|)) (-766)) 124 (|has| (-406 |#2|) (-362))) (($ $ (-1 (-406 |#2|) (-406 |#2|))) 123 (|has| (-406 |#2|) (-362))) (($ $ (-639 (-1168)) (-639 (-766))) 125 (-4037 (-2246 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2246 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-1168) (-766)) 126 (-4037 (-2246 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2246 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-639 (-1168))) 127 (-4037 (-2246 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2246 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-1168)) 128 (-4037 (-2246 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2246 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-766)) 133 (-4037 (-2246 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-232))) (-2246 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348)))) (($ $) 135 (-4037 (-2246 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-232))) (-2246 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348))))) (-1731 (((-112) $ $) 6)) (-1859 (($ $ $) 120 (|has| (-406 |#2|) (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 117 (|has| (-406 |#2|) (-362)))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 |#2|)) 40) (($ (-406 |#2|) $) 39) (($ (-406 (-562)) $) 119 (|has| (-406 |#2|) (-362))) (($ $ (-406 (-562))) 118 (|has| (-406 |#2|) (-362)))))
+((-1631 (((-2 (|:| |num| (-1256 |#3|)) (|:| |den| |#3|)) $) 38)) (-3916 (($ (-1256 (-406 |#3|)) (-1256 $)) NIL) (($ (-1256 (-406 |#3|))) NIL) (($ (-1256 |#3|) |#3|) 160)) (-2575 (((-1256 $) (-1256 $)) 144)) (-2713 (((-639 (-639 |#2|))) 118)) (-1718 (((-112) |#2| |#2|) 73)) (-2578 (($ $) 138)) (-3668 (((-766)) 31)) (-2700 (((-1256 $) (-1256 $)) 197)) (-2004 (((-639 (-947 |#2|)) (-1168)) 110)) (-3841 (((-112) $) 157)) (-2881 (((-112) $) 25) (((-112) $ |#2|) 29) (((-112) $ |#3|) 201)) (-3153 (((-3 |#3| "failed")) 50)) (-2435 (((-766)) 169)) (-2343 ((|#2| $ |#2| |#2|) 131)) (-3092 (((-3 |#3| "failed")) 68)) (-4029 (($ $ (-1 (-406 |#3|) (-406 |#3|)) (-766)) NIL) (($ $ (-1 (-406 |#3|) (-406 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 205) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL) (($ $ (-766)) NIL) (($ $) NIL)) (-4240 (((-1256 $) (-1256 $)) 150)) (-2960 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 66)) (-3243 (((-112)) 33)))
+(((-340 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -2713 ((-639 (-639 |#2|)))) (-15 -2004 ((-639 (-947 |#2|)) (-1168))) (-15 -2960 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -3153 ((-3 |#3| "failed"))) (-15 -3092 ((-3 |#3| "failed"))) (-15 -2343 (|#2| |#1| |#2| |#2|)) (-15 -2578 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2881 ((-112) |#1| |#3|)) (-15 -2881 ((-112) |#1| |#2|)) (-15 -3916 (|#1| (-1256 |#3|) |#3|)) (-15 -1631 ((-2 (|:| |num| (-1256 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2575 ((-1256 |#1|) (-1256 |#1|))) (-15 -2700 ((-1256 |#1|) (-1256 |#1|))) (-15 -4240 ((-1256 |#1|) (-1256 |#1|))) (-15 -2881 ((-112) |#1|)) (-15 -3841 ((-112) |#1|)) (-15 -1718 ((-112) |#2| |#2|)) (-15 -3243 ((-112))) (-15 -2435 ((-766))) (-15 -3668 ((-766))) (-15 -4029 (|#1| |#1| (-1 (-406 |#3|) (-406 |#3|)))) (-15 -4029 (|#1| |#1| (-1 (-406 |#3|) (-406 |#3|)) (-766))) (-15 -3916 (|#1| (-1256 (-406 |#3|)))) (-15 -3916 (|#1| (-1256 (-406 |#3|)) (-1256 |#1|)))) (-341 |#2| |#3| |#4|) (-1211) (-1232 |#2|) (-1232 (-406 |#3|))) (T -340))
+((-3668 (*1 *2) (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-766)) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6)))) (-2435 (*1 *2) (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-766)) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6)))) (-3243 (*1 *2) (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-112)) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6)))) (-1718 (*1 *2 *3 *3) (-12 (-4 *3 (-1211)) (-4 *5 (-1232 *3)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-112)) (-5 *1 (-340 *4 *3 *5 *6)) (-4 *4 (-341 *3 *5 *6)))) (-3092 (*1 *2) (|partial| -12 (-4 *4 (-1211)) (-4 *5 (-1232 (-406 *2))) (-4 *2 (-1232 *4)) (-5 *1 (-340 *3 *4 *2 *5)) (-4 *3 (-341 *4 *2 *5)))) (-3153 (*1 *2) (|partial| -12 (-4 *4 (-1211)) (-4 *5 (-1232 (-406 *2))) (-4 *2 (-1232 *4)) (-5 *1 (-340 *3 *4 *2 *5)) (-4 *3 (-341 *4 *2 *5)))) (-2004 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *5 (-1211)) (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6))) (-5 *2 (-639 (-947 *5))) (-5 *1 (-340 *4 *5 *6 *7)) (-4 *4 (-341 *5 *6 *7)))) (-2713 (*1 *2) (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-639 (-639 *4))) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6)))))
+(-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -2713 ((-639 (-639 |#2|)))) (-15 -2004 ((-639 (-947 |#2|)) (-1168))) (-15 -2960 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -3153 ((-3 |#3| "failed"))) (-15 -3092 ((-3 |#3| "failed"))) (-15 -2343 (|#2| |#1| |#2| |#2|)) (-15 -2578 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2881 ((-112) |#1| |#3|)) (-15 -2881 ((-112) |#1| |#2|)) (-15 -3916 (|#1| (-1256 |#3|) |#3|)) (-15 -1631 ((-2 (|:| |num| (-1256 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2575 ((-1256 |#1|) (-1256 |#1|))) (-15 -2700 ((-1256 |#1|) (-1256 |#1|))) (-15 -4240 ((-1256 |#1|) (-1256 |#1|))) (-15 -2881 ((-112) |#1|)) (-15 -3841 ((-112) |#1|)) (-15 -1718 ((-112) |#2| |#2|)) (-15 -3243 ((-112))) (-15 -2435 ((-766))) (-15 -3668 ((-766))) (-15 -4029 (|#1| |#1| (-1 (-406 |#3|) (-406 |#3|)))) (-15 -4029 (|#1| |#1| (-1 (-406 |#3|) (-406 |#3|)) (-766))) (-15 -3916 (|#1| (-1256 (-406 |#3|)))) (-15 -3916 (|#1| (-1256 (-406 |#3|)) (-1256 |#1|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-1631 (((-2 (|:| |num| (-1256 |#2|)) (|:| |den| |#2|)) $) 195)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 93 (|has| (-406 |#2|) (-362)))) (-1965 (($ $) 94 (|has| (-406 |#2|) (-362)))) (-4102 (((-112) $) 96 (|has| (-406 |#2|) (-362)))) (-4342 (((-683 (-406 |#2|)) (-1256 $)) 47) (((-683 (-406 |#2|))) 62)) (-1748 (((-406 |#2|) $) 53)) (-1755 (((-1180 (-916) (-766)) (-562)) 146 (|has| (-406 |#2|) (-348)))) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 113 (|has| (-406 |#2|) (-362)))) (-3788 (((-417 $) $) 114 (|has| (-406 |#2|) (-362)))) (-1436 (((-112) $ $) 104 (|has| (-406 |#2|) (-362)))) (-1382 (((-766)) 87 (|has| (-406 |#2|) (-367)))) (-3236 (((-112)) 212)) (-3520 (((-112) |#1|) 211) (((-112) |#2|) 210)) (-3329 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 169 (|has| (-406 |#2|) (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 167 (|has| (-406 |#2|) (-1033 (-406 (-562))))) (((-3 (-406 |#2|) "failed") $) 164)) (-3960 (((-562) $) 168 (|has| (-406 |#2|) (-1033 (-562)))) (((-406 (-562)) $) 166 (|has| (-406 |#2|) (-1033 (-406 (-562))))) (((-406 |#2|) $) 165)) (-3916 (($ (-1256 (-406 |#2|)) (-1256 $)) 49) (($ (-1256 (-406 |#2|))) 65) (($ (-1256 |#2|) |#2|) 194)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) 152 (|has| (-406 |#2|) (-348)))) (-1810 (($ $ $) 108 (|has| (-406 |#2|) (-362)))) (-4376 (((-683 (-406 |#2|)) $ (-1256 $)) 54) (((-683 (-406 |#2|)) $) 60)) (-3449 (((-683 (-562)) (-683 $)) 163 (|has| (-406 |#2|) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 162 (|has| (-406 |#2|) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-406 |#2|))) (|:| |vec| (-1256 (-406 |#2|)))) (-683 $) (-1256 $)) 161) (((-683 (-406 |#2|)) (-683 $)) 160)) (-2575 (((-1256 $) (-1256 $)) 200)) (-1954 (($ |#3|) 157) (((-3 $ "failed") (-406 |#3|)) 154 (|has| (-406 |#2|) (-362)))) (-1694 (((-3 $ "failed") $) 33)) (-2713 (((-639 (-639 |#1|))) 181 (|has| |#1| (-367)))) (-1718 (((-112) |#1| |#1|) 216)) (-2172 (((-916)) 55)) (-1447 (($) 90 (|has| (-406 |#2|) (-367)))) (-2241 (((-112)) 209)) (-1912 (((-112) |#1|) 208) (((-112) |#2|) 207)) (-1787 (($ $ $) 107 (|has| (-406 |#2|) (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 102 (|has| (-406 |#2|) (-362)))) (-2578 (($ $) 187)) (-2787 (($) 148 (|has| (-406 |#2|) (-348)))) (-1844 (((-112) $) 149 (|has| (-406 |#2|) (-348)))) (-2184 (($ $ (-766)) 140 (|has| (-406 |#2|) (-348))) (($ $) 139 (|has| (-406 |#2|) (-348)))) (-3521 (((-112) $) 115 (|has| (-406 |#2|) (-362)))) (-1993 (((-916) $) 151 (|has| (-406 |#2|) (-348))) (((-828 (-916)) $) 137 (|has| (-406 |#2|) (-348)))) (-4367 (((-112) $) 31)) (-3668 (((-766)) 219)) (-2700 (((-1256 $) (-1256 $)) 201)) (-4363 (((-406 |#2|) $) 52)) (-2004 (((-639 (-947 |#1|)) (-1168)) 182 (|has| |#1| (-362)))) (-3828 (((-3 $ "failed") $) 141 (|has| (-406 |#2|) (-348)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 111 (|has| (-406 |#2|) (-362)))) (-1937 ((|#3| $) 45 (|has| (-406 |#2|) (-362)))) (-3549 (((-916) $) 89 (|has| (-406 |#2|) (-367)))) (-1942 ((|#3| $) 155)) (-1564 (($ (-639 $)) 100 (|has| (-406 |#2|) (-362))) (($ $ $) 99 (|has| (-406 |#2|) (-362)))) (-3696 (((-1150) $) 9)) (-2715 (((-683 (-406 |#2|))) 196)) (-2289 (((-683 (-406 |#2|))) 198)) (-1525 (($ $) 116 (|has| (-406 |#2|) (-362)))) (-3174 (($ (-1256 |#2|) |#2|) 192)) (-3324 (((-683 (-406 |#2|))) 197)) (-4335 (((-683 (-406 |#2|))) 199)) (-3128 (((-2 (|:| |num| (-683 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 191)) (-4329 (((-2 (|:| |num| (-1256 |#2|)) (|:| |den| |#2|)) $) 193)) (-3137 (((-1256 $)) 205)) (-2639 (((-1256 $)) 206)) (-3841 (((-112) $) 204)) (-2881 (((-112) $) 203) (((-112) $ |#1|) 190) (((-112) $ |#2|) 189)) (-3730 (($) 142 (|has| (-406 |#2|) (-348)) CONST)) (-2464 (($ (-916)) 88 (|has| (-406 |#2|) (-367)))) (-3153 (((-3 |#2| "failed")) 184)) (-1709 (((-1112) $) 10)) (-2435 (((-766)) 218)) (-3147 (($) 159)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 101 (|has| (-406 |#2|) (-362)))) (-1606 (($ (-639 $)) 98 (|has| (-406 |#2|) (-362))) (($ $ $) 97 (|has| (-406 |#2|) (-362)))) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) 145 (|has| (-406 |#2|) (-348)))) (-1635 (((-417 $) $) 112 (|has| (-406 |#2|) (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| (-406 |#2|) (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 109 (|has| (-406 |#2|) (-362)))) (-1762 (((-3 $ "failed") $ $) 92 (|has| (-406 |#2|) (-362)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 103 (|has| (-406 |#2|) (-362)))) (-2044 (((-766) $) 105 (|has| (-406 |#2|) (-362)))) (-2343 ((|#1| $ |#1| |#1|) 186)) (-3092 (((-3 |#2| "failed")) 185)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 106 (|has| (-406 |#2|) (-362)))) (-2736 (((-406 |#2|) (-1256 $)) 48) (((-406 |#2|)) 61)) (-3543 (((-766) $) 150 (|has| (-406 |#2|) (-348))) (((-3 (-766) "failed") $ $) 138 (|has| (-406 |#2|) (-348)))) (-4029 (($ $ (-1 (-406 |#2|) (-406 |#2|)) (-766)) 122 (|has| (-406 |#2|) (-362))) (($ $ (-1 (-406 |#2|) (-406 |#2|))) 121 (|has| (-406 |#2|) (-362))) (($ $ (-1 |#2| |#2|)) 188) (($ $ (-639 (-1168)) (-639 (-766))) 129 (-4037 (-2245 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2245 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-1168) (-766)) 130 (-4037 (-2245 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2245 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-639 (-1168))) 131 (-4037 (-2245 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2245 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-1168)) 132 (-4037 (-2245 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2245 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-766)) 134 (-4037 (-2245 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-232))) (-2245 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348)))) (($ $) 136 (-4037 (-2245 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-232))) (-2245 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348))))) (-2539 (((-683 (-406 |#2|)) (-1256 $) (-1 (-406 |#2|) (-406 |#2|))) 153 (|has| (-406 |#2|) (-362)))) (-3371 ((|#3|) 158)) (-1653 (($) 147 (|has| (-406 |#2|) (-348)))) (-2205 (((-1256 (-406 |#2|)) $ (-1256 $)) 51) (((-683 (-406 |#2|)) (-1256 $) (-1256 $)) 50) (((-1256 (-406 |#2|)) $) 67) (((-683 (-406 |#2|)) (-1256 $)) 66)) (-4208 (((-1256 (-406 |#2|)) $) 64) (($ (-1256 (-406 |#2|))) 63) ((|#3| $) 170) (($ |#3|) 156)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 144 (|has| (-406 |#2|) (-348)))) (-4240 (((-1256 $) (-1256 $)) 202)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ (-406 |#2|)) 38) (($ (-406 (-562))) 86 (-4037 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-1033 (-406 (-562)))))) (($ $) 91 (|has| (-406 |#2|) (-362)))) (-2059 (($ $) 143 (|has| (-406 |#2|) (-348))) (((-3 $ "failed") $) 44 (|has| (-406 |#2|) (-144)))) (-3683 ((|#3| $) 46)) (-1568 (((-766)) 28)) (-4266 (((-112)) 215)) (-3866 (((-112) |#1|) 214) (((-112) |#2|) 213)) (-4291 (((-1256 $)) 68)) (-3799 (((-112) $ $) 95 (|has| (-406 |#2|) (-362)))) (-2960 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 183)) (-3243 (((-112)) 217)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-1 (-406 |#2|) (-406 |#2|)) (-766)) 124 (|has| (-406 |#2|) (-362))) (($ $ (-1 (-406 |#2|) (-406 |#2|))) 123 (|has| (-406 |#2|) (-362))) (($ $ (-639 (-1168)) (-639 (-766))) 125 (-4037 (-2245 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2245 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-1168) (-766)) 126 (-4037 (-2245 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2245 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-639 (-1168))) 127 (-4037 (-2245 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2245 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-1168)) 128 (-4037 (-2245 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) (-2245 (|has| (-406 |#2|) (-895 (-1168))) (|has| (-406 |#2|) (-362))))) (($ $ (-766)) 133 (-4037 (-2245 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-232))) (-2245 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348)))) (($ $) 135 (-4037 (-2245 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-232))) (-2245 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348))))) (-1733 (((-112) $ $) 6)) (-1859 (($ $ $) 120 (|has| (-406 |#2|) (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 117 (|has| (-406 |#2|) (-362)))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 |#2|)) 40) (($ (-406 |#2|) $) 39) (($ (-406 (-562)) $) 119 (|has| (-406 |#2|) (-362))) (($ $ (-406 (-562))) 118 (|has| (-406 |#2|) (-362)))))
(((-341 |#1| |#2| |#3|) (-139) (-1211) (-1232 |t#1|) (-1232 (-406 |t#2|))) (T -341))
-((-3684 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-766)))) (-2116 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-766)))) (-2386 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-1877 (*1 *2 *3 *3) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-1946 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-1719 (*1 *2 *3) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-1719 (*1 *2 *3) (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112)))) (-2083 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-3797 (*1 *2 *3) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-3797 (*1 *2 *3) (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112)))) (-4240 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-2792 (*1 *2 *3) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-2792 (*1 *2 *3) (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112)))) (-3826 (*1 *2) (-12 (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)))) (-2980 (*1 *2) (-12 (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)))) (-4346 (*1 *2 *1) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-2472 (*1 *2 *1) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-1624 (*1 *2 *2) (-12 (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))) (-2142 (*1 *2 *2) (-12 (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))) (-2435 (*1 *2 *2) (-12 (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))) (-3933 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))) (-4245 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))) (-2696 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))) (-2452 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))) (-3971 (*1 *2 *1) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-2 (|:| |num| (-1256 *4)) (|:| |den| *4))))) (-4018 (*1 *1 *2 *3) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1232 *4)) (-4 *4 (-1211)) (-4 *1 (-341 *4 *3 *5)) (-4 *5 (-1232 (-406 *3))))) (-4270 (*1 *2 *1) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-2 (|:| |num| (-1256 *4)) (|:| |den| *4))))) (-2679 (*1 *1 *2 *3) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1232 *4)) (-4 *4 (-1211)) (-4 *1 (-341 *4 *3 *5)) (-4 *5 (-1232 (-406 *3))))) (-2979 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-341 *4 *5 *6)) (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-2 (|:| |num| (-683 *5)) (|:| |den| *5))))) (-2472 (*1 *2 *1 *3) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-2472 (*1 *2 *1 *3) (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112)))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))) (-1498 (*1 *1 *1) (-12 (-4 *1 (-341 *2 *3 *4)) (-4 *2 (-1211)) (-4 *3 (-1232 *2)) (-4 *4 (-1232 (-406 *3))))) (-2343 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-341 *2 *3 *4)) (-4 *2 (-1211)) (-4 *3 (-1232 *2)) (-4 *4 (-1232 (-406 *3))))) (-3441 (*1 *2) (|partial| -12 (-4 *1 (-341 *3 *2 *4)) (-4 *3 (-1211)) (-4 *4 (-1232 (-406 *2))) (-4 *2 (-1232 *3)))) (-2676 (*1 *2) (|partial| -12 (-4 *1 (-341 *3 *2 *4)) (-4 *3 (-1211)) (-4 *4 (-1232 (-406 *2))) (-4 *2 (-1232 *3)))) (-4193 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-1211)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-341 *4 *5 *6)))) (-1336 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *1 (-341 *4 *5 *6)) (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-4 *4 (-362)) (-5 *2 (-639 (-947 *4))))) (-2753 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *3 (-367)) (-5 *2 (-639 (-639 *3))))))
-(-13 (-719 (-406 |t#2|) |t#3|) (-10 -8 (-15 -3684 ((-766))) (-15 -2116 ((-766))) (-15 -2386 ((-112))) (-15 -1877 ((-112) |t#1| |t#1|)) (-15 -1946 ((-112))) (-15 -1719 ((-112) |t#1|)) (-15 -1719 ((-112) |t#2|)) (-15 -2083 ((-112))) (-15 -3797 ((-112) |t#1|)) (-15 -3797 ((-112) |t#2|)) (-15 -4240 ((-112))) (-15 -2792 ((-112) |t#1|)) (-15 -2792 ((-112) |t#2|)) (-15 -3826 ((-1256 $))) (-15 -2980 ((-1256 $))) (-15 -4346 ((-112) $)) (-15 -2472 ((-112) $)) (-15 -1624 ((-1256 $) (-1256 $))) (-15 -2142 ((-1256 $) (-1256 $))) (-15 -2435 ((-1256 $) (-1256 $))) (-15 -3933 ((-683 (-406 |t#2|)))) (-15 -4245 ((-683 (-406 |t#2|)))) (-15 -2696 ((-683 (-406 |t#2|)))) (-15 -2452 ((-683 (-406 |t#2|)))) (-15 -3971 ((-2 (|:| |num| (-1256 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -4018 ($ (-1256 |t#2|) |t#2|)) (-15 -4270 ((-2 (|:| |num| (-1256 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -2679 ($ (-1256 |t#2|) |t#2|)) (-15 -2979 ((-2 (|:| |num| (-683 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -2472 ((-112) $ |t#1|)) (-15 -2472 ((-112) $ |t#2|)) (-15 -4029 ($ $ (-1 |t#2| |t#2|))) (-15 -1498 ($ $)) (-15 -2343 (|t#1| $ |t#1| |t#1|)) (-15 -3441 ((-3 |t#2| "failed"))) (-15 -2676 ((-3 |t#2| "failed"))) (-15 -4193 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-362)) (-15 -1336 ((-639 (-947 |t#1|)) (-1168))) |%noBranch|) (IF (|has| |t#1| (-367)) (-15 -2753 ((-639 (-639 |t#1|)))) |%noBranch|)))
+((-3668 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-766)))) (-2435 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-766)))) (-3243 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-1718 (*1 *2 *3 *3) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-4266 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-3866 (*1 *2 *3) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-3866 (*1 *2 *3) (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112)))) (-3236 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-3520 (*1 *2 *3) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-3520 (*1 *2 *3) (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112)))) (-2241 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-1912 (*1 *2 *3) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-1912 (*1 *2 *3) (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112)))) (-2639 (*1 *2) (-12 (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)))) (-3137 (*1 *2) (-12 (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)))) (-3841 (*1 *2 *1) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-2881 (*1 *2 *1) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-4240 (*1 *2 *2) (-12 (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))) (-2700 (*1 *2 *2) (-12 (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))) (-2575 (*1 *2 *2) (-12 (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))) (-4335 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))) (-2289 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))) (-3324 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))) (-2715 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))) (-1631 (*1 *2 *1) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-2 (|:| |num| (-1256 *4)) (|:| |den| *4))))) (-3916 (*1 *1 *2 *3) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1232 *4)) (-4 *4 (-1211)) (-4 *1 (-341 *4 *3 *5)) (-4 *5 (-1232 (-406 *3))))) (-4329 (*1 *2 *1) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-2 (|:| |num| (-1256 *4)) (|:| |den| *4))))) (-3174 (*1 *1 *2 *3) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1232 *4)) (-4 *4 (-1211)) (-4 *1 (-341 *4 *3 *5)) (-4 *5 (-1232 (-406 *3))))) (-3128 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-341 *4 *5 *6)) (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-2 (|:| |num| (-683 *5)) (|:| |den| *5))))) (-2881 (*1 *2 *1 *3) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))) (-2881 (*1 *2 *1 *3) (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112)))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))) (-2578 (*1 *1 *1) (-12 (-4 *1 (-341 *2 *3 *4)) (-4 *2 (-1211)) (-4 *3 (-1232 *2)) (-4 *4 (-1232 (-406 *3))))) (-2343 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-341 *2 *3 *4)) (-4 *2 (-1211)) (-4 *3 (-1232 *2)) (-4 *4 (-1232 (-406 *3))))) (-3092 (*1 *2) (|partial| -12 (-4 *1 (-341 *3 *2 *4)) (-4 *3 (-1211)) (-4 *4 (-1232 (-406 *2))) (-4 *2 (-1232 *3)))) (-3153 (*1 *2) (|partial| -12 (-4 *1 (-341 *3 *2 *4)) (-4 *3 (-1211)) (-4 *4 (-1232 (-406 *2))) (-4 *2 (-1232 *3)))) (-2960 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-1211)) (-4 *6 (-1232 (-406 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-341 *4 *5 *6)))) (-2004 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *1 (-341 *4 *5 *6)) (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-4 *4 (-362)) (-5 *2 (-639 (-947 *4))))) (-2713 (*1 *2) (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))) (-4 *3 (-367)) (-5 *2 (-639 (-639 *3))))))
+(-13 (-719 (-406 |t#2|) |t#3|) (-10 -8 (-15 -3668 ((-766))) (-15 -2435 ((-766))) (-15 -3243 ((-112))) (-15 -1718 ((-112) |t#1| |t#1|)) (-15 -4266 ((-112))) (-15 -3866 ((-112) |t#1|)) (-15 -3866 ((-112) |t#2|)) (-15 -3236 ((-112))) (-15 -3520 ((-112) |t#1|)) (-15 -3520 ((-112) |t#2|)) (-15 -2241 ((-112))) (-15 -1912 ((-112) |t#1|)) (-15 -1912 ((-112) |t#2|)) (-15 -2639 ((-1256 $))) (-15 -3137 ((-1256 $))) (-15 -3841 ((-112) $)) (-15 -2881 ((-112) $)) (-15 -4240 ((-1256 $) (-1256 $))) (-15 -2700 ((-1256 $) (-1256 $))) (-15 -2575 ((-1256 $) (-1256 $))) (-15 -4335 ((-683 (-406 |t#2|)))) (-15 -2289 ((-683 (-406 |t#2|)))) (-15 -3324 ((-683 (-406 |t#2|)))) (-15 -2715 ((-683 (-406 |t#2|)))) (-15 -1631 ((-2 (|:| |num| (-1256 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3916 ($ (-1256 |t#2|) |t#2|)) (-15 -4329 ((-2 (|:| |num| (-1256 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3174 ($ (-1256 |t#2|) |t#2|)) (-15 -3128 ((-2 (|:| |num| (-683 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -2881 ((-112) $ |t#1|)) (-15 -2881 ((-112) $ |t#2|)) (-15 -4029 ($ $ (-1 |t#2| |t#2|))) (-15 -2578 ($ $)) (-15 -2343 (|t#1| $ |t#1| |t#1|)) (-15 -3092 ((-3 |t#2| "failed"))) (-15 -3153 ((-3 |t#2| "failed"))) (-15 -2960 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-362)) (-15 -2004 ((-639 (-947 |t#1|)) (-1168))) |%noBranch|) (IF (|has| |t#1| (-367)) (-15 -2713 ((-639 (-639 |t#1|)))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-38 #1=(-406 |#2|)) . T) ((-38 $) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-102) . T) ((-111 #0# #0#) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-130) . T) ((-144) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-144))) ((-146) |has| (-406 |#2|) (-146)) ((-612 #0#) -4037 (|has| (-406 |#2|) (-1033 (-406 (-562)))) (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-612 #1#) . T) ((-612 (-562)) . T) ((-612 $) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-609 (-857)) . T) ((-171) . T) ((-610 |#3|) . T) ((-230 #1#) |has| (-406 |#2|) (-362)) ((-232) -4037 (|has| (-406 |#2|) (-348)) (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362)))) ((-242) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-289) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-306) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-362) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-401) |has| (-406 |#2|) (-348)) ((-367) -4037 (|has| (-406 |#2|) (-367)) (|has| (-406 |#2|) (-348))) ((-348) |has| (-406 |#2|) (-348)) ((-369 #1# |#3|) . T) ((-408 #1# |#3|) . T) ((-376 #1#) . T) ((-410 #1#) . T) ((-451) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-554) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-642 #0#) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-642 #1#) . T) ((-642 $) . T) ((-635 #1#) . T) ((-635 (-562)) |has| (-406 |#2|) (-635 (-562))) ((-712 #0#) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-712 #1#) . T) ((-712 $) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-719 #1# |#3|) . T) ((-721) . T) ((-895 (-1168)) -12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168)))) ((-915) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-1033 (-406 (-562))) |has| (-406 |#2|) (-1033 (-406 (-562)))) ((-1033 #1#) . T) ((-1033 (-562)) |has| (-406 |#2|) (-1033 (-562))) ((-1050 #0#) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))) ((-1050 #1#) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1143) |has| (-406 |#2|) (-348)) ((-1211) -4037 (|has| (-406 |#2|) (-348)) (|has| (-406 |#2|) (-362))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2024 (((-112) $) NIL)) (-3285 (((-766)) NIL)) (-1748 (((-905 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3984 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-905 |#1|) (-367)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| (-905 |#1|) (-367)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-905 |#1|) "failed") $) NIL)) (-3961 (((-905 |#1|) $) NIL)) (-4018 (($ (-1256 (-905 |#1|))) NIL)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-905 |#1|) (-367)))) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| (-905 |#1|) (-367)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-3529 (($) NIL (|has| (-905 |#1|) (-367)))) (-1322 (((-112) $) NIL (|has| (-905 |#1|) (-367)))) (-3589 (($ $ (-766)) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367)))) (($ $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-2717 (((-112) $) NIL)) (-1900 (((-916) $) NIL (|has| (-905 |#1|) (-367))) (((-828 (-916)) $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-1957 (((-112) $) NIL)) (-1846 (($) NIL (|has| (-905 |#1|) (-367)))) (-1316 (((-112) $) NIL (|has| (-905 |#1|) (-367)))) (-2247 (((-905 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3699 (((-3 $ "failed") $) NIL (|has| (-905 |#1|) (-367)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1565 (((-1164 (-905 |#1|)) $) NIL) (((-1164 $) $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-1999 (((-916) $) NIL (|has| (-905 |#1|) (-367)))) (-3892 (((-1164 (-905 |#1|)) $) NIL (|has| (-905 |#1|) (-367)))) (-4203 (((-1164 (-905 |#1|)) $) NIL (|has| (-905 |#1|) (-367))) (((-3 (-1164 (-905 |#1|)) "failed") $ $) NIL (|has| (-905 |#1|) (-367)))) (-2393 (($ $ (-1164 (-905 |#1|))) NIL (|has| (-905 |#1|) (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| (-905 |#1|) (-367)) CONST)) (-2466 (($ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3113 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-3873 (((-953 (-1112))) NIL)) (-3148 (($) NIL (|has| (-905 |#1|) (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL (|has| (-905 |#1|) (-367)))) (-1635 (((-417 $) $) NIL)) (-4121 (((-828 (-916))) NIL) (((-916)) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3362 (((-766) $) NIL (|has| (-905 |#1|) (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-3627 (((-133)) NIL)) (-4029 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-3598 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-2096 (((-1164 (-905 |#1|))) NIL)) (-2283 (($) NIL (|has| (-905 |#1|) (-367)))) (-2624 (($) NIL (|has| (-905 |#1|) (-367)))) (-3593 (((-1256 (-905 |#1|)) $) NIL) (((-683 (-905 |#1|)) (-1256 $)) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| (-905 |#1|) (-367)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-905 |#1|)) NIL)) (-2805 (($ $) NIL (|has| (-905 |#1|) (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-2579 (((-766)) NIL)) (-3928 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-2922 (((-112) $ $) NIL)) (-3694 (((-112) $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4374 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-3114 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ (-905 |#1|)) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ (-905 |#1|)) NIL) (($ (-905 |#1|) $) NIL)))
-(((-342 |#1| |#2|) (-13 (-328 (-905 |#1|)) (-10 -7 (-15 -3873 ((-953 (-1112)))))) (-916) (-916)) (T -342))
-((-3873 (*1 *2) (-12 (-5 *2 (-953 (-1112))) (-5 *1 (-342 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))))
-(-13 (-328 (-905 |#1|)) (-10 -7 (-15 -3873 ((-953 (-1112))))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 43)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2024 (((-112) $) NIL)) (-3285 (((-766)) NIL)) (-1748 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3984 (((-1180 (-916) (-766)) (-562)) 40 (|has| |#1| (-367)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 114)) (-3961 ((|#1| $) 85)) (-4018 (($ (-1256 |#1|)) 103)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) 94 (|has| |#1| (-367)))) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) 97 (|has| |#1| (-367)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-3529 (($) 128 (|has| |#1| (-367)))) (-1322 (((-112) $) 47 (|has| |#1| (-367)))) (-3589 (($ $ (-766)) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2717 (((-112) $) NIL)) (-1900 (((-916) $) 44 (|has| |#1| (-367))) (((-828 (-916)) $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1957 (((-112) $) NIL)) (-1846 (($) 130 (|has| |#1| (-367)))) (-1316 (((-112) $) NIL (|has| |#1| (-367)))) (-2247 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3699 (((-3 $ "failed") $) NIL (|has| |#1| (-367)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1565 (((-1164 |#1|) $) 89) (((-1164 $) $ (-916)) NIL (|has| |#1| (-367)))) (-1999 (((-916) $) 138 (|has| |#1| (-367)))) (-3892 (((-1164 |#1|) $) NIL (|has| |#1| (-367)))) (-4203 (((-1164 |#1|) $) NIL (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) NIL (|has| |#1| (-367)))) (-2393 (($ $ (-1164 |#1|)) NIL (|has| |#1| (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 145)) (-3729 (($) NIL (|has| |#1| (-367)) CONST)) (-2466 (($ (-916)) 70 (|has| |#1| (-367)))) (-3113 (((-112) $) 117)) (-1709 (((-1112) $) NIL)) (-3873 (((-953 (-1112))) 41)) (-3148 (($) 126 (|has| |#1| (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) 92 (|has| |#1| (-367)))) (-1635 (((-417 $) $) NIL)) (-4121 (((-828 (-916))) 66) (((-916)) 67)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3362 (((-766) $) 129 (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) 124 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3627 (((-133)) NIL)) (-4029 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3598 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-2096 (((-1164 |#1|)) 95)) (-2283 (($) 127 (|has| |#1| (-367)))) (-2624 (($) 135 (|has| |#1| (-367)))) (-3593 (((-1256 |#1|) $) 58) (((-683 |#1|) (-1256 $)) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-367)))) (-4054 (((-857) $) 141) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) 74)) (-2805 (($ $) NIL (|has| |#1| (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2579 (((-766)) 137)) (-3928 (((-1256 $)) 116) (((-1256 $) (-916)) 72)) (-2922 (((-112) $ $) NIL)) (-3694 (((-112) $) NIL)) (-2286 (($) 48 T CONST)) (-2294 (($) 45 T CONST)) (-4374 (($ $) 80 (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3114 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-1731 (((-112) $ $) 46)) (-1859 (($ $ $) 143) (($ $ |#1|) 144)) (-1848 (($ $) 125) (($ $ $) NIL)) (-1835 (($ $ $) 60)) (** (($ $ (-916)) 147) (($ $ (-766)) 148) (($ $ (-562)) 146)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 76) (($ $ $) 75) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 142)))
-(((-343 |#1| |#2|) (-13 (-328 |#1|) (-10 -7 (-15 -3873 ((-953 (-1112)))))) (-348) (-1164 |#1|)) (T -343))
-((-3873 (*1 *2) (-12 (-5 *2 (-953 (-1112))) (-5 *1 (-343 *3 *4)) (-4 *3 (-348)) (-14 *4 (-1164 *3)))))
-(-13 (-328 |#1|) (-10 -7 (-15 -3873 ((-953 (-1112))))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2024 (((-112) $) NIL)) (-3285 (((-766)) NIL)) (-1748 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3984 (((-1180 (-916) (-766)) (-562)) NIL (|has| |#1| (-367)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3961 ((|#1| $) NIL)) (-4018 (($ (-1256 |#1|)) NIL)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-367)))) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| |#1| (-367)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-3529 (($) NIL (|has| |#1| (-367)))) (-1322 (((-112) $) NIL (|has| |#1| (-367)))) (-3589 (($ $ (-766)) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2717 (((-112) $) NIL)) (-1900 (((-916) $) NIL (|has| |#1| (-367))) (((-828 (-916)) $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1957 (((-112) $) NIL)) (-1846 (($) NIL (|has| |#1| (-367)))) (-1316 (((-112) $) NIL (|has| |#1| (-367)))) (-2247 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3699 (((-3 $ "failed") $) NIL (|has| |#1| (-367)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1565 (((-1164 |#1|) $) NIL) (((-1164 $) $ (-916)) NIL (|has| |#1| (-367)))) (-1999 (((-916) $) NIL (|has| |#1| (-367)))) (-3892 (((-1164 |#1|) $) NIL (|has| |#1| (-367)))) (-4203 (((-1164 |#1|) $) NIL (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) NIL (|has| |#1| (-367)))) (-2393 (($ $ (-1164 |#1|)) NIL (|has| |#1| (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| |#1| (-367)) CONST)) (-2466 (($ (-916)) NIL (|has| |#1| (-367)))) (-3113 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-3873 (((-953 (-1112))) NIL)) (-3148 (($) NIL (|has| |#1| (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL (|has| |#1| (-367)))) (-1635 (((-417 $) $) NIL)) (-4121 (((-828 (-916))) NIL) (((-916)) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3362 (((-766) $) NIL (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3627 (((-133)) NIL)) (-4029 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3598 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-2096 (((-1164 |#1|)) NIL)) (-2283 (($) NIL (|has| |#1| (-367)))) (-2624 (($) NIL (|has| |#1| (-367)))) (-3593 (((-1256 |#1|) $) NIL) (((-683 |#1|) (-1256 $)) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-367)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) NIL)) (-2805 (($ $) NIL (|has| |#1| (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2579 (((-766)) NIL)) (-3928 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-2922 (((-112) $ $) NIL)) (-3694 (((-112) $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4374 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3114 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-344 |#1| |#2|) (-13 (-328 |#1|) (-10 -7 (-15 -3873 ((-953 (-1112)))))) (-348) (-916)) (T -344))
-((-3873 (*1 *2) (-12 (-5 *2 (-953 (-1112))) (-5 *1 (-344 *3 *4)) (-4 *3 (-348)) (-14 *4 (-916)))))
-(-13 (-328 |#1|) (-10 -7 (-15 -3873 ((-953 (-1112))))))
-((-2050 (((-766) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112)))))) 42)) (-2681 (((-953 (-1112)) (-1164 |#1|)) 85)) (-4363 (((-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))) (-1164 |#1|)) 78)) (-1467 (((-683 |#1|) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112)))))) 86)) (-4149 (((-3 (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))) "failed") (-916)) 13)) (-3644 (((-3 (-1164 |#1|) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112)))))) (-916)) 18)))
-(((-345 |#1|) (-10 -7 (-15 -2681 ((-953 (-1112)) (-1164 |#1|))) (-15 -4363 ((-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))) (-1164 |#1|))) (-15 -1467 ((-683 |#1|) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))))) (-15 -2050 ((-766) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))))) (-15 -4149 ((-3 (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))) "failed") (-916))) (-15 -3644 ((-3 (-1164 |#1|) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112)))))) (-916)))) (-348)) (T -345))
-((-3644 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-3 (-1164 *4) (-1256 (-639 (-2 (|:| -2534 *4) (|:| -2466 (-1112))))))) (-5 *1 (-345 *4)) (-4 *4 (-348)))) (-4149 (*1 *2 *3) (|partial| -12 (-5 *3 (-916)) (-5 *2 (-1256 (-639 (-2 (|:| -2534 *4) (|:| -2466 (-1112)))))) (-5 *1 (-345 *4)) (-4 *4 (-348)))) (-2050 (*1 *2 *3) (-12 (-5 *3 (-1256 (-639 (-2 (|:| -2534 *4) (|:| -2466 (-1112)))))) (-4 *4 (-348)) (-5 *2 (-766)) (-5 *1 (-345 *4)))) (-1467 (*1 *2 *3) (-12 (-5 *3 (-1256 (-639 (-2 (|:| -2534 *4) (|:| -2466 (-1112)))))) (-4 *4 (-348)) (-5 *2 (-683 *4)) (-5 *1 (-345 *4)))) (-4363 (*1 *2 *3) (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-1256 (-639 (-2 (|:| -2534 *4) (|:| -2466 (-1112)))))) (-5 *1 (-345 *4)))) (-2681 (*1 *2 *3) (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-953 (-1112))) (-5 *1 (-345 *4)))))
-(-10 -7 (-15 -2681 ((-953 (-1112)) (-1164 |#1|))) (-15 -4363 ((-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))) (-1164 |#1|))) (-15 -1467 ((-683 |#1|) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))))) (-15 -2050 ((-766) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))))) (-15 -4149 ((-3 (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))) "failed") (-916))) (-15 -3644 ((-3 (-1164 |#1|) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112)))))) (-916))))
-((-4054 ((|#1| |#3|) 86) ((|#3| |#1|) 69)))
-(((-346 |#1| |#2| |#3|) (-10 -7 (-15 -4054 (|#3| |#1|)) (-15 -4054 (|#1| |#3|))) (-328 |#2|) (-348) (-328 |#2|)) (T -346))
-((-4054 (*1 *2 *3) (-12 (-4 *4 (-348)) (-4 *2 (-328 *4)) (-5 *1 (-346 *2 *4 *3)) (-4 *3 (-328 *4)))) (-4054 (*1 *2 *3) (-12 (-4 *4 (-348)) (-4 *2 (-328 *4)) (-5 *1 (-346 *3 *4 *2)) (-4 *3 (-328 *4)))))
-(-10 -7 (-15 -4054 (|#3| |#1|)) (-15 -4054 (|#1| |#3|)))
-((-1322 (((-112) $) 50)) (-1900 (((-828 (-916)) $) 21) (((-916) $) 51)) (-3699 (((-3 $ "failed") $) 16)) (-3729 (($) 9)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 92)) (-3362 (((-3 (-766) "failed") $ $) 70) (((-766) $) 59)) (-4029 (($ $ (-766)) NIL) (($ $) 8)) (-2283 (($) 43)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 34)) (-2805 (((-3 $ "failed") $) 38) (($ $) 37)))
-(((-347 |#1|) (-10 -8 (-15 -1900 ((-916) |#1|)) (-15 -3362 ((-766) |#1|)) (-15 -1322 ((-112) |#1|)) (-15 -2283 (|#1|)) (-15 -1289 ((-3 (-1256 |#1|) "failed") (-683 |#1|))) (-15 -2805 (|#1| |#1|)) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -3729 (|#1|)) (-15 -3699 ((-3 |#1| "failed") |#1|)) (-15 -3362 ((-3 (-766) "failed") |#1| |#1|)) (-15 -1900 ((-828 (-916)) |#1|)) (-15 -2805 ((-3 |#1| "failed") |#1|)) (-15 -2741 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|)))) (-348)) (T -347))
-NIL
-(-10 -8 (-15 -1900 ((-916) |#1|)) (-15 -3362 ((-766) |#1|)) (-15 -1322 ((-112) |#1|)) (-15 -2283 (|#1|)) (-15 -1289 ((-3 (-1256 |#1|) "failed") (-683 |#1|))) (-15 -2805 (|#1| |#1|)) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -3729 (|#1|)) (-15 -3699 ((-3 |#1| "failed") |#1|)) (-15 -3362 ((-3 (-766) "failed") |#1| |#1|)) (-15 -1900 ((-828 (-916)) |#1|)) (-15 -2805 ((-3 |#1| "failed") |#1|)) (-15 -2741 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3984 (((-1180 (-916) (-766)) (-562)) 94)) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 74)) (-2921 (((-417 $) $) 73)) (-2569 (((-112) $ $) 60)) (-1382 (((-766)) 104)) (-1800 (($) 17 T CONST)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) 88)) (-1811 (($ $ $) 56)) (-3668 (((-3 $ "failed") $) 33)) (-1448 (($) 107)) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-3529 (($) 92)) (-1322 (((-112) $) 91)) (-3589 (($ $) 80) (($ $ (-766)) 79)) (-2717 (((-112) $) 72)) (-1900 (((-828 (-916)) $) 82) (((-916) $) 89)) (-1957 (((-112) $) 31)) (-3699 (((-3 $ "failed") $) 103)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1999 (((-916) $) 106)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 71)) (-3729 (($) 102 T CONST)) (-2466 (($ (-916)) 105)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) 95)) (-1635 (((-417 $) $) 75)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1577 (((-766) $) 59)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 58)) (-3362 (((-3 (-766) "failed") $ $) 81) (((-766) $) 90)) (-4029 (($ $ (-766)) 100) (($ $) 98)) (-2283 (($) 93)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 96)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67)) (-2805 (((-3 $ "failed") $) 83) (($ $) 97)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-766)) 101) (($ $) 99)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ $) 66)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3826 (((-112) $) NIL)) (-2284 (((-766)) NIL)) (-1748 (((-905 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-1755 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-905 |#1|) (-367)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| (-905 |#1|) (-367)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-905 |#1|) "failed") $) NIL)) (-3960 (((-905 |#1|) $) NIL)) (-3916 (($ (-1256 (-905 |#1|))) NIL)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-905 |#1|) (-367)))) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| (-905 |#1|) (-367)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-2787 (($) NIL (|has| (-905 |#1|) (-367)))) (-1844 (((-112) $) NIL (|has| (-905 |#1|) (-367)))) (-2184 (($ $ (-766)) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367)))) (($ $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-3521 (((-112) $) NIL)) (-1993 (((-916) $) NIL (|has| (-905 |#1|) (-367))) (((-828 (-916)) $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-4367 (((-112) $) NIL)) (-2631 (($) NIL (|has| (-905 |#1|) (-367)))) (-1775 (((-112) $) NIL (|has| (-905 |#1|) (-367)))) (-4363 (((-905 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3828 (((-3 $ "failed") $) NIL (|has| (-905 |#1|) (-367)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1937 (((-1164 (-905 |#1|)) $) NIL) (((-1164 $) $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3549 (((-916) $) NIL (|has| (-905 |#1|) (-367)))) (-2121 (((-1164 (-905 |#1|)) $) NIL (|has| (-905 |#1|) (-367)))) (-1894 (((-1164 (-905 |#1|)) $) NIL (|has| (-905 |#1|) (-367))) (((-3 (-1164 (-905 |#1|)) "failed") $ $) NIL (|has| (-905 |#1|) (-367)))) (-3319 (($ $ (-1164 (-905 |#1|))) NIL (|has| (-905 |#1|) (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| (-905 |#1|) (-367)) CONST)) (-2464 (($ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-2991 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-1913 (((-953 (-1112))) NIL)) (-3147 (($) NIL (|has| (-905 |#1|) (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL (|has| (-905 |#1|) (-367)))) (-1635 (((-417 $) $) NIL)) (-3548 (((-828 (-916))) NIL) (((-916)) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3543 (((-766) $) NIL (|has| (-905 |#1|) (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-4340 (((-133)) NIL)) (-4029 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-2250 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-3371 (((-1164 (-905 |#1|))) NIL)) (-1653 (($) NIL (|has| (-905 |#1|) (-367)))) (-3861 (($) NIL (|has| (-905 |#1|) (-367)))) (-2205 (((-1256 (-905 |#1|)) $) NIL) (((-683 (-905 |#1|)) (-1256 $)) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| (-905 |#1|) (-367)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-905 |#1|)) NIL)) (-2059 (($ $) NIL (|has| (-905 |#1|) (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-1568 (((-766)) NIL)) (-4291 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-3799 (((-112) $ $) NIL)) (-3782 (((-112) $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4144 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-3113 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ (-905 |#1|)) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ (-905 |#1|)) NIL) (($ (-905 |#1|) $) NIL)))
+(((-342 |#1| |#2|) (-13 (-328 (-905 |#1|)) (-10 -7 (-15 -1913 ((-953 (-1112)))))) (-916) (-916)) (T -342))
+((-1913 (*1 *2) (-12 (-5 *2 (-953 (-1112))) (-5 *1 (-342 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))))
+(-13 (-328 (-905 |#1|)) (-10 -7 (-15 -1913 ((-953 (-1112))))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 43)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3826 (((-112) $) NIL)) (-2284 (((-766)) NIL)) (-1748 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-1755 (((-1180 (-916) (-766)) (-562)) 40 (|has| |#1| (-367)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 114)) (-3960 ((|#1| $) 85)) (-3916 (($ (-1256 |#1|)) 103)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) 94 (|has| |#1| (-367)))) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) 97 (|has| |#1| (-367)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-2787 (($) 128 (|has| |#1| (-367)))) (-1844 (((-112) $) 47 (|has| |#1| (-367)))) (-2184 (($ $ (-766)) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3521 (((-112) $) NIL)) (-1993 (((-916) $) 44 (|has| |#1| (-367))) (((-828 (-916)) $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4367 (((-112) $) NIL)) (-2631 (($) 130 (|has| |#1| (-367)))) (-1775 (((-112) $) NIL (|has| |#1| (-367)))) (-4363 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3828 (((-3 $ "failed") $) NIL (|has| |#1| (-367)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1937 (((-1164 |#1|) $) 89) (((-1164 $) $ (-916)) NIL (|has| |#1| (-367)))) (-3549 (((-916) $) 138 (|has| |#1| (-367)))) (-2121 (((-1164 |#1|) $) NIL (|has| |#1| (-367)))) (-1894 (((-1164 |#1|) $) NIL (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) NIL (|has| |#1| (-367)))) (-3319 (($ $ (-1164 |#1|)) NIL (|has| |#1| (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 145)) (-3730 (($) NIL (|has| |#1| (-367)) CONST)) (-2464 (($ (-916)) 70 (|has| |#1| (-367)))) (-2991 (((-112) $) 117)) (-1709 (((-1112) $) NIL)) (-1913 (((-953 (-1112))) 41)) (-3147 (($) 126 (|has| |#1| (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) 92 (|has| |#1| (-367)))) (-1635 (((-417 $) $) NIL)) (-3548 (((-828 (-916))) 66) (((-916)) 67)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3543 (((-766) $) 129 (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) 124 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4340 (((-133)) NIL)) (-4029 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-2250 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-3371 (((-1164 |#1|)) 95)) (-1653 (($) 127 (|has| |#1| (-367)))) (-3861 (($) 135 (|has| |#1| (-367)))) (-2205 (((-1256 |#1|) $) 58) (((-683 |#1|) (-1256 $)) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-367)))) (-4053 (((-857) $) 141) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) 74)) (-2059 (($ $) NIL (|has| |#1| (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1568 (((-766)) 137)) (-4291 (((-1256 $)) 116) (((-1256 $) (-916)) 72)) (-3799 (((-112) $ $) NIL)) (-3782 (((-112) $) NIL)) (-2285 (($) 48 T CONST)) (-2294 (($) 45 T CONST)) (-4144 (($ $) 80 (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3113 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-1733 (((-112) $ $) 46)) (-1859 (($ $ $) 143) (($ $ |#1|) 144)) (-1847 (($ $) 125) (($ $ $) NIL)) (-1836 (($ $ $) 60)) (** (($ $ (-916)) 147) (($ $ (-766)) 148) (($ $ (-562)) 146)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 76) (($ $ $) 75) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 142)))
+(((-343 |#1| |#2|) (-13 (-328 |#1|) (-10 -7 (-15 -1913 ((-953 (-1112)))))) (-348) (-1164 |#1|)) (T -343))
+((-1913 (*1 *2) (-12 (-5 *2 (-953 (-1112))) (-5 *1 (-343 *3 *4)) (-4 *3 (-348)) (-14 *4 (-1164 *3)))))
+(-13 (-328 |#1|) (-10 -7 (-15 -1913 ((-953 (-1112))))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3826 (((-112) $) NIL)) (-2284 (((-766)) NIL)) (-1748 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-1755 (((-1180 (-916) (-766)) (-562)) NIL (|has| |#1| (-367)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3960 ((|#1| $) NIL)) (-3916 (($ (-1256 |#1|)) NIL)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-367)))) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| |#1| (-367)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-2787 (($) NIL (|has| |#1| (-367)))) (-1844 (((-112) $) NIL (|has| |#1| (-367)))) (-2184 (($ $ (-766)) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3521 (((-112) $) NIL)) (-1993 (((-916) $) NIL (|has| |#1| (-367))) (((-828 (-916)) $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4367 (((-112) $) NIL)) (-2631 (($) NIL (|has| |#1| (-367)))) (-1775 (((-112) $) NIL (|has| |#1| (-367)))) (-4363 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3828 (((-3 $ "failed") $) NIL (|has| |#1| (-367)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1937 (((-1164 |#1|) $) NIL) (((-1164 $) $ (-916)) NIL (|has| |#1| (-367)))) (-3549 (((-916) $) NIL (|has| |#1| (-367)))) (-2121 (((-1164 |#1|) $) NIL (|has| |#1| (-367)))) (-1894 (((-1164 |#1|) $) NIL (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) NIL (|has| |#1| (-367)))) (-3319 (($ $ (-1164 |#1|)) NIL (|has| |#1| (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| |#1| (-367)) CONST)) (-2464 (($ (-916)) NIL (|has| |#1| (-367)))) (-2991 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-1913 (((-953 (-1112))) NIL)) (-3147 (($) NIL (|has| |#1| (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL (|has| |#1| (-367)))) (-1635 (((-417 $) $) NIL)) (-3548 (((-828 (-916))) NIL) (((-916)) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3543 (((-766) $) NIL (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4340 (((-133)) NIL)) (-4029 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-2250 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-3371 (((-1164 |#1|)) NIL)) (-1653 (($) NIL (|has| |#1| (-367)))) (-3861 (($) NIL (|has| |#1| (-367)))) (-2205 (((-1256 |#1|) $) NIL) (((-683 |#1|) (-1256 $)) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-367)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) NIL)) (-2059 (($ $) NIL (|has| |#1| (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1568 (((-766)) NIL)) (-4291 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-3799 (((-112) $ $) NIL)) (-3782 (((-112) $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4144 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3113 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-344 |#1| |#2|) (-13 (-328 |#1|) (-10 -7 (-15 -1913 ((-953 (-1112)))))) (-348) (-916)) (T -344))
+((-1913 (*1 *2) (-12 (-5 *2 (-953 (-1112))) (-5 *1 (-344 *3 *4)) (-4 *3 (-348)) (-14 *4 (-916)))))
+(-13 (-328 |#1|) (-10 -7 (-15 -1913 ((-953 (-1112))))))
+((-2901 (((-766) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112)))))) 42)) (-3193 (((-953 (-1112)) (-1164 |#1|)) 85)) (-4028 (((-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))) (-1164 |#1|)) 78)) (-2388 (((-683 |#1|) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112)))))) 86)) (-2643 (((-3 (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))) "failed") (-916)) 13)) (-1409 (((-3 (-1164 |#1|) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112)))))) (-916)) 18)))
+(((-345 |#1|) (-10 -7 (-15 -3193 ((-953 (-1112)) (-1164 |#1|))) (-15 -4028 ((-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))) (-1164 |#1|))) (-15 -2388 ((-683 |#1|) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))))) (-15 -2901 ((-766) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))))) (-15 -2643 ((-3 (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))) "failed") (-916))) (-15 -1409 ((-3 (-1164 |#1|) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112)))))) (-916)))) (-348)) (T -345))
+((-1409 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-3 (-1164 *4) (-1256 (-639 (-2 (|:| -2533 *4) (|:| -2464 (-1112))))))) (-5 *1 (-345 *4)) (-4 *4 (-348)))) (-2643 (*1 *2 *3) (|partial| -12 (-5 *3 (-916)) (-5 *2 (-1256 (-639 (-2 (|:| -2533 *4) (|:| -2464 (-1112)))))) (-5 *1 (-345 *4)) (-4 *4 (-348)))) (-2901 (*1 *2 *3) (-12 (-5 *3 (-1256 (-639 (-2 (|:| -2533 *4) (|:| -2464 (-1112)))))) (-4 *4 (-348)) (-5 *2 (-766)) (-5 *1 (-345 *4)))) (-2388 (*1 *2 *3) (-12 (-5 *3 (-1256 (-639 (-2 (|:| -2533 *4) (|:| -2464 (-1112)))))) (-4 *4 (-348)) (-5 *2 (-683 *4)) (-5 *1 (-345 *4)))) (-4028 (*1 *2 *3) (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-1256 (-639 (-2 (|:| -2533 *4) (|:| -2464 (-1112)))))) (-5 *1 (-345 *4)))) (-3193 (*1 *2 *3) (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-953 (-1112))) (-5 *1 (-345 *4)))))
+(-10 -7 (-15 -3193 ((-953 (-1112)) (-1164 |#1|))) (-15 -4028 ((-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))) (-1164 |#1|))) (-15 -2388 ((-683 |#1|) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))))) (-15 -2901 ((-766) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))))) (-15 -2643 ((-3 (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))) "failed") (-916))) (-15 -1409 ((-3 (-1164 |#1|) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112)))))) (-916))))
+((-4053 ((|#1| |#3|) 86) ((|#3| |#1|) 69)))
+(((-346 |#1| |#2| |#3|) (-10 -7 (-15 -4053 (|#3| |#1|)) (-15 -4053 (|#1| |#3|))) (-328 |#2|) (-348) (-328 |#2|)) (T -346))
+((-4053 (*1 *2 *3) (-12 (-4 *4 (-348)) (-4 *2 (-328 *4)) (-5 *1 (-346 *2 *4 *3)) (-4 *3 (-328 *4)))) (-4053 (*1 *2 *3) (-12 (-4 *4 (-348)) (-4 *2 (-328 *4)) (-5 *1 (-346 *3 *4 *2)) (-4 *3 (-328 *4)))))
+(-10 -7 (-15 -4053 (|#3| |#1|)) (-15 -4053 (|#1| |#3|)))
+((-1844 (((-112) $) 50)) (-1993 (((-828 (-916)) $) 21) (((-916) $) 51)) (-3828 (((-3 $ "failed") $) 16)) (-3730 (($) 9)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 92)) (-3543 (((-3 (-766) "failed") $ $) 70) (((-766) $) 59)) (-4029 (($ $ (-766)) NIL) (($ $) 8)) (-1653 (($) 43)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 34)) (-2059 (((-3 $ "failed") $) 38) (($ $) 37)))
+(((-347 |#1|) (-10 -8 (-15 -1993 ((-916) |#1|)) (-15 -3543 ((-766) |#1|)) (-15 -1844 ((-112) |#1|)) (-15 -1653 (|#1|)) (-15 -1870 ((-3 (-1256 |#1|) "failed") (-683 |#1|))) (-15 -2059 (|#1| |#1|)) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -3730 (|#1|)) (-15 -3828 ((-3 |#1| "failed") |#1|)) (-15 -3543 ((-3 (-766) "failed") |#1| |#1|)) (-15 -1993 ((-828 (-916)) |#1|)) (-15 -2059 ((-3 |#1| "failed") |#1|)) (-15 -2602 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|)))) (-348)) (T -347))
+NIL
+(-10 -8 (-15 -1993 ((-916) |#1|)) (-15 -3543 ((-766) |#1|)) (-15 -1844 ((-112) |#1|)) (-15 -1653 (|#1|)) (-15 -1870 ((-3 (-1256 |#1|) "failed") (-683 |#1|))) (-15 -2059 (|#1| |#1|)) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -3730 (|#1|)) (-15 -3828 ((-3 |#1| "failed") |#1|)) (-15 -3543 ((-3 (-766) "failed") |#1| |#1|)) (-15 -1993 ((-828 (-916)) |#1|)) (-15 -2059 ((-3 |#1| "failed") |#1|)) (-15 -2602 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-1755 (((-1180 (-916) (-766)) (-562)) 94)) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 74)) (-3788 (((-417 $) $) 73)) (-1436 (((-112) $ $) 60)) (-1382 (((-766)) 104)) (-3329 (($) 17 T CONST)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) 88)) (-1810 (($ $ $) 56)) (-1694 (((-3 $ "failed") $) 33)) (-1447 (($) 107)) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-2787 (($) 92)) (-1844 (((-112) $) 91)) (-2184 (($ $) 80) (($ $ (-766)) 79)) (-3521 (((-112) $) 72)) (-1993 (((-828 (-916)) $) 82) (((-916) $) 89)) (-4367 (((-112) $) 31)) (-3828 (((-3 $ "failed") $) 103)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-3549 (((-916) $) 106)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 71)) (-3730 (($) 102 T CONST)) (-2464 (($ (-916)) 105)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) 95)) (-1635 (((-417 $) $) 75)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-2044 (((-766) $) 59)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 58)) (-3543 (((-3 (-766) "failed") $ $) 81) (((-766) $) 90)) (-4029 (($ $ (-766)) 100) (($ $) 98)) (-1653 (($) 93)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 96)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67)) (-2059 (((-3 $ "failed") $) 83) (($ $) 97)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-766)) 101) (($ $) 99)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ $) 66)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68)))
(((-348) (-139)) (T -348))
-((-2805 (*1 *1 *1) (-4 *1 (-348))) (-1289 (*1 *2 *3) (|partial| -12 (-5 *3 (-683 *1)) (-4 *1 (-348)) (-5 *2 (-1256 *1)))) (-3233 (*1 *2) (-12 (-4 *1 (-348)) (-5 *2 (-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))))) (-3984 (*1 *2 *3) (-12 (-4 *1 (-348)) (-5 *3 (-562)) (-5 *2 (-1180 (-916) (-766))))) (-2283 (*1 *1) (-4 *1 (-348))) (-3529 (*1 *1) (-4 *1 (-348))) (-1322 (*1 *2 *1) (-12 (-4 *1 (-348)) (-5 *2 (-112)))) (-3362 (*1 *2 *1) (-12 (-4 *1 (-348)) (-5 *2 (-766)))) (-1900 (*1 *2 *1) (-12 (-4 *1 (-348)) (-5 *2 (-916)))) (-2370 (*1 *2) (-12 (-4 *1 (-348)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(-13 (-401) (-367) (-1143) (-232) (-10 -8 (-15 -2805 ($ $)) (-15 -1289 ((-3 (-1256 $) "failed") (-683 $))) (-15 -3233 ((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562)))))) (-15 -3984 ((-1180 (-916) (-766)) (-562))) (-15 -2283 ($)) (-15 -3529 ($)) (-15 -1322 ((-112) $)) (-15 -3362 ((-766) $)) (-15 -1900 ((-916) $)) (-15 -2370 ((-3 "prime" "polynomial" "normal" "cyclic")))))
+((-2059 (*1 *1 *1) (-4 *1 (-348))) (-1870 (*1 *2 *3) (|partial| -12 (-5 *3 (-683 *1)) (-4 *1 (-348)) (-5 *2 (-1256 *1)))) (-1753 (*1 *2) (-12 (-4 *1 (-348)) (-5 *2 (-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))))) (-1755 (*1 *2 *3) (-12 (-4 *1 (-348)) (-5 *3 (-562)) (-5 *2 (-1180 (-916) (-766))))) (-1653 (*1 *1) (-4 *1 (-348))) (-2787 (*1 *1) (-4 *1 (-348))) (-1844 (*1 *2 *1) (-12 (-4 *1 (-348)) (-5 *2 (-112)))) (-3543 (*1 *2 *1) (-12 (-4 *1 (-348)) (-5 *2 (-766)))) (-1993 (*1 *2 *1) (-12 (-4 *1 (-348)) (-5 *2 (-916)))) (-3082 (*1 *2) (-12 (-4 *1 (-348)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(-13 (-401) (-367) (-1143) (-232) (-10 -8 (-15 -2059 ($ $)) (-15 -1870 ((-3 (-1256 $) "failed") (-683 $))) (-15 -1753 ((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562)))))) (-15 -1755 ((-1180 (-916) (-766)) (-562))) (-15 -1653 ($)) (-15 -2787 ($)) (-15 -1844 ((-112) $)) (-15 -3543 ((-766) $)) (-15 -1993 ((-916) $)) (-15 -3082 ((-3 "prime" "polynomial" "normal" "cyclic")))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-144) . T) ((-612 #0#) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-232) . T) ((-242) . T) ((-289) . T) ((-306) . T) ((-362) . T) ((-401) . T) ((-367) . T) ((-451) . T) ((-554) . T) ((-642 #0#) . T) ((-642 $) . T) ((-712 #0#) . T) ((-712 $) . T) ((-721) . T) ((-915) . T) ((-1050 #0#) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1143) . T) ((-1211) . T))
-((-2438 (((-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) |#1|) 53)) (-3826 (((-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|)))) 51)))
-(((-349 |#1| |#2| |#3|) (-10 -7 (-15 -3826 ((-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))))) (-15 -2438 ((-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) |#1|))) (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $)))) (-1232 |#1|) (-408 |#1| |#2|)) (T -349))
-((-2438 (*1 *2 *3) (-12 (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *2 (-2 (|:| -3928 (-683 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-683 *3)))) (-5 *1 (-349 *3 *4 *5)) (-4 *5 (-408 *3 *4)))) (-3826 (*1 *2) (-12 (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *2 (-2 (|:| -3928 (-683 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-683 *3)))) (-5 *1 (-349 *3 *4 *5)) (-4 *5 (-408 *3 *4)))))
-(-10 -7 (-15 -3826 ((-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))))) (-15 -2438 ((-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2024 (((-112) $) NIL)) (-3285 (((-766)) NIL)) (-1748 (((-905 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3984 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-905 |#1|) (-367)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2050 (((-766)) NIL)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| (-905 |#1|) (-367)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-905 |#1|) "failed") $) NIL)) (-3961 (((-905 |#1|) $) NIL)) (-4018 (($ (-1256 (-905 |#1|))) NIL)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-905 |#1|) (-367)))) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| (-905 |#1|) (-367)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-3529 (($) NIL (|has| (-905 |#1|) (-367)))) (-1322 (((-112) $) NIL (|has| (-905 |#1|) (-367)))) (-3589 (($ $ (-766)) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367)))) (($ $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-2717 (((-112) $) NIL)) (-1900 (((-916) $) NIL (|has| (-905 |#1|) (-367))) (((-828 (-916)) $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-1957 (((-112) $) NIL)) (-1846 (($) NIL (|has| (-905 |#1|) (-367)))) (-1316 (((-112) $) NIL (|has| (-905 |#1|) (-367)))) (-2247 (((-905 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3699 (((-3 $ "failed") $) NIL (|has| (-905 |#1|) (-367)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1565 (((-1164 (-905 |#1|)) $) NIL) (((-1164 $) $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-1999 (((-916) $) NIL (|has| (-905 |#1|) (-367)))) (-3892 (((-1164 (-905 |#1|)) $) NIL (|has| (-905 |#1|) (-367)))) (-4203 (((-1164 (-905 |#1|)) $) NIL (|has| (-905 |#1|) (-367))) (((-3 (-1164 (-905 |#1|)) "failed") $ $) NIL (|has| (-905 |#1|) (-367)))) (-2393 (($ $ (-1164 (-905 |#1|))) NIL (|has| (-905 |#1|) (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| (-905 |#1|) (-367)) CONST)) (-2466 (($ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3113 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-2551 (((-1256 (-639 (-2 (|:| -2534 (-905 |#1|)) (|:| -2466 (-1112)))))) NIL)) (-3850 (((-683 (-905 |#1|))) NIL)) (-3148 (($) NIL (|has| (-905 |#1|) (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL (|has| (-905 |#1|) (-367)))) (-1635 (((-417 $) $) NIL)) (-4121 (((-828 (-916))) NIL) (((-916)) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3362 (((-766) $) NIL (|has| (-905 |#1|) (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-3627 (((-133)) NIL)) (-4029 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-3598 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-2096 (((-1164 (-905 |#1|))) NIL)) (-2283 (($) NIL (|has| (-905 |#1|) (-367)))) (-2624 (($) NIL (|has| (-905 |#1|) (-367)))) (-3593 (((-1256 (-905 |#1|)) $) NIL) (((-683 (-905 |#1|)) (-1256 $)) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| (-905 |#1|) (-367)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-905 |#1|)) NIL)) (-2805 (($ $) NIL (|has| (-905 |#1|) (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-2579 (((-766)) NIL)) (-3928 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-2922 (((-112) $ $) NIL)) (-3694 (((-112) $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4374 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-3114 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ (-905 |#1|)) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ (-905 |#1|)) NIL) (($ (-905 |#1|) $) NIL)))
-(((-350 |#1| |#2|) (-13 (-328 (-905 |#1|)) (-10 -7 (-15 -2551 ((-1256 (-639 (-2 (|:| -2534 (-905 |#1|)) (|:| -2466 (-1112))))))) (-15 -3850 ((-683 (-905 |#1|)))) (-15 -2050 ((-766))))) (-916) (-916)) (T -350))
-((-2551 (*1 *2) (-12 (-5 *2 (-1256 (-639 (-2 (|:| -2534 (-905 *3)) (|:| -2466 (-1112)))))) (-5 *1 (-350 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))) (-3850 (*1 *2) (-12 (-5 *2 (-683 (-905 *3))) (-5 *1 (-350 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))) (-2050 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-350 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))))
-(-13 (-328 (-905 |#1|)) (-10 -7 (-15 -2551 ((-1256 (-639 (-2 (|:| -2534 (-905 |#1|)) (|:| -2466 (-1112))))))) (-15 -3850 ((-683 (-905 |#1|)))) (-15 -2050 ((-766)))))
-((-4041 (((-112) $ $) 61)) (-1952 (((-112) $) 74)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2024 (((-112) $) NIL)) (-3285 (((-766)) NIL)) (-1748 ((|#1| $) 92) (($ $ (-916)) 90 (|has| |#1| (-367)))) (-3984 (((-1180 (-916) (-766)) (-562)) 148 (|has| |#1| (-367)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2050 (((-766)) 89)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) 162 (|has| |#1| (-367)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 112)) (-3961 ((|#1| $) 91)) (-4018 (($ (-1256 |#1|)) 58)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) 188 (|has| |#1| (-367)))) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) 158 (|has| |#1| (-367)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-3529 (($) 149 (|has| |#1| (-367)))) (-1322 (((-112) $) NIL (|has| |#1| (-367)))) (-3589 (($ $ (-766)) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2717 (((-112) $) NIL)) (-1900 (((-916) $) NIL (|has| |#1| (-367))) (((-828 (-916)) $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1957 (((-112) $) NIL)) (-1846 (($) 98 (|has| |#1| (-367)))) (-1316 (((-112) $) 175 (|has| |#1| (-367)))) (-2247 ((|#1| $) 94) (($ $ (-916)) 93 (|has| |#1| (-367)))) (-3699 (((-3 $ "failed") $) NIL (|has| |#1| (-367)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1565 (((-1164 |#1|) $) 189) (((-1164 $) $ (-916)) NIL (|has| |#1| (-367)))) (-1999 (((-916) $) 134 (|has| |#1| (-367)))) (-3892 (((-1164 |#1|) $) 73 (|has| |#1| (-367)))) (-4203 (((-1164 |#1|) $) 70 (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) 82 (|has| |#1| (-367)))) (-2393 (($ $ (-1164 |#1|)) 69 (|has| |#1| (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 192)) (-3729 (($) NIL (|has| |#1| (-367)) CONST)) (-2466 (($ (-916)) 137 (|has| |#1| (-367)))) (-3113 (((-112) $) 108)) (-1709 (((-1112) $) NIL)) (-2551 (((-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112)))))) 83)) (-3850 (((-683 |#1|)) 87)) (-3148 (($) 96 (|has| |#1| (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) 150 (|has| |#1| (-367)))) (-1635 (((-417 $) $) NIL)) (-4121 (((-828 (-916))) NIL) (((-916)) 151)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3362 (((-766) $) NIL (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3627 (((-133)) NIL)) (-4029 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3598 (((-828 (-916)) $) NIL) (((-916) $) 62)) (-2096 (((-1164 |#1|)) 152)) (-2283 (($) 133 (|has| |#1| (-367)))) (-2624 (($) NIL (|has| |#1| (-367)))) (-3593 (((-1256 |#1|) $) 106) (((-683 |#1|) (-1256 $)) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-367)))) (-4054 (((-857) $) 124) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) 57)) (-2805 (($ $) NIL (|has| |#1| (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2579 (((-766)) 156)) (-3928 (((-1256 $)) 172) (((-1256 $) (-916)) 101)) (-2922 (((-112) $ $) NIL)) (-3694 (((-112) $) NIL)) (-2286 (($) 117 T CONST)) (-2294 (($) 33 T CONST)) (-4374 (($ $) 107 (|has| |#1| (-367))) (($ $ (-766)) 99 (|has| |#1| (-367)))) (-3114 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-1731 (((-112) $ $) 183)) (-1859 (($ $ $) 104) (($ $ |#1|) 105)) (-1848 (($ $) 177) (($ $ $) 181)) (-1835 (($ $ $) 179)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 138)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 186) (($ $ $) 142) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 103)))
-(((-351 |#1| |#2|) (-13 (-328 |#1|) (-10 -7 (-15 -2551 ((-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))))) (-15 -3850 ((-683 |#1|))) (-15 -2050 ((-766))))) (-348) (-3 (-1164 |#1|) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))))) (T -351))
-((-2551 (*1 *2) (-12 (-5 *2 (-1256 (-639 (-2 (|:| -2534 *3) (|:| -2466 (-1112)))))) (-5 *1 (-351 *3 *4)) (-4 *3 (-348)) (-14 *4 (-3 (-1164 *3) *2)))) (-3850 (*1 *2) (-12 (-5 *2 (-683 *3)) (-5 *1 (-351 *3 *4)) (-4 *3 (-348)) (-14 *4 (-3 (-1164 *3) (-1256 (-639 (-2 (|:| -2534 *3) (|:| -2466 (-1112))))))))) (-2050 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-351 *3 *4)) (-4 *3 (-348)) (-14 *4 (-3 (-1164 *3) (-1256 (-639 (-2 (|:| -2534 *3) (|:| -2466 (-1112))))))))))
-(-13 (-328 |#1|) (-10 -7 (-15 -2551 ((-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))))) (-15 -3850 ((-683 |#1|))) (-15 -2050 ((-766)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2024 (((-112) $) NIL)) (-3285 (((-766)) NIL)) (-1748 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3984 (((-1180 (-916) (-766)) (-562)) NIL (|has| |#1| (-367)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2050 (((-766)) NIL)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3961 ((|#1| $) NIL)) (-4018 (($ (-1256 |#1|)) NIL)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-367)))) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| |#1| (-367)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-3529 (($) NIL (|has| |#1| (-367)))) (-1322 (((-112) $) NIL (|has| |#1| (-367)))) (-3589 (($ $ (-766)) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2717 (((-112) $) NIL)) (-1900 (((-916) $) NIL (|has| |#1| (-367))) (((-828 (-916)) $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1957 (((-112) $) NIL)) (-1846 (($) NIL (|has| |#1| (-367)))) (-1316 (((-112) $) NIL (|has| |#1| (-367)))) (-2247 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3699 (((-3 $ "failed") $) NIL (|has| |#1| (-367)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1565 (((-1164 |#1|) $) NIL) (((-1164 $) $ (-916)) NIL (|has| |#1| (-367)))) (-1999 (((-916) $) NIL (|has| |#1| (-367)))) (-3892 (((-1164 |#1|) $) NIL (|has| |#1| (-367)))) (-4203 (((-1164 |#1|) $) NIL (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) NIL (|has| |#1| (-367)))) (-2393 (($ $ (-1164 |#1|)) NIL (|has| |#1| (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| |#1| (-367)) CONST)) (-2466 (($ (-916)) NIL (|has| |#1| (-367)))) (-3113 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-2551 (((-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112)))))) NIL)) (-3850 (((-683 |#1|)) NIL)) (-3148 (($) NIL (|has| |#1| (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL (|has| |#1| (-367)))) (-1635 (((-417 $) $) NIL)) (-4121 (((-828 (-916))) NIL) (((-916)) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3362 (((-766) $) NIL (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3627 (((-133)) NIL)) (-4029 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3598 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-2096 (((-1164 |#1|)) NIL)) (-2283 (($) NIL (|has| |#1| (-367)))) (-2624 (($) NIL (|has| |#1| (-367)))) (-3593 (((-1256 |#1|) $) NIL) (((-683 |#1|) (-1256 $)) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-367)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) NIL)) (-2805 (($ $) NIL (|has| |#1| (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2579 (((-766)) NIL)) (-3928 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-2922 (((-112) $ $) NIL)) (-3694 (((-112) $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4374 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3114 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-352 |#1| |#2|) (-13 (-328 |#1|) (-10 -7 (-15 -2551 ((-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))))) (-15 -3850 ((-683 |#1|))) (-15 -2050 ((-766))))) (-348) (-916)) (T -352))
-((-2551 (*1 *2) (-12 (-5 *2 (-1256 (-639 (-2 (|:| -2534 *3) (|:| -2466 (-1112)))))) (-5 *1 (-352 *3 *4)) (-4 *3 (-348)) (-14 *4 (-916)))) (-3850 (*1 *2) (-12 (-5 *2 (-683 *3)) (-5 *1 (-352 *3 *4)) (-4 *3 (-348)) (-14 *4 (-916)))) (-2050 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-352 *3 *4)) (-4 *3 (-348)) (-14 *4 (-916)))))
-(-13 (-328 |#1|) (-10 -7 (-15 -2551 ((-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))))) (-15 -3850 ((-683 |#1|))) (-15 -2050 ((-766)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2024 (((-112) $) NIL)) (-3285 (((-766)) NIL)) (-1748 (((-905 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3984 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-905 |#1|) (-367)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| (-905 |#1|) (-367)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-905 |#1|) "failed") $) NIL)) (-3961 (((-905 |#1|) $) NIL)) (-4018 (($ (-1256 (-905 |#1|))) NIL)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-905 |#1|) (-367)))) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| (-905 |#1|) (-367)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-3529 (($) NIL (|has| (-905 |#1|) (-367)))) (-1322 (((-112) $) NIL (|has| (-905 |#1|) (-367)))) (-3589 (($ $ (-766)) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367)))) (($ $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-2717 (((-112) $) NIL)) (-1900 (((-916) $) NIL (|has| (-905 |#1|) (-367))) (((-828 (-916)) $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-1957 (((-112) $) NIL)) (-1846 (($) NIL (|has| (-905 |#1|) (-367)))) (-1316 (((-112) $) NIL (|has| (-905 |#1|) (-367)))) (-2247 (((-905 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3699 (((-3 $ "failed") $) NIL (|has| (-905 |#1|) (-367)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1565 (((-1164 (-905 |#1|)) $) NIL) (((-1164 $) $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-1999 (((-916) $) NIL (|has| (-905 |#1|) (-367)))) (-3892 (((-1164 (-905 |#1|)) $) NIL (|has| (-905 |#1|) (-367)))) (-4203 (((-1164 (-905 |#1|)) $) NIL (|has| (-905 |#1|) (-367))) (((-3 (-1164 (-905 |#1|)) "failed") $ $) NIL (|has| (-905 |#1|) (-367)))) (-2393 (($ $ (-1164 (-905 |#1|))) NIL (|has| (-905 |#1|) (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| (-905 |#1|) (-367)) CONST)) (-2466 (($ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3113 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-3148 (($) NIL (|has| (-905 |#1|) (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL (|has| (-905 |#1|) (-367)))) (-1635 (((-417 $) $) NIL)) (-4121 (((-828 (-916))) NIL) (((-916)) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3362 (((-766) $) NIL (|has| (-905 |#1|) (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-3627 (((-133)) NIL)) (-4029 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-3598 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-2096 (((-1164 (-905 |#1|))) NIL)) (-2283 (($) NIL (|has| (-905 |#1|) (-367)))) (-2624 (($) NIL (|has| (-905 |#1|) (-367)))) (-3593 (((-1256 (-905 |#1|)) $) NIL) (((-683 (-905 |#1|)) (-1256 $)) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| (-905 |#1|) (-367)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-905 |#1|)) NIL)) (-2805 (($ $) NIL (|has| (-905 |#1|) (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-2579 (((-766)) NIL)) (-3928 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-2922 (((-112) $ $) NIL)) (-3694 (((-112) $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4374 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-3114 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ (-905 |#1|)) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ (-905 |#1|)) NIL) (($ (-905 |#1|) $) NIL)))
+((-2606 (((-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) |#1|) 53)) (-2639 (((-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|)))) 51)))
+(((-349 |#1| |#2| |#3|) (-10 -7 (-15 -2639 ((-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))))) (-15 -2606 ((-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) |#1|))) (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $)))) (-1232 |#1|) (-408 |#1| |#2|)) (T -349))
+((-2606 (*1 *2 *3) (-12 (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *2 (-2 (|:| -4291 (-683 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-683 *3)))) (-5 *1 (-349 *3 *4 *5)) (-4 *5 (-408 *3 *4)))) (-2639 (*1 *2) (-12 (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *2 (-2 (|:| -4291 (-683 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-683 *3)))) (-5 *1 (-349 *3 *4 *5)) (-4 *5 (-408 *3 *4)))))
+(-10 -7 (-15 -2639 ((-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))))) (-15 -2606 ((-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) |#1|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3826 (((-112) $) NIL)) (-2284 (((-766)) NIL)) (-1748 (((-905 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-1755 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-905 |#1|) (-367)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-2901 (((-766)) NIL)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| (-905 |#1|) (-367)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-905 |#1|) "failed") $) NIL)) (-3960 (((-905 |#1|) $) NIL)) (-3916 (($ (-1256 (-905 |#1|))) NIL)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-905 |#1|) (-367)))) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| (-905 |#1|) (-367)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-2787 (($) NIL (|has| (-905 |#1|) (-367)))) (-1844 (((-112) $) NIL (|has| (-905 |#1|) (-367)))) (-2184 (($ $ (-766)) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367)))) (($ $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-3521 (((-112) $) NIL)) (-1993 (((-916) $) NIL (|has| (-905 |#1|) (-367))) (((-828 (-916)) $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-4367 (((-112) $) NIL)) (-2631 (($) NIL (|has| (-905 |#1|) (-367)))) (-1775 (((-112) $) NIL (|has| (-905 |#1|) (-367)))) (-4363 (((-905 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3828 (((-3 $ "failed") $) NIL (|has| (-905 |#1|) (-367)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1937 (((-1164 (-905 |#1|)) $) NIL) (((-1164 $) $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3549 (((-916) $) NIL (|has| (-905 |#1|) (-367)))) (-2121 (((-1164 (-905 |#1|)) $) NIL (|has| (-905 |#1|) (-367)))) (-1894 (((-1164 (-905 |#1|)) $) NIL (|has| (-905 |#1|) (-367))) (((-3 (-1164 (-905 |#1|)) "failed") $ $) NIL (|has| (-905 |#1|) (-367)))) (-3319 (($ $ (-1164 (-905 |#1|))) NIL (|has| (-905 |#1|) (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| (-905 |#1|) (-367)) CONST)) (-2464 (($ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-2991 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-4339 (((-1256 (-639 (-2 (|:| -2533 (-905 |#1|)) (|:| -2464 (-1112)))))) NIL)) (-2847 (((-683 (-905 |#1|))) NIL)) (-3147 (($) NIL (|has| (-905 |#1|) (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL (|has| (-905 |#1|) (-367)))) (-1635 (((-417 $) $) NIL)) (-3548 (((-828 (-916))) NIL) (((-916)) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3543 (((-766) $) NIL (|has| (-905 |#1|) (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-4340 (((-133)) NIL)) (-4029 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-2250 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-3371 (((-1164 (-905 |#1|))) NIL)) (-1653 (($) NIL (|has| (-905 |#1|) (-367)))) (-3861 (($) NIL (|has| (-905 |#1|) (-367)))) (-2205 (((-1256 (-905 |#1|)) $) NIL) (((-683 (-905 |#1|)) (-1256 $)) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| (-905 |#1|) (-367)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-905 |#1|)) NIL)) (-2059 (($ $) NIL (|has| (-905 |#1|) (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-1568 (((-766)) NIL)) (-4291 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-3799 (((-112) $ $) NIL)) (-3782 (((-112) $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4144 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-3113 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ (-905 |#1|)) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ (-905 |#1|)) NIL) (($ (-905 |#1|) $) NIL)))
+(((-350 |#1| |#2|) (-13 (-328 (-905 |#1|)) (-10 -7 (-15 -4339 ((-1256 (-639 (-2 (|:| -2533 (-905 |#1|)) (|:| -2464 (-1112))))))) (-15 -2847 ((-683 (-905 |#1|)))) (-15 -2901 ((-766))))) (-916) (-916)) (T -350))
+((-4339 (*1 *2) (-12 (-5 *2 (-1256 (-639 (-2 (|:| -2533 (-905 *3)) (|:| -2464 (-1112)))))) (-5 *1 (-350 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))) (-2847 (*1 *2) (-12 (-5 *2 (-683 (-905 *3))) (-5 *1 (-350 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))) (-2901 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-350 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))))
+(-13 (-328 (-905 |#1|)) (-10 -7 (-15 -4339 ((-1256 (-639 (-2 (|:| -2533 (-905 |#1|)) (|:| -2464 (-1112))))))) (-15 -2847 ((-683 (-905 |#1|)))) (-15 -2901 ((-766)))))
+((-4041 (((-112) $ $) 61)) (-4325 (((-112) $) 74)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3826 (((-112) $) NIL)) (-2284 (((-766)) NIL)) (-1748 ((|#1| $) 92) (($ $ (-916)) 90 (|has| |#1| (-367)))) (-1755 (((-1180 (-916) (-766)) (-562)) 148 (|has| |#1| (-367)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-2901 (((-766)) 89)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) 162 (|has| |#1| (-367)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 112)) (-3960 ((|#1| $) 91)) (-3916 (($ (-1256 |#1|)) 58)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) 188 (|has| |#1| (-367)))) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) 158 (|has| |#1| (-367)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-2787 (($) 149 (|has| |#1| (-367)))) (-1844 (((-112) $) NIL (|has| |#1| (-367)))) (-2184 (($ $ (-766)) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3521 (((-112) $) NIL)) (-1993 (((-916) $) NIL (|has| |#1| (-367))) (((-828 (-916)) $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4367 (((-112) $) NIL)) (-2631 (($) 98 (|has| |#1| (-367)))) (-1775 (((-112) $) 175 (|has| |#1| (-367)))) (-4363 ((|#1| $) 94) (($ $ (-916)) 93 (|has| |#1| (-367)))) (-3828 (((-3 $ "failed") $) NIL (|has| |#1| (-367)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1937 (((-1164 |#1|) $) 189) (((-1164 $) $ (-916)) NIL (|has| |#1| (-367)))) (-3549 (((-916) $) 134 (|has| |#1| (-367)))) (-2121 (((-1164 |#1|) $) 73 (|has| |#1| (-367)))) (-1894 (((-1164 |#1|) $) 70 (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) 82 (|has| |#1| (-367)))) (-3319 (($ $ (-1164 |#1|)) 69 (|has| |#1| (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 192)) (-3730 (($) NIL (|has| |#1| (-367)) CONST)) (-2464 (($ (-916)) 137 (|has| |#1| (-367)))) (-2991 (((-112) $) 108)) (-1709 (((-1112) $) NIL)) (-4339 (((-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112)))))) 83)) (-2847 (((-683 |#1|)) 87)) (-3147 (($) 96 (|has| |#1| (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) 150 (|has| |#1| (-367)))) (-1635 (((-417 $) $) NIL)) (-3548 (((-828 (-916))) NIL) (((-916)) 151)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3543 (((-766) $) NIL (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4340 (((-133)) NIL)) (-4029 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-2250 (((-828 (-916)) $) NIL) (((-916) $) 62)) (-3371 (((-1164 |#1|)) 152)) (-1653 (($) 133 (|has| |#1| (-367)))) (-3861 (($) NIL (|has| |#1| (-367)))) (-2205 (((-1256 |#1|) $) 106) (((-683 |#1|) (-1256 $)) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-367)))) (-4053 (((-857) $) 124) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) 57)) (-2059 (($ $) NIL (|has| |#1| (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1568 (((-766)) 156)) (-4291 (((-1256 $)) 172) (((-1256 $) (-916)) 101)) (-3799 (((-112) $ $) NIL)) (-3782 (((-112) $) NIL)) (-2285 (($) 117 T CONST)) (-2294 (($) 33 T CONST)) (-4144 (($ $) 107 (|has| |#1| (-367))) (($ $ (-766)) 99 (|has| |#1| (-367)))) (-3113 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-1733 (((-112) $ $) 183)) (-1859 (($ $ $) 104) (($ $ |#1|) 105)) (-1847 (($ $) 177) (($ $ $) 181)) (-1836 (($ $ $) 179)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 138)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 186) (($ $ $) 142) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 103)))
+(((-351 |#1| |#2|) (-13 (-328 |#1|) (-10 -7 (-15 -4339 ((-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))))) (-15 -2847 ((-683 |#1|))) (-15 -2901 ((-766))))) (-348) (-3 (-1164 |#1|) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))))) (T -351))
+((-4339 (*1 *2) (-12 (-5 *2 (-1256 (-639 (-2 (|:| -2533 *3) (|:| -2464 (-1112)))))) (-5 *1 (-351 *3 *4)) (-4 *3 (-348)) (-14 *4 (-3 (-1164 *3) *2)))) (-2847 (*1 *2) (-12 (-5 *2 (-683 *3)) (-5 *1 (-351 *3 *4)) (-4 *3 (-348)) (-14 *4 (-3 (-1164 *3) (-1256 (-639 (-2 (|:| -2533 *3) (|:| -2464 (-1112))))))))) (-2901 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-351 *3 *4)) (-4 *3 (-348)) (-14 *4 (-3 (-1164 *3) (-1256 (-639 (-2 (|:| -2533 *3) (|:| -2464 (-1112))))))))))
+(-13 (-328 |#1|) (-10 -7 (-15 -4339 ((-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))))) (-15 -2847 ((-683 |#1|))) (-15 -2901 ((-766)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3826 (((-112) $) NIL)) (-2284 (((-766)) NIL)) (-1748 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-1755 (((-1180 (-916) (-766)) (-562)) NIL (|has| |#1| (-367)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-2901 (((-766)) NIL)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3960 ((|#1| $) NIL)) (-3916 (($ (-1256 |#1|)) NIL)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-367)))) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| |#1| (-367)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-2787 (($) NIL (|has| |#1| (-367)))) (-1844 (((-112) $) NIL (|has| |#1| (-367)))) (-2184 (($ $ (-766)) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3521 (((-112) $) NIL)) (-1993 (((-916) $) NIL (|has| |#1| (-367))) (((-828 (-916)) $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4367 (((-112) $) NIL)) (-2631 (($) NIL (|has| |#1| (-367)))) (-1775 (((-112) $) NIL (|has| |#1| (-367)))) (-4363 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3828 (((-3 $ "failed") $) NIL (|has| |#1| (-367)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1937 (((-1164 |#1|) $) NIL) (((-1164 $) $ (-916)) NIL (|has| |#1| (-367)))) (-3549 (((-916) $) NIL (|has| |#1| (-367)))) (-2121 (((-1164 |#1|) $) NIL (|has| |#1| (-367)))) (-1894 (((-1164 |#1|) $) NIL (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) NIL (|has| |#1| (-367)))) (-3319 (($ $ (-1164 |#1|)) NIL (|has| |#1| (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| |#1| (-367)) CONST)) (-2464 (($ (-916)) NIL (|has| |#1| (-367)))) (-2991 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-4339 (((-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112)))))) NIL)) (-2847 (((-683 |#1|)) NIL)) (-3147 (($) NIL (|has| |#1| (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL (|has| |#1| (-367)))) (-1635 (((-417 $) $) NIL)) (-3548 (((-828 (-916))) NIL) (((-916)) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3543 (((-766) $) NIL (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4340 (((-133)) NIL)) (-4029 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-2250 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-3371 (((-1164 |#1|)) NIL)) (-1653 (($) NIL (|has| |#1| (-367)))) (-3861 (($) NIL (|has| |#1| (-367)))) (-2205 (((-1256 |#1|) $) NIL) (((-683 |#1|) (-1256 $)) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-367)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) NIL)) (-2059 (($ $) NIL (|has| |#1| (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1568 (((-766)) NIL)) (-4291 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-3799 (((-112) $ $) NIL)) (-3782 (((-112) $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4144 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3113 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-352 |#1| |#2|) (-13 (-328 |#1|) (-10 -7 (-15 -4339 ((-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))))) (-15 -2847 ((-683 |#1|))) (-15 -2901 ((-766))))) (-348) (-916)) (T -352))
+((-4339 (*1 *2) (-12 (-5 *2 (-1256 (-639 (-2 (|:| -2533 *3) (|:| -2464 (-1112)))))) (-5 *1 (-352 *3 *4)) (-4 *3 (-348)) (-14 *4 (-916)))) (-2847 (*1 *2) (-12 (-5 *2 (-683 *3)) (-5 *1 (-352 *3 *4)) (-4 *3 (-348)) (-14 *4 (-916)))) (-2901 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-352 *3 *4)) (-4 *3 (-348)) (-14 *4 (-916)))))
+(-13 (-328 |#1|) (-10 -7 (-15 -4339 ((-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))))) (-15 -2847 ((-683 |#1|))) (-15 -2901 ((-766)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3826 (((-112) $) NIL)) (-2284 (((-766)) NIL)) (-1748 (((-905 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-1755 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-905 |#1|) (-367)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| (-905 |#1|) (-367)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-905 |#1|) "failed") $) NIL)) (-3960 (((-905 |#1|) $) NIL)) (-3916 (($ (-1256 (-905 |#1|))) NIL)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-905 |#1|) (-367)))) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| (-905 |#1|) (-367)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-2787 (($) NIL (|has| (-905 |#1|) (-367)))) (-1844 (((-112) $) NIL (|has| (-905 |#1|) (-367)))) (-2184 (($ $ (-766)) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367)))) (($ $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-3521 (((-112) $) NIL)) (-1993 (((-916) $) NIL (|has| (-905 |#1|) (-367))) (((-828 (-916)) $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-4367 (((-112) $) NIL)) (-2631 (($) NIL (|has| (-905 |#1|) (-367)))) (-1775 (((-112) $) NIL (|has| (-905 |#1|) (-367)))) (-4363 (((-905 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3828 (((-3 $ "failed") $) NIL (|has| (-905 |#1|) (-367)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1937 (((-1164 (-905 |#1|)) $) NIL) (((-1164 $) $ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-3549 (((-916) $) NIL (|has| (-905 |#1|) (-367)))) (-2121 (((-1164 (-905 |#1|)) $) NIL (|has| (-905 |#1|) (-367)))) (-1894 (((-1164 (-905 |#1|)) $) NIL (|has| (-905 |#1|) (-367))) (((-3 (-1164 (-905 |#1|)) "failed") $ $) NIL (|has| (-905 |#1|) (-367)))) (-3319 (($ $ (-1164 (-905 |#1|))) NIL (|has| (-905 |#1|) (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| (-905 |#1|) (-367)) CONST)) (-2464 (($ (-916)) NIL (|has| (-905 |#1|) (-367)))) (-2991 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-3147 (($) NIL (|has| (-905 |#1|) (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL (|has| (-905 |#1|) (-367)))) (-1635 (((-417 $) $) NIL)) (-3548 (((-828 (-916))) NIL) (((-916)) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3543 (((-766) $) NIL (|has| (-905 |#1|) (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-4340 (((-133)) NIL)) (-4029 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-2250 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-3371 (((-1164 (-905 |#1|))) NIL)) (-1653 (($) NIL (|has| (-905 |#1|) (-367)))) (-3861 (($) NIL (|has| (-905 |#1|) (-367)))) (-2205 (((-1256 (-905 |#1|)) $) NIL) (((-683 (-905 |#1|)) (-1256 $)) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| (-905 |#1|) (-367)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-905 |#1|)) NIL)) (-2059 (($ $) NIL (|has| (-905 |#1|) (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| (-905 |#1|) (-144)) (|has| (-905 |#1|) (-367))))) (-1568 (((-766)) NIL)) (-4291 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-3799 (((-112) $ $) NIL)) (-3782 (((-112) $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4144 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-3113 (($ $) NIL (|has| (-905 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-905 |#1|) (-367)))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ (-905 |#1|)) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ (-905 |#1|)) NIL) (($ (-905 |#1|) $) NIL)))
(((-353 |#1| |#2|) (-328 (-905 |#1|)) (-916) (-916)) (T -353))
NIL
(-328 (-905 |#1|))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2024 (((-112) $) NIL)) (-3285 (((-766)) NIL)) (-1748 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3984 (((-1180 (-916) (-766)) (-562)) 120 (|has| |#1| (-367)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) 139 (|has| |#1| (-367)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 93)) (-3961 ((|#1| $) 90)) (-4018 (($ (-1256 |#1|)) 85)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) 117 (|has| |#1| (-367)))) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) 82 (|has| |#1| (-367)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-3529 (($) 42 (|has| |#1| (-367)))) (-1322 (((-112) $) NIL (|has| |#1| (-367)))) (-3589 (($ $ (-766)) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2717 (((-112) $) NIL)) (-1900 (((-916) $) NIL (|has| |#1| (-367))) (((-828 (-916)) $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1957 (((-112) $) NIL)) (-1846 (($) 121 (|has| |#1| (-367)))) (-1316 (((-112) $) 74 (|has| |#1| (-367)))) (-2247 ((|#1| $) 39) (($ $ (-916)) 43 (|has| |#1| (-367)))) (-3699 (((-3 $ "failed") $) NIL (|has| |#1| (-367)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1565 (((-1164 |#1|) $) 65) (((-1164 $) $ (-916)) NIL (|has| |#1| (-367)))) (-1999 (((-916) $) 97 (|has| |#1| (-367)))) (-3892 (((-1164 |#1|) $) NIL (|has| |#1| (-367)))) (-4203 (((-1164 |#1|) $) NIL (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) NIL (|has| |#1| (-367)))) (-2393 (($ $ (-1164 |#1|)) NIL (|has| |#1| (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| |#1| (-367)) CONST)) (-2466 (($ (-916)) 95 (|has| |#1| (-367)))) (-3113 (((-112) $) 141)) (-1709 (((-1112) $) NIL)) (-3148 (($) 36 (|has| |#1| (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) 115 (|has| |#1| (-367)))) (-1635 (((-417 $) $) NIL)) (-4121 (((-828 (-916))) NIL) (((-916)) 138)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3362 (((-766) $) NIL (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3627 (((-133)) NIL)) (-4029 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3598 (((-828 (-916)) $) NIL) (((-916) $) 59)) (-2096 (((-1164 |#1|)) 88)) (-2283 (($) 126 (|has| |#1| (-367)))) (-2624 (($) NIL (|has| |#1| (-367)))) (-3593 (((-1256 |#1|) $) 53) (((-683 |#1|) (-1256 $)) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-367)))) (-4054 (((-857) $) 137) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) 87)) (-2805 (($ $) NIL (|has| |#1| (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2579 (((-766)) 143)) (-3928 (((-1256 $)) 109) (((-1256 $) (-916)) 49)) (-2922 (((-112) $ $) NIL)) (-3694 (((-112) $) NIL)) (-2286 (($) 111 T CONST)) (-2294 (($) 32 T CONST)) (-4374 (($ $) 68 (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3114 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-1731 (((-112) $ $) 107)) (-1859 (($ $ $) 99) (($ $ |#1|) 100)) (-1848 (($ $) 80) (($ $ $) 105)) (-1835 (($ $ $) 103)) (** (($ $ (-916)) NIL) (($ $ (-766)) 44) (($ $ (-562)) 129)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 78) (($ $ $) 56) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 76)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3826 (((-112) $) NIL)) (-2284 (((-766)) NIL)) (-1748 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-1755 (((-1180 (-916) (-766)) (-562)) 120 (|has| |#1| (-367)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) 139 (|has| |#1| (-367)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 93)) (-3960 ((|#1| $) 90)) (-3916 (($ (-1256 |#1|)) 85)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) 117 (|has| |#1| (-367)))) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) 82 (|has| |#1| (-367)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-2787 (($) 42 (|has| |#1| (-367)))) (-1844 (((-112) $) NIL (|has| |#1| (-367)))) (-2184 (($ $ (-766)) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3521 (((-112) $) NIL)) (-1993 (((-916) $) NIL (|has| |#1| (-367))) (((-828 (-916)) $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4367 (((-112) $) NIL)) (-2631 (($) 121 (|has| |#1| (-367)))) (-1775 (((-112) $) 74 (|has| |#1| (-367)))) (-4363 ((|#1| $) 39) (($ $ (-916)) 43 (|has| |#1| (-367)))) (-3828 (((-3 $ "failed") $) NIL (|has| |#1| (-367)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1937 (((-1164 |#1|) $) 65) (((-1164 $) $ (-916)) NIL (|has| |#1| (-367)))) (-3549 (((-916) $) 97 (|has| |#1| (-367)))) (-2121 (((-1164 |#1|) $) NIL (|has| |#1| (-367)))) (-1894 (((-1164 |#1|) $) NIL (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) NIL (|has| |#1| (-367)))) (-3319 (($ $ (-1164 |#1|)) NIL (|has| |#1| (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| |#1| (-367)) CONST)) (-2464 (($ (-916)) 95 (|has| |#1| (-367)))) (-2991 (((-112) $) 141)) (-1709 (((-1112) $) NIL)) (-3147 (($) 36 (|has| |#1| (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) 115 (|has| |#1| (-367)))) (-1635 (((-417 $) $) NIL)) (-3548 (((-828 (-916))) NIL) (((-916)) 138)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3543 (((-766) $) NIL (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4340 (((-133)) NIL)) (-4029 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-2250 (((-828 (-916)) $) NIL) (((-916) $) 59)) (-3371 (((-1164 |#1|)) 88)) (-1653 (($) 126 (|has| |#1| (-367)))) (-3861 (($) NIL (|has| |#1| (-367)))) (-2205 (((-1256 |#1|) $) 53) (((-683 |#1|) (-1256 $)) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-367)))) (-4053 (((-857) $) 137) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) 87)) (-2059 (($ $) NIL (|has| |#1| (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1568 (((-766)) 143)) (-4291 (((-1256 $)) 109) (((-1256 $) (-916)) 49)) (-3799 (((-112) $ $) NIL)) (-3782 (((-112) $) NIL)) (-2285 (($) 111 T CONST)) (-2294 (($) 32 T CONST)) (-4144 (($ $) 68 (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3113 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-1733 (((-112) $ $) 107)) (-1859 (($ $ $) 99) (($ $ |#1|) 100)) (-1847 (($ $) 80) (($ $ $) 105)) (-1836 (($ $ $) 103)) (** (($ $ (-916)) NIL) (($ $ (-766)) 44) (($ $ (-562)) 129)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 78) (($ $ $) 56) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 76)))
(((-354 |#1| |#2|) (-328 |#1|) (-348) (-1164 |#1|)) (T -354))
NIL
(-328 |#1|)
-((-3334 ((|#1| (-1164 |#2|)) 52)))
-(((-355 |#1| |#2|) (-10 -7 (-15 -3334 (|#1| (-1164 |#2|)))) (-13 (-401) (-10 -7 (-15 -4054 (|#1| |#2|)) (-15 -1999 ((-916) |#1|)) (-15 -3928 ((-1256 |#1|) (-916))) (-15 -4374 (|#1| |#1|)))) (-348)) (T -355))
-((-3334 (*1 *2 *3) (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-4 *2 (-13 (-401) (-10 -7 (-15 -4054 (*2 *4)) (-15 -1999 ((-916) *2)) (-15 -3928 ((-1256 *2) (-916))) (-15 -4374 (*2 *2))))) (-5 *1 (-355 *2 *4)))))
-(-10 -7 (-15 -3334 (|#1| (-1164 |#2|))))
-((-3597 (((-953 (-1164 |#1|)) (-1164 |#1|)) 36)) (-1448 (((-1164 |#1|) (-916) (-916)) 112) (((-1164 |#1|) (-916)) 111)) (-1322 (((-112) (-1164 |#1|)) 84)) (-4140 (((-916) (-916)) 71)) (-3123 (((-916) (-916)) 74)) (-3306 (((-916) (-916)) 69)) (-1316 (((-112) (-1164 |#1|)) 88)) (-2432 (((-3 (-1164 |#1|) "failed") (-1164 |#1|)) 100)) (-2920 (((-3 (-1164 |#1|) "failed") (-1164 |#1|)) 103)) (-4168 (((-3 (-1164 |#1|) "failed") (-1164 |#1|)) 102)) (-2348 (((-3 (-1164 |#1|) "failed") (-1164 |#1|)) 101)) (-2700 (((-3 (-1164 |#1|) "failed") (-1164 |#1|)) 97)) (-3607 (((-1164 |#1|) (-1164 |#1|)) 62)) (-2507 (((-1164 |#1|) (-916)) 106)) (-2508 (((-1164 |#1|) (-916)) 109)) (-3935 (((-1164 |#1|) (-916)) 108)) (-2271 (((-1164 |#1|) (-916)) 107)) (-2035 (((-1164 |#1|) (-916)) 104)))
-(((-356 |#1|) (-10 -7 (-15 -1322 ((-112) (-1164 |#1|))) (-15 -1316 ((-112) (-1164 |#1|))) (-15 -3306 ((-916) (-916))) (-15 -4140 ((-916) (-916))) (-15 -3123 ((-916) (-916))) (-15 -2035 ((-1164 |#1|) (-916))) (-15 -2507 ((-1164 |#1|) (-916))) (-15 -2271 ((-1164 |#1|) (-916))) (-15 -3935 ((-1164 |#1|) (-916))) (-15 -2508 ((-1164 |#1|) (-916))) (-15 -2700 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -2432 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -2348 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -4168 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -2920 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -1448 ((-1164 |#1|) (-916))) (-15 -1448 ((-1164 |#1|) (-916) (-916))) (-15 -3607 ((-1164 |#1|) (-1164 |#1|))) (-15 -3597 ((-953 (-1164 |#1|)) (-1164 |#1|)))) (-348)) (T -356))
-((-3597 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-953 (-1164 *4))) (-5 *1 (-356 *4)) (-5 *3 (-1164 *4)))) (-3607 (*1 *2 *2) (-12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))) (-1448 (*1 *2 *3 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-1448 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-2920 (*1 *2 *2) (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))) (-4168 (*1 *2 *2) (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))) (-2348 (*1 *2 *2) (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))) (-2432 (*1 *2 *2) (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))) (-2700 (*1 *2 *2) (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))) (-2508 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-3935 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-2271 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-2507 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-2035 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-3123 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-356 *3)) (-4 *3 (-348)))) (-4140 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-356 *3)) (-4 *3 (-348)))) (-3306 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-356 *3)) (-4 *3 (-348)))) (-1316 (*1 *2 *3) (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-112)) (-5 *1 (-356 *4)))) (-1322 (*1 *2 *3) (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-112)) (-5 *1 (-356 *4)))))
-(-10 -7 (-15 -1322 ((-112) (-1164 |#1|))) (-15 -1316 ((-112) (-1164 |#1|))) (-15 -3306 ((-916) (-916))) (-15 -4140 ((-916) (-916))) (-15 -3123 ((-916) (-916))) (-15 -2035 ((-1164 |#1|) (-916))) (-15 -2507 ((-1164 |#1|) (-916))) (-15 -2271 ((-1164 |#1|) (-916))) (-15 -3935 ((-1164 |#1|) (-916))) (-15 -2508 ((-1164 |#1|) (-916))) (-15 -2700 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -2432 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -2348 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -4168 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -2920 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -1448 ((-1164 |#1|) (-916))) (-15 -1448 ((-1164 |#1|) (-916) (-916))) (-15 -3607 ((-1164 |#1|) (-1164 |#1|))) (-15 -3597 ((-953 (-1164 |#1|)) (-1164 |#1|))))
-((-4150 (((-3 (-639 |#3|) "failed") (-639 |#3|) |#3|) 33)))
-(((-357 |#1| |#2| |#3|) (-10 -7 (-15 -4150 ((-3 (-639 |#3|) "failed") (-639 |#3|) |#3|))) (-348) (-1232 |#1|) (-1232 |#2|)) (T -357))
-((-4150 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-348)) (-5 *1 (-357 *4 *5 *3)))))
-(-10 -7 (-15 -4150 ((-3 (-639 |#3|) "failed") (-639 |#3|) |#3|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2024 (((-112) $) NIL)) (-3285 (((-766)) NIL)) (-1748 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3984 (((-1180 (-916) (-766)) (-562)) NIL (|has| |#1| (-367)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3961 ((|#1| $) NIL)) (-4018 (($ (-1256 |#1|)) NIL)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-367)))) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| |#1| (-367)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-3529 (($) NIL (|has| |#1| (-367)))) (-1322 (((-112) $) NIL (|has| |#1| (-367)))) (-3589 (($ $ (-766)) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2717 (((-112) $) NIL)) (-1900 (((-916) $) NIL (|has| |#1| (-367))) (((-828 (-916)) $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1957 (((-112) $) NIL)) (-1846 (($) NIL (|has| |#1| (-367)))) (-1316 (((-112) $) NIL (|has| |#1| (-367)))) (-2247 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3699 (((-3 $ "failed") $) NIL (|has| |#1| (-367)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1565 (((-1164 |#1|) $) NIL) (((-1164 $) $ (-916)) NIL (|has| |#1| (-367)))) (-1999 (((-916) $) NIL (|has| |#1| (-367)))) (-3892 (((-1164 |#1|) $) NIL (|has| |#1| (-367)))) (-4203 (((-1164 |#1|) $) NIL (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) NIL (|has| |#1| (-367)))) (-2393 (($ $ (-1164 |#1|)) NIL (|has| |#1| (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| |#1| (-367)) CONST)) (-2466 (($ (-916)) NIL (|has| |#1| (-367)))) (-3113 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-3148 (($) NIL (|has| |#1| (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL (|has| |#1| (-367)))) (-1635 (((-417 $) $) NIL)) (-4121 (((-828 (-916))) NIL) (((-916)) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3362 (((-766) $) NIL (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3627 (((-133)) NIL)) (-4029 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3598 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-2096 (((-1164 |#1|)) NIL)) (-2283 (($) NIL (|has| |#1| (-367)))) (-2624 (($) NIL (|has| |#1| (-367)))) (-3593 (((-1256 |#1|) $) NIL) (((-683 |#1|) (-1256 $)) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-367)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) NIL)) (-2805 (($ $) NIL (|has| |#1| (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2579 (((-766)) NIL)) (-3928 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-2922 (((-112) $ $) NIL)) (-3694 (((-112) $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4374 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3114 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-1425 ((|#1| (-1164 |#2|)) 52)))
+(((-355 |#1| |#2|) (-10 -7 (-15 -1425 (|#1| (-1164 |#2|)))) (-13 (-401) (-10 -7 (-15 -4053 (|#1| |#2|)) (-15 -3549 ((-916) |#1|)) (-15 -4291 ((-1256 |#1|) (-916))) (-15 -4144 (|#1| |#1|)))) (-348)) (T -355))
+((-1425 (*1 *2 *3) (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-4 *2 (-13 (-401) (-10 -7 (-15 -4053 (*2 *4)) (-15 -3549 ((-916) *2)) (-15 -4291 ((-1256 *2) (-916))) (-15 -4144 (*2 *2))))) (-5 *1 (-355 *2 *4)))))
+(-10 -7 (-15 -1425 (|#1| (-1164 |#2|))))
+((-2237 (((-953 (-1164 |#1|)) (-1164 |#1|)) 36)) (-1447 (((-1164 |#1|) (-916) (-916)) 112) (((-1164 |#1|) (-916)) 111)) (-1844 (((-112) (-1164 |#1|)) 84)) (-2576 (((-916) (-916)) 71)) (-3078 (((-916) (-916)) 74)) (-4289 (((-916) (-916)) 69)) (-1775 (((-112) (-1164 |#1|)) 88)) (-2544 (((-3 (-1164 |#1|) "failed") (-1164 |#1|)) 100)) (-3776 (((-3 (-1164 |#1|) "failed") (-1164 |#1|)) 103)) (-2778 (((-3 (-1164 |#1|) "failed") (-1164 |#1|)) 102)) (-4127 (((-3 (-1164 |#1|) "failed") (-1164 |#1|)) 101)) (-3362 (((-3 (-1164 |#1|) "failed") (-1164 |#1|)) 97)) (-2325 (((-1164 |#1|) (-1164 |#1|)) 62)) (-2083 (((-1164 |#1|) (-916)) 106)) (-2094 (((-1164 |#1|) (-916)) 109)) (-4355 (((-1164 |#1|) (-916)) 108)) (-1523 (((-1164 |#1|) (-916)) 107)) (-3942 (((-1164 |#1|) (-916)) 104)))
+(((-356 |#1|) (-10 -7 (-15 -1844 ((-112) (-1164 |#1|))) (-15 -1775 ((-112) (-1164 |#1|))) (-15 -4289 ((-916) (-916))) (-15 -2576 ((-916) (-916))) (-15 -3078 ((-916) (-916))) (-15 -3942 ((-1164 |#1|) (-916))) (-15 -2083 ((-1164 |#1|) (-916))) (-15 -1523 ((-1164 |#1|) (-916))) (-15 -4355 ((-1164 |#1|) (-916))) (-15 -2094 ((-1164 |#1|) (-916))) (-15 -3362 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -2544 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -4127 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -2778 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -3776 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -1447 ((-1164 |#1|) (-916))) (-15 -1447 ((-1164 |#1|) (-916) (-916))) (-15 -2325 ((-1164 |#1|) (-1164 |#1|))) (-15 -2237 ((-953 (-1164 |#1|)) (-1164 |#1|)))) (-348)) (T -356))
+((-2237 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-953 (-1164 *4))) (-5 *1 (-356 *4)) (-5 *3 (-1164 *4)))) (-2325 (*1 *2 *2) (-12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))) (-1447 (*1 *2 *3 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-1447 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-3776 (*1 *2 *2) (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))) (-2778 (*1 *2 *2) (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))) (-4127 (*1 *2 *2) (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))) (-2544 (*1 *2 *2) (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))) (-3362 (*1 *2 *2) (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))) (-2094 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-4355 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-1523 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-2083 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-3942 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4)) (-4 *4 (-348)))) (-3078 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-356 *3)) (-4 *3 (-348)))) (-2576 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-356 *3)) (-4 *3 (-348)))) (-4289 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-356 *3)) (-4 *3 (-348)))) (-1775 (*1 *2 *3) (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-112)) (-5 *1 (-356 *4)))) (-1844 (*1 *2 *3) (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-112)) (-5 *1 (-356 *4)))))
+(-10 -7 (-15 -1844 ((-112) (-1164 |#1|))) (-15 -1775 ((-112) (-1164 |#1|))) (-15 -4289 ((-916) (-916))) (-15 -2576 ((-916) (-916))) (-15 -3078 ((-916) (-916))) (-15 -3942 ((-1164 |#1|) (-916))) (-15 -2083 ((-1164 |#1|) (-916))) (-15 -1523 ((-1164 |#1|) (-916))) (-15 -4355 ((-1164 |#1|) (-916))) (-15 -2094 ((-1164 |#1|) (-916))) (-15 -3362 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -2544 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -4127 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -2778 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -3776 ((-3 (-1164 |#1|) "failed") (-1164 |#1|))) (-15 -1447 ((-1164 |#1|) (-916))) (-15 -1447 ((-1164 |#1|) (-916) (-916))) (-15 -2325 ((-1164 |#1|) (-1164 |#1|))) (-15 -2237 ((-953 (-1164 |#1|)) (-1164 |#1|))))
+((-2654 (((-3 (-639 |#3|) "failed") (-639 |#3|) |#3|) 33)))
+(((-357 |#1| |#2| |#3|) (-10 -7 (-15 -2654 ((-3 (-639 |#3|) "failed") (-639 |#3|) |#3|))) (-348) (-1232 |#1|) (-1232 |#2|)) (T -357))
+((-2654 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-348)) (-5 *1 (-357 *4 *5 *3)))))
+(-10 -7 (-15 -2654 ((-3 (-639 |#3|) "failed") (-639 |#3|) |#3|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3826 (((-112) $) NIL)) (-2284 (((-766)) NIL)) (-1748 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-1755 (((-1180 (-916) (-766)) (-562)) NIL (|has| |#1| (-367)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3960 ((|#1| $) NIL)) (-3916 (($ (-1256 |#1|)) NIL)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-367)))) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| |#1| (-367)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-2787 (($) NIL (|has| |#1| (-367)))) (-1844 (((-112) $) NIL (|has| |#1| (-367)))) (-2184 (($ $ (-766)) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3521 (((-112) $) NIL)) (-1993 (((-916) $) NIL (|has| |#1| (-367))) (((-828 (-916)) $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4367 (((-112) $) NIL)) (-2631 (($) NIL (|has| |#1| (-367)))) (-1775 (((-112) $) NIL (|has| |#1| (-367)))) (-4363 ((|#1| $) NIL) (($ $ (-916)) NIL (|has| |#1| (-367)))) (-3828 (((-3 $ "failed") $) NIL (|has| |#1| (-367)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1937 (((-1164 |#1|) $) NIL) (((-1164 $) $ (-916)) NIL (|has| |#1| (-367)))) (-3549 (((-916) $) NIL (|has| |#1| (-367)))) (-2121 (((-1164 |#1|) $) NIL (|has| |#1| (-367)))) (-1894 (((-1164 |#1|) $) NIL (|has| |#1| (-367))) (((-3 (-1164 |#1|) "failed") $ $) NIL (|has| |#1| (-367)))) (-3319 (($ $ (-1164 |#1|)) NIL (|has| |#1| (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| |#1| (-367)) CONST)) (-2464 (($ (-916)) NIL (|has| |#1| (-367)))) (-2991 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-3147 (($) NIL (|has| |#1| (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL (|has| |#1| (-367)))) (-1635 (((-417 $) $) NIL)) (-3548 (((-828 (-916))) NIL) (((-916)) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3543 (((-766) $) NIL (|has| |#1| (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4340 (((-133)) NIL)) (-4029 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-2250 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-3371 (((-1164 |#1|)) NIL)) (-1653 (($) NIL (|has| |#1| (-367)))) (-3861 (($) NIL (|has| |#1| (-367)))) (-2205 (((-1256 |#1|) $) NIL) (((-683 |#1|) (-1256 $)) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-367)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) NIL)) (-2059 (($ $) NIL (|has| |#1| (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1568 (((-766)) NIL)) (-4291 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-3799 (((-112) $ $) NIL)) (-3782 (((-112) $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4144 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-3113 (($ $) NIL (|has| |#1| (-367))) (($ $ (-766)) NIL (|has| |#1| (-367)))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ |#1|) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-358 |#1| |#2|) (-328 |#1|) (-348) (-916)) (T -358))
NIL
(-328 |#1|)
-((-1453 (((-112) (-639 (-947 |#1|))) 33)) (-2769 (((-639 (-947 |#1|)) (-639 (-947 |#1|))) 45)) (-3065 (((-3 (-639 (-947 |#1|)) "failed") (-639 (-947 |#1|))) 40)))
-(((-359 |#1| |#2|) (-10 -7 (-15 -1453 ((-112) (-639 (-947 |#1|)))) (-15 -3065 ((-3 (-639 (-947 |#1|)) "failed") (-639 (-947 |#1|)))) (-15 -2769 ((-639 (-947 |#1|)) (-639 (-947 |#1|))))) (-451) (-639 (-1168))) (T -359))
-((-2769 (*1 *2 *2) (-12 (-5 *2 (-639 (-947 *3))) (-4 *3 (-451)) (-5 *1 (-359 *3 *4)) (-14 *4 (-639 (-1168))))) (-3065 (*1 *2 *2) (|partial| -12 (-5 *2 (-639 (-947 *3))) (-4 *3 (-451)) (-5 *1 (-359 *3 *4)) (-14 *4 (-639 (-1168))))) (-1453 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-451)) (-5 *2 (-112)) (-5 *1 (-359 *4 *5)) (-14 *5 (-639 (-1168))))))
-(-10 -7 (-15 -1453 ((-112) (-639 (-947 |#1|)))) (-15 -3065 ((-3 (-639 (-947 |#1|)) "failed") (-639 (-947 |#1|)))) (-15 -2769 ((-639 (-947 |#1|)) (-639 (-947 |#1|)))))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766) $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3961 ((|#1| $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1957 (((-112) $) 15)) (-3126 ((|#1| $ (-562)) NIL)) (-1870 (((-562) $ (-562)) NIL)) (-1304 (($ (-1 |#1| |#1|) $) 32)) (-2866 (($ (-1 (-562) (-562)) $) 24)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 26)) (-1709 (((-1112) $) NIL)) (-1510 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-562)))) $) 28)) (-3665 (($ $ $) NIL)) (-1911 (($ $ $) NIL)) (-4054 (((-857) $) 38) (($ |#1|) NIL)) (-2294 (($) 9 T CONST)) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL) (($ |#1| (-562)) 17)) (* (($ $ $) 43) (($ |#1| $) 21) (($ $ |#1|) 19)))
-(((-360 |#1|) (-13 (-472) (-1033 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-562))) (-15 -1382 ((-766) $)) (-15 -1870 ((-562) $ (-562))) (-15 -3126 (|#1| $ (-562))) (-15 -2866 ($ (-1 (-562) (-562)) $)) (-15 -1304 ($ (-1 |#1| |#1|) $)) (-15 -1510 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-562)))) $)))) (-1092)) (T -360))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-360 *2)) (-4 *2 (-1092)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-360 *2)) (-4 *2 (-1092)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-360 *2)) (-4 *2 (-1092)))) (-1382 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-360 *3)) (-4 *3 (-1092)))) (-1870 (*1 *2 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-360 *3)) (-4 *3 (-1092)))) (-3126 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-360 *2)) (-4 *2 (-1092)))) (-2866 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-562) (-562))) (-5 *1 (-360 *3)) (-4 *3 (-1092)))) (-1304 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-360 *3)))) (-1510 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 (-562))))) (-5 *1 (-360 *3)) (-4 *3 (-1092)))))
-(-13 (-472) (-1033 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-562))) (-15 -1382 ((-766) $)) (-15 -1870 ((-562) $ (-562))) (-15 -3126 (|#1| $ (-562))) (-15 -2866 ($ (-1 (-562) (-562)) $)) (-15 -1304 ($ (-1 |#1| |#1|) $)) (-15 -1510 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-562)))) $))))
-((-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 13)) (-2796 (($ $) 14)) (-2921 (((-417 $) $) 29)) (-2717 (((-112) $) 25)) (-1525 (($ $) 18)) (-1606 (($ $ $) 22) (($ (-639 $)) NIL)) (-1635 (((-417 $) $) 30)) (-1762 (((-3 $ "failed") $ $) 21)) (-1577 (((-766) $) 24)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 34)) (-2922 (((-112) $ $) 15)) (-1859 (($ $ $) 32)))
-(((-361 |#1|) (-10 -8 (-15 -1859 (|#1| |#1| |#1|)) (-15 -1525 (|#1| |#1|)) (-15 -2717 ((-112) |#1|)) (-15 -2921 ((-417 |#1|) |#1|)) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -2080 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -1577 ((-766) |#1|)) (-15 -1606 (|#1| (-639 |#1|))) (-15 -1606 (|#1| |#1| |#1|)) (-15 -2922 ((-112) |#1| |#1|)) (-15 -2796 (|#1| |#1|)) (-15 -1445 ((-2 (|:| -3931 |#1|) (|:| -4389 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|))) (-362)) (T -361))
-NIL
-(-10 -8 (-15 -1859 (|#1| |#1| |#1|)) (-15 -1525 (|#1| |#1|)) (-15 -2717 ((-112) |#1|)) (-15 -2921 ((-417 |#1|) |#1|)) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -2080 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -1577 ((-766) |#1|)) (-15 -1606 (|#1| (-639 |#1|))) (-15 -1606 (|#1| |#1| |#1|)) (-15 -2922 ((-112) |#1| |#1|)) (-15 -2796 (|#1| |#1|)) (-15 -1445 ((-2 (|:| -3931 |#1|) (|:| -4389 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 74)) (-2921 (((-417 $) $) 73)) (-2569 (((-112) $ $) 60)) (-1800 (($) 17 T CONST)) (-1811 (($ $ $) 56)) (-3668 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-2717 (((-112) $) 72)) (-1957 (((-112) $) 31)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 71)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1635 (((-417 $) $) 75)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1577 (((-766) $) 59)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 58)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ $) 66)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68)))
+((-2311 (((-112) (-639 (-947 |#1|))) 33)) (-2848 (((-639 (-947 |#1|)) (-639 (-947 |#1|))) 45)) (-3779 (((-3 (-639 (-947 |#1|)) "failed") (-639 (-947 |#1|))) 40)))
+(((-359 |#1| |#2|) (-10 -7 (-15 -2311 ((-112) (-639 (-947 |#1|)))) (-15 -3779 ((-3 (-639 (-947 |#1|)) "failed") (-639 (-947 |#1|)))) (-15 -2848 ((-639 (-947 |#1|)) (-639 (-947 |#1|))))) (-451) (-639 (-1168))) (T -359))
+((-2848 (*1 *2 *2) (-12 (-5 *2 (-639 (-947 *3))) (-4 *3 (-451)) (-5 *1 (-359 *3 *4)) (-14 *4 (-639 (-1168))))) (-3779 (*1 *2 *2) (|partial| -12 (-5 *2 (-639 (-947 *3))) (-4 *3 (-451)) (-5 *1 (-359 *3 *4)) (-14 *4 (-639 (-1168))))) (-2311 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-451)) (-5 *2 (-112)) (-5 *1 (-359 *4 *5)) (-14 *5 (-639 (-1168))))))
+(-10 -7 (-15 -2311 ((-112) (-639 (-947 |#1|)))) (-15 -3779 ((-3 (-639 (-947 |#1|)) "failed") (-639 (-947 |#1|)))) (-15 -2848 ((-639 (-947 |#1|)) (-639 (-947 |#1|)))))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766) $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3960 ((|#1| $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-4367 (((-112) $) 15)) (-3111 ((|#1| $ (-562)) NIL)) (-1646 (((-562) $ (-562)) NIL)) (-2491 (($ (-1 |#1| |#1|) $) 32)) (-1369 (($ (-1 (-562) (-562)) $) 24)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 26)) (-1709 (((-1112) $) NIL)) (-2656 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-562)))) $) 28)) (-1660 (($ $ $) NIL)) (-2114 (($ $ $) NIL)) (-4053 (((-857) $) 38) (($ |#1|) NIL)) (-2294 (($) 9 T CONST)) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL) (($ |#1| (-562)) 17)) (* (($ $ $) 43) (($ |#1| $) 21) (($ $ |#1|) 19)))
+(((-360 |#1|) (-13 (-472) (-1033 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-562))) (-15 -1382 ((-766) $)) (-15 -1646 ((-562) $ (-562))) (-15 -3111 (|#1| $ (-562))) (-15 -1369 ($ (-1 (-562) (-562)) $)) (-15 -2491 ($ (-1 |#1| |#1|) $)) (-15 -2656 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-562)))) $)))) (-1092)) (T -360))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-360 *2)) (-4 *2 (-1092)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-360 *2)) (-4 *2 (-1092)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-360 *2)) (-4 *2 (-1092)))) (-1382 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-360 *3)) (-4 *3 (-1092)))) (-1646 (*1 *2 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-360 *3)) (-4 *3 (-1092)))) (-3111 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-360 *2)) (-4 *2 (-1092)))) (-1369 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-562) (-562))) (-5 *1 (-360 *3)) (-4 *3 (-1092)))) (-2491 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-360 *3)))) (-2656 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 (-562))))) (-5 *1 (-360 *3)) (-4 *3 (-1092)))))
+(-13 (-472) (-1033 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-562))) (-15 -1382 ((-766) $)) (-15 -1646 ((-562) $ (-562))) (-15 -3111 (|#1| $ (-562))) (-15 -1369 ($ (-1 (-562) (-562)) $)) (-15 -2491 ($ (-1 |#1| |#1|) $)) (-15 -2656 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-562)))) $))))
+((-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 13)) (-1965 (($ $) 14)) (-3788 (((-417 $) $) 29)) (-3521 (((-112) $) 25)) (-1525 (($ $) 18)) (-1606 (($ $ $) 22) (($ (-639 $)) NIL)) (-1635 (((-417 $) $) 30)) (-1762 (((-3 $ "failed") $ $) 21)) (-2044 (((-766) $) 24)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 34)) (-3799 (((-112) $ $) 15)) (-1859 (($ $ $) 32)))
+(((-361 |#1|) (-10 -8 (-15 -1859 (|#1| |#1| |#1|)) (-15 -1525 (|#1| |#1|)) (-15 -3521 ((-112) |#1|)) (-15 -3788 ((-417 |#1|) |#1|)) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3204 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -2044 ((-766) |#1|)) (-15 -1606 (|#1| (-639 |#1|))) (-15 -1606 (|#1| |#1| |#1|)) (-15 -3799 ((-112) |#1| |#1|)) (-15 -1965 (|#1| |#1|)) (-15 -2271 ((-2 (|:| -4310 |#1|) (|:| -4390 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|))) (-362)) (T -361))
+NIL
+(-10 -8 (-15 -1859 (|#1| |#1| |#1|)) (-15 -1525 (|#1| |#1|)) (-15 -3521 ((-112) |#1|)) (-15 -3788 ((-417 |#1|) |#1|)) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3204 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -2044 ((-766) |#1|)) (-15 -1606 (|#1| (-639 |#1|))) (-15 -1606 (|#1| |#1| |#1|)) (-15 -3799 ((-112) |#1| |#1|)) (-15 -1965 (|#1| |#1|)) (-15 -2271 ((-2 (|:| -4310 |#1|) (|:| -4390 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 74)) (-3788 (((-417 $) $) 73)) (-1436 (((-112) $ $) 60)) (-3329 (($) 17 T CONST)) (-1810 (($ $ $) 56)) (-1694 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-3521 (((-112) $) 72)) (-4367 (((-112) $) 31)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 71)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1635 (((-417 $) $) 75)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-2044 (((-766) $) 59)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 58)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ $) 66)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68)))
(((-362) (-139)) (T -362))
((-1859 (*1 *1 *1 *1) (-4 *1 (-362))))
-(-13 (-306) (-1211) (-242) (-10 -8 (-15 -1859 ($ $ $)) (-6 -4400) (-6 -4394)))
+(-13 (-306) (-1211) (-242) (-10 -8 (-15 -1859 ($ $ $)) (-6 -4401) (-6 -4395)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-612 #0#) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-242) . T) ((-289) . T) ((-306) . T) ((-451) . T) ((-554) . T) ((-642 #0#) . T) ((-642 $) . T) ((-712 #0#) . T) ((-712 $) . T) ((-721) . T) ((-915) . T) ((-1050 #0#) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1211) . T))
-((-4041 (((-112) $ $) 7)) (-3067 ((|#2| $ |#2|) 13)) (-2413 (($ $ (-1150)) 18)) (-1805 ((|#2| $) 14)) (-3316 (($ |#1|) 20) (($ |#1| (-1150)) 19)) (-3254 ((|#1| $) 16)) (-2913 (((-1150) $) 9)) (-3523 (((-1150) $) 15)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-3948 (($ $) 17)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) 7)) (-3791 ((|#2| $ |#2|) 13)) (-2385 (($ $ (-1150)) 18)) (-3385 ((|#2| $) 14)) (-3315 (($ |#1|) 20) (($ |#1| (-1150)) 19)) (-3253 ((|#1| $) 16)) (-3696 (((-1150) $) 9)) (-2735 (((-1150) $) 15)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1380 (($ $) 17)) (-1733 (((-112) $ $) 6)))
(((-363 |#1| |#2|) (-139) (-1092) (-1092)) (T -363))
-((-3316 (*1 *1 *2) (-12 (-4 *1 (-363 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-3316 (*1 *1 *2 *3) (-12 (-5 *3 (-1150)) (-4 *1 (-363 *2 *4)) (-4 *2 (-1092)) (-4 *4 (-1092)))) (-2413 (*1 *1 *1 *2) (-12 (-5 *2 (-1150)) (-4 *1 (-363 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-3948 (*1 *1 *1) (-12 (-4 *1 (-363 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-3254 (*1 *2 *1) (-12 (-4 *1 (-363 *2 *3)) (-4 *3 (-1092)) (-4 *2 (-1092)))) (-3523 (*1 *2 *1) (-12 (-4 *1 (-363 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-5 *2 (-1150)))) (-1805 (*1 *2 *1) (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))) (-3067 (*1 *2 *1 *2) (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))))
-(-13 (-1092) (-10 -8 (-15 -3316 ($ |t#1|)) (-15 -3316 ($ |t#1| (-1150))) (-15 -2413 ($ $ (-1150))) (-15 -3948 ($ $)) (-15 -3254 (|t#1| $)) (-15 -3523 ((-1150) $)) (-15 -1805 (|t#2| $)) (-15 -3067 (|t#2| $ |t#2|))))
+((-3315 (*1 *1 *2) (-12 (-4 *1 (-363 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-3315 (*1 *1 *2 *3) (-12 (-5 *3 (-1150)) (-4 *1 (-363 *2 *4)) (-4 *2 (-1092)) (-4 *4 (-1092)))) (-2385 (*1 *1 *1 *2) (-12 (-5 *2 (-1150)) (-4 *1 (-363 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-1380 (*1 *1 *1) (-12 (-4 *1 (-363 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-3253 (*1 *2 *1) (-12 (-4 *1 (-363 *2 *3)) (-4 *3 (-1092)) (-4 *2 (-1092)))) (-2735 (*1 *2 *1) (-12 (-4 *1 (-363 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-5 *2 (-1150)))) (-3385 (*1 *2 *1) (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))) (-3791 (*1 *2 *1 *2) (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))))
+(-13 (-1092) (-10 -8 (-15 -3315 ($ |t#1|)) (-15 -3315 ($ |t#1| (-1150))) (-15 -2385 ($ $ (-1150))) (-15 -1380 ($ $)) (-15 -3253 (|t#1| $)) (-15 -2735 ((-1150) $)) (-15 -3385 (|t#2| $)) (-15 -3791 (|t#2| $ |t#2|))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-3067 ((|#1| $ |#1|) 30)) (-2413 (($ $ (-1150)) 22)) (-1861 (((-3 |#1| "failed") $) 29)) (-1805 ((|#1| $) 27)) (-3316 (($ (-387)) 21) (($ (-387) (-1150)) 20)) (-3254 (((-387) $) 24)) (-2913 (((-1150) $) NIL)) (-3523 (((-1150) $) 25)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 19)) (-3948 (($ $) 23)) (-1731 (((-112) $ $) 18)))
-(((-364 |#1|) (-13 (-363 (-387) |#1|) (-10 -8 (-15 -1861 ((-3 |#1| "failed") $)))) (-1092)) (T -364))
-((-1861 (*1 *2 *1) (|partial| -12 (-5 *1 (-364 *2)) (-4 *2 (-1092)))))
-(-13 (-363 (-387) |#1|) (-10 -8 (-15 -1861 ((-3 |#1| "failed") $))))
-((-1902 (((-1256 (-683 |#2|)) (-1256 $)) 61)) (-4356 (((-683 |#2|) (-1256 $)) 120)) (-2422 ((|#2| $) 32)) (-2966 (((-683 |#2|) $ (-1256 $)) 123)) (-2545 (((-3 $ "failed") $) 75)) (-2355 ((|#2| $) 35)) (-3474 (((-1164 |#2|) $) 83)) (-2819 ((|#2| (-1256 $)) 106)) (-2964 (((-1164 |#2|) $) 28)) (-2380 (((-112)) 100)) (-4018 (($ (-1256 |#2|) (-1256 $)) 113)) (-3668 (((-3 $ "failed") $) 79)) (-3813 (((-112)) 95)) (-3375 (((-112)) 90)) (-4258 (((-112)) 53)) (-3025 (((-683 |#2|) (-1256 $)) 118)) (-4153 ((|#2| $) 31)) (-1671 (((-683 |#2|) $ (-1256 $)) 122)) (-4238 (((-3 $ "failed") $) 73)) (-1680 ((|#2| $) 34)) (-2026 (((-1164 |#2|) $) 82)) (-1305 ((|#2| (-1256 $)) 104)) (-2670 (((-1164 |#2|) $) 26)) (-2090 (((-112)) 99)) (-2144 (((-112)) 92)) (-2580 (((-112)) 51)) (-2809 (((-112)) 87)) (-4323 (((-112)) 101)) (-3593 (((-1256 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) (-1256 $) (-1256 $)) 111)) (-1396 (((-112)) 97)) (-3553 (((-639 (-1256 |#2|))) 86)) (-2850 (((-112)) 98)) (-1981 (((-112)) 96)) (-3199 (((-112)) 46)) (-4114 (((-112)) 102)))
-(((-365 |#1| |#2|) (-10 -8 (-15 -3474 ((-1164 |#2|) |#1|)) (-15 -2026 ((-1164 |#2|) |#1|)) (-15 -3553 ((-639 (-1256 |#2|)))) (-15 -2545 ((-3 |#1| "failed") |#1|)) (-15 -4238 ((-3 |#1| "failed") |#1|)) (-15 -3668 ((-3 |#1| "failed") |#1|)) (-15 -3375 ((-112))) (-15 -2144 ((-112))) (-15 -3813 ((-112))) (-15 -2580 ((-112))) (-15 -4258 ((-112))) (-15 -2809 ((-112))) (-15 -4114 ((-112))) (-15 -4323 ((-112))) (-15 -2380 ((-112))) (-15 -2090 ((-112))) (-15 -3199 ((-112))) (-15 -2850 ((-112))) (-15 -1981 ((-112))) (-15 -1396 ((-112))) (-15 -2964 ((-1164 |#2|) |#1|)) (-15 -2670 ((-1164 |#2|) |#1|)) (-15 -4356 ((-683 |#2|) (-1256 |#1|))) (-15 -3025 ((-683 |#2|) (-1256 |#1|))) (-15 -2819 (|#2| (-1256 |#1|))) (-15 -1305 (|#2| (-1256 |#1|))) (-15 -4018 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -2355 (|#2| |#1|)) (-15 -1680 (|#2| |#1|)) (-15 -2422 (|#2| |#1|)) (-15 -4153 (|#2| |#1|)) (-15 -2966 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -1671 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -1902 ((-1256 (-683 |#2|)) (-1256 |#1|)))) (-366 |#2|) (-171)) (T -365))
-((-1396 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-1981 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-2850 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-3199 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-2090 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-2380 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-4323 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-4114 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-2809 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-4258 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-2580 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-3813 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-2144 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-3375 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-3553 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-639 (-1256 *4))) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))))
-(-10 -8 (-15 -3474 ((-1164 |#2|) |#1|)) (-15 -2026 ((-1164 |#2|) |#1|)) (-15 -3553 ((-639 (-1256 |#2|)))) (-15 -2545 ((-3 |#1| "failed") |#1|)) (-15 -4238 ((-3 |#1| "failed") |#1|)) (-15 -3668 ((-3 |#1| "failed") |#1|)) (-15 -3375 ((-112))) (-15 -2144 ((-112))) (-15 -3813 ((-112))) (-15 -2580 ((-112))) (-15 -4258 ((-112))) (-15 -2809 ((-112))) (-15 -4114 ((-112))) (-15 -4323 ((-112))) (-15 -2380 ((-112))) (-15 -2090 ((-112))) (-15 -3199 ((-112))) (-15 -2850 ((-112))) (-15 -1981 ((-112))) (-15 -1396 ((-112))) (-15 -2964 ((-1164 |#2|) |#1|)) (-15 -2670 ((-1164 |#2|) |#1|)) (-15 -4356 ((-683 |#2|) (-1256 |#1|))) (-15 -3025 ((-683 |#2|) (-1256 |#1|))) (-15 -2819 (|#2| (-1256 |#1|))) (-15 -1305 (|#2| (-1256 |#1|))) (-15 -4018 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -2355 (|#2| |#1|)) (-15 -1680 (|#2| |#1|)) (-15 -2422 (|#2| |#1|)) (-15 -4153 (|#2| |#1|)) (-15 -2966 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -1671 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -1902 ((-1256 (-683 |#2|)) (-1256 |#1|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3931 (((-3 $ "failed")) 37 (|has| |#1| (-554)))) (-3214 (((-3 $ "failed") $ $) 19)) (-1902 (((-1256 (-683 |#1|)) (-1256 $)) 78)) (-3655 (((-1256 $)) 81)) (-1800 (($) 17 T CONST)) (-2874 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) 40 (|has| |#1| (-554)))) (-2117 (((-3 $ "failed")) 38 (|has| |#1| (-554)))) (-4356 (((-683 |#1|) (-1256 $)) 65)) (-2422 ((|#1| $) 74)) (-2966 (((-683 |#1|) $ (-1256 $)) 76)) (-2545 (((-3 $ "failed") $) 45 (|has| |#1| (-554)))) (-1379 (($ $ (-916)) 28)) (-2355 ((|#1| $) 72)) (-3474 (((-1164 |#1|) $) 42 (|has| |#1| (-554)))) (-2819 ((|#1| (-1256 $)) 67)) (-2964 (((-1164 |#1|) $) 63)) (-2380 (((-112)) 57)) (-4018 (($ (-1256 |#1|) (-1256 $)) 69)) (-3668 (((-3 $ "failed") $) 47 (|has| |#1| (-554)))) (-2173 (((-916)) 80)) (-1321 (((-112)) 54)) (-3650 (($ $ (-916)) 33)) (-3813 (((-112)) 50)) (-3375 (((-112)) 48)) (-4258 (((-112)) 52)) (-1681 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) 41 (|has| |#1| (-554)))) (-3700 (((-3 $ "failed")) 39 (|has| |#1| (-554)))) (-3025 (((-683 |#1|) (-1256 $)) 66)) (-4153 ((|#1| $) 75)) (-1671 (((-683 |#1|) $ (-1256 $)) 77)) (-4238 (((-3 $ "failed") $) 46 (|has| |#1| (-554)))) (-2991 (($ $ (-916)) 29)) (-1680 ((|#1| $) 73)) (-2026 (((-1164 |#1|) $) 43 (|has| |#1| (-554)))) (-1305 ((|#1| (-1256 $)) 68)) (-2670 (((-1164 |#1|) $) 64)) (-2090 (((-112)) 58)) (-2913 (((-1150) $) 9)) (-2144 (((-112)) 49)) (-2580 (((-112)) 51)) (-2809 (((-112)) 53)) (-1709 (((-1112) $) 10)) (-4323 (((-112)) 56)) (-3593 (((-1256 |#1|) $ (-1256 $)) 71) (((-683 |#1|) (-1256 $) (-1256 $)) 70)) (-4136 (((-639 (-947 |#1|)) (-1256 $)) 79)) (-1911 (($ $ $) 25)) (-1396 (((-112)) 62)) (-4054 (((-857) $) 11)) (-3553 (((-639 (-1256 |#1|))) 44 (|has| |#1| (-554)))) (-2436 (($ $ $ $) 26)) (-2850 (((-112)) 60)) (-3626 (($ $ $) 24)) (-1981 (((-112)) 61)) (-3199 (((-112)) 59)) (-4114 (((-112)) 55)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 30)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+((-4041 (((-112) $ $) NIL)) (-3791 ((|#1| $ |#1|) 30)) (-2385 (($ $ (-1150)) 22)) (-2765 (((-3 |#1| "failed") $) 29)) (-3385 ((|#1| $) 27)) (-3315 (($ (-387)) 21) (($ (-387) (-1150)) 20)) (-3253 (((-387) $) 24)) (-3696 (((-1150) $) NIL)) (-2735 (((-1150) $) 25)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 19)) (-1380 (($ $) 23)) (-1733 (((-112) $ $) 18)))
+(((-364 |#1|) (-13 (-363 (-387) |#1|) (-10 -8 (-15 -2765 ((-3 |#1| "failed") $)))) (-1092)) (T -364))
+((-2765 (*1 *2 *1) (|partial| -12 (-5 *1 (-364 *2)) (-4 *2 (-1092)))))
+(-13 (-363 (-387) |#1|) (-10 -8 (-15 -2765 ((-3 |#1| "failed") $))))
+((-2016 (((-1256 (-683 |#2|)) (-1256 $)) 61)) (-3945 (((-683 |#2|) (-1256 $)) 120)) (-2452 ((|#2| $) 32)) (-2995 (((-683 |#2|) $ (-1256 $)) 123)) (-4276 (((-3 $ "failed") $) 75)) (-2949 ((|#2| $) 35)) (-3407 (((-1164 |#2|) $) 83)) (-2200 ((|#2| (-1256 $)) 106)) (-2974 (((-1164 |#2|) $) 28)) (-3178 (((-112)) 100)) (-3916 (($ (-1256 |#2|) (-1256 $)) 113)) (-1694 (((-3 $ "failed") $) 79)) (-2531 (((-112)) 95)) (-3671 (((-112)) 90)) (-2394 (((-112)) 53)) (-3506 (((-683 |#2|) (-1256 $)) 118)) (-2664 ((|#2| $) 31)) (-1583 (((-683 |#2|) $ (-1256 $)) 122)) (-2217 (((-3 $ "failed") $) 73)) (-3495 ((|#2| $) 34)) (-3849 (((-1164 |#2|) $) 82)) (-1636 ((|#2| (-1256 $)) 104)) (-3099 (((-1164 |#2|) $) 26)) (-3302 (((-112)) 99)) (-2720 (((-112)) 92)) (-1579 (((-112)) 51)) (-2104 (((-112)) 87)) (-3626 (((-112)) 101)) (-2205 (((-1256 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) (-1256 $) (-1256 $)) 111)) (-3901 (((-112)) 97)) (-1823 (((-639 (-1256 |#2|))) 86)) (-4309 (((-112)) 98)) (-1517 (((-112)) 96)) (-2636 (((-112)) 46)) (-3488 (((-112)) 102)))
+(((-365 |#1| |#2|) (-10 -8 (-15 -3407 ((-1164 |#2|) |#1|)) (-15 -3849 ((-1164 |#2|) |#1|)) (-15 -1823 ((-639 (-1256 |#2|)))) (-15 -4276 ((-3 |#1| "failed") |#1|)) (-15 -2217 ((-3 |#1| "failed") |#1|)) (-15 -1694 ((-3 |#1| "failed") |#1|)) (-15 -3671 ((-112))) (-15 -2720 ((-112))) (-15 -2531 ((-112))) (-15 -1579 ((-112))) (-15 -2394 ((-112))) (-15 -2104 ((-112))) (-15 -3488 ((-112))) (-15 -3626 ((-112))) (-15 -3178 ((-112))) (-15 -3302 ((-112))) (-15 -2636 ((-112))) (-15 -4309 ((-112))) (-15 -1517 ((-112))) (-15 -3901 ((-112))) (-15 -2974 ((-1164 |#2|) |#1|)) (-15 -3099 ((-1164 |#2|) |#1|)) (-15 -3945 ((-683 |#2|) (-1256 |#1|))) (-15 -3506 ((-683 |#2|) (-1256 |#1|))) (-15 -2200 (|#2| (-1256 |#1|))) (-15 -1636 (|#2| (-1256 |#1|))) (-15 -3916 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -2949 (|#2| |#1|)) (-15 -3495 (|#2| |#1|)) (-15 -2452 (|#2| |#1|)) (-15 -2664 (|#2| |#1|)) (-15 -2995 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -1583 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -2016 ((-1256 (-683 |#2|)) (-1256 |#1|)))) (-366 |#2|) (-171)) (T -365))
+((-3901 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-1517 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-4309 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-2636 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-3302 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-3178 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-3626 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-3488 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-2104 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-2394 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-1579 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-2531 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-2720 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-3671 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))) (-1823 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-639 (-1256 *4))) (-5 *1 (-365 *3 *4)) (-4 *3 (-366 *4)))))
+(-10 -8 (-15 -3407 ((-1164 |#2|) |#1|)) (-15 -3849 ((-1164 |#2|) |#1|)) (-15 -1823 ((-639 (-1256 |#2|)))) (-15 -4276 ((-3 |#1| "failed") |#1|)) (-15 -2217 ((-3 |#1| "failed") |#1|)) (-15 -1694 ((-3 |#1| "failed") |#1|)) (-15 -3671 ((-112))) (-15 -2720 ((-112))) (-15 -2531 ((-112))) (-15 -1579 ((-112))) (-15 -2394 ((-112))) (-15 -2104 ((-112))) (-15 -3488 ((-112))) (-15 -3626 ((-112))) (-15 -3178 ((-112))) (-15 -3302 ((-112))) (-15 -2636 ((-112))) (-15 -4309 ((-112))) (-15 -1517 ((-112))) (-15 -3901 ((-112))) (-15 -2974 ((-1164 |#2|) |#1|)) (-15 -3099 ((-1164 |#2|) |#1|)) (-15 -3945 ((-683 |#2|) (-1256 |#1|))) (-15 -3506 ((-683 |#2|) (-1256 |#1|))) (-15 -2200 (|#2| (-1256 |#1|))) (-15 -1636 (|#2| (-1256 |#1|))) (-15 -3916 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -2949 (|#2| |#1|)) (-15 -3495 (|#2| |#1|)) (-15 -2452 (|#2| |#1|)) (-15 -2664 (|#2| |#1|)) (-15 -2995 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -1583 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -2016 ((-1256 (-683 |#2|)) (-1256 |#1|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-4310 (((-3 $ "failed")) 37 (|has| |#1| (-554)))) (-2781 (((-3 $ "failed") $ $) 19)) (-2016 (((-1256 (-683 |#1|)) (-1256 $)) 78)) (-1540 (((-1256 $)) 81)) (-3329 (($) 17 T CONST)) (-1469 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) 40 (|has| |#1| (-554)))) (-2447 (((-3 $ "failed")) 38 (|has| |#1| (-554)))) (-3945 (((-683 |#1|) (-1256 $)) 65)) (-2452 ((|#1| $) 74)) (-2995 (((-683 |#1|) $ (-1256 $)) 76)) (-4276 (((-3 $ "failed") $) 45 (|has| |#1| (-554)))) (-2127 (($ $ (-916)) 28)) (-2949 ((|#1| $) 72)) (-3407 (((-1164 |#1|) $) 42 (|has| |#1| (-554)))) (-2200 ((|#1| (-1256 $)) 67)) (-2974 (((-1164 |#1|) $) 63)) (-3178 (((-112)) 57)) (-3916 (($ (-1256 |#1|) (-1256 $)) 69)) (-1694 (((-3 $ "failed") $) 47 (|has| |#1| (-554)))) (-2172 (((-916)) 80)) (-1832 (((-112)) 54)) (-1492 (($ $ (-916)) 33)) (-2531 (((-112)) 50)) (-3671 (((-112)) 48)) (-2394 (((-112)) 52)) (-3502 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) 41 (|has| |#1| (-554)))) (-3839 (((-3 $ "failed")) 39 (|has| |#1| (-554)))) (-3506 (((-683 |#1|) (-1256 $)) 66)) (-2664 ((|#1| $) 75)) (-1583 (((-683 |#1|) $ (-1256 $)) 77)) (-2217 (((-3 $ "failed") $) 46 (|has| |#1| (-554)))) (-3235 (($ $ (-916)) 29)) (-3495 ((|#1| $) 73)) (-3849 (((-1164 |#1|) $) 43 (|has| |#1| (-554)))) (-1636 ((|#1| (-1256 $)) 68)) (-3099 (((-1164 |#1|) $) 64)) (-3302 (((-112)) 58)) (-3696 (((-1150) $) 9)) (-2720 (((-112)) 49)) (-1579 (((-112)) 51)) (-2104 (((-112)) 53)) (-1709 (((-1112) $) 10)) (-3626 (((-112)) 56)) (-2205 (((-1256 |#1|) $ (-1256 $)) 71) (((-683 |#1|) (-1256 $) (-1256 $)) 70)) (-2555 (((-639 (-947 |#1|)) (-1256 $)) 79)) (-2114 (($ $ $) 25)) (-3901 (((-112)) 62)) (-4053 (((-857) $) 11)) (-1823 (((-639 (-1256 |#1|))) 44 (|has| |#1| (-554)))) (-2584 (($ $ $ $) 26)) (-4309 (((-112)) 60)) (-4324 (($ $ $) 24)) (-1517 (((-112)) 61)) (-2636 (((-112)) 59)) (-3488 (((-112)) 55)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 30)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
(((-366 |#1|) (-139) (-171)) (T -366))
-((-3655 (*1 *2) (-12 (-4 *3 (-171)) (-5 *2 (-1256 *1)) (-4 *1 (-366 *3)))) (-2173 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-916)))) (-4136 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-639 (-947 *4))))) (-1902 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-1256 (-683 *4))))) (-1671 (*1 *2 *1 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-683 *4)))) (-2966 (*1 *2 *1 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-683 *4)))) (-4153 (*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))) (-2422 (*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))) (-1680 (*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))) (-2355 (*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))) (-3593 (*1 *2 *1 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-1256 *4)))) (-3593 (*1 *2 *3 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-683 *4)))) (-4018 (*1 *1 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-1256 *1)) (-4 *4 (-171)) (-4 *1 (-366 *4)))) (-1305 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *2)) (-4 *2 (-171)))) (-2819 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *2)) (-4 *2 (-171)))) (-3025 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-683 *4)))) (-4356 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-683 *4)))) (-2670 (*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-1164 *3)))) (-2964 (*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-1164 *3)))) (-1396 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-1981 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-2850 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-3199 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-2090 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-2380 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-4323 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-4114 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-1321 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-2809 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-4258 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-2580 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-3813 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-2144 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-3375 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-3668 (*1 *1 *1) (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-171)) (-4 *2 (-554)))) (-4238 (*1 *1 *1) (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-171)) (-4 *2 (-554)))) (-2545 (*1 *1 *1) (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-171)) (-4 *2 (-554)))) (-3553 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-4 *3 (-554)) (-5 *2 (-639 (-1256 *3))))) (-2026 (*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-4 *3 (-554)) (-5 *2 (-1164 *3)))) (-3474 (*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-4 *3 (-554)) (-5 *2 (-1164 *3)))) (-1681 (*1 *2) (|partial| -12 (-4 *3 (-554)) (-4 *3 (-171)) (-5 *2 (-2 (|:| |particular| *1) (|:| -3928 (-639 *1)))) (-4 *1 (-366 *3)))) (-2874 (*1 *2) (|partial| -12 (-4 *3 (-554)) (-4 *3 (-171)) (-5 *2 (-2 (|:| |particular| *1) (|:| -3928 (-639 *1)))) (-4 *1 (-366 *3)))) (-3700 (*1 *1) (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-554)) (-4 *2 (-171)))) (-2117 (*1 *1) (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-554)) (-4 *2 (-171)))) (-3931 (*1 *1) (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-554)) (-4 *2 (-171)))))
-(-13 (-739 |t#1|) (-10 -8 (-15 -3655 ((-1256 $))) (-15 -2173 ((-916))) (-15 -4136 ((-639 (-947 |t#1|)) (-1256 $))) (-15 -1902 ((-1256 (-683 |t#1|)) (-1256 $))) (-15 -1671 ((-683 |t#1|) $ (-1256 $))) (-15 -2966 ((-683 |t#1|) $ (-1256 $))) (-15 -4153 (|t#1| $)) (-15 -2422 (|t#1| $)) (-15 -1680 (|t#1| $)) (-15 -2355 (|t#1| $)) (-15 -3593 ((-1256 |t#1|) $ (-1256 $))) (-15 -3593 ((-683 |t#1|) (-1256 $) (-1256 $))) (-15 -4018 ($ (-1256 |t#1|) (-1256 $))) (-15 -1305 (|t#1| (-1256 $))) (-15 -2819 (|t#1| (-1256 $))) (-15 -3025 ((-683 |t#1|) (-1256 $))) (-15 -4356 ((-683 |t#1|) (-1256 $))) (-15 -2670 ((-1164 |t#1|) $)) (-15 -2964 ((-1164 |t#1|) $)) (-15 -1396 ((-112))) (-15 -1981 ((-112))) (-15 -2850 ((-112))) (-15 -3199 ((-112))) (-15 -2090 ((-112))) (-15 -2380 ((-112))) (-15 -4323 ((-112))) (-15 -4114 ((-112))) (-15 -1321 ((-112))) (-15 -2809 ((-112))) (-15 -4258 ((-112))) (-15 -2580 ((-112))) (-15 -3813 ((-112))) (-15 -2144 ((-112))) (-15 -3375 ((-112))) (IF (|has| |t#1| (-554)) (PROGN (-15 -3668 ((-3 $ "failed") $)) (-15 -4238 ((-3 $ "failed") $)) (-15 -2545 ((-3 $ "failed") $)) (-15 -3553 ((-639 (-1256 |t#1|)))) (-15 -2026 ((-1164 |t#1|) $)) (-15 -3474 ((-1164 |t#1|) $)) (-15 -1681 ((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed"))) (-15 -2874 ((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed"))) (-15 -3700 ((-3 $ "failed"))) (-15 -2117 ((-3 $ "failed"))) (-15 -3931 ((-3 $ "failed"))) (-6 -4399)) |%noBranch|)))
+((-1540 (*1 *2) (-12 (-4 *3 (-171)) (-5 *2 (-1256 *1)) (-4 *1 (-366 *3)))) (-2172 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-916)))) (-2555 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-639 (-947 *4))))) (-2016 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-1256 (-683 *4))))) (-1583 (*1 *2 *1 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-683 *4)))) (-2995 (*1 *2 *1 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-683 *4)))) (-2664 (*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))) (-2452 (*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))) (-3495 (*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))) (-2949 (*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))) (-2205 (*1 *2 *1 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-1256 *4)))) (-2205 (*1 *2 *3 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-683 *4)))) (-3916 (*1 *1 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-1256 *1)) (-4 *4 (-171)) (-4 *1 (-366 *4)))) (-1636 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *2)) (-4 *2 (-171)))) (-2200 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *2)) (-4 *2 (-171)))) (-3506 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-683 *4)))) (-3945 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171)) (-5 *2 (-683 *4)))) (-3099 (*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-1164 *3)))) (-2974 (*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-1164 *3)))) (-3901 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-1517 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-4309 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-2636 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-3302 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-3178 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-3626 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-3488 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-1832 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-2104 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-2394 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-1579 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-2531 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-2720 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-3671 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))) (-1694 (*1 *1 *1) (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-171)) (-4 *2 (-554)))) (-2217 (*1 *1 *1) (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-171)) (-4 *2 (-554)))) (-4276 (*1 *1 *1) (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-171)) (-4 *2 (-554)))) (-1823 (*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-4 *3 (-554)) (-5 *2 (-639 (-1256 *3))))) (-3849 (*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-4 *3 (-554)) (-5 *2 (-1164 *3)))) (-3407 (*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-4 *3 (-554)) (-5 *2 (-1164 *3)))) (-3502 (*1 *2) (|partial| -12 (-4 *3 (-554)) (-4 *3 (-171)) (-5 *2 (-2 (|:| |particular| *1) (|:| -4291 (-639 *1)))) (-4 *1 (-366 *3)))) (-1469 (*1 *2) (|partial| -12 (-4 *3 (-554)) (-4 *3 (-171)) (-5 *2 (-2 (|:| |particular| *1) (|:| -4291 (-639 *1)))) (-4 *1 (-366 *3)))) (-3839 (*1 *1) (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-554)) (-4 *2 (-171)))) (-2447 (*1 *1) (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-554)) (-4 *2 (-171)))) (-4310 (*1 *1) (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-554)) (-4 *2 (-171)))))
+(-13 (-739 |t#1|) (-10 -8 (-15 -1540 ((-1256 $))) (-15 -2172 ((-916))) (-15 -2555 ((-639 (-947 |t#1|)) (-1256 $))) (-15 -2016 ((-1256 (-683 |t#1|)) (-1256 $))) (-15 -1583 ((-683 |t#1|) $ (-1256 $))) (-15 -2995 ((-683 |t#1|) $ (-1256 $))) (-15 -2664 (|t#1| $)) (-15 -2452 (|t#1| $)) (-15 -3495 (|t#1| $)) (-15 -2949 (|t#1| $)) (-15 -2205 ((-1256 |t#1|) $ (-1256 $))) (-15 -2205 ((-683 |t#1|) (-1256 $) (-1256 $))) (-15 -3916 ($ (-1256 |t#1|) (-1256 $))) (-15 -1636 (|t#1| (-1256 $))) (-15 -2200 (|t#1| (-1256 $))) (-15 -3506 ((-683 |t#1|) (-1256 $))) (-15 -3945 ((-683 |t#1|) (-1256 $))) (-15 -3099 ((-1164 |t#1|) $)) (-15 -2974 ((-1164 |t#1|) $)) (-15 -3901 ((-112))) (-15 -1517 ((-112))) (-15 -4309 ((-112))) (-15 -2636 ((-112))) (-15 -3302 ((-112))) (-15 -3178 ((-112))) (-15 -3626 ((-112))) (-15 -3488 ((-112))) (-15 -1832 ((-112))) (-15 -2104 ((-112))) (-15 -2394 ((-112))) (-15 -1579 ((-112))) (-15 -2531 ((-112))) (-15 -2720 ((-112))) (-15 -3671 ((-112))) (IF (|has| |t#1| (-554)) (PROGN (-15 -1694 ((-3 $ "failed") $)) (-15 -2217 ((-3 $ "failed") $)) (-15 -4276 ((-3 $ "failed") $)) (-15 -1823 ((-639 (-1256 |t#1|)))) (-15 -3849 ((-1164 |t#1|) $)) (-15 -3407 ((-1164 |t#1|) $)) (-15 -3502 ((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed"))) (-15 -1469 ((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed"))) (-15 -3839 ((-3 $ "failed"))) (-15 -2447 ((-3 $ "failed"))) (-15 -4310 ((-3 $ "failed"))) (-6 -4400)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-609 (-857)) . T) ((-642 |#1|) . T) ((-712 |#1|) . T) ((-715) . T) ((-739 |#1|) . T) ((-756) . T) ((-1050 |#1|) . T) ((-1092) . T))
-((-4041 (((-112) $ $) 7)) (-1382 (((-766)) 16)) (-1448 (($) 13)) (-1999 (((-916) $) 14)) (-2913 (((-1150) $) 9)) (-2466 (($ (-916)) 15)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) 7)) (-1382 (((-766)) 16)) (-1447 (($) 13)) (-3549 (((-916) $) 14)) (-3696 (((-1150) $) 9)) (-2464 (($ (-916)) 15)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1733 (((-112) $ $) 6)))
(((-367) (-139)) (T -367))
-((-1382 (*1 *2) (-12 (-4 *1 (-367)) (-5 *2 (-766)))) (-2466 (*1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-367)))) (-1999 (*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-916)))) (-1448 (*1 *1) (-4 *1 (-367))))
-(-13 (-1092) (-10 -8 (-15 -1382 ((-766))) (-15 -2466 ($ (-916))) (-15 -1999 ((-916) $)) (-15 -1448 ($))))
+((-1382 (*1 *2) (-12 (-4 *1 (-367)) (-5 *2 (-766)))) (-2464 (*1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-367)))) (-3549 (*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-916)))) (-1447 (*1 *1) (-4 *1 (-367))))
+(-13 (-1092) (-10 -8 (-15 -1382 ((-766))) (-15 -2464 ($ (-916))) (-15 -3549 ((-916) $)) (-15 -1447 ($))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-1636 (((-683 |#2|) (-1256 $)) 40)) (-4018 (($ (-1256 |#2|) (-1256 $)) 34)) (-1958 (((-683 |#2|) $ (-1256 $)) 42)) (-2455 ((|#2| (-1256 $)) 13)) (-3593 (((-1256 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) (-1256 $) (-1256 $)) 25)))
-(((-368 |#1| |#2| |#3|) (-10 -8 (-15 -1636 ((-683 |#2|) (-1256 |#1|))) (-15 -2455 (|#2| (-1256 |#1|))) (-15 -4018 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -1958 ((-683 |#2|) |#1| (-1256 |#1|)))) (-369 |#2| |#3|) (-171) (-1232 |#2|)) (T -368))
+((-4342 (((-683 |#2|) (-1256 $)) 40)) (-3916 (($ (-1256 |#2|) (-1256 $)) 34)) (-4376 (((-683 |#2|) $ (-1256 $)) 42)) (-2736 ((|#2| (-1256 $)) 13)) (-2205 (((-1256 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) (-1256 $) (-1256 $)) 25)))
+(((-368 |#1| |#2| |#3|) (-10 -8 (-15 -4342 ((-683 |#2|) (-1256 |#1|))) (-15 -2736 (|#2| (-1256 |#1|))) (-15 -3916 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -4376 ((-683 |#2|) |#1| (-1256 |#1|)))) (-369 |#2| |#3|) (-171) (-1232 |#2|)) (T -368))
NIL
-(-10 -8 (-15 -1636 ((-683 |#2|) (-1256 |#1|))) (-15 -2455 (|#2| (-1256 |#1|))) (-15 -4018 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -1958 ((-683 |#2|) |#1| (-1256 |#1|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1636 (((-683 |#1|) (-1256 $)) 47)) (-1748 ((|#1| $) 53)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-4018 (($ (-1256 |#1|) (-1256 $)) 49)) (-1958 (((-683 |#1|) $ (-1256 $)) 54)) (-3668 (((-3 $ "failed") $) 33)) (-2173 (((-916)) 55)) (-1957 (((-112) $) 31)) (-2247 ((|#1| $) 52)) (-1565 ((|#2| $) 45 (|has| |#1| (-362)))) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2455 ((|#1| (-1256 $)) 48)) (-3593 (((-1256 |#1|) $ (-1256 $)) 51) (((-683 |#1|) (-1256 $) (-1256 $)) 50)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38)) (-2805 (((-3 $ "failed") $) 44 (|has| |#1| (-144)))) (-3376 ((|#2| $) 46)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
+(-10 -8 (-15 -4342 ((-683 |#2|) (-1256 |#1|))) (-15 -2736 (|#2| (-1256 |#1|))) (-15 -3916 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -4376 ((-683 |#2|) |#1| (-1256 |#1|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-4342 (((-683 |#1|) (-1256 $)) 47)) (-1748 ((|#1| $) 53)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3916 (($ (-1256 |#1|) (-1256 $)) 49)) (-4376 (((-683 |#1|) $ (-1256 $)) 54)) (-1694 (((-3 $ "failed") $) 33)) (-2172 (((-916)) 55)) (-4367 (((-112) $) 31)) (-4363 ((|#1| $) 52)) (-1937 ((|#2| $) 45 (|has| |#1| (-362)))) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2736 ((|#1| (-1256 $)) 48)) (-2205 (((-1256 |#1|) $ (-1256 $)) 51) (((-683 |#1|) (-1256 $) (-1256 $)) 50)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38)) (-2059 (((-3 $ "failed") $) 44 (|has| |#1| (-144)))) (-3683 ((|#2| $) 46)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-369 |#1| |#2|) (-139) (-171) (-1232 |t#1|)) (T -369))
-((-2173 (*1 *2) (-12 (-4 *1 (-369 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-916)))) (-1958 (*1 *2 *1 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-683 *4)))) (-1748 (*1 *2 *1) (-12 (-4 *1 (-369 *2 *3)) (-4 *3 (-1232 *2)) (-4 *2 (-171)))) (-2247 (*1 *2 *1) (-12 (-4 *1 (-369 *2 *3)) (-4 *3 (-1232 *2)) (-4 *2 (-171)))) (-3593 (*1 *2 *1 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-1256 *4)))) (-3593 (*1 *2 *3 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-683 *4)))) (-4018 (*1 *1 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-1256 *1)) (-4 *4 (-171)) (-4 *1 (-369 *4 *5)) (-4 *5 (-1232 *4)))) (-2455 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *2 *4)) (-4 *4 (-1232 *2)) (-4 *2 (-171)))) (-1636 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-683 *4)))) (-3376 (*1 *2 *1) (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-171)) (-4 *2 (-1232 *3)))) (-1565 (*1 *2 *1) (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-171)) (-4 *3 (-362)) (-4 *2 (-1232 *3)))))
-(-13 (-38 |t#1|) (-10 -8 (-15 -2173 ((-916))) (-15 -1958 ((-683 |t#1|) $ (-1256 $))) (-15 -1748 (|t#1| $)) (-15 -2247 (|t#1| $)) (-15 -3593 ((-1256 |t#1|) $ (-1256 $))) (-15 -3593 ((-683 |t#1|) (-1256 $) (-1256 $))) (-15 -4018 ($ (-1256 |t#1|) (-1256 $))) (-15 -2455 (|t#1| (-1256 $))) (-15 -1636 ((-683 |t#1|) (-1256 $))) (-15 -3376 (|t#2| $)) (IF (|has| |t#1| (-362)) (-15 -1565 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|)))
+((-2172 (*1 *2) (-12 (-4 *1 (-369 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-916)))) (-4376 (*1 *2 *1 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-683 *4)))) (-1748 (*1 *2 *1) (-12 (-4 *1 (-369 *2 *3)) (-4 *3 (-1232 *2)) (-4 *2 (-171)))) (-4363 (*1 *2 *1) (-12 (-4 *1 (-369 *2 *3)) (-4 *3 (-1232 *2)) (-4 *2 (-171)))) (-2205 (*1 *2 *1 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-1256 *4)))) (-2205 (*1 *2 *3 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-683 *4)))) (-3916 (*1 *1 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-1256 *1)) (-4 *4 (-171)) (-4 *1 (-369 *4 *5)) (-4 *5 (-1232 *4)))) (-2736 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *2 *4)) (-4 *4 (-1232 *2)) (-4 *2 (-171)))) (-4342 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-683 *4)))) (-3683 (*1 *2 *1) (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-171)) (-4 *2 (-1232 *3)))) (-1937 (*1 *2 *1) (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-171)) (-4 *3 (-362)) (-4 *2 (-1232 *3)))))
+(-13 (-38 |t#1|) (-10 -8 (-15 -2172 ((-916))) (-15 -4376 ((-683 |t#1|) $ (-1256 $))) (-15 -1748 (|t#1| $)) (-15 -4363 (|t#1| $)) (-15 -2205 ((-1256 |t#1|) $ (-1256 $))) (-15 -2205 ((-683 |t#1|) (-1256 $) (-1256 $))) (-15 -3916 ($ (-1256 |t#1|) (-1256 $))) (-15 -2736 (|t#1| (-1256 $))) (-15 -4342 ((-683 |t#1|) (-1256 $))) (-15 -3683 (|t#2| $)) (IF (|has| |t#1| (-362)) (-15 -1937 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-609 (-857)) . T) ((-642 |#1|) . T) ((-642 $) . T) ((-712 |#1|) . T) ((-721) . T) ((-1050 |#1|) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-2578 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 23)) (-1955 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 15)) (-4152 ((|#4| (-1 |#3| |#1|) |#2|) 21)))
-(((-370 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4152 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1955 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2578 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1207) (-372 |#1|) (-1207) (-372 |#3|)) (T -370))
-((-2578 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1207)) (-4 *5 (-1207)) (-4 *2 (-372 *5)) (-5 *1 (-370 *6 *4 *5 *2)) (-4 *4 (-372 *6)))) (-1955 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1207)) (-4 *2 (-1207)) (-5 *1 (-370 *5 *4 *2 *6)) (-4 *4 (-372 *5)) (-4 *6 (-372 *2)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-4 *2 (-372 *6)) (-5 *1 (-370 *5 *4 *6 *2)) (-4 *4 (-372 *5)))))
-(-10 -7 (-15 -4152 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1955 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2578 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-1399 (((-112) (-1 (-112) |#2| |#2|) $) NIL) (((-112) $) 18)) (-3381 (($ (-1 (-112) |#2| |#2|) $) NIL) (($ $) 28)) (-1395 (($ (-1 (-112) |#2| |#2|) $) 27) (($ $) 22)) (-2677 (($ $) 25)) (-4264 (((-562) (-1 (-112) |#2|) $) NIL) (((-562) |#2| $) 11) (((-562) |#2| $ (-562)) NIL)) (-1610 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
-(((-371 |#1| |#2|) (-10 -8 (-15 -3381 (|#1| |#1|)) (-15 -3381 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -1399 ((-112) |#1|)) (-15 -1395 (|#1| |#1|)) (-15 -1610 (|#1| |#1| |#1|)) (-15 -4264 ((-562) |#2| |#1| (-562))) (-15 -4264 ((-562) |#2| |#1|)) (-15 -4264 ((-562) (-1 (-112) |#2|) |#1|)) (-15 -1399 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -1395 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2677 (|#1| |#1|)) (-15 -1610 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|))) (-372 |#2|) (-1207)) (T -371))
-NIL
-(-10 -8 (-15 -3381 (|#1| |#1|)) (-15 -3381 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -1399 ((-112) |#1|)) (-15 -1395 (|#1| |#1|)) (-15 -1610 (|#1| |#1| |#1|)) (-15 -4264 ((-562) |#2| |#1| (-562))) (-15 -4264 ((-562) |#2| |#1|)) (-15 -4264 ((-562) (-1 (-112) |#2|) |#1|)) (-15 -1399 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -1395 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2677 (|#1| |#1|)) (-15 -1610 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3052 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-845)))) (-3381 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4403))) (($ $) 88 (-12 (|has| |#1| (-845)) (|has| $ (-6 -4403))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-845)))) (-4336 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) |#1|) 52 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) 58 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-2447 (($ $) 90 (|has| $ (-6 -4403)))) (-2677 (($ $) 100)) (-1459 (($ $) 78 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#1| $) 77 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) 53 (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) 51)) (-4264 (((-562) (-1 (-112) |#1|) $) 97) (((-562) |#1| $) 96 (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) 95 (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-1458 (($ (-766) |#1|) 69)) (-3292 (((-112) $ (-766)) 9)) (-4197 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 87 (|has| |#1| (-845)))) (-1610 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 86 (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3297 (($ |#1| $ (-562)) 60) (($ $ $ (-562)) 59)) (-2093 (((-639 (-562)) $) 46)) (-1570 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 42 (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2716 (($ $ |#1|) 41 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) 48)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ (-562) |#1|) 50) ((|#1| $ (-562)) 49) (($ $ (-1223 (-562))) 63)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1853 (($ $ $ (-562)) 91 (|has| $ (-6 -4403)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 70)) (-2767 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) 84 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 83 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-1785 (((-112) $ $) 85 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 82 (|has| |#1| (-845)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-1555 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 23)) (-1954 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 15)) (-4152 ((|#4| (-1 |#3| |#1|) |#2|) 21)))
+(((-370 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4152 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1954 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1555 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1207) (-372 |#1|) (-1207) (-372 |#3|)) (T -370))
+((-1555 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1207)) (-4 *5 (-1207)) (-4 *2 (-372 *5)) (-5 *1 (-370 *6 *4 *5 *2)) (-4 *4 (-372 *6)))) (-1954 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1207)) (-4 *2 (-1207)) (-5 *1 (-370 *5 *4 *2 *6)) (-4 *4 (-372 *5)) (-4 *6 (-372 *2)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-4 *2 (-372 *6)) (-5 *1 (-370 *5 *4 *6 *2)) (-4 *4 (-372 *5)))))
+(-10 -7 (-15 -4152 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1954 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1555 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-1706 (((-112) (-1 (-112) |#2| |#2|) $) NIL) (((-112) $) 18)) (-3737 (($ (-1 (-112) |#2| |#2|) $) NIL) (($ $) 28)) (-1395 (($ (-1 (-112) |#2| |#2|) $) 27) (($ $) 22)) (-2676 (($ $) 25)) (-4265 (((-562) (-1 (-112) |#2|) $) NIL) (((-562) |#2| $) 11) (((-562) |#2| $ (-562)) NIL)) (-4103 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
+(((-371 |#1| |#2|) (-10 -8 (-15 -3737 (|#1| |#1|)) (-15 -3737 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -1706 ((-112) |#1|)) (-15 -1395 (|#1| |#1|)) (-15 -4103 (|#1| |#1| |#1|)) (-15 -4265 ((-562) |#2| |#1| (-562))) (-15 -4265 ((-562) |#2| |#1|)) (-15 -4265 ((-562) (-1 (-112) |#2|) |#1|)) (-15 -1706 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -1395 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2676 (|#1| |#1|)) (-15 -4103 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|))) (-372 |#2|) (-1207)) (T -371))
+NIL
+(-10 -8 (-15 -3737 (|#1| |#1|)) (-15 -3737 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -1706 ((-112) |#1|)) (-15 -1395 (|#1| |#1|)) (-15 -4103 (|#1| |#1| |#1|)) (-15 -4265 ((-562) |#2| |#1| (-562))) (-15 -4265 ((-562) |#2| |#1|)) (-15 -4265 ((-562) (-1 (-112) |#2|) |#1|)) (-15 -1706 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -1395 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2676 (|#1| |#1|)) (-15 -4103 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3655 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-845)))) (-3737 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4404))) (($ $) 88 (-12 (|has| |#1| (-845)) (|has| $ (-6 -4404))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-845)))) (-3735 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) |#1|) 52 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) 58 (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-2673 (($ $) 90 (|has| $ (-6 -4404)))) (-2676 (($ $) 100)) (-1459 (($ $) 78 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#1| $) 77 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) 53 (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) 51)) (-4265 (((-562) (-1 (-112) |#1|) $) 97) (((-562) |#1| $) 96 (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) 95 (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-1458 (($ (-766) |#1|) 69)) (-4172 (((-112) $ (-766)) 9)) (-1849 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 87 (|has| |#1| (-845)))) (-4103 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 86 (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3295 (($ |#1| $ (-562)) 60) (($ $ $ (-562)) 59)) (-3336 (((-639 (-562)) $) 46)) (-1987 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 42 (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-3510 (($ $ |#1|) 41 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) 48)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ (-562) |#1|) 50) ((|#1| $ (-562)) 49) (($ $ (-1223 (-562))) 63)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-2694 (($ $ $ (-562)) 91 (|has| $ (-6 -4404)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 70)) (-2767 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) 84 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 83 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-1785 (((-112) $ $) 85 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 82 (|has| |#1| (-845)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-372 |#1|) (-139) (-1207)) (T -372))
-((-1610 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-372 *3)) (-4 *3 (-1207)))) (-2677 (*1 *1 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-1207)))) (-1395 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-372 *3)) (-4 *3 (-1207)))) (-1399 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-372 *4)) (-4 *4 (-1207)) (-5 *2 (-112)))) (-4264 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-372 *4)) (-4 *4 (-1207)) (-5 *2 (-562)))) (-4264 (*1 *2 *3 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-562)))) (-4264 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-372 *3)) (-4 *3 (-1207)) (-4 *3 (-1092)))) (-1610 (*1 *1 *1 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-1207)) (-4 *2 (-845)))) (-1395 (*1 *1 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-1207)) (-4 *2 (-845)))) (-1399 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-1207)) (-4 *3 (-845)) (-5 *2 (-112)))) (-1853 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-562)) (|has| *1 (-6 -4403)) (-4 *1 (-372 *3)) (-4 *3 (-1207)))) (-2447 (*1 *1 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-372 *2)) (-4 *2 (-1207)))) (-3381 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4403)) (-4 *1 (-372 *3)) (-4 *3 (-1207)))) (-3381 (*1 *1 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-372 *2)) (-4 *2 (-1207)) (-4 *2 (-845)))))
-(-13 (-645 |t#1|) (-10 -8 (-6 -4402) (-15 -1610 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -2677 ($ $)) (-15 -1395 ($ (-1 (-112) |t#1| |t#1|) $)) (-15 -1399 ((-112) (-1 (-112) |t#1| |t#1|) $)) (-15 -4264 ((-562) (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1092)) (PROGN (-15 -4264 ((-562) |t#1| $)) (-15 -4264 ((-562) |t#1| $ (-562)))) |%noBranch|) (IF (|has| |t#1| (-845)) (PROGN (-6 (-845)) (-15 -1610 ($ $ $)) (-15 -1395 ($ $)) (-15 -1399 ((-112) $))) |%noBranch|) (IF (|has| $ (-6 -4403)) (PROGN (-15 -1853 ($ $ $ (-562))) (-15 -2447 ($ $)) (-15 -3381 ($ (-1 (-112) |t#1| |t#1|) $)) (IF (|has| |t#1| (-845)) (-15 -3381 ($ $)) |%noBranch|)) |%noBranch|)))
+((-4103 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-372 *3)) (-4 *3 (-1207)))) (-2676 (*1 *1 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-1207)))) (-1395 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-372 *3)) (-4 *3 (-1207)))) (-1706 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-372 *4)) (-4 *4 (-1207)) (-5 *2 (-112)))) (-4265 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-372 *4)) (-4 *4 (-1207)) (-5 *2 (-562)))) (-4265 (*1 *2 *3 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-562)))) (-4265 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-372 *3)) (-4 *3 (-1207)) (-4 *3 (-1092)))) (-4103 (*1 *1 *1 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-1207)) (-4 *2 (-845)))) (-1395 (*1 *1 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-1207)) (-4 *2 (-845)))) (-1706 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-1207)) (-4 *3 (-845)) (-5 *2 (-112)))) (-2694 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-562)) (|has| *1 (-6 -4404)) (-4 *1 (-372 *3)) (-4 *3 (-1207)))) (-2673 (*1 *1 *1) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-372 *2)) (-4 *2 (-1207)))) (-3737 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4404)) (-4 *1 (-372 *3)) (-4 *3 (-1207)))) (-3737 (*1 *1 *1) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-372 *2)) (-4 *2 (-1207)) (-4 *2 (-845)))))
+(-13 (-645 |t#1|) (-10 -8 (-6 -4403) (-15 -4103 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -2676 ($ $)) (-15 -1395 ($ (-1 (-112) |t#1| |t#1|) $)) (-15 -1706 ((-112) (-1 (-112) |t#1| |t#1|) $)) (-15 -4265 ((-562) (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1092)) (PROGN (-15 -4265 ((-562) |t#1| $)) (-15 -4265 ((-562) |t#1| $ (-562)))) |%noBranch|) (IF (|has| |t#1| (-845)) (PROGN (-6 (-845)) (-15 -4103 ($ $ $)) (-15 -1395 ($ $)) (-15 -1706 ((-112) $))) |%noBranch|) (IF (|has| $ (-6 -4404)) (PROGN (-15 -2694 ($ $ $ (-562))) (-15 -2673 ($ $)) (-15 -3737 ($ (-1 (-112) |t#1| |t#1|) $)) (IF (|has| |t#1| (-845)) (-15 -3737 ($ $)) |%noBranch|)) |%noBranch|)))
(((-34) . T) ((-102) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845))) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845)) (|has| |#1| (-609 (-857)))) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-285 #0=(-562) |#1|) . T) ((-287 #0# |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-600 #0# |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-645 |#1|) . T) ((-845) |has| |#1| (-845)) ((-1092) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845))) ((-1207) . T))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-2852 (((-639 |#1|) $) 32)) (-1881 (($ $ (-766)) 33)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2415 (((-1280 |#1| |#2|) (-1280 |#1| |#2|) $) 36)) (-3818 (($ $) 34)) (-2221 (((-1280 |#1| |#2|) (-1280 |#1| |#2|) $) 37)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1433 (($ $ |#1| $) 31) (($ $ (-639 |#1|) (-639 $)) 30)) (-3598 (((-766) $) 38)) (-4066 (($ $ $) 29)) (-4054 (((-857) $) 11) (($ |#1|) 41) (((-1271 |#1| |#2|) $) 40) (((-1280 |#1| |#2|) $) 39)) (-4221 ((|#2| (-1280 |#1| |#2|) $) 42)) (-2286 (($) 18 T CONST)) (-4031 (($ (-666 |#1|)) 35)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#2|) 28 (|has| |#2| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#2| $) 23) (($ $ |#2|) 26)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2850 (((-639 |#1|) $) 32)) (-1772 (($ $ (-766)) 33)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-2403 (((-1280 |#1| |#2|) (-1280 |#1| |#2|) $) 36)) (-2572 (($ $) 34)) (-2303 (((-1280 |#1| |#2|) (-1280 |#1| |#2|) $) 37)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1433 (($ $ |#1| $) 31) (($ $ (-639 |#1|) (-639 $)) 30)) (-2250 (((-766) $) 38)) (-4064 (($ $ $) 29)) (-4053 (((-857) $) 11) (($ |#1|) 41) (((-1271 |#1| |#2|) $) 40) (((-1280 |#1| |#2|) $) 39)) (-4221 ((|#2| (-1280 |#1| |#2|) $) 42)) (-2285 (($) 18 T CONST)) (-4016 (($ (-666 |#1|)) 35)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#2|) 28 (|has| |#2| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#2| $) 23) (($ $ |#2|) 26)))
(((-373 |#1| |#2|) (-139) (-845) (-171)) (T -373))
-((-4221 (*1 *2 *3 *1) (-12 (-5 *3 (-1280 *4 *2)) (-4 *1 (-373 *4 *2)) (-4 *4 (-845)) (-4 *2 (-171)))) (-4054 (*1 *1 *2) (-12 (-4 *1 (-373 *2 *3)) (-4 *2 (-845)) (-4 *3 (-171)))) (-4054 (*1 *2 *1) (-12 (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)) (-5 *2 (-1271 *3 *4)))) (-4054 (*1 *2 *1) (-12 (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)) (-5 *2 (-1280 *3 *4)))) (-3598 (*1 *2 *1) (-12 (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)) (-5 *2 (-766)))) (-2221 (*1 *2 *2 *1) (-12 (-5 *2 (-1280 *3 *4)) (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-2415 (*1 *2 *2 *1) (-12 (-5 *2 (-1280 *3 *4)) (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-4031 (*1 *1 *2) (-12 (-5 *2 (-666 *3)) (-4 *3 (-845)) (-4 *1 (-373 *3 *4)) (-4 *4 (-171)))) (-3818 (*1 *1 *1) (-12 (-4 *1 (-373 *2 *3)) (-4 *2 (-845)) (-4 *3 (-171)))) (-1881 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-2852 (*1 *2 *1) (-12 (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)) (-5 *2 (-639 *3)))) (-1433 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-373 *2 *3)) (-4 *2 (-845)) (-4 *3 (-171)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *4)) (-5 *3 (-639 *1)) (-4 *1 (-373 *4 *5)) (-4 *4 (-845)) (-4 *5 (-171)))))
-(-13 (-630 |t#2|) (-10 -8 (-15 -4221 (|t#2| (-1280 |t#1| |t#2|) $)) (-15 -4054 ($ |t#1|)) (-15 -4054 ((-1271 |t#1| |t#2|) $)) (-15 -4054 ((-1280 |t#1| |t#2|) $)) (-15 -3598 ((-766) $)) (-15 -2221 ((-1280 |t#1| |t#2|) (-1280 |t#1| |t#2|) $)) (-15 -2415 ((-1280 |t#1| |t#2|) (-1280 |t#1| |t#2|) $)) (-15 -4031 ($ (-666 |t#1|))) (-15 -3818 ($ $)) (-15 -1881 ($ $ (-766))) (-15 -2852 ((-639 |t#1|) $)) (-15 -1433 ($ $ |t#1| $)) (-15 -1433 ($ $ (-639 |t#1|) (-639 $)))))
+((-4221 (*1 *2 *3 *1) (-12 (-5 *3 (-1280 *4 *2)) (-4 *1 (-373 *4 *2)) (-4 *4 (-845)) (-4 *2 (-171)))) (-4053 (*1 *1 *2) (-12 (-4 *1 (-373 *2 *3)) (-4 *2 (-845)) (-4 *3 (-171)))) (-4053 (*1 *2 *1) (-12 (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)) (-5 *2 (-1271 *3 *4)))) (-4053 (*1 *2 *1) (-12 (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)) (-5 *2 (-1280 *3 *4)))) (-2250 (*1 *2 *1) (-12 (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)) (-5 *2 (-766)))) (-2303 (*1 *2 *2 *1) (-12 (-5 *2 (-1280 *3 *4)) (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-2403 (*1 *2 *2 *1) (-12 (-5 *2 (-1280 *3 *4)) (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-4016 (*1 *1 *2) (-12 (-5 *2 (-666 *3)) (-4 *3 (-845)) (-4 *1 (-373 *3 *4)) (-4 *4 (-171)))) (-2572 (*1 *1 *1) (-12 (-4 *1 (-373 *2 *3)) (-4 *2 (-845)) (-4 *3 (-171)))) (-1772 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-2850 (*1 *2 *1) (-12 (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)) (-5 *2 (-639 *3)))) (-1433 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-373 *2 *3)) (-4 *2 (-845)) (-4 *3 (-171)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *4)) (-5 *3 (-639 *1)) (-4 *1 (-373 *4 *5)) (-4 *4 (-845)) (-4 *5 (-171)))))
+(-13 (-630 |t#2|) (-10 -8 (-15 -4221 (|t#2| (-1280 |t#1| |t#2|) $)) (-15 -4053 ($ |t#1|)) (-15 -4053 ((-1271 |t#1| |t#2|) $)) (-15 -4053 ((-1280 |t#1| |t#2|) $)) (-15 -2250 ((-766) $)) (-15 -2303 ((-1280 |t#1| |t#2|) (-1280 |t#1| |t#2|) $)) (-15 -2403 ((-1280 |t#1| |t#2|) (-1280 |t#1| |t#2|) $)) (-15 -4016 ($ (-666 |t#1|))) (-15 -2572 ($ $)) (-15 -1772 ($ $ (-766))) (-15 -2850 ((-639 |t#1|) $)) (-15 -1433 ($ $ |t#1| $)) (-15 -1433 ($ $ (-639 |t#1|) (-639 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-609 (-857)) . T) ((-642 |#2|) . T) ((-630 |#2|) . T) ((-712 |#2|) . T) ((-1050 |#2|) . T) ((-1092) . T))
-((-2065 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 23)) (-2379 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 13)) (-3863 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 22)))
-(((-374 |#1| |#2|) (-10 -7 (-15 -2379 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3863 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -2065 (|#2| (-1 (-112) |#1| |#1|) |#2|))) (-1207) (-13 (-372 |#1|) (-10 -7 (-6 -4403)))) (T -374))
-((-2065 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-374 *4 *2)) (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4403)))))) (-3863 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-374 *4 *2)) (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4403)))))) (-2379 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-374 *4 *2)) (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4403)))))))
-(-10 -7 (-15 -2379 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3863 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -2065 (|#2| (-1 (-112) |#1| |#1|) |#2|)))
-((-2406 (((-683 |#2|) (-683 $)) NIL) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 22) (((-683 (-562)) (-683 $)) 14)))
-(((-375 |#1| |#2|) (-10 -8 (-15 -2406 ((-683 (-562)) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-683 |#2|) (-683 |#1|)))) (-376 |#2|) (-1044)) (T -375))
-NIL
-(-10 -8 (-15 -2406 ((-683 (-562)) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-683 |#2|) (-683 |#1|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2406 (((-683 |#1|) (-683 $)) 36) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 35) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 43 (|has| |#1| (-635 (-562)))) (((-683 (-562)) (-683 $)) 42 (|has| |#1| (-635 (-562))))) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-562)) 29)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-3045 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 23)) (-3166 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 13)) (-1807 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 22)))
+(((-374 |#1| |#2|) (-10 -7 (-15 -3166 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -1807 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3045 (|#2| (-1 (-112) |#1| |#1|) |#2|))) (-1207) (-13 (-372 |#1|) (-10 -7 (-6 -4404)))) (T -374))
+((-3045 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-374 *4 *2)) (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4404)))))) (-1807 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-374 *4 *2)) (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4404)))))) (-3166 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-374 *4 *2)) (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4404)))))))
+(-10 -7 (-15 -3166 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -1807 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3045 (|#2| (-1 (-112) |#1| |#1|) |#2|)))
+((-3449 (((-683 |#2|) (-683 $)) NIL) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 22) (((-683 (-562)) (-683 $)) 14)))
+(((-375 |#1| |#2|) (-10 -8 (-15 -3449 ((-683 (-562)) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-683 |#2|) (-683 |#1|)))) (-376 |#2|) (-1044)) (T -375))
+NIL
+(-10 -8 (-15 -3449 ((-683 (-562)) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-683 |#2|) (-683 |#1|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3449 (((-683 |#1|) (-683 $)) 36) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 35) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 43 (|has| |#1| (-635 (-562)))) (((-683 (-562)) (-683 $)) 42 (|has| |#1| (-635 (-562))))) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-562)) 29)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-376 |#1|) (-139) (-1044)) (T -376))
NIL
(-13 (-635 |t#1|) (-10 -7 (IF (|has| |t#1| (-635 (-562))) (-6 (-635 (-562))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-642 $) . T) ((-635 (-562)) |has| |#1| (-635 (-562))) ((-635 |#1|) . T) ((-721) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-2538 (((-639 (-293 (-947 (-168 |#1|)))) (-293 (-406 (-947 (-168 (-562))))) |#1|) 51) (((-639 (-293 (-947 (-168 |#1|)))) (-406 (-947 (-168 (-562)))) |#1|) 50) (((-639 (-639 (-293 (-947 (-168 |#1|))))) (-639 (-293 (-406 (-947 (-168 (-562)))))) |#1|) 47) (((-639 (-639 (-293 (-947 (-168 |#1|))))) (-639 (-406 (-947 (-168 (-562))))) |#1|) 41)) (-1646 (((-639 (-639 (-168 |#1|))) (-639 (-406 (-947 (-168 (-562))))) (-639 (-1168)) |#1|) 30) (((-639 (-168 |#1|)) (-406 (-947 (-168 (-562)))) |#1|) 18)))
-(((-377 |#1|) (-10 -7 (-15 -2538 ((-639 (-639 (-293 (-947 (-168 |#1|))))) (-639 (-406 (-947 (-168 (-562))))) |#1|)) (-15 -2538 ((-639 (-639 (-293 (-947 (-168 |#1|))))) (-639 (-293 (-406 (-947 (-168 (-562)))))) |#1|)) (-15 -2538 ((-639 (-293 (-947 (-168 |#1|)))) (-406 (-947 (-168 (-562)))) |#1|)) (-15 -2538 ((-639 (-293 (-947 (-168 |#1|)))) (-293 (-406 (-947 (-168 (-562))))) |#1|)) (-15 -1646 ((-639 (-168 |#1|)) (-406 (-947 (-168 (-562)))) |#1|)) (-15 -1646 ((-639 (-639 (-168 |#1|))) (-639 (-406 (-947 (-168 (-562))))) (-639 (-1168)) |#1|))) (-13 (-362) (-843))) (T -377))
-((-1646 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 (-406 (-947 (-168 (-562)))))) (-5 *4 (-639 (-1168))) (-5 *2 (-639 (-639 (-168 *5)))) (-5 *1 (-377 *5)) (-4 *5 (-13 (-362) (-843))))) (-1646 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 (-168 (-562))))) (-5 *2 (-639 (-168 *4))) (-5 *1 (-377 *4)) (-4 *4 (-13 (-362) (-843))))) (-2538 (*1 *2 *3 *4) (-12 (-5 *3 (-293 (-406 (-947 (-168 (-562)))))) (-5 *2 (-639 (-293 (-947 (-168 *4))))) (-5 *1 (-377 *4)) (-4 *4 (-13 (-362) (-843))))) (-2538 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 (-168 (-562))))) (-5 *2 (-639 (-293 (-947 (-168 *4))))) (-5 *1 (-377 *4)) (-4 *4 (-13 (-362) (-843))))) (-2538 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-293 (-406 (-947 (-168 (-562))))))) (-5 *2 (-639 (-639 (-293 (-947 (-168 *4)))))) (-5 *1 (-377 *4)) (-4 *4 (-13 (-362) (-843))))) (-2538 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-406 (-947 (-168 (-562)))))) (-5 *2 (-639 (-639 (-293 (-947 (-168 *4)))))) (-5 *1 (-377 *4)) (-4 *4 (-13 (-362) (-843))))))
-(-10 -7 (-15 -2538 ((-639 (-639 (-293 (-947 (-168 |#1|))))) (-639 (-406 (-947 (-168 (-562))))) |#1|)) (-15 -2538 ((-639 (-639 (-293 (-947 (-168 |#1|))))) (-639 (-293 (-406 (-947 (-168 (-562)))))) |#1|)) (-15 -2538 ((-639 (-293 (-947 (-168 |#1|)))) (-406 (-947 (-168 (-562)))) |#1|)) (-15 -2538 ((-639 (-293 (-947 (-168 |#1|)))) (-293 (-406 (-947 (-168 (-562))))) |#1|)) (-15 -1646 ((-639 (-168 |#1|)) (-406 (-947 (-168 (-562)))) |#1|)) (-15 -1646 ((-639 (-639 (-168 |#1|))) (-639 (-406 (-947 (-168 (-562))))) (-639 (-1168)) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 33)) (-4246 (((-562) $) 55)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2557 (($ $) 110)) (-2988 (($ $) 82)) (-4097 (($ $) 71)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-1643 (($ $) 44)) (-2569 (((-112) $ $) NIL)) (-4207 (($ $) 80)) (-4074 (($ $) 69)) (-2277 (((-562) $) 64)) (-3358 (($ $ (-562)) 62)) (-3014 (($ $) NIL)) (-4119 (($ $) NIL)) (-1800 (($) NIL T CONST)) (-4103 (($ $) 112)) (-4048 (((-3 (-562) "failed") $) 189) (((-3 (-406 (-562)) "failed") $) 185)) (-3961 (((-562) $) 187) (((-406 (-562)) $) 183)) (-1811 (($ $ $) NIL)) (-3997 (((-562) $ $) 102)) (-3668 (((-3 $ "failed") $) 114)) (-4248 (((-406 (-562)) $ (-766)) 190) (((-406 (-562)) $ (-766) (-766)) 182)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3327 (((-916)) 73) (((-916) (-916)) 98 (|has| $ (-6 -4393)))) (-3519 (((-112) $) 106)) (-4100 (($) 40)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL)) (-2282 (((-1261) (-766)) 152)) (-1963 (((-1261)) 157) (((-1261) (-766)) 158)) (-4218 (((-1261)) 159) (((-1261) (-766)) 160)) (-3533 (((-1261)) 155) (((-1261) (-766)) 156)) (-1900 (((-562) $) 58)) (-1957 (((-112) $) 104)) (-1891 (($ $ (-562)) NIL)) (-3270 (($ $) 48)) (-2247 (($ $) NIL)) (-3392 (((-112) $) 35)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL) (($) NIL (-12 (-2236 (|has| $ (-6 -4385))) (-2236 (|has| $ (-6 -4393)))))) (-2993 (($ $ $) NIL) (($) 99 (-12 (-2236 (|has| $ (-6 -4385))) (-2236 (|has| $ (-6 -4393)))))) (-3946 (((-562) $) 17)) (-2572 (($) 87) (($ $) 92)) (-2983 (($) 91) (($ $) 93)) (-4365 (($ $) 83)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 116)) (-3544 (((-916) (-562)) 43 (|has| $ (-6 -4393)))) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2736 (($ $) 53)) (-4014 (($ $) 109)) (-4235 (($ (-562) (-562)) 107) (($ (-562) (-562) (-916)) 108)) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1960 (((-562) $) 19)) (-3978 (($) 94)) (-3430 (($ $) 79)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3280 (((-916)) 100) (((-916) (-916)) 101 (|has| $ (-6 -4393)))) (-4029 (($ $ (-766)) NIL) (($ $) 115)) (-2015 (((-916) (-562)) 47 (|has| $ (-6 -4393)))) (-3023 (($ $) NIL)) (-4130 (($ $) NIL)) (-3001 (($ $) NIL)) (-4108 (($ $) NIL)) (-2978 (($ $) 81)) (-4087 (($ $) 70)) (-4208 (((-378) $) 175) (((-224) $) 177) (((-887 (-378)) $) NIL) (((-1150) $) 162) (((-535) $) 173) (($ (-224)) 181)) (-4054 (((-857) $) 164) (($ (-562)) 186) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-562)) 186) (($ (-406 (-562))) NIL) (((-224) $) 178)) (-2579 (((-766)) NIL)) (-2604 (($ $) 111)) (-3366 (((-916)) 54) (((-916) (-916)) 66 (|has| $ (-6 -4393)))) (-3241 (((-916)) 103)) (-3055 (($ $) 86)) (-4165 (($ $) 46) (($ $ $) 52)) (-2922 (((-112) $ $) NIL)) (-3033 (($ $) 84)) (-4138 (($ $) 37)) (-3078 (($ $) NIL)) (-4182 (($ $) NIL)) (-1566 (($ $) NIL)) (-4195 (($ $) NIL)) (-3066 (($ $) NIL)) (-4174 (($ $) NIL)) (-3044 (($ $) 85)) (-4151 (($ $) 49)) (-3526 (($ $) 51)) (-2286 (($) 34 T CONST)) (-2294 (($) 38 T CONST)) (-2833 (((-1150) $) 27) (((-1150) $ (-112)) 29) (((-1261) (-817) $) 30) (((-1261) (-817) $ (-112)) 31)) (-3114 (($ $ (-766)) NIL) (($ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 39)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 42)) (-1859 (($ $ $) 45) (($ $ (-562)) 41)) (-1848 (($ $) 36) (($ $ $) 50)) (-1835 (($ $ $) 61)) (** (($ $ (-916)) 67) (($ $ (-766)) NIL) (($ $ (-562)) 88) (($ $ (-406 (-562))) 125) (($ $ $) 117)) (* (($ (-916) $) 65) (($ (-766) $) NIL) (($ (-562) $) 68) (($ $ $) 60) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
-(((-378) (-13 (-403) (-232) (-610 (-1150)) (-823) (-609 (-224)) (-1192) (-610 (-535)) (-614 (-224)) (-10 -8 (-15 -1859 ($ $ (-562))) (-15 ** ($ $ $)) (-15 -3270 ($ $)) (-15 -3997 ((-562) $ $)) (-15 -3358 ($ $ (-562))) (-15 -4248 ((-406 (-562)) $ (-766))) (-15 -4248 ((-406 (-562)) $ (-766) (-766))) (-15 -2572 ($)) (-15 -2983 ($)) (-15 -3978 ($)) (-15 -4165 ($ $ $)) (-15 -2572 ($ $)) (-15 -2983 ($ $)) (-15 -4218 ((-1261))) (-15 -4218 ((-1261) (-766))) (-15 -3533 ((-1261))) (-15 -3533 ((-1261) (-766))) (-15 -1963 ((-1261))) (-15 -1963 ((-1261) (-766))) (-15 -2282 ((-1261) (-766))) (-6 -4393) (-6 -4385)))) (T -378))
-((** (*1 *1 *1 *1) (-5 *1 (-378))) (-1859 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-378)))) (-3270 (*1 *1 *1) (-5 *1 (-378))) (-3997 (*1 *2 *1 *1) (-12 (-5 *2 (-562)) (-5 *1 (-378)))) (-3358 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-378)))) (-4248 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-378)))) (-4248 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-378)))) (-2572 (*1 *1) (-5 *1 (-378))) (-2983 (*1 *1) (-5 *1 (-378))) (-3978 (*1 *1) (-5 *1 (-378))) (-4165 (*1 *1 *1 *1) (-5 *1 (-378))) (-2572 (*1 *1 *1) (-5 *1 (-378))) (-2983 (*1 *1 *1) (-5 *1 (-378))) (-4218 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-378)))) (-4218 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378)))) (-3533 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-378)))) (-3533 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378)))) (-1963 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-378)))) (-1963 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378)))) (-2282 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378)))))
-(-13 (-403) (-232) (-610 (-1150)) (-823) (-609 (-224)) (-1192) (-610 (-535)) (-614 (-224)) (-10 -8 (-15 -1859 ($ $ (-562))) (-15 ** ($ $ $)) (-15 -3270 ($ $)) (-15 -3997 ((-562) $ $)) (-15 -3358 ($ $ (-562))) (-15 -4248 ((-406 (-562)) $ (-766))) (-15 -4248 ((-406 (-562)) $ (-766) (-766))) (-15 -2572 ($)) (-15 -2983 ($)) (-15 -3978 ($)) (-15 -4165 ($ $ $)) (-15 -2572 ($ $)) (-15 -2983 ($ $)) (-15 -4218 ((-1261))) (-15 -4218 ((-1261) (-766))) (-15 -3533 ((-1261))) (-15 -3533 ((-1261) (-766))) (-15 -1963 ((-1261))) (-15 -1963 ((-1261) (-766))) (-15 -2282 ((-1261) (-766))) (-6 -4393) (-6 -4385)))
-((-4351 (((-639 (-293 (-947 |#1|))) (-293 (-406 (-947 (-562)))) |#1|) 46) (((-639 (-293 (-947 |#1|))) (-406 (-947 (-562))) |#1|) 45) (((-639 (-639 (-293 (-947 |#1|)))) (-639 (-293 (-406 (-947 (-562))))) |#1|) 42) (((-639 (-639 (-293 (-947 |#1|)))) (-639 (-406 (-947 (-562)))) |#1|) 36)) (-2016 (((-639 |#1|) (-406 (-947 (-562))) |#1|) 20) (((-639 (-639 |#1|)) (-639 (-406 (-947 (-562)))) (-639 (-1168)) |#1|) 30)))
-(((-379 |#1|) (-10 -7 (-15 -4351 ((-639 (-639 (-293 (-947 |#1|)))) (-639 (-406 (-947 (-562)))) |#1|)) (-15 -4351 ((-639 (-639 (-293 (-947 |#1|)))) (-639 (-293 (-406 (-947 (-562))))) |#1|)) (-15 -4351 ((-639 (-293 (-947 |#1|))) (-406 (-947 (-562))) |#1|)) (-15 -4351 ((-639 (-293 (-947 |#1|))) (-293 (-406 (-947 (-562)))) |#1|)) (-15 -2016 ((-639 (-639 |#1|)) (-639 (-406 (-947 (-562)))) (-639 (-1168)) |#1|)) (-15 -2016 ((-639 |#1|) (-406 (-947 (-562))) |#1|))) (-13 (-843) (-362))) (T -379))
-((-2016 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 (-562)))) (-5 *2 (-639 *4)) (-5 *1 (-379 *4)) (-4 *4 (-13 (-843) (-362))))) (-2016 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 (-406 (-947 (-562))))) (-5 *4 (-639 (-1168))) (-5 *2 (-639 (-639 *5))) (-5 *1 (-379 *5)) (-4 *5 (-13 (-843) (-362))))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-293 (-406 (-947 (-562))))) (-5 *2 (-639 (-293 (-947 *4)))) (-5 *1 (-379 *4)) (-4 *4 (-13 (-843) (-362))))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 (-562)))) (-5 *2 (-639 (-293 (-947 *4)))) (-5 *1 (-379 *4)) (-4 *4 (-13 (-843) (-362))))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-293 (-406 (-947 (-562)))))) (-5 *2 (-639 (-639 (-293 (-947 *4))))) (-5 *1 (-379 *4)) (-4 *4 (-13 (-843) (-362))))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-406 (-947 (-562))))) (-5 *2 (-639 (-639 (-293 (-947 *4))))) (-5 *1 (-379 *4)) (-4 *4 (-13 (-843) (-362))))))
-(-10 -7 (-15 -4351 ((-639 (-639 (-293 (-947 |#1|)))) (-639 (-406 (-947 (-562)))) |#1|)) (-15 -4351 ((-639 (-639 (-293 (-947 |#1|)))) (-639 (-293 (-406 (-947 (-562))))) |#1|)) (-15 -4351 ((-639 (-293 (-947 |#1|))) (-406 (-947 (-562))) |#1|)) (-15 -4351 ((-639 (-293 (-947 |#1|))) (-293 (-406 (-947 (-562)))) |#1|)) (-15 -2016 ((-639 (-639 |#1|)) (-639 (-406 (-947 (-562)))) (-639 (-1168)) |#1|)) (-15 -2016 ((-639 |#1|) (-406 (-947 (-562))) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) 26)) (-3961 ((|#2| $) 28)) (-1601 (($ $) NIL)) (-1694 (((-766) $) 10)) (-1889 (((-639 $) $) 20)) (-3536 (((-112) $) NIL)) (-3045 (($ |#2| |#1|) 18)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1468 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 14)) (-1560 ((|#2| $) 15)) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 44) (($ |#2|) 27)) (-4358 (((-639 |#1|) $) 17)) (-3906 ((|#1| $ |#2|) 46)) (-2286 (($) 29 T CONST)) (-2516 (((-639 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 13)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#1| $) 32) (($ $ |#1|) 33) (($ |#1| |#2|) 34) (($ |#2| |#1|) 35)))
+((-4210 (((-639 (-293 (-947 (-168 |#1|)))) (-293 (-406 (-947 (-168 (-562))))) |#1|) 51) (((-639 (-293 (-947 (-168 |#1|)))) (-406 (-947 (-168 (-562)))) |#1|) 50) (((-639 (-639 (-293 (-947 (-168 |#1|))))) (-639 (-293 (-406 (-947 (-168 (-562)))))) |#1|) 47) (((-639 (-639 (-293 (-947 (-168 |#1|))))) (-639 (-406 (-947 (-168 (-562))))) |#1|) 41)) (-1333 (((-639 (-639 (-168 |#1|))) (-639 (-406 (-947 (-168 (-562))))) (-639 (-1168)) |#1|) 30) (((-639 (-168 |#1|)) (-406 (-947 (-168 (-562)))) |#1|) 18)))
+(((-377 |#1|) (-10 -7 (-15 -4210 ((-639 (-639 (-293 (-947 (-168 |#1|))))) (-639 (-406 (-947 (-168 (-562))))) |#1|)) (-15 -4210 ((-639 (-639 (-293 (-947 (-168 |#1|))))) (-639 (-293 (-406 (-947 (-168 (-562)))))) |#1|)) (-15 -4210 ((-639 (-293 (-947 (-168 |#1|)))) (-406 (-947 (-168 (-562)))) |#1|)) (-15 -4210 ((-639 (-293 (-947 (-168 |#1|)))) (-293 (-406 (-947 (-168 (-562))))) |#1|)) (-15 -1333 ((-639 (-168 |#1|)) (-406 (-947 (-168 (-562)))) |#1|)) (-15 -1333 ((-639 (-639 (-168 |#1|))) (-639 (-406 (-947 (-168 (-562))))) (-639 (-1168)) |#1|))) (-13 (-362) (-843))) (T -377))
+((-1333 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 (-406 (-947 (-168 (-562)))))) (-5 *4 (-639 (-1168))) (-5 *2 (-639 (-639 (-168 *5)))) (-5 *1 (-377 *5)) (-4 *5 (-13 (-362) (-843))))) (-1333 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 (-168 (-562))))) (-5 *2 (-639 (-168 *4))) (-5 *1 (-377 *4)) (-4 *4 (-13 (-362) (-843))))) (-4210 (*1 *2 *3 *4) (-12 (-5 *3 (-293 (-406 (-947 (-168 (-562)))))) (-5 *2 (-639 (-293 (-947 (-168 *4))))) (-5 *1 (-377 *4)) (-4 *4 (-13 (-362) (-843))))) (-4210 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 (-168 (-562))))) (-5 *2 (-639 (-293 (-947 (-168 *4))))) (-5 *1 (-377 *4)) (-4 *4 (-13 (-362) (-843))))) (-4210 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-293 (-406 (-947 (-168 (-562))))))) (-5 *2 (-639 (-639 (-293 (-947 (-168 *4)))))) (-5 *1 (-377 *4)) (-4 *4 (-13 (-362) (-843))))) (-4210 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-406 (-947 (-168 (-562)))))) (-5 *2 (-639 (-639 (-293 (-947 (-168 *4)))))) (-5 *1 (-377 *4)) (-4 *4 (-13 (-362) (-843))))))
+(-10 -7 (-15 -4210 ((-639 (-639 (-293 (-947 (-168 |#1|))))) (-639 (-406 (-947 (-168 (-562))))) |#1|)) (-15 -4210 ((-639 (-639 (-293 (-947 (-168 |#1|))))) (-639 (-293 (-406 (-947 (-168 (-562)))))) |#1|)) (-15 -4210 ((-639 (-293 (-947 (-168 |#1|)))) (-406 (-947 (-168 (-562)))) |#1|)) (-15 -4210 ((-639 (-293 (-947 (-168 |#1|)))) (-293 (-406 (-947 (-168 (-562))))) |#1|)) (-15 -1333 ((-639 (-168 |#1|)) (-406 (-947 (-168 (-562)))) |#1|)) (-15 -1333 ((-639 (-639 (-168 |#1|))) (-639 (-406 (-947 (-168 (-562))))) (-639 (-1168)) |#1|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 33)) (-2300 (((-562) $) 55)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-1302 (($ $) 110)) (-2987 (($ $) 82)) (-4098 (($ $) 71)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1644 (($ $) 44)) (-1436 (((-112) $ $) NIL)) (-4206 (($ $) 80)) (-4074 (($ $) 69)) (-1587 (((-562) $) 64)) (-3355 (($ $ (-562)) 62)) (-3013 (($ $) NIL)) (-4120 (($ $) NIL)) (-3329 (($) NIL T CONST)) (-3410 (($ $) 112)) (-4048 (((-3 (-562) "failed") $) 189) (((-3 (-406 (-562)) "failed") $) 185)) (-3960 (((-562) $) 187) (((-406 (-562)) $) 183)) (-1810 (($ $ $) NIL)) (-3695 (((-562) $ $) 102)) (-1694 (((-3 $ "failed") $) 114)) (-2310 (((-406 (-562)) $ (-766)) 190) (((-406 (-562)) $ (-766) (-766)) 182)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-3326 (((-916)) 73) (((-916) (-916)) 98 (|has| $ (-6 -4394)))) (-2696 (((-112) $) 106)) (-4100 (($) 40)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL)) (-1642 (((-1261) (-766)) 152)) (-1328 (((-1261)) 157) (((-1261) (-766)) 158)) (-2042 (((-1261)) 159) (((-1261) (-766)) 160)) (-2815 (((-1261)) 155) (((-1261) (-766)) 156)) (-1993 (((-562) $) 58)) (-4367 (((-112) $) 104)) (-1895 (($ $ (-562)) NIL)) (-2140 (($ $) 48)) (-4363 (($ $) NIL)) (-3855 (((-112) $) 35)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL) (($) NIL (-12 (-2234 (|has| $ (-6 -4386))) (-2234 (|has| $ (-6 -4394)))))) (-2993 (($ $ $) NIL) (($) 99 (-12 (-2234 (|has| $ (-6 -4386))) (-2234 (|has| $ (-6 -4394)))))) (-3946 (((-562) $) 17)) (-1474 (($) 87) (($ $) 92)) (-2982 (($) 91) (($ $) 93)) (-4366 (($ $) 83)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 116)) (-2898 (((-916) (-562)) 43 (|has| $ (-6 -4394)))) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2561 (($ $) 53)) (-3870 (($ $) 109)) (-4237 (($ (-562) (-562)) 107) (($ (-562) (-562) (-916)) 108)) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1300 (((-562) $) 19)) (-1701 (($) 94)) (-3430 (($ $) 79)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-2244 (((-916)) 100) (((-916) (-916)) 101 (|has| $ (-6 -4394)))) (-4029 (($ $ (-766)) NIL) (($ $) 115)) (-3719 (((-916) (-562)) 47 (|has| $ (-6 -4394)))) (-3022 (($ $) NIL)) (-4130 (($ $) NIL)) (-3000 (($ $) NIL)) (-4108 (($ $) NIL)) (-2977 (($ $) 81)) (-4087 (($ $) 70)) (-4208 (((-378) $) 175) (((-224) $) 177) (((-887 (-378)) $) NIL) (((-1150) $) 162) (((-535) $) 173) (($ (-224)) 181)) (-4053 (((-857) $) 164) (($ (-562)) 186) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-562)) 186) (($ (-406 (-562))) NIL) (((-224) $) 178)) (-1568 (((-766)) NIL)) (-3636 (($ $) 111)) (-3573 (((-916)) 54) (((-916) (-916)) 66 (|has| $ (-6 -4394)))) (-3240 (((-916)) 103)) (-3054 (($ $) 86)) (-4165 (($ $) 46) (($ $ $) 52)) (-3799 (((-112) $ $) NIL)) (-3033 (($ $) 84)) (-4139 (($ $) 37)) (-3077 (($ $) NIL)) (-4183 (($ $) NIL)) (-1567 (($ $) NIL)) (-4195 (($ $) NIL)) (-3065 (($ $) NIL)) (-4175 (($ $) NIL)) (-3040 (($ $) 85)) (-4151 (($ $) 49)) (-2757 (($ $) 51)) (-2285 (($) 34 T CONST)) (-2294 (($) 38 T CONST)) (-2332 (((-1150) $) 27) (((-1150) $ (-112)) 29) (((-1261) (-817) $) 30) (((-1261) (-817) $ (-112)) 31)) (-3113 (($ $ (-766)) NIL) (($ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 39)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 42)) (-1859 (($ $ $) 45) (($ $ (-562)) 41)) (-1847 (($ $) 36) (($ $ $) 50)) (-1836 (($ $ $) 61)) (** (($ $ (-916)) 67) (($ $ (-766)) NIL) (($ $ (-562)) 88) (($ $ (-406 (-562))) 125) (($ $ $) 117)) (* (($ (-916) $) 65) (($ (-766) $) NIL) (($ (-562) $) 68) (($ $ $) 60) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
+(((-378) (-13 (-403) (-232) (-610 (-1150)) (-823) (-609 (-224)) (-1192) (-610 (-535)) (-614 (-224)) (-10 -8 (-15 -1859 ($ $ (-562))) (-15 ** ($ $ $)) (-15 -2140 ($ $)) (-15 -3695 ((-562) $ $)) (-15 -3355 ($ $ (-562))) (-15 -2310 ((-406 (-562)) $ (-766))) (-15 -2310 ((-406 (-562)) $ (-766) (-766))) (-15 -1474 ($)) (-15 -2982 ($)) (-15 -1701 ($)) (-15 -4165 ($ $ $)) (-15 -1474 ($ $)) (-15 -2982 ($ $)) (-15 -2042 ((-1261))) (-15 -2042 ((-1261) (-766))) (-15 -2815 ((-1261))) (-15 -2815 ((-1261) (-766))) (-15 -1328 ((-1261))) (-15 -1328 ((-1261) (-766))) (-15 -1642 ((-1261) (-766))) (-6 -4394) (-6 -4386)))) (T -378))
+((** (*1 *1 *1 *1) (-5 *1 (-378))) (-1859 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-378)))) (-2140 (*1 *1 *1) (-5 *1 (-378))) (-3695 (*1 *2 *1 *1) (-12 (-5 *2 (-562)) (-5 *1 (-378)))) (-3355 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-378)))) (-2310 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-378)))) (-2310 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-378)))) (-1474 (*1 *1) (-5 *1 (-378))) (-2982 (*1 *1) (-5 *1 (-378))) (-1701 (*1 *1) (-5 *1 (-378))) (-4165 (*1 *1 *1 *1) (-5 *1 (-378))) (-1474 (*1 *1 *1) (-5 *1 (-378))) (-2982 (*1 *1 *1) (-5 *1 (-378))) (-2042 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-378)))) (-2042 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378)))) (-2815 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-378)))) (-2815 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378)))) (-1328 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-378)))) (-1328 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378)))) (-1642 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378)))))
+(-13 (-403) (-232) (-610 (-1150)) (-823) (-609 (-224)) (-1192) (-610 (-535)) (-614 (-224)) (-10 -8 (-15 -1859 ($ $ (-562))) (-15 ** ($ $ $)) (-15 -2140 ($ $)) (-15 -3695 ((-562) $ $)) (-15 -3355 ($ $ (-562))) (-15 -2310 ((-406 (-562)) $ (-766))) (-15 -2310 ((-406 (-562)) $ (-766) (-766))) (-15 -1474 ($)) (-15 -2982 ($)) (-15 -1701 ($)) (-15 -4165 ($ $ $)) (-15 -1474 ($ $)) (-15 -2982 ($ $)) (-15 -2042 ((-1261))) (-15 -2042 ((-1261) (-766))) (-15 -2815 ((-1261))) (-15 -2815 ((-1261) (-766))) (-15 -1328 ((-1261))) (-15 -1328 ((-1261) (-766))) (-15 -1642 ((-1261) (-766))) (-6 -4394) (-6 -4386)))
+((-3888 (((-639 (-293 (-947 |#1|))) (-293 (-406 (-947 (-562)))) |#1|) 46) (((-639 (-293 (-947 |#1|))) (-406 (-947 (-562))) |#1|) 45) (((-639 (-639 (-293 (-947 |#1|)))) (-639 (-293 (-406 (-947 (-562))))) |#1|) 42) (((-639 (-639 (-293 (-947 |#1|)))) (-639 (-406 (-947 (-562)))) |#1|) 36)) (-3732 (((-639 |#1|) (-406 (-947 (-562))) |#1|) 20) (((-639 (-639 |#1|)) (-639 (-406 (-947 (-562)))) (-639 (-1168)) |#1|) 30)))
+(((-379 |#1|) (-10 -7 (-15 -3888 ((-639 (-639 (-293 (-947 |#1|)))) (-639 (-406 (-947 (-562)))) |#1|)) (-15 -3888 ((-639 (-639 (-293 (-947 |#1|)))) (-639 (-293 (-406 (-947 (-562))))) |#1|)) (-15 -3888 ((-639 (-293 (-947 |#1|))) (-406 (-947 (-562))) |#1|)) (-15 -3888 ((-639 (-293 (-947 |#1|))) (-293 (-406 (-947 (-562)))) |#1|)) (-15 -3732 ((-639 (-639 |#1|)) (-639 (-406 (-947 (-562)))) (-639 (-1168)) |#1|)) (-15 -3732 ((-639 |#1|) (-406 (-947 (-562))) |#1|))) (-13 (-843) (-362))) (T -379))
+((-3732 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 (-562)))) (-5 *2 (-639 *4)) (-5 *1 (-379 *4)) (-4 *4 (-13 (-843) (-362))))) (-3732 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 (-406 (-947 (-562))))) (-5 *4 (-639 (-1168))) (-5 *2 (-639 (-639 *5))) (-5 *1 (-379 *5)) (-4 *5 (-13 (-843) (-362))))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-293 (-406 (-947 (-562))))) (-5 *2 (-639 (-293 (-947 *4)))) (-5 *1 (-379 *4)) (-4 *4 (-13 (-843) (-362))))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 (-562)))) (-5 *2 (-639 (-293 (-947 *4)))) (-5 *1 (-379 *4)) (-4 *4 (-13 (-843) (-362))))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-293 (-406 (-947 (-562)))))) (-5 *2 (-639 (-639 (-293 (-947 *4))))) (-5 *1 (-379 *4)) (-4 *4 (-13 (-843) (-362))))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-406 (-947 (-562))))) (-5 *2 (-639 (-639 (-293 (-947 *4))))) (-5 *1 (-379 *4)) (-4 *4 (-13 (-843) (-362))))))
+(-10 -7 (-15 -3888 ((-639 (-639 (-293 (-947 |#1|)))) (-639 (-406 (-947 (-562)))) |#1|)) (-15 -3888 ((-639 (-639 (-293 (-947 |#1|)))) (-639 (-293 (-406 (-947 (-562))))) |#1|)) (-15 -3888 ((-639 (-293 (-947 |#1|))) (-406 (-947 (-562))) |#1|)) (-15 -3888 ((-639 (-293 (-947 |#1|))) (-293 (-406 (-947 (-562)))) |#1|)) (-15 -3732 ((-639 (-639 |#1|)) (-639 (-406 (-947 (-562)))) (-639 (-1168)) |#1|)) (-15 -3732 ((-639 |#1|) (-406 (-947 (-562))) |#1|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) 26)) (-3960 ((|#2| $) 28)) (-1600 (($ $) NIL)) (-3627 (((-766) $) 10)) (-1869 (((-639 $) $) 20)) (-2833 (((-112) $) NIL)) (-3044 (($ |#2| |#1|) 18)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2395 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 14)) (-1560 ((|#2| $) 15)) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 44) (($ |#2|) 27)) (-3969 (((-639 |#1|) $) 17)) (-2266 ((|#1| $ |#2|) 46)) (-2285 (($) 29 T CONST)) (-2174 (((-639 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 13)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#1| $) 32) (($ $ |#1|) 33) (($ |#1| |#2|) 34) (($ |#2| |#1|) 35)))
(((-380 |#1| |#2|) (-13 (-381 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|)))) (-1044) (-845)) (T -380))
((* (*1 *1 *2 *3) (-12 (-5 *1 (-380 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-845)))))
(-13 (-381 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-4048 (((-3 |#2| "failed") $) 44)) (-3961 ((|#2| $) 45)) (-1601 (($ $) 30)) (-1694 (((-766) $) 34)) (-1889 (((-639 $) $) 35)) (-3536 (((-112) $) 38)) (-3045 (($ |#2| |#1|) 39)) (-4152 (($ (-1 |#1| |#1|) $) 40)) (-1468 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 31)) (-1560 ((|#2| $) 33)) (-1573 ((|#1| $) 32)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ |#2|) 43)) (-4358 (((-639 |#1|) $) 36)) (-3906 ((|#1| $ |#2|) 41)) (-2286 (($) 18 T CONST)) (-2516 (((-639 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 37)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26) (($ |#1| |#2|) 42)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-4048 (((-3 |#2| "failed") $) 44)) (-3960 ((|#2| $) 45)) (-1600 (($ $) 30)) (-3627 (((-766) $) 34)) (-1869 (((-639 $) $) 35)) (-2833 (((-112) $) 38)) (-3044 (($ |#2| |#1|) 39)) (-4152 (($ (-1 |#1| |#1|) $) 40)) (-2395 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 31)) (-1560 ((|#2| $) 33)) (-1573 ((|#1| $) 32)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ |#2|) 43)) (-3969 (((-639 |#1|) $) 36)) (-2266 ((|#1| $ |#2|) 41)) (-2285 (($) 18 T CONST)) (-2174 (((-639 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 37)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26) (($ |#1| |#2|) 42)))
(((-381 |#1| |#2|) (-139) (-1044) (-1092)) (T -381))
-((* (*1 *1 *2 *3) (-12 (-4 *1 (-381 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-1092)))) (-3906 (*1 *2 *1 *3) (-12 (-4 *1 (-381 *2 *3)) (-4 *3 (-1092)) (-4 *2 (-1044)))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092)))) (-3045 (*1 *1 *2 *3) (-12 (-4 *1 (-381 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1092)))) (-3536 (*1 *2 *1) (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-112)))) (-2516 (*1 *2 *1) (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-639 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-4358 (*1 *2 *1) (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-639 *3)))) (-1889 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-639 *1)) (-4 *1 (-381 *3 *4)))) (-1694 (*1 *2 *1) (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-766)))) (-1560 (*1 *2 *1) (-12 (-4 *1 (-381 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1092)))) (-1573 (*1 *2 *1) (-12 (-4 *1 (-381 *2 *3)) (-4 *3 (-1092)) (-4 *2 (-1044)))) (-1468 (*1 *2 *1) (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-1601 (*1 *1 *1) (-12 (-4 *1 (-381 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-1092)))))
-(-13 (-111 |t#1| |t#1|) (-1033 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -3906 (|t#1| $ |t#2|)) (-15 -4152 ($ (-1 |t#1| |t#1|) $)) (-15 -3045 ($ |t#2| |t#1|)) (-15 -3536 ((-112) $)) (-15 -2516 ((-639 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -4358 ((-639 |t#1|) $)) (-15 -1889 ((-639 $) $)) (-15 -1694 ((-766) $)) (-15 -1560 (|t#2| $)) (-15 -1573 (|t#1| $)) (-15 -1468 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -1601 ($ $)) (IF (|has| |t#1| (-171)) (-6 (-712 |t#1|)) |%noBranch|)))
+((* (*1 *1 *2 *3) (-12 (-4 *1 (-381 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-1092)))) (-2266 (*1 *2 *1 *3) (-12 (-4 *1 (-381 *2 *3)) (-4 *3 (-1092)) (-4 *2 (-1044)))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092)))) (-3044 (*1 *1 *2 *3) (-12 (-4 *1 (-381 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1092)))) (-2833 (*1 *2 *1) (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-112)))) (-2174 (*1 *2 *1) (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-639 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-3969 (*1 *2 *1) (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-639 *3)))) (-1869 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-639 *1)) (-4 *1 (-381 *3 *4)))) (-3627 (*1 *2 *1) (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-766)))) (-1560 (*1 *2 *1) (-12 (-4 *1 (-381 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1092)))) (-1573 (*1 *2 *1) (-12 (-4 *1 (-381 *2 *3)) (-4 *3 (-1092)) (-4 *2 (-1044)))) (-2395 (*1 *2 *1) (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-1600 (*1 *1 *1) (-12 (-4 *1 (-381 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-1092)))))
+(-13 (-111 |t#1| |t#1|) (-1033 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -2266 (|t#1| $ |t#2|)) (-15 -4152 ($ (-1 |t#1| |t#1|) $)) (-15 -3044 ($ |t#2| |t#1|)) (-15 -2833 ((-112) $)) (-15 -2174 ((-639 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -3969 ((-639 |t#1|) $)) (-15 -1869 ((-639 $) $)) (-15 -3627 ((-766) $)) (-15 -1560 (|t#2| $)) (-15 -1573 (|t#1| $)) (-15 -2395 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -1600 ($ $)) (IF (|has| |t#1| (-171)) (-6 (-712 |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-612 |#2|) . T) ((-609 (-857)) . T) ((-642 |#1|) . T) ((-712 |#1|) |has| |#1| (-171)) ((-1033 |#2|) . T) ((-1050 |#1|) . T) ((-1092) . T))
-((-3219 (((-1261) $) 7)) (-4054 (((-857) $) 8) (($ (-683 (-693))) 14) (($ (-639 (-329))) 13) (($ (-329)) 12) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 11)))
+((-3218 (((-1261) $) 7)) (-4053 (((-857) $) 8) (($ (-683 (-693))) 14) (($ (-639 (-329))) 13) (($ (-329)) 12) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 11)))
(((-382) (-139)) (T -382))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-683 (-693))) (-4 *1 (-382)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-4 *1 (-382)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-329)) (-4 *1 (-382)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) (-4 *1 (-382)))))
-(-13 (-394) (-10 -8 (-15 -4054 ($ (-683 (-693)))) (-15 -4054 ($ (-639 (-329)))) (-15 -4054 ($ (-329))) (-15 -4054 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))))))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-683 (-693))) (-4 *1 (-382)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-4 *1 (-382)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-329)) (-4 *1 (-382)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) (-4 *1 (-382)))))
+(-13 (-394) (-10 -8 (-15 -4053 ($ (-683 (-693)))) (-15 -4053 ($ (-639 (-329)))) (-15 -4053 ($ (-329))) (-15 -4053 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))))))
(((-609 (-857)) . T) ((-394) . T) ((-1207) . T))
-((-4048 (((-3 $ "failed") (-683 (-315 (-378)))) 21) (((-3 $ "failed") (-683 (-315 (-562)))) 19) (((-3 $ "failed") (-683 (-947 (-378)))) 17) (((-3 $ "failed") (-683 (-947 (-562)))) 15) (((-3 $ "failed") (-683 (-406 (-947 (-378))))) 13) (((-3 $ "failed") (-683 (-406 (-947 (-562))))) 11)) (-3961 (($ (-683 (-315 (-378)))) 22) (($ (-683 (-315 (-562)))) 20) (($ (-683 (-947 (-378)))) 18) (($ (-683 (-947 (-562)))) 16) (($ (-683 (-406 (-947 (-378))))) 14) (($ (-683 (-406 (-947 (-562))))) 12)) (-3219 (((-1261) $) 7)) (-4054 (((-857) $) 8) (($ (-639 (-329))) 25) (($ (-329)) 24) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 23)))
+((-4048 (((-3 $ "failed") (-683 (-315 (-378)))) 21) (((-3 $ "failed") (-683 (-315 (-562)))) 19) (((-3 $ "failed") (-683 (-947 (-378)))) 17) (((-3 $ "failed") (-683 (-947 (-562)))) 15) (((-3 $ "failed") (-683 (-406 (-947 (-378))))) 13) (((-3 $ "failed") (-683 (-406 (-947 (-562))))) 11)) (-3960 (($ (-683 (-315 (-378)))) 22) (($ (-683 (-315 (-562)))) 20) (($ (-683 (-947 (-378)))) 18) (($ (-683 (-947 (-562)))) 16) (($ (-683 (-406 (-947 (-378))))) 14) (($ (-683 (-406 (-947 (-562))))) 12)) (-3218 (((-1261) $) 7)) (-4053 (((-857) $) 8) (($ (-639 (-329))) 25) (($ (-329)) 24) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 23)))
(((-383) (-139)) (T -383))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-4 *1 (-383)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-329)) (-4 *1 (-383)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) (-4 *1 (-383)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-683 (-315 (-378)))) (-4 *1 (-383)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-683 (-315 (-378)))) (-4 *1 (-383)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-683 (-315 (-562)))) (-4 *1 (-383)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-683 (-315 (-562)))) (-4 *1 (-383)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-683 (-947 (-378)))) (-4 *1 (-383)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-683 (-947 (-378)))) (-4 *1 (-383)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-683 (-947 (-562)))) (-4 *1 (-383)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-683 (-947 (-562)))) (-4 *1 (-383)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-683 (-406 (-947 (-378))))) (-4 *1 (-383)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-683 (-406 (-947 (-378))))) (-4 *1 (-383)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-683 (-406 (-947 (-562))))) (-4 *1 (-383)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-683 (-406 (-947 (-562))))) (-4 *1 (-383)))))
-(-13 (-394) (-10 -8 (-15 -4054 ($ (-639 (-329)))) (-15 -4054 ($ (-329))) (-15 -4054 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329)))))) (-15 -3961 ($ (-683 (-315 (-378))))) (-15 -4048 ((-3 $ "failed") (-683 (-315 (-378))))) (-15 -3961 ($ (-683 (-315 (-562))))) (-15 -4048 ((-3 $ "failed") (-683 (-315 (-562))))) (-15 -3961 ($ (-683 (-947 (-378))))) (-15 -4048 ((-3 $ "failed") (-683 (-947 (-378))))) (-15 -3961 ($ (-683 (-947 (-562))))) (-15 -4048 ((-3 $ "failed") (-683 (-947 (-562))))) (-15 -3961 ($ (-683 (-406 (-947 (-378)))))) (-15 -4048 ((-3 $ "failed") (-683 (-406 (-947 (-378)))))) (-15 -3961 ($ (-683 (-406 (-947 (-562)))))) (-15 -4048 ((-3 $ "failed") (-683 (-406 (-947 (-562))))))))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-4 *1 (-383)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-329)) (-4 *1 (-383)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) (-4 *1 (-383)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-683 (-315 (-378)))) (-4 *1 (-383)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-683 (-315 (-378)))) (-4 *1 (-383)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-683 (-315 (-562)))) (-4 *1 (-383)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-683 (-315 (-562)))) (-4 *1 (-383)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-683 (-947 (-378)))) (-4 *1 (-383)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-683 (-947 (-378)))) (-4 *1 (-383)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-683 (-947 (-562)))) (-4 *1 (-383)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-683 (-947 (-562)))) (-4 *1 (-383)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-683 (-406 (-947 (-378))))) (-4 *1 (-383)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-683 (-406 (-947 (-378))))) (-4 *1 (-383)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-683 (-406 (-947 (-562))))) (-4 *1 (-383)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-683 (-406 (-947 (-562))))) (-4 *1 (-383)))))
+(-13 (-394) (-10 -8 (-15 -4053 ($ (-639 (-329)))) (-15 -4053 ($ (-329))) (-15 -4053 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329)))))) (-15 -3960 ($ (-683 (-315 (-378))))) (-15 -4048 ((-3 $ "failed") (-683 (-315 (-378))))) (-15 -3960 ($ (-683 (-315 (-562))))) (-15 -4048 ((-3 $ "failed") (-683 (-315 (-562))))) (-15 -3960 ($ (-683 (-947 (-378))))) (-15 -4048 ((-3 $ "failed") (-683 (-947 (-378))))) (-15 -3960 ($ (-683 (-947 (-562))))) (-15 -4048 ((-3 $ "failed") (-683 (-947 (-562))))) (-15 -3960 ($ (-683 (-406 (-947 (-378)))))) (-15 -4048 ((-3 $ "failed") (-683 (-406 (-947 (-378)))))) (-15 -3960 ($ (-683 (-406 (-947 (-562)))))) (-15 -4048 ((-3 $ "failed") (-683 (-406 (-947 (-562))))))))
(((-609 (-857)) . T) ((-394) . T) ((-1207) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1601 (($ $) NIL)) (-1378 (($ |#1| |#2|) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2500 ((|#2| $) NIL)) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 28)) (-2286 (($) 12 T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#1| $) 16) (($ $ |#1|) 19)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1600 (($ $) NIL)) (-1377 (($ |#1| |#2|) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2006 ((|#2| $) NIL)) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 28)) (-2285 (($) 12 T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#1| $) 16) (($ $ |#1|) 19)))
(((-384 |#1| |#2|) (-13 (-111 |#1| |#1|) (-508 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-171)) (-6 (-712 |#1|)) |%noBranch|))) (-1044) (-845)) (T -384))
NIL
(-13 (-111 |#1| |#1|) (-508 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-171)) (-6 (-712 |#1|)) |%noBranch|)))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766) $) 58)) (-1800 (($) NIL T CONST)) (-2415 (((-3 $ "failed") $ $) 60)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3961 ((|#1| $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1605 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 52)) (-1957 (((-112) $) 15)) (-3126 ((|#1| $ (-562)) NIL)) (-1870 (((-766) $ (-562)) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1304 (($ (-1 |#1| |#1|) $) 38)) (-2866 (($ (-1 (-766) (-766)) $) 35)) (-2221 (((-3 $ "failed") $ $) 49)) (-2913 (((-1150) $) NIL)) (-3423 (($ $ $) 26)) (-1989 (($ $ $) 24)) (-1709 (((-1112) $) NIL)) (-1510 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $) 32)) (-2080 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 55)) (-4054 (((-857) $) 22) (($ |#1|) NIL)) (-2294 (($) 9 T CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) 41)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) 62 (|has| |#1| (-845)))) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ |#1| (-766)) 40)) (* (($ $ $) 47) (($ |#1| $) 30) (($ $ |#1|) 28)))
-(((-385 |#1|) (-13 (-721) (-1033 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-766))) (-15 -1989 ($ $ $)) (-15 -3423 ($ $ $)) (-15 -2221 ((-3 $ "failed") $ $)) (-15 -2415 ((-3 $ "failed") $ $)) (-15 -2080 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1605 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1382 ((-766) $)) (-15 -1510 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $)) (-15 -1870 ((-766) $ (-562))) (-15 -3126 (|#1| $ (-562))) (-15 -2866 ($ (-1 (-766) (-766)) $)) (-15 -1304 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-845)) (-6 (-845)) |%noBranch|))) (-1092)) (T -385))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-766)) (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (-1989 (*1 *1 *1 *1) (-12 (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (-3423 (*1 *1 *1 *1) (-12 (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (-2221 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (-2415 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (-2080 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-385 *3)) (|:| |rm| (-385 *3)))) (-5 *1 (-385 *3)) (-4 *3 (-1092)))) (-1605 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-385 *3)) (|:| |mm| (-385 *3)) (|:| |rm| (-385 *3)))) (-5 *1 (-385 *3)) (-4 *3 (-1092)))) (-1382 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-385 *3)) (-4 *3 (-1092)))) (-1510 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 (-766))))) (-5 *1 (-385 *3)) (-4 *3 (-1092)))) (-1870 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-766)) (-5 *1 (-385 *4)) (-4 *4 (-1092)))) (-3126 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (-2866 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-766) (-766))) (-5 *1 (-385 *3)) (-4 *3 (-1092)))) (-1304 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-385 *3)))))
-(-13 (-721) (-1033 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-766))) (-15 -1989 ($ $ $)) (-15 -3423 ($ $ $)) (-15 -2221 ((-3 $ "failed") $ $)) (-15 -2415 ((-3 $ "failed") $ $)) (-15 -2080 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1605 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1382 ((-766) $)) (-15 -1510 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $)) (-15 -1870 ((-766) $ (-562))) (-15 -3126 (|#1| $ (-562))) (-15 -2866 ($ (-1 (-766) (-766)) $)) (-15 -1304 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-845)) (-6 (-845)) |%noBranch|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 48)) (-3961 (((-562) $) 49)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-1551 (($ $ $) 55)) (-2993 (($ $ $) 54)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ $) 43)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-562)) 47)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 52)) (-1772 (((-112) $ $) 51)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 53)) (-1759 (((-112) $ $) 50)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766) $) 58)) (-3329 (($) NIL T CONST)) (-2403 (((-3 $ "failed") $ $) 60)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3960 ((|#1| $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-4069 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 52)) (-4367 (((-112) $) 15)) (-3111 ((|#1| $ (-562)) NIL)) (-1646 (((-766) $ (-562)) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2491 (($ (-1 |#1| |#1|) $) 38)) (-1369 (($ (-1 (-766) (-766)) $) 35)) (-2303 (((-3 $ "failed") $ $) 49)) (-3696 (((-1150) $) NIL)) (-2938 (($ $ $) 26)) (-1616 (($ $ $) 24)) (-1709 (((-1112) $) NIL)) (-2656 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $) 32)) (-3204 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 55)) (-4053 (((-857) $) 22) (($ |#1|) NIL)) (-2294 (($) 9 T CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) 41)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) 62 (|has| |#1| (-845)))) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ |#1| (-766)) 40)) (* (($ $ $) 47) (($ |#1| $) 30) (($ $ |#1|) 28)))
+(((-385 |#1|) (-13 (-721) (-1033 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-766))) (-15 -1616 ($ $ $)) (-15 -2938 ($ $ $)) (-15 -2303 ((-3 $ "failed") $ $)) (-15 -2403 ((-3 $ "failed") $ $)) (-15 -3204 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -4069 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1382 ((-766) $)) (-15 -2656 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $)) (-15 -1646 ((-766) $ (-562))) (-15 -3111 (|#1| $ (-562))) (-15 -1369 ($ (-1 (-766) (-766)) $)) (-15 -2491 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-845)) (-6 (-845)) |%noBranch|))) (-1092)) (T -385))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-766)) (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (-1616 (*1 *1 *1 *1) (-12 (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (-2938 (*1 *1 *1 *1) (-12 (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (-2303 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (-2403 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (-3204 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-385 *3)) (|:| |rm| (-385 *3)))) (-5 *1 (-385 *3)) (-4 *3 (-1092)))) (-4069 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-385 *3)) (|:| |mm| (-385 *3)) (|:| |rm| (-385 *3)))) (-5 *1 (-385 *3)) (-4 *3 (-1092)))) (-1382 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-385 *3)) (-4 *3 (-1092)))) (-2656 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 (-766))))) (-5 *1 (-385 *3)) (-4 *3 (-1092)))) (-1646 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-766)) (-5 *1 (-385 *4)) (-4 *4 (-1092)))) (-3111 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-385 *2)) (-4 *2 (-1092)))) (-1369 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-766) (-766))) (-5 *1 (-385 *3)) (-4 *3 (-1092)))) (-2491 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-385 *3)))))
+(-13 (-721) (-1033 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-766))) (-15 -1616 ($ $ $)) (-15 -2938 ($ $ $)) (-15 -2303 ((-3 $ "failed") $ $)) (-15 -2403 ((-3 $ "failed") $ $)) (-15 -3204 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -4069 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1382 ((-766) $)) (-15 -2656 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $)) (-15 -1646 ((-766) $ (-562))) (-15 -3111 (|#1| $ (-562))) (-15 -1369 ($ (-1 (-766) (-766)) $)) (-15 -2491 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-845)) (-6 (-845)) |%noBranch|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 48)) (-3960 (((-562) $) 49)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-1551 (($ $ $) 55)) (-2993 (($ $ $) 54)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ $) 43)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-562)) 47)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 52)) (-1771 (((-112) $ $) 51)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 53)) (-1761 (((-112) $ $) 50)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-386) (-139)) (T -386))
NIL
(-13 (-554) (-845) (-1033 (-562)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-289) . T) ((-554) . T) ((-642 $) . T) ((-712 $) . T) ((-721) . T) ((-845) . T) ((-1033 (-562)) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-3094 (((-112) $) 20)) (-1933 (((-112) $) 19)) (-1458 (($ (-1150) (-1150) (-1150)) 21)) (-3254 (((-1150) $) 16)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2336 (($ (-1150) (-1150) (-1150)) 14)) (-2817 (((-1150) $) 17)) (-3732 (((-112) $) 18)) (-2684 (((-1150) $) 15)) (-4054 (((-857) $) 12) (($ (-1150)) 13) (((-1150) $) 9)) (-1731 (((-112) $ $) 7)))
+((-4041 (((-112) $ $) NIL)) (-4062 (((-112) $) 20)) (-4140 (((-112) $) 19)) (-1458 (($ (-1150) (-1150) (-1150)) 21)) (-3253 (((-1150) $) 16)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2335 (($ (-1150) (-1150) (-1150)) 14)) (-2181 (((-1150) $) 17)) (-2947 (((-112) $) 18)) (-2683 (((-1150) $) 15)) (-4053 (((-857) $) 12) (($ (-1150)) 13) (((-1150) $) 9)) (-1733 (((-112) $ $) 7)))
(((-387) (-388)) (T -387))
NIL
(-388)
-((-4041 (((-112) $ $) 7)) (-3094 (((-112) $) 16)) (-1933 (((-112) $) 17)) (-1458 (($ (-1150) (-1150) (-1150)) 15)) (-3254 (((-1150) $) 20)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2336 (($ (-1150) (-1150) (-1150)) 22)) (-2817 (((-1150) $) 19)) (-3732 (((-112) $) 18)) (-2684 (((-1150) $) 21)) (-4054 (((-857) $) 11) (($ (-1150)) 24) (((-1150) $) 23)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) 7)) (-4062 (((-112) $) 16)) (-4140 (((-112) $) 17)) (-1458 (($ (-1150) (-1150) (-1150)) 15)) (-3253 (((-1150) $) 20)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2335 (($ (-1150) (-1150) (-1150)) 22)) (-2181 (((-1150) $) 19)) (-2947 (((-112) $) 18)) (-2683 (((-1150) $) 21)) (-4053 (((-857) $) 11) (($ (-1150)) 24) (((-1150) $) 23)) (-1733 (((-112) $ $) 6)))
(((-388) (-139)) (T -388))
-((-2336 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1150)) (-4 *1 (-388)))) (-2684 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1150)))) (-3254 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1150)))) (-2817 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1150)))) (-3732 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-112)))) (-1933 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-112)))) (-3094 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-112)))) (-1458 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1150)) (-4 *1 (-388)))))
-(-13 (-1092) (-489 (-1150)) (-10 -8 (-15 -2336 ($ (-1150) (-1150) (-1150))) (-15 -2684 ((-1150) $)) (-15 -3254 ((-1150) $)) (-15 -2817 ((-1150) $)) (-15 -3732 ((-112) $)) (-15 -1933 ((-112) $)) (-15 -3094 ((-112) $)) (-15 -1458 ($ (-1150) (-1150) (-1150)))))
+((-2335 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1150)) (-4 *1 (-388)))) (-2683 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1150)))) (-3253 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1150)))) (-2181 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1150)))) (-2947 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-112)))) (-4140 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-112)))) (-4062 (*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-112)))) (-1458 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1150)) (-4 *1 (-388)))))
+(-13 (-1092) (-489 (-1150)) (-10 -8 (-15 -2335 ($ (-1150) (-1150) (-1150))) (-15 -2683 ((-1150) $)) (-15 -3253 ((-1150) $)) (-15 -2181 ((-1150) $)) (-15 -2947 ((-112) $)) (-15 -4140 ((-112) $)) (-15 -4062 ((-112) $)) (-15 -1458 ($ (-1150) (-1150) (-1150)))))
(((-102) . T) ((-612 #0=(-1150)) . T) ((-609 (-857)) . T) ((-609 #0#) . T) ((-489 #0#) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1440 (((-857) $) 50)) (-1800 (($) NIL T CONST)) (-1379 (($ $ (-916)) NIL)) (-3650 (($ $ (-916)) NIL)) (-2991 (($ $ (-916)) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3148 (($ (-766)) 26)) (-3627 (((-766)) 17)) (-1705 (((-857) $) 52)) (-1911 (($ $ $) NIL)) (-4054 (((-857) $) NIL)) (-2436 (($ $ $ $) NIL)) (-3626 (($ $ $) NIL)) (-2286 (($) 20 T CONST)) (-1731 (((-112) $ $) 28)) (-1848 (($ $) 34) (($ $ $) 36)) (-1835 (($ $ $) 37)) (** (($ $ (-916)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 38) (($ $ |#3|) NIL) (($ |#3| $) 33)))
-(((-389 |#1| |#2| |#3|) (-13 (-739 |#3|) (-10 -8 (-15 -3627 ((-766))) (-15 -1705 ((-857) $)) (-15 -1440 ((-857) $)) (-15 -3148 ($ (-766))))) (-766) (-766) (-171)) (T -389))
-((-3627 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-171)))) (-1705 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 (-766)) (-14 *4 (-766)) (-4 *5 (-171)))) (-1440 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 (-766)) (-14 *4 (-766)) (-4 *5 (-171)))) (-3148 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-171)))))
-(-13 (-739 |#3|) (-10 -8 (-15 -3627 ((-766))) (-15 -1705 ((-857) $)) (-15 -1440 ((-857) $)) (-15 -3148 ($ (-766)))))
-((-2995 (((-1150)) 10)) (-1854 (((-1139 (-1150))) 28)) (-3177 (((-1261) (-1150)) 25) (((-1261) (-387)) 24)) (-3196 (((-1261)) 26)) (-2559 (((-1139 (-1150))) 27)))
-(((-390) (-10 -7 (-15 -2559 ((-1139 (-1150)))) (-15 -1854 ((-1139 (-1150)))) (-15 -3196 ((-1261))) (-15 -3177 ((-1261) (-387))) (-15 -3177 ((-1261) (-1150))) (-15 -2995 ((-1150))))) (T -390))
-((-2995 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-390)))) (-3177 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-390)))) (-3177 (*1 *2 *3) (-12 (-5 *3 (-387)) (-5 *2 (-1261)) (-5 *1 (-390)))) (-3196 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-390)))) (-1854 (*1 *2) (-12 (-5 *2 (-1139 (-1150))) (-5 *1 (-390)))) (-2559 (*1 *2) (-12 (-5 *2 (-1139 (-1150))) (-5 *1 (-390)))))
-(-10 -7 (-15 -2559 ((-1139 (-1150)))) (-15 -1854 ((-1139 (-1150)))) (-15 -3196 ((-1261))) (-15 -3177 ((-1261) (-387))) (-15 -3177 ((-1261) (-1150))) (-15 -2995 ((-1150))))
-((-1900 (((-766) (-335 |#1| |#2| |#3| |#4|)) 16)))
-(((-391 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1900 ((-766) (-335 |#1| |#2| |#3| |#4|)))) (-13 (-367) (-362)) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|)) (T -391))
-((-1900 (*1 *2 *3) (-12 (-5 *3 (-335 *4 *5 *6 *7)) (-4 *4 (-13 (-367) (-362))) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-4 *7 (-341 *4 *5 *6)) (-5 *2 (-766)) (-5 *1 (-391 *4 *5 *6 *7)))))
-(-10 -7 (-15 -1900 ((-766) (-335 |#1| |#2| |#3| |#4|))))
-((-4054 (((-393) |#1|) 11)))
-(((-392 |#1|) (-10 -7 (-15 -4054 ((-393) |#1|))) (-1092)) (T -392))
-((-4054 (*1 *2 *3) (-12 (-5 *2 (-393)) (-5 *1 (-392 *3)) (-4 *3 (-1092)))))
-(-10 -7 (-15 -4054 ((-393) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-3491 (((-639 (-1150)) $ (-639 (-1150))) 38)) (-1692 (((-639 (-1150)) $ (-639 (-1150))) 39)) (-1916 (((-639 (-1150)) $ (-639 (-1150))) 40)) (-3515 (((-639 (-1150)) $) 35)) (-1458 (($) 23)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2656 (((-639 (-1150)) $) 36)) (-3108 (((-639 (-1150)) $) 37)) (-1479 (((-1261) $ (-562)) 33) (((-1261) $) 34)) (-4208 (($ (-857) (-562)) 30)) (-4054 (((-857) $) 42) (($ (-857)) 25)) (-1731 (((-112) $ $) NIL)))
-(((-393) (-13 (-1092) (-612 (-857)) (-10 -8 (-15 -4208 ($ (-857) (-562))) (-15 -1479 ((-1261) $ (-562))) (-15 -1479 ((-1261) $)) (-15 -3108 ((-639 (-1150)) $)) (-15 -2656 ((-639 (-1150)) $)) (-15 -1458 ($)) (-15 -3515 ((-639 (-1150)) $)) (-15 -1916 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -1692 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -3491 ((-639 (-1150)) $ (-639 (-1150))))))) (T -393))
-((-4208 (*1 *1 *2 *3) (-12 (-5 *2 (-857)) (-5 *3 (-562)) (-5 *1 (-393)))) (-1479 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-393)))) (-1479 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-393)))) (-3108 (*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))) (-2656 (*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))) (-1458 (*1 *1) (-5 *1 (-393))) (-3515 (*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))) (-1916 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))) (-1692 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))) (-3491 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))))
-(-13 (-1092) (-612 (-857)) (-10 -8 (-15 -4208 ($ (-857) (-562))) (-15 -1479 ((-1261) $ (-562))) (-15 -1479 ((-1261) $)) (-15 -3108 ((-639 (-1150)) $)) (-15 -2656 ((-639 (-1150)) $)) (-15 -1458 ($)) (-15 -3515 ((-639 (-1150)) $)) (-15 -1916 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -1692 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -3491 ((-639 (-1150)) $ (-639 (-1150))))))
-((-3219 (((-1261) $) 7)) (-4054 (((-857) $) 8)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-2072 (((-857) $) 50)) (-3329 (($) NIL T CONST)) (-2127 (($ $ (-916)) NIL)) (-1492 (($ $ (-916)) NIL)) (-3235 (($ $ (-916)) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3147 (($ (-766)) 26)) (-4340 (((-766)) 17)) (-3738 (((-857) $) 52)) (-2114 (($ $ $) NIL)) (-4053 (((-857) $) NIL)) (-2584 (($ $ $ $) NIL)) (-4324 (($ $ $) NIL)) (-2285 (($) 20 T CONST)) (-1733 (((-112) $ $) 28)) (-1847 (($ $) 34) (($ $ $) 36)) (-1836 (($ $ $) 37)) (** (($ $ (-916)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 38) (($ $ |#3|) NIL) (($ |#3| $) 33)))
+(((-389 |#1| |#2| |#3|) (-13 (-739 |#3|) (-10 -8 (-15 -4340 ((-766))) (-15 -3738 ((-857) $)) (-15 -2072 ((-857) $)) (-15 -3147 ($ (-766))))) (-766) (-766) (-171)) (T -389))
+((-4340 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-171)))) (-3738 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 (-766)) (-14 *4 (-766)) (-4 *5 (-171)))) (-2072 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 (-766)) (-14 *4 (-766)) (-4 *5 (-171)))) (-3147 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-171)))))
+(-13 (-739 |#3|) (-10 -8 (-15 -4340 ((-766))) (-15 -3738 ((-857) $)) (-15 -2072 ((-857) $)) (-15 -3147 ($ (-766)))))
+((-3268 (((-1150)) 10)) (-2704 (((-1139 (-1150))) 28)) (-3176 (((-1261) (-1150)) 25) (((-1261) (-387)) 24)) (-3195 (((-1261)) 26)) (-1319 (((-1139 (-1150))) 27)))
+(((-390) (-10 -7 (-15 -1319 ((-1139 (-1150)))) (-15 -2704 ((-1139 (-1150)))) (-15 -3195 ((-1261))) (-15 -3176 ((-1261) (-387))) (-15 -3176 ((-1261) (-1150))) (-15 -3268 ((-1150))))) (T -390))
+((-3268 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-390)))) (-3176 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-390)))) (-3176 (*1 *2 *3) (-12 (-5 *3 (-387)) (-5 *2 (-1261)) (-5 *1 (-390)))) (-3195 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-390)))) (-2704 (*1 *2) (-12 (-5 *2 (-1139 (-1150))) (-5 *1 (-390)))) (-1319 (*1 *2) (-12 (-5 *2 (-1139 (-1150))) (-5 *1 (-390)))))
+(-10 -7 (-15 -1319 ((-1139 (-1150)))) (-15 -2704 ((-1139 (-1150)))) (-15 -3195 ((-1261))) (-15 -3176 ((-1261) (-387))) (-15 -3176 ((-1261) (-1150))) (-15 -3268 ((-1150))))
+((-1993 (((-766) (-335 |#1| |#2| |#3| |#4|)) 16)))
+(((-391 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1993 ((-766) (-335 |#1| |#2| |#3| |#4|)))) (-13 (-367) (-362)) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|)) (T -391))
+((-1993 (*1 *2 *3) (-12 (-5 *3 (-335 *4 *5 *6 *7)) (-4 *4 (-13 (-367) (-362))) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-4 *7 (-341 *4 *5 *6)) (-5 *2 (-766)) (-5 *1 (-391 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1993 ((-766) (-335 |#1| |#2| |#3| |#4|))))
+((-4053 (((-393) |#1|) 11)))
+(((-392 |#1|) (-10 -7 (-15 -4053 ((-393) |#1|))) (-1092)) (T -392))
+((-4053 (*1 *2 *3) (-12 (-5 *2 (-393)) (-5 *1 (-392 *3)) (-4 *3 (-1092)))))
+(-10 -7 (-15 -4053 ((-393) |#1|)))
+((-4041 (((-112) $ $) NIL)) (-2442 (((-639 (-1150)) $ (-639 (-1150))) 38)) (-3603 (((-639 (-1150)) $ (-639 (-1150))) 39)) (-2153 (((-639 (-1150)) $ (-639 (-1150))) 40)) (-2653 (((-639 (-1150)) $) 35)) (-1458 (($) 23)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2655 (((-639 (-1150)) $) 36)) (-2945 (((-639 (-1150)) $) 37)) (-1479 (((-1261) $ (-562)) 33) (((-1261) $) 34)) (-4208 (($ (-857) (-562)) 30)) (-4053 (((-857) $) 42) (($ (-857)) 25)) (-1733 (((-112) $ $) NIL)))
+(((-393) (-13 (-1092) (-612 (-857)) (-10 -8 (-15 -4208 ($ (-857) (-562))) (-15 -1479 ((-1261) $ (-562))) (-15 -1479 ((-1261) $)) (-15 -2945 ((-639 (-1150)) $)) (-15 -2655 ((-639 (-1150)) $)) (-15 -1458 ($)) (-15 -2653 ((-639 (-1150)) $)) (-15 -2153 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -3603 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -2442 ((-639 (-1150)) $ (-639 (-1150))))))) (T -393))
+((-4208 (*1 *1 *2 *3) (-12 (-5 *2 (-857)) (-5 *3 (-562)) (-5 *1 (-393)))) (-1479 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-393)))) (-1479 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-393)))) (-2945 (*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))) (-2655 (*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))) (-1458 (*1 *1) (-5 *1 (-393))) (-2653 (*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))) (-2153 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))) (-3603 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))) (-2442 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))))
+(-13 (-1092) (-612 (-857)) (-10 -8 (-15 -4208 ($ (-857) (-562))) (-15 -1479 ((-1261) $ (-562))) (-15 -1479 ((-1261) $)) (-15 -2945 ((-639 (-1150)) $)) (-15 -2655 ((-639 (-1150)) $)) (-15 -1458 ($)) (-15 -2653 ((-639 (-1150)) $)) (-15 -2153 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -3603 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -2442 ((-639 (-1150)) $ (-639 (-1150))))))
+((-3218 (((-1261) $) 7)) (-4053 (((-857) $) 8)))
(((-394) (-139)) (T -394))
-((-3219 (*1 *2 *1) (-12 (-4 *1 (-394)) (-5 *2 (-1261)))))
-(-13 (-1207) (-609 (-857)) (-10 -8 (-15 -3219 ((-1261) $))))
+((-3218 (*1 *2 *1) (-12 (-4 *1 (-394)) (-5 *2 (-1261)))))
+(-13 (-1207) (-609 (-857)) (-10 -8 (-15 -3218 ((-1261) $))))
(((-609 (-857)) . T) ((-1207) . T))
-((-4048 (((-3 $ "failed") (-315 (-378))) 21) (((-3 $ "failed") (-315 (-562))) 19) (((-3 $ "failed") (-947 (-378))) 17) (((-3 $ "failed") (-947 (-562))) 15) (((-3 $ "failed") (-406 (-947 (-378)))) 13) (((-3 $ "failed") (-406 (-947 (-562)))) 11)) (-3961 (($ (-315 (-378))) 22) (($ (-315 (-562))) 20) (($ (-947 (-378))) 18) (($ (-947 (-562))) 16) (($ (-406 (-947 (-378)))) 14) (($ (-406 (-947 (-562)))) 12)) (-3219 (((-1261) $) 7)) (-4054 (((-857) $) 8) (($ (-639 (-329))) 25) (($ (-329)) 24) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 23)))
+((-4048 (((-3 $ "failed") (-315 (-378))) 21) (((-3 $ "failed") (-315 (-562))) 19) (((-3 $ "failed") (-947 (-378))) 17) (((-3 $ "failed") (-947 (-562))) 15) (((-3 $ "failed") (-406 (-947 (-378)))) 13) (((-3 $ "failed") (-406 (-947 (-562)))) 11)) (-3960 (($ (-315 (-378))) 22) (($ (-315 (-562))) 20) (($ (-947 (-378))) 18) (($ (-947 (-562))) 16) (($ (-406 (-947 (-378)))) 14) (($ (-406 (-947 (-562)))) 12)) (-3218 (((-1261) $) 7)) (-4053 (((-857) $) 8) (($ (-639 (-329))) 25) (($ (-329)) 24) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 23)))
(((-395) (-139)) (T -395))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-4 *1 (-395)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-329)) (-4 *1 (-395)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) (-4 *1 (-395)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-315 (-378))) (-4 *1 (-395)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-315 (-378))) (-4 *1 (-395)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-315 (-562))) (-4 *1 (-395)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-315 (-562))) (-4 *1 (-395)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-947 (-378))) (-4 *1 (-395)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-947 (-378))) (-4 *1 (-395)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-947 (-562))) (-4 *1 (-395)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-947 (-562))) (-4 *1 (-395)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-406 (-947 (-378)))) (-4 *1 (-395)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-406 (-947 (-378)))) (-4 *1 (-395)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-406 (-947 (-562)))) (-4 *1 (-395)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-406 (-947 (-562)))) (-4 *1 (-395)))))
-(-13 (-394) (-10 -8 (-15 -4054 ($ (-639 (-329)))) (-15 -4054 ($ (-329))) (-15 -4054 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329)))))) (-15 -3961 ($ (-315 (-378)))) (-15 -4048 ((-3 $ "failed") (-315 (-378)))) (-15 -3961 ($ (-315 (-562)))) (-15 -4048 ((-3 $ "failed") (-315 (-562)))) (-15 -3961 ($ (-947 (-378)))) (-15 -4048 ((-3 $ "failed") (-947 (-378)))) (-15 -3961 ($ (-947 (-562)))) (-15 -4048 ((-3 $ "failed") (-947 (-562)))) (-15 -3961 ($ (-406 (-947 (-378))))) (-15 -4048 ((-3 $ "failed") (-406 (-947 (-378))))) (-15 -3961 ($ (-406 (-947 (-562))))) (-15 -4048 ((-3 $ "failed") (-406 (-947 (-562)))))))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-4 *1 (-395)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-329)) (-4 *1 (-395)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) (-4 *1 (-395)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-315 (-378))) (-4 *1 (-395)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-315 (-378))) (-4 *1 (-395)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-315 (-562))) (-4 *1 (-395)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-315 (-562))) (-4 *1 (-395)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-947 (-378))) (-4 *1 (-395)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-947 (-378))) (-4 *1 (-395)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-947 (-562))) (-4 *1 (-395)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-947 (-562))) (-4 *1 (-395)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-406 (-947 (-378)))) (-4 *1 (-395)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-406 (-947 (-378)))) (-4 *1 (-395)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-406 (-947 (-562)))) (-4 *1 (-395)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-406 (-947 (-562)))) (-4 *1 (-395)))))
+(-13 (-394) (-10 -8 (-15 -4053 ($ (-639 (-329)))) (-15 -4053 ($ (-329))) (-15 -4053 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329)))))) (-15 -3960 ($ (-315 (-378)))) (-15 -4048 ((-3 $ "failed") (-315 (-378)))) (-15 -3960 ($ (-315 (-562)))) (-15 -4048 ((-3 $ "failed") (-315 (-562)))) (-15 -3960 ($ (-947 (-378)))) (-15 -4048 ((-3 $ "failed") (-947 (-378)))) (-15 -3960 ($ (-947 (-562)))) (-15 -4048 ((-3 $ "failed") (-947 (-562)))) (-15 -3960 ($ (-406 (-947 (-378))))) (-15 -4048 ((-3 $ "failed") (-406 (-947 (-378))))) (-15 -3960 ($ (-406 (-947 (-562))))) (-15 -4048 ((-3 $ "failed") (-406 (-947 (-562)))))))
(((-609 (-857)) . T) ((-394) . T) ((-1207) . T))
-((-3260 (((-639 (-1150)) (-639 (-1150))) 9)) (-3219 (((-1261) (-387)) 27)) (-1540 (((-1096) (-1168) (-639 (-1168)) (-1171) (-639 (-1168))) 60) (((-1096) (-1168) (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168)))) (-639 (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168))))) (-639 (-1168)) (-1168)) 35) (((-1096) (-1168) (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168)))) (-639 (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168))))) (-639 (-1168))) 34)))
-(((-396) (-10 -7 (-15 -1540 ((-1096) (-1168) (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168)))) (-639 (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168))))) (-639 (-1168)))) (-15 -1540 ((-1096) (-1168) (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168)))) (-639 (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168))))) (-639 (-1168)) (-1168))) (-15 -1540 ((-1096) (-1168) (-639 (-1168)) (-1171) (-639 (-1168)))) (-15 -3219 ((-1261) (-387))) (-15 -3260 ((-639 (-1150)) (-639 (-1150)))))) (T -396))
-((-3260 (*1 *2 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-396)))) (-3219 (*1 *2 *3) (-12 (-5 *3 (-387)) (-5 *2 (-1261)) (-5 *1 (-396)))) (-1540 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-639 (-1168))) (-5 *5 (-1171)) (-5 *3 (-1168)) (-5 *2 (-1096)) (-5 *1 (-396)))) (-1540 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-639 (-639 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-639 (-3 (|:| |array| (-639 *3)) (|:| |scalar| (-1168))))) (-5 *6 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1096)) (-5 *1 (-396)))) (-1540 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-639 (-639 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-639 (-3 (|:| |array| (-639 *3)) (|:| |scalar| (-1168))))) (-5 *6 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1096)) (-5 *1 (-396)))))
-(-10 -7 (-15 -1540 ((-1096) (-1168) (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168)))) (-639 (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168))))) (-639 (-1168)))) (-15 -1540 ((-1096) (-1168) (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168)))) (-639 (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168))))) (-639 (-1168)) (-1168))) (-15 -1540 ((-1096) (-1168) (-639 (-1168)) (-1171) (-639 (-1168)))) (-15 -3219 ((-1261) (-387))) (-15 -3260 ((-639 (-1150)) (-639 (-1150)))))
-((-3219 (((-1261) $) 36)) (-4054 (((-857) $) 96) (($ (-329)) 98) (($ (-639 (-329))) 97) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 95) (($ (-315 (-695))) 52) (($ (-315 (-693))) 71) (($ (-315 (-688))) 84) (($ (-293 (-315 (-695)))) 66) (($ (-293 (-315 (-693)))) 79) (($ (-293 (-315 (-688)))) 92) (($ (-315 (-562))) 103) (($ (-315 (-378))) 116) (($ (-315 (-168 (-378)))) 129) (($ (-293 (-315 (-562)))) 111) (($ (-293 (-315 (-378)))) 124) (($ (-293 (-315 (-168 (-378))))) 137)))
-(((-397 |#1| |#2| |#3| |#4|) (-13 (-394) (-10 -8 (-15 -4054 ($ (-329))) (-15 -4054 ($ (-639 (-329)))) (-15 -4054 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329)))))) (-15 -4054 ($ (-315 (-695)))) (-15 -4054 ($ (-315 (-693)))) (-15 -4054 ($ (-315 (-688)))) (-15 -4054 ($ (-293 (-315 (-695))))) (-15 -4054 ($ (-293 (-315 (-693))))) (-15 -4054 ($ (-293 (-315 (-688))))) (-15 -4054 ($ (-315 (-562)))) (-15 -4054 ($ (-315 (-378)))) (-15 -4054 ($ (-315 (-168 (-378))))) (-15 -4054 ($ (-293 (-315 (-562))))) (-15 -4054 ($ (-293 (-315 (-378))))) (-15 -4054 ($ (-293 (-315 (-168 (-378)))))))) (-1168) (-3 (|:| |fst| (-433)) (|:| -2650 "void")) (-639 (-1168)) (-1172)) (T -397))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-329)) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-315 (-695))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-315 (-693))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-315 (-688))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-293 (-315 (-695)))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-293 (-315 (-693)))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-293 (-315 (-688)))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-315 (-562))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-315 (-378))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-315 (-168 (-378)))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-293 (-315 (-562)))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-293 (-315 (-378)))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-293 (-315 (-168 (-378))))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))))
-(-13 (-394) (-10 -8 (-15 -4054 ($ (-329))) (-15 -4054 ($ (-639 (-329)))) (-15 -4054 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329)))))) (-15 -4054 ($ (-315 (-695)))) (-15 -4054 ($ (-315 (-693)))) (-15 -4054 ($ (-315 (-688)))) (-15 -4054 ($ (-293 (-315 (-695))))) (-15 -4054 ($ (-293 (-315 (-693))))) (-15 -4054 ($ (-293 (-315 (-688))))) (-15 -4054 ($ (-315 (-562)))) (-15 -4054 ($ (-315 (-378)))) (-15 -4054 ($ (-315 (-168 (-378))))) (-15 -4054 ($ (-293 (-315 (-562))))) (-15 -4054 ($ (-293 (-315 (-378))))) (-15 -4054 ($ (-293 (-315 (-168 (-378))))))))
-((-4041 (((-112) $ $) NIL)) (-2401 ((|#2| $) 36)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2107 (($ (-406 |#2|)) 85)) (-3937 (((-639 (-2 (|:| -1960 (-766)) (|:| -2328 |#2|) (|:| |num| |#2|))) $) 37)) (-4029 (($ $) 32) (($ $ (-766)) 34)) (-4208 (((-406 |#2|) $) 46)) (-4066 (($ (-639 (-2 (|:| -1960 (-766)) (|:| -2328 |#2|) (|:| |num| |#2|)))) 31)) (-4054 (((-857) $) 120)) (-3114 (($ $) 33) (($ $ (-766)) 35)) (-1731 (((-112) $ $) NIL)) (-1835 (($ |#2| $) 39)))
-(((-398 |#1| |#2|) (-13 (-1092) (-610 (-406 |#2|)) (-10 -8 (-15 -1835 ($ |#2| $)) (-15 -2107 ($ (-406 |#2|))) (-15 -2401 (|#2| $)) (-15 -3937 ((-639 (-2 (|:| -1960 (-766)) (|:| -2328 |#2|) (|:| |num| |#2|))) $)) (-15 -4066 ($ (-639 (-2 (|:| -1960 (-766)) (|:| -2328 |#2|) (|:| |num| |#2|))))) (-15 -4029 ($ $)) (-15 -3114 ($ $)) (-15 -4029 ($ $ (-766))) (-15 -3114 ($ $ (-766))))) (-13 (-362) (-146)) (-1232 |#1|)) (T -398))
-((-1835 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-362) (-146))) (-5 *1 (-398 *3 *2)) (-4 *2 (-1232 *3)))) (-2107 (*1 *1 *2) (-12 (-5 *2 (-406 *4)) (-4 *4 (-1232 *3)) (-4 *3 (-13 (-362) (-146))) (-5 *1 (-398 *3 *4)))) (-2401 (*1 *2 *1) (-12 (-4 *2 (-1232 *3)) (-5 *1 (-398 *3 *2)) (-4 *3 (-13 (-362) (-146))))) (-3937 (*1 *2 *1) (-12 (-4 *3 (-13 (-362) (-146))) (-5 *2 (-639 (-2 (|:| -1960 (-766)) (|:| -2328 *4) (|:| |num| *4)))) (-5 *1 (-398 *3 *4)) (-4 *4 (-1232 *3)))) (-4066 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -1960 (-766)) (|:| -2328 *4) (|:| |num| *4)))) (-4 *4 (-1232 *3)) (-4 *3 (-13 (-362) (-146))) (-5 *1 (-398 *3 *4)))) (-4029 (*1 *1 *1) (-12 (-4 *2 (-13 (-362) (-146))) (-5 *1 (-398 *2 *3)) (-4 *3 (-1232 *2)))) (-3114 (*1 *1 *1) (-12 (-4 *2 (-13 (-362) (-146))) (-5 *1 (-398 *2 *3)) (-4 *3 (-1232 *2)))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *3 (-13 (-362) (-146))) (-5 *1 (-398 *3 *4)) (-4 *4 (-1232 *3)))) (-3114 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *3 (-13 (-362) (-146))) (-5 *1 (-398 *3 *4)) (-4 *4 (-1232 *3)))))
-(-13 (-1092) (-610 (-406 |#2|)) (-10 -8 (-15 -1835 ($ |#2| $)) (-15 -2107 ($ (-406 |#2|))) (-15 -2401 (|#2| $)) (-15 -3937 ((-639 (-2 (|:| -1960 (-766)) (|:| -2328 |#2|) (|:| |num| |#2|))) $)) (-15 -4066 ($ (-639 (-2 (|:| -1960 (-766)) (|:| -2328 |#2|) (|:| |num| |#2|))))) (-15 -4029 ($ $)) (-15 -3114 ($ $)) (-15 -4029 ($ $ (-766))) (-15 -3114 ($ $ (-766)))))
-((-4041 (((-112) $ $) 9 (-4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))))) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 15 (|has| |#1| (-881 (-378)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 14 (|has| |#1| (-881 (-562))))) (-2913 (((-1150) $) 13 (-4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))))) (-1709 (((-1112) $) 12 (-4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))))) (-4054 (((-857) $) 11 (-4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))))) (-1731 (((-112) $ $) 10 (-4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))))))
+((-2056 (((-639 (-1150)) (-639 (-1150))) 9)) (-3218 (((-1261) (-387)) 27)) (-1712 (((-1096) (-1168) (-639 (-1168)) (-1171) (-639 (-1168))) 60) (((-1096) (-1168) (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168)))) (-639 (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168))))) (-639 (-1168)) (-1168)) 35) (((-1096) (-1168) (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168)))) (-639 (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168))))) (-639 (-1168))) 34)))
+(((-396) (-10 -7 (-15 -1712 ((-1096) (-1168) (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168)))) (-639 (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168))))) (-639 (-1168)))) (-15 -1712 ((-1096) (-1168) (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168)))) (-639 (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168))))) (-639 (-1168)) (-1168))) (-15 -1712 ((-1096) (-1168) (-639 (-1168)) (-1171) (-639 (-1168)))) (-15 -3218 ((-1261) (-387))) (-15 -2056 ((-639 (-1150)) (-639 (-1150)))))) (T -396))
+((-2056 (*1 *2 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-396)))) (-3218 (*1 *2 *3) (-12 (-5 *3 (-387)) (-5 *2 (-1261)) (-5 *1 (-396)))) (-1712 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-639 (-1168))) (-5 *5 (-1171)) (-5 *3 (-1168)) (-5 *2 (-1096)) (-5 *1 (-396)))) (-1712 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-639 (-639 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-639 (-3 (|:| |array| (-639 *3)) (|:| |scalar| (-1168))))) (-5 *6 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1096)) (-5 *1 (-396)))) (-1712 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-639 (-639 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-639 (-3 (|:| |array| (-639 *3)) (|:| |scalar| (-1168))))) (-5 *6 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1096)) (-5 *1 (-396)))))
+(-10 -7 (-15 -1712 ((-1096) (-1168) (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168)))) (-639 (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168))))) (-639 (-1168)))) (-15 -1712 ((-1096) (-1168) (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168)))) (-639 (-639 (-3 (|:| |array| (-639 (-1168))) (|:| |scalar| (-1168))))) (-639 (-1168)) (-1168))) (-15 -1712 ((-1096) (-1168) (-639 (-1168)) (-1171) (-639 (-1168)))) (-15 -3218 ((-1261) (-387))) (-15 -2056 ((-639 (-1150)) (-639 (-1150)))))
+((-3218 (((-1261) $) 36)) (-4053 (((-857) $) 96) (($ (-329)) 98) (($ (-639 (-329))) 97) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 95) (($ (-315 (-695))) 52) (($ (-315 (-693))) 71) (($ (-315 (-688))) 84) (($ (-293 (-315 (-695)))) 66) (($ (-293 (-315 (-693)))) 79) (($ (-293 (-315 (-688)))) 92) (($ (-315 (-562))) 103) (($ (-315 (-378))) 116) (($ (-315 (-168 (-378)))) 129) (($ (-293 (-315 (-562)))) 111) (($ (-293 (-315 (-378)))) 124) (($ (-293 (-315 (-168 (-378))))) 137)))
+(((-397 |#1| |#2| |#3| |#4|) (-13 (-394) (-10 -8 (-15 -4053 ($ (-329))) (-15 -4053 ($ (-639 (-329)))) (-15 -4053 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329)))))) (-15 -4053 ($ (-315 (-695)))) (-15 -4053 ($ (-315 (-693)))) (-15 -4053 ($ (-315 (-688)))) (-15 -4053 ($ (-293 (-315 (-695))))) (-15 -4053 ($ (-293 (-315 (-693))))) (-15 -4053 ($ (-293 (-315 (-688))))) (-15 -4053 ($ (-315 (-562)))) (-15 -4053 ($ (-315 (-378)))) (-15 -4053 ($ (-315 (-168 (-378))))) (-15 -4053 ($ (-293 (-315 (-562))))) (-15 -4053 ($ (-293 (-315 (-378))))) (-15 -4053 ($ (-293 (-315 (-168 (-378)))))))) (-1168) (-3 (|:| |fst| (-433)) (|:| -2649 "void")) (-639 (-1168)) (-1172)) (T -397))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-329)) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-315 (-695))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-315 (-693))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-315 (-688))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-293 (-315 (-695)))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-293 (-315 (-693)))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-293 (-315 (-688)))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-315 (-562))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-315 (-378))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-315 (-168 (-378)))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-293 (-315 (-562)))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-293 (-315 (-378)))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-293 (-315 (-168 (-378))))) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-14 *5 (-639 (-1168))) (-14 *6 (-1172)))))
+(-13 (-394) (-10 -8 (-15 -4053 ($ (-329))) (-15 -4053 ($ (-639 (-329)))) (-15 -4053 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329)))))) (-15 -4053 ($ (-315 (-695)))) (-15 -4053 ($ (-315 (-693)))) (-15 -4053 ($ (-315 (-688)))) (-15 -4053 ($ (-293 (-315 (-695))))) (-15 -4053 ($ (-293 (-315 (-693))))) (-15 -4053 ($ (-293 (-315 (-688))))) (-15 -4053 ($ (-315 (-562)))) (-15 -4053 ($ (-315 (-378)))) (-15 -4053 ($ (-315 (-168 (-378))))) (-15 -4053 ($ (-293 (-315 (-562))))) (-15 -4053 ($ (-293 (-315 (-378))))) (-15 -4053 ($ (-293 (-315 (-168 (-378))))))))
+((-4041 (((-112) $ $) NIL)) (-3408 ((|#2| $) 36)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2352 (($ (-406 |#2|)) 85)) (-4374 (((-639 (-2 (|:| -1300 (-766)) (|:| -2328 |#2|) (|:| |num| |#2|))) $) 37)) (-4029 (($ $) 32) (($ $ (-766)) 34)) (-4208 (((-406 |#2|) $) 46)) (-4064 (($ (-639 (-2 (|:| -1300 (-766)) (|:| -2328 |#2|) (|:| |num| |#2|)))) 31)) (-4053 (((-857) $) 120)) (-3113 (($ $) 33) (($ $ (-766)) 35)) (-1733 (((-112) $ $) NIL)) (-1836 (($ |#2| $) 39)))
+(((-398 |#1| |#2|) (-13 (-1092) (-610 (-406 |#2|)) (-10 -8 (-15 -1836 ($ |#2| $)) (-15 -2352 ($ (-406 |#2|))) (-15 -3408 (|#2| $)) (-15 -4374 ((-639 (-2 (|:| -1300 (-766)) (|:| -2328 |#2|) (|:| |num| |#2|))) $)) (-15 -4064 ($ (-639 (-2 (|:| -1300 (-766)) (|:| -2328 |#2|) (|:| |num| |#2|))))) (-15 -4029 ($ $)) (-15 -3113 ($ $)) (-15 -4029 ($ $ (-766))) (-15 -3113 ($ $ (-766))))) (-13 (-362) (-146)) (-1232 |#1|)) (T -398))
+((-1836 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-362) (-146))) (-5 *1 (-398 *3 *2)) (-4 *2 (-1232 *3)))) (-2352 (*1 *1 *2) (-12 (-5 *2 (-406 *4)) (-4 *4 (-1232 *3)) (-4 *3 (-13 (-362) (-146))) (-5 *1 (-398 *3 *4)))) (-3408 (*1 *2 *1) (-12 (-4 *2 (-1232 *3)) (-5 *1 (-398 *3 *2)) (-4 *3 (-13 (-362) (-146))))) (-4374 (*1 *2 *1) (-12 (-4 *3 (-13 (-362) (-146))) (-5 *2 (-639 (-2 (|:| -1300 (-766)) (|:| -2328 *4) (|:| |num| *4)))) (-5 *1 (-398 *3 *4)) (-4 *4 (-1232 *3)))) (-4064 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -1300 (-766)) (|:| -2328 *4) (|:| |num| *4)))) (-4 *4 (-1232 *3)) (-4 *3 (-13 (-362) (-146))) (-5 *1 (-398 *3 *4)))) (-4029 (*1 *1 *1) (-12 (-4 *2 (-13 (-362) (-146))) (-5 *1 (-398 *2 *3)) (-4 *3 (-1232 *2)))) (-3113 (*1 *1 *1) (-12 (-4 *2 (-13 (-362) (-146))) (-5 *1 (-398 *2 *3)) (-4 *3 (-1232 *2)))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *3 (-13 (-362) (-146))) (-5 *1 (-398 *3 *4)) (-4 *4 (-1232 *3)))) (-3113 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *3 (-13 (-362) (-146))) (-5 *1 (-398 *3 *4)) (-4 *4 (-1232 *3)))))
+(-13 (-1092) (-610 (-406 |#2|)) (-10 -8 (-15 -1836 ($ |#2| $)) (-15 -2352 ($ (-406 |#2|))) (-15 -3408 (|#2| $)) (-15 -4374 ((-639 (-2 (|:| -1300 (-766)) (|:| -2328 |#2|) (|:| |num| |#2|))) $)) (-15 -4064 ($ (-639 (-2 (|:| -1300 (-766)) (|:| -2328 |#2|) (|:| |num| |#2|))))) (-15 -4029 ($ $)) (-15 -3113 ($ $)) (-15 -4029 ($ $ (-766))) (-15 -3113 ($ $ (-766)))))
+((-4041 (((-112) $ $) 9 (-4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))))) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 15 (|has| |#1| (-881 (-378)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 14 (|has| |#1| (-881 (-562))))) (-3696 (((-1150) $) 13 (-4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))))) (-1709 (((-1112) $) 12 (-4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))))) (-4053 (((-857) $) 11 (-4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))))) (-1733 (((-112) $ $) 10 (-4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))))))
(((-399 |#1|) (-139) (-1207)) (T -399))
NIL
(-13 (-1207) (-10 -7 (IF (|has| |t#1| (-881 (-562))) (-6 (-881 (-562))) |%noBranch|) (IF (|has| |t#1| (-881 (-378))) (-6 (-881 (-378))) |%noBranch|)))
(((-102) -4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))) ((-609 (-857)) -4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))) ((-881 (-378)) |has| |#1| (-881 (-378))) ((-881 (-562)) |has| |#1| (-881 (-562))) ((-1092) -4037 (|has| |#1| (-881 (-562))) (|has| |#1| (-881 (-378)))) ((-1207) . T))
-((-3589 (($ $) 10) (($ $ (-766)) 11)))
-(((-400 |#1|) (-10 -8 (-15 -3589 (|#1| |#1| (-766))) (-15 -3589 (|#1| |#1|))) (-401)) (T -400))
+((-2184 (($ $) 10) (($ $ (-766)) 11)))
+(((-400 |#1|) (-10 -8 (-15 -2184 (|#1| |#1| (-766))) (-15 -2184 (|#1| |#1|))) (-401)) (T -400))
NIL
-(-10 -8 (-15 -3589 (|#1| |#1| (-766))) (-15 -3589 (|#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 74)) (-2921 (((-417 $) $) 73)) (-2569 (((-112) $ $) 60)) (-1800 (($) 17 T CONST)) (-1811 (($ $ $) 56)) (-3668 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-3589 (($ $) 80) (($ $ (-766)) 79)) (-2717 (((-112) $) 72)) (-1900 (((-828 (-916)) $) 82)) (-1957 (((-112) $) 31)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 71)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1635 (((-417 $) $) 75)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1577 (((-766) $) 59)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 58)) (-3362 (((-3 (-766) "failed") $ $) 81)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67)) (-2805 (((-3 $ "failed") $) 83)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ $) 66)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68)))
+(-10 -8 (-15 -2184 (|#1| |#1| (-766))) (-15 -2184 (|#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 74)) (-3788 (((-417 $) $) 73)) (-1436 (((-112) $ $) 60)) (-3329 (($) 17 T CONST)) (-1810 (($ $ $) 56)) (-1694 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-2184 (($ $) 80) (($ $ (-766)) 79)) (-3521 (((-112) $) 72)) (-1993 (((-828 (-916)) $) 82)) (-4367 (((-112) $) 31)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 71)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1635 (((-417 $) $) 75)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-2044 (((-766) $) 59)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 58)) (-3543 (((-3 (-766) "failed") $ $) 81)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67)) (-2059 (((-3 $ "failed") $) 83)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ $) 66)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68)))
(((-401) (-139)) (T -401))
-((-1900 (*1 *2 *1) (-12 (-4 *1 (-401)) (-5 *2 (-828 (-916))))) (-3362 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-401)) (-5 *2 (-766)))) (-3589 (*1 *1 *1) (-4 *1 (-401))) (-3589 (*1 *1 *1 *2) (-12 (-4 *1 (-401)) (-5 *2 (-766)))))
-(-13 (-362) (-144) (-10 -8 (-15 -1900 ((-828 (-916)) $)) (-15 -3362 ((-3 (-766) "failed") $ $)) (-15 -3589 ($ $)) (-15 -3589 ($ $ (-766)))))
+((-1993 (*1 *2 *1) (-12 (-4 *1 (-401)) (-5 *2 (-828 (-916))))) (-3543 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-401)) (-5 *2 (-766)))) (-2184 (*1 *1 *1) (-4 *1 (-401))) (-2184 (*1 *1 *1 *2) (-12 (-4 *1 (-401)) (-5 *2 (-766)))))
+(-13 (-362) (-144) (-10 -8 (-15 -1993 ((-828 (-916)) $)) (-15 -3543 ((-3 (-766) "failed") $ $)) (-15 -2184 ($ $)) (-15 -2184 ($ $ (-766)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-144) . T) ((-612 #0#) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-242) . T) ((-289) . T) ((-306) . T) ((-362) . T) ((-451) . T) ((-554) . T) ((-642 #0#) . T) ((-642 $) . T) ((-712 #0#) . T) ((-712 $) . T) ((-721) . T) ((-915) . T) ((-1050 #0#) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1211) . T))
-((-4235 (($ (-562) (-562)) 11) (($ (-562) (-562) (-916)) NIL)) (-3280 (((-916)) 16) (((-916) (-916)) NIL)))
-(((-402 |#1|) (-10 -8 (-15 -3280 ((-916) (-916))) (-15 -3280 ((-916))) (-15 -4235 (|#1| (-562) (-562) (-916))) (-15 -4235 (|#1| (-562) (-562)))) (-403)) (T -402))
-((-3280 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-402 *3)) (-4 *3 (-403)))) (-3280 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-402 *3)) (-4 *3 (-403)))))
-(-10 -8 (-15 -3280 ((-916) (-916))) (-15 -3280 ((-916))) (-15 -4235 (|#1| (-562) (-562) (-916))) (-15 -4235 (|#1| (-562) (-562))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-4246 (((-562) $) 90)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-2557 (($ $) 88)) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 74)) (-2921 (((-417 $) $) 73)) (-1643 (($ $) 98)) (-2569 (((-112) $ $) 60)) (-2277 (((-562) $) 115)) (-1800 (($) 17 T CONST)) (-4103 (($ $) 87)) (-4048 (((-3 (-562) "failed") $) 103) (((-3 (-406 (-562)) "failed") $) 100)) (-3961 (((-562) $) 104) (((-406 (-562)) $) 101)) (-1811 (($ $ $) 56)) (-3668 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-2717 (((-112) $) 72)) (-3327 (((-916)) 131) (((-916) (-916)) 128 (|has| $ (-6 -4393)))) (-3519 (((-112) $) 113)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 94)) (-1900 (((-562) $) 137)) (-1957 (((-112) $) 31)) (-1891 (($ $ (-562)) 97)) (-2247 (($ $) 93)) (-3392 (((-112) $) 114)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1551 (($ $ $) 112) (($) 125 (-12 (-2236 (|has| $ (-6 -4393))) (-2236 (|has| $ (-6 -4385)))))) (-2993 (($ $ $) 111) (($) 124 (-12 (-2236 (|has| $ (-6 -4393))) (-2236 (|has| $ (-6 -4385)))))) (-3946 (((-562) $) 134)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 71)) (-3544 (((-916) (-562)) 127 (|has| $ (-6 -4393)))) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-2736 (($ $) 89)) (-4014 (($ $) 91)) (-4235 (($ (-562) (-562)) 139) (($ (-562) (-562) (-916)) 138)) (-1635 (((-417 $) $) 75)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1960 (((-562) $) 135)) (-1577 (((-766) $) 59)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 58)) (-3280 (((-916)) 132) (((-916) (-916)) 129 (|has| $ (-6 -4393)))) (-2015 (((-916) (-562)) 126 (|has| $ (-6 -4393)))) (-4208 (((-378) $) 106) (((-224) $) 105) (((-887 (-378)) $) 95)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67) (($ (-562)) 102) (($ (-406 (-562))) 99)) (-2579 (((-766)) 28)) (-2604 (($ $) 92)) (-3366 (((-916)) 133) (((-916) (-916)) 130 (|has| $ (-6 -4393)))) (-3241 (((-916)) 136)) (-2922 (((-112) $ $) 40)) (-3526 (($ $) 116)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 109)) (-1772 (((-112) $ $) 108)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 110)) (-1759 (((-112) $ $) 107)) (-1859 (($ $ $) 66)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70) (($ $ (-406 (-562))) 96)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68)))
+((-4237 (($ (-562) (-562)) 11) (($ (-562) (-562) (-916)) NIL)) (-2244 (((-916)) 16) (((-916) (-916)) NIL)))
+(((-402 |#1|) (-10 -8 (-15 -2244 ((-916) (-916))) (-15 -2244 ((-916))) (-15 -4237 (|#1| (-562) (-562) (-916))) (-15 -4237 (|#1| (-562) (-562)))) (-403)) (T -402))
+((-2244 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-402 *3)) (-4 *3 (-403)))) (-2244 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-402 *3)) (-4 *3 (-403)))))
+(-10 -8 (-15 -2244 ((-916) (-916))) (-15 -2244 ((-916))) (-15 -4237 (|#1| (-562) (-562) (-916))) (-15 -4237 (|#1| (-562) (-562))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2300 (((-562) $) 90)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-1302 (($ $) 88)) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 74)) (-3788 (((-417 $) $) 73)) (-1644 (($ $) 98)) (-1436 (((-112) $ $) 60)) (-1587 (((-562) $) 115)) (-3329 (($) 17 T CONST)) (-3410 (($ $) 87)) (-4048 (((-3 (-562) "failed") $) 103) (((-3 (-406 (-562)) "failed") $) 100)) (-3960 (((-562) $) 104) (((-406 (-562)) $) 101)) (-1810 (($ $ $) 56)) (-1694 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-3521 (((-112) $) 72)) (-3326 (((-916)) 131) (((-916) (-916)) 128 (|has| $ (-6 -4394)))) (-2696 (((-112) $) 113)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 94)) (-1993 (((-562) $) 137)) (-4367 (((-112) $) 31)) (-1895 (($ $ (-562)) 97)) (-4363 (($ $) 93)) (-3855 (((-112) $) 114)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1551 (($ $ $) 112) (($) 125 (-12 (-2234 (|has| $ (-6 -4394))) (-2234 (|has| $ (-6 -4386)))))) (-2993 (($ $ $) 111) (($) 124 (-12 (-2234 (|has| $ (-6 -4394))) (-2234 (|has| $ (-6 -4386)))))) (-3946 (((-562) $) 134)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 71)) (-2898 (((-916) (-562)) 127 (|has| $ (-6 -4394)))) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-2561 (($ $) 89)) (-3870 (($ $) 91)) (-4237 (($ (-562) (-562)) 139) (($ (-562) (-562) (-916)) 138)) (-1635 (((-417 $) $) 75)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1300 (((-562) $) 135)) (-2044 (((-766) $) 59)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 58)) (-2244 (((-916)) 132) (((-916) (-916)) 129 (|has| $ (-6 -4394)))) (-3719 (((-916) (-562)) 126 (|has| $ (-6 -4394)))) (-4208 (((-378) $) 106) (((-224) $) 105) (((-887 (-378)) $) 95)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67) (($ (-562)) 102) (($ (-406 (-562))) 99)) (-1568 (((-766)) 28)) (-3636 (($ $) 92)) (-3573 (((-916)) 133) (((-916) (-916)) 130 (|has| $ (-6 -4394)))) (-3240 (((-916)) 136)) (-3799 (((-112) $ $) 40)) (-2757 (($ $) 116)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 109)) (-1771 (((-112) $ $) 108)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 110)) (-1761 (((-112) $ $) 107)) (-1859 (($ $ $) 66)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70) (($ $ (-406 (-562))) 96)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68)))
(((-403) (-139)) (T -403))
-((-4235 (*1 *1 *2 *2) (-12 (-5 *2 (-562)) (-4 *1 (-403)))) (-4235 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-562)) (-5 *3 (-916)) (-4 *1 (-403)))) (-1900 (*1 *2 *1) (-12 (-4 *1 (-403)) (-5 *2 (-562)))) (-3241 (*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916)))) (-1960 (*1 *2 *1) (-12 (-4 *1 (-403)) (-5 *2 (-562)))) (-3946 (*1 *2 *1) (-12 (-4 *1 (-403)) (-5 *2 (-562)))) (-3366 (*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916)))) (-3280 (*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916)))) (-3327 (*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916)))) (-3366 (*1 *2 *2) (-12 (-5 *2 (-916)) (|has| *1 (-6 -4393)) (-4 *1 (-403)))) (-3280 (*1 *2 *2) (-12 (-5 *2 (-916)) (|has| *1 (-6 -4393)) (-4 *1 (-403)))) (-3327 (*1 *2 *2) (-12 (-5 *2 (-916)) (|has| *1 (-6 -4393)) (-4 *1 (-403)))) (-3544 (*1 *2 *3) (-12 (-5 *3 (-562)) (|has| *1 (-6 -4393)) (-4 *1 (-403)) (-5 *2 (-916)))) (-2015 (*1 *2 *3) (-12 (-5 *3 (-562)) (|has| *1 (-6 -4393)) (-4 *1 (-403)) (-5 *2 (-916)))) (-1551 (*1 *1) (-12 (-4 *1 (-403)) (-2236 (|has| *1 (-6 -4393))) (-2236 (|has| *1 (-6 -4385))))) (-2993 (*1 *1) (-12 (-4 *1 (-403)) (-2236 (|has| *1 (-6 -4393))) (-2236 (|has| *1 (-6 -4385))))))
-(-13 (-1053) (-10 -8 (-6 -1406) (-15 -4235 ($ (-562) (-562))) (-15 -4235 ($ (-562) (-562) (-916))) (-15 -1900 ((-562) $)) (-15 -3241 ((-916))) (-15 -1960 ((-562) $)) (-15 -3946 ((-562) $)) (-15 -3366 ((-916))) (-15 -3280 ((-916))) (-15 -3327 ((-916))) (IF (|has| $ (-6 -4393)) (PROGN (-15 -3366 ((-916) (-916))) (-15 -3280 ((-916) (-916))) (-15 -3327 ((-916) (-916))) (-15 -3544 ((-916) (-562))) (-15 -2015 ((-916) (-562)))) |%noBranch|) (IF (|has| $ (-6 -4385)) |%noBranch| (IF (|has| $ (-6 -4393)) |%noBranch| (PROGN (-15 -1551 ($)) (-15 -2993 ($)))))))
+((-4237 (*1 *1 *2 *2) (-12 (-5 *2 (-562)) (-4 *1 (-403)))) (-4237 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-562)) (-5 *3 (-916)) (-4 *1 (-403)))) (-1993 (*1 *2 *1) (-12 (-4 *1 (-403)) (-5 *2 (-562)))) (-3240 (*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916)))) (-1300 (*1 *2 *1) (-12 (-4 *1 (-403)) (-5 *2 (-562)))) (-3946 (*1 *2 *1) (-12 (-4 *1 (-403)) (-5 *2 (-562)))) (-3573 (*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916)))) (-2244 (*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916)))) (-3326 (*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916)))) (-3573 (*1 *2 *2) (-12 (-5 *2 (-916)) (|has| *1 (-6 -4394)) (-4 *1 (-403)))) (-2244 (*1 *2 *2) (-12 (-5 *2 (-916)) (|has| *1 (-6 -4394)) (-4 *1 (-403)))) (-3326 (*1 *2 *2) (-12 (-5 *2 (-916)) (|has| *1 (-6 -4394)) (-4 *1 (-403)))) (-2898 (*1 *2 *3) (-12 (-5 *3 (-562)) (|has| *1 (-6 -4394)) (-4 *1 (-403)) (-5 *2 (-916)))) (-3719 (*1 *2 *3) (-12 (-5 *3 (-562)) (|has| *1 (-6 -4394)) (-4 *1 (-403)) (-5 *2 (-916)))) (-1551 (*1 *1) (-12 (-4 *1 (-403)) (-2234 (|has| *1 (-6 -4394))) (-2234 (|has| *1 (-6 -4386))))) (-2993 (*1 *1) (-12 (-4 *1 (-403)) (-2234 (|has| *1 (-6 -4394))) (-2234 (|has| *1 (-6 -4386))))))
+(-13 (-1053) (-10 -8 (-6 -1406) (-15 -4237 ($ (-562) (-562))) (-15 -4237 ($ (-562) (-562) (-916))) (-15 -1993 ((-562) $)) (-15 -3240 ((-916))) (-15 -1300 ((-562) $)) (-15 -3946 ((-562) $)) (-15 -3573 ((-916))) (-15 -2244 ((-916))) (-15 -3326 ((-916))) (IF (|has| $ (-6 -4394)) (PROGN (-15 -3573 ((-916) (-916))) (-15 -2244 ((-916) (-916))) (-15 -3326 ((-916) (-916))) (-15 -2898 ((-916) (-562))) (-15 -3719 ((-916) (-562)))) |%noBranch|) (IF (|has| $ (-6 -4386)) |%noBranch| (IF (|has| $ (-6 -4394)) |%noBranch| (PROGN (-15 -1551 ($)) (-15 -2993 ($)))))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-146) . T) ((-612 #0#) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-610 (-224)) . T) ((-610 (-378)) . T) ((-610 (-887 (-378))) . T) ((-242) . T) ((-289) . T) ((-306) . T) ((-362) . T) ((-451) . T) ((-554) . T) ((-642 #0#) . T) ((-642 $) . T) ((-712 #0#) . T) ((-712 $) . T) ((-721) . T) ((-786) . T) ((-787) . T) ((-789) . T) ((-790) . T) ((-843) . T) ((-845) . T) ((-881 (-378)) . T) ((-915) . T) ((-997) . T) ((-1017) . T) ((-1053) . T) ((-1033 (-406 (-562))) . T) ((-1033 (-562)) . T) ((-1050 #0#) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1211) . T))
((-4152 (((-417 |#2|) (-1 |#2| |#1|) (-417 |#1|)) 20)))
(((-404 |#1| |#2|) (-10 -7 (-15 -4152 ((-417 |#2|) (-1 |#2| |#1|) (-417 |#1|)))) (-554) (-554)) (T -404))
@@ -1620,24 +1620,24 @@ NIL
(((-405 |#1| |#2|) (-10 -7 (-15 -4152 ((-406 |#2|) (-1 |#2| |#1|) (-406 |#1|)))) (-554) (-554)) (T -405))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-406 *5)) (-4 *5 (-554)) (-4 *6 (-554)) (-5 *2 (-406 *6)) (-5 *1 (-405 *5 *6)))))
(-10 -7 (-15 -4152 ((-406 |#2|) (-1 |#2| |#1|) (-406 |#1|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 13)) (-4246 ((|#1| $) 21 (|has| |#1| (-306)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL (|has| |#1| (-815)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 17) (((-3 (-1168) "failed") $) NIL (|has| |#1| (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) 70 (|has| |#1| (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562))))) (-3961 ((|#1| $) 15) (((-1168) $) NIL (|has| |#1| (-1033 (-1168)))) (((-406 (-562)) $) 67 (|has| |#1| (-1033 (-562)))) (((-562) $) NIL (|has| |#1| (-1033 (-562))))) (-1811 (($ $ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) 50)) (-1448 (($) NIL (|has| |#1| (-544)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3519 (((-112) $) NIL (|has| |#1| (-815)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| |#1| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| |#1| (-881 (-378))))) (-1957 (((-112) $) 64)) (-3425 (($ $) NIL)) (-4065 ((|#1| $) 71)) (-3699 (((-3 $ "failed") $) NIL (|has| |#1| (-1143)))) (-3392 (((-112) $) NIL (|has| |#1| (-815)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| |#1| (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 97)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2736 (($ $) NIL (|has| |#1| (-306)))) (-4014 ((|#1| $) 28 (|has| |#1| (-544)))) (-3986 (((-417 (-1164 $)) (-1164 $)) 135 (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) 131 (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) NIL (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-513 (-1168) |#1|)))) (-1577 (((-766) $) NIL)) (-2343 (($ $ |#1|) NIL (|has| |#1| (-285 |#1| |#1|)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) 63)) (-3658 (($ $) NIL)) (-4076 ((|#1| $) 73)) (-4208 (((-887 (-562)) $) NIL (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| |#1| (-610 (-887 (-378))))) (((-535) $) NIL (|has| |#1| (-610 (-535)))) (((-378) $) NIL (|has| |#1| (-1017))) (((-224) $) NIL (|has| |#1| (-1017)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 115 (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) 10) (($ (-1168)) NIL (|has| |#1| (-1033 (-1168))))) (-2805 (((-3 $ "failed") $) 99 (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) 100)) (-2604 ((|#1| $) 26 (|has| |#1| (-544)))) (-2922 (((-112) $ $) NIL)) (-3526 (($ $) NIL (|has| |#1| (-815)))) (-2286 (($) 22 T CONST)) (-2294 (($) 8 T CONST)) (-2833 (((-1150) $) 43 (-12 (|has| |#1| (-544)) (|has| |#1| (-823)))) (((-1150) $ (-112)) 44 (-12 (|has| |#1| (-544)) (|has| |#1| (-823)))) (((-1261) (-817) $) 45 (-12 (|has| |#1| (-544)) (|has| |#1| (-823)))) (((-1261) (-817) $ (-112)) 46 (-12 (|has| |#1| (-544)) (|has| |#1| (-823))))) (-3114 (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) 56)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) 24 (|has| |#1| (-845)))) (-1859 (($ $ $) 126) (($ |#1| |#1|) 52)) (-1848 (($ $) 25) (($ $ $) 55)) (-1835 (($ $ $) 53)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 125)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 60) (($ $ $) 57) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ |#1| $) 61) (($ $ |#1|) 85)))
-(((-406 |#1|) (-13 (-987 |#1|) (-10 -7 (IF (|has| |#1| (-544)) (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4389)) (IF (|has| |#1| (-451)) (IF (|has| |#1| (-6 -4400)) (-6 -4389) |%noBranch|) |%noBranch|) |%noBranch|))) (-554)) (T -406))
-NIL
-(-13 (-987 |#1|) (-10 -7 (IF (|has| |#1| (-544)) (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4389)) (IF (|has| |#1| (-451)) (IF (|has| |#1| (-6 -4400)) (-6 -4389) |%noBranch|) |%noBranch|) |%noBranch|)))
-((-1636 (((-683 |#2|) (-1256 $)) NIL) (((-683 |#2|)) 18)) (-4018 (($ (-1256 |#2|) (-1256 $)) NIL) (($ (-1256 |#2|)) 24)) (-1958 (((-683 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) $) 38)) (-1565 ((|#3| $) 60)) (-2455 ((|#2| (-1256 $)) NIL) ((|#2|) 20)) (-3593 (((-1256 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) (-1256 $) (-1256 $)) NIL) (((-1256 |#2|) $) 22) (((-683 |#2|) (-1256 $)) 36)) (-4208 (((-1256 |#2|) $) 11) (($ (-1256 |#2|)) 13)) (-3376 ((|#3| $) 52)))
-(((-407 |#1| |#2| |#3|) (-10 -8 (-15 -1958 ((-683 |#2|) |#1|)) (-15 -2455 (|#2|)) (-15 -1636 ((-683 |#2|))) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -4018 (|#1| (-1256 |#2|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1|)) (-15 -1565 (|#3| |#1|)) (-15 -3376 (|#3| |#1|)) (-15 -1636 ((-683 |#2|) (-1256 |#1|))) (-15 -2455 (|#2| (-1256 |#1|))) (-15 -4018 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -1958 ((-683 |#2|) |#1| (-1256 |#1|)))) (-408 |#2| |#3|) (-171) (-1232 |#2|)) (T -407))
-((-1636 (*1 *2) (-12 (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-683 *4)) (-5 *1 (-407 *3 *4 *5)) (-4 *3 (-408 *4 *5)))) (-2455 (*1 *2) (-12 (-4 *4 (-1232 *2)) (-4 *2 (-171)) (-5 *1 (-407 *3 *2 *4)) (-4 *3 (-408 *2 *4)))))
-(-10 -8 (-15 -1958 ((-683 |#2|) |#1|)) (-15 -2455 (|#2|)) (-15 -1636 ((-683 |#2|))) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -4018 (|#1| (-1256 |#2|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1|)) (-15 -1565 (|#3| |#1|)) (-15 -3376 (|#3| |#1|)) (-15 -1636 ((-683 |#2|) (-1256 |#1|))) (-15 -2455 (|#2| (-1256 |#1|))) (-15 -4018 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -1958 ((-683 |#2|) |#1| (-1256 |#1|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1636 (((-683 |#1|) (-1256 $)) 47) (((-683 |#1|)) 62)) (-1748 ((|#1| $) 53)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-4018 (($ (-1256 |#1|) (-1256 $)) 49) (($ (-1256 |#1|)) 65)) (-1958 (((-683 |#1|) $ (-1256 $)) 54) (((-683 |#1|) $) 60)) (-3668 (((-3 $ "failed") $) 33)) (-2173 (((-916)) 55)) (-1957 (((-112) $) 31)) (-2247 ((|#1| $) 52)) (-1565 ((|#2| $) 45 (|has| |#1| (-362)))) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2455 ((|#1| (-1256 $)) 48) ((|#1|) 61)) (-3593 (((-1256 |#1|) $ (-1256 $)) 51) (((-683 |#1|) (-1256 $) (-1256 $)) 50) (((-1256 |#1|) $) 67) (((-683 |#1|) (-1256 $)) 66)) (-4208 (((-1256 |#1|) $) 64) (($ (-1256 |#1|)) 63)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38)) (-2805 (((-3 $ "failed") $) 44 (|has| |#1| (-144)))) (-3376 ((|#2| $) 46)) (-2579 (((-766)) 28)) (-3928 (((-1256 $)) 68)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 13)) (-2300 ((|#1| $) 21 (|has| |#1| (-306)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL (|has| |#1| (-815)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 17) (((-3 (-1168) "failed") $) NIL (|has| |#1| (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) 70 (|has| |#1| (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562))))) (-3960 ((|#1| $) 15) (((-1168) $) NIL (|has| |#1| (-1033 (-1168)))) (((-406 (-562)) $) 67 (|has| |#1| (-1033 (-562)))) (((-562) $) NIL (|has| |#1| (-1033 (-562))))) (-1810 (($ $ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) 50)) (-1447 (($) NIL (|has| |#1| (-544)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2696 (((-112) $) NIL (|has| |#1| (-815)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| |#1| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| |#1| (-881 (-378))))) (-4367 (((-112) $) 64)) (-2957 (($ $) NIL)) (-4063 ((|#1| $) 71)) (-3828 (((-3 $ "failed") $) NIL (|has| |#1| (-1143)))) (-3855 (((-112) $) NIL (|has| |#1| (-815)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| |#1| (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 97)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2561 (($ $) NIL (|has| |#1| (-306)))) (-3870 ((|#1| $) 28 (|has| |#1| (-544)))) (-3586 (((-417 (-1164 $)) (-1164 $)) 135 (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) 131 (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) NIL (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-513 (-1168) |#1|)))) (-2044 (((-766) $) NIL)) (-2343 (($ $ |#1|) NIL (|has| |#1| (-285 |#1| |#1|)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) 63)) (-1580 (($ $) NIL)) (-4079 ((|#1| $) 73)) (-4208 (((-887 (-562)) $) NIL (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| |#1| (-610 (-887 (-378))))) (((-535) $) NIL (|has| |#1| (-610 (-535)))) (((-378) $) NIL (|has| |#1| (-1017))) (((-224) $) NIL (|has| |#1| (-1017)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 115 (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) 10) (($ (-1168)) NIL (|has| |#1| (-1033 (-1168))))) (-2059 (((-3 $ "failed") $) 99 (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) 100)) (-3636 ((|#1| $) 26 (|has| |#1| (-544)))) (-3799 (((-112) $ $) NIL)) (-2757 (($ $) NIL (|has| |#1| (-815)))) (-2285 (($) 22 T CONST)) (-2294 (($) 8 T CONST)) (-2332 (((-1150) $) 43 (-12 (|has| |#1| (-544)) (|has| |#1| (-823)))) (((-1150) $ (-112)) 44 (-12 (|has| |#1| (-544)) (|has| |#1| (-823)))) (((-1261) (-817) $) 45 (-12 (|has| |#1| (-544)) (|has| |#1| (-823)))) (((-1261) (-817) $ (-112)) 46 (-12 (|has| |#1| (-544)) (|has| |#1| (-823))))) (-3113 (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) 56)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) 24 (|has| |#1| (-845)))) (-1859 (($ $ $) 126) (($ |#1| |#1|) 52)) (-1847 (($ $) 25) (($ $ $) 55)) (-1836 (($ $ $) 53)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 125)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 60) (($ $ $) 57) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ |#1| $) 61) (($ $ |#1|) 85)))
+(((-406 |#1|) (-13 (-987 |#1|) (-10 -7 (IF (|has| |#1| (-544)) (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4390)) (IF (|has| |#1| (-451)) (IF (|has| |#1| (-6 -4401)) (-6 -4390) |%noBranch|) |%noBranch|) |%noBranch|))) (-554)) (T -406))
+NIL
+(-13 (-987 |#1|) (-10 -7 (IF (|has| |#1| (-544)) (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4390)) (IF (|has| |#1| (-451)) (IF (|has| |#1| (-6 -4401)) (-6 -4390) |%noBranch|) |%noBranch|) |%noBranch|)))
+((-4342 (((-683 |#2|) (-1256 $)) NIL) (((-683 |#2|)) 18)) (-3916 (($ (-1256 |#2|) (-1256 $)) NIL) (($ (-1256 |#2|)) 24)) (-4376 (((-683 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) $) 38)) (-1937 ((|#3| $) 60)) (-2736 ((|#2| (-1256 $)) NIL) ((|#2|) 20)) (-2205 (((-1256 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) (-1256 $) (-1256 $)) NIL) (((-1256 |#2|) $) 22) (((-683 |#2|) (-1256 $)) 36)) (-4208 (((-1256 |#2|) $) 11) (($ (-1256 |#2|)) 13)) (-3683 ((|#3| $) 52)))
+(((-407 |#1| |#2| |#3|) (-10 -8 (-15 -4376 ((-683 |#2|) |#1|)) (-15 -2736 (|#2|)) (-15 -4342 ((-683 |#2|))) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -3916 (|#1| (-1256 |#2|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1|)) (-15 -1937 (|#3| |#1|)) (-15 -3683 (|#3| |#1|)) (-15 -4342 ((-683 |#2|) (-1256 |#1|))) (-15 -2736 (|#2| (-1256 |#1|))) (-15 -3916 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -4376 ((-683 |#2|) |#1| (-1256 |#1|)))) (-408 |#2| |#3|) (-171) (-1232 |#2|)) (T -407))
+((-4342 (*1 *2) (-12 (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-683 *4)) (-5 *1 (-407 *3 *4 *5)) (-4 *3 (-408 *4 *5)))) (-2736 (*1 *2) (-12 (-4 *4 (-1232 *2)) (-4 *2 (-171)) (-5 *1 (-407 *3 *2 *4)) (-4 *3 (-408 *2 *4)))))
+(-10 -8 (-15 -4376 ((-683 |#2|) |#1|)) (-15 -2736 (|#2|)) (-15 -4342 ((-683 |#2|))) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -3916 (|#1| (-1256 |#2|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1|)) (-15 -1937 (|#3| |#1|)) (-15 -3683 (|#3| |#1|)) (-15 -4342 ((-683 |#2|) (-1256 |#1|))) (-15 -2736 (|#2| (-1256 |#1|))) (-15 -3916 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -4376 ((-683 |#2|) |#1| (-1256 |#1|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-4342 (((-683 |#1|) (-1256 $)) 47) (((-683 |#1|)) 62)) (-1748 ((|#1| $) 53)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3916 (($ (-1256 |#1|) (-1256 $)) 49) (($ (-1256 |#1|)) 65)) (-4376 (((-683 |#1|) $ (-1256 $)) 54) (((-683 |#1|) $) 60)) (-1694 (((-3 $ "failed") $) 33)) (-2172 (((-916)) 55)) (-4367 (((-112) $) 31)) (-4363 ((|#1| $) 52)) (-1937 ((|#2| $) 45 (|has| |#1| (-362)))) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2736 ((|#1| (-1256 $)) 48) ((|#1|) 61)) (-2205 (((-1256 |#1|) $ (-1256 $)) 51) (((-683 |#1|) (-1256 $) (-1256 $)) 50) (((-1256 |#1|) $) 67) (((-683 |#1|) (-1256 $)) 66)) (-4208 (((-1256 |#1|) $) 64) (($ (-1256 |#1|)) 63)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38)) (-2059 (((-3 $ "failed") $) 44 (|has| |#1| (-144)))) (-3683 ((|#2| $) 46)) (-1568 (((-766)) 28)) (-4291 (((-1256 $)) 68)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-408 |#1| |#2|) (-139) (-171) (-1232 |t#1|)) (T -408))
-((-3928 (*1 *2) (-12 (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-1256 *1)) (-4 *1 (-408 *3 *4)))) (-3593 (*1 *2 *1) (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-1256 *3)))) (-3593 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-408 *4 *5)) (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-683 *4)))) (-4018 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-171)) (-4 *1 (-408 *3 *4)) (-4 *4 (-1232 *3)))) (-4208 (*1 *2 *1) (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-1256 *3)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-171)) (-4 *1 (-408 *3 *4)) (-4 *4 (-1232 *3)))) (-1636 (*1 *2) (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-683 *3)))) (-2455 (*1 *2) (-12 (-4 *1 (-408 *2 *3)) (-4 *3 (-1232 *2)) (-4 *2 (-171)))) (-1958 (*1 *2 *1) (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-683 *3)))))
-(-13 (-369 |t#1| |t#2|) (-10 -8 (-15 -3928 ((-1256 $))) (-15 -3593 ((-1256 |t#1|) $)) (-15 -3593 ((-683 |t#1|) (-1256 $))) (-15 -4018 ($ (-1256 |t#1|))) (-15 -4208 ((-1256 |t#1|) $)) (-15 -4208 ($ (-1256 |t#1|))) (-15 -1636 ((-683 |t#1|))) (-15 -2455 (|t#1|)) (-15 -1958 ((-683 |t#1|) $))))
+((-4291 (*1 *2) (-12 (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-1256 *1)) (-4 *1 (-408 *3 *4)))) (-2205 (*1 *2 *1) (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-1256 *3)))) (-2205 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-408 *4 *5)) (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-683 *4)))) (-3916 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-171)) (-4 *1 (-408 *3 *4)) (-4 *4 (-1232 *3)))) (-4208 (*1 *2 *1) (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-1256 *3)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-171)) (-4 *1 (-408 *3 *4)) (-4 *4 (-1232 *3)))) (-4342 (*1 *2) (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-683 *3)))) (-2736 (*1 *2) (-12 (-4 *1 (-408 *2 *3)) (-4 *3 (-1232 *2)) (-4 *2 (-171)))) (-4376 (*1 *2 *1) (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-683 *3)))))
+(-13 (-369 |t#1| |t#2|) (-10 -8 (-15 -4291 ((-1256 $))) (-15 -2205 ((-1256 |t#1|) $)) (-15 -2205 ((-683 |t#1|) (-1256 $))) (-15 -3916 ($ (-1256 |t#1|))) (-15 -4208 ((-1256 |t#1|) $)) (-15 -4208 ($ (-1256 |t#1|))) (-15 -4342 ((-683 |t#1|))) (-15 -2736 (|t#1|)) (-15 -4376 ((-683 |t#1|) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-609 (-857)) . T) ((-369 |#1| |#2|) . T) ((-642 |#1|) . T) ((-642 $) . T) ((-712 |#1|) . T) ((-721) . T) ((-1050 |#1|) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) 27) (((-3 (-562) "failed") $) 19)) (-3961 ((|#2| $) NIL) (((-406 (-562)) $) 24) (((-562) $) 14)) (-4054 (($ |#2|) NIL) (($ (-406 (-562))) 22) (($ (-562)) 11)))
-(((-409 |#1| |#2|) (-10 -8 (-15 -4054 (|#1| (-562))) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4054 (|#1| |#2|))) (-410 |#2|) (-1207)) (T -409))
+((-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) 27) (((-3 (-562) "failed") $) 19)) (-3960 ((|#2| $) NIL) (((-406 (-562)) $) 24) (((-562) $) 14)) (-4053 (($ |#2|) NIL) (($ (-406 (-562))) 22) (($ (-562)) 11)))
+(((-409 |#1| |#2|) (-10 -8 (-15 -4053 (|#1| (-562))) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4053 (|#1| |#2|))) (-410 |#2|) (-1207)) (T -409))
NIL
-(-10 -8 (-15 -4054 (|#1| (-562))) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4054 (|#1| |#2|)))
-((-4048 (((-3 |#1| "failed") $) 9) (((-3 (-406 (-562)) "failed") $) 16 (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) 13 (|has| |#1| (-1033 (-562))))) (-3961 ((|#1| $) 8) (((-406 (-562)) $) 17 (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) 14 (|has| |#1| (-1033 (-562))))) (-4054 (($ |#1|) 6) (($ (-406 (-562))) 15 (|has| |#1| (-1033 (-406 (-562))))) (($ (-562)) 12 (|has| |#1| (-1033 (-562))))))
+(-10 -8 (-15 -4053 (|#1| (-562))) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4053 (|#1| |#2|)))
+((-4048 (((-3 |#1| "failed") $) 9) (((-3 (-406 (-562)) "failed") $) 16 (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) 13 (|has| |#1| (-1033 (-562))))) (-3960 ((|#1| $) 8) (((-406 (-562)) $) 17 (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) 14 (|has| |#1| (-1033 (-562))))) (-4053 (($ |#1|) 6) (($ (-406 (-562))) 15 (|has| |#1| (-1033 (-406 (-562))))) (($ (-562)) 12 (|has| |#1| (-1033 (-562))))))
(((-410 |#1|) (-139) (-1207)) (T -410))
NIL
(-13 (-1033 |t#1|) (-10 -7 (IF (|has| |t#1| (-1033 (-562))) (-6 (-1033 (-562))) |%noBranch|) (IF (|has| |t#1| (-1033 (-406 (-562)))) (-6 (-1033 (-406 (-562)))) |%noBranch|)))
@@ -1646,415 +1646,415 @@ NIL
(((-411 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -4152 ((-412 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-412 |#1| |#2| |#3| |#4|)))) (-306) (-987 |#1|) (-1232 |#2|) (-13 (-408 |#2| |#3|) (-1033 |#2|)) (-306) (-987 |#5|) (-1232 |#6|) (-13 (-408 |#6| |#7|) (-1033 |#6|))) (T -411))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-412 *5 *6 *7 *8)) (-4 *5 (-306)) (-4 *6 (-987 *5)) (-4 *7 (-1232 *6)) (-4 *8 (-13 (-408 *6 *7) (-1033 *6))) (-4 *9 (-306)) (-4 *10 (-987 *9)) (-4 *11 (-1232 *10)) (-5 *2 (-412 *9 *10 *11 *12)) (-5 *1 (-411 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-408 *10 *11) (-1033 *10))))))
(-10 -7 (-15 -4152 ((-412 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-412 |#1| |#2| |#3| |#4|))))
-((-4041 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) NIL)) (-3133 ((|#4| (-766) (-1256 |#4|)) 56)) (-1957 (((-112) $) NIL)) (-4065 (((-1256 |#4|) $) 17)) (-2247 ((|#2| $) 54)) (-2904 (($ $) 139)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 100)) (-1366 (($ (-1256 |#4|)) 99)) (-1709 (((-1112) $) NIL)) (-4076 ((|#1| $) 18)) (-3665 (($ $ $) NIL)) (-1911 (($ $ $) NIL)) (-4054 (((-857) $) 134)) (-3928 (((-1256 |#4|) $) 129)) (-2294 (($) 11 T CONST)) (-1731 (((-112) $ $) 40)) (-1859 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 122)) (* (($ $ $) 121)))
-(((-412 |#1| |#2| |#3| |#4|) (-13 (-472) (-10 -8 (-15 -1366 ($ (-1256 |#4|))) (-15 -3928 ((-1256 |#4|) $)) (-15 -2247 (|#2| $)) (-15 -4065 ((-1256 |#4|) $)) (-15 -4076 (|#1| $)) (-15 -2904 ($ $)) (-15 -3133 (|#4| (-766) (-1256 |#4|))))) (-306) (-987 |#1|) (-1232 |#2|) (-13 (-408 |#2| |#3|) (-1033 |#2|))) (T -412))
-((-1366 (*1 *1 *2) (-12 (-5 *2 (-1256 *6)) (-4 *6 (-13 (-408 *4 *5) (-1033 *4))) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-4 *3 (-306)) (-5 *1 (-412 *3 *4 *5 *6)))) (-3928 (*1 *2 *1) (-12 (-4 *3 (-306)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-5 *2 (-1256 *6)) (-5 *1 (-412 *3 *4 *5 *6)) (-4 *6 (-13 (-408 *4 *5) (-1033 *4))))) (-2247 (*1 *2 *1) (-12 (-4 *4 (-1232 *2)) (-4 *2 (-987 *3)) (-5 *1 (-412 *3 *2 *4 *5)) (-4 *3 (-306)) (-4 *5 (-13 (-408 *2 *4) (-1033 *2))))) (-4065 (*1 *2 *1) (-12 (-4 *3 (-306)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-5 *2 (-1256 *6)) (-5 *1 (-412 *3 *4 *5 *6)) (-4 *6 (-13 (-408 *4 *5) (-1033 *4))))) (-4076 (*1 *2 *1) (-12 (-4 *3 (-987 *2)) (-4 *4 (-1232 *3)) (-4 *2 (-306)) (-5 *1 (-412 *2 *3 *4 *5)) (-4 *5 (-13 (-408 *3 *4) (-1033 *3))))) (-2904 (*1 *1 *1) (-12 (-4 *2 (-306)) (-4 *3 (-987 *2)) (-4 *4 (-1232 *3)) (-5 *1 (-412 *2 *3 *4 *5)) (-4 *5 (-13 (-408 *3 *4) (-1033 *3))))) (-3133 (*1 *2 *3 *4) (-12 (-5 *3 (-766)) (-5 *4 (-1256 *2)) (-4 *5 (-306)) (-4 *6 (-987 *5)) (-4 *2 (-13 (-408 *6 *7) (-1033 *6))) (-5 *1 (-412 *5 *6 *7 *2)) (-4 *7 (-1232 *6)))))
-(-13 (-472) (-10 -8 (-15 -1366 ($ (-1256 |#4|))) (-15 -3928 ((-1256 |#4|) $)) (-15 -2247 (|#2| $)) (-15 -4065 ((-1256 |#4|) $)) (-15 -4076 (|#1| $)) (-15 -2904 ($ $)) (-15 -3133 (|#4| (-766) (-1256 |#4|)))))
-((-4041 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) NIL)) (-1957 (((-112) $) NIL)) (-2247 ((|#2| $) 61)) (-4309 (($ (-1256 |#4|)) 25) (($ (-412 |#1| |#2| |#3| |#4|)) 76 (|has| |#4| (-1033 |#2|)))) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 34)) (-3928 (((-1256 |#4|) $) 26)) (-2294 (($) 23 T CONST)) (-1731 (((-112) $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ $ $) 72)))
-(((-413 |#1| |#2| |#3| |#4| |#5|) (-13 (-721) (-10 -8 (-15 -3928 ((-1256 |#4|) $)) (-15 -2247 (|#2| $)) (-15 -4309 ($ (-1256 |#4|))) (IF (|has| |#4| (-1033 |#2|)) (-15 -4309 ($ (-412 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-306) (-987 |#1|) (-1232 |#2|) (-408 |#2| |#3|) (-1256 |#4|)) (T -413))
-((-3928 (*1 *2 *1) (-12 (-4 *3 (-306)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-5 *2 (-1256 *6)) (-5 *1 (-413 *3 *4 *5 *6 *7)) (-4 *6 (-408 *4 *5)) (-14 *7 *2))) (-2247 (*1 *2 *1) (-12 (-4 *4 (-1232 *2)) (-4 *2 (-987 *3)) (-5 *1 (-413 *3 *2 *4 *5 *6)) (-4 *3 (-306)) (-4 *5 (-408 *2 *4)) (-14 *6 (-1256 *5)))) (-4309 (*1 *1 *2) (-12 (-5 *2 (-1256 *6)) (-4 *6 (-408 *4 *5)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-4 *3 (-306)) (-5 *1 (-413 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-4309 (*1 *1 *2) (-12 (-5 *2 (-412 *3 *4 *5 *6)) (-4 *6 (-1033 *4)) (-4 *3 (-306)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-4 *6 (-408 *4 *5)) (-14 *7 (-1256 *6)) (-5 *1 (-413 *3 *4 *5 *6 *7)))))
-(-13 (-721) (-10 -8 (-15 -3928 ((-1256 |#4|) $)) (-15 -2247 (|#2| $)) (-15 -4309 ($ (-1256 |#4|))) (IF (|has| |#4| (-1033 |#2|)) (-15 -4309 ($ (-412 |#1| |#2| |#3| |#4|))) |%noBranch|)))
+((-4041 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) NIL)) (-3182 ((|#4| (-766) (-1256 |#4|)) 56)) (-4367 (((-112) $) NIL)) (-4063 (((-1256 |#4|) $) 17)) (-4363 ((|#2| $) 54)) (-3619 (($ $) 139)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 100)) (-1387 (($ (-1256 |#4|)) 99)) (-1709 (((-1112) $) NIL)) (-4079 ((|#1| $) 18)) (-1660 (($ $ $) NIL)) (-2114 (($ $ $) NIL)) (-4053 (((-857) $) 134)) (-4291 (((-1256 |#4|) $) 129)) (-2294 (($) 11 T CONST)) (-1733 (((-112) $ $) 40)) (-1859 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 122)) (* (($ $ $) 121)))
+(((-412 |#1| |#2| |#3| |#4|) (-13 (-472) (-10 -8 (-15 -1387 ($ (-1256 |#4|))) (-15 -4291 ((-1256 |#4|) $)) (-15 -4363 (|#2| $)) (-15 -4063 ((-1256 |#4|) $)) (-15 -4079 (|#1| $)) (-15 -3619 ($ $)) (-15 -3182 (|#4| (-766) (-1256 |#4|))))) (-306) (-987 |#1|) (-1232 |#2|) (-13 (-408 |#2| |#3|) (-1033 |#2|))) (T -412))
+((-1387 (*1 *1 *2) (-12 (-5 *2 (-1256 *6)) (-4 *6 (-13 (-408 *4 *5) (-1033 *4))) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-4 *3 (-306)) (-5 *1 (-412 *3 *4 *5 *6)))) (-4291 (*1 *2 *1) (-12 (-4 *3 (-306)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-5 *2 (-1256 *6)) (-5 *1 (-412 *3 *4 *5 *6)) (-4 *6 (-13 (-408 *4 *5) (-1033 *4))))) (-4363 (*1 *2 *1) (-12 (-4 *4 (-1232 *2)) (-4 *2 (-987 *3)) (-5 *1 (-412 *3 *2 *4 *5)) (-4 *3 (-306)) (-4 *5 (-13 (-408 *2 *4) (-1033 *2))))) (-4063 (*1 *2 *1) (-12 (-4 *3 (-306)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-5 *2 (-1256 *6)) (-5 *1 (-412 *3 *4 *5 *6)) (-4 *6 (-13 (-408 *4 *5) (-1033 *4))))) (-4079 (*1 *2 *1) (-12 (-4 *3 (-987 *2)) (-4 *4 (-1232 *3)) (-4 *2 (-306)) (-5 *1 (-412 *2 *3 *4 *5)) (-4 *5 (-13 (-408 *3 *4) (-1033 *3))))) (-3619 (*1 *1 *1) (-12 (-4 *2 (-306)) (-4 *3 (-987 *2)) (-4 *4 (-1232 *3)) (-5 *1 (-412 *2 *3 *4 *5)) (-4 *5 (-13 (-408 *3 *4) (-1033 *3))))) (-3182 (*1 *2 *3 *4) (-12 (-5 *3 (-766)) (-5 *4 (-1256 *2)) (-4 *5 (-306)) (-4 *6 (-987 *5)) (-4 *2 (-13 (-408 *6 *7) (-1033 *6))) (-5 *1 (-412 *5 *6 *7 *2)) (-4 *7 (-1232 *6)))))
+(-13 (-472) (-10 -8 (-15 -1387 ($ (-1256 |#4|))) (-15 -4291 ((-1256 |#4|) $)) (-15 -4363 (|#2| $)) (-15 -4063 ((-1256 |#4|) $)) (-15 -4079 (|#1| $)) (-15 -3619 ($ $)) (-15 -3182 (|#4| (-766) (-1256 |#4|)))))
+((-4041 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) NIL)) (-4367 (((-112) $) NIL)) (-4363 ((|#2| $) 61)) (-1685 (($ (-1256 |#4|)) 25) (($ (-412 |#1| |#2| |#3| |#4|)) 76 (|has| |#4| (-1033 |#2|)))) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 34)) (-4291 (((-1256 |#4|) $) 26)) (-2294 (($) 23 T CONST)) (-1733 (((-112) $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ $ $) 72)))
+(((-413 |#1| |#2| |#3| |#4| |#5|) (-13 (-721) (-10 -8 (-15 -4291 ((-1256 |#4|) $)) (-15 -4363 (|#2| $)) (-15 -1685 ($ (-1256 |#4|))) (IF (|has| |#4| (-1033 |#2|)) (-15 -1685 ($ (-412 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-306) (-987 |#1|) (-1232 |#2|) (-408 |#2| |#3|) (-1256 |#4|)) (T -413))
+((-4291 (*1 *2 *1) (-12 (-4 *3 (-306)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-5 *2 (-1256 *6)) (-5 *1 (-413 *3 *4 *5 *6 *7)) (-4 *6 (-408 *4 *5)) (-14 *7 *2))) (-4363 (*1 *2 *1) (-12 (-4 *4 (-1232 *2)) (-4 *2 (-987 *3)) (-5 *1 (-413 *3 *2 *4 *5 *6)) (-4 *3 (-306)) (-4 *5 (-408 *2 *4)) (-14 *6 (-1256 *5)))) (-1685 (*1 *1 *2) (-12 (-5 *2 (-1256 *6)) (-4 *6 (-408 *4 *5)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-4 *3 (-306)) (-5 *1 (-413 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-1685 (*1 *1 *2) (-12 (-5 *2 (-412 *3 *4 *5 *6)) (-4 *6 (-1033 *4)) (-4 *3 (-306)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-4 *6 (-408 *4 *5)) (-14 *7 (-1256 *6)) (-5 *1 (-413 *3 *4 *5 *6 *7)))))
+(-13 (-721) (-10 -8 (-15 -4291 ((-1256 |#4|) $)) (-15 -4363 (|#2| $)) (-15 -1685 ($ (-1256 |#4|))) (IF (|has| |#4| (-1033 |#2|)) (-15 -1685 ($ (-412 |#1| |#2| |#3| |#4|))) |%noBranch|)))
((-4152 ((|#3| (-1 |#4| |#2|) |#1|) 26)))
(((-414 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4152 (|#3| (-1 |#4| |#2|) |#1|))) (-416 |#2|) (-171) (-416 |#4|) (-171)) (T -414))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-171)) (-4 *6 (-171)) (-4 *2 (-416 *6)) (-5 *1 (-414 *4 *5 *2 *6)) (-4 *4 (-416 *5)))))
(-10 -7 (-15 -4152 (|#3| (-1 |#4| |#2|) |#1|)))
-((-3931 (((-3 $ "failed")) 86)) (-1902 (((-1256 (-683 |#2|)) (-1256 $)) NIL) (((-1256 (-683 |#2|))) 91)) (-2874 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) 85)) (-2117 (((-3 $ "failed")) 84)) (-4356 (((-683 |#2|) (-1256 $)) NIL) (((-683 |#2|)) 102)) (-2966 (((-683 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) $) 110)) (-3407 (((-1164 (-947 |#2|))) 55)) (-2819 ((|#2| (-1256 $)) NIL) ((|#2|) 106)) (-4018 (($ (-1256 |#2|) (-1256 $)) NIL) (($ (-1256 |#2|)) 112)) (-1681 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) 83)) (-3700 (((-3 $ "failed")) 75)) (-3025 (((-683 |#2|) (-1256 $)) NIL) (((-683 |#2|)) 100)) (-1671 (((-683 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) $) 108)) (-2743 (((-1164 (-947 |#2|))) 54)) (-1305 ((|#2| (-1256 $)) NIL) ((|#2|) 104)) (-3593 (((-1256 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) (-1256 $) (-1256 $)) NIL) (((-1256 |#2|) $) 111) (((-683 |#2|) (-1256 $)) 118)) (-4208 (((-1256 |#2|) $) 96) (($ (-1256 |#2|)) 98)) (-4136 (((-639 (-947 |#2|)) (-1256 $)) NIL) (((-639 (-947 |#2|))) 94)) (-1360 (($ (-683 |#2|) $) 90)))
-(((-415 |#1| |#2|) (-10 -8 (-15 -1360 (|#1| (-683 |#2|) |#1|)) (-15 -3407 ((-1164 (-947 |#2|)))) (-15 -2743 ((-1164 (-947 |#2|)))) (-15 -2966 ((-683 |#2|) |#1|)) (-15 -1671 ((-683 |#2|) |#1|)) (-15 -4356 ((-683 |#2|))) (-15 -3025 ((-683 |#2|))) (-15 -2819 (|#2|)) (-15 -1305 (|#2|)) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -4018 (|#1| (-1256 |#2|))) (-15 -4136 ((-639 (-947 |#2|)))) (-15 -1902 ((-1256 (-683 |#2|)))) (-15 -3593 ((-683 |#2|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1|)) (-15 -3931 ((-3 |#1| "failed"))) (-15 -2117 ((-3 |#1| "failed"))) (-15 -3700 ((-3 |#1| "failed"))) (-15 -2874 ((-3 (-2 (|:| |particular| |#1|) (|:| -3928 (-639 |#1|))) "failed"))) (-15 -1681 ((-3 (-2 (|:| |particular| |#1|) (|:| -3928 (-639 |#1|))) "failed"))) (-15 -4356 ((-683 |#2|) (-1256 |#1|))) (-15 -3025 ((-683 |#2|) (-1256 |#1|))) (-15 -2819 (|#2| (-1256 |#1|))) (-15 -1305 (|#2| (-1256 |#1|))) (-15 -4018 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -2966 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -1671 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -1902 ((-1256 (-683 |#2|)) (-1256 |#1|))) (-15 -4136 ((-639 (-947 |#2|)) (-1256 |#1|)))) (-416 |#2|) (-171)) (T -415))
-((-1902 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-1256 (-683 *4))) (-5 *1 (-415 *3 *4)) (-4 *3 (-416 *4)))) (-4136 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-639 (-947 *4))) (-5 *1 (-415 *3 *4)) (-4 *3 (-416 *4)))) (-1305 (*1 *2) (-12 (-4 *2 (-171)) (-5 *1 (-415 *3 *2)) (-4 *3 (-416 *2)))) (-2819 (*1 *2) (-12 (-4 *2 (-171)) (-5 *1 (-415 *3 *2)) (-4 *3 (-416 *2)))) (-3025 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-683 *4)) (-5 *1 (-415 *3 *4)) (-4 *3 (-416 *4)))) (-4356 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-683 *4)) (-5 *1 (-415 *3 *4)) (-4 *3 (-416 *4)))) (-2743 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-1164 (-947 *4))) (-5 *1 (-415 *3 *4)) (-4 *3 (-416 *4)))) (-3407 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-1164 (-947 *4))) (-5 *1 (-415 *3 *4)) (-4 *3 (-416 *4)))))
-(-10 -8 (-15 -1360 (|#1| (-683 |#2|) |#1|)) (-15 -3407 ((-1164 (-947 |#2|)))) (-15 -2743 ((-1164 (-947 |#2|)))) (-15 -2966 ((-683 |#2|) |#1|)) (-15 -1671 ((-683 |#2|) |#1|)) (-15 -4356 ((-683 |#2|))) (-15 -3025 ((-683 |#2|))) (-15 -2819 (|#2|)) (-15 -1305 (|#2|)) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -4018 (|#1| (-1256 |#2|))) (-15 -4136 ((-639 (-947 |#2|)))) (-15 -1902 ((-1256 (-683 |#2|)))) (-15 -3593 ((-683 |#2|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1|)) (-15 -3931 ((-3 |#1| "failed"))) (-15 -2117 ((-3 |#1| "failed"))) (-15 -3700 ((-3 |#1| "failed"))) (-15 -2874 ((-3 (-2 (|:| |particular| |#1|) (|:| -3928 (-639 |#1|))) "failed"))) (-15 -1681 ((-3 (-2 (|:| |particular| |#1|) (|:| -3928 (-639 |#1|))) "failed"))) (-15 -4356 ((-683 |#2|) (-1256 |#1|))) (-15 -3025 ((-683 |#2|) (-1256 |#1|))) (-15 -2819 (|#2| (-1256 |#1|))) (-15 -1305 (|#2| (-1256 |#1|))) (-15 -4018 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -3593 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -3593 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -2966 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -1671 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -1902 ((-1256 (-683 |#2|)) (-1256 |#1|))) (-15 -4136 ((-639 (-947 |#2|)) (-1256 |#1|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3931 (((-3 $ "failed")) 37 (|has| |#1| (-554)))) (-3214 (((-3 $ "failed") $ $) 19)) (-1902 (((-1256 (-683 |#1|)) (-1256 $)) 78) (((-1256 (-683 |#1|))) 100)) (-3655 (((-1256 $)) 81)) (-1800 (($) 17 T CONST)) (-2874 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) 40 (|has| |#1| (-554)))) (-2117 (((-3 $ "failed")) 38 (|has| |#1| (-554)))) (-4356 (((-683 |#1|) (-1256 $)) 65) (((-683 |#1|)) 92)) (-2422 ((|#1| $) 74)) (-2966 (((-683 |#1|) $ (-1256 $)) 76) (((-683 |#1|) $) 90)) (-2545 (((-3 $ "failed") $) 45 (|has| |#1| (-554)))) (-3407 (((-1164 (-947 |#1|))) 88 (|has| |#1| (-362)))) (-1379 (($ $ (-916)) 28)) (-2355 ((|#1| $) 72)) (-3474 (((-1164 |#1|) $) 42 (|has| |#1| (-554)))) (-2819 ((|#1| (-1256 $)) 67) ((|#1|) 94)) (-2964 (((-1164 |#1|) $) 63)) (-2380 (((-112)) 57)) (-4018 (($ (-1256 |#1|) (-1256 $)) 69) (($ (-1256 |#1|)) 98)) (-3668 (((-3 $ "failed") $) 47 (|has| |#1| (-554)))) (-2173 (((-916)) 80)) (-1321 (((-112)) 54)) (-3650 (($ $ (-916)) 33)) (-3813 (((-112)) 50)) (-3375 (((-112)) 48)) (-4258 (((-112)) 52)) (-1681 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) 41 (|has| |#1| (-554)))) (-3700 (((-3 $ "failed")) 39 (|has| |#1| (-554)))) (-3025 (((-683 |#1|) (-1256 $)) 66) (((-683 |#1|)) 93)) (-4153 ((|#1| $) 75)) (-1671 (((-683 |#1|) $ (-1256 $)) 77) (((-683 |#1|) $) 91)) (-4238 (((-3 $ "failed") $) 46 (|has| |#1| (-554)))) (-2743 (((-1164 (-947 |#1|))) 89 (|has| |#1| (-362)))) (-2991 (($ $ (-916)) 29)) (-1680 ((|#1| $) 73)) (-2026 (((-1164 |#1|) $) 43 (|has| |#1| (-554)))) (-1305 ((|#1| (-1256 $)) 68) ((|#1|) 95)) (-2670 (((-1164 |#1|) $) 64)) (-2090 (((-112)) 58)) (-2913 (((-1150) $) 9)) (-2144 (((-112)) 49)) (-2580 (((-112)) 51)) (-2809 (((-112)) 53)) (-1709 (((-1112) $) 10)) (-4323 (((-112)) 56)) (-2343 ((|#1| $ (-562)) 101)) (-3593 (((-1256 |#1|) $ (-1256 $)) 71) (((-683 |#1|) (-1256 $) (-1256 $)) 70) (((-1256 |#1|) $) 103) (((-683 |#1|) (-1256 $)) 102)) (-4208 (((-1256 |#1|) $) 97) (($ (-1256 |#1|)) 96)) (-4136 (((-639 (-947 |#1|)) (-1256 $)) 79) (((-639 (-947 |#1|))) 99)) (-1911 (($ $ $) 25)) (-1396 (((-112)) 62)) (-4054 (((-857) $) 11)) (-3928 (((-1256 $)) 104)) (-3553 (((-639 (-1256 |#1|))) 44 (|has| |#1| (-554)))) (-2436 (($ $ $ $) 26)) (-2850 (((-112)) 60)) (-1360 (($ (-683 |#1|) $) 87)) (-3626 (($ $ $) 24)) (-1981 (((-112)) 61)) (-3199 (((-112)) 59)) (-4114 (((-112)) 55)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 30)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+((-4310 (((-3 $ "failed")) 86)) (-2016 (((-1256 (-683 |#2|)) (-1256 $)) NIL) (((-1256 (-683 |#2|))) 91)) (-1469 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) 85)) (-2447 (((-3 $ "failed")) 84)) (-3945 (((-683 |#2|) (-1256 $)) NIL) (((-683 |#2|)) 102)) (-2995 (((-683 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) $) 110)) (-3996 (((-1164 (-947 |#2|))) 55)) (-2200 ((|#2| (-1256 $)) NIL) ((|#2|) 106)) (-3916 (($ (-1256 |#2|) (-1256 $)) NIL) (($ (-1256 |#2|)) 112)) (-3502 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) 83)) (-3839 (((-3 $ "failed")) 75)) (-3506 (((-683 |#2|) (-1256 $)) NIL) (((-683 |#2|)) 100)) (-1583 (((-683 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) $) 108)) (-2620 (((-1164 (-947 |#2|))) 54)) (-1636 ((|#2| (-1256 $)) NIL) ((|#2|) 104)) (-2205 (((-1256 |#2|) $ (-1256 $)) NIL) (((-683 |#2|) (-1256 $) (-1256 $)) NIL) (((-1256 |#2|) $) 111) (((-683 |#2|) (-1256 $)) 118)) (-4208 (((-1256 |#2|) $) 96) (($ (-1256 |#2|)) 98)) (-2555 (((-639 (-947 |#2|)) (-1256 $)) NIL) (((-639 (-947 |#2|))) 94)) (-1360 (($ (-683 |#2|) $) 90)))
+(((-415 |#1| |#2|) (-10 -8 (-15 -1360 (|#1| (-683 |#2|) |#1|)) (-15 -3996 ((-1164 (-947 |#2|)))) (-15 -2620 ((-1164 (-947 |#2|)))) (-15 -2995 ((-683 |#2|) |#1|)) (-15 -1583 ((-683 |#2|) |#1|)) (-15 -3945 ((-683 |#2|))) (-15 -3506 ((-683 |#2|))) (-15 -2200 (|#2|)) (-15 -1636 (|#2|)) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -3916 (|#1| (-1256 |#2|))) (-15 -2555 ((-639 (-947 |#2|)))) (-15 -2016 ((-1256 (-683 |#2|)))) (-15 -2205 ((-683 |#2|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1|)) (-15 -4310 ((-3 |#1| "failed"))) (-15 -2447 ((-3 |#1| "failed"))) (-15 -3839 ((-3 |#1| "failed"))) (-15 -1469 ((-3 (-2 (|:| |particular| |#1|) (|:| -4291 (-639 |#1|))) "failed"))) (-15 -3502 ((-3 (-2 (|:| |particular| |#1|) (|:| -4291 (-639 |#1|))) "failed"))) (-15 -3945 ((-683 |#2|) (-1256 |#1|))) (-15 -3506 ((-683 |#2|) (-1256 |#1|))) (-15 -2200 (|#2| (-1256 |#1|))) (-15 -1636 (|#2| (-1256 |#1|))) (-15 -3916 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -2995 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -1583 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -2016 ((-1256 (-683 |#2|)) (-1256 |#1|))) (-15 -2555 ((-639 (-947 |#2|)) (-1256 |#1|)))) (-416 |#2|) (-171)) (T -415))
+((-2016 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-1256 (-683 *4))) (-5 *1 (-415 *3 *4)) (-4 *3 (-416 *4)))) (-2555 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-639 (-947 *4))) (-5 *1 (-415 *3 *4)) (-4 *3 (-416 *4)))) (-1636 (*1 *2) (-12 (-4 *2 (-171)) (-5 *1 (-415 *3 *2)) (-4 *3 (-416 *2)))) (-2200 (*1 *2) (-12 (-4 *2 (-171)) (-5 *1 (-415 *3 *2)) (-4 *3 (-416 *2)))) (-3506 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-683 *4)) (-5 *1 (-415 *3 *4)) (-4 *3 (-416 *4)))) (-3945 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-683 *4)) (-5 *1 (-415 *3 *4)) (-4 *3 (-416 *4)))) (-2620 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-1164 (-947 *4))) (-5 *1 (-415 *3 *4)) (-4 *3 (-416 *4)))) (-3996 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-1164 (-947 *4))) (-5 *1 (-415 *3 *4)) (-4 *3 (-416 *4)))))
+(-10 -8 (-15 -1360 (|#1| (-683 |#2|) |#1|)) (-15 -3996 ((-1164 (-947 |#2|)))) (-15 -2620 ((-1164 (-947 |#2|)))) (-15 -2995 ((-683 |#2|) |#1|)) (-15 -1583 ((-683 |#2|) |#1|)) (-15 -3945 ((-683 |#2|))) (-15 -3506 ((-683 |#2|))) (-15 -2200 (|#2|)) (-15 -1636 (|#2|)) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -3916 (|#1| (-1256 |#2|))) (-15 -2555 ((-639 (-947 |#2|)))) (-15 -2016 ((-1256 (-683 |#2|)))) (-15 -2205 ((-683 |#2|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1|)) (-15 -4310 ((-3 |#1| "failed"))) (-15 -2447 ((-3 |#1| "failed"))) (-15 -3839 ((-3 |#1| "failed"))) (-15 -1469 ((-3 (-2 (|:| |particular| |#1|) (|:| -4291 (-639 |#1|))) "failed"))) (-15 -3502 ((-3 (-2 (|:| |particular| |#1|) (|:| -4291 (-639 |#1|))) "failed"))) (-15 -3945 ((-683 |#2|) (-1256 |#1|))) (-15 -3506 ((-683 |#2|) (-1256 |#1|))) (-15 -2200 (|#2| (-1256 |#1|))) (-15 -1636 (|#2| (-1256 |#1|))) (-15 -3916 (|#1| (-1256 |#2|) (-1256 |#1|))) (-15 -2205 ((-683 |#2|) (-1256 |#1|) (-1256 |#1|))) (-15 -2205 ((-1256 |#2|) |#1| (-1256 |#1|))) (-15 -2995 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -1583 ((-683 |#2|) |#1| (-1256 |#1|))) (-15 -2016 ((-1256 (-683 |#2|)) (-1256 |#1|))) (-15 -2555 ((-639 (-947 |#2|)) (-1256 |#1|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-4310 (((-3 $ "failed")) 37 (|has| |#1| (-554)))) (-2781 (((-3 $ "failed") $ $) 19)) (-2016 (((-1256 (-683 |#1|)) (-1256 $)) 78) (((-1256 (-683 |#1|))) 100)) (-1540 (((-1256 $)) 81)) (-3329 (($) 17 T CONST)) (-1469 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) 40 (|has| |#1| (-554)))) (-2447 (((-3 $ "failed")) 38 (|has| |#1| (-554)))) (-3945 (((-683 |#1|) (-1256 $)) 65) (((-683 |#1|)) 92)) (-2452 ((|#1| $) 74)) (-2995 (((-683 |#1|) $ (-1256 $)) 76) (((-683 |#1|) $) 90)) (-4276 (((-3 $ "failed") $) 45 (|has| |#1| (-554)))) (-3996 (((-1164 (-947 |#1|))) 88 (|has| |#1| (-362)))) (-2127 (($ $ (-916)) 28)) (-2949 ((|#1| $) 72)) (-3407 (((-1164 |#1|) $) 42 (|has| |#1| (-554)))) (-2200 ((|#1| (-1256 $)) 67) ((|#1|) 94)) (-2974 (((-1164 |#1|) $) 63)) (-3178 (((-112)) 57)) (-3916 (($ (-1256 |#1|) (-1256 $)) 69) (($ (-1256 |#1|)) 98)) (-1694 (((-3 $ "failed") $) 47 (|has| |#1| (-554)))) (-2172 (((-916)) 80)) (-1832 (((-112)) 54)) (-1492 (($ $ (-916)) 33)) (-2531 (((-112)) 50)) (-3671 (((-112)) 48)) (-2394 (((-112)) 52)) (-3502 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) 41 (|has| |#1| (-554)))) (-3839 (((-3 $ "failed")) 39 (|has| |#1| (-554)))) (-3506 (((-683 |#1|) (-1256 $)) 66) (((-683 |#1|)) 93)) (-2664 ((|#1| $) 75)) (-1583 (((-683 |#1|) $ (-1256 $)) 77) (((-683 |#1|) $) 91)) (-2217 (((-3 $ "failed") $) 46 (|has| |#1| (-554)))) (-2620 (((-1164 (-947 |#1|))) 89 (|has| |#1| (-362)))) (-3235 (($ $ (-916)) 29)) (-3495 ((|#1| $) 73)) (-3849 (((-1164 |#1|) $) 43 (|has| |#1| (-554)))) (-1636 ((|#1| (-1256 $)) 68) ((|#1|) 95)) (-3099 (((-1164 |#1|) $) 64)) (-3302 (((-112)) 58)) (-3696 (((-1150) $) 9)) (-2720 (((-112)) 49)) (-1579 (((-112)) 51)) (-2104 (((-112)) 53)) (-1709 (((-1112) $) 10)) (-3626 (((-112)) 56)) (-2343 ((|#1| $ (-562)) 101)) (-2205 (((-1256 |#1|) $ (-1256 $)) 71) (((-683 |#1|) (-1256 $) (-1256 $)) 70) (((-1256 |#1|) $) 103) (((-683 |#1|) (-1256 $)) 102)) (-4208 (((-1256 |#1|) $) 97) (($ (-1256 |#1|)) 96)) (-2555 (((-639 (-947 |#1|)) (-1256 $)) 79) (((-639 (-947 |#1|))) 99)) (-2114 (($ $ $) 25)) (-3901 (((-112)) 62)) (-4053 (((-857) $) 11)) (-4291 (((-1256 $)) 104)) (-1823 (((-639 (-1256 |#1|))) 44 (|has| |#1| (-554)))) (-2584 (($ $ $ $) 26)) (-4309 (((-112)) 60)) (-1360 (($ (-683 |#1|) $) 87)) (-4324 (($ $ $) 24)) (-1517 (((-112)) 61)) (-2636 (((-112)) 59)) (-3488 (((-112)) 55)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 30)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
(((-416 |#1|) (-139) (-171)) (T -416))
-((-3928 (*1 *2) (-12 (-4 *3 (-171)) (-5 *2 (-1256 *1)) (-4 *1 (-416 *3)))) (-3593 (*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-1256 *3)))) (-3593 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-416 *4)) (-4 *4 (-171)) (-5 *2 (-683 *4)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-416 *2)) (-4 *2 (-171)))) (-1902 (*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-1256 (-683 *3))))) (-4136 (*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-639 (-947 *3))))) (-4018 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-171)) (-4 *1 (-416 *3)))) (-4208 (*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-1256 *3)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-171)) (-4 *1 (-416 *3)))) (-1305 (*1 *2) (-12 (-4 *1 (-416 *2)) (-4 *2 (-171)))) (-2819 (*1 *2) (-12 (-4 *1 (-416 *2)) (-4 *2 (-171)))) (-3025 (*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))) (-4356 (*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))) (-1671 (*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))) (-2966 (*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))) (-2743 (*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-4 *3 (-362)) (-5 *2 (-1164 (-947 *3))))) (-3407 (*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-4 *3 (-362)) (-5 *2 (-1164 (-947 *3))))) (-1360 (*1 *1 *2 *1) (-12 (-5 *2 (-683 *3)) (-4 *1 (-416 *3)) (-4 *3 (-171)))))
-(-13 (-366 |t#1|) (-10 -8 (-15 -3928 ((-1256 $))) (-15 -3593 ((-1256 |t#1|) $)) (-15 -3593 ((-683 |t#1|) (-1256 $))) (-15 -2343 (|t#1| $ (-562))) (-15 -1902 ((-1256 (-683 |t#1|)))) (-15 -4136 ((-639 (-947 |t#1|)))) (-15 -4018 ($ (-1256 |t#1|))) (-15 -4208 ((-1256 |t#1|) $)) (-15 -4208 ($ (-1256 |t#1|))) (-15 -1305 (|t#1|)) (-15 -2819 (|t#1|)) (-15 -3025 ((-683 |t#1|))) (-15 -4356 ((-683 |t#1|))) (-15 -1671 ((-683 |t#1|) $)) (-15 -2966 ((-683 |t#1|) $)) (IF (|has| |t#1| (-362)) (PROGN (-15 -2743 ((-1164 (-947 |t#1|)))) (-15 -3407 ((-1164 (-947 |t#1|))))) |%noBranch|) (-15 -1360 ($ (-683 |t#1|) $))))
+((-4291 (*1 *2) (-12 (-4 *3 (-171)) (-5 *2 (-1256 *1)) (-4 *1 (-416 *3)))) (-2205 (*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-1256 *3)))) (-2205 (*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-416 *4)) (-4 *4 (-171)) (-5 *2 (-683 *4)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-416 *2)) (-4 *2 (-171)))) (-2016 (*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-1256 (-683 *3))))) (-2555 (*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-639 (-947 *3))))) (-3916 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-171)) (-4 *1 (-416 *3)))) (-4208 (*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-1256 *3)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-171)) (-4 *1 (-416 *3)))) (-1636 (*1 *2) (-12 (-4 *1 (-416 *2)) (-4 *2 (-171)))) (-2200 (*1 *2) (-12 (-4 *1 (-416 *2)) (-4 *2 (-171)))) (-3506 (*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))) (-3945 (*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))) (-1583 (*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))) (-2995 (*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))) (-2620 (*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-4 *3 (-362)) (-5 *2 (-1164 (-947 *3))))) (-3996 (*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-4 *3 (-362)) (-5 *2 (-1164 (-947 *3))))) (-1360 (*1 *1 *2 *1) (-12 (-5 *2 (-683 *3)) (-4 *1 (-416 *3)) (-4 *3 (-171)))))
+(-13 (-366 |t#1|) (-10 -8 (-15 -4291 ((-1256 $))) (-15 -2205 ((-1256 |t#1|) $)) (-15 -2205 ((-683 |t#1|) (-1256 $))) (-15 -2343 (|t#1| $ (-562))) (-15 -2016 ((-1256 (-683 |t#1|)))) (-15 -2555 ((-639 (-947 |t#1|)))) (-15 -3916 ($ (-1256 |t#1|))) (-15 -4208 ((-1256 |t#1|) $)) (-15 -4208 ($ (-1256 |t#1|))) (-15 -1636 (|t#1|)) (-15 -2200 (|t#1|)) (-15 -3506 ((-683 |t#1|))) (-15 -3945 ((-683 |t#1|))) (-15 -1583 ((-683 |t#1|) $)) (-15 -2995 ((-683 |t#1|) $)) (IF (|has| |t#1| (-362)) (PROGN (-15 -2620 ((-1164 (-947 |t#1|)))) (-15 -3996 ((-1164 (-947 |t#1|))))) |%noBranch|) (-15 -1360 ($ (-683 |t#1|) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-609 (-857)) . T) ((-366 |#1|) . T) ((-642 |#1|) . T) ((-712 |#1|) . T) ((-715) . T) ((-739 |#1|) . T) ((-756) . T) ((-1050 |#1|) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 44)) (-2154 (($ $) 59)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 147)) (-2796 (($ $) NIL)) (-4370 (((-112) $) 38)) (-3931 ((|#1| $) 13)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL (|has| |#1| (-1211)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-1211)))) (-2303 (($ |#1| (-562)) 34)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 117)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 57)) (-3668 (((-3 $ "failed") $) 132)) (-1726 (((-3 (-406 (-562)) "failed") $) 65 (|has| |#1| (-544)))) (-3035 (((-112) $) 61 (|has| |#1| (-544)))) (-1291 (((-406 (-562)) $) 72 (|has| |#1| (-544)))) (-2547 (($ |#1| (-562)) 36)) (-2717 (((-112) $) 153 (|has| |#1| (-1211)))) (-1957 (((-112) $) 45)) (-2101 (((-766) $) 40)) (-2137 (((-3 "nil" "sqfr" "irred" "prime") $ (-562)) 138)) (-3126 ((|#1| $ (-562)) 137)) (-3683 (((-562) $ (-562)) 136)) (-2463 (($ |#1| (-562)) 33)) (-4152 (($ (-1 |#1| |#1|) $) 144)) (-3539 (($ |#1| (-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-562))))) 60)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-2913 (((-1150) $) NIL)) (-3340 (($ |#1| (-562)) 35)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) 148 (|has| |#1| (-451)))) (-2666 (($ |#1| (-562) (-3 "nil" "sqfr" "irred" "prime")) 32)) (-1510 (((-639 (-2 (|:| -1635 |#1|) (|:| -1960 (-562)))) $) 56)) (-3414 (((-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-562)))) $) 12)) (-1635 (((-417 $) $) NIL (|has| |#1| (-1211)))) (-1762 (((-3 $ "failed") $ $) 139)) (-1960 (((-562) $) 133)) (-3525 ((|#1| $) 58)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) 81 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) 87 (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) $) NIL (|has| |#1| (-513 (-1168) $))) (($ $ (-639 (-1168)) (-639 $)) 88 (|has| |#1| (-513 (-1168) $))) (($ $ (-639 (-293 $))) 84 (|has| |#1| (-308 $))) (($ $ (-293 $)) NIL (|has| |#1| (-308 $))) (($ $ $ $) NIL (|has| |#1| (-308 $))) (($ $ (-639 $) (-639 $)) NIL (|has| |#1| (-308 $)))) (-2343 (($ $ |#1|) 73 (|has| |#1| (-285 |#1| |#1|))) (($ $ $) 74 (|has| |#1| (-285 $ $)))) (-4029 (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) 143)) (-4208 (((-535) $) 30 (|has| |#1| (-610 (-535)))) (((-378) $) 94 (|has| |#1| (-1017))) (((-224) $) 97 (|has| |#1| (-1017)))) (-4054 (((-857) $) 115) (($ (-562)) 48) (($ $) NIL) (($ |#1|) 47) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562)))))) (-2579 (((-766)) 50)) (-2922 (((-112) $ $) NIL)) (-2286 (($) 42 T CONST)) (-2294 (($) 41 T CONST)) (-3114 (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1731 (((-112) $ $) 98)) (-1848 (($ $) 129) (($ $ $) NIL)) (-1835 (($ $ $) 141)) (** (($ $ (-916)) NIL) (($ $ (-766)) 104)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 52) (($ $ $) 51) (($ |#1| $) 53) (($ $ |#1|) NIL)))
-(((-417 |#1|) (-13 (-554) (-230 |#1|) (-38 |#1|) (-337 |#1|) (-410 |#1|) (-10 -8 (-15 -3525 (|#1| $)) (-15 -1960 ((-562) $)) (-15 -3539 ($ |#1| (-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-562)))))) (-15 -3414 ((-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-562)))) $)) (-15 -2463 ($ |#1| (-562))) (-15 -1510 ((-639 (-2 (|:| -1635 |#1|) (|:| -1960 (-562)))) $)) (-15 -3340 ($ |#1| (-562))) (-15 -3683 ((-562) $ (-562))) (-15 -3126 (|#1| $ (-562))) (-15 -2137 ((-3 "nil" "sqfr" "irred" "prime") $ (-562))) (-15 -2101 ((-766) $)) (-15 -2547 ($ |#1| (-562))) (-15 -2303 ($ |#1| (-562))) (-15 -2666 ($ |#1| (-562) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -3931 (|#1| $)) (-15 -2154 ($ $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-451)) (-6 (-451)) |%noBranch|) (IF (|has| |#1| (-1017)) (-6 (-1017)) |%noBranch|) (IF (|has| |#1| (-1211)) (-6 (-1211)) |%noBranch|) (IF (|has| |#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |#1| (-544)) (PROGN (-15 -3035 ((-112) $)) (-15 -1291 ((-406 (-562)) $)) (-15 -1726 ((-3 (-406 (-562)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-285 $ $)) (-6 (-285 $ $)) |%noBranch|) (IF (|has| |#1| (-308 $)) (-6 (-308 $)) |%noBranch|) (IF (|has| |#1| (-513 (-1168) $)) (-6 (-513 (-1168) $)) |%noBranch|))) (-554)) (T -417))
-((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-554)) (-5 *1 (-417 *3)))) (-3525 (*1 *2 *1) (-12 (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-1960 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-417 *3)) (-4 *3 (-554)))) (-3539 (*1 *1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-562))))) (-4 *2 (-554)) (-5 *1 (-417 *2)))) (-3414 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-562))))) (-5 *1 (-417 *3)) (-4 *3 (-554)))) (-2463 (*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-1510 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| -1635 *3) (|:| -1960 (-562))))) (-5 *1 (-417 *3)) (-4 *3 (-554)))) (-3340 (*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-3683 (*1 *2 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-417 *3)) (-4 *3 (-554)))) (-3126 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-2137 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-417 *4)) (-4 *4 (-554)))) (-2101 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-417 *3)) (-4 *3 (-554)))) (-2547 (*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-2303 (*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-2666 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-562)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-3931 (*1 *2 *1) (-12 (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-2154 (*1 *1 *1) (-12 (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-3035 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-417 *3)) (-4 *3 (-544)) (-4 *3 (-554)))) (-1291 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-417 *3)) (-4 *3 (-544)) (-4 *3 (-554)))) (-1726 (*1 *2 *1) (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-417 *3)) (-4 *3 (-544)) (-4 *3 (-554)))))
-(-13 (-554) (-230 |#1|) (-38 |#1|) (-337 |#1|) (-410 |#1|) (-10 -8 (-15 -3525 (|#1| $)) (-15 -1960 ((-562) $)) (-15 -3539 ($ |#1| (-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-562)))))) (-15 -3414 ((-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-562)))) $)) (-15 -2463 ($ |#1| (-562))) (-15 -1510 ((-639 (-2 (|:| -1635 |#1|) (|:| -1960 (-562)))) $)) (-15 -3340 ($ |#1| (-562))) (-15 -3683 ((-562) $ (-562))) (-15 -3126 (|#1| $ (-562))) (-15 -2137 ((-3 "nil" "sqfr" "irred" "prime") $ (-562))) (-15 -2101 ((-766) $)) (-15 -2547 ($ |#1| (-562))) (-15 -2303 ($ |#1| (-562))) (-15 -2666 ($ |#1| (-562) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -3931 (|#1| $)) (-15 -2154 ($ $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-451)) (-6 (-451)) |%noBranch|) (IF (|has| |#1| (-1017)) (-6 (-1017)) |%noBranch|) (IF (|has| |#1| (-1211)) (-6 (-1211)) |%noBranch|) (IF (|has| |#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |#1| (-544)) (PROGN (-15 -3035 ((-112) $)) (-15 -1291 ((-406 (-562)) $)) (-15 -1726 ((-3 (-406 (-562)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-285 $ $)) (-6 (-285 $ $)) |%noBranch|) (IF (|has| |#1| (-308 $)) (-6 (-308 $)) |%noBranch|) (IF (|has| |#1| (-513 (-1168) $)) (-6 (-513 (-1168) $)) |%noBranch|)))
-((-3528 (((-417 |#1|) (-417 |#1|) (-1 (-417 |#1|) |#1|)) 21)) (-4369 (((-417 |#1|) (-417 |#1|) (-417 |#1|)) 16)))
-(((-418 |#1|) (-10 -7 (-15 -3528 ((-417 |#1|) (-417 |#1|) (-1 (-417 |#1|) |#1|))) (-15 -4369 ((-417 |#1|) (-417 |#1|) (-417 |#1|)))) (-554)) (T -418))
-((-4369 (*1 *2 *2 *2) (-12 (-5 *2 (-417 *3)) (-4 *3 (-554)) (-5 *1 (-418 *3)))) (-3528 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-417 *4) *4)) (-4 *4 (-554)) (-5 *2 (-417 *4)) (-5 *1 (-418 *4)))))
-(-10 -7 (-15 -3528 ((-417 |#1|) (-417 |#1|) (-1 (-417 |#1|) |#1|))) (-15 -4369 ((-417 |#1|) (-417 |#1|) (-417 |#1|))))
-((-2108 ((|#2| |#2|) 165)) (-3889 (((-3 (|:| |%expansion| (-312 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112)) 57)))
-(((-419 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3889 ((-3 (|:| |%expansion| (-312 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112))) (-15 -2108 (|#2| |#2|))) (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|)) (-1168) |#2|) (T -419))
-((-2108 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-419 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1192) (-429 *3))) (-14 *4 (-1168)) (-14 *5 *2))) (-3889 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |%expansion| (-312 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150)))))) (-5 *1 (-419 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1192) (-429 *5))) (-14 *6 (-1168)) (-14 *7 *3))))
-(-10 -7 (-15 -3889 ((-3 (|:| |%expansion| (-312 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112))) (-15 -2108 (|#2| |#2|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 44)) (-2810 (($ $) 59)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 147)) (-1965 (($ $) NIL)) (-4102 (((-112) $) 38)) (-4310 ((|#1| $) 13)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL (|has| |#1| (-1211)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-1211)))) (-3661 (($ |#1| (-562)) 34)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 117)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 57)) (-1694 (((-3 $ "failed") $) 132)) (-3913 (((-3 (-406 (-562)) "failed") $) 65 (|has| |#1| (-544)))) (-3498 (((-112) $) 61 (|has| |#1| (-544)))) (-3854 (((-406 (-562)) $) 72 (|has| |#1| (-544)))) (-4294 (($ |#1| (-562)) 36)) (-3521 (((-112) $) 153 (|has| |#1| (-1211)))) (-4367 (((-112) $) 45)) (-3423 (((-766) $) 40)) (-2645 (((-3 "nil" "sqfr" "irred" "prime") $ (-562)) 138)) (-3111 ((|#1| $ (-562)) 137)) (-3657 (((-562) $ (-562)) 136)) (-2816 (($ |#1| (-562)) 33)) (-4152 (($ (-1 |#1| |#1|) $) 144)) (-2858 (($ |#1| (-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-562))))) 60)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3696 (((-1150) $) NIL)) (-1511 (($ |#1| (-562)) 35)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) 148 (|has| |#1| (-451)))) (-3068 (($ |#1| (-562) (-3 "nil" "sqfr" "irred" "prime")) 32)) (-2656 (((-639 (-2 (|:| -1635 |#1|) (|:| -1300 (-562)))) $) 56)) (-4072 (((-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-562)))) $) 12)) (-1635 (((-417 $) $) NIL (|has| |#1| (-1211)))) (-1762 (((-3 $ "failed") $ $) 139)) (-1300 (((-562) $) 133)) (-3525 ((|#1| $) 58)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) 81 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) 87 (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) $) NIL (|has| |#1| (-513 (-1168) $))) (($ $ (-639 (-1168)) (-639 $)) 88 (|has| |#1| (-513 (-1168) $))) (($ $ (-639 (-293 $))) 84 (|has| |#1| (-308 $))) (($ $ (-293 $)) NIL (|has| |#1| (-308 $))) (($ $ $ $) NIL (|has| |#1| (-308 $))) (($ $ (-639 $) (-639 $)) NIL (|has| |#1| (-308 $)))) (-2343 (($ $ |#1|) 73 (|has| |#1| (-285 |#1| |#1|))) (($ $ $) 74 (|has| |#1| (-285 $ $)))) (-4029 (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) 143)) (-4208 (((-535) $) 30 (|has| |#1| (-610 (-535)))) (((-378) $) 94 (|has| |#1| (-1017))) (((-224) $) 97 (|has| |#1| (-1017)))) (-4053 (((-857) $) 115) (($ (-562)) 48) (($ $) NIL) (($ |#1|) 47) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562)))))) (-1568 (((-766)) 50)) (-3799 (((-112) $ $) NIL)) (-2285 (($) 42 T CONST)) (-2294 (($) 41 T CONST)) (-3113 (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1733 (((-112) $ $) 98)) (-1847 (($ $) 129) (($ $ $) NIL)) (-1836 (($ $ $) 141)) (** (($ $ (-916)) NIL) (($ $ (-766)) 104)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 52) (($ $ $) 51) (($ |#1| $) 53) (($ $ |#1|) NIL)))
+(((-417 |#1|) (-13 (-554) (-230 |#1|) (-38 |#1|) (-337 |#1|) (-410 |#1|) (-10 -8 (-15 -3525 (|#1| $)) (-15 -1300 ((-562) $)) (-15 -2858 ($ |#1| (-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-562)))))) (-15 -4072 ((-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-562)))) $)) (-15 -2816 ($ |#1| (-562))) (-15 -2656 ((-639 (-2 (|:| -1635 |#1|) (|:| -1300 (-562)))) $)) (-15 -1511 ($ |#1| (-562))) (-15 -3657 ((-562) $ (-562))) (-15 -3111 (|#1| $ (-562))) (-15 -2645 ((-3 "nil" "sqfr" "irred" "prime") $ (-562))) (-15 -3423 ((-766) $)) (-15 -4294 ($ |#1| (-562))) (-15 -3661 ($ |#1| (-562))) (-15 -3068 ($ |#1| (-562) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -4310 (|#1| $)) (-15 -2810 ($ $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-451)) (-6 (-451)) |%noBranch|) (IF (|has| |#1| (-1017)) (-6 (-1017)) |%noBranch|) (IF (|has| |#1| (-1211)) (-6 (-1211)) |%noBranch|) (IF (|has| |#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |#1| (-544)) (PROGN (-15 -3498 ((-112) $)) (-15 -3854 ((-406 (-562)) $)) (-15 -3913 ((-3 (-406 (-562)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-285 $ $)) (-6 (-285 $ $)) |%noBranch|) (IF (|has| |#1| (-308 $)) (-6 (-308 $)) |%noBranch|) (IF (|has| |#1| (-513 (-1168) $)) (-6 (-513 (-1168) $)) |%noBranch|))) (-554)) (T -417))
+((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-554)) (-5 *1 (-417 *3)))) (-3525 (*1 *2 *1) (-12 (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-1300 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-417 *3)) (-4 *3 (-554)))) (-2858 (*1 *1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-562))))) (-4 *2 (-554)) (-5 *1 (-417 *2)))) (-4072 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-562))))) (-5 *1 (-417 *3)) (-4 *3 (-554)))) (-2816 (*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-2656 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| -1635 *3) (|:| -1300 (-562))))) (-5 *1 (-417 *3)) (-4 *3 (-554)))) (-1511 (*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-3657 (*1 *2 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-417 *3)) (-4 *3 (-554)))) (-3111 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-2645 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-417 *4)) (-4 *4 (-554)))) (-3423 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-417 *3)) (-4 *3 (-554)))) (-4294 (*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-3661 (*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-3068 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-562)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-4310 (*1 *2 *1) (-12 (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-2810 (*1 *1 *1) (-12 (-5 *1 (-417 *2)) (-4 *2 (-554)))) (-3498 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-417 *3)) (-4 *3 (-544)) (-4 *3 (-554)))) (-3854 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-417 *3)) (-4 *3 (-544)) (-4 *3 (-554)))) (-3913 (*1 *2 *1) (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-417 *3)) (-4 *3 (-544)) (-4 *3 (-554)))))
+(-13 (-554) (-230 |#1|) (-38 |#1|) (-337 |#1|) (-410 |#1|) (-10 -8 (-15 -3525 (|#1| $)) (-15 -1300 ((-562) $)) (-15 -2858 ($ |#1| (-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-562)))))) (-15 -4072 ((-639 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-562)))) $)) (-15 -2816 ($ |#1| (-562))) (-15 -2656 ((-639 (-2 (|:| -1635 |#1|) (|:| -1300 (-562)))) $)) (-15 -1511 ($ |#1| (-562))) (-15 -3657 ((-562) $ (-562))) (-15 -3111 (|#1| $ (-562))) (-15 -2645 ((-3 "nil" "sqfr" "irred" "prime") $ (-562))) (-15 -3423 ((-766) $)) (-15 -4294 ($ |#1| (-562))) (-15 -3661 ($ |#1| (-562))) (-15 -3068 ($ |#1| (-562) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -4310 (|#1| $)) (-15 -2810 ($ $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-451)) (-6 (-451)) |%noBranch|) (IF (|has| |#1| (-1017)) (-6 (-1017)) |%noBranch|) (IF (|has| |#1| (-1211)) (-6 (-1211)) |%noBranch|) (IF (|has| |#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |#1| (-544)) (PROGN (-15 -3498 ((-112) $)) (-15 -3854 ((-406 (-562)) $)) (-15 -3913 ((-3 (-406 (-562)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-285 $ $)) (-6 (-285 $ $)) |%noBranch|) (IF (|has| |#1| (-308 $)) (-6 (-308 $)) |%noBranch|) (IF (|has| |#1| (-513 (-1168) $)) (-6 (-513 (-1168) $)) |%noBranch|)))
+((-2776 (((-417 |#1|) (-417 |#1|) (-1 (-417 |#1|) |#1|)) 21)) (-4092 (((-417 |#1|) (-417 |#1|) (-417 |#1|)) 16)))
+(((-418 |#1|) (-10 -7 (-15 -2776 ((-417 |#1|) (-417 |#1|) (-1 (-417 |#1|) |#1|))) (-15 -4092 ((-417 |#1|) (-417 |#1|) (-417 |#1|)))) (-554)) (T -418))
+((-4092 (*1 *2 *2 *2) (-12 (-5 *2 (-417 *3)) (-4 *3 (-554)) (-5 *1 (-418 *3)))) (-2776 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-417 *4) *4)) (-4 *4 (-554)) (-5 *2 (-417 *4)) (-5 *1 (-418 *4)))))
+(-10 -7 (-15 -2776 ((-417 |#1|) (-417 |#1|) (-1 (-417 |#1|) |#1|))) (-15 -4092 ((-417 |#1|) (-417 |#1|) (-417 |#1|))))
+((-2362 ((|#2| |#2|) 165)) (-2092 (((-3 (|:| |%expansion| (-312 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112)) 57)))
+(((-419 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2092 ((-3 (|:| |%expansion| (-312 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112))) (-15 -2362 (|#2| |#2|))) (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|)) (-1168) |#2|) (T -419))
+((-2362 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-419 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1192) (-429 *3))) (-14 *4 (-1168)) (-14 *5 *2))) (-2092 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (|:| |%expansion| (-312 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150)))))) (-5 *1 (-419 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1192) (-429 *5))) (-14 *6 (-1168)) (-14 *7 *3))))
+(-10 -7 (-15 -2092 ((-3 (|:| |%expansion| (-312 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112))) (-15 -2362 (|#2| |#2|)))
((-4152 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
(((-420 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4152 (|#4| (-1 |#3| |#1|) |#2|))) (-13 (-1044) (-845)) (-429 |#1|) (-13 (-1044) (-845)) (-429 |#3|)) (T -420))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-13 (-1044) (-845))) (-4 *6 (-13 (-1044) (-845))) (-4 *2 (-429 *6)) (-5 *1 (-420 *5 *4 *6 *2)) (-4 *4 (-429 *5)))))
(-10 -7 (-15 -4152 (|#4| (-1 |#3| |#1|) |#2|)))
-((-2108 ((|#2| |#2|) 89)) (-2801 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112) (-1150)) 48)) (-1333 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112) (-1150)) 153)))
-(((-421 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2801 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112) (-1150))) (-15 -1333 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112) (-1150))) (-15 -2108 (|#2| |#2|))) (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|) (-10 -8 (-15 -4054 ($ |#3|)))) (-843) (-13 (-1234 |#2| |#3|) (-362) (-1192) (-10 -8 (-15 -4029 ($ $)) (-15 -2667 ($ $)))) (-978 |#4|) (-1168)) (T -421))
-((-2108 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-4 *2 (-13 (-27) (-1192) (-429 *3) (-10 -8 (-15 -4054 ($ *4))))) (-4 *4 (-843)) (-4 *5 (-13 (-1234 *2 *4) (-362) (-1192) (-10 -8 (-15 -4029 ($ $)) (-15 -2667 ($ $))))) (-5 *1 (-421 *3 *2 *4 *5 *6 *7)) (-4 *6 (-978 *5)) (-14 *7 (-1168)))) (-1333 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-4 *3 (-13 (-27) (-1192) (-429 *6) (-10 -8 (-15 -4054 ($ *7))))) (-4 *7 (-843)) (-4 *8 (-13 (-1234 *3 *7) (-362) (-1192) (-10 -8 (-15 -4029 ($ $)) (-15 -2667 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150)))))) (-5 *1 (-421 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1150)) (-4 *9 (-978 *8)) (-14 *10 (-1168)))) (-2801 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-4 *3 (-13 (-27) (-1192) (-429 *6) (-10 -8 (-15 -4054 ($ *7))))) (-4 *7 (-843)) (-4 *8 (-13 (-1234 *3 *7) (-362) (-1192) (-10 -8 (-15 -4029 ($ $)) (-15 -2667 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150)))))) (-5 *1 (-421 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1150)) (-4 *9 (-978 *8)) (-14 *10 (-1168)))))
-(-10 -7 (-15 -2801 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112) (-1150))) (-15 -1333 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112) (-1150))) (-15 -2108 (|#2| |#2|)))
-((-2578 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-1955 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-4152 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
-(((-422 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4152 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1955 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2578 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1092) (-424 |#1|) (-1092) (-424 |#3|)) (T -422))
-((-2578 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1092)) (-4 *5 (-1092)) (-4 *2 (-424 *5)) (-5 *1 (-422 *6 *4 *5 *2)) (-4 *4 (-424 *6)))) (-1955 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1092)) (-4 *2 (-1092)) (-5 *1 (-422 *5 *4 *2 *6)) (-4 *4 (-424 *5)) (-4 *6 (-424 *2)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-424 *6)) (-5 *1 (-422 *5 *4 *6 *2)) (-4 *4 (-424 *5)))))
-(-10 -7 (-15 -4152 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1955 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2578 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-3721 (($) 44)) (-2494 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 40)) (-2129 (($ $ $) 39)) (-2330 (((-112) $ $) 28)) (-1382 (((-766)) 47)) (-1608 (($ (-639 |#2|)) 20) (($) NIL)) (-1448 (($) 53)) (-3027 (((-112) $ $) 13)) (-1551 ((|#2| $) 61)) (-2993 ((|#2| $) 59)) (-1999 (((-916) $) 55)) (-4376 (($ $ $) 35)) (-2466 (($ (-916)) 50)) (-3703 (($ $ |#2|) NIL) (($ $ $) 38)) (-1723 (((-766) (-1 (-112) |#2|) $) NIL) (((-766) |#2| $) 26)) (-4066 (($ (-639 |#2|)) 24)) (-2449 (($ $) 46)) (-4054 (((-857) $) 33)) (-4234 (((-766) $) 21)) (-1703 (($ (-639 |#2|)) 19) (($) NIL)) (-1731 (((-112) $ $) 16)))
-(((-423 |#1| |#2|) (-10 -8 (-15 -1382 ((-766))) (-15 -2466 (|#1| (-916))) (-15 -1999 ((-916) |#1|)) (-15 -1448 (|#1|)) (-15 -1551 (|#2| |#1|)) (-15 -2993 (|#2| |#1|)) (-15 -3721 (|#1|)) (-15 -2449 (|#1| |#1|)) (-15 -4234 ((-766) |#1|)) (-15 -1731 ((-112) |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -3027 ((-112) |#1| |#1|)) (-15 -1703 (|#1|)) (-15 -1703 (|#1| (-639 |#2|))) (-15 -1608 (|#1|)) (-15 -1608 (|#1| (-639 |#2|))) (-15 -4376 (|#1| |#1| |#1|)) (-15 -3703 (|#1| |#1| |#1|)) (-15 -3703 (|#1| |#1| |#2|)) (-15 -2129 (|#1| |#1| |#1|)) (-15 -2330 ((-112) |#1| |#1|)) (-15 -2494 (|#1| |#1| |#1|)) (-15 -2494 (|#1| |#1| |#2|)) (-15 -2494 (|#1| |#2| |#1|)) (-15 -4066 (|#1| (-639 |#2|))) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|))) (-424 |#2|) (-1092)) (T -423))
+((-2362 ((|#2| |#2|) 89)) (-2013 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112) (-1150)) 48)) (-1968 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112) (-1150)) 153)))
+(((-421 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2013 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112) (-1150))) (-15 -1968 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112) (-1150))) (-15 -2362 (|#2| |#2|))) (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|) (-10 -8 (-15 -4053 ($ |#3|)))) (-843) (-13 (-1234 |#2| |#3|) (-362) (-1192) (-10 -8 (-15 -4029 ($ $)) (-15 -3081 ($ $)))) (-978 |#4|) (-1168)) (T -421))
+((-2362 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-4 *2 (-13 (-27) (-1192) (-429 *3) (-10 -8 (-15 -4053 ($ *4))))) (-4 *4 (-843)) (-4 *5 (-13 (-1234 *2 *4) (-362) (-1192) (-10 -8 (-15 -4029 ($ $)) (-15 -3081 ($ $))))) (-5 *1 (-421 *3 *2 *4 *5 *6 *7)) (-4 *6 (-978 *5)) (-14 *7 (-1168)))) (-1968 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-4 *3 (-13 (-27) (-1192) (-429 *6) (-10 -8 (-15 -4053 ($ *7))))) (-4 *7 (-843)) (-4 *8 (-13 (-1234 *3 *7) (-362) (-1192) (-10 -8 (-15 -4029 ($ $)) (-15 -3081 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150)))))) (-5 *1 (-421 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1150)) (-4 *9 (-978 *8)) (-14 *10 (-1168)))) (-2013 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-4 *3 (-13 (-27) (-1192) (-429 *6) (-10 -8 (-15 -4053 ($ *7))))) (-4 *7 (-843)) (-4 *8 (-13 (-1234 *3 *7) (-362) (-1192) (-10 -8 (-15 -4029 ($ $)) (-15 -3081 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150)))))) (-5 *1 (-421 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1150)) (-4 *9 (-978 *8)) (-14 *10 (-1168)))))
+(-10 -7 (-15 -2013 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112) (-1150))) (-15 -1968 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))) |#2| (-112) (-1150))) (-15 -2362 (|#2| |#2|)))
+((-1555 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-1954 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-4152 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
+(((-422 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4152 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1954 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1555 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1092) (-424 |#1|) (-1092) (-424 |#3|)) (T -422))
+((-1555 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1092)) (-4 *5 (-1092)) (-4 *2 (-424 *5)) (-5 *1 (-422 *6 *4 *5 *2)) (-4 *4 (-424 *6)))) (-1954 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1092)) (-4 *2 (-1092)) (-5 *1 (-422 *5 *4 *2 *6)) (-4 *4 (-424 *5)) (-4 *6 (-424 *2)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-424 *6)) (-5 *1 (-422 *5 *4 *6 *2)) (-4 *4 (-424 *5)))))
+(-10 -7 (-15 -4152 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1954 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -1555 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-4076 (($) 44)) (-2492 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 40)) (-2570 (($ $ $) 39)) (-3938 (((-112) $ $) 28)) (-1382 (((-766)) 47)) (-1607 (($ (-639 |#2|)) 20) (($) NIL)) (-1447 (($) 53)) (-3528 (((-112) $ $) 13)) (-1551 ((|#2| $) 61)) (-2993 ((|#2| $) 59)) (-3549 (((-916) $) 55)) (-4169 (($ $ $) 35)) (-2464 (($ (-916)) 50)) (-3874 (($ $ |#2|) NIL) (($ $ $) 38)) (-1723 (((-766) (-1 (-112) |#2|) $) NIL) (((-766) |#2| $) 26)) (-4064 (($ (-639 |#2|)) 24)) (-2695 (($ $) 46)) (-4053 (((-857) $) 33)) (-2186 (((-766) $) 21)) (-1702 (($ (-639 |#2|)) 19) (($) NIL)) (-1733 (((-112) $ $) 16)))
+(((-423 |#1| |#2|) (-10 -8 (-15 -1382 ((-766))) (-15 -2464 (|#1| (-916))) (-15 -3549 ((-916) |#1|)) (-15 -1447 (|#1|)) (-15 -1551 (|#2| |#1|)) (-15 -2993 (|#2| |#1|)) (-15 -4076 (|#1|)) (-15 -2695 (|#1| |#1|)) (-15 -2186 ((-766) |#1|)) (-15 -1733 ((-112) |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -3528 ((-112) |#1| |#1|)) (-15 -1702 (|#1|)) (-15 -1702 (|#1| (-639 |#2|))) (-15 -1607 (|#1|)) (-15 -1607 (|#1| (-639 |#2|))) (-15 -4169 (|#1| |#1| |#1|)) (-15 -3874 (|#1| |#1| |#1|)) (-15 -3874 (|#1| |#1| |#2|)) (-15 -2570 (|#1| |#1| |#1|)) (-15 -3938 ((-112) |#1| |#1|)) (-15 -2492 (|#1| |#1| |#1|)) (-15 -2492 (|#1| |#1| |#2|)) (-15 -2492 (|#1| |#2| |#1|)) (-15 -4064 (|#1| (-639 |#2|))) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|))) (-424 |#2|) (-1092)) (T -423))
((-1382 (*1 *2) (-12 (-4 *4 (-1092)) (-5 *2 (-766)) (-5 *1 (-423 *3 *4)) (-4 *3 (-424 *4)))))
-(-10 -8 (-15 -1382 ((-766))) (-15 -2466 (|#1| (-916))) (-15 -1999 ((-916) |#1|)) (-15 -1448 (|#1|)) (-15 -1551 (|#2| |#1|)) (-15 -2993 (|#2| |#1|)) (-15 -3721 (|#1|)) (-15 -2449 (|#1| |#1|)) (-15 -4234 ((-766) |#1|)) (-15 -1731 ((-112) |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -3027 ((-112) |#1| |#1|)) (-15 -1703 (|#1|)) (-15 -1703 (|#1| (-639 |#2|))) (-15 -1608 (|#1|)) (-15 -1608 (|#1| (-639 |#2|))) (-15 -4376 (|#1| |#1| |#1|)) (-15 -3703 (|#1| |#1| |#1|)) (-15 -3703 (|#1| |#1| |#2|)) (-15 -2129 (|#1| |#1| |#1|)) (-15 -2330 ((-112) |#1| |#1|)) (-15 -2494 (|#1| |#1| |#1|)) (-15 -2494 (|#1| |#1| |#2|)) (-15 -2494 (|#1| |#2| |#1|)) (-15 -4066 (|#1| (-639 |#2|))) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)))
-((-4041 (((-112) $ $) 19)) (-3721 (($) 67 (|has| |#1| (-367)))) (-2494 (($ |#1| $) 82) (($ $ |#1|) 81) (($ $ $) 80)) (-2129 (($ $ $) 78)) (-2330 (((-112) $ $) 79)) (-4336 (((-112) $ (-766)) 8)) (-1382 (((-766)) 61 (|has| |#1| (-367)))) (-1608 (($ (-639 |#1|)) 74) (($) 73)) (-3111 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-1459 (($ $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4000 (($ |#1| $) 47 (|has| $ (-6 -4402))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4402)))) (-1475 (($ |#1| $) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4402)))) (-1448 (($) 64 (|has| |#1| (-367)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3027 (((-112) $ $) 70)) (-3292 (((-112) $ (-766)) 9)) (-1551 ((|#1| $) 65 (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-2993 ((|#1| $) 66 (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-1999 (((-916) $) 63 (|has| |#1| (-367)))) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22)) (-4376 (($ $ $) 75)) (-3262 ((|#1| $) 39)) (-4300 (($ |#1| $) 40)) (-2466 (($ (-916)) 62 (|has| |#1| (-367)))) (-1709 (((-1112) $) 21)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-1904 ((|#1| $) 41)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-3703 (($ $ |#1|) 77) (($ $ $) 76)) (-3564 (($) 49) (($ (-639 |#1|)) 48)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 50)) (-2449 (($ $) 68 (|has| |#1| (-367)))) (-4054 (((-857) $) 18)) (-4234 (((-766) $) 69)) (-1703 (($ (-639 |#1|)) 72) (($) 71)) (-1932 (($ (-639 |#1|)) 42)) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20)) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+(-10 -8 (-15 -1382 ((-766))) (-15 -2464 (|#1| (-916))) (-15 -3549 ((-916) |#1|)) (-15 -1447 (|#1|)) (-15 -1551 (|#2| |#1|)) (-15 -2993 (|#2| |#1|)) (-15 -4076 (|#1|)) (-15 -2695 (|#1| |#1|)) (-15 -2186 ((-766) |#1|)) (-15 -1733 ((-112) |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -3528 ((-112) |#1| |#1|)) (-15 -1702 (|#1|)) (-15 -1702 (|#1| (-639 |#2|))) (-15 -1607 (|#1|)) (-15 -1607 (|#1| (-639 |#2|))) (-15 -4169 (|#1| |#1| |#1|)) (-15 -3874 (|#1| |#1| |#1|)) (-15 -3874 (|#1| |#1| |#2|)) (-15 -2570 (|#1| |#1| |#1|)) (-15 -3938 ((-112) |#1| |#1|)) (-15 -2492 (|#1| |#1| |#1|)) (-15 -2492 (|#1| |#1| |#2|)) (-15 -2492 (|#1| |#2| |#1|)) (-15 -4064 (|#1| (-639 |#2|))) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)))
+((-4041 (((-112) $ $) 19)) (-4076 (($) 67 (|has| |#1| (-367)))) (-2492 (($ |#1| $) 82) (($ $ |#1|) 81) (($ $ $) 80)) (-2570 (($ $ $) 78)) (-3938 (((-112) $ $) 79)) (-3735 (((-112) $ (-766)) 8)) (-1382 (((-766)) 61 (|has| |#1| (-367)))) (-1607 (($ (-639 |#1|)) 74) (($) 73)) (-2968 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-1459 (($ $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-3729 (($ |#1| $) 47 (|has| $ (-6 -4403))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4403)))) (-1475 (($ |#1| $) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4403)))) (-1447 (($) 64 (|has| |#1| (-367)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-3528 (((-112) $ $) 70)) (-4172 (((-112) $ (-766)) 9)) (-1551 ((|#1| $) 65 (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-2993 ((|#1| $) 66 (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3549 (((-916) $) 63 (|has| |#1| (-367)))) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22)) (-4169 (($ $ $) 75)) (-2078 ((|#1| $) 39)) (-1581 (($ |#1| $) 40)) (-2464 (($ (-916)) 62 (|has| |#1| (-367)))) (-1709 (((-1112) $) 21)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-2038 ((|#1| $) 41)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-3874 (($ $ |#1|) 77) (($ $ $) 76)) (-1932 (($) 49) (($ (-639 |#1|)) 48)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 50)) (-2695 (($ $) 68 (|has| |#1| (-367)))) (-4053 (((-857) $) 18)) (-2186 (((-766) $) 69)) (-1702 (($ (-639 |#1|)) 72) (($) 71)) (-4131 (($ (-639 |#1|)) 42)) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20)) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-424 |#1|) (-139) (-1092)) (T -424))
-((-4234 (*1 *2 *1) (-12 (-4 *1 (-424 *3)) (-4 *3 (-1092)) (-5 *2 (-766)))) (-2449 (*1 *1 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-1092)) (-4 *2 (-367)))) (-3721 (*1 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-367)) (-4 *2 (-1092)))) (-2993 (*1 *2 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-1092)) (-4 *2 (-845)))) (-1551 (*1 *2 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-1092)) (-4 *2 (-845)))))
-(-13 (-228 |t#1|) (-1090 |t#1|) (-10 -8 (-6 -4402) (-15 -4234 ((-766) $)) (IF (|has| |t#1| (-367)) (PROGN (-6 (-367)) (-15 -2449 ($ $)) (-15 -3721 ($))) |%noBranch|) (IF (|has| |t#1| (-845)) (PROGN (-15 -2993 (|t#1| $)) (-15 -1551 (|t#1| $))) |%noBranch|)))
+((-2186 (*1 *2 *1) (-12 (-4 *1 (-424 *3)) (-4 *3 (-1092)) (-5 *2 (-766)))) (-2695 (*1 *1 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-1092)) (-4 *2 (-367)))) (-4076 (*1 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-367)) (-4 *2 (-1092)))) (-2993 (*1 *2 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-1092)) (-4 *2 (-845)))) (-1551 (*1 *2 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-1092)) (-4 *2 (-845)))))
+(-13 (-228 |t#1|) (-1090 |t#1|) (-10 -8 (-6 -4403) (-15 -2186 ((-766) $)) (IF (|has| |t#1| (-367)) (PROGN (-6 (-367)) (-15 -2695 ($ $)) (-15 -4076 ($))) |%noBranch|) (IF (|has| |t#1| (-845)) (PROGN (-15 -2993 (|t#1| $)) (-15 -1551 (|t#1| $))) |%noBranch|)))
(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-609 (-857)) . T) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-228 |#1|) . T) ((-234 |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-367) |has| |#1| (-367)) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1090 |#1|) . T) ((-1092) . T) ((-1207) . T))
-((-4082 (((-583 |#2|) |#2| (-1168)) 35)) (-3206 (((-583 |#2|) |#2| (-1168)) 20)) (-1317 ((|#2| |#2| (-1168)) 25)))
-(((-425 |#1| |#2|) (-10 -7 (-15 -3206 ((-583 |#2|) |#2| (-1168))) (-15 -4082 ((-583 |#2|) |#2| (-1168))) (-15 -1317 (|#2| |#2| (-1168)))) (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-29 |#1|))) (T -425))
-((-1317 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-425 *4 *2)) (-4 *2 (-13 (-1192) (-29 *4))))) (-4082 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-583 *3)) (-5 *1 (-425 *5 *3)) (-4 *3 (-13 (-1192) (-29 *5))))) (-3206 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-583 *3)) (-5 *1 (-425 *5 *3)) (-4 *3 (-13 (-1192) (-29 *5))))))
-(-10 -7 (-15 -3206 ((-583 |#2|) |#2| (-1168))) (-15 -4082 ((-583 |#2|) |#2| (-1168))) (-15 -1317 (|#2| |#2| (-1168))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) NIL)) (-1957 (((-112) $) NIL)) (-3527 (($ |#2| |#1|) 35)) (-2688 (($ |#2| |#1|) 33)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-330 |#2|)) 25)) (-2579 (((-766)) NIL)) (-2286 (($) 10 T CONST)) (-2294 (($) 16 T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 34)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 36) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-426 |#1| |#2|) (-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4389)) (IF (|has| |#1| (-6 -4389)) (-6 -4389) |%noBranch|) |%noBranch|) (-15 -4054 ($ |#1|)) (-15 -4054 ($ (-330 |#2|))) (-15 -3527 ($ |#2| |#1|)) (-15 -2688 ($ |#2| |#1|)))) (-13 (-171) (-38 (-406 (-562)))) (-13 (-845) (-21))) (T -426))
-((-4054 (*1 *1 *2) (-12 (-5 *1 (-426 *2 *3)) (-4 *2 (-13 (-171) (-38 (-406 (-562))))) (-4 *3 (-13 (-845) (-21))))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-330 *4)) (-4 *4 (-13 (-845) (-21))) (-5 *1 (-426 *3 *4)) (-4 *3 (-13 (-171) (-38 (-406 (-562))))))) (-3527 (*1 *1 *2 *3) (-12 (-5 *1 (-426 *3 *2)) (-4 *3 (-13 (-171) (-38 (-406 (-562))))) (-4 *2 (-13 (-845) (-21))))) (-2688 (*1 *1 *2 *3) (-12 (-5 *1 (-426 *3 *2)) (-4 *3 (-13 (-171) (-38 (-406 (-562))))) (-4 *2 (-13 (-845) (-21))))))
-(-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4389)) (IF (|has| |#1| (-6 -4389)) (-6 -4389) |%noBranch|) |%noBranch|) (-15 -4054 ($ |#1|)) (-15 -4054 ($ (-330 |#2|))) (-15 -3527 ($ |#2| |#1|)) (-15 -2688 ($ |#2| |#1|))))
-((-2667 (((-3 |#2| (-639 |#2|)) |#2| (-1168)) 108)))
-(((-427 |#1| |#2|) (-10 -7 (-15 -2667 ((-3 |#2| (-639 |#2|)) |#2| (-1168)))) (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-954) (-29 |#1|))) (T -427))
-((-2667 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 *3 (-639 *3))) (-5 *1 (-427 *5 *3)) (-4 *3 (-13 (-1192) (-954) (-29 *5))))))
-(-10 -7 (-15 -2667 ((-3 |#2| (-639 |#2|)) |#2| (-1168))))
-((-1402 (((-639 (-1168)) $) 72)) (-1599 (((-406 (-1164 $)) $ (-608 $)) 273)) (-3165 (($ $ (-293 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-639 (-608 $)) (-639 $)) 237)) (-4048 (((-3 (-608 $) "failed") $) NIL) (((-3 (-1168) "failed") $) 75) (((-3 (-562) "failed") $) NIL) (((-3 |#2| "failed") $) 233) (((-3 (-406 (-947 |#2|)) "failed") $) 324) (((-3 (-947 |#2|) "failed") $) 235) (((-3 (-406 (-562)) "failed") $) NIL)) (-3961 (((-608 $) $) NIL) (((-1168) $) 30) (((-562) $) NIL) ((|#2| $) 231) (((-406 (-947 |#2|)) $) 305) (((-947 |#2|) $) 232) (((-406 (-562)) $) NIL)) (-2876 (((-114) (-114)) 47)) (-3425 (($ $) 87)) (-4367 (((-3 (-608 $) "failed") $) 228)) (-1583 (((-639 (-608 $)) $) 229)) (-2042 (((-3 (-639 $) "failed") $) 247)) (-3218 (((-3 (-2 (|:| |val| $) (|:| -1960 (-562))) "failed") $) 254)) (-1546 (((-3 (-639 $) "failed") $) 245)) (-3853 (((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 $))) "failed") $) 264)) (-1628 (((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $) 251) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $ (-114)) 217) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $ (-1168)) 219)) (-1534 (((-112) $) 19)) (-1547 ((|#2| $) 21)) (-1433 (($ $ (-608 $) $) NIL) (($ $ (-639 (-608 $)) (-639 $)) 236) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) 96) (($ $ (-1168) (-1 $ (-639 $))) NIL) (($ $ (-1168) (-1 $ $)) NIL) (($ $ (-639 (-114)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-114) (-1 $ (-639 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1168)) 57) (($ $ (-639 (-1168))) 240) (($ $) 241) (($ $ (-114) $ (-1168)) 60) (($ $ (-639 (-114)) (-639 $) (-1168)) 67) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ $))) 107) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ (-639 $)))) 242) (($ $ (-1168) (-766) (-1 $ (-639 $))) 94) (($ $ (-1168) (-766) (-1 $ $)) 93)) (-2343 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-639 $)) 106)) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) 238)) (-3658 (($ $) 284)) (-4208 (((-887 (-562)) $) 257) (((-887 (-378)) $) 261) (($ (-417 $)) 320) (((-535) $) NIL)) (-4054 (((-857) $) 239) (($ (-608 $)) 84) (($ (-1168)) 26) (($ |#2|) NIL) (($ (-1117 |#2| (-608 $))) NIL) (($ (-406 |#2|)) 289) (($ (-947 (-406 |#2|))) 329) (($ (-406 (-947 (-406 |#2|)))) 301) (($ (-406 (-947 |#2|))) 295) (($ $) NIL) (($ (-947 |#2|)) 185) (($ (-406 (-562))) 334) (($ (-562)) NIL)) (-2579 (((-766)) 79)) (-2803 (((-112) (-114)) 41)) (-3105 (($ (-1168) $) 33) (($ (-1168) $ $) 34) (($ (-1168) $ $ $) 35) (($ (-1168) $ $ $ $) 36) (($ (-1168) (-639 $)) 39)) (* (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL) (($ |#2| $) 266) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-562) $) NIL) (($ (-766) $) NIL) (($ (-916) $) NIL)))
-(((-428 |#1| |#2|) (-10 -8 (-15 * (|#1| (-916) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -4054 (|#1| (-562))) (-15 -2579 ((-766))) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4054 (|#1| (-947 |#2|))) (-15 -4048 ((-3 (-947 |#2|) "failed") |#1|)) (-15 -3961 ((-947 |#2|) |#1|)) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -4054 (|#1| |#1|)) (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -4054 (|#1| (-406 (-947 |#2|)))) (-15 -4048 ((-3 (-406 (-947 |#2|)) "failed") |#1|)) (-15 -3961 ((-406 (-947 |#2|)) |#1|)) (-15 -1599 ((-406 (-1164 |#1|)) |#1| (-608 |#1|))) (-15 -4054 (|#1| (-406 (-947 (-406 |#2|))))) (-15 -4054 (|#1| (-947 (-406 |#2|)))) (-15 -4054 (|#1| (-406 |#2|))) (-15 -3658 (|#1| |#1|)) (-15 -4208 (|#1| (-417 |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-766) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-766) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-766)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-766)) (-639 (-1 |#1| |#1|)))) (-15 -3218 ((-3 (-2 (|:| |val| |#1|) (|:| -1960 (-562))) "failed") |#1|)) (-15 -1628 ((-3 (-2 (|:| |var| (-608 |#1|)) (|:| -1960 (-562))) "failed") |#1| (-1168))) (-15 -1628 ((-3 (-2 (|:| |var| (-608 |#1|)) (|:| -1960 (-562))) "failed") |#1| (-114))) (-15 -3425 (|#1| |#1|)) (-15 -4054 (|#1| (-1117 |#2| (-608 |#1|)))) (-15 -3853 ((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 |#1|))) "failed") |#1|)) (-15 -1546 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1628 ((-3 (-2 (|:| |var| (-608 |#1|)) (|:| -1960 (-562))) "failed") |#1|)) (-15 -2042 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 |#1|) (-1168))) (-15 -1433 (|#1| |#1| (-114) |#1| (-1168))) (-15 -1433 (|#1| |#1|)) (-15 -1433 (|#1| |#1| (-639 (-1168)))) (-15 -1433 (|#1| |#1| (-1168))) (-15 -3105 (|#1| (-1168) (-639 |#1|))) (-15 -3105 (|#1| (-1168) |#1| |#1| |#1| |#1|)) (-15 -3105 (|#1| (-1168) |#1| |#1| |#1|)) (-15 -3105 (|#1| (-1168) |#1| |#1|)) (-15 -3105 (|#1| (-1168) |#1|)) (-15 -1402 ((-639 (-1168)) |#1|)) (-15 -1547 (|#2| |#1|)) (-15 -1534 ((-112) |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4054 (|#1| (-1168))) (-15 -4048 ((-3 (-1168) "failed") |#1|)) (-15 -3961 ((-1168) |#1|)) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| |#1|)))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| |#1|)))) (-15 -2803 ((-112) (-114))) (-15 -2876 ((-114) (-114))) (-15 -1583 ((-639 (-608 |#1|)) |#1|)) (-15 -4367 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3165 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -3165 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -3165 (|#1| |#1| (-293 |#1|))) (-15 -2343 (|#1| (-114) (-639 |#1|))) (-15 -2343 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -1433 (|#1| |#1| (-608 |#1|) |#1|)) (-15 -4054 (|#1| (-608 |#1|))) (-15 -4048 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3961 ((-608 |#1|) |#1|)) (-15 -4054 ((-857) |#1|))) (-429 |#2|) (-845)) (T -428))
-((-2876 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *4 (-845)) (-5 *1 (-428 *3 *4)) (-4 *3 (-429 *4)))) (-2803 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-428 *4 *5)) (-4 *4 (-429 *5)))) (-2579 (*1 *2) (-12 (-4 *4 (-845)) (-5 *2 (-766)) (-5 *1 (-428 *3 *4)) (-4 *3 (-429 *4)))))
-(-10 -8 (-15 * (|#1| (-916) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -4054 (|#1| (-562))) (-15 -2579 ((-766))) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4054 (|#1| (-947 |#2|))) (-15 -4048 ((-3 (-947 |#2|) "failed") |#1|)) (-15 -3961 ((-947 |#2|) |#1|)) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -4054 (|#1| |#1|)) (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -4054 (|#1| (-406 (-947 |#2|)))) (-15 -4048 ((-3 (-406 (-947 |#2|)) "failed") |#1|)) (-15 -3961 ((-406 (-947 |#2|)) |#1|)) (-15 -1599 ((-406 (-1164 |#1|)) |#1| (-608 |#1|))) (-15 -4054 (|#1| (-406 (-947 (-406 |#2|))))) (-15 -4054 (|#1| (-947 (-406 |#2|)))) (-15 -4054 (|#1| (-406 |#2|))) (-15 -3658 (|#1| |#1|)) (-15 -4208 (|#1| (-417 |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-766) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-766) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-766)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-766)) (-639 (-1 |#1| |#1|)))) (-15 -3218 ((-3 (-2 (|:| |val| |#1|) (|:| -1960 (-562))) "failed") |#1|)) (-15 -1628 ((-3 (-2 (|:| |var| (-608 |#1|)) (|:| -1960 (-562))) "failed") |#1| (-1168))) (-15 -1628 ((-3 (-2 (|:| |var| (-608 |#1|)) (|:| -1960 (-562))) "failed") |#1| (-114))) (-15 -3425 (|#1| |#1|)) (-15 -4054 (|#1| (-1117 |#2| (-608 |#1|)))) (-15 -3853 ((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 |#1|))) "failed") |#1|)) (-15 -1546 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1628 ((-3 (-2 (|:| |var| (-608 |#1|)) (|:| -1960 (-562))) "failed") |#1|)) (-15 -2042 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 |#1|) (-1168))) (-15 -1433 (|#1| |#1| (-114) |#1| (-1168))) (-15 -1433 (|#1| |#1|)) (-15 -1433 (|#1| |#1| (-639 (-1168)))) (-15 -1433 (|#1| |#1| (-1168))) (-15 -3105 (|#1| (-1168) (-639 |#1|))) (-15 -3105 (|#1| (-1168) |#1| |#1| |#1| |#1|)) (-15 -3105 (|#1| (-1168) |#1| |#1| |#1|)) (-15 -3105 (|#1| (-1168) |#1| |#1|)) (-15 -3105 (|#1| (-1168) |#1|)) (-15 -1402 ((-639 (-1168)) |#1|)) (-15 -1547 (|#2| |#1|)) (-15 -1534 ((-112) |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4054 (|#1| (-1168))) (-15 -4048 ((-3 (-1168) "failed") |#1|)) (-15 -3961 ((-1168) |#1|)) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| |#1|)))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| |#1|)))) (-15 -2803 ((-112) (-114))) (-15 -2876 ((-114) (-114))) (-15 -1583 ((-639 (-608 |#1|)) |#1|)) (-15 -4367 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3165 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -3165 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -3165 (|#1| |#1| (-293 |#1|))) (-15 -2343 (|#1| (-114) (-639 |#1|))) (-15 -2343 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -1433 (|#1| |#1| (-608 |#1|) |#1|)) (-15 -4054 (|#1| (-608 |#1|))) (-15 -4048 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3961 ((-608 |#1|) |#1|)) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 114 (|has| |#1| (-25)))) (-1402 (((-639 (-1168)) $) 201)) (-1599 (((-406 (-1164 $)) $ (-608 $)) 169 (|has| |#1| (-554)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 141 (|has| |#1| (-554)))) (-2796 (($ $) 142 (|has| |#1| (-554)))) (-4370 (((-112) $) 144 (|has| |#1| (-554)))) (-1495 (((-639 (-608 $)) $) 44)) (-3214 (((-3 $ "failed") $ $) 116 (|has| |#1| (-21)))) (-3165 (($ $ (-293 $)) 56) (($ $ (-639 (-293 $))) 55) (($ $ (-639 (-608 $)) (-639 $)) 54)) (-2798 (($ $) 161 (|has| |#1| (-554)))) (-2921 (((-417 $) $) 162 (|has| |#1| (-554)))) (-2569 (((-112) $ $) 152 (|has| |#1| (-554)))) (-1800 (($) 102 (-4037 (|has| |#1| (-1104)) (|has| |#1| (-25))) CONST)) (-4048 (((-3 (-608 $) "failed") $) 69) (((-3 (-1168) "failed") $) 214) (((-3 (-562) "failed") $) 208 (|has| |#1| (-1033 (-562)))) (((-3 |#1| "failed") $) 205) (((-3 (-406 (-947 |#1|)) "failed") $) 167 (|has| |#1| (-554))) (((-3 (-947 |#1|) "failed") $) 121 (|has| |#1| (-1044))) (((-3 (-406 (-562)) "failed") $) 96 (-4037 (-12 (|has| |#1| (-1033 (-562))) (|has| |#1| (-554))) (|has| |#1| (-1033 (-406 (-562))))))) (-3961 (((-608 $) $) 70) (((-1168) $) 215) (((-562) $) 207 (|has| |#1| (-1033 (-562)))) ((|#1| $) 206) (((-406 (-947 |#1|)) $) 168 (|has| |#1| (-554))) (((-947 |#1|) $) 122 (|has| |#1| (-1044))) (((-406 (-562)) $) 97 (-4037 (-12 (|has| |#1| (-1033 (-562))) (|has| |#1| (-554))) (|has| |#1| (-1033 (-406 (-562))))))) (-1811 (($ $ $) 156 (|has| |#1| (-554)))) (-2406 (((-683 (-562)) (-683 $)) 135 (-2246 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 134 (-2246 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 133 (|has| |#1| (-1044))) (((-683 |#1|) (-683 $)) 132 (|has| |#1| (-1044)))) (-3668 (((-3 $ "failed") $) 104 (|has| |#1| (-1104)))) (-1787 (($ $ $) 155 (|has| |#1| (-554)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 150 (|has| |#1| (-554)))) (-2717 (((-112) $) 163 (|has| |#1| (-554)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 210 (|has| |#1| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 209 (|has| |#1| (-881 (-378))))) (-1383 (($ $) 51) (($ (-639 $)) 50)) (-3936 (((-639 (-114)) $) 43)) (-2876 (((-114) (-114)) 42)) (-1957 (((-112) $) 103 (|has| |#1| (-1104)))) (-3130 (((-112) $) 22 (|has| $ (-1033 (-562))))) (-3425 (($ $) 184 (|has| |#1| (-1044)))) (-4065 (((-1117 |#1| (-608 $)) $) 185 (|has| |#1| (-1044)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 159 (|has| |#1| (-554)))) (-1677 (((-1164 $) (-608 $)) 25 (|has| $ (-1044)))) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-4152 (($ (-1 $ $) (-608 $)) 36)) (-4367 (((-3 (-608 $) "failed") $) 46)) (-1564 (($ (-639 $)) 148 (|has| |#1| (-554))) (($ $ $) 147 (|has| |#1| (-554)))) (-2913 (((-1150) $) 9)) (-1583 (((-639 (-608 $)) $) 45)) (-4141 (($ (-114) $) 38) (($ (-114) (-639 $)) 37)) (-2042 (((-3 (-639 $) "failed") $) 190 (|has| |#1| (-1104)))) (-3218 (((-3 (-2 (|:| |val| $) (|:| -1960 (-562))) "failed") $) 181 (|has| |#1| (-1044)))) (-1546 (((-3 (-639 $) "failed") $) 188 (|has| |#1| (-25)))) (-3853 (((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 $))) "failed") $) 187 (|has| |#1| (-25)))) (-1628 (((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $) 189 (|has| |#1| (-1104))) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $ (-114)) 183 (|has| |#1| (-1044))) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $ (-1168)) 182 (|has| |#1| (-1044)))) (-1776 (((-112) $ (-114)) 40) (((-112) $ (-1168)) 39)) (-1525 (($ $) 106 (-4037 (|has| |#1| (-472)) (|has| |#1| (-554))))) (-3060 (((-766) $) 47)) (-1709 (((-1112) $) 10)) (-1534 (((-112) $) 203)) (-1547 ((|#1| $) 202)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 149 (|has| |#1| (-554)))) (-1606 (($ (-639 $)) 146 (|has| |#1| (-554))) (($ $ $) 145 (|has| |#1| (-554)))) (-4296 (((-112) $ $) 35) (((-112) $ (-1168)) 34)) (-1635 (((-417 $) $) 160 (|has| |#1| (-554)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 158 (|has| |#1| (-554))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 157 (|has| |#1| (-554)))) (-1762 (((-3 $ "failed") $ $) 140 (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 151 (|has| |#1| (-554)))) (-3803 (((-112) $) 23 (|has| $ (-1033 (-562))))) (-1433 (($ $ (-608 $) $) 67) (($ $ (-639 (-608 $)) (-639 $)) 66) (($ $ (-639 (-293 $))) 65) (($ $ (-293 $)) 64) (($ $ $ $) 63) (($ $ (-639 $) (-639 $)) 62) (($ $ (-639 (-1168)) (-639 (-1 $ $))) 33) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) 32) (($ $ (-1168) (-1 $ (-639 $))) 31) (($ $ (-1168) (-1 $ $)) 30) (($ $ (-639 (-114)) (-639 (-1 $ $))) 29) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) 28) (($ $ (-114) (-1 $ (-639 $))) 27) (($ $ (-114) (-1 $ $)) 26) (($ $ (-1168)) 195 (|has| |#1| (-610 (-535)))) (($ $ (-639 (-1168))) 194 (|has| |#1| (-610 (-535)))) (($ $) 193 (|has| |#1| (-610 (-535)))) (($ $ (-114) $ (-1168)) 192 (|has| |#1| (-610 (-535)))) (($ $ (-639 (-114)) (-639 $) (-1168)) 191 (|has| |#1| (-610 (-535)))) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ $))) 180 (|has| |#1| (-1044))) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ (-639 $)))) 179 (|has| |#1| (-1044))) (($ $ (-1168) (-766) (-1 $ (-639 $))) 178 (|has| |#1| (-1044))) (($ $ (-1168) (-766) (-1 $ $)) 177 (|has| |#1| (-1044)))) (-1577 (((-766) $) 153 (|has| |#1| (-554)))) (-2343 (($ (-114) $) 61) (($ (-114) $ $) 60) (($ (-114) $ $ $) 59) (($ (-114) $ $ $ $) 58) (($ (-114) (-639 $)) 57)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 154 (|has| |#1| (-554)))) (-3790 (($ $) 49) (($ $ $) 48)) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) 126 (|has| |#1| (-1044))) (($ $ (-1168) (-766)) 125 (|has| |#1| (-1044))) (($ $ (-639 (-1168))) 124 (|has| |#1| (-1044))) (($ $ (-1168)) 123 (|has| |#1| (-1044)))) (-3658 (($ $) 174 (|has| |#1| (-554)))) (-4076 (((-1117 |#1| (-608 $)) $) 175 (|has| |#1| (-554)))) (-2096 (($ $) 24 (|has| $ (-1044)))) (-4208 (((-887 (-562)) $) 212 (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) 211 (|has| |#1| (-610 (-887 (-378))))) (($ (-417 $)) 176 (|has| |#1| (-554))) (((-535) $) 98 (|has| |#1| (-610 (-535))))) (-3665 (($ $ $) 109 (|has| |#1| (-472)))) (-1911 (($ $ $) 110 (|has| |#1| (-472)))) (-4054 (((-857) $) 11) (($ (-608 $)) 68) (($ (-1168)) 213) (($ |#1|) 204) (($ (-1117 |#1| (-608 $))) 186 (|has| |#1| (-1044))) (($ (-406 |#1|)) 172 (|has| |#1| (-554))) (($ (-947 (-406 |#1|))) 171 (|has| |#1| (-554))) (($ (-406 (-947 (-406 |#1|)))) 170 (|has| |#1| (-554))) (($ (-406 (-947 |#1|))) 166 (|has| |#1| (-554))) (($ $) 139 (|has| |#1| (-554))) (($ (-947 |#1|)) 120 (|has| |#1| (-1044))) (($ (-406 (-562))) 95 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-1033 (-562))) (|has| |#1| (-554))) (|has| |#1| (-1033 (-406 (-562)))))) (($ (-562)) 94 (-4037 (|has| |#1| (-1044)) (|has| |#1| (-1033 (-562)))))) (-2805 (((-3 $ "failed") $) 136 (|has| |#1| (-144)))) (-2579 (((-766)) 131 (|has| |#1| (-1044)))) (-2746 (($ $) 53) (($ (-639 $)) 52)) (-2803 (((-112) (-114)) 41)) (-2922 (((-112) $ $) 143 (|has| |#1| (-554)))) (-3105 (($ (-1168) $) 200) (($ (-1168) $ $) 199) (($ (-1168) $ $ $) 198) (($ (-1168) $ $ $ $) 197) (($ (-1168) (-639 $)) 196)) (-2286 (($) 113 (|has| |#1| (-25)) CONST)) (-2294 (($) 101 (|has| |#1| (-1104)) CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) 130 (|has| |#1| (-1044))) (($ $ (-1168) (-766)) 129 (|has| |#1| (-1044))) (($ $ (-639 (-1168))) 128 (|has| |#1| (-1044))) (($ $ (-1168)) 127 (|has| |#1| (-1044)))) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)) (-1859 (($ (-1117 |#1| (-608 $)) (-1117 |#1| (-608 $))) 173 (|has| |#1| (-554))) (($ $ $) 107 (-4037 (|has| |#1| (-472)) (|has| |#1| (-554))))) (-1848 (($ $ $) 118 (|has| |#1| (-21))) (($ $) 117 (|has| |#1| (-21)))) (-1835 (($ $ $) 111 (|has| |#1| (-25)))) (** (($ $ (-562)) 108 (-4037 (|has| |#1| (-472)) (|has| |#1| (-554)))) (($ $ (-766)) 105 (|has| |#1| (-1104))) (($ $ (-916)) 100 (|has| |#1| (-1104)))) (* (($ (-406 (-562)) $) 165 (|has| |#1| (-554))) (($ $ (-406 (-562))) 164 (|has| |#1| (-554))) (($ |#1| $) 138 (|has| |#1| (-171))) (($ $ |#1|) 137 (|has| |#1| (-171))) (($ (-562) $) 119 (|has| |#1| (-21))) (($ (-766) $) 115 (|has| |#1| (-25))) (($ (-916) $) 112 (|has| |#1| (-25))) (($ $ $) 99 (|has| |#1| (-1104)))))
+((-3223 (((-583 |#2|) |#2| (-1168)) 35)) (-2710 (((-583 |#2|) |#2| (-1168)) 20)) (-1788 ((|#2| |#2| (-1168)) 25)))
+(((-425 |#1| |#2|) (-10 -7 (-15 -2710 ((-583 |#2|) |#2| (-1168))) (-15 -3223 ((-583 |#2|) |#2| (-1168))) (-15 -1788 (|#2| |#2| (-1168)))) (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-29 |#1|))) (T -425))
+((-1788 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-425 *4 *2)) (-4 *2 (-13 (-1192) (-29 *4))))) (-3223 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-583 *3)) (-5 *1 (-425 *5 *3)) (-4 *3 (-13 (-1192) (-29 *5))))) (-2710 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-583 *3)) (-5 *1 (-425 *5 *3)) (-4 *3 (-13 (-1192) (-29 *5))))))
+(-10 -7 (-15 -2710 ((-583 |#2|) |#2| (-1168))) (-15 -3223 ((-583 |#2|) |#2| (-1168))) (-15 -1788 (|#2| |#2| (-1168))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) NIL)) (-4367 (((-112) $) NIL)) (-2764 (($ |#2| |#1|) 35)) (-3250 (($ |#2| |#1|) 33)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-330 |#2|)) 25)) (-1568 (((-766)) NIL)) (-2285 (($) 10 T CONST)) (-2294 (($) 16 T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 34)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 36) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-426 |#1| |#2|) (-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4390)) (IF (|has| |#1| (-6 -4390)) (-6 -4390) |%noBranch|) |%noBranch|) (-15 -4053 ($ |#1|)) (-15 -4053 ($ (-330 |#2|))) (-15 -2764 ($ |#2| |#1|)) (-15 -3250 ($ |#2| |#1|)))) (-13 (-171) (-38 (-406 (-562)))) (-13 (-845) (-21))) (T -426))
+((-4053 (*1 *1 *2) (-12 (-5 *1 (-426 *2 *3)) (-4 *2 (-13 (-171) (-38 (-406 (-562))))) (-4 *3 (-13 (-845) (-21))))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-330 *4)) (-4 *4 (-13 (-845) (-21))) (-5 *1 (-426 *3 *4)) (-4 *3 (-13 (-171) (-38 (-406 (-562))))))) (-2764 (*1 *1 *2 *3) (-12 (-5 *1 (-426 *3 *2)) (-4 *3 (-13 (-171) (-38 (-406 (-562))))) (-4 *2 (-13 (-845) (-21))))) (-3250 (*1 *1 *2 *3) (-12 (-5 *1 (-426 *3 *2)) (-4 *3 (-13 (-171) (-38 (-406 (-562))))) (-4 *2 (-13 (-845) (-21))))))
+(-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4390)) (IF (|has| |#1| (-6 -4390)) (-6 -4390) |%noBranch|) |%noBranch|) (-15 -4053 ($ |#1|)) (-15 -4053 ($ (-330 |#2|))) (-15 -2764 ($ |#2| |#1|)) (-15 -3250 ($ |#2| |#1|))))
+((-3081 (((-3 |#2| (-639 |#2|)) |#2| (-1168)) 108)))
+(((-427 |#1| |#2|) (-10 -7 (-15 -3081 ((-3 |#2| (-639 |#2|)) |#2| (-1168)))) (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-954) (-29 |#1|))) (T -427))
+((-3081 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 *3 (-639 *3))) (-5 *1 (-427 *5 *3)) (-4 *3 (-13 (-1192) (-954) (-29 *5))))))
+(-10 -7 (-15 -3081 ((-3 |#2| (-639 |#2|)) |#2| (-1168))))
+((-1401 (((-639 (-1168)) $) 72)) (-1602 (((-406 (-1164 $)) $ (-608 $)) 273)) (-3164 (($ $ (-293 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-639 (-608 $)) (-639 $)) 237)) (-4048 (((-3 (-608 $) "failed") $) NIL) (((-3 (-1168) "failed") $) 75) (((-3 (-562) "failed") $) NIL) (((-3 |#2| "failed") $) 233) (((-3 (-406 (-947 |#2|)) "failed") $) 324) (((-3 (-947 |#2|) "failed") $) 235) (((-3 (-406 (-562)) "failed") $) NIL)) (-3960 (((-608 $) $) NIL) (((-1168) $) 30) (((-562) $) NIL) ((|#2| $) 231) (((-406 (-947 |#2|)) $) 305) (((-947 |#2|) $) 232) (((-406 (-562)) $) NIL)) (-1502 (((-114) (-114)) 47)) (-2957 (($ $) 87)) (-4068 (((-3 (-608 $) "failed") $) 228)) (-1582 (((-639 (-608 $)) $) 229)) (-4025 (((-3 (-639 $) "failed") $) 247)) (-2811 (((-3 (-2 (|:| |val| $) (|:| -1300 (-562))) "failed") $) 254)) (-1778 (((-3 (-639 $) "failed") $) 245)) (-2871 (((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 $))) "failed") $) 264)) (-4270 (((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $) 251) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $ (-114)) 217) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $ (-1168)) 219)) (-1534 (((-112) $) 19)) (-1547 ((|#2| $) 21)) (-1433 (($ $ (-608 $) $) NIL) (($ $ (-639 (-608 $)) (-639 $)) 236) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) 96) (($ $ (-1168) (-1 $ (-639 $))) NIL) (($ $ (-1168) (-1 $ $)) NIL) (($ $ (-639 (-114)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-114) (-1 $ (-639 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1168)) 57) (($ $ (-639 (-1168))) 240) (($ $) 241) (($ $ (-114) $ (-1168)) 60) (($ $ (-639 (-114)) (-639 $) (-1168)) 67) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ $))) 107) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ (-639 $)))) 242) (($ $ (-1168) (-766) (-1 $ (-639 $))) 94) (($ $ (-1168) (-766) (-1 $ $)) 93)) (-2343 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-639 $)) 106)) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) 238)) (-1580 (($ $) 284)) (-4208 (((-887 (-562)) $) 257) (((-887 (-378)) $) 261) (($ (-417 $)) 320) (((-535) $) NIL)) (-4053 (((-857) $) 239) (($ (-608 $)) 84) (($ (-1168)) 26) (($ |#2|) NIL) (($ (-1117 |#2| (-608 $))) NIL) (($ (-406 |#2|)) 289) (($ (-947 (-406 |#2|))) 329) (($ (-406 (-947 (-406 |#2|)))) 301) (($ (-406 (-947 |#2|))) 295) (($ $) NIL) (($ (-947 |#2|)) 185) (($ (-406 (-562))) 334) (($ (-562)) NIL)) (-1568 (((-766)) 79)) (-2036 (((-112) (-114)) 41)) (-3105 (($ (-1168) $) 33) (($ (-1168) $ $) 34) (($ (-1168) $ $ $) 35) (($ (-1168) $ $ $ $) 36) (($ (-1168) (-639 $)) 39)) (* (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL) (($ |#2| $) 266) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-562) $) NIL) (($ (-766) $) NIL) (($ (-916) $) NIL)))
+(((-428 |#1| |#2|) (-10 -8 (-15 * (|#1| (-916) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -4053 (|#1| (-562))) (-15 -1568 ((-766))) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4053 (|#1| (-947 |#2|))) (-15 -4048 ((-3 (-947 |#2|) "failed") |#1|)) (-15 -3960 ((-947 |#2|) |#1|)) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -4053 (|#1| |#1|)) (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -4053 (|#1| (-406 (-947 |#2|)))) (-15 -4048 ((-3 (-406 (-947 |#2|)) "failed") |#1|)) (-15 -3960 ((-406 (-947 |#2|)) |#1|)) (-15 -1602 ((-406 (-1164 |#1|)) |#1| (-608 |#1|))) (-15 -4053 (|#1| (-406 (-947 (-406 |#2|))))) (-15 -4053 (|#1| (-947 (-406 |#2|)))) (-15 -4053 (|#1| (-406 |#2|))) (-15 -1580 (|#1| |#1|)) (-15 -4208 (|#1| (-417 |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-766) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-766) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-766)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-766)) (-639 (-1 |#1| |#1|)))) (-15 -2811 ((-3 (-2 (|:| |val| |#1|) (|:| -1300 (-562))) "failed") |#1|)) (-15 -4270 ((-3 (-2 (|:| |var| (-608 |#1|)) (|:| -1300 (-562))) "failed") |#1| (-1168))) (-15 -4270 ((-3 (-2 (|:| |var| (-608 |#1|)) (|:| -1300 (-562))) "failed") |#1| (-114))) (-15 -2957 (|#1| |#1|)) (-15 -4053 (|#1| (-1117 |#2| (-608 |#1|)))) (-15 -2871 ((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 |#1|))) "failed") |#1|)) (-15 -1778 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -4270 ((-3 (-2 (|:| |var| (-608 |#1|)) (|:| -1300 (-562))) "failed") |#1|)) (-15 -4025 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 |#1|) (-1168))) (-15 -1433 (|#1| |#1| (-114) |#1| (-1168))) (-15 -1433 (|#1| |#1|)) (-15 -1433 (|#1| |#1| (-639 (-1168)))) (-15 -1433 (|#1| |#1| (-1168))) (-15 -3105 (|#1| (-1168) (-639 |#1|))) (-15 -3105 (|#1| (-1168) |#1| |#1| |#1| |#1|)) (-15 -3105 (|#1| (-1168) |#1| |#1| |#1|)) (-15 -3105 (|#1| (-1168) |#1| |#1|)) (-15 -3105 (|#1| (-1168) |#1|)) (-15 -1401 ((-639 (-1168)) |#1|)) (-15 -1547 (|#2| |#1|)) (-15 -1534 ((-112) |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4053 (|#1| (-1168))) (-15 -4048 ((-3 (-1168) "failed") |#1|)) (-15 -3960 ((-1168) |#1|)) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| |#1|)))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| |#1|)))) (-15 -2036 ((-112) (-114))) (-15 -1502 ((-114) (-114))) (-15 -1582 ((-639 (-608 |#1|)) |#1|)) (-15 -4068 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3164 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -3164 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -3164 (|#1| |#1| (-293 |#1|))) (-15 -2343 (|#1| (-114) (-639 |#1|))) (-15 -2343 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -1433 (|#1| |#1| (-608 |#1|) |#1|)) (-15 -4053 (|#1| (-608 |#1|))) (-15 -4048 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3960 ((-608 |#1|) |#1|)) (-15 -4053 ((-857) |#1|))) (-429 |#2|) (-845)) (T -428))
+((-1502 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *4 (-845)) (-5 *1 (-428 *3 *4)) (-4 *3 (-429 *4)))) (-2036 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-428 *4 *5)) (-4 *4 (-429 *5)))) (-1568 (*1 *2) (-12 (-4 *4 (-845)) (-5 *2 (-766)) (-5 *1 (-428 *3 *4)) (-4 *3 (-429 *4)))))
+(-10 -8 (-15 * (|#1| (-916) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -4053 (|#1| (-562))) (-15 -1568 ((-766))) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4053 (|#1| (-947 |#2|))) (-15 -4048 ((-3 (-947 |#2|) "failed") |#1|)) (-15 -3960 ((-947 |#2|) |#1|)) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -4053 (|#1| |#1|)) (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -4053 (|#1| (-406 (-947 |#2|)))) (-15 -4048 ((-3 (-406 (-947 |#2|)) "failed") |#1|)) (-15 -3960 ((-406 (-947 |#2|)) |#1|)) (-15 -1602 ((-406 (-1164 |#1|)) |#1| (-608 |#1|))) (-15 -4053 (|#1| (-406 (-947 (-406 |#2|))))) (-15 -4053 (|#1| (-947 (-406 |#2|)))) (-15 -4053 (|#1| (-406 |#2|))) (-15 -1580 (|#1| |#1|)) (-15 -4208 (|#1| (-417 |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-766) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-766) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-766)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-766)) (-639 (-1 |#1| |#1|)))) (-15 -2811 ((-3 (-2 (|:| |val| |#1|) (|:| -1300 (-562))) "failed") |#1|)) (-15 -4270 ((-3 (-2 (|:| |var| (-608 |#1|)) (|:| -1300 (-562))) "failed") |#1| (-1168))) (-15 -4270 ((-3 (-2 (|:| |var| (-608 |#1|)) (|:| -1300 (-562))) "failed") |#1| (-114))) (-15 -2957 (|#1| |#1|)) (-15 -4053 (|#1| (-1117 |#2| (-608 |#1|)))) (-15 -2871 ((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 |#1|))) "failed") |#1|)) (-15 -1778 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -4270 ((-3 (-2 (|:| |var| (-608 |#1|)) (|:| -1300 (-562))) "failed") |#1|)) (-15 -4025 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 |#1|) (-1168))) (-15 -1433 (|#1| |#1| (-114) |#1| (-1168))) (-15 -1433 (|#1| |#1|)) (-15 -1433 (|#1| |#1| (-639 (-1168)))) (-15 -1433 (|#1| |#1| (-1168))) (-15 -3105 (|#1| (-1168) (-639 |#1|))) (-15 -3105 (|#1| (-1168) |#1| |#1| |#1| |#1|)) (-15 -3105 (|#1| (-1168) |#1| |#1| |#1|)) (-15 -3105 (|#1| (-1168) |#1| |#1|)) (-15 -3105 (|#1| (-1168) |#1|)) (-15 -1401 ((-639 (-1168)) |#1|)) (-15 -1547 (|#2| |#1|)) (-15 -1534 ((-112) |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4053 (|#1| (-1168))) (-15 -4048 ((-3 (-1168) "failed") |#1|)) (-15 -3960 ((-1168) |#1|)) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-114) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-114)) (-639 (-1 |#1| |#1|)))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| |#1|))) (-15 -1433 (|#1| |#1| (-1168) (-1 |#1| (-639 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| (-639 |#1|))))) (-15 -1433 (|#1| |#1| (-639 (-1168)) (-639 (-1 |#1| |#1|)))) (-15 -2036 ((-112) (-114))) (-15 -1502 ((-114) (-114))) (-15 -1582 ((-639 (-608 |#1|)) |#1|)) (-15 -4068 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3164 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -3164 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -3164 (|#1| |#1| (-293 |#1|))) (-15 -2343 (|#1| (-114) (-639 |#1|))) (-15 -2343 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1| |#1|)) (-15 -2343 (|#1| (-114) |#1|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -1433 (|#1| |#1| (-639 (-608 |#1|)) (-639 |#1|))) (-15 -1433 (|#1| |#1| (-608 |#1|) |#1|)) (-15 -4053 (|#1| (-608 |#1|))) (-15 -4048 ((-3 (-608 |#1|) "failed") |#1|)) (-15 -3960 ((-608 |#1|) |#1|)) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 114 (|has| |#1| (-25)))) (-1401 (((-639 (-1168)) $) 201)) (-1602 (((-406 (-1164 $)) $ (-608 $)) 169 (|has| |#1| (-554)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 141 (|has| |#1| (-554)))) (-1965 (($ $) 142 (|has| |#1| (-554)))) (-4102 (((-112) $) 144 (|has| |#1| (-554)))) (-1501 (((-639 (-608 $)) $) 44)) (-2781 (((-3 $ "failed") $ $) 116 (|has| |#1| (-21)))) (-3164 (($ $ (-293 $)) 56) (($ $ (-639 (-293 $))) 55) (($ $ (-639 (-608 $)) (-639 $)) 54)) (-1977 (($ $) 161 (|has| |#1| (-554)))) (-3788 (((-417 $) $) 162 (|has| |#1| (-554)))) (-1436 (((-112) $ $) 152 (|has| |#1| (-554)))) (-3329 (($) 102 (-4037 (|has| |#1| (-1104)) (|has| |#1| (-25))) CONST)) (-4048 (((-3 (-608 $) "failed") $) 69) (((-3 (-1168) "failed") $) 214) (((-3 (-562) "failed") $) 208 (|has| |#1| (-1033 (-562)))) (((-3 |#1| "failed") $) 205) (((-3 (-406 (-947 |#1|)) "failed") $) 167 (|has| |#1| (-554))) (((-3 (-947 |#1|) "failed") $) 121 (|has| |#1| (-1044))) (((-3 (-406 (-562)) "failed") $) 96 (-4037 (-12 (|has| |#1| (-1033 (-562))) (|has| |#1| (-554))) (|has| |#1| (-1033 (-406 (-562))))))) (-3960 (((-608 $) $) 70) (((-1168) $) 215) (((-562) $) 207 (|has| |#1| (-1033 (-562)))) ((|#1| $) 206) (((-406 (-947 |#1|)) $) 168 (|has| |#1| (-554))) (((-947 |#1|) $) 122 (|has| |#1| (-1044))) (((-406 (-562)) $) 97 (-4037 (-12 (|has| |#1| (-1033 (-562))) (|has| |#1| (-554))) (|has| |#1| (-1033 (-406 (-562))))))) (-1810 (($ $ $) 156 (|has| |#1| (-554)))) (-3449 (((-683 (-562)) (-683 $)) 135 (-2245 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 134 (-2245 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 133 (|has| |#1| (-1044))) (((-683 |#1|) (-683 $)) 132 (|has| |#1| (-1044)))) (-1694 (((-3 $ "failed") $) 104 (|has| |#1| (-1104)))) (-1787 (($ $ $) 155 (|has| |#1| (-554)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 150 (|has| |#1| (-554)))) (-3521 (((-112) $) 163 (|has| |#1| (-554)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 210 (|has| |#1| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 209 (|has| |#1| (-881 (-378))))) (-2229 (($ $) 51) (($ (-639 $)) 50)) (-4364 (((-639 (-114)) $) 43)) (-1502 (((-114) (-114)) 42)) (-4367 (((-112) $) 103 (|has| |#1| (-1104)))) (-3152 (((-112) $) 22 (|has| $ (-1033 (-562))))) (-2957 (($ $) 184 (|has| |#1| (-1044)))) (-4063 (((-1117 |#1| (-608 $)) $) 185 (|has| |#1| (-1044)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 159 (|has| |#1| (-554)))) (-3476 (((-1164 $) (-608 $)) 25 (|has| $ (-1044)))) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-4152 (($ (-1 $ $) (-608 $)) 36)) (-4068 (((-3 (-608 $) "failed") $) 46)) (-1564 (($ (-639 $)) 148 (|has| |#1| (-554))) (($ $ $) 147 (|has| |#1| (-554)))) (-3696 (((-1150) $) 9)) (-1582 (((-639 (-608 $)) $) 45)) (-4141 (($ (-114) $) 38) (($ (-114) (-639 $)) 37)) (-4025 (((-3 (-639 $) "failed") $) 190 (|has| |#1| (-1104)))) (-2811 (((-3 (-2 (|:| |val| $) (|:| -1300 (-562))) "failed") $) 181 (|has| |#1| (-1044)))) (-1778 (((-3 (-639 $) "failed") $) 188 (|has| |#1| (-25)))) (-2871 (((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 $))) "failed") $) 187 (|has| |#1| (-25)))) (-4270 (((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $) 189 (|has| |#1| (-1104))) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $ (-114)) 183 (|has| |#1| (-1044))) (((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $ (-1168)) 182 (|has| |#1| (-1044)))) (-3115 (((-112) $ (-114)) 40) (((-112) $ (-1168)) 39)) (-1525 (($ $) 106 (-4037 (|has| |#1| (-472)) (|has| |#1| (-554))))) (-3059 (((-766) $) 47)) (-1709 (((-1112) $) 10)) (-1534 (((-112) $) 203)) (-1547 ((|#1| $) 202)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 149 (|has| |#1| (-554)))) (-1606 (($ (-639 $)) 146 (|has| |#1| (-554))) (($ $ $) 145 (|has| |#1| (-554)))) (-1533 (((-112) $ $) 35) (((-112) $ (-1168)) 34)) (-1635 (((-417 $) $) 160 (|has| |#1| (-554)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 158 (|has| |#1| (-554))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 157 (|has| |#1| (-554)))) (-1762 (((-3 $ "failed") $ $) 140 (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 151 (|has| |#1| (-554)))) (-2438 (((-112) $) 23 (|has| $ (-1033 (-562))))) (-1433 (($ $ (-608 $) $) 67) (($ $ (-639 (-608 $)) (-639 $)) 66) (($ $ (-639 (-293 $))) 65) (($ $ (-293 $)) 64) (($ $ $ $) 63) (($ $ (-639 $) (-639 $)) 62) (($ $ (-639 (-1168)) (-639 (-1 $ $))) 33) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) 32) (($ $ (-1168) (-1 $ (-639 $))) 31) (($ $ (-1168) (-1 $ $)) 30) (($ $ (-639 (-114)) (-639 (-1 $ $))) 29) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) 28) (($ $ (-114) (-1 $ (-639 $))) 27) (($ $ (-114) (-1 $ $)) 26) (($ $ (-1168)) 195 (|has| |#1| (-610 (-535)))) (($ $ (-639 (-1168))) 194 (|has| |#1| (-610 (-535)))) (($ $) 193 (|has| |#1| (-610 (-535)))) (($ $ (-114) $ (-1168)) 192 (|has| |#1| (-610 (-535)))) (($ $ (-639 (-114)) (-639 $) (-1168)) 191 (|has| |#1| (-610 (-535)))) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ $))) 180 (|has| |#1| (-1044))) (($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ (-639 $)))) 179 (|has| |#1| (-1044))) (($ $ (-1168) (-766) (-1 $ (-639 $))) 178 (|has| |#1| (-1044))) (($ $ (-1168) (-766) (-1 $ $)) 177 (|has| |#1| (-1044)))) (-2044 (((-766) $) 153 (|has| |#1| (-554)))) (-2343 (($ (-114) $) 61) (($ (-114) $ $) 60) (($ (-114) $ $ $) 59) (($ (-114) $ $ $ $) 58) (($ (-114) (-639 $)) 57)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 154 (|has| |#1| (-554)))) (-3461 (($ $) 49) (($ $ $) 48)) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) 126 (|has| |#1| (-1044))) (($ $ (-1168) (-766)) 125 (|has| |#1| (-1044))) (($ $ (-639 (-1168))) 124 (|has| |#1| (-1044))) (($ $ (-1168)) 123 (|has| |#1| (-1044)))) (-1580 (($ $) 174 (|has| |#1| (-554)))) (-4079 (((-1117 |#1| (-608 $)) $) 175 (|has| |#1| (-554)))) (-3371 (($ $) 24 (|has| $ (-1044)))) (-4208 (((-887 (-562)) $) 212 (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) 211 (|has| |#1| (-610 (-887 (-378))))) (($ (-417 $)) 176 (|has| |#1| (-554))) (((-535) $) 98 (|has| |#1| (-610 (-535))))) (-1660 (($ $ $) 109 (|has| |#1| (-472)))) (-2114 (($ $ $) 110 (|has| |#1| (-472)))) (-4053 (((-857) $) 11) (($ (-608 $)) 68) (($ (-1168)) 213) (($ |#1|) 204) (($ (-1117 |#1| (-608 $))) 186 (|has| |#1| (-1044))) (($ (-406 |#1|)) 172 (|has| |#1| (-554))) (($ (-947 (-406 |#1|))) 171 (|has| |#1| (-554))) (($ (-406 (-947 (-406 |#1|)))) 170 (|has| |#1| (-554))) (($ (-406 (-947 |#1|))) 166 (|has| |#1| (-554))) (($ $) 139 (|has| |#1| (-554))) (($ (-947 |#1|)) 120 (|has| |#1| (-1044))) (($ (-406 (-562))) 95 (-4037 (|has| |#1| (-554)) (-12 (|has| |#1| (-1033 (-562))) (|has| |#1| (-554))) (|has| |#1| (-1033 (-406 (-562)))))) (($ (-562)) 94 (-4037 (|has| |#1| (-1044)) (|has| |#1| (-1033 (-562)))))) (-2059 (((-3 $ "failed") $) 136 (|has| |#1| (-144)))) (-1568 (((-766)) 131 (|has| |#1| (-1044)))) (-2745 (($ $) 53) (($ (-639 $)) 52)) (-2036 (((-112) (-114)) 41)) (-3799 (((-112) $ $) 143 (|has| |#1| (-554)))) (-3105 (($ (-1168) $) 200) (($ (-1168) $ $) 199) (($ (-1168) $ $ $) 198) (($ (-1168) $ $ $ $) 197) (($ (-1168) (-639 $)) 196)) (-2285 (($) 113 (|has| |#1| (-25)) CONST)) (-2294 (($) 101 (|has| |#1| (-1104)) CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) 130 (|has| |#1| (-1044))) (($ $ (-1168) (-766)) 129 (|has| |#1| (-1044))) (($ $ (-639 (-1168))) 128 (|has| |#1| (-1044))) (($ $ (-1168)) 127 (|has| |#1| (-1044)))) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)) (-1859 (($ (-1117 |#1| (-608 $)) (-1117 |#1| (-608 $))) 173 (|has| |#1| (-554))) (($ $ $) 107 (-4037 (|has| |#1| (-472)) (|has| |#1| (-554))))) (-1847 (($ $ $) 118 (|has| |#1| (-21))) (($ $) 117 (|has| |#1| (-21)))) (-1836 (($ $ $) 111 (|has| |#1| (-25)))) (** (($ $ (-562)) 108 (-4037 (|has| |#1| (-472)) (|has| |#1| (-554)))) (($ $ (-766)) 105 (|has| |#1| (-1104))) (($ $ (-916)) 100 (|has| |#1| (-1104)))) (* (($ (-406 (-562)) $) 165 (|has| |#1| (-554))) (($ $ (-406 (-562))) 164 (|has| |#1| (-554))) (($ |#1| $) 138 (|has| |#1| (-171))) (($ $ |#1|) 137 (|has| |#1| (-171))) (($ (-562) $) 119 (|has| |#1| (-21))) (($ (-766) $) 115 (|has| |#1| (-25))) (($ (-916) $) 112 (|has| |#1| (-25))) (($ $ $) 99 (|has| |#1| (-1104)))))
(((-429 |#1|) (-139) (-845)) (T -429))
-((-1534 (*1 *2 *1) (-12 (-4 *1 (-429 *3)) (-4 *3 (-845)) (-5 *2 (-112)))) (-1547 (*1 *2 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)))) (-1402 (*1 *2 *1) (-12 (-4 *1 (-429 *3)) (-4 *3 (-845)) (-5 *2 (-639 (-1168))))) (-3105 (*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-4 *1 (-429 *3)) (-4 *3 (-845)))) (-3105 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1168)) (-4 *1 (-429 *3)) (-4 *3 (-845)))) (-3105 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1168)) (-4 *1 (-429 *3)) (-4 *3 (-845)))) (-3105 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1168)) (-4 *1 (-429 *3)) (-4 *3 (-845)))) (-3105 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-639 *1)) (-4 *1 (-429 *4)) (-4 *4 (-845)))) (-1433 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-429 *3)) (-4 *3 (-845)) (-4 *3 (-610 (-535))))) (-1433 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-1168))) (-4 *1 (-429 *3)) (-4 *3 (-845)) (-4 *3 (-610 (-535))))) (-1433 (*1 *1 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)) (-4 *2 (-610 (-535))))) (-1433 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1168)) (-4 *1 (-429 *4)) (-4 *4 (-845)) (-4 *4 (-610 (-535))))) (-1433 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-639 (-114))) (-5 *3 (-639 *1)) (-5 *4 (-1168)) (-4 *1 (-429 *5)) (-4 *5 (-845)) (-4 *5 (-610 (-535))))) (-2042 (*1 *2 *1) (|partial| -12 (-4 *3 (-1104)) (-4 *3 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-429 *3)))) (-1628 (*1 *2 *1) (|partial| -12 (-4 *3 (-1104)) (-4 *3 (-845)) (-5 *2 (-2 (|:| |var| (-608 *1)) (|:| -1960 (-562)))) (-4 *1 (-429 *3)))) (-1546 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-429 *3)))) (-3853 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-845)) (-5 *2 (-2 (|:| -4221 (-562)) (|:| |var| (-608 *1)))) (-4 *1 (-429 *3)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-1117 *3 (-608 *1))) (-4 *3 (-1044)) (-4 *3 (-845)) (-4 *1 (-429 *3)))) (-4065 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *3 (-845)) (-5 *2 (-1117 *3 (-608 *1))) (-4 *1 (-429 *3)))) (-3425 (*1 *1 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)) (-4 *2 (-1044)))) (-1628 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1044)) (-4 *4 (-845)) (-5 *2 (-2 (|:| |var| (-608 *1)) (|:| -1960 (-562)))) (-4 *1 (-429 *4)))) (-1628 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1168)) (-4 *4 (-1044)) (-4 *4 (-845)) (-5 *2 (-2 (|:| |var| (-608 *1)) (|:| -1960 (-562)))) (-4 *1 (-429 *4)))) (-3218 (*1 *2 *1) (|partial| -12 (-4 *3 (-1044)) (-4 *3 (-845)) (-5 *2 (-2 (|:| |val| *1) (|:| -1960 (-562)))) (-4 *1 (-429 *3)))) (-1433 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-639 (-766))) (-5 *4 (-639 (-1 *1 *1))) (-4 *1 (-429 *5)) (-4 *5 (-845)) (-4 *5 (-1044)))) (-1433 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-639 (-766))) (-5 *4 (-639 (-1 *1 (-639 *1)))) (-4 *1 (-429 *5)) (-4 *5 (-845)) (-4 *5 (-1044)))) (-1433 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-766)) (-5 *4 (-1 *1 (-639 *1))) (-4 *1 (-429 *5)) (-4 *5 (-845)) (-4 *5 (-1044)))) (-1433 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-766)) (-5 *4 (-1 *1 *1)) (-4 *1 (-429 *5)) (-4 *5 (-845)) (-4 *5 (-1044)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-417 *1)) (-4 *1 (-429 *3)) (-4 *3 (-554)) (-4 *3 (-845)))) (-4076 (*1 *2 *1) (-12 (-4 *3 (-554)) (-4 *3 (-845)) (-5 *2 (-1117 *3 (-608 *1))) (-4 *1 (-429 *3)))) (-3658 (*1 *1 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)) (-4 *2 (-554)))) (-1859 (*1 *1 *2 *2) (-12 (-5 *2 (-1117 *3 (-608 *1))) (-4 *3 (-554)) (-4 *3 (-845)) (-4 *1 (-429 *3)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-406 *3)) (-4 *3 (-554)) (-4 *3 (-845)) (-4 *1 (-429 *3)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-947 (-406 *3))) (-4 *3 (-554)) (-4 *3 (-845)) (-4 *1 (-429 *3)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-406 (-947 (-406 *3)))) (-4 *3 (-554)) (-4 *3 (-845)) (-4 *1 (-429 *3)))) (-1599 (*1 *2 *1 *3) (-12 (-5 *3 (-608 *1)) (-4 *1 (-429 *4)) (-4 *4 (-845)) (-4 *4 (-554)) (-5 *2 (-406 (-1164 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-429 *3)) (-4 *3 (-845)) (-4 *3 (-1104)))))
-(-13 (-301) (-1033 (-1168)) (-879 |t#1|) (-399 |t#1|) (-410 |t#1|) (-10 -8 (-15 -1534 ((-112) $)) (-15 -1547 (|t#1| $)) (-15 -1402 ((-639 (-1168)) $)) (-15 -3105 ($ (-1168) $)) (-15 -3105 ($ (-1168) $ $)) (-15 -3105 ($ (-1168) $ $ $)) (-15 -3105 ($ (-1168) $ $ $ $)) (-15 -3105 ($ (-1168) (-639 $))) (IF (|has| |t#1| (-610 (-535))) (PROGN (-6 (-610 (-535))) (-15 -1433 ($ $ (-1168))) (-15 -1433 ($ $ (-639 (-1168)))) (-15 -1433 ($ $)) (-15 -1433 ($ $ (-114) $ (-1168))) (-15 -1433 ($ $ (-639 (-114)) (-639 $) (-1168)))) |%noBranch|) (IF (|has| |t#1| (-1104)) (PROGN (-6 (-721)) (-15 ** ($ $ (-766))) (-15 -2042 ((-3 (-639 $) "failed") $)) (-15 -1628 ((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-472)) (-6 (-472)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -1546 ((-3 (-639 $) "failed") $)) (-15 -3853 ((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-1044)) (PROGN (-6 (-1044)) (-6 (-1033 (-947 |t#1|))) (-6 (-895 (-1168))) (-6 (-376 |t#1|)) (-15 -4054 ($ (-1117 |t#1| (-608 $)))) (-15 -4065 ((-1117 |t#1| (-608 $)) $)) (-15 -3425 ($ $)) (-15 -1628 ((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $ (-114))) (-15 -1628 ((-3 (-2 (|:| |var| (-608 $)) (|:| -1960 (-562))) "failed") $ (-1168))) (-15 -3218 ((-3 (-2 (|:| |val| $) (|:| -1960 (-562))) "failed") $)) (-15 -1433 ($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ $)))) (-15 -1433 ($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ (-639 $))))) (-15 -1433 ($ $ (-1168) (-766) (-1 $ (-639 $)))) (-15 -1433 ($ $ (-1168) (-766) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |t#1| (-171)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-554)) (PROGN (-6 (-362)) (-6 (-1033 (-406 (-947 |t#1|)))) (-15 -4208 ($ (-417 $))) (-15 -4076 ((-1117 |t#1| (-608 $)) $)) (-15 -3658 ($ $)) (-15 -1859 ($ (-1117 |t#1| (-608 $)) (-1117 |t#1| (-608 $)))) (-15 -4054 ($ (-406 |t#1|))) (-15 -4054 ($ (-947 (-406 |t#1|)))) (-15 -4054 ($ (-406 (-947 (-406 |t#1|))))) (-15 -1599 ((-406 (-1164 $)) $ (-608 $))) (IF (|has| |t#1| (-1033 (-562))) (-6 (-1033 (-406 (-562)))) |%noBranch|)) |%noBranch|)))
+((-1534 (*1 *2 *1) (-12 (-4 *1 (-429 *3)) (-4 *3 (-845)) (-5 *2 (-112)))) (-1547 (*1 *2 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)))) (-1401 (*1 *2 *1) (-12 (-4 *1 (-429 *3)) (-4 *3 (-845)) (-5 *2 (-639 (-1168))))) (-3105 (*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-4 *1 (-429 *3)) (-4 *3 (-845)))) (-3105 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1168)) (-4 *1 (-429 *3)) (-4 *3 (-845)))) (-3105 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1168)) (-4 *1 (-429 *3)) (-4 *3 (-845)))) (-3105 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1168)) (-4 *1 (-429 *3)) (-4 *3 (-845)))) (-3105 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-639 *1)) (-4 *1 (-429 *4)) (-4 *4 (-845)))) (-1433 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-429 *3)) (-4 *3 (-845)) (-4 *3 (-610 (-535))))) (-1433 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-1168))) (-4 *1 (-429 *3)) (-4 *3 (-845)) (-4 *3 (-610 (-535))))) (-1433 (*1 *1 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)) (-4 *2 (-610 (-535))))) (-1433 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1168)) (-4 *1 (-429 *4)) (-4 *4 (-845)) (-4 *4 (-610 (-535))))) (-1433 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-639 (-114))) (-5 *3 (-639 *1)) (-5 *4 (-1168)) (-4 *1 (-429 *5)) (-4 *5 (-845)) (-4 *5 (-610 (-535))))) (-4025 (*1 *2 *1) (|partial| -12 (-4 *3 (-1104)) (-4 *3 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-429 *3)))) (-4270 (*1 *2 *1) (|partial| -12 (-4 *3 (-1104)) (-4 *3 (-845)) (-5 *2 (-2 (|:| |var| (-608 *1)) (|:| -1300 (-562)))) (-4 *1 (-429 *3)))) (-1778 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-429 *3)))) (-2871 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-845)) (-5 *2 (-2 (|:| -4221 (-562)) (|:| |var| (-608 *1)))) (-4 *1 (-429 *3)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-1117 *3 (-608 *1))) (-4 *3 (-1044)) (-4 *3 (-845)) (-4 *1 (-429 *3)))) (-4063 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *3 (-845)) (-5 *2 (-1117 *3 (-608 *1))) (-4 *1 (-429 *3)))) (-2957 (*1 *1 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)) (-4 *2 (-1044)))) (-4270 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1044)) (-4 *4 (-845)) (-5 *2 (-2 (|:| |var| (-608 *1)) (|:| -1300 (-562)))) (-4 *1 (-429 *4)))) (-4270 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1168)) (-4 *4 (-1044)) (-4 *4 (-845)) (-5 *2 (-2 (|:| |var| (-608 *1)) (|:| -1300 (-562)))) (-4 *1 (-429 *4)))) (-2811 (*1 *2 *1) (|partial| -12 (-4 *3 (-1044)) (-4 *3 (-845)) (-5 *2 (-2 (|:| |val| *1) (|:| -1300 (-562)))) (-4 *1 (-429 *3)))) (-1433 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-639 (-766))) (-5 *4 (-639 (-1 *1 *1))) (-4 *1 (-429 *5)) (-4 *5 (-845)) (-4 *5 (-1044)))) (-1433 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-639 (-766))) (-5 *4 (-639 (-1 *1 (-639 *1)))) (-4 *1 (-429 *5)) (-4 *5 (-845)) (-4 *5 (-1044)))) (-1433 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-766)) (-5 *4 (-1 *1 (-639 *1))) (-4 *1 (-429 *5)) (-4 *5 (-845)) (-4 *5 (-1044)))) (-1433 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-766)) (-5 *4 (-1 *1 *1)) (-4 *1 (-429 *5)) (-4 *5 (-845)) (-4 *5 (-1044)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-417 *1)) (-4 *1 (-429 *3)) (-4 *3 (-554)) (-4 *3 (-845)))) (-4079 (*1 *2 *1) (-12 (-4 *3 (-554)) (-4 *3 (-845)) (-5 *2 (-1117 *3 (-608 *1))) (-4 *1 (-429 *3)))) (-1580 (*1 *1 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)) (-4 *2 (-554)))) (-1859 (*1 *1 *2 *2) (-12 (-5 *2 (-1117 *3 (-608 *1))) (-4 *3 (-554)) (-4 *3 (-845)) (-4 *1 (-429 *3)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-406 *3)) (-4 *3 (-554)) (-4 *3 (-845)) (-4 *1 (-429 *3)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-947 (-406 *3))) (-4 *3 (-554)) (-4 *3 (-845)) (-4 *1 (-429 *3)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-406 (-947 (-406 *3)))) (-4 *3 (-554)) (-4 *3 (-845)) (-4 *1 (-429 *3)))) (-1602 (*1 *2 *1 *3) (-12 (-5 *3 (-608 *1)) (-4 *1 (-429 *4)) (-4 *4 (-845)) (-4 *4 (-554)) (-5 *2 (-406 (-1164 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-429 *3)) (-4 *3 (-845)) (-4 *3 (-1104)))))
+(-13 (-301) (-1033 (-1168)) (-879 |t#1|) (-399 |t#1|) (-410 |t#1|) (-10 -8 (-15 -1534 ((-112) $)) (-15 -1547 (|t#1| $)) (-15 -1401 ((-639 (-1168)) $)) (-15 -3105 ($ (-1168) $)) (-15 -3105 ($ (-1168) $ $)) (-15 -3105 ($ (-1168) $ $ $)) (-15 -3105 ($ (-1168) $ $ $ $)) (-15 -3105 ($ (-1168) (-639 $))) (IF (|has| |t#1| (-610 (-535))) (PROGN (-6 (-610 (-535))) (-15 -1433 ($ $ (-1168))) (-15 -1433 ($ $ (-639 (-1168)))) (-15 -1433 ($ $)) (-15 -1433 ($ $ (-114) $ (-1168))) (-15 -1433 ($ $ (-639 (-114)) (-639 $) (-1168)))) |%noBranch|) (IF (|has| |t#1| (-1104)) (PROGN (-6 (-721)) (-15 ** ($ $ (-766))) (-15 -4025 ((-3 (-639 $) "failed") $)) (-15 -4270 ((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-472)) (-6 (-472)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -1778 ((-3 (-639 $) "failed") $)) (-15 -2871 ((-3 (-2 (|:| -4221 (-562)) (|:| |var| (-608 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-1044)) (PROGN (-6 (-1044)) (-6 (-1033 (-947 |t#1|))) (-6 (-895 (-1168))) (-6 (-376 |t#1|)) (-15 -4053 ($ (-1117 |t#1| (-608 $)))) (-15 -4063 ((-1117 |t#1| (-608 $)) $)) (-15 -2957 ($ $)) (-15 -4270 ((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $ (-114))) (-15 -4270 ((-3 (-2 (|:| |var| (-608 $)) (|:| -1300 (-562))) "failed") $ (-1168))) (-15 -2811 ((-3 (-2 (|:| |val| $) (|:| -1300 (-562))) "failed") $)) (-15 -1433 ($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ $)))) (-15 -1433 ($ $ (-639 (-1168)) (-639 (-766)) (-639 (-1 $ (-639 $))))) (-15 -1433 ($ $ (-1168) (-766) (-1 $ (-639 $)))) (-15 -1433 ($ $ (-1168) (-766) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |t#1| (-171)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-554)) (PROGN (-6 (-362)) (-6 (-1033 (-406 (-947 |t#1|)))) (-15 -4208 ($ (-417 $))) (-15 -4079 ((-1117 |t#1| (-608 $)) $)) (-15 -1580 ($ $)) (-15 -1859 ($ (-1117 |t#1| (-608 $)) (-1117 |t#1| (-608 $)))) (-15 -4053 ($ (-406 |t#1|))) (-15 -4053 ($ (-947 (-406 |t#1|)))) (-15 -4053 ($ (-406 (-947 (-406 |t#1|))))) (-15 -1602 ((-406 (-1164 $)) $ (-608 $))) (IF (|has| |t#1| (-1033 (-562))) (-6 (-1033 (-406 (-562)))) |%noBranch|)) |%noBranch|)))
(((-21) -4037 (|has| |#1| (-1044)) (|has| |#1| (-554)) (|has| |#1| (-171)) (|has| |#1| (-146)) (|has| |#1| (-144)) (|has| |#1| (-21))) ((-23) -4037 (|has| |#1| (-1044)) (|has| |#1| (-554)) (|has| |#1| (-171)) (|has| |#1| (-146)) (|has| |#1| (-144)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -4037 (|has| |#1| (-1044)) (|has| |#1| (-554)) (|has| |#1| (-171)) (|has| |#1| (-146)) (|has| |#1| (-144)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-38 #0=(-406 (-562))) |has| |#1| (-554)) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) |has| |#1| (-554)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-554)) ((-111 |#1| |#1|) |has| |#1| (-171)) ((-111 $ $) |has| |#1| (-554)) ((-130) -4037 (|has| |#1| (-1044)) (|has| |#1| (-554)) (|has| |#1| (-171)) (|has| |#1| (-146)) (|has| |#1| (-144)) (|has| |#1| (-21))) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #0#) -4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-554))) ((-612 #1=(-406 (-947 |#1|))) |has| |#1| (-554)) ((-612 (-562)) -4037 (|has| |#1| (-1044)) (|has| |#1| (-1033 (-562))) (|has| |#1| (-554)) (|has| |#1| (-171)) (|has| |#1| (-146)) (|has| |#1| (-144))) ((-612 #2=(-608 $)) . T) ((-612 #3=(-947 |#1|)) |has| |#1| (-1044)) ((-612 #4=(-1168)) . T) ((-612 |#1|) . T) ((-612 $) |has| |#1| (-554)) ((-609 (-857)) . T) ((-171) |has| |#1| (-554)) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-610 (-887 (-378))) |has| |#1| (-610 (-887 (-378)))) ((-610 (-887 (-562))) |has| |#1| (-610 (-887 (-562)))) ((-242) |has| |#1| (-554)) ((-289) |has| |#1| (-554)) ((-306) |has| |#1| (-554)) ((-308 $) . T) ((-301) . T) ((-362) |has| |#1| (-554)) ((-376 |#1|) |has| |#1| (-1044)) ((-399 |#1|) . T) ((-410 |#1|) . T) ((-451) |has| |#1| (-554)) ((-472) |has| |#1| (-472)) ((-513 (-608 $) $) . T) ((-513 $ $) . T) ((-554) |has| |#1| (-554)) ((-642 #0#) |has| |#1| (-554)) ((-642 |#1|) |has| |#1| (-171)) ((-642 $) -4037 (|has| |#1| (-1044)) (|has| |#1| (-554)) (|has| |#1| (-171)) (|has| |#1| (-146)) (|has| |#1| (-144))) ((-635 (-562)) -12 (|has| |#1| (-635 (-562))) (|has| |#1| (-1044))) ((-635 |#1|) |has| |#1| (-1044)) ((-712 #0#) |has| |#1| (-554)) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) |has| |#1| (-554)) ((-721) -4037 (|has| |#1| (-1104)) (|has| |#1| (-1044)) (|has| |#1| (-554)) (|has| |#1| (-472)) (|has| |#1| (-171)) (|has| |#1| (-146)) (|has| |#1| (-144))) ((-845) . T) ((-895 (-1168)) |has| |#1| (-1044)) ((-881 (-378)) |has| |#1| (-881 (-378))) ((-881 (-562)) |has| |#1| (-881 (-562))) ((-879 |#1|) . T) ((-915) |has| |#1| (-554)) ((-1033 (-406 (-562))) -4037 (|has| |#1| (-1033 (-406 (-562)))) (-12 (|has| |#1| (-554)) (|has| |#1| (-1033 (-562))))) ((-1033 #1#) |has| |#1| (-554)) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 #2#) . T) ((-1033 #3#) |has| |#1| (-1044)) ((-1033 #4#) . T) ((-1033 |#1|) . T) ((-1050 #0#) |has| |#1| (-554)) ((-1050 |#1|) |has| |#1| (-171)) ((-1050 $) |has| |#1| (-554)) ((-1044) -4037 (|has| |#1| (-1044)) (|has| |#1| (-554)) (|has| |#1| (-171)) (|has| |#1| (-146)) (|has| |#1| (-144))) ((-1051) -4037 (|has| |#1| (-1044)) (|has| |#1| (-554)) (|has| |#1| (-171)) (|has| |#1| (-146)) (|has| |#1| (-144))) ((-1104) -4037 (|has| |#1| (-1104)) (|has| |#1| (-1044)) (|has| |#1| (-554)) (|has| |#1| (-472)) (|has| |#1| (-171)) (|has| |#1| (-146)) (|has| |#1| (-144))) ((-1092) . T) ((-1207) . T) ((-1211) |has| |#1| (-554)))
-((-4230 ((|#2| |#2| |#2|) 33)) (-2876 (((-114) (-114)) 44)) (-1828 ((|#2| |#2|) 66)) (-3184 ((|#2| |#2|) 69)) (-2791 ((|#2| |#2|) 32)) (-3690 ((|#2| |#2| |#2|) 35)) (-1868 ((|#2| |#2| |#2|) 37)) (-4266 ((|#2| |#2| |#2|) 34)) (-3350 ((|#2| |#2| |#2|) 36)) (-2803 (((-112) (-114)) 42)) (-2190 ((|#2| |#2|) 39)) (-3402 ((|#2| |#2|) 38)) (-3526 ((|#2| |#2|) 27)) (-3819 ((|#2| |#2| |#2|) 30) ((|#2| |#2|) 28)) (-2088 ((|#2| |#2| |#2|) 31)))
-(((-430 |#1| |#2|) (-10 -7 (-15 -2803 ((-112) (-114))) (-15 -2876 ((-114) (-114))) (-15 -3526 (|#2| |#2|)) (-15 -3819 (|#2| |#2|)) (-15 -3819 (|#2| |#2| |#2|)) (-15 -2088 (|#2| |#2| |#2|)) (-15 -2791 (|#2| |#2|)) (-15 -4230 (|#2| |#2| |#2|)) (-15 -4266 (|#2| |#2| |#2|)) (-15 -3690 (|#2| |#2| |#2|)) (-15 -3350 (|#2| |#2| |#2|)) (-15 -1868 (|#2| |#2| |#2|)) (-15 -3402 (|#2| |#2|)) (-15 -2190 (|#2| |#2|)) (-15 -3184 (|#2| |#2|)) (-15 -1828 (|#2| |#2|))) (-13 (-845) (-554)) (-429 |#1|)) (T -430))
-((-1828 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-3184 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-2190 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-3402 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-1868 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-3350 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-3690 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-4266 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-4230 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-2791 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-2088 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-3819 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-3819 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-3526 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-2876 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *4)) (-4 *4 (-429 *3)))) (-2803 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-430 *4 *5)) (-4 *5 (-429 *4)))))
-(-10 -7 (-15 -2803 ((-112) (-114))) (-15 -2876 ((-114) (-114))) (-15 -3526 (|#2| |#2|)) (-15 -3819 (|#2| |#2|)) (-15 -3819 (|#2| |#2| |#2|)) (-15 -2088 (|#2| |#2| |#2|)) (-15 -2791 (|#2| |#2|)) (-15 -4230 (|#2| |#2| |#2|)) (-15 -4266 (|#2| |#2| |#2|)) (-15 -3690 (|#2| |#2| |#2|)) (-15 -3350 (|#2| |#2| |#2|)) (-15 -1868 (|#2| |#2| |#2|)) (-15 -3402 (|#2| |#2|)) (-15 -2190 (|#2| |#2|)) (-15 -3184 (|#2| |#2|)) (-15 -1828 (|#2| |#2|)))
-((-3529 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1164 |#2|)) (|:| |pol2| (-1164 |#2|)) (|:| |prim| (-1164 |#2|))) |#2| |#2|) 96 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-639 (-1164 |#2|))) (|:| |prim| (-1164 |#2|))) (-639 |#2|)) 61)))
-(((-431 |#1| |#2|) (-10 -7 (-15 -3529 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-639 (-1164 |#2|))) (|:| |prim| (-1164 |#2|))) (-639 |#2|))) (IF (|has| |#2| (-27)) (-15 -3529 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1164 |#2|)) (|:| |pol2| (-1164 |#2|)) (|:| |prim| (-1164 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-554) (-845) (-146)) (-429 |#1|)) (T -431))
-((-3529 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-554) (-845) (-146))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1164 *3)) (|:| |pol2| (-1164 *3)) (|:| |prim| (-1164 *3)))) (-5 *1 (-431 *4 *3)) (-4 *3 (-27)) (-4 *3 (-429 *4)))) (-3529 (*1 *2 *3) (-12 (-5 *3 (-639 *5)) (-4 *5 (-429 *4)) (-4 *4 (-13 (-554) (-845) (-146))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-639 (-1164 *5))) (|:| |prim| (-1164 *5)))) (-5 *1 (-431 *4 *5)))))
-(-10 -7 (-15 -3529 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-639 (-1164 |#2|))) (|:| |prim| (-1164 |#2|))) (-639 |#2|))) (IF (|has| |#2| (-27)) (-15 -3529 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1164 |#2|)) (|:| |pol2| (-1164 |#2|)) (|:| |prim| (-1164 |#2|))) |#2| |#2|)) |%noBranch|))
-((-3234 (((-1261)) 19)) (-1622 (((-1164 (-406 (-562))) |#2| (-608 |#2|)) 41) (((-406 (-562)) |#2|) 25)))
-(((-432 |#1| |#2|) (-10 -7 (-15 -1622 ((-406 (-562)) |#2|)) (-15 -1622 ((-1164 (-406 (-562))) |#2| (-608 |#2|))) (-15 -3234 ((-1261)))) (-13 (-845) (-554) (-1033 (-562))) (-429 |#1|)) (T -432))
-((-3234 (*1 *2) (-12 (-4 *3 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-1261)) (-5 *1 (-432 *3 *4)) (-4 *4 (-429 *3)))) (-1622 (*1 *2 *3 *4) (-12 (-5 *4 (-608 *3)) (-4 *3 (-429 *5)) (-4 *5 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-432 *5 *3)))) (-1622 (*1 *2 *3) (-12 (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-406 (-562))) (-5 *1 (-432 *4 *3)) (-4 *3 (-429 *4)))))
-(-10 -7 (-15 -1622 ((-406 (-562)) |#2|)) (-15 -1622 ((-1164 (-406 (-562))) |#2| (-608 |#2|))) (-15 -3234 ((-1261))))
-((-3263 (((-112) $) 28)) (-2433 (((-112) $) 30)) (-3377 (((-112) $) 31)) (-3827 (((-112) $) 34)) (-2219 (((-112) $) 29)) (-2450 (((-112) $) 33)) (-4054 (((-857) $) 18) (($ (-1150)) 27) (($ (-1168)) 23) (((-1168) $) 22) (((-1096) $) 21)) (-2238 (((-112) $) 32)) (-1731 (((-112) $ $) 15)))
-(((-433) (-13 (-609 (-857)) (-10 -8 (-15 -4054 ($ (-1150))) (-15 -4054 ($ (-1168))) (-15 -4054 ((-1168) $)) (-15 -4054 ((-1096) $)) (-15 -3263 ((-112) $)) (-15 -2219 ((-112) $)) (-15 -3377 ((-112) $)) (-15 -2450 ((-112) $)) (-15 -3827 ((-112) $)) (-15 -2238 ((-112) $)) (-15 -2433 ((-112) $)) (-15 -1731 ((-112) $ $))))) (T -433))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-433)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-433)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-433)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-433)))) (-3263 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-2219 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-3377 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-2450 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-3827 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-2238 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-2433 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-1731 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))))
-(-13 (-609 (-857)) (-10 -8 (-15 -4054 ($ (-1150))) (-15 -4054 ($ (-1168))) (-15 -4054 ((-1168) $)) (-15 -4054 ((-1096) $)) (-15 -3263 ((-112) $)) (-15 -2219 ((-112) $)) (-15 -3377 ((-112) $)) (-15 -2450 ((-112) $)) (-15 -3827 ((-112) $)) (-15 -2238 ((-112) $)) (-15 -2433 ((-112) $)) (-15 -1731 ((-112) $ $))))
-((-1771 (((-3 (-417 (-1164 (-406 (-562)))) "failed") |#3|) 70)) (-3685 (((-417 |#3|) |#3|) 34)) (-2802 (((-3 (-417 (-1164 (-48))) "failed") |#3|) 46 (|has| |#2| (-1033 (-48))))) (-3837 (((-3 (|:| |overq| (-1164 (-406 (-562)))) (|:| |overan| (-1164 (-48))) (|:| -4253 (-112))) |#3|) 37)))
-(((-434 |#1| |#2| |#3|) (-10 -7 (-15 -3685 ((-417 |#3|) |#3|)) (-15 -1771 ((-3 (-417 (-1164 (-406 (-562)))) "failed") |#3|)) (-15 -3837 ((-3 (|:| |overq| (-1164 (-406 (-562)))) (|:| |overan| (-1164 (-48))) (|:| -4253 (-112))) |#3|)) (IF (|has| |#2| (-1033 (-48))) (-15 -2802 ((-3 (-417 (-1164 (-48))) "failed") |#3|)) |%noBranch|)) (-13 (-554) (-845) (-1033 (-562))) (-429 |#1|) (-1232 |#2|)) (T -434))
-((-2802 (*1 *2 *3) (|partial| -12 (-4 *5 (-1033 (-48))) (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4)) (-5 *2 (-417 (-1164 (-48)))) (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))) (-3837 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4)) (-5 *2 (-3 (|:| |overq| (-1164 (-406 (-562)))) (|:| |overan| (-1164 (-48))) (|:| -4253 (-112)))) (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))) (-1771 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4)) (-5 *2 (-417 (-1164 (-406 (-562))))) (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))) (-3685 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4)) (-5 *2 (-417 *3)) (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))))
-(-10 -7 (-15 -3685 ((-417 |#3|) |#3|)) (-15 -1771 ((-3 (-417 (-1164 (-406 (-562)))) "failed") |#3|)) (-15 -3837 ((-3 (|:| |overq| (-1164 (-406 (-562)))) (|:| |overan| (-1164 (-48))) (|:| -4253 (-112))) |#3|)) (IF (|has| |#2| (-1033 (-48))) (-15 -2802 ((-3 (-417 (-1164 (-48))) "failed") |#3|)) |%noBranch|))
-((-4041 (((-112) $ $) NIL)) (-3067 (((-1150) $ (-1150)) NIL)) (-2413 (($ $ (-1150)) NIL)) (-1805 (((-1150) $) NIL)) (-2827 (((-387) (-387) (-387)) 17) (((-387) (-387)) 15)) (-3316 (($ (-387)) NIL) (($ (-387) (-1150)) NIL)) (-3254 (((-387) $) NIL)) (-2913 (((-1150) $) NIL)) (-3523 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2996 (((-1261) (-1150)) 9)) (-1298 (((-1261) (-1150)) 10)) (-2612 (((-1261)) 11)) (-4054 (((-857) $) NIL)) (-3948 (($ $) 34)) (-1731 (((-112) $ $) NIL)))
-(((-435) (-13 (-363 (-387) (-1150)) (-10 -7 (-15 -2827 ((-387) (-387) (-387))) (-15 -2827 ((-387) (-387))) (-15 -2996 ((-1261) (-1150))) (-15 -1298 ((-1261) (-1150))) (-15 -2612 ((-1261)))))) (T -435))
-((-2827 (*1 *2 *2 *2) (-12 (-5 *2 (-387)) (-5 *1 (-435)))) (-2827 (*1 *2 *2) (-12 (-5 *2 (-387)) (-5 *1 (-435)))) (-2996 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-435)))) (-1298 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-435)))) (-2612 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-435)))))
-(-13 (-363 (-387) (-1150)) (-10 -7 (-15 -2827 ((-387) (-387) (-387))) (-15 -2827 ((-387) (-387))) (-15 -2996 ((-1261) (-1150))) (-15 -1298 ((-1261) (-1150))) (-15 -2612 ((-1261)))))
-((-4041 (((-112) $ $) NIL)) (-3909 (((-3 (|:| |fst| (-433)) (|:| -2650 "void")) $) 11)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1523 (($) 32)) (-1647 (($) 38)) (-1824 (($) 34)) (-3117 (($) 36)) (-1791 (($) 33)) (-1556 (($) 35)) (-1441 (($) 37)) (-2240 (((-112) $) 8)) (-1598 (((-639 (-947 (-562))) $) 19)) (-4066 (($ (-3 (|:| |fst| (-433)) (|:| -2650 "void")) (-639 (-1168)) (-112)) 27) (($ (-3 (|:| |fst| (-433)) (|:| -2650 "void")) (-639 (-947 (-562))) (-112)) 28)) (-4054 (((-857) $) 23) (($ (-433)) 29)) (-1731 (((-112) $ $) NIL)))
-(((-436) (-13 (-1092) (-10 -8 (-15 -4054 ($ (-433))) (-15 -3909 ((-3 (|:| |fst| (-433)) (|:| -2650 "void")) $)) (-15 -1598 ((-639 (-947 (-562))) $)) (-15 -2240 ((-112) $)) (-15 -4066 ($ (-3 (|:| |fst| (-433)) (|:| -2650 "void")) (-639 (-1168)) (-112))) (-15 -4066 ($ (-3 (|:| |fst| (-433)) (|:| -2650 "void")) (-639 (-947 (-562))) (-112))) (-15 -1523 ($)) (-15 -1791 ($)) (-15 -1824 ($)) (-15 -1647 ($)) (-15 -1556 ($)) (-15 -3117 ($)) (-15 -1441 ($))))) (T -436))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-433)) (-5 *1 (-436)))) (-3909 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-5 *1 (-436)))) (-1598 (*1 *2 *1) (-12 (-5 *2 (-639 (-947 (-562)))) (-5 *1 (-436)))) (-2240 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-4066 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-5 *3 (-639 (-1168))) (-5 *4 (-112)) (-5 *1 (-436)))) (-4066 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-112)) (-5 *1 (-436)))) (-1523 (*1 *1) (-5 *1 (-436))) (-1791 (*1 *1) (-5 *1 (-436))) (-1824 (*1 *1) (-5 *1 (-436))) (-1647 (*1 *1) (-5 *1 (-436))) (-1556 (*1 *1) (-5 *1 (-436))) (-3117 (*1 *1) (-5 *1 (-436))) (-1441 (*1 *1) (-5 *1 (-436))))
-(-13 (-1092) (-10 -8 (-15 -4054 ($ (-433))) (-15 -3909 ((-3 (|:| |fst| (-433)) (|:| -2650 "void")) $)) (-15 -1598 ((-639 (-947 (-562))) $)) (-15 -2240 ((-112) $)) (-15 -4066 ($ (-3 (|:| |fst| (-433)) (|:| -2650 "void")) (-639 (-1168)) (-112))) (-15 -4066 ($ (-3 (|:| |fst| (-433)) (|:| -2650 "void")) (-639 (-947 (-562))) (-112))) (-15 -1523 ($)) (-15 -1791 ($)) (-15 -1824 ($)) (-15 -1647 ($)) (-15 -1556 ($)) (-15 -3117 ($)) (-15 -1441 ($))))
-((-4041 (((-112) $ $) NIL)) (-3254 (((-1168) $) 8)) (-2913 (((-1150) $) 16)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 11)) (-1731 (((-112) $ $) 13)))
-(((-437 |#1|) (-13 (-1092) (-10 -8 (-15 -3254 ((-1168) $)))) (-1168)) (T -437))
-((-3254 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-437 *3)) (-14 *3 *2))))
-(-13 (-1092) (-10 -8 (-15 -3254 ((-1168) $))))
-((-4041 (((-112) $ $) NIL)) (-2845 (((-1110) $) 7)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 13)) (-1731 (((-112) $ $) 9)))
-(((-438) (-13 (-1092) (-10 -8 (-15 -2845 ((-1110) $))))) (T -438))
-((-2845 (*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-438)))))
-(-13 (-1092) (-10 -8 (-15 -2845 ((-1110) $))))
-((-3219 (((-1261) $) 7)) (-4054 (((-857) $) 8) (($ (-1256 (-693))) 14) (($ (-639 (-329))) 13) (($ (-329)) 12) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 11)))
+((-2146 ((|#2| |#2| |#2|) 33)) (-1502 (((-114) (-114)) 44)) (-2461 ((|#2| |#2|) 66)) (-2509 ((|#2| |#2|) 69)) (-1904 ((|#2| |#2|) 32)) (-3733 ((|#2| |#2| |#2|) 35)) (-2831 ((|#2| |#2| |#2|) 37)) (-4287 ((|#2| |#2| |#2|) 34)) (-1623 ((|#2| |#2| |#2|) 36)) (-2036 (((-112) (-114)) 42)) (-2001 ((|#2| |#2|) 39)) (-3950 ((|#2| |#2|) 38)) (-2757 ((|#2| |#2|) 27)) (-2582 ((|#2| |#2| |#2|) 30) ((|#2| |#2|) 28)) (-3291 ((|#2| |#2| |#2|) 31)))
+(((-430 |#1| |#2|) (-10 -7 (-15 -2036 ((-112) (-114))) (-15 -1502 ((-114) (-114))) (-15 -2757 (|#2| |#2|)) (-15 -2582 (|#2| |#2|)) (-15 -2582 (|#2| |#2| |#2|)) (-15 -3291 (|#2| |#2| |#2|)) (-15 -1904 (|#2| |#2|)) (-15 -2146 (|#2| |#2| |#2|)) (-15 -4287 (|#2| |#2| |#2|)) (-15 -3733 (|#2| |#2| |#2|)) (-15 -1623 (|#2| |#2| |#2|)) (-15 -2831 (|#2| |#2| |#2|)) (-15 -3950 (|#2| |#2|)) (-15 -2001 (|#2| |#2|)) (-15 -2509 (|#2| |#2|)) (-15 -2461 (|#2| |#2|))) (-13 (-845) (-554)) (-429 |#1|)) (T -430))
+((-2461 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-2509 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-2001 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-3950 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-2831 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-1623 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-3733 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-4287 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-2146 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-1904 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-3291 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-2582 (*1 *2 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-2582 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-2757 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2)) (-4 *2 (-429 *3)))) (-1502 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *4)) (-4 *4 (-429 *3)))) (-2036 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-430 *4 *5)) (-4 *5 (-429 *4)))))
+(-10 -7 (-15 -2036 ((-112) (-114))) (-15 -1502 ((-114) (-114))) (-15 -2757 (|#2| |#2|)) (-15 -2582 (|#2| |#2|)) (-15 -2582 (|#2| |#2| |#2|)) (-15 -3291 (|#2| |#2| |#2|)) (-15 -1904 (|#2| |#2|)) (-15 -2146 (|#2| |#2| |#2|)) (-15 -4287 (|#2| |#2| |#2|)) (-15 -3733 (|#2| |#2| |#2|)) (-15 -1623 (|#2| |#2| |#2|)) (-15 -2831 (|#2| |#2| |#2|)) (-15 -3950 (|#2| |#2|)) (-15 -2001 (|#2| |#2|)) (-15 -2509 (|#2| |#2|)) (-15 -2461 (|#2| |#2|)))
+((-2787 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1164 |#2|)) (|:| |pol2| (-1164 |#2|)) (|:| |prim| (-1164 |#2|))) |#2| |#2|) 96 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-639 (-1164 |#2|))) (|:| |prim| (-1164 |#2|))) (-639 |#2|)) 61)))
+(((-431 |#1| |#2|) (-10 -7 (-15 -2787 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-639 (-1164 |#2|))) (|:| |prim| (-1164 |#2|))) (-639 |#2|))) (IF (|has| |#2| (-27)) (-15 -2787 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1164 |#2|)) (|:| |pol2| (-1164 |#2|)) (|:| |prim| (-1164 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-554) (-845) (-146)) (-429 |#1|)) (T -431))
+((-2787 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-554) (-845) (-146))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1164 *3)) (|:| |pol2| (-1164 *3)) (|:| |prim| (-1164 *3)))) (-5 *1 (-431 *4 *3)) (-4 *3 (-27)) (-4 *3 (-429 *4)))) (-2787 (*1 *2 *3) (-12 (-5 *3 (-639 *5)) (-4 *5 (-429 *4)) (-4 *4 (-13 (-554) (-845) (-146))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-639 (-1164 *5))) (|:| |prim| (-1164 *5)))) (-5 *1 (-431 *4 *5)))))
+(-10 -7 (-15 -2787 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-639 (-1164 |#2|))) (|:| |prim| (-1164 |#2|))) (-639 |#2|))) (IF (|has| |#2| (-27)) (-15 -2787 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1164 |#2|)) (|:| |pol2| (-1164 |#2|)) (|:| |prim| (-1164 |#2|))) |#2| |#2|)) |%noBranch|))
+((-1769 (((-1261)) 19)) (-4223 (((-1164 (-406 (-562))) |#2| (-608 |#2|)) 41) (((-406 (-562)) |#2|) 25)))
+(((-432 |#1| |#2|) (-10 -7 (-15 -4223 ((-406 (-562)) |#2|)) (-15 -4223 ((-1164 (-406 (-562))) |#2| (-608 |#2|))) (-15 -1769 ((-1261)))) (-13 (-845) (-554) (-1033 (-562))) (-429 |#1|)) (T -432))
+((-1769 (*1 *2) (-12 (-4 *3 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-1261)) (-5 *1 (-432 *3 *4)) (-4 *4 (-429 *3)))) (-4223 (*1 *2 *3 *4) (-12 (-5 *4 (-608 *3)) (-4 *3 (-429 *5)) (-4 *5 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-432 *5 *3)))) (-4223 (*1 *2 *3) (-12 (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-406 (-562))) (-5 *1 (-432 *4 *3)) (-4 *3 (-429 *4)))))
+(-10 -7 (-15 -4223 ((-406 (-562)) |#2|)) (-15 -4223 ((-1164 (-406 (-562))) |#2| (-608 |#2|))) (-15 -1769 ((-1261))))
+((-2091 (((-112) $) 28)) (-2553 (((-112) $) 30)) (-3693 (((-112) $) 31)) (-2646 (((-112) $) 34)) (-2291 (((-112) $) 29)) (-2706 (((-112) $) 33)) (-4053 (((-857) $) 18) (($ (-1150)) 27) (($ (-1168)) 23) (((-1168) $) 22) (((-1096) $) 21)) (-4290 (((-112) $) 32)) (-1733 (((-112) $ $) 15)))
+(((-433) (-13 (-609 (-857)) (-10 -8 (-15 -4053 ($ (-1150))) (-15 -4053 ($ (-1168))) (-15 -4053 ((-1168) $)) (-15 -4053 ((-1096) $)) (-15 -2091 ((-112) $)) (-15 -2291 ((-112) $)) (-15 -3693 ((-112) $)) (-15 -2706 ((-112) $)) (-15 -2646 ((-112) $)) (-15 -4290 ((-112) $)) (-15 -2553 ((-112) $)) (-15 -1733 ((-112) $ $))))) (T -433))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-433)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-433)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-433)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-433)))) (-2091 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-2291 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-3693 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-2706 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-2646 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-4290 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-2553 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))) (-1733 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))))
+(-13 (-609 (-857)) (-10 -8 (-15 -4053 ($ (-1150))) (-15 -4053 ($ (-1168))) (-15 -4053 ((-1168) $)) (-15 -4053 ((-1096) $)) (-15 -2091 ((-112) $)) (-15 -2291 ((-112) $)) (-15 -3693 ((-112) $)) (-15 -2706 ((-112) $)) (-15 -2646 ((-112) $)) (-15 -4290 ((-112) $)) (-15 -2553 ((-112) $)) (-15 -1733 ((-112) $ $))))
+((-3083 (((-3 (-417 (-1164 (-406 (-562)))) "failed") |#3|) 70)) (-3677 (((-417 |#3|) |#3|) 34)) (-2024 (((-3 (-417 (-1164 (-48))) "failed") |#3|) 46 (|has| |#2| (-1033 (-48))))) (-2743 (((-3 (|:| |overq| (-1164 (-406 (-562)))) (|:| |overan| (-1164 (-48))) (|:| -4254 (-112))) |#3|) 37)))
+(((-434 |#1| |#2| |#3|) (-10 -7 (-15 -3677 ((-417 |#3|) |#3|)) (-15 -3083 ((-3 (-417 (-1164 (-406 (-562)))) "failed") |#3|)) (-15 -2743 ((-3 (|:| |overq| (-1164 (-406 (-562)))) (|:| |overan| (-1164 (-48))) (|:| -4254 (-112))) |#3|)) (IF (|has| |#2| (-1033 (-48))) (-15 -2024 ((-3 (-417 (-1164 (-48))) "failed") |#3|)) |%noBranch|)) (-13 (-554) (-845) (-1033 (-562))) (-429 |#1|) (-1232 |#2|)) (T -434))
+((-2024 (*1 *2 *3) (|partial| -12 (-4 *5 (-1033 (-48))) (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4)) (-5 *2 (-417 (-1164 (-48)))) (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))) (-2743 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4)) (-5 *2 (-3 (|:| |overq| (-1164 (-406 (-562)))) (|:| |overan| (-1164 (-48))) (|:| -4254 (-112)))) (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))) (-3083 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4)) (-5 *2 (-417 (-1164 (-406 (-562))))) (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))) (-3677 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4)) (-5 *2 (-417 *3)) (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))))
+(-10 -7 (-15 -3677 ((-417 |#3|) |#3|)) (-15 -3083 ((-3 (-417 (-1164 (-406 (-562)))) "failed") |#3|)) (-15 -2743 ((-3 (|:| |overq| (-1164 (-406 (-562)))) (|:| |overan| (-1164 (-48))) (|:| -4254 (-112))) |#3|)) (IF (|has| |#2| (-1033 (-48))) (-15 -2024 ((-3 (-417 (-1164 (-48))) "failed") |#3|)) |%noBranch|))
+((-4041 (((-112) $ $) NIL)) (-3791 (((-1150) $ (-1150)) NIL)) (-2385 (($ $ (-1150)) NIL)) (-3385 (((-1150) $) NIL)) (-2273 (((-387) (-387) (-387)) 17) (((-387) (-387)) 15)) (-3315 (($ (-387)) NIL) (($ (-387) (-1150)) NIL)) (-3253 (((-387) $) NIL)) (-3696 (((-1150) $) NIL)) (-2735 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3277 (((-1261) (-1150)) 9)) (-1338 (((-1261) (-1150)) 10)) (-3721 (((-1261)) 11)) (-4053 (((-857) $) NIL)) (-1380 (($ $) 34)) (-1733 (((-112) $ $) NIL)))
+(((-435) (-13 (-363 (-387) (-1150)) (-10 -7 (-15 -2273 ((-387) (-387) (-387))) (-15 -2273 ((-387) (-387))) (-15 -3277 ((-1261) (-1150))) (-15 -1338 ((-1261) (-1150))) (-15 -3721 ((-1261)))))) (T -435))
+((-2273 (*1 *2 *2 *2) (-12 (-5 *2 (-387)) (-5 *1 (-435)))) (-2273 (*1 *2 *2) (-12 (-5 *2 (-387)) (-5 *1 (-435)))) (-3277 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-435)))) (-1338 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-435)))) (-3721 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-435)))))
+(-13 (-363 (-387) (-1150)) (-10 -7 (-15 -2273 ((-387) (-387) (-387))) (-15 -2273 ((-387) (-387))) (-15 -3277 ((-1261) (-1150))) (-15 -1338 ((-1261) (-1150))) (-15 -3721 ((-1261)))))
+((-4041 (((-112) $ $) NIL)) (-2292 (((-3 (|:| |fst| (-433)) (|:| -2649 "void")) $) 11)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2759 (($) 32)) (-1344 (($) 38)) (-2421 (($) 34)) (-3024 (($) 36)) (-3252 (($) 33)) (-1863 (($) 35)) (-2084 (($) 37)) (-4307 (((-112) $) 8)) (-2220 (((-639 (-947 (-562))) $) 19)) (-4064 (($ (-3 (|:| |fst| (-433)) (|:| -2649 "void")) (-639 (-1168)) (-112)) 27) (($ (-3 (|:| |fst| (-433)) (|:| -2649 "void")) (-639 (-947 (-562))) (-112)) 28)) (-4053 (((-857) $) 23) (($ (-433)) 29)) (-1733 (((-112) $ $) NIL)))
+(((-436) (-13 (-1092) (-10 -8 (-15 -4053 ($ (-433))) (-15 -2292 ((-3 (|:| |fst| (-433)) (|:| -2649 "void")) $)) (-15 -2220 ((-639 (-947 (-562))) $)) (-15 -4307 ((-112) $)) (-15 -4064 ($ (-3 (|:| |fst| (-433)) (|:| -2649 "void")) (-639 (-1168)) (-112))) (-15 -4064 ($ (-3 (|:| |fst| (-433)) (|:| -2649 "void")) (-639 (-947 (-562))) (-112))) (-15 -2759 ($)) (-15 -3252 ($)) (-15 -2421 ($)) (-15 -1344 ($)) (-15 -1863 ($)) (-15 -3024 ($)) (-15 -2084 ($))))) (T -436))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-433)) (-5 *1 (-436)))) (-2292 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-5 *1 (-436)))) (-2220 (*1 *2 *1) (-12 (-5 *2 (-639 (-947 (-562)))) (-5 *1 (-436)))) (-4307 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-4064 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-5 *3 (-639 (-1168))) (-5 *4 (-112)) (-5 *1 (-436)))) (-4064 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-112)) (-5 *1 (-436)))) (-2759 (*1 *1) (-5 *1 (-436))) (-3252 (*1 *1) (-5 *1 (-436))) (-2421 (*1 *1) (-5 *1 (-436))) (-1344 (*1 *1) (-5 *1 (-436))) (-1863 (*1 *1) (-5 *1 (-436))) (-3024 (*1 *1) (-5 *1 (-436))) (-2084 (*1 *1) (-5 *1 (-436))))
+(-13 (-1092) (-10 -8 (-15 -4053 ($ (-433))) (-15 -2292 ((-3 (|:| |fst| (-433)) (|:| -2649 "void")) $)) (-15 -2220 ((-639 (-947 (-562))) $)) (-15 -4307 ((-112) $)) (-15 -4064 ($ (-3 (|:| |fst| (-433)) (|:| -2649 "void")) (-639 (-1168)) (-112))) (-15 -4064 ($ (-3 (|:| |fst| (-433)) (|:| -2649 "void")) (-639 (-947 (-562))) (-112))) (-15 -2759 ($)) (-15 -3252 ($)) (-15 -2421 ($)) (-15 -1344 ($)) (-15 -1863 ($)) (-15 -3024 ($)) (-15 -2084 ($))))
+((-4041 (((-112) $ $) NIL)) (-3253 (((-1168) $) 8)) (-3696 (((-1150) $) 16)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 11)) (-1733 (((-112) $ $) 13)))
+(((-437 |#1|) (-13 (-1092) (-10 -8 (-15 -3253 ((-1168) $)))) (-1168)) (T -437))
+((-3253 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-437 *3)) (-14 *3 *2))))
+(-13 (-1092) (-10 -8 (-15 -3253 ((-1168) $))))
+((-4041 (((-112) $ $) NIL)) (-2844 (((-1110) $) 7)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 13)) (-1733 (((-112) $ $) 9)))
+(((-438) (-13 (-1092) (-10 -8 (-15 -2844 ((-1110) $))))) (T -438))
+((-2844 (*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-438)))))
+(-13 (-1092) (-10 -8 (-15 -2844 ((-1110) $))))
+((-3218 (((-1261) $) 7)) (-4053 (((-857) $) 8) (($ (-1256 (-693))) 14) (($ (-639 (-329))) 13) (($ (-329)) 12) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 11)))
(((-439) (-139)) (T -439))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-693))) (-4 *1 (-439)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-4 *1 (-439)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-329)) (-4 *1 (-439)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) (-4 *1 (-439)))))
-(-13 (-394) (-10 -8 (-15 -4054 ($ (-1256 (-693)))) (-15 -4054 ($ (-639 (-329)))) (-15 -4054 ($ (-329))) (-15 -4054 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))))))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-693))) (-4 *1 (-439)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-4 *1 (-439)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-329)) (-4 *1 (-439)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) (-4 *1 (-439)))))
+(-13 (-394) (-10 -8 (-15 -4053 ($ (-1256 (-693)))) (-15 -4053 ($ (-639 (-329)))) (-15 -4053 ($ (-329))) (-15 -4053 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))))))
(((-609 (-857)) . T) ((-394) . T) ((-1207) . T))
-((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 21) (((-3 $ "failed") (-1256 (-315 (-562)))) 19) (((-3 $ "failed") (-1256 (-947 (-378)))) 17) (((-3 $ "failed") (-1256 (-947 (-562)))) 15) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 13) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 11)) (-3961 (($ (-1256 (-315 (-378)))) 22) (($ (-1256 (-315 (-562)))) 20) (($ (-1256 (-947 (-378)))) 18) (($ (-1256 (-947 (-562)))) 16) (($ (-1256 (-406 (-947 (-378))))) 14) (($ (-1256 (-406 (-947 (-562))))) 12)) (-3219 (((-1261) $) 7)) (-4054 (((-857) $) 8) (($ (-639 (-329))) 25) (($ (-329)) 24) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 23)))
+((-4048 (((-3 $ "failed") (-1256 (-315 (-378)))) 21) (((-3 $ "failed") (-1256 (-315 (-562)))) 19) (((-3 $ "failed") (-1256 (-947 (-378)))) 17) (((-3 $ "failed") (-1256 (-947 (-562)))) 15) (((-3 $ "failed") (-1256 (-406 (-947 (-378))))) 13) (((-3 $ "failed") (-1256 (-406 (-947 (-562))))) 11)) (-3960 (($ (-1256 (-315 (-378)))) 22) (($ (-1256 (-315 (-562)))) 20) (($ (-1256 (-947 (-378)))) 18) (($ (-1256 (-947 (-562)))) 16) (($ (-1256 (-406 (-947 (-378))))) 14) (($ (-1256 (-406 (-947 (-562))))) 12)) (-3218 (((-1261) $) 7)) (-4053 (((-857) $) 8) (($ (-639 (-329))) 25) (($ (-329)) 24) (($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) 23)))
(((-440) (-139)) (T -440))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-4 *1 (-440)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-329)) (-4 *1 (-440)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) (-4 *1 (-440)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-1256 (-315 (-378)))) (-4 *1 (-440)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1256 (-315 (-378)))) (-4 *1 (-440)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-1256 (-315 (-562)))) (-4 *1 (-440)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1256 (-315 (-562)))) (-4 *1 (-440)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-1256 (-947 (-378)))) (-4 *1 (-440)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1256 (-947 (-378)))) (-4 *1 (-440)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-1256 (-947 (-562)))) (-4 *1 (-440)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1256 (-947 (-562)))) (-4 *1 (-440)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-1256 (-406 (-947 (-378))))) (-4 *1 (-440)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1256 (-406 (-947 (-378))))) (-4 *1 (-440)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-1256 (-406 (-947 (-562))))) (-4 *1 (-440)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1256 (-406 (-947 (-562))))) (-4 *1 (-440)))))
-(-13 (-394) (-10 -8 (-15 -4054 ($ (-639 (-329)))) (-15 -4054 ($ (-329))) (-15 -4054 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329)))))) (-15 -3961 ($ (-1256 (-315 (-378))))) (-15 -4048 ((-3 $ "failed") (-1256 (-315 (-378))))) (-15 -3961 ($ (-1256 (-315 (-562))))) (-15 -4048 ((-3 $ "failed") (-1256 (-315 (-562))))) (-15 -3961 ($ (-1256 (-947 (-378))))) (-15 -4048 ((-3 $ "failed") (-1256 (-947 (-378))))) (-15 -3961 ($ (-1256 (-947 (-562))))) (-15 -4048 ((-3 $ "failed") (-1256 (-947 (-562))))) (-15 -3961 ($ (-1256 (-406 (-947 (-378)))))) (-15 -4048 ((-3 $ "failed") (-1256 (-406 (-947 (-378)))))) (-15 -3961 ($ (-1256 (-406 (-947 (-562)))))) (-15 -4048 ((-3 $ "failed") (-1256 (-406 (-947 (-562))))))))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-4 *1 (-440)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-329)) (-4 *1 (-440)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329))))) (-4 *1 (-440)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-1256 (-315 (-378)))) (-4 *1 (-440)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1256 (-315 (-378)))) (-4 *1 (-440)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-1256 (-315 (-562)))) (-4 *1 (-440)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1256 (-315 (-562)))) (-4 *1 (-440)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-1256 (-947 (-378)))) (-4 *1 (-440)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1256 (-947 (-378)))) (-4 *1 (-440)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-1256 (-947 (-562)))) (-4 *1 (-440)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1256 (-947 (-562)))) (-4 *1 (-440)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-1256 (-406 (-947 (-378))))) (-4 *1 (-440)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1256 (-406 (-947 (-378))))) (-4 *1 (-440)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-1256 (-406 (-947 (-562))))) (-4 *1 (-440)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-1256 (-406 (-947 (-562))))) (-4 *1 (-440)))))
+(-13 (-394) (-10 -8 (-15 -4053 ($ (-639 (-329)))) (-15 -4053 ($ (-329))) (-15 -4053 ($ (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329)))))) (-15 -3960 ($ (-1256 (-315 (-378))))) (-15 -4048 ((-3 $ "failed") (-1256 (-315 (-378))))) (-15 -3960 ($ (-1256 (-315 (-562))))) (-15 -4048 ((-3 $ "failed") (-1256 (-315 (-562))))) (-15 -3960 ($ (-1256 (-947 (-378))))) (-15 -4048 ((-3 $ "failed") (-1256 (-947 (-378))))) (-15 -3960 ($ (-1256 (-947 (-562))))) (-15 -4048 ((-3 $ "failed") (-1256 (-947 (-562))))) (-15 -3960 ($ (-1256 (-406 (-947 (-378)))))) (-15 -4048 ((-3 $ "failed") (-1256 (-406 (-947 (-378)))))) (-15 -3960 ($ (-1256 (-406 (-947 (-562)))))) (-15 -4048 ((-3 $ "failed") (-1256 (-406 (-947 (-562))))))))
(((-609 (-857)) . T) ((-394) . T) ((-1207) . T))
-((-2145 (((-112)) 17)) (-1531 (((-112) (-112)) 18)) (-3017 (((-112)) 13)) (-2713 (((-112) (-112)) 14)) (-3707 (((-112)) 15)) (-3353 (((-112) (-112)) 16)) (-2036 (((-916) (-916)) 21) (((-916)) 20)) (-2101 (((-766) (-639 (-2 (|:| -1635 |#1|) (|:| -3598 (-562))))) 41)) (-3337 (((-916) (-916)) 23) (((-916)) 22)) (-3476 (((-2 (|:| -2641 (-562)) (|:| -1510 (-639 |#1|))) |#1|) 61)) (-3539 (((-417 |#1|) (-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| |#1|) (|:| -2762 (-562))))))) 126)) (-2832 (((-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| |#1|) (|:| -2762 (-562)))))) |#1| (-112)) 152)) (-3696 (((-417 |#1|) |#1| (-766) (-766)) 165) (((-417 |#1|) |#1| (-639 (-766)) (-766)) 162) (((-417 |#1|) |#1| (-639 (-766))) 164) (((-417 |#1|) |#1| (-766)) 163) (((-417 |#1|) |#1|) 161)) (-3363 (((-3 |#1| "failed") (-916) |#1| (-639 (-766)) (-766) (-112)) 167) (((-3 |#1| "failed") (-916) |#1| (-639 (-766)) (-766)) 168) (((-3 |#1| "failed") (-916) |#1| (-639 (-766))) 170) (((-3 |#1| "failed") (-916) |#1| (-766)) 169) (((-3 |#1| "failed") (-916) |#1|) 171)) (-1635 (((-417 |#1|) |#1| (-766) (-766)) 160) (((-417 |#1|) |#1| (-639 (-766)) (-766)) 156) (((-417 |#1|) |#1| (-639 (-766))) 158) (((-417 |#1|) |#1| (-766)) 157) (((-417 |#1|) |#1|) 155)) (-4291 (((-112) |#1|) 36)) (-3590 (((-732 (-766)) (-639 (-2 (|:| -1635 |#1|) (|:| -3598 (-562))))) 66)) (-2884 (((-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| |#1|) (|:| -2762 (-562)))))) |#1| (-112) (-1094 (-766)) (-766)) 154)))
-(((-441 |#1|) (-10 -7 (-15 -3539 ((-417 |#1|) (-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| |#1|) (|:| -2762 (-562)))))))) (-15 -3590 ((-732 (-766)) (-639 (-2 (|:| -1635 |#1|) (|:| -3598 (-562)))))) (-15 -3337 ((-916))) (-15 -3337 ((-916) (-916))) (-15 -2036 ((-916))) (-15 -2036 ((-916) (-916))) (-15 -2101 ((-766) (-639 (-2 (|:| -1635 |#1|) (|:| -3598 (-562)))))) (-15 -3476 ((-2 (|:| -2641 (-562)) (|:| -1510 (-639 |#1|))) |#1|)) (-15 -2145 ((-112))) (-15 -1531 ((-112) (-112))) (-15 -3017 ((-112))) (-15 -2713 ((-112) (-112))) (-15 -4291 ((-112) |#1|)) (-15 -3707 ((-112))) (-15 -3353 ((-112) (-112))) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -1635 ((-417 |#1|) |#1| (-766))) (-15 -1635 ((-417 |#1|) |#1| (-639 (-766)))) (-15 -1635 ((-417 |#1|) |#1| (-639 (-766)) (-766))) (-15 -1635 ((-417 |#1|) |#1| (-766) (-766))) (-15 -3696 ((-417 |#1|) |#1|)) (-15 -3696 ((-417 |#1|) |#1| (-766))) (-15 -3696 ((-417 |#1|) |#1| (-639 (-766)))) (-15 -3696 ((-417 |#1|) |#1| (-639 (-766)) (-766))) (-15 -3696 ((-417 |#1|) |#1| (-766) (-766))) (-15 -3363 ((-3 |#1| "failed") (-916) |#1|)) (-15 -3363 ((-3 |#1| "failed") (-916) |#1| (-766))) (-15 -3363 ((-3 |#1| "failed") (-916) |#1| (-639 (-766)))) (-15 -3363 ((-3 |#1| "failed") (-916) |#1| (-639 (-766)) (-766))) (-15 -3363 ((-3 |#1| "failed") (-916) |#1| (-639 (-766)) (-766) (-112))) (-15 -2832 ((-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| |#1|) (|:| -2762 (-562)))))) |#1| (-112))) (-15 -2884 ((-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| |#1|) (|:| -2762 (-562)))))) |#1| (-112) (-1094 (-766)) (-766)))) (-1232 (-562))) (T -441))
-((-2884 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-112)) (-5 *5 (-1094 (-766))) (-5 *6 (-766)) (-5 *2 (-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| *3) (|:| -2762 (-562))))))) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-2832 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| *3) (|:| -2762 (-562))))))) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3363 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-916)) (-5 *4 (-639 (-766))) (-5 *5 (-766)) (-5 *6 (-112)) (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562))))) (-3363 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-916)) (-5 *4 (-639 (-766))) (-5 *5 (-766)) (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562))))) (-3363 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-916)) (-5 *4 (-639 (-766))) (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562))))) (-3363 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-916)) (-5 *4 (-766)) (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562))))) (-3363 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-916)) (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562))))) (-3696 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3696 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-639 (-766))) (-5 *5 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3696 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-766))) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3696 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3696 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1635 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1635 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-639 (-766))) (-5 *5 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-766))) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1635 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3353 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3707 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-4291 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-2713 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3017 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1531 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-2145 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3476 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -2641 (-562)) (|:| -1510 (-639 *3)))) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-2101 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -1635 *4) (|:| -3598 (-562))))) (-4 *4 (-1232 (-562))) (-5 *2 (-766)) (-5 *1 (-441 *4)))) (-2036 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-2036 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3337 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3337 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3590 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -1635 *4) (|:| -3598 (-562))))) (-4 *4 (-1232 (-562))) (-5 *2 (-732 (-766))) (-5 *1 (-441 *4)))) (-3539 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| *4) (|:| -2762 (-562))))))) (-4 *4 (-1232 (-562))) (-5 *2 (-417 *4)) (-5 *1 (-441 *4)))))
-(-10 -7 (-15 -3539 ((-417 |#1|) (-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| |#1|) (|:| -2762 (-562)))))))) (-15 -3590 ((-732 (-766)) (-639 (-2 (|:| -1635 |#1|) (|:| -3598 (-562)))))) (-15 -3337 ((-916))) (-15 -3337 ((-916) (-916))) (-15 -2036 ((-916))) (-15 -2036 ((-916) (-916))) (-15 -2101 ((-766) (-639 (-2 (|:| -1635 |#1|) (|:| -3598 (-562)))))) (-15 -3476 ((-2 (|:| -2641 (-562)) (|:| -1510 (-639 |#1|))) |#1|)) (-15 -2145 ((-112))) (-15 -1531 ((-112) (-112))) (-15 -3017 ((-112))) (-15 -2713 ((-112) (-112))) (-15 -4291 ((-112) |#1|)) (-15 -3707 ((-112))) (-15 -3353 ((-112) (-112))) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -1635 ((-417 |#1|) |#1| (-766))) (-15 -1635 ((-417 |#1|) |#1| (-639 (-766)))) (-15 -1635 ((-417 |#1|) |#1| (-639 (-766)) (-766))) (-15 -1635 ((-417 |#1|) |#1| (-766) (-766))) (-15 -3696 ((-417 |#1|) |#1|)) (-15 -3696 ((-417 |#1|) |#1| (-766))) (-15 -3696 ((-417 |#1|) |#1| (-639 (-766)))) (-15 -3696 ((-417 |#1|) |#1| (-639 (-766)) (-766))) (-15 -3696 ((-417 |#1|) |#1| (-766) (-766))) (-15 -3363 ((-3 |#1| "failed") (-916) |#1|)) (-15 -3363 ((-3 |#1| "failed") (-916) |#1| (-766))) (-15 -3363 ((-3 |#1| "failed") (-916) |#1| (-639 (-766)))) (-15 -3363 ((-3 |#1| "failed") (-916) |#1| (-639 (-766)) (-766))) (-15 -3363 ((-3 |#1| "failed") (-916) |#1| (-639 (-766)) (-766) (-112))) (-15 -2832 ((-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| |#1|) (|:| -2762 (-562)))))) |#1| (-112))) (-15 -2884 ((-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| |#1|) (|:| -2762 (-562)))))) |#1| (-112) (-1094 (-766)) (-766))))
-((-4331 (((-562) |#2|) 48) (((-562) |#2| (-766)) 47)) (-2761 (((-562) |#2|) 55)) (-4019 ((|#3| |#2|) 25)) (-2247 ((|#3| |#2| (-916)) 14)) (-3641 ((|#3| |#2|) 15)) (-2483 ((|#3| |#2|) 9)) (-3060 ((|#3| |#2|) 10)) (-3046 ((|#3| |#2| (-916)) 62) ((|#3| |#2|) 30)) (-3469 (((-562) |#2|) 57)))
-(((-442 |#1| |#2| |#3|) (-10 -7 (-15 -3469 ((-562) |#2|)) (-15 -3046 (|#3| |#2|)) (-15 -3046 (|#3| |#2| (-916))) (-15 -2761 ((-562) |#2|)) (-15 -4331 ((-562) |#2| (-766))) (-15 -4331 ((-562) |#2|)) (-15 -2247 (|#3| |#2| (-916))) (-15 -4019 (|#3| |#2|)) (-15 -2483 (|#3| |#2|)) (-15 -3060 (|#3| |#2|)) (-15 -3641 (|#3| |#2|))) (-1044) (-1232 |#1|) (-13 (-403) (-1033 |#1|) (-362) (-1192) (-283))) (T -442))
-((-3641 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))) (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))) (-3060 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))) (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))) (-2483 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))) (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))) (-4019 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))) (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))) (-2247 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-4 *5 (-1044)) (-4 *2 (-13 (-403) (-1033 *5) (-362) (-1192) (-283))) (-5 *1 (-442 *5 *3 *2)) (-4 *3 (-1232 *5)))) (-4331 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *4 *3 *5)) (-4 *3 (-1232 *4)) (-4 *5 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))))) (-4331 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *5 *3 *6)) (-4 *3 (-1232 *5)) (-4 *6 (-13 (-403) (-1033 *5) (-362) (-1192) (-283))))) (-2761 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *4 *3 *5)) (-4 *3 (-1232 *4)) (-4 *5 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))))) (-3046 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-4 *5 (-1044)) (-4 *2 (-13 (-403) (-1033 *5) (-362) (-1192) (-283))) (-5 *1 (-442 *5 *3 *2)) (-4 *3 (-1232 *5)))) (-3046 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))) (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))) (-3469 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *4 *3 *5)) (-4 *3 (-1232 *4)) (-4 *5 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))))))
-(-10 -7 (-15 -3469 ((-562) |#2|)) (-15 -3046 (|#3| |#2|)) (-15 -3046 (|#3| |#2| (-916))) (-15 -2761 ((-562) |#2|)) (-15 -4331 ((-562) |#2| (-766))) (-15 -4331 ((-562) |#2|)) (-15 -2247 (|#3| |#2| (-916))) (-15 -4019 (|#3| |#2|)) (-15 -2483 (|#3| |#2|)) (-15 -3060 (|#3| |#2|)) (-15 -3641 (|#3| |#2|)))
-((-2661 ((|#2| (-1256 |#1|)) 36)) (-2072 ((|#2| |#2| |#1|) 49)) (-2441 ((|#2| |#2| |#1|) 41)) (-2677 ((|#2| |#2|) 38)) (-2311 (((-112) |#2|) 30)) (-2037 (((-639 |#2|) (-916) (-417 |#2|)) 17)) (-3363 ((|#2| (-916) (-417 |#2|)) 21)) (-3590 (((-732 (-766)) (-417 |#2|)) 25)))
-(((-443 |#1| |#2|) (-10 -7 (-15 -2311 ((-112) |#2|)) (-15 -2661 (|#2| (-1256 |#1|))) (-15 -2677 (|#2| |#2|)) (-15 -2441 (|#2| |#2| |#1|)) (-15 -2072 (|#2| |#2| |#1|)) (-15 -3590 ((-732 (-766)) (-417 |#2|))) (-15 -3363 (|#2| (-916) (-417 |#2|))) (-15 -2037 ((-639 |#2|) (-916) (-417 |#2|)))) (-1044) (-1232 |#1|)) (T -443))
-((-2037 (*1 *2 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-417 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-1044)) (-5 *2 (-639 *6)) (-5 *1 (-443 *5 *6)))) (-3363 (*1 *2 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-417 *2)) (-4 *2 (-1232 *5)) (-5 *1 (-443 *5 *2)) (-4 *5 (-1044)))) (-3590 (*1 *2 *3) (-12 (-5 *3 (-417 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-1044)) (-5 *2 (-732 (-766))) (-5 *1 (-443 *4 *5)))) (-2072 (*1 *2 *2 *3) (-12 (-4 *3 (-1044)) (-5 *1 (-443 *3 *2)) (-4 *2 (-1232 *3)))) (-2441 (*1 *2 *2 *3) (-12 (-4 *3 (-1044)) (-5 *1 (-443 *3 *2)) (-4 *2 (-1232 *3)))) (-2677 (*1 *2 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-443 *3 *2)) (-4 *2 (-1232 *3)))) (-2661 (*1 *2 *3) (-12 (-5 *3 (-1256 *4)) (-4 *4 (-1044)) (-4 *2 (-1232 *4)) (-5 *1 (-443 *4 *2)))) (-2311 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-5 *2 (-112)) (-5 *1 (-443 *4 *3)) (-4 *3 (-1232 *4)))))
-(-10 -7 (-15 -2311 ((-112) |#2|)) (-15 -2661 (|#2| (-1256 |#1|))) (-15 -2677 (|#2| |#2|)) (-15 -2441 (|#2| |#2| |#1|)) (-15 -2072 (|#2| |#2| |#1|)) (-15 -3590 ((-732 (-766)) (-417 |#2|))) (-15 -3363 (|#2| (-916) (-417 |#2|))) (-15 -2037 ((-639 |#2|) (-916) (-417 |#2|))))
-((-4194 (((-766)) 41)) (-1597 (((-766)) 23 (|has| |#1| (-403))) (((-766) (-766)) 22 (|has| |#1| (-403)))) (-1940 (((-562) |#1|) 18 (|has| |#1| (-403)))) (-3371 (((-562) |#1|) 20 (|has| |#1| (-403)))) (-1596 (((-766)) 40) (((-766) (-766)) 39)) (-3619 ((|#1| (-766) (-562)) 29)) (-3698 (((-1261)) 43)))
-(((-444 |#1|) (-10 -7 (-15 -3619 (|#1| (-766) (-562))) (-15 -1596 ((-766) (-766))) (-15 -1596 ((-766))) (-15 -4194 ((-766))) (-15 -3698 ((-1261))) (IF (|has| |#1| (-403)) (PROGN (-15 -3371 ((-562) |#1|)) (-15 -1940 ((-562) |#1|)) (-15 -1597 ((-766) (-766))) (-15 -1597 ((-766)))) |%noBranch|)) (-1044)) (T -444))
-((-1597 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))) (-1597 (*1 *2 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))) (-1940 (*1 *2 *3) (-12 (-5 *2 (-562)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))) (-3371 (*1 *2 *3) (-12 (-5 *2 (-562)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))) (-3698 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))) (-4194 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))) (-1596 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))) (-1596 (*1 *2 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))) (-3619 (*1 *2 *3 *4) (-12 (-5 *3 (-766)) (-5 *4 (-562)) (-5 *1 (-444 *2)) (-4 *2 (-1044)))))
-(-10 -7 (-15 -3619 (|#1| (-766) (-562))) (-15 -1596 ((-766) (-766))) (-15 -1596 ((-766))) (-15 -4194 ((-766))) (-15 -3698 ((-1261))) (IF (|has| |#1| (-403)) (PROGN (-15 -3371 ((-562) |#1|)) (-15 -1940 ((-562) |#1|)) (-15 -1597 ((-766) (-766))) (-15 -1597 ((-766)))) |%noBranch|))
-((-3118 (((-639 (-562)) (-562)) 60)) (-2717 (((-112) (-168 (-562))) 64)) (-1635 (((-417 (-168 (-562))) (-168 (-562))) 59)))
-(((-445) (-10 -7 (-15 -1635 ((-417 (-168 (-562))) (-168 (-562)))) (-15 -3118 ((-639 (-562)) (-562))) (-15 -2717 ((-112) (-168 (-562)))))) (T -445))
-((-2717 (*1 *2 *3) (-12 (-5 *3 (-168 (-562))) (-5 *2 (-112)) (-5 *1 (-445)))) (-3118 (*1 *2 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-445)) (-5 *3 (-562)))) (-1635 (*1 *2 *3) (-12 (-5 *2 (-417 (-168 (-562)))) (-5 *1 (-445)) (-5 *3 (-168 (-562))))))
-(-10 -7 (-15 -1635 ((-417 (-168 (-562))) (-168 (-562)))) (-15 -3118 ((-639 (-562)) (-562))) (-15 -2717 ((-112) (-168 (-562)))))
-((-3367 ((|#4| |#4| (-639 |#4|)) 60)) (-1885 (((-639 |#4|) (-639 |#4|) (-1150) (-1150)) 17) (((-639 |#4|) (-639 |#4|) (-1150)) 16) (((-639 |#4|) (-639 |#4|)) 11)))
-(((-446 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3367 (|#4| |#4| (-639 |#4|))) (-15 -1885 ((-639 |#4|) (-639 |#4|))) (-15 -1885 ((-639 |#4|) (-639 |#4|) (-1150))) (-15 -1885 ((-639 |#4|) (-639 |#4|) (-1150) (-1150)))) (-306) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -446))
-((-1885 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-1150)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-306)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-446 *4 *5 *6 *7)))) (-1885 (*1 *2 *2 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-1150)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-306)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-446 *4 *5 *6 *7)))) (-1885 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-306)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-446 *3 *4 *5 *6)))) (-3367 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-306)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-446 *4 *5 *6 *2)))))
-(-10 -7 (-15 -3367 (|#4| |#4| (-639 |#4|))) (-15 -1885 ((-639 |#4|) (-639 |#4|))) (-15 -1885 ((-639 |#4|) (-639 |#4|) (-1150))) (-15 -1885 ((-639 |#4|) (-639 |#4|) (-1150) (-1150))))
-((-3069 (((-639 (-639 |#4|)) (-639 |#4|) (-112)) 72) (((-639 (-639 |#4|)) (-639 |#4|)) 71) (((-639 (-639 |#4|)) (-639 |#4|) (-639 |#4|) (-112)) 65) (((-639 (-639 |#4|)) (-639 |#4|) (-639 |#4|)) 66)) (-1579 (((-639 (-639 |#4|)) (-639 |#4|) (-112)) 41) (((-639 (-639 |#4|)) (-639 |#4|)) 62)))
-(((-447 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1579 ((-639 (-639 |#4|)) (-639 |#4|))) (-15 -1579 ((-639 (-639 |#4|)) (-639 |#4|) (-112))) (-15 -3069 ((-639 (-639 |#4|)) (-639 |#4|) (-639 |#4|))) (-15 -3069 ((-639 (-639 |#4|)) (-639 |#4|) (-639 |#4|) (-112))) (-15 -3069 ((-639 (-639 |#4|)) (-639 |#4|))) (-15 -3069 ((-639 (-639 |#4|)) (-639 |#4|) (-112)))) (-13 (-306) (-146)) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -447))
-((-3069 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-639 (-639 *8))) (-5 *1 (-447 *5 *6 *7 *8)) (-5 *3 (-639 *8)))) (-3069 (*1 *2 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-639 (-639 *7))) (-5 *1 (-447 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-3069 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-639 (-639 *8))) (-5 *1 (-447 *5 *6 *7 *8)) (-5 *3 (-639 *8)))) (-3069 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-639 (-639 *7))) (-5 *1 (-447 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-1579 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-639 (-639 *8))) (-5 *1 (-447 *5 *6 *7 *8)) (-5 *3 (-639 *8)))) (-1579 (*1 *2 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-639 (-639 *7))) (-5 *1 (-447 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
-(-10 -7 (-15 -1579 ((-639 (-639 |#4|)) (-639 |#4|))) (-15 -1579 ((-639 (-639 |#4|)) (-639 |#4|) (-112))) (-15 -3069 ((-639 (-639 |#4|)) (-639 |#4|) (-639 |#4|))) (-15 -3069 ((-639 (-639 |#4|)) (-639 |#4|) (-639 |#4|) (-112))) (-15 -3069 ((-639 (-639 |#4|)) (-639 |#4|))) (-15 -3069 ((-639 (-639 |#4|)) (-639 |#4|) (-112))))
-((-4373 (((-766) |#4|) 12)) (-2052 (((-639 (-2 (|:| |totdeg| (-766)) (|:| -4380 |#4|))) |#4| (-766) (-639 (-2 (|:| |totdeg| (-766)) (|:| -4380 |#4|)))) 31)) (-2633 (((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 37)) (-1988 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 38)) (-1412 ((|#4| |#4| (-639 |#4|)) 39)) (-3679 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-639 |#4|)) 69)) (-2593 (((-1261) |#4|) 41)) (-3811 (((-1261) (-639 |#4|)) 50)) (-4281 (((-562) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-562) (-562) (-562)) 47)) (-3369 (((-1261) (-562)) 78)) (-4229 (((-639 |#4|) (-639 |#4|)) 76)) (-2637 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-766)) (|:| -4380 |#4|)) |#4| (-766)) 25)) (-4002 (((-562) |#4|) 77)) (-1844 ((|#4| |#4|) 29)) (-3253 (((-639 |#4|) (-639 |#4|) (-562) (-562)) 55)) (-4033 (((-562) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-562) (-562) (-562) (-562)) 88)) (-2935 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 16)) (-2268 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 58)) (-2229 (((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 57)) (-2626 (((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 35)) (-4075 (((-112) |#2| |#2|) 56)) (-4271 (((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 36)) (-2680 (((-112) |#2| |#2| |#2| |#2|) 59)) (-2864 ((|#4| |#4| (-639 |#4|)) 70)))
-(((-448 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2864 (|#4| |#4| (-639 |#4|))) (-15 -1412 (|#4| |#4| (-639 |#4|))) (-15 -3253 ((-639 |#4|) (-639 |#4|) (-562) (-562))) (-15 -2268 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -4075 ((-112) |#2| |#2|)) (-15 -2680 ((-112) |#2| |#2| |#2| |#2|)) (-15 -4271 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2626 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2229 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3679 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-639 |#4|))) (-15 -1844 (|#4| |#4|)) (-15 -2052 ((-639 (-2 (|:| |totdeg| (-766)) (|:| -4380 |#4|))) |#4| (-766) (-639 (-2 (|:| |totdeg| (-766)) (|:| -4380 |#4|))))) (-15 -1988 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2633 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4229 ((-639 |#4|) (-639 |#4|))) (-15 -4002 ((-562) |#4|)) (-15 -2593 ((-1261) |#4|)) (-15 -4281 ((-562) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-562) (-562) (-562))) (-15 -4033 ((-562) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-562) (-562) (-562) (-562))) (-15 -3811 ((-1261) (-639 |#4|))) (-15 -3369 ((-1261) (-562))) (-15 -2935 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2637 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-766)) (|:| -4380 |#4|)) |#4| (-766))) (-15 -4373 ((-766) |#4|))) (-451) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -448))
-((-4373 (*1 *2 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-766)) (-5 *1 (-448 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))) (-2637 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-766)) (|:| -4380 *4))) (-5 *5 (-766)) (-4 *4 (-944 *6 *7 *8)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-448 *6 *7 *8 *4)))) (-2935 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-788)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-448 *4 *5 *6 *7)))) (-3369 (*1 *2 *3) (-12 (-5 *3 (-562)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1261)) (-5 *1 (-448 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))) (-3811 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1261)) (-5 *1 (-448 *4 *5 *6 *7)))) (-4033 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-766)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-788)) (-4 *4 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *7 (-845)) (-5 *1 (-448 *5 *6 *7 *4)))) (-4281 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-766)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-788)) (-4 *4 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *7 (-845)) (-5 *1 (-448 *5 *6 *7 *4)))) (-2593 (*1 *2 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1261)) (-5 *1 (-448 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))) (-4002 (*1 *2 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-562)) (-5 *1 (-448 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))) (-4229 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-448 *3 *4 *5 *6)))) (-2633 (*1 *2 *2 *2) (-12 (-5 *2 (-639 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-766)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-788)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451)) (-4 *5 (-845)) (-5 *1 (-448 *3 *4 *5 *6)))) (-1988 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-788)) (-4 *2 (-944 *4 *5 *6)) (-5 *1 (-448 *4 *5 *6 *2)) (-4 *4 (-451)) (-4 *6 (-845)))) (-2052 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-639 (-2 (|:| |totdeg| (-766)) (|:| -4380 *3)))) (-5 *4 (-766)) (-4 *3 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-448 *5 *6 *7 *3)))) (-1844 (*1 *2 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-448 *3 *4 *5 *2)) (-4 *2 (-944 *3 *4 *5)))) (-3679 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-448 *5 *6 *7 *3)))) (-2229 (*1 *2 *3 *2) (-12 (-5 *2 (-639 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-766)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-788)) (-4 *6 (-944 *4 *3 *5)) (-4 *4 (-451)) (-4 *5 (-845)) (-5 *1 (-448 *4 *3 *5 *6)))) (-2626 (*1 *2 *2) (-12 (-5 *2 (-639 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-766)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-788)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451)) (-4 *5 (-845)) (-5 *1 (-448 *3 *4 *5 *6)))) (-4271 (*1 *2 *3 *2) (-12 (-5 *2 (-639 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-788)) (-4 *3 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *6 (-845)) (-5 *1 (-448 *4 *5 *6 *3)))) (-2680 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-451)) (-4 *3 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-448 *4 *3 *5 *6)) (-4 *6 (-944 *4 *3 *5)))) (-4075 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *3 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-448 *4 *3 *5 *6)) (-4 *6 (-944 *4 *3 *5)))) (-2268 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-788)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-448 *4 *5 *6 *7)))) (-3253 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-562)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-448 *4 *5 *6 *7)))) (-1412 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-448 *4 *5 *6 *2)))) (-2864 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-448 *4 *5 *6 *2)))))
-(-10 -7 (-15 -2864 (|#4| |#4| (-639 |#4|))) (-15 -1412 (|#4| |#4| (-639 |#4|))) (-15 -3253 ((-639 |#4|) (-639 |#4|) (-562) (-562))) (-15 -2268 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -4075 ((-112) |#2| |#2|)) (-15 -2680 ((-112) |#2| |#2| |#2| |#2|)) (-15 -4271 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2626 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2229 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3679 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-639 |#4|))) (-15 -1844 (|#4| |#4|)) (-15 -2052 ((-639 (-2 (|:| |totdeg| (-766)) (|:| -4380 |#4|))) |#4| (-766) (-639 (-2 (|:| |totdeg| (-766)) (|:| -4380 |#4|))))) (-15 -1988 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2633 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4229 ((-639 |#4|) (-639 |#4|))) (-15 -4002 ((-562) |#4|)) (-15 -2593 ((-1261) |#4|)) (-15 -4281 ((-562) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-562) (-562) (-562))) (-15 -4033 ((-562) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-562) (-562) (-562) (-562))) (-15 -3811 ((-1261) (-639 |#4|))) (-15 -3369 ((-1261) (-562))) (-15 -2935 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2637 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-766)) (|:| -4380 |#4|)) |#4| (-766))) (-15 -4373 ((-766) |#4|)))
-((-1548 ((|#4| |#4| (-639 |#4|)) 22 (|has| |#1| (-362)))) (-2769 (((-639 |#4|) (-639 |#4|) (-1150) (-1150)) 41) (((-639 |#4|) (-639 |#4|) (-1150)) 40) (((-639 |#4|) (-639 |#4|)) 35)))
-(((-449 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2769 ((-639 |#4|) (-639 |#4|))) (-15 -2769 ((-639 |#4|) (-639 |#4|) (-1150))) (-15 -2769 ((-639 |#4|) (-639 |#4|) (-1150) (-1150))) (IF (|has| |#1| (-362)) (-15 -1548 (|#4| |#4| (-639 |#4|))) |%noBranch|)) (-451) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -449))
-((-1548 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-362)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-449 *4 *5 *6 *2)))) (-2769 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-1150)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-449 *4 *5 *6 *7)))) (-2769 (*1 *2 *2 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-1150)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-449 *4 *5 *6 *7)))) (-2769 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-449 *3 *4 *5 *6)))))
-(-10 -7 (-15 -2769 ((-639 |#4|) (-639 |#4|))) (-15 -2769 ((-639 |#4|) (-639 |#4|) (-1150))) (-15 -2769 ((-639 |#4|) (-639 |#4|) (-1150) (-1150))) (IF (|has| |#1| (-362)) (-15 -1548 (|#4| |#4| (-639 |#4|))) |%noBranch|))
-((-1564 (($ $ $) 14) (($ (-639 $)) 21)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 41)) (-1606 (($ $ $) NIL) (($ (-639 $)) 22)))
-(((-450 |#1|) (-10 -8 (-15 -2741 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))) (-15 -1564 (|#1| (-639 |#1|))) (-15 -1564 (|#1| |#1| |#1|)) (-15 -1606 (|#1| (-639 |#1|))) (-15 -1606 (|#1| |#1| |#1|))) (-451)) (T -450))
-NIL
-(-10 -8 (-15 -2741 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))) (-15 -1564 (|#1| (-639 |#1|))) (-15 -1564 (|#1| |#1| |#1|)) (-15 -1606 (|#1| (-639 |#1|))) (-15 -1606 (|#1| |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1762 (((-3 $ "failed") $ $) 43)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-2730 (((-112)) 17)) (-1620 (((-112) (-112)) 18)) (-3441 (((-112)) 13)) (-3483 (((-112) (-112)) 14)) (-3921 (((-112)) 15)) (-1654 (((-112) (-112)) 16)) (-3953 (((-916) (-916)) 21) (((-916)) 20)) (-3423 (((-766) (-639 (-2 (|:| -1635 |#1|) (|:| -2250 (-562))))) 41)) (-1468 (((-916) (-916)) 23) (((-916)) 22)) (-3428 (((-2 (|:| -4066 (-562)) (|:| -2656 (-639 |#1|))) |#1|) 61)) (-2858 (((-417 |#1|) (-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| |#1|) (|:| -2794 (-562))))))) 126)) (-2323 (((-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| |#1|) (|:| -2794 (-562)))))) |#1| (-112)) 152)) (-3805 (((-417 |#1|) |#1| (-766) (-766)) 165) (((-417 |#1|) |#1| (-639 (-766)) (-766)) 162) (((-417 |#1|) |#1| (-639 (-766))) 164) (((-417 |#1|) |#1| (-766)) 163) (((-417 |#1|) |#1|) 161)) (-3555 (((-3 |#1| "failed") (-916) |#1| (-639 (-766)) (-766) (-112)) 167) (((-3 |#1| "failed") (-916) |#1| (-639 (-766)) (-766)) 168) (((-3 |#1| "failed") (-916) |#1| (-639 (-766))) 170) (((-3 |#1| "failed") (-916) |#1| (-766)) 169) (((-3 |#1| "failed") (-916) |#1|) 171)) (-1635 (((-417 |#1|) |#1| (-766) (-766)) 160) (((-417 |#1|) |#1| (-639 (-766)) (-766)) 156) (((-417 |#1|) |#1| (-639 (-766))) 158) (((-417 |#1|) |#1| (-766)) 157) (((-417 |#1|) |#1|) 155)) (-1466 (((-112) |#1|) 36)) (-2194 (((-732 (-766)) (-639 (-2 (|:| -1635 |#1|) (|:| -2250 (-562))))) 66)) (-1584 (((-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| |#1|) (|:| -2794 (-562)))))) |#1| (-112) (-1094 (-766)) (-766)) 154)))
+(((-441 |#1|) (-10 -7 (-15 -2858 ((-417 |#1|) (-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| |#1|) (|:| -2794 (-562)))))))) (-15 -2194 ((-732 (-766)) (-639 (-2 (|:| -1635 |#1|) (|:| -2250 (-562)))))) (-15 -1468 ((-916))) (-15 -1468 ((-916) (-916))) (-15 -3953 ((-916))) (-15 -3953 ((-916) (-916))) (-15 -3423 ((-766) (-639 (-2 (|:| -1635 |#1|) (|:| -2250 (-562)))))) (-15 -3428 ((-2 (|:| -4066 (-562)) (|:| -2656 (-639 |#1|))) |#1|)) (-15 -2730 ((-112))) (-15 -1620 ((-112) (-112))) (-15 -3441 ((-112))) (-15 -3483 ((-112) (-112))) (-15 -1466 ((-112) |#1|)) (-15 -3921 ((-112))) (-15 -1654 ((-112) (-112))) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -1635 ((-417 |#1|) |#1| (-766))) (-15 -1635 ((-417 |#1|) |#1| (-639 (-766)))) (-15 -1635 ((-417 |#1|) |#1| (-639 (-766)) (-766))) (-15 -1635 ((-417 |#1|) |#1| (-766) (-766))) (-15 -3805 ((-417 |#1|) |#1|)) (-15 -3805 ((-417 |#1|) |#1| (-766))) (-15 -3805 ((-417 |#1|) |#1| (-639 (-766)))) (-15 -3805 ((-417 |#1|) |#1| (-639 (-766)) (-766))) (-15 -3805 ((-417 |#1|) |#1| (-766) (-766))) (-15 -3555 ((-3 |#1| "failed") (-916) |#1|)) (-15 -3555 ((-3 |#1| "failed") (-916) |#1| (-766))) (-15 -3555 ((-3 |#1| "failed") (-916) |#1| (-639 (-766)))) (-15 -3555 ((-3 |#1| "failed") (-916) |#1| (-639 (-766)) (-766))) (-15 -3555 ((-3 |#1| "failed") (-916) |#1| (-639 (-766)) (-766) (-112))) (-15 -2323 ((-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| |#1|) (|:| -2794 (-562)))))) |#1| (-112))) (-15 -1584 ((-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| |#1|) (|:| -2794 (-562)))))) |#1| (-112) (-1094 (-766)) (-766)))) (-1232 (-562))) (T -441))
+((-1584 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-112)) (-5 *5 (-1094 (-766))) (-5 *6 (-766)) (-5 *2 (-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| *3) (|:| -2794 (-562))))))) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-2323 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| *3) (|:| -2794 (-562))))))) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3555 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-916)) (-5 *4 (-639 (-766))) (-5 *5 (-766)) (-5 *6 (-112)) (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562))))) (-3555 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-916)) (-5 *4 (-639 (-766))) (-5 *5 (-766)) (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562))))) (-3555 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-916)) (-5 *4 (-639 (-766))) (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562))))) (-3555 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-916)) (-5 *4 (-766)) (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562))))) (-3555 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-916)) (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562))))) (-3805 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3805 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-639 (-766))) (-5 *5 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3805 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-766))) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3805 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3805 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1635 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1635 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-639 (-766))) (-5 *5 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-766))) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1635 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1654 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3921 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1466 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3483 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3441 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1620 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-2730 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3428 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -4066 (-562)) (|:| -2656 (-639 *3)))) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3423 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -1635 *4) (|:| -2250 (-562))))) (-4 *4 (-1232 (-562))) (-5 *2 (-766)) (-5 *1 (-441 *4)))) (-3953 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-3953 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1468 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-1468 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))) (-2194 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -1635 *4) (|:| -2250 (-562))))) (-4 *4 (-1232 (-562))) (-5 *2 (-732 (-766))) (-5 *1 (-441 *4)))) (-2858 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| *4) (|:| -2794 (-562))))))) (-4 *4 (-1232 (-562))) (-5 *2 (-417 *4)) (-5 *1 (-441 *4)))))
+(-10 -7 (-15 -2858 ((-417 |#1|) (-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| |#1|) (|:| -2794 (-562)))))))) (-15 -2194 ((-732 (-766)) (-639 (-2 (|:| -1635 |#1|) (|:| -2250 (-562)))))) (-15 -1468 ((-916))) (-15 -1468 ((-916) (-916))) (-15 -3953 ((-916))) (-15 -3953 ((-916) (-916))) (-15 -3423 ((-766) (-639 (-2 (|:| -1635 |#1|) (|:| -2250 (-562)))))) (-15 -3428 ((-2 (|:| -4066 (-562)) (|:| -2656 (-639 |#1|))) |#1|)) (-15 -2730 ((-112))) (-15 -1620 ((-112) (-112))) (-15 -3441 ((-112))) (-15 -3483 ((-112) (-112))) (-15 -1466 ((-112) |#1|)) (-15 -3921 ((-112))) (-15 -1654 ((-112) (-112))) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -1635 ((-417 |#1|) |#1| (-766))) (-15 -1635 ((-417 |#1|) |#1| (-639 (-766)))) (-15 -1635 ((-417 |#1|) |#1| (-639 (-766)) (-766))) (-15 -1635 ((-417 |#1|) |#1| (-766) (-766))) (-15 -3805 ((-417 |#1|) |#1|)) (-15 -3805 ((-417 |#1|) |#1| (-766))) (-15 -3805 ((-417 |#1|) |#1| (-639 (-766)))) (-15 -3805 ((-417 |#1|) |#1| (-639 (-766)) (-766))) (-15 -3805 ((-417 |#1|) |#1| (-766) (-766))) (-15 -3555 ((-3 |#1| "failed") (-916) |#1|)) (-15 -3555 ((-3 |#1| "failed") (-916) |#1| (-766))) (-15 -3555 ((-3 |#1| "failed") (-916) |#1| (-639 (-766)))) (-15 -3555 ((-3 |#1| "failed") (-916) |#1| (-639 (-766)) (-766))) (-15 -3555 ((-3 |#1| "failed") (-916) |#1| (-639 (-766)) (-766) (-112))) (-15 -2323 ((-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| |#1|) (|:| -2794 (-562)))))) |#1| (-112))) (-15 -1584 ((-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| |#1|) (|:| -2794 (-562)))))) |#1| (-112) (-1094 (-766)) (-766))))
+((-3691 (((-562) |#2|) 48) (((-562) |#2| (-766)) 47)) (-2783 (((-562) |#2|) 55)) (-3929 ((|#3| |#2|) 25)) (-4363 ((|#3| |#2| (-916)) 14)) (-3641 ((|#3| |#2|) 15)) (-1833 ((|#3| |#2|) 9)) (-3059 ((|#3| |#2|) 10)) (-3587 ((|#3| |#2| (-916)) 62) ((|#3| |#2|) 30)) (-3367 (((-562) |#2|) 57)))
+(((-442 |#1| |#2| |#3|) (-10 -7 (-15 -3367 ((-562) |#2|)) (-15 -3587 (|#3| |#2|)) (-15 -3587 (|#3| |#2| (-916))) (-15 -2783 ((-562) |#2|)) (-15 -3691 ((-562) |#2| (-766))) (-15 -3691 ((-562) |#2|)) (-15 -4363 (|#3| |#2| (-916))) (-15 -3929 (|#3| |#2|)) (-15 -1833 (|#3| |#2|)) (-15 -3059 (|#3| |#2|)) (-15 -3641 (|#3| |#2|))) (-1044) (-1232 |#1|) (-13 (-403) (-1033 |#1|) (-362) (-1192) (-283))) (T -442))
+((-3641 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))) (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))) (-3059 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))) (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))) (-1833 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))) (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))) (-3929 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))) (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))) (-4363 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-4 *5 (-1044)) (-4 *2 (-13 (-403) (-1033 *5) (-362) (-1192) (-283))) (-5 *1 (-442 *5 *3 *2)) (-4 *3 (-1232 *5)))) (-3691 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *4 *3 *5)) (-4 *3 (-1232 *4)) (-4 *5 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))))) (-3691 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *5 *3 *6)) (-4 *3 (-1232 *5)) (-4 *6 (-13 (-403) (-1033 *5) (-362) (-1192) (-283))))) (-2783 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *4 *3 *5)) (-4 *3 (-1232 *4)) (-4 *5 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))))) (-3587 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-4 *5 (-1044)) (-4 *2 (-13 (-403) (-1033 *5) (-362) (-1192) (-283))) (-5 *1 (-442 *5 *3 *2)) (-4 *3 (-1232 *5)))) (-3587 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))) (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))) (-3367 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *4 *3 *5)) (-4 *3 (-1232 *4)) (-4 *5 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))))))
+(-10 -7 (-15 -3367 ((-562) |#2|)) (-15 -3587 (|#3| |#2|)) (-15 -3587 (|#3| |#2| (-916))) (-15 -2783 ((-562) |#2|)) (-15 -3691 ((-562) |#2| (-766))) (-15 -3691 ((-562) |#2|)) (-15 -4363 (|#3| |#2| (-916))) (-15 -3929 (|#3| |#2|)) (-15 -1833 (|#3| |#2|)) (-15 -3059 (|#3| |#2|)) (-15 -3641 (|#3| |#2|)))
+((-3017 ((|#2| (-1256 |#1|)) 36)) (-3121 ((|#2| |#2| |#1|) 49)) (-2623 ((|#2| |#2| |#1|) 41)) (-2676 ((|#2| |#2|) 38)) (-3739 (((-112) |#2|) 30)) (-3965 (((-639 |#2|) (-916) (-417 |#2|)) 17)) (-3555 ((|#2| (-916) (-417 |#2|)) 21)) (-2194 (((-732 (-766)) (-417 |#2|)) 25)))
+(((-443 |#1| |#2|) (-10 -7 (-15 -3739 ((-112) |#2|)) (-15 -3017 (|#2| (-1256 |#1|))) (-15 -2676 (|#2| |#2|)) (-15 -2623 (|#2| |#2| |#1|)) (-15 -3121 (|#2| |#2| |#1|)) (-15 -2194 ((-732 (-766)) (-417 |#2|))) (-15 -3555 (|#2| (-916) (-417 |#2|))) (-15 -3965 ((-639 |#2|) (-916) (-417 |#2|)))) (-1044) (-1232 |#1|)) (T -443))
+((-3965 (*1 *2 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-417 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-1044)) (-5 *2 (-639 *6)) (-5 *1 (-443 *5 *6)))) (-3555 (*1 *2 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-417 *2)) (-4 *2 (-1232 *5)) (-5 *1 (-443 *5 *2)) (-4 *5 (-1044)))) (-2194 (*1 *2 *3) (-12 (-5 *3 (-417 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-1044)) (-5 *2 (-732 (-766))) (-5 *1 (-443 *4 *5)))) (-3121 (*1 *2 *2 *3) (-12 (-4 *3 (-1044)) (-5 *1 (-443 *3 *2)) (-4 *2 (-1232 *3)))) (-2623 (*1 *2 *2 *3) (-12 (-4 *3 (-1044)) (-5 *1 (-443 *3 *2)) (-4 *2 (-1232 *3)))) (-2676 (*1 *2 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-443 *3 *2)) (-4 *2 (-1232 *3)))) (-3017 (*1 *2 *3) (-12 (-5 *3 (-1256 *4)) (-4 *4 (-1044)) (-4 *2 (-1232 *4)) (-5 *1 (-443 *4 *2)))) (-3739 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-5 *2 (-112)) (-5 *1 (-443 *4 *3)) (-4 *3 (-1232 *4)))))
+(-10 -7 (-15 -3739 ((-112) |#2|)) (-15 -3017 (|#2| (-1256 |#1|))) (-15 -2676 (|#2| |#2|)) (-15 -2623 (|#2| |#2| |#1|)) (-15 -3121 (|#2| |#2| |#1|)) (-15 -2194 ((-732 (-766)) (-417 |#2|))) (-15 -3555 (|#2| (-916) (-417 |#2|))) (-15 -3965 ((-639 |#2|) (-916) (-417 |#2|))))
+((-1825 (((-766)) 41)) (-2207 (((-766)) 23 (|has| |#1| (-403))) (((-766) (-766)) 22 (|has| |#1| (-403)))) (-4217 (((-562) |#1|) 18 (|has| |#1| (-403)))) (-3629 (((-562) |#1|) 20 (|has| |#1| (-403)))) (-2197 (((-766)) 40) (((-766) (-766)) 39)) (-4256 ((|#1| (-766) (-562)) 29)) (-3815 (((-1261)) 43)))
+(((-444 |#1|) (-10 -7 (-15 -4256 (|#1| (-766) (-562))) (-15 -2197 ((-766) (-766))) (-15 -2197 ((-766))) (-15 -1825 ((-766))) (-15 -3815 ((-1261))) (IF (|has| |#1| (-403)) (PROGN (-15 -3629 ((-562) |#1|)) (-15 -4217 ((-562) |#1|)) (-15 -2207 ((-766) (-766))) (-15 -2207 ((-766)))) |%noBranch|)) (-1044)) (T -444))
+((-2207 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))) (-2207 (*1 *2 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))) (-4217 (*1 *2 *3) (-12 (-5 *2 (-562)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))) (-3629 (*1 *2 *3) (-12 (-5 *2 (-562)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))) (-3815 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))) (-1825 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))) (-2197 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))) (-2197 (*1 *2 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))) (-4256 (*1 *2 *3 *4) (-12 (-5 *3 (-766)) (-5 *4 (-562)) (-5 *1 (-444 *2)) (-4 *2 (-1044)))))
+(-10 -7 (-15 -4256 (|#1| (-766) (-562))) (-15 -2197 ((-766) (-766))) (-15 -2197 ((-766))) (-15 -1825 ((-766))) (-15 -3815 ((-1261))) (IF (|has| |#1| (-403)) (PROGN (-15 -3629 ((-562) |#1|)) (-15 -4217 ((-562) |#1|)) (-15 -2207 ((-766) (-766))) (-15 -2207 ((-766)))) |%noBranch|))
+((-3034 (((-639 (-562)) (-562)) 60)) (-3521 (((-112) (-168 (-562))) 64)) (-1635 (((-417 (-168 (-562))) (-168 (-562))) 59)))
+(((-445) (-10 -7 (-15 -1635 ((-417 (-168 (-562))) (-168 (-562)))) (-15 -3034 ((-639 (-562)) (-562))) (-15 -3521 ((-112) (-168 (-562)))))) (T -445))
+((-3521 (*1 *2 *3) (-12 (-5 *3 (-168 (-562))) (-5 *2 (-112)) (-5 *1 (-445)))) (-3034 (*1 *2 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-445)) (-5 *3 (-562)))) (-1635 (*1 *2 *3) (-12 (-5 *2 (-417 (-168 (-562)))) (-5 *1 (-445)) (-5 *3 (-168 (-562))))))
+(-10 -7 (-15 -1635 ((-417 (-168 (-562))) (-168 (-562)))) (-15 -3034 ((-639 (-562)) (-562))) (-15 -3521 ((-112) (-168 (-562)))))
+((-3583 ((|#4| |#4| (-639 |#4|)) 60)) (-1822 (((-639 |#4|) (-639 |#4|) (-1150) (-1150)) 17) (((-639 |#4|) (-639 |#4|) (-1150)) 16) (((-639 |#4|) (-639 |#4|)) 11)))
+(((-446 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3583 (|#4| |#4| (-639 |#4|))) (-15 -1822 ((-639 |#4|) (-639 |#4|))) (-15 -1822 ((-639 |#4|) (-639 |#4|) (-1150))) (-15 -1822 ((-639 |#4|) (-639 |#4|) (-1150) (-1150)))) (-306) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -446))
+((-1822 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-1150)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-306)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-446 *4 *5 *6 *7)))) (-1822 (*1 *2 *2 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-1150)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-306)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-446 *4 *5 *6 *7)))) (-1822 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-306)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-446 *3 *4 *5 *6)))) (-3583 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-306)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-446 *4 *5 *6 *2)))))
+(-10 -7 (-15 -3583 (|#4| |#4| (-639 |#4|))) (-15 -1822 ((-639 |#4|) (-639 |#4|))) (-15 -1822 ((-639 |#4|) (-639 |#4|) (-1150))) (-15 -1822 ((-639 |#4|) (-639 |#4|) (-1150) (-1150))))
+((-3814 (((-639 (-639 |#4|)) (-639 |#4|) (-112)) 72) (((-639 (-639 |#4|)) (-639 |#4|)) 71) (((-639 (-639 |#4|)) (-639 |#4|) (-639 |#4|) (-112)) 65) (((-639 (-639 |#4|)) (-639 |#4|) (-639 |#4|)) 66)) (-2066 (((-639 (-639 |#4|)) (-639 |#4|) (-112)) 41) (((-639 (-639 |#4|)) (-639 |#4|)) 62)))
+(((-447 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2066 ((-639 (-639 |#4|)) (-639 |#4|))) (-15 -2066 ((-639 (-639 |#4|)) (-639 |#4|) (-112))) (-15 -3814 ((-639 (-639 |#4|)) (-639 |#4|) (-639 |#4|))) (-15 -3814 ((-639 (-639 |#4|)) (-639 |#4|) (-639 |#4|) (-112))) (-15 -3814 ((-639 (-639 |#4|)) (-639 |#4|))) (-15 -3814 ((-639 (-639 |#4|)) (-639 |#4|) (-112)))) (-13 (-306) (-146)) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -447))
+((-3814 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-639 (-639 *8))) (-5 *1 (-447 *5 *6 *7 *8)) (-5 *3 (-639 *8)))) (-3814 (*1 *2 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-639 (-639 *7))) (-5 *1 (-447 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-3814 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-639 (-639 *8))) (-5 *1 (-447 *5 *6 *7 *8)) (-5 *3 (-639 *8)))) (-3814 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-639 (-639 *7))) (-5 *1 (-447 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-2066 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-639 (-639 *8))) (-5 *1 (-447 *5 *6 *7 *8)) (-5 *3 (-639 *8)))) (-2066 (*1 *2 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-639 (-639 *7))) (-5 *1 (-447 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
+(-10 -7 (-15 -2066 ((-639 (-639 |#4|)) (-639 |#4|))) (-15 -2066 ((-639 (-639 |#4|)) (-639 |#4|) (-112))) (-15 -3814 ((-639 (-639 |#4|)) (-639 |#4|) (-639 |#4|))) (-15 -3814 ((-639 (-639 |#4|)) (-639 |#4|) (-639 |#4|) (-112))) (-15 -3814 ((-639 (-639 |#4|)) (-639 |#4|))) (-15 -3814 ((-639 (-639 |#4|)) (-639 |#4|) (-112))))
+((-4134 (((-766) |#4|) 12)) (-2917 (((-639 (-2 (|:| |totdeg| (-766)) (|:| -4201 |#4|))) |#4| (-766) (-639 (-2 (|:| |totdeg| (-766)) (|:| -4201 |#4|)))) 31)) (-3967 (((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 37)) (-1604 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 38)) (-1837 ((|#4| |#4| (-639 |#4|)) 39)) (-3635 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-639 |#4|)) 69)) (-3541 (((-1261) |#4|) 41)) (-2512 (((-1261) (-639 |#4|)) 50)) (-1343 (((-562) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-562) (-562) (-562)) 47)) (-3605 (((-1261) (-562)) 78)) (-2136 (((-639 |#4|) (-639 |#4|)) 76)) (-4013 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-766)) (|:| -4201 |#4|)) |#4| (-766)) 25)) (-3753 (((-562) |#4|) 77)) (-2613 ((|#4| |#4|) 29)) (-1986 (((-639 |#4|) (-639 |#4|) (-562) (-562)) 55)) (-4046 (((-562) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-562) (-562) (-562) (-562)) 88)) (-3939 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 16)) (-1484 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 58)) (-4214 (((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 57)) (-3887 (((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 35)) (-3159 (((-112) |#2| |#2|) 56)) (-4341 (((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 36)) (-3184 (((-112) |#2| |#2| |#2| |#2|) 59)) (-1347 ((|#4| |#4| (-639 |#4|)) 70)))
+(((-448 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1347 (|#4| |#4| (-639 |#4|))) (-15 -1837 (|#4| |#4| (-639 |#4|))) (-15 -1986 ((-639 |#4|) (-639 |#4|) (-562) (-562))) (-15 -1484 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3159 ((-112) |#2| |#2|)) (-15 -3184 ((-112) |#2| |#2| |#2| |#2|)) (-15 -4341 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3887 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4214 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3635 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-639 |#4|))) (-15 -2613 (|#4| |#4|)) (-15 -2917 ((-639 (-2 (|:| |totdeg| (-766)) (|:| -4201 |#4|))) |#4| (-766) (-639 (-2 (|:| |totdeg| (-766)) (|:| -4201 |#4|))))) (-15 -1604 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3967 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2136 ((-639 |#4|) (-639 |#4|))) (-15 -3753 ((-562) |#4|)) (-15 -3541 ((-1261) |#4|)) (-15 -1343 ((-562) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-562) (-562) (-562))) (-15 -4046 ((-562) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-562) (-562) (-562) (-562))) (-15 -2512 ((-1261) (-639 |#4|))) (-15 -3605 ((-1261) (-562))) (-15 -3939 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -4013 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-766)) (|:| -4201 |#4|)) |#4| (-766))) (-15 -4134 ((-766) |#4|))) (-451) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -448))
+((-4134 (*1 *2 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-766)) (-5 *1 (-448 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))) (-4013 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-766)) (|:| -4201 *4))) (-5 *5 (-766)) (-4 *4 (-944 *6 *7 *8)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-448 *6 *7 *8 *4)))) (-3939 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-788)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-448 *4 *5 *6 *7)))) (-3605 (*1 *2 *3) (-12 (-5 *3 (-562)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1261)) (-5 *1 (-448 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1261)) (-5 *1 (-448 *4 *5 *6 *7)))) (-4046 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-766)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-788)) (-4 *4 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *7 (-845)) (-5 *1 (-448 *5 *6 *7 *4)))) (-1343 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-766)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-788)) (-4 *4 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *7 (-845)) (-5 *1 (-448 *5 *6 *7 *4)))) (-3541 (*1 *2 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1261)) (-5 *1 (-448 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))) (-3753 (*1 *2 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-562)) (-5 *1 (-448 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))) (-2136 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-448 *3 *4 *5 *6)))) (-3967 (*1 *2 *2 *2) (-12 (-5 *2 (-639 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-766)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-788)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451)) (-4 *5 (-845)) (-5 *1 (-448 *3 *4 *5 *6)))) (-1604 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-788)) (-4 *2 (-944 *4 *5 *6)) (-5 *1 (-448 *4 *5 *6 *2)) (-4 *4 (-451)) (-4 *6 (-845)))) (-2917 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-639 (-2 (|:| |totdeg| (-766)) (|:| -4201 *3)))) (-5 *4 (-766)) (-4 *3 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-448 *5 *6 *7 *3)))) (-2613 (*1 *2 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-448 *3 *4 *5 *2)) (-4 *2 (-944 *3 *4 *5)))) (-3635 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-448 *5 *6 *7 *3)))) (-4214 (*1 *2 *3 *2) (-12 (-5 *2 (-639 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-766)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-788)) (-4 *6 (-944 *4 *3 *5)) (-4 *4 (-451)) (-4 *5 (-845)) (-5 *1 (-448 *4 *3 *5 *6)))) (-3887 (*1 *2 *2) (-12 (-5 *2 (-639 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-766)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-788)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451)) (-4 *5 (-845)) (-5 *1 (-448 *3 *4 *5 *6)))) (-4341 (*1 *2 *3 *2) (-12 (-5 *2 (-639 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-788)) (-4 *3 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *6 (-845)) (-5 *1 (-448 *4 *5 *6 *3)))) (-3184 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-451)) (-4 *3 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-448 *4 *3 *5 *6)) (-4 *6 (-944 *4 *3 *5)))) (-3159 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *3 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-448 *4 *3 *5 *6)) (-4 *6 (-944 *4 *3 *5)))) (-1484 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-788)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-448 *4 *5 *6 *7)))) (-1986 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-562)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-448 *4 *5 *6 *7)))) (-1837 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-448 *4 *5 *6 *2)))) (-1347 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-448 *4 *5 *6 *2)))))
+(-10 -7 (-15 -1347 (|#4| |#4| (-639 |#4|))) (-15 -1837 (|#4| |#4| (-639 |#4|))) (-15 -1986 ((-639 |#4|) (-639 |#4|) (-562) (-562))) (-15 -1484 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3159 ((-112) |#2| |#2|)) (-15 -3184 ((-112) |#2| |#2| |#2| |#2|)) (-15 -4341 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3887 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4214 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3635 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-639 |#4|))) (-15 -2613 (|#4| |#4|)) (-15 -2917 ((-639 (-2 (|:| |totdeg| (-766)) (|:| -4201 |#4|))) |#4| (-766) (-639 (-2 (|:| |totdeg| (-766)) (|:| -4201 |#4|))))) (-15 -1604 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3967 ((-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-639 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2136 ((-639 |#4|) (-639 |#4|))) (-15 -3753 ((-562) |#4|)) (-15 -3541 ((-1261) |#4|)) (-15 -1343 ((-562) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-562) (-562) (-562))) (-15 -4046 ((-562) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-562) (-562) (-562) (-562))) (-15 -2512 ((-1261) (-639 |#4|))) (-15 -3605 ((-1261) (-562))) (-15 -3939 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -4013 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-766)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-766)) (|:| -4201 |#4|)) |#4| (-766))) (-15 -4134 ((-766) |#4|)))
+((-1791 ((|#4| |#4| (-639 |#4|)) 22 (|has| |#1| (-362)))) (-2848 (((-639 |#4|) (-639 |#4|) (-1150) (-1150)) 41) (((-639 |#4|) (-639 |#4|) (-1150)) 40) (((-639 |#4|) (-639 |#4|)) 35)))
+(((-449 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2848 ((-639 |#4|) (-639 |#4|))) (-15 -2848 ((-639 |#4|) (-639 |#4|) (-1150))) (-15 -2848 ((-639 |#4|) (-639 |#4|) (-1150) (-1150))) (IF (|has| |#1| (-362)) (-15 -1791 (|#4| |#4| (-639 |#4|))) |%noBranch|)) (-451) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -449))
+((-1791 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-362)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-449 *4 *5 *6 *2)))) (-2848 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-1150)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-449 *4 *5 *6 *7)))) (-2848 (*1 *2 *2 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-1150)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-449 *4 *5 *6 *7)))) (-2848 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-449 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2848 ((-639 |#4|) (-639 |#4|))) (-15 -2848 ((-639 |#4|) (-639 |#4|) (-1150))) (-15 -2848 ((-639 |#4|) (-639 |#4|) (-1150) (-1150))) (IF (|has| |#1| (-362)) (-15 -1791 (|#4| |#4| (-639 |#4|))) |%noBranch|))
+((-1564 (($ $ $) 14) (($ (-639 $)) 21)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 41)) (-1606 (($ $ $) NIL) (($ (-639 $)) 22)))
+(((-450 |#1|) (-10 -8 (-15 -2602 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))) (-15 -1564 (|#1| (-639 |#1|))) (-15 -1564 (|#1| |#1| |#1|)) (-15 -1606 (|#1| (-639 |#1|))) (-15 -1606 (|#1| |#1| |#1|))) (-451)) (T -450))
+NIL
+(-10 -8 (-15 -2602 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))) (-15 -1564 (|#1| (-639 |#1|))) (-15 -1564 (|#1| |#1| |#1|)) (-15 -1606 (|#1| (-639 |#1|))) (-15 -1606 (|#1| |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1762 (((-3 $ "failed") $ $) 43)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-451) (-139)) (T -451))
-((-1606 (*1 *1 *1 *1) (-4 *1 (-451))) (-1606 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-451)))) (-1564 (*1 *1 *1 *1) (-4 *1 (-451))) (-1564 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-451)))) (-2741 (*1 *2 *2 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-451)))))
-(-13 (-554) (-10 -8 (-15 -1606 ($ $ $)) (-15 -1606 ($ (-639 $))) (-15 -1564 ($ $ $)) (-15 -1564 ($ (-639 $))) (-15 -2741 ((-1164 $) (-1164 $) (-1164 $)))))
+((-1606 (*1 *1 *1 *1) (-4 *1 (-451))) (-1606 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-451)))) (-1564 (*1 *1 *1 *1) (-4 *1 (-451))) (-1564 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-451)))) (-2602 (*1 *2 *2 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-451)))))
+(-13 (-554) (-10 -8 (-15 -1606 ($ $ $)) (-15 -1606 ($ (-639 $))) (-15 -1564 ($ $ $)) (-15 -1564 ($ (-639 $))) (-15 -2602 ((-1164 $) (-1164 $) (-1164 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-289) . T) ((-554) . T) ((-642 $) . T) ((-712 $) . T) ((-721) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3931 (((-3 $ "failed")) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1902 (((-1256 (-683 (-406 (-947 |#1|)))) (-1256 $)) NIL) (((-1256 (-683 (-406 (-947 |#1|))))) NIL)) (-3655 (((-1256 $)) NIL)) (-1800 (($) NIL T CONST)) (-2874 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) NIL)) (-2117 (((-3 $ "failed")) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-4356 (((-683 (-406 (-947 |#1|))) (-1256 $)) NIL) (((-683 (-406 (-947 |#1|)))) NIL)) (-2422 (((-406 (-947 |#1|)) $) NIL)) (-2966 (((-683 (-406 (-947 |#1|))) $ (-1256 $)) NIL) (((-683 (-406 (-947 |#1|))) $) NIL)) (-2545 (((-3 $ "failed") $) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-3407 (((-1164 (-947 (-406 (-947 |#1|))))) NIL (|has| (-406 (-947 |#1|)) (-362))) (((-1164 (-406 (-947 |#1|)))) 84 (|has| |#1| (-554)))) (-1379 (($ $ (-916)) NIL)) (-2355 (((-406 (-947 |#1|)) $) NIL)) (-3474 (((-1164 (-406 (-947 |#1|))) $) 82 (|has| (-406 (-947 |#1|)) (-554)))) (-2819 (((-406 (-947 |#1|)) (-1256 $)) NIL) (((-406 (-947 |#1|))) NIL)) (-2964 (((-1164 (-406 (-947 |#1|))) $) NIL)) (-2380 (((-112)) NIL)) (-4018 (($ (-1256 (-406 (-947 |#1|))) (-1256 $)) 103) (($ (-1256 (-406 (-947 |#1|)))) NIL)) (-3668 (((-3 $ "failed") $) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-2173 (((-916)) NIL)) (-1321 (((-112)) NIL)) (-3650 (($ $ (-916)) NIL)) (-3813 (((-112)) NIL)) (-3375 (((-112)) NIL)) (-4258 (((-112)) NIL)) (-1681 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) NIL)) (-3700 (((-3 $ "failed")) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-3025 (((-683 (-406 (-947 |#1|))) (-1256 $)) NIL) (((-683 (-406 (-947 |#1|)))) NIL)) (-4153 (((-406 (-947 |#1|)) $) NIL)) (-1671 (((-683 (-406 (-947 |#1|))) $ (-1256 $)) NIL) (((-683 (-406 (-947 |#1|))) $) NIL)) (-4238 (((-3 $ "failed") $) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-2743 (((-1164 (-947 (-406 (-947 |#1|))))) NIL (|has| (-406 (-947 |#1|)) (-362))) (((-1164 (-406 (-947 |#1|)))) 83 (|has| |#1| (-554)))) (-2991 (($ $ (-916)) NIL)) (-1680 (((-406 (-947 |#1|)) $) NIL)) (-2026 (((-1164 (-406 (-947 |#1|))) $) 77 (|has| (-406 (-947 |#1|)) (-554)))) (-1305 (((-406 (-947 |#1|)) (-1256 $)) NIL) (((-406 (-947 |#1|))) NIL)) (-2670 (((-1164 (-406 (-947 |#1|))) $) NIL)) (-2090 (((-112)) NIL)) (-2913 (((-1150) $) NIL)) (-2144 (((-112)) NIL)) (-2580 (((-112)) NIL)) (-2809 (((-112)) NIL)) (-1709 (((-1112) $) NIL)) (-3190 (((-406 (-947 |#1|)) $ $) 71 (|has| |#1| (-554)))) (-1665 (((-406 (-947 |#1|)) $) 93 (|has| |#1| (-554)))) (-2199 (((-406 (-947 |#1|)) $) 95 (|has| |#1| (-554)))) (-3169 (((-1164 (-406 (-947 |#1|))) $) 88 (|has| |#1| (-554)))) (-3822 (((-406 (-947 |#1|))) 72 (|has| |#1| (-554)))) (-2458 (((-406 (-947 |#1|)) $ $) 64 (|has| |#1| (-554)))) (-1518 (((-406 (-947 |#1|)) $) 92 (|has| |#1| (-554)))) (-1833 (((-406 (-947 |#1|)) $) 94 (|has| |#1| (-554)))) (-3037 (((-1164 (-406 (-947 |#1|))) $) 87 (|has| |#1| (-554)))) (-3953 (((-406 (-947 |#1|))) 68 (|has| |#1| (-554)))) (-4242 (($) 101) (($ (-1168)) 107) (($ (-1256 (-1168))) 106) (($ (-1256 $)) 96) (($ (-1168) (-1256 $)) 105) (($ (-1256 (-1168)) (-1256 $)) 104)) (-4323 (((-112)) NIL)) (-2343 (((-406 (-947 |#1|)) $ (-562)) NIL)) (-3593 (((-1256 (-406 (-947 |#1|))) $ (-1256 $)) 98) (((-683 (-406 (-947 |#1|))) (-1256 $) (-1256 $)) NIL) (((-1256 (-406 (-947 |#1|))) $) 40) (((-683 (-406 (-947 |#1|))) (-1256 $)) NIL)) (-4208 (((-1256 (-406 (-947 |#1|))) $) NIL) (($ (-1256 (-406 (-947 |#1|)))) 37)) (-4136 (((-639 (-947 (-406 (-947 |#1|)))) (-1256 $)) NIL) (((-639 (-947 (-406 (-947 |#1|))))) NIL) (((-639 (-947 |#1|)) (-1256 $)) 99 (|has| |#1| (-554))) (((-639 (-947 |#1|))) 100 (|has| |#1| (-554)))) (-1911 (($ $ $) NIL)) (-1396 (((-112)) NIL)) (-4054 (((-857) $) NIL) (($ (-1256 (-406 (-947 |#1|)))) NIL)) (-3928 (((-1256 $)) 60)) (-3553 (((-639 (-1256 (-406 (-947 |#1|))))) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-2436 (($ $ $ $) NIL)) (-2850 (((-112)) NIL)) (-1360 (($ (-683 (-406 (-947 |#1|))) $) NIL)) (-3626 (($ $ $) NIL)) (-1981 (((-112)) NIL)) (-3199 (((-112)) NIL)) (-4114 (((-112)) NIL)) (-2286 (($) NIL T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) 97)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 56) (($ $ (-406 (-947 |#1|))) NIL) (($ (-406 (-947 |#1|)) $) NIL) (($ (-1134 |#2| (-406 (-947 |#1|))) $) NIL)))
-(((-452 |#1| |#2| |#3| |#4|) (-13 (-416 (-406 (-947 |#1|))) (-642 (-1134 |#2| (-406 (-947 |#1|)))) (-10 -8 (-15 -4054 ($ (-1256 (-406 (-947 |#1|))))) (-15 -1681 ((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed"))) (-15 -2874 ((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed"))) (-15 -4242 ($)) (-15 -4242 ($ (-1168))) (-15 -4242 ($ (-1256 (-1168)))) (-15 -4242 ($ (-1256 $))) (-15 -4242 ($ (-1168) (-1256 $))) (-15 -4242 ($ (-1256 (-1168)) (-1256 $))) (IF (|has| |#1| (-554)) (PROGN (-15 -2743 ((-1164 (-406 (-947 |#1|))))) (-15 -3037 ((-1164 (-406 (-947 |#1|))) $)) (-15 -1518 ((-406 (-947 |#1|)) $)) (-15 -1833 ((-406 (-947 |#1|)) $)) (-15 -3407 ((-1164 (-406 (-947 |#1|))))) (-15 -3169 ((-1164 (-406 (-947 |#1|))) $)) (-15 -1665 ((-406 (-947 |#1|)) $)) (-15 -2199 ((-406 (-947 |#1|)) $)) (-15 -2458 ((-406 (-947 |#1|)) $ $)) (-15 -3953 ((-406 (-947 |#1|)))) (-15 -3190 ((-406 (-947 |#1|)) $ $)) (-15 -3822 ((-406 (-947 |#1|)))) (-15 -4136 ((-639 (-947 |#1|)) (-1256 $))) (-15 -4136 ((-639 (-947 |#1|))))) |%noBranch|))) (-171) (-916) (-639 (-1168)) (-1256 (-683 |#1|))) (T -452))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1256 (-406 (-947 *3)))) (-4 *3 (-171)) (-14 *6 (-1256 (-683 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))))) (-1681 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-452 *3 *4 *5 *6)) (|:| -3928 (-639 (-452 *3 *4 *5 *6))))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2874 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-452 *3 *4 *5 *6)) (|:| -3928 (-639 (-452 *3 *4 *5 *6))))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-4242 (*1 *1) (-12 (-5 *1 (-452 *2 *3 *4 *5)) (-4 *2 (-171)) (-14 *3 (-916)) (-14 *4 (-639 (-1168))) (-14 *5 (-1256 (-683 *2))))) (-4242 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 *2)) (-14 *6 (-1256 (-683 *3))))) (-4242 (*1 *1 *2) (-12 (-5 *2 (-1256 (-1168))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-4242 (*1 *1 *2) (-12 (-5 *2 (-1256 (-452 *3 *4 *5 *6))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-4242 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-452 *4 *5 *6 *7))) (-5 *1 (-452 *4 *5 *6 *7)) (-4 *4 (-171)) (-14 *5 (-916)) (-14 *6 (-639 *2)) (-14 *7 (-1256 (-683 *4))))) (-4242 (*1 *1 *2 *3) (-12 (-5 *2 (-1256 (-1168))) (-5 *3 (-1256 (-452 *4 *5 *6 *7))) (-5 *1 (-452 *4 *5 *6 *7)) (-4 *4 (-171)) (-14 *5 (-916)) (-14 *6 (-639 (-1168))) (-14 *7 (-1256 (-683 *4))))) (-2743 (*1 *2) (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-3037 (*1 *2 *1) (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-1518 (*1 *2 *1) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-1833 (*1 *2 *1) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-3407 (*1 *2) (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-3169 (*1 *2 *1) (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-1665 (*1 *2 *1) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2199 (*1 *2 *1) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2458 (*1 *2 *1 *1) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-3953 (*1 *2) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-3190 (*1 *2 *1 *1) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-3822 (*1 *2) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-4136 (*1 *2 *3) (-12 (-5 *3 (-1256 (-452 *4 *5 *6 *7))) (-5 *2 (-639 (-947 *4))) (-5 *1 (-452 *4 *5 *6 *7)) (-4 *4 (-554)) (-4 *4 (-171)) (-14 *5 (-916)) (-14 *6 (-639 (-1168))) (-14 *7 (-1256 (-683 *4))))) (-4136 (*1 *2) (-12 (-5 *2 (-639 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
-(-13 (-416 (-406 (-947 |#1|))) (-642 (-1134 |#2| (-406 (-947 |#1|)))) (-10 -8 (-15 -4054 ($ (-1256 (-406 (-947 |#1|))))) (-15 -1681 ((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed"))) (-15 -2874 ((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed"))) (-15 -4242 ($)) (-15 -4242 ($ (-1168))) (-15 -4242 ($ (-1256 (-1168)))) (-15 -4242 ($ (-1256 $))) (-15 -4242 ($ (-1168) (-1256 $))) (-15 -4242 ($ (-1256 (-1168)) (-1256 $))) (IF (|has| |#1| (-554)) (PROGN (-15 -2743 ((-1164 (-406 (-947 |#1|))))) (-15 -3037 ((-1164 (-406 (-947 |#1|))) $)) (-15 -1518 ((-406 (-947 |#1|)) $)) (-15 -1833 ((-406 (-947 |#1|)) $)) (-15 -3407 ((-1164 (-406 (-947 |#1|))))) (-15 -3169 ((-1164 (-406 (-947 |#1|))) $)) (-15 -1665 ((-406 (-947 |#1|)) $)) (-15 -2199 ((-406 (-947 |#1|)) $)) (-15 -2458 ((-406 (-947 |#1|)) $ $)) (-15 -3953 ((-406 (-947 |#1|)))) (-15 -3190 ((-406 (-947 |#1|)) $ $)) (-15 -3822 ((-406 (-947 |#1|)))) (-15 -4136 ((-639 (-947 |#1|)) (-1256 $))) (-15 -4136 ((-639 (-947 |#1|))))) |%noBranch|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 13)) (-1402 (((-639 (-859 |#1|)) $) 74)) (-1599 (((-1164 $) $ (-859 |#1|)) 46) (((-1164 |#2|) $) 117)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#2| (-554)))) (-2796 (($ $) NIL (|has| |#2| (-554)))) (-4370 (((-112) $) NIL (|has| |#2| (-554)))) (-1986 (((-766) $) 21) (((-766) $ (-639 (-859 |#1|))) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-2798 (($ $) NIL (|has| |#2| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#2| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) 44) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-859 |#1|) "failed") $) NIL)) (-3961 ((|#2| $) 42) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-859 |#1|) $) NIL)) (-2835 (($ $ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-2040 (($ $ (-639 (-562))) 79)) (-1601 (($ $) 67)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#2| (-904)))) (-3122 (($ $ |#2| |#3| $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) 58)) (-1390 (($ (-1164 |#2|) (-859 |#1|)) 122) (($ (-1164 $) (-859 |#1|)) 52)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) 59)) (-1378 (($ |#2| |#3|) 28) (($ $ (-859 |#1|) (-766)) 30) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ (-859 |#1|)) NIL)) (-2076 ((|#3| $) NIL) (((-766) $ (-859 |#1|)) 50) (((-639 (-766)) $ (-639 (-859 |#1|))) 57)) (-1551 (($ $ $) NIL (|has| |#2| (-845)))) (-2993 (($ $ $) NIL (|has| |#2| (-845)))) (-2836 (($ (-1 |#3| |#3|) $) NIL)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-3372 (((-3 (-859 |#1|) "failed") $) 39)) (-1560 (($ $) NIL)) (-1573 ((|#2| $) 41)) (-1564 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-2913 (((-1150) $) NIL)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| (-859 |#1|)) (|:| -1960 (-766))) "failed") $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) 40)) (-1547 ((|#2| $) 115)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#2| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) 127 (|has| |#2| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#2| (-904)))) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-859 |#1|) |#2|) 86) (($ $ (-639 (-859 |#1|)) (-639 |#2|)) 89) (($ $ (-859 |#1|) $) 84) (($ $ (-639 (-859 |#1|)) (-639 $)) 105)) (-2455 (($ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-4029 (($ $ (-859 |#1|)) 53) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-3598 ((|#3| $) 66) (((-766) $ (-859 |#1|)) 37) (((-639 (-766)) $ (-639 (-859 |#1|))) 56)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-859 |#1|) (-610 (-535))) (|has| |#2| (-610 (-535)))))) (-3900 ((|#2| $) 124 (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904))))) (-4054 (((-857) $) 144) (($ (-562)) NIL) (($ |#2|) 85) (($ (-859 |#1|)) 31) (($ (-406 (-562))) NIL (-4037 (|has| |#2| (-38 (-406 (-562)))) (|has| |#2| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#2| (-554)))) (-4358 (((-639 |#2|) $) NIL)) (-3906 ((|#2| $ |#3|) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#2| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#2| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#2| (-554)))) (-2286 (($) 17 T CONST)) (-2294 (($) 25 T CONST)) (-3114 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1859 (($ $ |#2|) 64 (|has| |#2| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 110)) (** (($ $ (-916)) NIL) (($ $ (-766)) 108)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 29) (($ $ (-406 (-562))) NIL (|has| |#2| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#2| (-38 (-406 (-562))))) (($ |#2| $) 63) (($ $ |#2|) NIL)))
-(((-453 |#1| |#2| |#3|) (-13 (-944 |#2| |#3| (-859 |#1|)) (-10 -8 (-15 -2040 ($ $ (-639 (-562)))))) (-639 (-1168)) (-1044) (-237 (-3492 |#1|) (-766))) (T -453))
-((-2040 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-14 *3 (-639 (-1168))) (-5 *1 (-453 *3 *4 *5)) (-4 *4 (-1044)) (-4 *5 (-237 (-3492 *3) (-766))))))
-(-13 (-944 |#2| |#3| (-859 |#1|)) (-10 -8 (-15 -2040 ($ $ (-639 (-562))))))
-((-3614 (((-112) |#1| (-639 |#2|)) 68)) (-2363 (((-3 (-1256 (-639 |#2|)) "failed") (-766) |#1| (-639 |#2|)) 77)) (-2150 (((-3 (-639 |#2|) "failed") |#2| |#1| (-1256 (-639 |#2|))) 79)) (-2925 ((|#2| |#2| |#1|) 28)) (-3499 (((-766) |#2| (-639 |#2|)) 20)))
-(((-454 |#1| |#2|) (-10 -7 (-15 -2925 (|#2| |#2| |#1|)) (-15 -3499 ((-766) |#2| (-639 |#2|))) (-15 -2363 ((-3 (-1256 (-639 |#2|)) "failed") (-766) |#1| (-639 |#2|))) (-15 -2150 ((-3 (-639 |#2|) "failed") |#2| |#1| (-1256 (-639 |#2|)))) (-15 -3614 ((-112) |#1| (-639 |#2|)))) (-306) (-1232 |#1|)) (T -454))
-((-3614 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *5)) (-4 *5 (-1232 *3)) (-4 *3 (-306)) (-5 *2 (-112)) (-5 *1 (-454 *3 *5)))) (-2150 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1256 (-639 *3))) (-4 *4 (-306)) (-5 *2 (-639 *3)) (-5 *1 (-454 *4 *3)) (-4 *3 (-1232 *4)))) (-2363 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-766)) (-4 *4 (-306)) (-4 *6 (-1232 *4)) (-5 *2 (-1256 (-639 *6))) (-5 *1 (-454 *4 *6)) (-5 *5 (-639 *6)))) (-3499 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-306)) (-5 *2 (-766)) (-5 *1 (-454 *5 *3)))) (-2925 (*1 *2 *2 *3) (-12 (-4 *3 (-306)) (-5 *1 (-454 *3 *2)) (-4 *2 (-1232 *3)))))
-(-10 -7 (-15 -2925 (|#2| |#2| |#1|)) (-15 -3499 ((-766) |#2| (-639 |#2|))) (-15 -2363 ((-3 (-1256 (-639 |#2|)) "failed") (-766) |#1| (-639 |#2|))) (-15 -2150 ((-3 (-639 |#2|) "failed") |#2| |#1| (-1256 (-639 |#2|)))) (-15 -3614 ((-112) |#1| (-639 |#2|))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-4310 (((-3 $ "failed")) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-2016 (((-1256 (-683 (-406 (-947 |#1|)))) (-1256 $)) NIL) (((-1256 (-683 (-406 (-947 |#1|))))) NIL)) (-1540 (((-1256 $)) NIL)) (-3329 (($) NIL T CONST)) (-1469 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) NIL)) (-2447 (((-3 $ "failed")) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-3945 (((-683 (-406 (-947 |#1|))) (-1256 $)) NIL) (((-683 (-406 (-947 |#1|)))) NIL)) (-2452 (((-406 (-947 |#1|)) $) NIL)) (-2995 (((-683 (-406 (-947 |#1|))) $ (-1256 $)) NIL) (((-683 (-406 (-947 |#1|))) $) NIL)) (-4276 (((-3 $ "failed") $) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-3996 (((-1164 (-947 (-406 (-947 |#1|))))) NIL (|has| (-406 (-947 |#1|)) (-362))) (((-1164 (-406 (-947 |#1|)))) 84 (|has| |#1| (-554)))) (-2127 (($ $ (-916)) NIL)) (-2949 (((-406 (-947 |#1|)) $) NIL)) (-3407 (((-1164 (-406 (-947 |#1|))) $) 82 (|has| (-406 (-947 |#1|)) (-554)))) (-2200 (((-406 (-947 |#1|)) (-1256 $)) NIL) (((-406 (-947 |#1|))) NIL)) (-2974 (((-1164 (-406 (-947 |#1|))) $) NIL)) (-3178 (((-112)) NIL)) (-3916 (($ (-1256 (-406 (-947 |#1|))) (-1256 $)) 103) (($ (-1256 (-406 (-947 |#1|)))) NIL)) (-1694 (((-3 $ "failed") $) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-2172 (((-916)) NIL)) (-1832 (((-112)) NIL)) (-1492 (($ $ (-916)) NIL)) (-2531 (((-112)) NIL)) (-3671 (((-112)) NIL)) (-2394 (((-112)) NIL)) (-3502 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) NIL)) (-3839 (((-3 $ "failed")) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-3506 (((-683 (-406 (-947 |#1|))) (-1256 $)) NIL) (((-683 (-406 (-947 |#1|)))) NIL)) (-2664 (((-406 (-947 |#1|)) $) NIL)) (-1583 (((-683 (-406 (-947 |#1|))) $ (-1256 $)) NIL) (((-683 (-406 (-947 |#1|))) $) NIL)) (-2217 (((-3 $ "failed") $) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-2620 (((-1164 (-947 (-406 (-947 |#1|))))) NIL (|has| (-406 (-947 |#1|)) (-362))) (((-1164 (-406 (-947 |#1|)))) 83 (|has| |#1| (-554)))) (-3235 (($ $ (-916)) NIL)) (-3495 (((-406 (-947 |#1|)) $) NIL)) (-3849 (((-1164 (-406 (-947 |#1|))) $) 77 (|has| (-406 (-947 |#1|)) (-554)))) (-1636 (((-406 (-947 |#1|)) (-1256 $)) NIL) (((-406 (-947 |#1|))) NIL)) (-3099 (((-1164 (-406 (-947 |#1|))) $) NIL)) (-3302 (((-112)) NIL)) (-3696 (((-1150) $) NIL)) (-2720 (((-112)) NIL)) (-1579 (((-112)) NIL)) (-2104 (((-112)) NIL)) (-1709 (((-1112) $) NIL)) (-2569 (((-406 (-947 |#1|)) $ $) 71 (|has| |#1| (-554)))) (-1535 (((-406 (-947 |#1|)) $) 93 (|has| |#1| (-554)))) (-2090 (((-406 (-947 |#1|)) $) 95 (|has| |#1| (-554)))) (-2390 (((-1164 (-406 (-947 |#1|))) $) 88 (|has| |#1| (-554)))) (-2611 (((-406 (-947 |#1|))) 72 (|has| |#1| (-554)))) (-2766 (((-406 (-947 |#1|)) $ $) 64 (|has| |#1| (-554)))) (-2729 (((-406 (-947 |#1|)) $) 92 (|has| |#1| (-554)))) (-2513 (((-406 (-947 |#1|)) $) 94 (|has| |#1| (-554)))) (-3518 (((-1164 (-406 (-947 |#1|))) $) 87 (|has| |#1| (-554)))) (-1429 (((-406 (-947 |#1|))) 68 (|has| |#1| (-554)))) (-2260 (($) 101) (($ (-1168)) 107) (($ (-1256 (-1168))) 106) (($ (-1256 $)) 96) (($ (-1168) (-1256 $)) 105) (($ (-1256 (-1168)) (-1256 $)) 104)) (-3626 (((-112)) NIL)) (-2343 (((-406 (-947 |#1|)) $ (-562)) NIL)) (-2205 (((-1256 (-406 (-947 |#1|))) $ (-1256 $)) 98) (((-683 (-406 (-947 |#1|))) (-1256 $) (-1256 $)) NIL) (((-1256 (-406 (-947 |#1|))) $) 40) (((-683 (-406 (-947 |#1|))) (-1256 $)) NIL)) (-4208 (((-1256 (-406 (-947 |#1|))) $) NIL) (($ (-1256 (-406 (-947 |#1|)))) 37)) (-2555 (((-639 (-947 (-406 (-947 |#1|)))) (-1256 $)) NIL) (((-639 (-947 (-406 (-947 |#1|))))) NIL) (((-639 (-947 |#1|)) (-1256 $)) 99 (|has| |#1| (-554))) (((-639 (-947 |#1|))) 100 (|has| |#1| (-554)))) (-2114 (($ $ $) NIL)) (-3901 (((-112)) NIL)) (-4053 (((-857) $) NIL) (($ (-1256 (-406 (-947 |#1|)))) NIL)) (-4291 (((-1256 $)) 60)) (-1823 (((-639 (-1256 (-406 (-947 |#1|))))) NIL (|has| (-406 (-947 |#1|)) (-554)))) (-2584 (($ $ $ $) NIL)) (-4309 (((-112)) NIL)) (-1360 (($ (-683 (-406 (-947 |#1|))) $) NIL)) (-4324 (($ $ $) NIL)) (-1517 (((-112)) NIL)) (-2636 (((-112)) NIL)) (-3488 (((-112)) NIL)) (-2285 (($) NIL T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) 97)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 56) (($ $ (-406 (-947 |#1|))) NIL) (($ (-406 (-947 |#1|)) $) NIL) (($ (-1134 |#2| (-406 (-947 |#1|))) $) NIL)))
+(((-452 |#1| |#2| |#3| |#4|) (-13 (-416 (-406 (-947 |#1|))) (-642 (-1134 |#2| (-406 (-947 |#1|)))) (-10 -8 (-15 -4053 ($ (-1256 (-406 (-947 |#1|))))) (-15 -3502 ((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed"))) (-15 -1469 ((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed"))) (-15 -2260 ($)) (-15 -2260 ($ (-1168))) (-15 -2260 ($ (-1256 (-1168)))) (-15 -2260 ($ (-1256 $))) (-15 -2260 ($ (-1168) (-1256 $))) (-15 -2260 ($ (-1256 (-1168)) (-1256 $))) (IF (|has| |#1| (-554)) (PROGN (-15 -2620 ((-1164 (-406 (-947 |#1|))))) (-15 -3518 ((-1164 (-406 (-947 |#1|))) $)) (-15 -2729 ((-406 (-947 |#1|)) $)) (-15 -2513 ((-406 (-947 |#1|)) $)) (-15 -3996 ((-1164 (-406 (-947 |#1|))))) (-15 -2390 ((-1164 (-406 (-947 |#1|))) $)) (-15 -1535 ((-406 (-947 |#1|)) $)) (-15 -2090 ((-406 (-947 |#1|)) $)) (-15 -2766 ((-406 (-947 |#1|)) $ $)) (-15 -1429 ((-406 (-947 |#1|)))) (-15 -2569 ((-406 (-947 |#1|)) $ $)) (-15 -2611 ((-406 (-947 |#1|)))) (-15 -2555 ((-639 (-947 |#1|)) (-1256 $))) (-15 -2555 ((-639 (-947 |#1|))))) |%noBranch|))) (-171) (-916) (-639 (-1168)) (-1256 (-683 |#1|))) (T -452))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1256 (-406 (-947 *3)))) (-4 *3 (-171)) (-14 *6 (-1256 (-683 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))))) (-3502 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-452 *3 *4 *5 *6)) (|:| -4291 (-639 (-452 *3 *4 *5 *6))))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-1469 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-452 *3 *4 *5 *6)) (|:| -4291 (-639 (-452 *3 *4 *5 *6))))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2260 (*1 *1) (-12 (-5 *1 (-452 *2 *3 *4 *5)) (-4 *2 (-171)) (-14 *3 (-916)) (-14 *4 (-639 (-1168))) (-14 *5 (-1256 (-683 *2))))) (-2260 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 *2)) (-14 *6 (-1256 (-683 *3))))) (-2260 (*1 *1 *2) (-12 (-5 *2 (-1256 (-1168))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2260 (*1 *1 *2) (-12 (-5 *2 (-1256 (-452 *3 *4 *5 *6))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2260 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-452 *4 *5 *6 *7))) (-5 *1 (-452 *4 *5 *6 *7)) (-4 *4 (-171)) (-14 *5 (-916)) (-14 *6 (-639 *2)) (-14 *7 (-1256 (-683 *4))))) (-2260 (*1 *1 *2 *3) (-12 (-5 *2 (-1256 (-1168))) (-5 *3 (-1256 (-452 *4 *5 *6 *7))) (-5 *1 (-452 *4 *5 *6 *7)) (-4 *4 (-171)) (-14 *5 (-916)) (-14 *6 (-639 (-1168))) (-14 *7 (-1256 (-683 *4))))) (-2620 (*1 *2) (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-3518 (*1 *2 *1) (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2729 (*1 *2 *1) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2513 (*1 *2 *1) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-3996 (*1 *2) (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2390 (*1 *2 *1) (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-1535 (*1 *2 *1) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2090 (*1 *2 *1) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2766 (*1 *2 *1 *1) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-1429 (*1 *2) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2569 (*1 *2 *1 *1) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2611 (*1 *2) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))) (-2555 (*1 *2 *3) (-12 (-5 *3 (-1256 (-452 *4 *5 *6 *7))) (-5 *2 (-639 (-947 *4))) (-5 *1 (-452 *4 *5 *6 *7)) (-4 *4 (-554)) (-4 *4 (-171)) (-14 *5 (-916)) (-14 *6 (-639 (-1168))) (-14 *7 (-1256 (-683 *4))))) (-2555 (*1 *2) (-12 (-5 *2 (-639 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(-13 (-416 (-406 (-947 |#1|))) (-642 (-1134 |#2| (-406 (-947 |#1|)))) (-10 -8 (-15 -4053 ($ (-1256 (-406 (-947 |#1|))))) (-15 -3502 ((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed"))) (-15 -1469 ((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed"))) (-15 -2260 ($)) (-15 -2260 ($ (-1168))) (-15 -2260 ($ (-1256 (-1168)))) (-15 -2260 ($ (-1256 $))) (-15 -2260 ($ (-1168) (-1256 $))) (-15 -2260 ($ (-1256 (-1168)) (-1256 $))) (IF (|has| |#1| (-554)) (PROGN (-15 -2620 ((-1164 (-406 (-947 |#1|))))) (-15 -3518 ((-1164 (-406 (-947 |#1|))) $)) (-15 -2729 ((-406 (-947 |#1|)) $)) (-15 -2513 ((-406 (-947 |#1|)) $)) (-15 -3996 ((-1164 (-406 (-947 |#1|))))) (-15 -2390 ((-1164 (-406 (-947 |#1|))) $)) (-15 -1535 ((-406 (-947 |#1|)) $)) (-15 -2090 ((-406 (-947 |#1|)) $)) (-15 -2766 ((-406 (-947 |#1|)) $ $)) (-15 -1429 ((-406 (-947 |#1|)))) (-15 -2569 ((-406 (-947 |#1|)) $ $)) (-15 -2611 ((-406 (-947 |#1|)))) (-15 -2555 ((-639 (-947 |#1|)) (-1256 $))) (-15 -2555 ((-639 (-947 |#1|))))) |%noBranch|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 13)) (-1401 (((-639 (-859 |#1|)) $) 74)) (-1602 (((-1164 $) $ (-859 |#1|)) 46) (((-1164 |#2|) $) 117)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#2| (-554)))) (-1965 (($ $) NIL (|has| |#2| (-554)))) (-4102 (((-112) $) NIL (|has| |#2| (-554)))) (-1578 (((-766) $) 21) (((-766) $ (-639 (-859 |#1|))) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1977 (($ $) NIL (|has| |#2| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#2| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) 44) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-859 |#1|) "failed") $) NIL)) (-3960 ((|#2| $) 42) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-859 |#1|) $) NIL)) (-2355 (($ $ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-3999 (($ $ (-639 (-562))) 79)) (-1600 (($ $) 67)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#2| (-904)))) (-3066 (($ $ |#2| |#3| $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) 58)) (-1389 (($ (-1164 |#2|) (-859 |#1|)) 122) (($ (-1164 $) (-859 |#1|)) 52)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) 59)) (-1377 (($ |#2| |#3|) 28) (($ $ (-859 |#1|) (-766)) 30) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ (-859 |#1|)) NIL)) (-3161 ((|#3| $) NIL) (((-766) $ (-859 |#1|)) 50) (((-639 (-766)) $ (-639 (-859 |#1|))) 57)) (-1551 (($ $ $) NIL (|has| |#2| (-845)))) (-2993 (($ $ $) NIL (|has| |#2| (-845)))) (-2363 (($ (-1 |#3| |#3|) $) NIL)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-3640 (((-3 (-859 |#1|) "failed") $) 39)) (-1560 (($ $) NIL)) (-1573 ((|#2| $) 41)) (-1564 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-3696 (((-1150) $) NIL)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| (-859 |#1|)) (|:| -1300 (-766))) "failed") $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) 40)) (-1547 ((|#2| $) 115)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#2| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) 127 (|has| |#2| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#2| (-904)))) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-859 |#1|) |#2|) 86) (($ $ (-639 (-859 |#1|)) (-639 |#2|)) 89) (($ $ (-859 |#1|) $) 84) (($ $ (-639 (-859 |#1|)) (-639 $)) 105)) (-2736 (($ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-4029 (($ $ (-859 |#1|)) 53) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2250 ((|#3| $) 66) (((-766) $ (-859 |#1|)) 37) (((-639 (-766)) $ (-639 (-859 |#1|))) 56)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-859 |#1|) (-610 (-535))) (|has| |#2| (-610 (-535)))))) (-2201 ((|#2| $) 124 (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904))))) (-4053 (((-857) $) 144) (($ (-562)) NIL) (($ |#2|) 85) (($ (-859 |#1|)) 31) (($ (-406 (-562))) NIL (-4037 (|has| |#2| (-38 (-406 (-562)))) (|has| |#2| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#2| (-554)))) (-3969 (((-639 |#2|) $) NIL)) (-2266 ((|#2| $ |#3|) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#2| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#2| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#2| (-554)))) (-2285 (($) 17 T CONST)) (-2294 (($) 25 T CONST)) (-3113 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1859 (($ $ |#2|) 64 (|has| |#2| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 110)) (** (($ $ (-916)) NIL) (($ $ (-766)) 108)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 29) (($ $ (-406 (-562))) NIL (|has| |#2| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#2| (-38 (-406 (-562))))) (($ |#2| $) 63) (($ $ |#2|) NIL)))
+(((-453 |#1| |#2| |#3|) (-13 (-944 |#2| |#3| (-859 |#1|)) (-10 -8 (-15 -3999 ($ $ (-639 (-562)))))) (-639 (-1168)) (-1044) (-237 (-3492 |#1|) (-766))) (T -453))
+((-3999 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-14 *3 (-639 (-1168))) (-5 *1 (-453 *3 *4 *5)) (-4 *4 (-1044)) (-4 *5 (-237 (-3492 *3) (-766))))))
+(-13 (-944 |#2| |#3| (-859 |#1|)) (-10 -8 (-15 -3999 ($ $ (-639 (-562))))))
+((-4229 (((-112) |#1| (-639 |#2|)) 68)) (-3007 (((-3 (-1256 (-639 |#2|)) "failed") (-766) |#1| (-639 |#2|)) 77)) (-2782 (((-3 (-639 |#2|) "failed") |#2| |#1| (-1256 (-639 |#2|))) 79)) (-3834 ((|#2| |#2| |#1|) 28)) (-2514 (((-766) |#2| (-639 |#2|)) 20)))
+(((-454 |#1| |#2|) (-10 -7 (-15 -3834 (|#2| |#2| |#1|)) (-15 -2514 ((-766) |#2| (-639 |#2|))) (-15 -3007 ((-3 (-1256 (-639 |#2|)) "failed") (-766) |#1| (-639 |#2|))) (-15 -2782 ((-3 (-639 |#2|) "failed") |#2| |#1| (-1256 (-639 |#2|)))) (-15 -4229 ((-112) |#1| (-639 |#2|)))) (-306) (-1232 |#1|)) (T -454))
+((-4229 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *5)) (-4 *5 (-1232 *3)) (-4 *3 (-306)) (-5 *2 (-112)) (-5 *1 (-454 *3 *5)))) (-2782 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1256 (-639 *3))) (-4 *4 (-306)) (-5 *2 (-639 *3)) (-5 *1 (-454 *4 *3)) (-4 *3 (-1232 *4)))) (-3007 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-766)) (-4 *4 (-306)) (-4 *6 (-1232 *4)) (-5 *2 (-1256 (-639 *6))) (-5 *1 (-454 *4 *6)) (-5 *5 (-639 *6)))) (-2514 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-306)) (-5 *2 (-766)) (-5 *1 (-454 *5 *3)))) (-3834 (*1 *2 *2 *3) (-12 (-4 *3 (-306)) (-5 *1 (-454 *3 *2)) (-4 *2 (-1232 *3)))))
+(-10 -7 (-15 -3834 (|#2| |#2| |#1|)) (-15 -2514 ((-766) |#2| (-639 |#2|))) (-15 -3007 ((-3 (-1256 (-639 |#2|)) "failed") (-766) |#1| (-639 |#2|))) (-15 -2782 ((-3 (-639 |#2|) "failed") |#2| |#1| (-1256 (-639 |#2|)))) (-15 -4229 ((-112) |#1| (-639 |#2|))))
((-1635 (((-417 |#5|) |#5|) 24)))
-(((-455 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1635 ((-417 |#5|) |#5|))) (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2444 ((-3 $ "failed") (-1168))))) (-788) (-554) (-554) (-944 |#4| |#2| |#1|)) (T -455))
-((-1635 (*1 *2 *3) (-12 (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2444 ((-3 $ "failed") (-1168)))))) (-4 *5 (-788)) (-4 *7 (-554)) (-5 *2 (-417 *3)) (-5 *1 (-455 *4 *5 *6 *7 *3)) (-4 *6 (-554)) (-4 *3 (-944 *7 *5 *4)))))
+(((-455 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1635 ((-417 |#5|) |#5|))) (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2443 ((-3 $ "failed") (-1168))))) (-788) (-554) (-554) (-944 |#4| |#2| |#1|)) (T -455))
+((-1635 (*1 *2 *3) (-12 (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2443 ((-3 $ "failed") (-1168)))))) (-4 *5 (-788)) (-4 *7 (-554)) (-5 *2 (-417 *3)) (-5 *1 (-455 *4 *5 *6 *7 *3)) (-4 *6 (-554)) (-4 *3 (-944 *7 *5 *4)))))
(-10 -7 (-15 -1635 ((-417 |#5|) |#5|)))
-((-4348 ((|#3|) 37)) (-2741 (((-1164 |#4|) (-1164 |#4|) (-1164 |#4|)) 33)))
-(((-456 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2741 ((-1164 |#4|) (-1164 |#4|) (-1164 |#4|))) (-15 -4348 (|#3|))) (-788) (-845) (-904) (-944 |#3| |#1| |#2|)) (T -456))
-((-4348 (*1 *2) (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-904)) (-5 *1 (-456 *3 *4 *2 *5)) (-4 *5 (-944 *2 *3 *4)))) (-2741 (*1 *2 *2 *2) (-12 (-5 *2 (-1164 *6)) (-4 *6 (-944 *5 *3 *4)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-904)) (-5 *1 (-456 *3 *4 *5 *6)))))
-(-10 -7 (-15 -2741 ((-1164 |#4|) (-1164 |#4|) (-1164 |#4|))) (-15 -4348 (|#3|)))
+((-3852 ((|#3|) 37)) (-2602 (((-1164 |#4|) (-1164 |#4|) (-1164 |#4|)) 33)))
+(((-456 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2602 ((-1164 |#4|) (-1164 |#4|) (-1164 |#4|))) (-15 -3852 (|#3|))) (-788) (-845) (-904) (-944 |#3| |#1| |#2|)) (T -456))
+((-3852 (*1 *2) (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-904)) (-5 *1 (-456 *3 *4 *2 *5)) (-4 *5 (-944 *2 *3 *4)))) (-2602 (*1 *2 *2 *2) (-12 (-5 *2 (-1164 *6)) (-4 *6 (-944 *5 *3 *4)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-904)) (-5 *1 (-456 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2602 ((-1164 |#4|) (-1164 |#4|) (-1164 |#4|))) (-15 -3852 (|#3|)))
((-1635 (((-417 (-1164 |#1|)) (-1164 |#1|)) 43)))
(((-457 |#1|) (-10 -7 (-15 -1635 ((-417 (-1164 |#1|)) (-1164 |#1|)))) (-306)) (T -457))
((-1635 (*1 *2 *3) (-12 (-4 *4 (-306)) (-5 *2 (-417 (-1164 *4))) (-5 *1 (-457 *4)) (-5 *3 (-1164 *4)))))
(-10 -7 (-15 -1635 ((-417 (-1164 |#1|)) (-1164 |#1|))))
-((-1469 (((-52) |#2| (-1168) (-293 |#2|) (-1223 (-766))) 42) (((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-766))) 41) (((-52) |#2| (-1168) (-293 |#2|)) 35) (((-52) (-1 |#2| (-562)) (-293 |#2|)) 28)) (-1503 (((-52) |#2| (-1168) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562))) 80) (((-52) (-1 |#2| (-406 (-562))) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562))) 79) (((-52) |#2| (-1168) (-293 |#2|) (-1223 (-562))) 78) (((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-562))) 77) (((-52) |#2| (-1168) (-293 |#2|)) 72) (((-52) (-1 |#2| (-562)) (-293 |#2|)) 71)) (-1499 (((-52) |#2| (-1168) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562))) 66) (((-52) (-1 |#2| (-406 (-562))) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562))) 64)) (-1485 (((-52) |#2| (-1168) (-293 |#2|) (-1223 (-562))) 48) (((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-562))) 47)))
-(((-458 |#1| |#2|) (-10 -7 (-15 -1469 ((-52) (-1 |#2| (-562)) (-293 |#2|))) (-15 -1469 ((-52) |#2| (-1168) (-293 |#2|))) (-15 -1469 ((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-766)))) (-15 -1469 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-766)))) (-15 -1485 ((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-562)))) (-15 -1485 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-562)))) (-15 -1499 ((-52) (-1 |#2| (-406 (-562))) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))) (-15 -1499 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))) (-15 -1503 ((-52) (-1 |#2| (-562)) (-293 |#2|))) (-15 -1503 ((-52) |#2| (-1168) (-293 |#2|))) (-15 -1503 ((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-562)))) (-15 -1503 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-562)))) (-15 -1503 ((-52) (-1 |#2| (-406 (-562))) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))) (-15 -1503 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562))))) (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -458))
-((-1503 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-5 *6 (-1223 (-406 (-562)))) (-5 *7 (-406 (-562))) (-4 *3 (-13 (-27) (-1192) (-429 *8))) (-4 *8 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *8 *3)))) (-1503 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-406 (-562)))) (-5 *4 (-293 *8)) (-5 *5 (-1223 (-406 (-562)))) (-5 *6 (-406 (-562))) (-4 *8 (-13 (-27) (-1192) (-429 *7))) (-4 *7 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *7 *8)))) (-1503 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-5 *6 (-1223 (-562))) (-4 *3 (-13 (-27) (-1192) (-429 *7))) (-4 *7 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *7 *3)))) (-1503 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-562))) (-5 *4 (-293 *7)) (-5 *5 (-1223 (-562))) (-4 *7 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *6 *7)))) (-1503 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *6 *3)))) (-1503 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-562))) (-5 *4 (-293 *6)) (-4 *6 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *5 *6)))) (-1499 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-5 *6 (-1223 (-406 (-562)))) (-5 *7 (-406 (-562))) (-4 *3 (-13 (-27) (-1192) (-429 *8))) (-4 *8 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *8 *3)))) (-1499 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-406 (-562)))) (-5 *4 (-293 *8)) (-5 *5 (-1223 (-406 (-562)))) (-5 *6 (-406 (-562))) (-4 *8 (-13 (-27) (-1192) (-429 *7))) (-4 *7 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *7 *8)))) (-1485 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-5 *6 (-1223 (-562))) (-4 *3 (-13 (-27) (-1192) (-429 *7))) (-4 *7 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *7 *3)))) (-1485 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-562))) (-5 *4 (-293 *7)) (-5 *5 (-1223 (-562))) (-4 *7 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *6 *7)))) (-1469 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-5 *6 (-1223 (-766))) (-4 *3 (-13 (-27) (-1192) (-429 *7))) (-4 *7 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *7 *3)))) (-1469 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-562))) (-5 *4 (-293 *7)) (-5 *5 (-1223 (-766))) (-4 *7 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *6 *7)))) (-1469 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *6 *3)))) (-1469 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-562))) (-5 *4 (-293 *6)) (-4 *6 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *5 *6)))))
-(-10 -7 (-15 -1469 ((-52) (-1 |#2| (-562)) (-293 |#2|))) (-15 -1469 ((-52) |#2| (-1168) (-293 |#2|))) (-15 -1469 ((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-766)))) (-15 -1469 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-766)))) (-15 -1485 ((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-562)))) (-15 -1485 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-562)))) (-15 -1499 ((-52) (-1 |#2| (-406 (-562))) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))) (-15 -1499 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))) (-15 -1503 ((-52) (-1 |#2| (-562)) (-293 |#2|))) (-15 -1503 ((-52) |#2| (-1168) (-293 |#2|))) (-15 -1503 ((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-562)))) (-15 -1503 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-562)))) (-15 -1503 ((-52) (-1 |#2| (-406 (-562))) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))) (-15 -1503 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))))
-((-2925 ((|#2| |#2| |#1|) 15)) (-1595 (((-639 |#2|) |#2| (-639 |#2|) |#1| (-916)) 68)) (-2044 (((-2 (|:| |plist| (-639 |#2|)) (|:| |modulo| |#1|)) |#2| (-639 |#2|) |#1| (-916)) 59)))
-(((-459 |#1| |#2|) (-10 -7 (-15 -2044 ((-2 (|:| |plist| (-639 |#2|)) (|:| |modulo| |#1|)) |#2| (-639 |#2|) |#1| (-916))) (-15 -1595 ((-639 |#2|) |#2| (-639 |#2|) |#1| (-916))) (-15 -2925 (|#2| |#2| |#1|))) (-306) (-1232 |#1|)) (T -459))
-((-2925 (*1 *2 *2 *3) (-12 (-4 *3 (-306)) (-5 *1 (-459 *3 *2)) (-4 *2 (-1232 *3)))) (-1595 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-639 *3)) (-5 *5 (-916)) (-4 *3 (-1232 *4)) (-4 *4 (-306)) (-5 *1 (-459 *4 *3)))) (-2044 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-916)) (-4 *5 (-306)) (-4 *3 (-1232 *5)) (-5 *2 (-2 (|:| |plist| (-639 *3)) (|:| |modulo| *5))) (-5 *1 (-459 *5 *3)) (-5 *4 (-639 *3)))))
-(-10 -7 (-15 -2044 ((-2 (|:| |plist| (-639 |#2|)) (|:| |modulo| |#1|)) |#2| (-639 |#2|) |#1| (-916))) (-15 -1595 ((-639 |#2|) |#2| (-639 |#2|) |#1| (-916))) (-15 -2925 (|#2| |#2| |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 28)) (-3901 (($ |#3|) 25)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1601 (($ $) 32)) (-1682 (($ |#2| |#4| $) 33)) (-1378 (($ |#2| (-708 |#3| |#4| |#5|)) 24)) (-1560 (((-708 |#3| |#4| |#5|) $) 15)) (-1927 ((|#3| $) 19)) (-1584 ((|#4| $) 17)) (-1573 ((|#2| $) 29)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-2005 (($ |#2| |#3| |#4|) 26)) (-2286 (($) 36 T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 34)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-460 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-712 |#6|) (-712 |#2|) (-10 -8 (-15 -1573 (|#2| $)) (-15 -1560 ((-708 |#3| |#4| |#5|) $)) (-15 -1584 (|#4| $)) (-15 -1927 (|#3| $)) (-15 -1601 ($ $)) (-15 -1378 ($ |#2| (-708 |#3| |#4| |#5|))) (-15 -3901 ($ |#3|)) (-15 -2005 ($ |#2| |#3| |#4|)) (-15 -1682 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-639 (-1168)) (-171) (-845) (-237 (-3492 |#1|) (-766)) (-1 (-112) (-2 (|:| -2466 |#3|) (|:| -1960 |#4|)) (-2 (|:| -2466 |#3|) (|:| -1960 |#4|))) (-944 |#2| |#4| (-859 |#1|))) (T -460))
-((* (*1 *1 *2 *1) (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171)) (-4 *6 (-237 (-3492 *3) (-766))) (-14 *7 (-1 (-112) (-2 (|:| -2466 *5) (|:| -1960 *6)) (-2 (|:| -2466 *5) (|:| -1960 *6)))) (-5 *1 (-460 *3 *4 *5 *6 *7 *2)) (-4 *5 (-845)) (-4 *2 (-944 *4 *6 (-859 *3))))) (-1573 (*1 *2 *1) (-12 (-14 *3 (-639 (-1168))) (-4 *5 (-237 (-3492 *3) (-766))) (-14 *6 (-1 (-112) (-2 (|:| -2466 *4) (|:| -1960 *5)) (-2 (|:| -2466 *4) (|:| -1960 *5)))) (-4 *2 (-171)) (-5 *1 (-460 *3 *2 *4 *5 *6 *7)) (-4 *4 (-845)) (-4 *7 (-944 *2 *5 (-859 *3))))) (-1560 (*1 *2 *1) (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171)) (-4 *6 (-237 (-3492 *3) (-766))) (-14 *7 (-1 (-112) (-2 (|:| -2466 *5) (|:| -1960 *6)) (-2 (|:| -2466 *5) (|:| -1960 *6)))) (-5 *2 (-708 *5 *6 *7)) (-5 *1 (-460 *3 *4 *5 *6 *7 *8)) (-4 *5 (-845)) (-4 *8 (-944 *4 *6 (-859 *3))))) (-1584 (*1 *2 *1) (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171)) (-14 *6 (-1 (-112) (-2 (|:| -2466 *5) (|:| -1960 *2)) (-2 (|:| -2466 *5) (|:| -1960 *2)))) (-4 *2 (-237 (-3492 *3) (-766))) (-5 *1 (-460 *3 *4 *5 *2 *6 *7)) (-4 *5 (-845)) (-4 *7 (-944 *4 *2 (-859 *3))))) (-1927 (*1 *2 *1) (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171)) (-4 *5 (-237 (-3492 *3) (-766))) (-14 *6 (-1 (-112) (-2 (|:| -2466 *2) (|:| -1960 *5)) (-2 (|:| -2466 *2) (|:| -1960 *5)))) (-4 *2 (-845)) (-5 *1 (-460 *3 *4 *2 *5 *6 *7)) (-4 *7 (-944 *4 *5 (-859 *3))))) (-1601 (*1 *1 *1) (-12 (-14 *2 (-639 (-1168))) (-4 *3 (-171)) (-4 *5 (-237 (-3492 *2) (-766))) (-14 *6 (-1 (-112) (-2 (|:| -2466 *4) (|:| -1960 *5)) (-2 (|:| -2466 *4) (|:| -1960 *5)))) (-5 *1 (-460 *2 *3 *4 *5 *6 *7)) (-4 *4 (-845)) (-4 *7 (-944 *3 *5 (-859 *2))))) (-1378 (*1 *1 *2 *3) (-12 (-5 *3 (-708 *5 *6 *7)) (-4 *5 (-845)) (-4 *6 (-237 (-3492 *4) (-766))) (-14 *7 (-1 (-112) (-2 (|:| -2466 *5) (|:| -1960 *6)) (-2 (|:| -2466 *5) (|:| -1960 *6)))) (-14 *4 (-639 (-1168))) (-4 *2 (-171)) (-5 *1 (-460 *4 *2 *5 *6 *7 *8)) (-4 *8 (-944 *2 *6 (-859 *4))))) (-3901 (*1 *1 *2) (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171)) (-4 *5 (-237 (-3492 *3) (-766))) (-14 *6 (-1 (-112) (-2 (|:| -2466 *2) (|:| -1960 *5)) (-2 (|:| -2466 *2) (|:| -1960 *5)))) (-5 *1 (-460 *3 *4 *2 *5 *6 *7)) (-4 *2 (-845)) (-4 *7 (-944 *4 *5 (-859 *3))))) (-2005 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-639 (-1168))) (-4 *2 (-171)) (-4 *4 (-237 (-3492 *5) (-766))) (-14 *6 (-1 (-112) (-2 (|:| -2466 *3) (|:| -1960 *4)) (-2 (|:| -2466 *3) (|:| -1960 *4)))) (-5 *1 (-460 *5 *2 *3 *4 *6 *7)) (-4 *3 (-845)) (-4 *7 (-944 *2 *4 (-859 *5))))) (-1682 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-639 (-1168))) (-4 *2 (-171)) (-4 *3 (-237 (-3492 *4) (-766))) (-14 *6 (-1 (-112) (-2 (|:| -2466 *5) (|:| -1960 *3)) (-2 (|:| -2466 *5) (|:| -1960 *3)))) (-5 *1 (-460 *4 *2 *5 *3 *6 *7)) (-4 *5 (-845)) (-4 *7 (-944 *2 *3 (-859 *4))))))
-(-13 (-712 |#6|) (-712 |#2|) (-10 -8 (-15 -1573 (|#2| $)) (-15 -1560 ((-708 |#3| |#4| |#5|) $)) (-15 -1584 (|#4| $)) (-15 -1927 (|#3| $)) (-15 -1601 ($ $)) (-15 -1378 ($ |#2| (-708 |#3| |#4| |#5|))) (-15 -3901 ($ |#3|)) (-15 -2005 ($ |#2| |#3| |#4|)) (-15 -1682 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
-((-2185 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 37)))
-(((-461 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2185 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-788) (-845) (-554) (-944 |#3| |#1| |#2|) (-13 (-1033 (-406 (-562))) (-362) (-10 -8 (-15 -4054 ($ |#4|)) (-15 -4065 (|#4| $)) (-15 -4076 (|#4| $))))) (T -461))
-((-2185 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-845)) (-4 *5 (-788)) (-4 *6 (-554)) (-4 *7 (-944 *6 *5 *3)) (-5 *1 (-461 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-1033 (-406 (-562))) (-362) (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $))))))))
-(-10 -7 (-15 -2185 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
-((-4041 (((-112) $ $) NIL)) (-1402 (((-639 |#3|) $) 41)) (-4170 (((-112) $) NIL)) (-4274 (((-112) $) NIL (|has| |#1| (-554)))) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |#3|) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-3556 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-2207 (((-112) $) NIL (|has| |#1| (-554)))) (-1920 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3852 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2539 (((-112) $) NIL (|has| |#1| (-554)))) (-3884 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-2540 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 48)) (-3961 (($ (-639 |#4|)) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-1475 (($ |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-2264 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-1955 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4402))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4402)))) (-1720 (((-639 |#4|) $) 18 (|has| $ (-6 -4402)))) (-4339 ((|#3| $) 46)) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#4|) $) 14 (|has| $ (-6 -4402)))) (-1669 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-1490 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#4| |#4|) $) 21)) (-3754 (((-639 |#3|) $) NIL)) (-2071 (((-112) |#3| $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-3725 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-1709 (((-1112) $) NIL)) (-3251 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1763 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 39)) (-4307 (($) 17)) (-1723 (((-766) |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) (((-766) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) 16)) (-4208 (((-535) $) NIL (|has| |#4| (-610 (-535)))) (($ (-639 |#4|)) 50)) (-4066 (($ (-639 |#4|)) 13)) (-1812 (($ $ |#3|) NIL)) (-3274 (($ $ |#3|) NIL)) (-1568 (($ $ |#3|) NIL)) (-4054 (((-857) $) 38) (((-639 |#4|) $) 49)) (-1744 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 30)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-462 |#1| |#2| |#3| |#4|) (-13 (-971 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4208 ($ (-639 |#4|))) (-6 -4402) (-6 -4403))) (-1044) (-788) (-845) (-1058 |#1| |#2| |#3|)) (T -462))
+((-1470 (((-52) |#2| (-1168) (-293 |#2|) (-1223 (-766))) 42) (((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-766))) 41) (((-52) |#2| (-1168) (-293 |#2|)) 35) (((-52) (-1 |#2| (-562)) (-293 |#2|)) 28)) (-1503 (((-52) |#2| (-1168) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562))) 80) (((-52) (-1 |#2| (-406 (-562))) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562))) 79) (((-52) |#2| (-1168) (-293 |#2|) (-1223 (-562))) 78) (((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-562))) 77) (((-52) |#2| (-1168) (-293 |#2|)) 72) (((-52) (-1 |#2| (-562)) (-293 |#2|)) 71)) (-1499 (((-52) |#2| (-1168) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562))) 66) (((-52) (-1 |#2| (-406 (-562))) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562))) 64)) (-1487 (((-52) |#2| (-1168) (-293 |#2|) (-1223 (-562))) 48) (((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-562))) 47)))
+(((-458 |#1| |#2|) (-10 -7 (-15 -1470 ((-52) (-1 |#2| (-562)) (-293 |#2|))) (-15 -1470 ((-52) |#2| (-1168) (-293 |#2|))) (-15 -1470 ((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-766)))) (-15 -1470 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-766)))) (-15 -1487 ((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-562)))) (-15 -1487 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-562)))) (-15 -1499 ((-52) (-1 |#2| (-406 (-562))) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))) (-15 -1499 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))) (-15 -1503 ((-52) (-1 |#2| (-562)) (-293 |#2|))) (-15 -1503 ((-52) |#2| (-1168) (-293 |#2|))) (-15 -1503 ((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-562)))) (-15 -1503 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-562)))) (-15 -1503 ((-52) (-1 |#2| (-406 (-562))) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))) (-15 -1503 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562))))) (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -458))
+((-1503 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-5 *6 (-1223 (-406 (-562)))) (-5 *7 (-406 (-562))) (-4 *3 (-13 (-27) (-1192) (-429 *8))) (-4 *8 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *8 *3)))) (-1503 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-406 (-562)))) (-5 *4 (-293 *8)) (-5 *5 (-1223 (-406 (-562)))) (-5 *6 (-406 (-562))) (-4 *8 (-13 (-27) (-1192) (-429 *7))) (-4 *7 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *7 *8)))) (-1503 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-5 *6 (-1223 (-562))) (-4 *3 (-13 (-27) (-1192) (-429 *7))) (-4 *7 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *7 *3)))) (-1503 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-562))) (-5 *4 (-293 *7)) (-5 *5 (-1223 (-562))) (-4 *7 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *6 *7)))) (-1503 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *6 *3)))) (-1503 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-562))) (-5 *4 (-293 *6)) (-4 *6 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *5 *6)))) (-1499 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-5 *6 (-1223 (-406 (-562)))) (-5 *7 (-406 (-562))) (-4 *3 (-13 (-27) (-1192) (-429 *8))) (-4 *8 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *8 *3)))) (-1499 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-406 (-562)))) (-5 *4 (-293 *8)) (-5 *5 (-1223 (-406 (-562)))) (-5 *6 (-406 (-562))) (-4 *8 (-13 (-27) (-1192) (-429 *7))) (-4 *7 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *7 *8)))) (-1487 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-5 *6 (-1223 (-562))) (-4 *3 (-13 (-27) (-1192) (-429 *7))) (-4 *7 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *7 *3)))) (-1487 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-562))) (-5 *4 (-293 *7)) (-5 *5 (-1223 (-562))) (-4 *7 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *6 *7)))) (-1470 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-5 *6 (-1223 (-766))) (-4 *3 (-13 (-27) (-1192) (-429 *7))) (-4 *7 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *7 *3)))) (-1470 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-562))) (-5 *4 (-293 *7)) (-5 *5 (-1223 (-766))) (-4 *7 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *6 *7)))) (-1470 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1168)) (-5 *5 (-293 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *6 *3)))) (-1470 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-562))) (-5 *4 (-293 *6)) (-4 *6 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-52)) (-5 *1 (-458 *5 *6)))))
+(-10 -7 (-15 -1470 ((-52) (-1 |#2| (-562)) (-293 |#2|))) (-15 -1470 ((-52) |#2| (-1168) (-293 |#2|))) (-15 -1470 ((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-766)))) (-15 -1470 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-766)))) (-15 -1487 ((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-562)))) (-15 -1487 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-562)))) (-15 -1499 ((-52) (-1 |#2| (-406 (-562))) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))) (-15 -1499 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))) (-15 -1503 ((-52) (-1 |#2| (-562)) (-293 |#2|))) (-15 -1503 ((-52) |#2| (-1168) (-293 |#2|))) (-15 -1503 ((-52) (-1 |#2| (-562)) (-293 |#2|) (-1223 (-562)))) (-15 -1503 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-562)))) (-15 -1503 ((-52) (-1 |#2| (-406 (-562))) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))) (-15 -1503 ((-52) |#2| (-1168) (-293 |#2|) (-1223 (-406 (-562))) (-406 (-562)))))
+((-3834 ((|#2| |#2| |#1|) 15)) (-2188 (((-639 |#2|) |#2| (-639 |#2|) |#1| (-916)) 68)) (-4051 (((-2 (|:| |plist| (-639 |#2|)) (|:| |modulo| |#1|)) |#2| (-639 |#2|) |#1| (-916)) 59)))
+(((-459 |#1| |#2|) (-10 -7 (-15 -4051 ((-2 (|:| |plist| (-639 |#2|)) (|:| |modulo| |#1|)) |#2| (-639 |#2|) |#1| (-916))) (-15 -2188 ((-639 |#2|) |#2| (-639 |#2|) |#1| (-916))) (-15 -3834 (|#2| |#2| |#1|))) (-306) (-1232 |#1|)) (T -459))
+((-3834 (*1 *2 *2 *3) (-12 (-4 *3 (-306)) (-5 *1 (-459 *3 *2)) (-4 *2 (-1232 *3)))) (-2188 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-639 *3)) (-5 *5 (-916)) (-4 *3 (-1232 *4)) (-4 *4 (-306)) (-5 *1 (-459 *4 *3)))) (-4051 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-916)) (-4 *5 (-306)) (-4 *3 (-1232 *5)) (-5 *2 (-2 (|:| |plist| (-639 *3)) (|:| |modulo| *5))) (-5 *1 (-459 *5 *3)) (-5 *4 (-639 *3)))))
+(-10 -7 (-15 -4051 ((-2 (|:| |plist| (-639 |#2|)) (|:| |modulo| |#1|)) |#2| (-639 |#2|) |#1| (-916))) (-15 -2188 ((-639 |#2|) |#2| (-639 |#2|) |#1| (-916))) (-15 -3834 (|#2| |#2| |#1|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 28)) (-2211 (($ |#3|) 25)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1600 (($ $) 32)) (-3512 (($ |#2| |#4| $) 33)) (-1377 (($ |#2| (-708 |#3| |#4| |#5|)) 24)) (-1560 (((-708 |#3| |#4| |#5|) $) 15)) (-2257 ((|#3| $) 19)) (-2109 ((|#4| $) 17)) (-1573 ((|#2| $) 29)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-3609 (($ |#2| |#3| |#4|) 26)) (-2285 (($) 36 T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 34)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-460 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-712 |#6|) (-712 |#2|) (-10 -8 (-15 -1573 (|#2| $)) (-15 -1560 ((-708 |#3| |#4| |#5|) $)) (-15 -2109 (|#4| $)) (-15 -2257 (|#3| $)) (-15 -1600 ($ $)) (-15 -1377 ($ |#2| (-708 |#3| |#4| |#5|))) (-15 -2211 ($ |#3|)) (-15 -3609 ($ |#2| |#3| |#4|)) (-15 -3512 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-639 (-1168)) (-171) (-845) (-237 (-3492 |#1|) (-766)) (-1 (-112) (-2 (|:| -2464 |#3|) (|:| -1300 |#4|)) (-2 (|:| -2464 |#3|) (|:| -1300 |#4|))) (-944 |#2| |#4| (-859 |#1|))) (T -460))
+((* (*1 *1 *2 *1) (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171)) (-4 *6 (-237 (-3492 *3) (-766))) (-14 *7 (-1 (-112) (-2 (|:| -2464 *5) (|:| -1300 *6)) (-2 (|:| -2464 *5) (|:| -1300 *6)))) (-5 *1 (-460 *3 *4 *5 *6 *7 *2)) (-4 *5 (-845)) (-4 *2 (-944 *4 *6 (-859 *3))))) (-1573 (*1 *2 *1) (-12 (-14 *3 (-639 (-1168))) (-4 *5 (-237 (-3492 *3) (-766))) (-14 *6 (-1 (-112) (-2 (|:| -2464 *4) (|:| -1300 *5)) (-2 (|:| -2464 *4) (|:| -1300 *5)))) (-4 *2 (-171)) (-5 *1 (-460 *3 *2 *4 *5 *6 *7)) (-4 *4 (-845)) (-4 *7 (-944 *2 *5 (-859 *3))))) (-1560 (*1 *2 *1) (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171)) (-4 *6 (-237 (-3492 *3) (-766))) (-14 *7 (-1 (-112) (-2 (|:| -2464 *5) (|:| -1300 *6)) (-2 (|:| -2464 *5) (|:| -1300 *6)))) (-5 *2 (-708 *5 *6 *7)) (-5 *1 (-460 *3 *4 *5 *6 *7 *8)) (-4 *5 (-845)) (-4 *8 (-944 *4 *6 (-859 *3))))) (-2109 (*1 *2 *1) (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171)) (-14 *6 (-1 (-112) (-2 (|:| -2464 *5) (|:| -1300 *2)) (-2 (|:| -2464 *5) (|:| -1300 *2)))) (-4 *2 (-237 (-3492 *3) (-766))) (-5 *1 (-460 *3 *4 *5 *2 *6 *7)) (-4 *5 (-845)) (-4 *7 (-944 *4 *2 (-859 *3))))) (-2257 (*1 *2 *1) (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171)) (-4 *5 (-237 (-3492 *3) (-766))) (-14 *6 (-1 (-112) (-2 (|:| -2464 *2) (|:| -1300 *5)) (-2 (|:| -2464 *2) (|:| -1300 *5)))) (-4 *2 (-845)) (-5 *1 (-460 *3 *4 *2 *5 *6 *7)) (-4 *7 (-944 *4 *5 (-859 *3))))) (-1600 (*1 *1 *1) (-12 (-14 *2 (-639 (-1168))) (-4 *3 (-171)) (-4 *5 (-237 (-3492 *2) (-766))) (-14 *6 (-1 (-112) (-2 (|:| -2464 *4) (|:| -1300 *5)) (-2 (|:| -2464 *4) (|:| -1300 *5)))) (-5 *1 (-460 *2 *3 *4 *5 *6 *7)) (-4 *4 (-845)) (-4 *7 (-944 *3 *5 (-859 *2))))) (-1377 (*1 *1 *2 *3) (-12 (-5 *3 (-708 *5 *6 *7)) (-4 *5 (-845)) (-4 *6 (-237 (-3492 *4) (-766))) (-14 *7 (-1 (-112) (-2 (|:| -2464 *5) (|:| -1300 *6)) (-2 (|:| -2464 *5) (|:| -1300 *6)))) (-14 *4 (-639 (-1168))) (-4 *2 (-171)) (-5 *1 (-460 *4 *2 *5 *6 *7 *8)) (-4 *8 (-944 *2 *6 (-859 *4))))) (-2211 (*1 *1 *2) (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171)) (-4 *5 (-237 (-3492 *3) (-766))) (-14 *6 (-1 (-112) (-2 (|:| -2464 *2) (|:| -1300 *5)) (-2 (|:| -2464 *2) (|:| -1300 *5)))) (-5 *1 (-460 *3 *4 *2 *5 *6 *7)) (-4 *2 (-845)) (-4 *7 (-944 *4 *5 (-859 *3))))) (-3609 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-639 (-1168))) (-4 *2 (-171)) (-4 *4 (-237 (-3492 *5) (-766))) (-14 *6 (-1 (-112) (-2 (|:| -2464 *3) (|:| -1300 *4)) (-2 (|:| -2464 *3) (|:| -1300 *4)))) (-5 *1 (-460 *5 *2 *3 *4 *6 *7)) (-4 *3 (-845)) (-4 *7 (-944 *2 *4 (-859 *5))))) (-3512 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-639 (-1168))) (-4 *2 (-171)) (-4 *3 (-237 (-3492 *4) (-766))) (-14 *6 (-1 (-112) (-2 (|:| -2464 *5) (|:| -1300 *3)) (-2 (|:| -2464 *5) (|:| -1300 *3)))) (-5 *1 (-460 *4 *2 *5 *3 *6 *7)) (-4 *5 (-845)) (-4 *7 (-944 *2 *3 (-859 *4))))))
+(-13 (-712 |#6|) (-712 |#2|) (-10 -8 (-15 -1573 (|#2| $)) (-15 -1560 ((-708 |#3| |#4| |#5|) $)) (-15 -2109 (|#4| $)) (-15 -2257 (|#3| $)) (-15 -1600 ($ $)) (-15 -1377 ($ |#2| (-708 |#3| |#4| |#5|))) (-15 -2211 ($ |#3|)) (-15 -3609 ($ |#2| |#3| |#4|)) (-15 -3512 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
+((-1938 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 37)))
+(((-461 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1938 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-788) (-845) (-554) (-944 |#3| |#1| |#2|) (-13 (-1033 (-406 (-562))) (-362) (-10 -8 (-15 -4053 ($ |#4|)) (-15 -4063 (|#4| $)) (-15 -4079 (|#4| $))))) (T -461))
+((-1938 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-845)) (-4 *5 (-788)) (-4 *6 (-554)) (-4 *7 (-944 *6 *5 *3)) (-5 *1 (-461 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-1033 (-406 (-562))) (-362) (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $))))))))
+(-10 -7 (-15 -1938 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
+((-4041 (((-112) $ $) NIL)) (-1401 (((-639 |#3|) $) 41)) (-2799 (((-112) $) NIL)) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |#3|) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-3556 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-2169 (((-112) $) NIL (|has| |#1| (-554)))) (-2183 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2864 (((-112) $ $) NIL (|has| |#1| (-554)))) (-4219 (((-112) $) NIL (|has| |#1| (-554)))) (-2037 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4230 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 48)) (-3960 (($ (-639 |#4|)) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-1475 (($ |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-1441 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-1954 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4403))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4403)))) (-1720 (((-639 |#4|) $) 18 (|has| $ (-6 -4403)))) (-3761 ((|#3| $) 46)) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#4|) $) 14 (|has| $ (-6 -4403)))) (-1572 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-1491 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#4| |#4|) $) 21)) (-3133 (((-639 |#3|) $) NIL)) (-3112 (((-112) |#3| $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-4123 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-1709 (((-1112) $) NIL)) (-1963 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3008 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 39)) (-1663 (($) 17)) (-1723 (((-766) |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) (((-766) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) 16)) (-4208 (((-535) $) NIL (|has| |#4| (-610 (-535)))) (($ (-639 |#4|)) 50)) (-4064 (($ (-639 |#4|)) 13)) (-2316 (($ $ |#3|) NIL)) (-2180 (($ $ |#3|) NIL)) (-1962 (($ $ |#3|) NIL)) (-4053 (((-857) $) 38) (((-639 |#4|) $) 49)) (-2879 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 30)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-462 |#1| |#2| |#3| |#4|) (-13 (-971 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4208 ($ (-639 |#4|))) (-6 -4403) (-6 -4404))) (-1044) (-788) (-845) (-1058 |#1| |#2| |#3|)) (T -462))
((-4208 (*1 *1 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-462 *3 *4 *5 *6)))))
-(-13 (-971 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4208 ($ (-639 |#4|))) (-6 -4402) (-6 -4403)))
-((-2286 (($) 11)) (-2294 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
-(((-463 |#1| |#2| |#3|) (-10 -8 (-15 -2294 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2286 (|#1|))) (-464 |#2| |#3|) (-171) (-23)) (T -463))
+(-13 (-971 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4208 ($ (-639 |#4|))) (-6 -4403) (-6 -4404)))
+((-2285 (($) 11)) (-2294 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
+(((-463 |#1| |#2| |#3|) (-10 -8 (-15 -2294 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2285 (|#1|))) (-464 |#2| |#3|) (-171) (-23)) (T -463))
NIL
-(-10 -8 (-15 -2294 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2286 (|#1|)))
-((-4041 (((-112) $ $) 7)) (-4048 (((-3 |#1| "failed") $) 26)) (-3961 ((|#1| $) 27)) (-1397 (($ $ $) 23)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-3598 ((|#2| $) 19)) (-4054 (((-857) $) 11) (($ |#1|) 25)) (-2286 (($) 18 T CONST)) (-2294 (($) 24 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 15) (($ $ $) 13)) (-1835 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
+(-10 -8 (-15 -2294 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2285 (|#1|)))
+((-4041 (((-112) $ $) 7)) (-4048 (((-3 |#1| "failed") $) 26)) (-3960 ((|#1| $) 27)) (-3912 (($ $ $) 23)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2250 ((|#2| $) 19)) (-4053 (((-857) $) 11) (($ |#1|) 25)) (-2285 (($) 18 T CONST)) (-2294 (($) 24 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 15) (($ $ $) 13)) (-1836 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
(((-464 |#1| |#2|) (-139) (-171) (-23)) (T -464))
-((-2294 (*1 *1) (-12 (-4 *1 (-464 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))) (-1397 (*1 *1 *1 *1) (-12 (-4 *1 (-464 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))))
-(-13 (-469 |t#1| |t#2|) (-1033 |t#1|) (-10 -8 (-15 (-2294) ($) -1497) (-15 -1397 ($ $ $))))
+((-2294 (*1 *1) (-12 (-4 *1 (-464 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))) (-3912 (*1 *1 *1 *1) (-12 (-4 *1 (-464 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))))
+(-13 (-469 |t#1| |t#2|) (-1033 |t#1|) (-10 -8 (-15 (-2294) ($) -1497) (-15 -3912 ($ $ $))))
(((-102) . T) ((-612 |#1|) . T) ((-609 (-857)) . T) ((-469 |#1| |#2|) . T) ((-1033 |#1|) . T) ((-1092) . T))
-((-3733 (((-1256 (-1256 (-562))) (-1256 (-1256 (-562))) (-916)) 18)) (-3475 (((-1256 (-1256 (-562))) (-916)) 16)))
-(((-465) (-10 -7 (-15 -3733 ((-1256 (-1256 (-562))) (-1256 (-1256 (-562))) (-916))) (-15 -3475 ((-1256 (-1256 (-562))) (-916))))) (T -465))
-((-3475 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1256 (-1256 (-562)))) (-5 *1 (-465)))) (-3733 (*1 *2 *2 *3) (-12 (-5 *2 (-1256 (-1256 (-562)))) (-5 *3 (-916)) (-5 *1 (-465)))))
-(-10 -7 (-15 -3733 ((-1256 (-1256 (-562))) (-1256 (-1256 (-562))) (-916))) (-15 -3475 ((-1256 (-1256 (-562))) (-916))))
-((-4010 (((-562) (-562)) 30) (((-562)) 22)) (-1990 (((-562) (-562)) 26) (((-562)) 18)) (-3559 (((-562) (-562)) 28) (((-562)) 20)) (-3741 (((-112) (-112)) 12) (((-112)) 10)) (-2182 (((-112) (-112)) 11) (((-112)) 9)) (-3470 (((-112) (-112)) 24) (((-112)) 15)))
-(((-466) (-10 -7 (-15 -2182 ((-112))) (-15 -3741 ((-112))) (-15 -2182 ((-112) (-112))) (-15 -3741 ((-112) (-112))) (-15 -3470 ((-112))) (-15 -3559 ((-562))) (-15 -1990 ((-562))) (-15 -4010 ((-562))) (-15 -3470 ((-112) (-112))) (-15 -3559 ((-562) (-562))) (-15 -1990 ((-562) (-562))) (-15 -4010 ((-562) (-562))))) (T -466))
-((-4010 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466)))) (-1990 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466)))) (-3559 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466)))) (-3470 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))) (-4010 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466)))) (-1990 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466)))) (-3559 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466)))) (-3470 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))) (-3741 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))) (-2182 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))) (-3741 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))) (-2182 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))))
-(-10 -7 (-15 -2182 ((-112))) (-15 -3741 ((-112))) (-15 -2182 ((-112) (-112))) (-15 -3741 ((-112) (-112))) (-15 -3470 ((-112))) (-15 -3559 ((-562))) (-15 -1990 ((-562))) (-15 -4010 ((-562))) (-15 -3470 ((-112) (-112))) (-15 -3559 ((-562) (-562))) (-15 -1990 ((-562) (-562))) (-15 -4010 ((-562) (-562))))
-((-4041 (((-112) $ $) NIL)) (-3426 (((-639 (-378)) $) 28) (((-639 (-378)) $ (-639 (-378))) 94)) (-3545 (((-639 (-1086 (-378))) $) 16) (((-639 (-1086 (-378))) $ (-639 (-1086 (-378)))) 91)) (-3814 (((-639 (-639 (-938 (-224)))) (-639 (-639 (-938 (-224)))) (-639 (-869))) 44)) (-3244 (((-639 (-639 (-938 (-224)))) $) 87)) (-1460 (((-1261) $ (-938 (-224)) (-869)) 106)) (-3478 (($ $) 86) (($ (-639 (-639 (-938 (-224))))) 97) (($ (-639 (-639 (-938 (-224)))) (-639 (-869)) (-639 (-869)) (-639 (-916))) 96) (($ (-639 (-639 (-938 (-224)))) (-639 (-869)) (-639 (-869)) (-639 (-916)) (-639 (-262))) 98)) (-2913 (((-1150) $) NIL)) (-2320 (((-562) $) 68)) (-1709 (((-1112) $) NIL)) (-2029 (($) 95)) (-3062 (((-639 (-224)) (-639 (-639 (-938 (-224))))) 54)) (-2079 (((-1261) $ (-639 (-938 (-224))) (-869) (-869) (-916)) 100) (((-1261) $ (-938 (-224))) 102) (((-1261) $ (-938 (-224)) (-869) (-869) (-916)) 101)) (-4054 (((-857) $) 112) (($ (-639 (-639 (-938 (-224))))) 107)) (-2342 (((-1261) $ (-938 (-224))) 105)) (-1731 (((-112) $ $) NIL)))
-(((-467) (-13 (-1092) (-10 -8 (-15 -2029 ($)) (-15 -3478 ($ $)) (-15 -3478 ($ (-639 (-639 (-938 (-224)))))) (-15 -3478 ($ (-639 (-639 (-938 (-224)))) (-639 (-869)) (-639 (-869)) (-639 (-916)))) (-15 -3478 ($ (-639 (-639 (-938 (-224)))) (-639 (-869)) (-639 (-869)) (-639 (-916)) (-639 (-262)))) (-15 -3244 ((-639 (-639 (-938 (-224)))) $)) (-15 -2320 ((-562) $)) (-15 -3545 ((-639 (-1086 (-378))) $)) (-15 -3545 ((-639 (-1086 (-378))) $ (-639 (-1086 (-378))))) (-15 -3426 ((-639 (-378)) $)) (-15 -3426 ((-639 (-378)) $ (-639 (-378)))) (-15 -2079 ((-1261) $ (-639 (-938 (-224))) (-869) (-869) (-916))) (-15 -2079 ((-1261) $ (-938 (-224)))) (-15 -2079 ((-1261) $ (-938 (-224)) (-869) (-869) (-916))) (-15 -2342 ((-1261) $ (-938 (-224)))) (-15 -1460 ((-1261) $ (-938 (-224)) (-869))) (-15 -4054 ($ (-639 (-639 (-938 (-224)))))) (-15 -4054 ((-857) $)) (-15 -3814 ((-639 (-639 (-938 (-224)))) (-639 (-639 (-938 (-224)))) (-639 (-869)))) (-15 -3062 ((-639 (-224)) (-639 (-639 (-938 (-224))))))))) (T -467))
-((-4054 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-467)))) (-2029 (*1 *1) (-5 *1 (-467))) (-3478 (*1 *1 *1) (-5 *1 (-467))) (-3478 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-467)))) (-3478 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *3 (-639 (-869))) (-5 *4 (-639 (-916))) (-5 *1 (-467)))) (-3478 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *3 (-639 (-869))) (-5 *4 (-639 (-916))) (-5 *5 (-639 (-262))) (-5 *1 (-467)))) (-3244 (*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-467)))) (-2320 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-467)))) (-3545 (*1 *2 *1) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-467)))) (-3545 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-467)))) (-3426 (*1 *2 *1) (-12 (-5 *2 (-639 (-378))) (-5 *1 (-467)))) (-3426 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-378))) (-5 *1 (-467)))) (-2079 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-639 (-938 (-224)))) (-5 *4 (-869)) (-5 *5 (-916)) (-5 *2 (-1261)) (-5 *1 (-467)))) (-2079 (*1 *2 *1 *3) (-12 (-5 *3 (-938 (-224))) (-5 *2 (-1261)) (-5 *1 (-467)))) (-2079 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-938 (-224))) (-5 *4 (-869)) (-5 *5 (-916)) (-5 *2 (-1261)) (-5 *1 (-467)))) (-2342 (*1 *2 *1 *3) (-12 (-5 *3 (-938 (-224))) (-5 *2 (-1261)) (-5 *1 (-467)))) (-1460 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-938 (-224))) (-5 *4 (-869)) (-5 *2 (-1261)) (-5 *1 (-467)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-467)))) (-3814 (*1 *2 *2 *3) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *3 (-639 (-869))) (-5 *1 (-467)))) (-3062 (*1 *2 *3) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *2 (-639 (-224))) (-5 *1 (-467)))))
-(-13 (-1092) (-10 -8 (-15 -2029 ($)) (-15 -3478 ($ $)) (-15 -3478 ($ (-639 (-639 (-938 (-224)))))) (-15 -3478 ($ (-639 (-639 (-938 (-224)))) (-639 (-869)) (-639 (-869)) (-639 (-916)))) (-15 -3478 ($ (-639 (-639 (-938 (-224)))) (-639 (-869)) (-639 (-869)) (-639 (-916)) (-639 (-262)))) (-15 -3244 ((-639 (-639 (-938 (-224)))) $)) (-15 -2320 ((-562) $)) (-15 -3545 ((-639 (-1086 (-378))) $)) (-15 -3545 ((-639 (-1086 (-378))) $ (-639 (-1086 (-378))))) (-15 -3426 ((-639 (-378)) $)) (-15 -3426 ((-639 (-378)) $ (-639 (-378)))) (-15 -2079 ((-1261) $ (-639 (-938 (-224))) (-869) (-869) (-916))) (-15 -2079 ((-1261) $ (-938 (-224)))) (-15 -2079 ((-1261) $ (-938 (-224)) (-869) (-869) (-916))) (-15 -2342 ((-1261) $ (-938 (-224)))) (-15 -1460 ((-1261) $ (-938 (-224)) (-869))) (-15 -4054 ($ (-639 (-639 (-938 (-224)))))) (-15 -4054 ((-857) $)) (-15 -3814 ((-639 (-639 (-938 (-224)))) (-639 (-639 (-938 (-224)))) (-639 (-869)))) (-15 -3062 ((-639 (-224)) (-639 (-639 (-938 (-224))))))))
-((-1848 (($ $) NIL) (($ $ $) 11)))
-(((-468 |#1| |#2| |#3|) (-10 -8 (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|))) (-469 |#2| |#3|) (-171) (-23)) (T -468))
-NIL
-(-10 -8 (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-3598 ((|#2| $) 19)) (-4054 (((-857) $) 11)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 15) (($ $ $) 13)) (-1835 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
+((-2954 (((-1256 (-1256 (-562))) (-1256 (-1256 (-562))) (-916)) 18)) (-3418 (((-1256 (-1256 (-562))) (-916)) 16)))
+(((-465) (-10 -7 (-15 -2954 ((-1256 (-1256 (-562))) (-1256 (-1256 (-562))) (-916))) (-15 -3418 ((-1256 (-1256 (-562))) (-916))))) (T -465))
+((-3418 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1256 (-1256 (-562)))) (-5 *1 (-465)))) (-2954 (*1 *2 *2 *3) (-12 (-5 *2 (-1256 (-1256 (-562)))) (-5 *3 (-916)) (-5 *1 (-465)))))
+(-10 -7 (-15 -2954 ((-1256 (-1256 (-562))) (-1256 (-1256 (-562))) (-916))) (-15 -3418 ((-1256 (-1256 (-562))) (-916))))
+((-3822 (((-562) (-562)) 30) (((-562)) 22)) (-1626 (((-562) (-562)) 26) (((-562)) 18)) (-1885 (((-562) (-562)) 28) (((-562)) 20)) (-3016 (((-112) (-112)) 12) (((-112)) 10)) (-1901 (((-112) (-112)) 11) (((-112)) 9)) (-3376 (((-112) (-112)) 24) (((-112)) 15)))
+(((-466) (-10 -7 (-15 -1901 ((-112))) (-15 -3016 ((-112))) (-15 -1901 ((-112) (-112))) (-15 -3016 ((-112) (-112))) (-15 -3376 ((-112))) (-15 -1885 ((-562))) (-15 -1626 ((-562))) (-15 -3822 ((-562))) (-15 -3376 ((-112) (-112))) (-15 -1885 ((-562) (-562))) (-15 -1626 ((-562) (-562))) (-15 -3822 ((-562) (-562))))) (T -466))
+((-3822 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466)))) (-1626 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466)))) (-1885 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466)))) (-3376 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))) (-3822 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466)))) (-1626 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466)))) (-1885 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466)))) (-3376 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))) (-3016 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))) (-1901 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))) (-3016 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))) (-1901 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))))
+(-10 -7 (-15 -1901 ((-112))) (-15 -3016 ((-112))) (-15 -1901 ((-112) (-112))) (-15 -3016 ((-112) (-112))) (-15 -3376 ((-112))) (-15 -1885 ((-562))) (-15 -1626 ((-562))) (-15 -3822 ((-562))) (-15 -3376 ((-112) (-112))) (-15 -1885 ((-562) (-562))) (-15 -1626 ((-562) (-562))) (-15 -3822 ((-562) (-562))))
+((-4041 (((-112) $ $) NIL)) (-3426 (((-639 (-378)) $) 28) (((-639 (-378)) $ (-639 (-378))) 94)) (-1732 (((-639 (-1086 (-378))) $) 16) (((-639 (-1086 (-378))) $ (-639 (-1086 (-378)))) 91)) (-2541 (((-639 (-639 (-938 (-224)))) (-639 (-639 (-938 (-224)))) (-639 (-869))) 44)) (-1877 (((-639 (-639 (-938 (-224)))) $) 87)) (-1460 (((-1261) $ (-938 (-224)) (-869)) 106)) (-3448 (($ $) 86) (($ (-639 (-639 (-938 (-224))))) 97) (($ (-639 (-639 (-938 (-224)))) (-639 (-869)) (-639 (-869)) (-639 (-916))) 96) (($ (-639 (-639 (-938 (-224)))) (-639 (-869)) (-639 (-869)) (-639 (-916)) (-639 (-262))) 98)) (-3696 (((-1150) $) NIL)) (-2319 (((-562) $) 68)) (-1709 (((-1112) $) NIL)) (-3883 (($) 95)) (-3744 (((-639 (-224)) (-639 (-639 (-938 (-224))))) 54)) (-3191 (((-1261) $ (-639 (-938 (-224))) (-869) (-869) (-916)) 100) (((-1261) $ (-938 (-224))) 102) (((-1261) $ (-938 (-224)) (-869) (-869) (-916)) 101)) (-4053 (((-857) $) 112) (($ (-639 (-639 (-938 (-224))))) 107)) (-4070 (((-1261) $ (-938 (-224))) 105)) (-1733 (((-112) $ $) NIL)))
+(((-467) (-13 (-1092) (-10 -8 (-15 -3883 ($)) (-15 -3448 ($ $)) (-15 -3448 ($ (-639 (-639 (-938 (-224)))))) (-15 -3448 ($ (-639 (-639 (-938 (-224)))) (-639 (-869)) (-639 (-869)) (-639 (-916)))) (-15 -3448 ($ (-639 (-639 (-938 (-224)))) (-639 (-869)) (-639 (-869)) (-639 (-916)) (-639 (-262)))) (-15 -1877 ((-639 (-639 (-938 (-224)))) $)) (-15 -2319 ((-562) $)) (-15 -1732 ((-639 (-1086 (-378))) $)) (-15 -1732 ((-639 (-1086 (-378))) $ (-639 (-1086 (-378))))) (-15 -3426 ((-639 (-378)) $)) (-15 -3426 ((-639 (-378)) $ (-639 (-378)))) (-15 -3191 ((-1261) $ (-639 (-938 (-224))) (-869) (-869) (-916))) (-15 -3191 ((-1261) $ (-938 (-224)))) (-15 -3191 ((-1261) $ (-938 (-224)) (-869) (-869) (-916))) (-15 -4070 ((-1261) $ (-938 (-224)))) (-15 -1460 ((-1261) $ (-938 (-224)) (-869))) (-15 -4053 ($ (-639 (-639 (-938 (-224)))))) (-15 -4053 ((-857) $)) (-15 -2541 ((-639 (-639 (-938 (-224)))) (-639 (-639 (-938 (-224)))) (-639 (-869)))) (-15 -3744 ((-639 (-224)) (-639 (-639 (-938 (-224))))))))) (T -467))
+((-4053 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-467)))) (-3883 (*1 *1) (-5 *1 (-467))) (-3448 (*1 *1 *1) (-5 *1 (-467))) (-3448 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-467)))) (-3448 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *3 (-639 (-869))) (-5 *4 (-639 (-916))) (-5 *1 (-467)))) (-3448 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *3 (-639 (-869))) (-5 *4 (-639 (-916))) (-5 *5 (-639 (-262))) (-5 *1 (-467)))) (-1877 (*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-467)))) (-2319 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-467)))) (-1732 (*1 *2 *1) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-467)))) (-1732 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-467)))) (-3426 (*1 *2 *1) (-12 (-5 *2 (-639 (-378))) (-5 *1 (-467)))) (-3426 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-378))) (-5 *1 (-467)))) (-3191 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-639 (-938 (-224)))) (-5 *4 (-869)) (-5 *5 (-916)) (-5 *2 (-1261)) (-5 *1 (-467)))) (-3191 (*1 *2 *1 *3) (-12 (-5 *3 (-938 (-224))) (-5 *2 (-1261)) (-5 *1 (-467)))) (-3191 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-938 (-224))) (-5 *4 (-869)) (-5 *5 (-916)) (-5 *2 (-1261)) (-5 *1 (-467)))) (-4070 (*1 *2 *1 *3) (-12 (-5 *3 (-938 (-224))) (-5 *2 (-1261)) (-5 *1 (-467)))) (-1460 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-938 (-224))) (-5 *4 (-869)) (-5 *2 (-1261)) (-5 *1 (-467)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-467)))) (-2541 (*1 *2 *2 *3) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *3 (-639 (-869))) (-5 *1 (-467)))) (-3744 (*1 *2 *3) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *2 (-639 (-224))) (-5 *1 (-467)))))
+(-13 (-1092) (-10 -8 (-15 -3883 ($)) (-15 -3448 ($ $)) (-15 -3448 ($ (-639 (-639 (-938 (-224)))))) (-15 -3448 ($ (-639 (-639 (-938 (-224)))) (-639 (-869)) (-639 (-869)) (-639 (-916)))) (-15 -3448 ($ (-639 (-639 (-938 (-224)))) (-639 (-869)) (-639 (-869)) (-639 (-916)) (-639 (-262)))) (-15 -1877 ((-639 (-639 (-938 (-224)))) $)) (-15 -2319 ((-562) $)) (-15 -1732 ((-639 (-1086 (-378))) $)) (-15 -1732 ((-639 (-1086 (-378))) $ (-639 (-1086 (-378))))) (-15 -3426 ((-639 (-378)) $)) (-15 -3426 ((-639 (-378)) $ (-639 (-378)))) (-15 -3191 ((-1261) $ (-639 (-938 (-224))) (-869) (-869) (-916))) (-15 -3191 ((-1261) $ (-938 (-224)))) (-15 -3191 ((-1261) $ (-938 (-224)) (-869) (-869) (-916))) (-15 -4070 ((-1261) $ (-938 (-224)))) (-15 -1460 ((-1261) $ (-938 (-224)) (-869))) (-15 -4053 ($ (-639 (-639 (-938 (-224)))))) (-15 -4053 ((-857) $)) (-15 -2541 ((-639 (-639 (-938 (-224)))) (-639 (-639 (-938 (-224)))) (-639 (-869)))) (-15 -3744 ((-639 (-224)) (-639 (-639 (-938 (-224))))))))
+((-1847 (($ $) NIL) (($ $ $) 11)))
+(((-468 |#1| |#2| |#3|) (-10 -8 (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|))) (-469 |#2| |#3|) (-171) (-23)) (T -468))
+NIL
+(-10 -8 (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2250 ((|#2| $) 19)) (-4053 (((-857) $) 11)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 15) (($ $ $) 13)) (-1836 (($ $ $) 14)) (* (($ |#1| $) 17) (($ $ |#1|) 16)))
(((-469 |#1| |#2|) (-139) (-171) (-23)) (T -469))
-((-3598 (*1 *2 *1) (-12 (-4 *1 (-469 *3 *2)) (-4 *3 (-171)) (-4 *2 (-23)))) (-2286 (*1 *1) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))) (-1848 (*1 *1 *1) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))) (-1835 (*1 *1 *1 *1) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))) (-1848 (*1 *1 *1 *1) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))))
-(-13 (-1092) (-10 -8 (-15 -3598 (|t#2| $)) (-15 (-2286) ($) -1497) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -1848 ($ $)) (-15 -1835 ($ $ $)) (-15 -1848 ($ $ $))))
+((-2250 (*1 *2 *1) (-12 (-4 *1 (-469 *3 *2)) (-4 *3 (-171)) (-4 *2 (-23)))) (-2285 (*1 *1) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))) (-1847 (*1 *1 *1) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))) (-1836 (*1 *1 *1 *1) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))) (-1847 (*1 *1 *1 *1) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23)))))
+(-13 (-1092) (-10 -8 (-15 -2250 (|t#2| $)) (-15 (-2285) ($) -1497) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -1847 ($ $)) (-15 -1836 ($ $ $)) (-15 -1847 ($ $ $))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-3194 (((-3 (-639 (-480 |#1| |#2|)) "failed") (-639 (-480 |#1| |#2|)) (-639 (-859 |#1|))) 91)) (-1706 (((-639 (-639 (-246 |#1| |#2|))) (-639 (-246 |#1| |#2|)) (-639 (-859 |#1|))) 89)) (-2888 (((-2 (|:| |dpolys| (-639 (-246 |#1| |#2|))) (|:| |coords| (-639 (-562)))) (-639 (-246 |#1| |#2|)) (-639 (-859 |#1|))) 61)))
-(((-470 |#1| |#2| |#3|) (-10 -7 (-15 -1706 ((-639 (-639 (-246 |#1| |#2|))) (-639 (-246 |#1| |#2|)) (-639 (-859 |#1|)))) (-15 -3194 ((-3 (-639 (-480 |#1| |#2|)) "failed") (-639 (-480 |#1| |#2|)) (-639 (-859 |#1|)))) (-15 -2888 ((-2 (|:| |dpolys| (-639 (-246 |#1| |#2|))) (|:| |coords| (-639 (-562)))) (-639 (-246 |#1| |#2|)) (-639 (-859 |#1|))))) (-639 (-1168)) (-451) (-451)) (T -470))
-((-2888 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-859 *5))) (-14 *5 (-639 (-1168))) (-4 *6 (-451)) (-5 *2 (-2 (|:| |dpolys| (-639 (-246 *5 *6))) (|:| |coords| (-639 (-562))))) (-5 *1 (-470 *5 *6 *7)) (-5 *3 (-639 (-246 *5 *6))) (-4 *7 (-451)))) (-3194 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-480 *4 *5))) (-5 *3 (-639 (-859 *4))) (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *1 (-470 *4 *5 *6)) (-4 *6 (-451)))) (-1706 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-859 *5))) (-14 *5 (-639 (-1168))) (-4 *6 (-451)) (-5 *2 (-639 (-639 (-246 *5 *6)))) (-5 *1 (-470 *5 *6 *7)) (-5 *3 (-639 (-246 *5 *6))) (-4 *7 (-451)))))
-(-10 -7 (-15 -1706 ((-639 (-639 (-246 |#1| |#2|))) (-639 (-246 |#1| |#2|)) (-639 (-859 |#1|)))) (-15 -3194 ((-3 (-639 (-480 |#1| |#2|)) "failed") (-639 (-480 |#1| |#2|)) (-639 (-859 |#1|)))) (-15 -2888 ((-2 (|:| |dpolys| (-639 (-246 |#1| |#2|))) (|:| |coords| (-639 (-562)))) (-639 (-246 |#1| |#2|)) (-639 (-859 |#1|)))))
-((-3668 (((-3 $ "failed") $) 11)) (-3665 (($ $ $) 18)) (-1911 (($ $ $) 19)) (-1859 (($ $ $) 9)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 17)))
-(((-471 |#1|) (-10 -8 (-15 -1911 (|#1| |#1| |#1|)) (-15 -3665 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 -1859 (|#1| |#1| |#1|)) (-15 -3668 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916)))) (-472)) (T -471))
-NIL
-(-10 -8 (-15 -1911 (|#1| |#1| |#1|)) (-15 -3665 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 -1859 (|#1| |#1| |#1|)) (-15 -3668 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916))))
-((-4041 (((-112) $ $) 7)) (-1800 (($) 18 T CONST)) (-3668 (((-3 $ "failed") $) 15)) (-1957 (((-112) $) 17)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 24)) (-1709 (((-1112) $) 10)) (-3665 (($ $ $) 21)) (-1911 (($ $ $) 20)) (-4054 (((-857) $) 11)) (-2294 (($) 19 T CONST)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ $) 23)) (** (($ $ (-916)) 13) (($ $ (-766)) 16) (($ $ (-562)) 22)) (* (($ $ $) 14)))
+((-2609 (((-3 (-639 (-480 |#1| |#2|)) "failed") (-639 (-480 |#1| |#2|)) (-639 (-859 |#1|))) 91)) (-3750 (((-639 (-639 (-246 |#1| |#2|))) (-639 (-246 |#1| |#2|)) (-639 (-859 |#1|))) 89)) (-1621 (((-2 (|:| |dpolys| (-639 (-246 |#1| |#2|))) (|:| |coords| (-639 (-562)))) (-639 (-246 |#1| |#2|)) (-639 (-859 |#1|))) 61)))
+(((-470 |#1| |#2| |#3|) (-10 -7 (-15 -3750 ((-639 (-639 (-246 |#1| |#2|))) (-639 (-246 |#1| |#2|)) (-639 (-859 |#1|)))) (-15 -2609 ((-3 (-639 (-480 |#1| |#2|)) "failed") (-639 (-480 |#1| |#2|)) (-639 (-859 |#1|)))) (-15 -1621 ((-2 (|:| |dpolys| (-639 (-246 |#1| |#2|))) (|:| |coords| (-639 (-562)))) (-639 (-246 |#1| |#2|)) (-639 (-859 |#1|))))) (-639 (-1168)) (-451) (-451)) (T -470))
+((-1621 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-859 *5))) (-14 *5 (-639 (-1168))) (-4 *6 (-451)) (-5 *2 (-2 (|:| |dpolys| (-639 (-246 *5 *6))) (|:| |coords| (-639 (-562))))) (-5 *1 (-470 *5 *6 *7)) (-5 *3 (-639 (-246 *5 *6))) (-4 *7 (-451)))) (-2609 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-480 *4 *5))) (-5 *3 (-639 (-859 *4))) (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *1 (-470 *4 *5 *6)) (-4 *6 (-451)))) (-3750 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-859 *5))) (-14 *5 (-639 (-1168))) (-4 *6 (-451)) (-5 *2 (-639 (-639 (-246 *5 *6)))) (-5 *1 (-470 *5 *6 *7)) (-5 *3 (-639 (-246 *5 *6))) (-4 *7 (-451)))))
+(-10 -7 (-15 -3750 ((-639 (-639 (-246 |#1| |#2|))) (-639 (-246 |#1| |#2|)) (-639 (-859 |#1|)))) (-15 -2609 ((-3 (-639 (-480 |#1| |#2|)) "failed") (-639 (-480 |#1| |#2|)) (-639 (-859 |#1|)))) (-15 -1621 ((-2 (|:| |dpolys| (-639 (-246 |#1| |#2|))) (|:| |coords| (-639 (-562)))) (-639 (-246 |#1| |#2|)) (-639 (-859 |#1|)))))
+((-1694 (((-3 $ "failed") $) 11)) (-1660 (($ $ $) 18)) (-2114 (($ $ $) 19)) (-1859 (($ $ $) 9)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 17)))
+(((-471 |#1|) (-10 -8 (-15 -2114 (|#1| |#1| |#1|)) (-15 -1660 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 -1859 (|#1| |#1| |#1|)) (-15 -1694 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916)))) (-472)) (T -471))
+NIL
+(-10 -8 (-15 -2114 (|#1| |#1| |#1|)) (-15 -1660 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 -1859 (|#1| |#1| |#1|)) (-15 -1694 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916))))
+((-4041 (((-112) $ $) 7)) (-3329 (($) 18 T CONST)) (-1694 (((-3 $ "failed") $) 15)) (-4367 (((-112) $) 17)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 24)) (-1709 (((-1112) $) 10)) (-1660 (($ $ $) 21)) (-2114 (($ $ $) 20)) (-4053 (((-857) $) 11)) (-2294 (($) 19 T CONST)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ $) 23)) (** (($ $ (-916)) 13) (($ $ (-766)) 16) (($ $ (-562)) 22)) (* (($ $ $) 14)))
(((-472) (-139)) (T -472))
-((-1525 (*1 *1 *1) (-4 *1 (-472))) (-1859 (*1 *1 *1 *1) (-4 *1 (-472))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-472)) (-5 *2 (-562)))) (-3665 (*1 *1 *1 *1) (-4 *1 (-472))) (-1911 (*1 *1 *1 *1) (-4 *1 (-472))))
-(-13 (-721) (-10 -8 (-15 -1525 ($ $)) (-15 -1859 ($ $ $)) (-15 ** ($ $ (-562))) (-6 -4399) (-15 -3665 ($ $ $)) (-15 -1911 ($ $ $))))
+((-1525 (*1 *1 *1) (-4 *1 (-472))) (-1859 (*1 *1 *1 *1) (-4 *1 (-472))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-472)) (-5 *2 (-562)))) (-1660 (*1 *1 *1 *1) (-4 *1 (-472))) (-2114 (*1 *1 *1 *1) (-4 *1 (-472))))
+(-13 (-721) (-10 -8 (-15 -1525 ($ $)) (-15 -1859 ($ $ $)) (-15 ** ($ $ (-562))) (-6 -4400) (-15 -1660 ($ $ $)) (-15 -2114 ($ $ $))))
(((-102) . T) ((-609 (-857)) . T) ((-721) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1402 (((-639 (-1074)) $) NIL)) (-2444 (((-1168) $) 17)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-2557 (($ $ (-406 (-562))) NIL) (($ $ (-406 (-562)) (-406 (-562))) NIL)) (-1938 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) NIL)) (-2988 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL (|has| |#1| (-362)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1643 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4207 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) NIL)) (-3014 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) NIL T CONST)) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-2717 (((-112) $) NIL (|has| |#1| (-362)))) (-1756 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-406 (-562)) $) NIL) (((-406 (-562)) $ (-406 (-562))) NIL)) (-1957 (((-112) $) NIL)) (-1891 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3374 (($ $ (-916)) NIL) (($ $ (-406 (-562))) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-406 (-562))) NIL) (($ $ (-1074) (-406 (-562))) NIL) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) 22)) (-4365 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-2667 (($ $) 26 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 33 (-4037 (-12 (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 27 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1353 (($ $ (-406 (-562))) NIL)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-1577 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) NIL) (($ $ $) NIL (|has| (-406 (-562)) (-1104)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) 25 (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 13 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $ (-1252 |#2|)) 15)) (-3598 (((-406 (-562)) $) NIL)) (-3023 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ (-1252 |#2|)) NIL) (($ (-1241 |#1| |#2| |#3|)) 9) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554)))) (-3906 ((|#1| $ (-406 (-562))) NIL)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-2328 ((|#1| $) 18)) (-3055 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) 24)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 23) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
-(((-473 |#1| |#2| |#3|) (-13 (-1237 |#1|) (-10 -8 (-15 -4054 ($ (-1252 |#2|))) (-15 -4054 ($ (-1241 |#1| |#2| |#3|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -473))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-473 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-1241 *3 *4 *5)) (-4 *3 (-1044)) (-14 *4 (-1168)) (-14 *5 *3) (-5 *1 (-473 *3 *4 *5)))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-473 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-2667 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-473 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
-(-13 (-1237 |#1|) (-10 -8 (-15 -4054 ($ (-1252 |#2|))) (-15 -4054 ($ (-1241 |#1| |#2| |#3|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|)))
-((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-3052 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#2| $ |#1| |#2|) 18)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1472 (((-3 |#2| "failed") |#1| $) 19)) (-1800 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-4000 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-3 |#2| "failed") |#1| $) 16)) (-1475 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#2| $ |#1|) NIL)) (-1720 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 ((|#1| $) NIL (|has| |#1| (-845)))) (-1912 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-3874 ((|#1| $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4403))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1520 (((-639 |#1|) $) NIL)) (-4265 (((-112) |#1| $) NIL)) (-3262 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-4300 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-2093 (((-639 |#1|) $) NIL)) (-1570 (((-112) |#1| $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845)))) (-3251 (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL)) (-2716 (($ $ |#2|) NIL (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-2411 (((-639 |#2|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-3564 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-4054 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-1932 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1401 (((-639 (-1074)) $) NIL)) (-2443 (((-1168) $) 17)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1302 (($ $ (-406 (-562))) NIL) (($ $ (-406 (-562)) (-406 (-562))) NIL)) (-4196 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) NIL)) (-2987 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL (|has| |#1| (-362)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1644 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4206 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) NIL)) (-3013 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) NIL T CONST)) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-3521 (((-112) $) NIL (|has| |#1| (-362)))) (-2965 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-406 (-562)) $) NIL) (((-406 (-562)) $ (-406 (-562))) NIL)) (-4367 (((-112) $) NIL)) (-1895 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3662 (($ $ (-916)) NIL) (($ $ (-406 (-562))) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-406 (-562))) NIL) (($ $ (-1074) (-406 (-562))) NIL) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) 22)) (-4366 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-3081 (($ $) 26 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 33 (-4037 (-12 (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 27 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-4316 (($ $ (-406 (-562))) NIL)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-2044 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) NIL) (($ $ $) NIL (|has| (-406 (-562)) (-1104)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) 25 (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 13 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $ (-1252 |#2|)) 15)) (-2250 (((-406 (-562)) $) NIL)) (-3022 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ (-1252 |#2|)) NIL) (($ (-1241 |#1| |#2| |#3|)) 9) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554)))) (-2266 ((|#1| $ (-406 (-562))) NIL)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-2328 ((|#1| $) 18)) (-3054 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) 24)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 23) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+(((-473 |#1| |#2| |#3|) (-13 (-1237 |#1|) (-10 -8 (-15 -4053 ($ (-1252 |#2|))) (-15 -4053 ($ (-1241 |#1| |#2| |#3|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -473))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-473 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-1241 *3 *4 *5)) (-4 *3 (-1044)) (-14 *4 (-1168)) (-14 *5 *3) (-5 *1 (-473 *3 *4 *5)))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-473 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-3081 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-473 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
+(-13 (-1237 |#1|) (-10 -8 (-15 -4053 ($ (-1252 |#2|))) (-15 -4053 ($ (-1241 |#1| |#2| |#3|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|)))
+((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-3655 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#2| $ |#1| |#2|) 18)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1472 (((-3 |#2| "failed") |#1| $) 19)) (-3329 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-3729 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-3 |#2| "failed") |#1| $) 16)) (-1475 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#2| $ |#1|) NIL)) (-1720 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 ((|#1| $) NIL (|has| |#1| (-845)))) (-2123 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-1929 ((|#1| $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4404))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1521 (((-639 |#1|) $) NIL)) (-4278 (((-112) |#1| $) NIL)) (-2078 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-1581 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3336 (((-639 |#1|) $) NIL)) (-1987 (((-112) |#1| $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845)))) (-1963 (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL)) (-3510 (($ $ |#2|) NIL (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-2366 (((-639 |#2|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-1932 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-4053 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-4131 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-474 |#1| |#2| |#3| |#4|) (-1183 |#1| |#2|) (-1092) (-1092) (-1183 |#1| |#2|) |#2|) (T -474))
NIL
(-1183 |#1| |#2|)
-((-4041 (((-112) $ $) NIL)) (-2560 (((-639 (-2 (|:| -1450 $) (|:| -3316 (-639 |#4|)))) (-639 |#4|)) NIL)) (-2304 (((-639 $) (-639 |#4|)) NIL)) (-1402 (((-639 |#3|) $) NIL)) (-4170 (((-112) $) NIL)) (-4274 (((-112) $) NIL (|has| |#1| (-554)))) (-4377 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3049 ((|#4| |#4| $) NIL)) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |#3|) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-3556 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402))) (((-3 |#4| "failed") $ |#3|) NIL)) (-1800 (($) NIL T CONST)) (-2207 (((-112) $) 27 (|has| |#1| (-554)))) (-1920 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3852 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2539 (((-112) $) NIL (|has| |#1| (-554)))) (-2839 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3884 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-2540 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) NIL)) (-3961 (($ (-639 |#4|)) NIL)) (-1434 (((-3 $ "failed") $) 40)) (-2387 ((|#4| |#4| $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-1475 (($ |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-2264 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-4091 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3595 ((|#4| |#4| $) NIL)) (-1955 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4402))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4402))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2267 (((-2 (|:| -1450 (-639 |#4|)) (|:| -3316 (-639 |#4|))) $) NIL)) (-1720 (((-639 |#4|) $) 17 (|has| $ (-6 -4402)))) (-2573 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4339 ((|#3| $) 34)) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#4|) $) 18 (|has| $ (-6 -4402)))) (-1669 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-1490 (($ (-1 |#4| |#4|) $) 24 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#4| |#4|) $) 22)) (-3754 (((-639 |#3|) $) NIL)) (-2071 (((-112) |#3| $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-1504 (((-3 |#4| "failed") $) 38)) (-3576 (((-639 |#4|) $) NIL)) (-2890 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1849 ((|#4| |#4| $) NIL)) (-1408 (((-112) $ $) NIL)) (-3725 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-2766 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1532 ((|#4| |#4| $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-3 |#4| "failed") $) 36)) (-3251 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3310 (((-3 $ "failed") $ |#4|) 47)) (-1353 (($ $ |#4|) NIL)) (-1763 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 16)) (-4307 (($) 14)) (-3598 (((-766) $) NIL)) (-1723 (((-766) |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) (((-766) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) 13)) (-4208 (((-535) $) NIL (|has| |#4| (-610 (-535))))) (-4066 (($ (-639 |#4|)) 21)) (-1812 (($ $ |#3|) 43)) (-3274 (($ $ |#3|) 44)) (-3277 (($ $) NIL)) (-1568 (($ $ |#3|) NIL)) (-4054 (((-857) $) 32) (((-639 |#4|) $) 41)) (-3730 (((-766) $) NIL (|has| |#3| (-367)))) (-2652 (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4252 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) NIL)) (-1744 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-4089 (((-639 |#3|) $) NIL)) (-3694 (((-112) |#3| $) NIL)) (-1731 (((-112) $ $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-1330 (((-639 (-2 (|:| -1449 $) (|:| -3315 (-639 |#4|)))) (-639 |#4|)) NIL)) (-3672 (((-639 $) (-639 |#4|)) NIL)) (-1401 (((-639 |#3|) $) NIL)) (-2799 (((-112) $) NIL)) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-4177 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3623 ((|#4| |#4| $) NIL)) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |#3|) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-3556 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3329 (($) NIL T CONST)) (-2169 (((-112) $) 27 (|has| |#1| (-554)))) (-2183 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2864 (((-112) $ $) NIL (|has| |#1| (-554)))) (-4219 (((-112) $) NIL (|has| |#1| (-554)))) (-4227 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2037 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4230 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) NIL)) (-3960 (($ (-639 |#4|)) NIL)) (-1434 (((-3 $ "failed") $) 40)) (-3255 ((|#4| |#4| $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-1475 (($ |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-1441 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-3300 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-2227 ((|#4| |#4| $) NIL)) (-1954 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4403))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4403))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1471 (((-2 (|:| -1449 (-639 |#4|)) (|:| -3315 (-639 |#4|))) $) NIL)) (-1720 (((-639 |#4|) $) 17 (|has| $ (-6 -4403)))) (-1493 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3761 ((|#3| $) 34)) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#4|) $) 18 (|has| $ (-6 -4403)))) (-1572 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-1491 (($ (-1 |#4| |#4|) $) 24 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#4| |#4|) $) 22)) (-3133 (((-639 |#3|) $) NIL)) (-3112 (((-112) |#3| $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-1504 (((-3 |#4| "failed") $) 38)) (-2063 (((-639 |#4|) $) NIL)) (-1645 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2651 ((|#4| |#4| $) NIL)) (-1789 (((-112) $ $) NIL)) (-4123 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-2830 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1630 ((|#4| |#4| $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-3 |#4| "failed") $) 36)) (-1963 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-4333 (((-3 $ "failed") $ |#4|) 47)) (-4316 (($ $ |#4|) NIL)) (-3008 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 16)) (-1663 (($) 14)) (-2250 (((-766) $) NIL)) (-1723 (((-766) |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) (((-766) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) 13)) (-4208 (((-535) $) NIL (|has| |#4| (-610 (-535))))) (-4064 (($ (-639 |#4|)) 21)) (-2316 (($ $ |#3|) 43)) (-2180 (($ $ |#3|) 44)) (-2209 (($ $) NIL)) (-1962 (($ $ |#3|) NIL)) (-4053 (((-857) $) 32) (((-639 |#4|) $) 41)) (-4157 (((-766) $) NIL (|has| |#3| (-367)))) (-4168 (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2350 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) NIL)) (-2879 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-3278 (((-639 |#3|) $) NIL)) (-3782 (((-112) |#3| $) NIL)) (-1733 (((-112) $ $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-475 |#1| |#2| |#3| |#4|) (-1200 |#1| |#2| |#3| |#4|) (-554) (-788) (-845) (-1058 |#1| |#2| |#3|)) (T -475))
NIL
(-1200 |#1| |#2| |#3| |#4|)
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL)) (-3961 (((-562) $) NIL) (((-406 (-562)) $) NIL)) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-4100 (($) 18)) (-1957 (((-112) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4208 (((-378) $) 22) (((-224) $) 25) (((-406 (-1164 (-562))) $) 19) (((-535) $) 52)) (-4054 (((-857) $) 50) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (((-224) $) 24) (((-378) $) 21)) (-2579 (((-766)) NIL)) (-2922 (((-112) $ $) NIL)) (-2286 (($) 36 T CONST)) (-2294 (($) 11 T CONST)) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL)) (-3960 (((-562) $) NIL) (((-406 (-562)) $) NIL)) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-4100 (($) 18)) (-4367 (((-112) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4208 (((-378) $) 22) (((-224) $) 25) (((-406 (-1164 (-562))) $) 19) (((-535) $) 52)) (-4053 (((-857) $) 50) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (((-224) $) 24) (((-378) $) 21)) (-1568 (((-766)) NIL)) (-3799 (((-112) $ $) NIL)) (-2285 (($) 36 T CONST)) (-2294 (($) 11 T CONST)) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
(((-476) (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))) (-1017) (-609 (-224)) (-609 (-378)) (-610 (-406 (-1164 (-562)))) (-610 (-535)) (-10 -8 (-15 -4100 ($))))) (T -476))
((-4100 (*1 *1) (-5 *1 (-476))))
(-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))) (-1017) (-609 (-224)) (-609 (-378)) (-610 (-406 (-1164 (-562)))) (-610 (-535)) (-10 -8 (-15 -4100 ($))))
-((-4041 (((-112) $ $) NIL)) (-4328 (((-1127) $) 11)) (-4316 (((-1127) $) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-477) (-13 (-1075) (-10 -8 (-15 -4316 ((-1127) $)) (-15 -4328 ((-1127) $))))) (T -477))
-((-4316 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-477)))) (-4328 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-477)))))
-(-13 (-1075) (-10 -8 (-15 -4316 ((-1127) $)) (-15 -4328 ((-1127) $))))
-((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-3052 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#2| $ |#1| |#2|) 16)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1472 (((-3 |#2| "failed") |#1| $) 20)) (-1800 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-4000 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-3 |#2| "failed") |#1| $) 18)) (-1475 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#2| $ |#1|) NIL)) (-1720 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 ((|#1| $) NIL (|has| |#1| (-845)))) (-1912 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-3874 ((|#1| $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4403))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1520 (((-639 |#1|) $) 13)) (-4265 (((-112) |#1| $) NIL)) (-3262 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-4300 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-2093 (((-639 |#1|) $) NIL)) (-1570 (((-112) |#1| $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845)))) (-3251 (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL)) (-2716 (($ $ |#2|) NIL (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-2411 (((-639 |#2|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) 19)) (-2343 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3564 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-4054 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-1932 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 11 (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-3492 (((-766) $) 15 (|has| $ (-6 -4402)))))
-(((-478 |#1| |#2| |#3|) (-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4402))) (-1092) (-1092) (-1150)) (T -478))
-NIL
-(-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4402)))
-((-4364 (((-562) (-562) (-562)) 7)) (-3156 (((-112) (-562) (-562) (-562) (-562)) 11)) (-2167 (((-1256 (-639 (-562))) (-766) (-766)) 22)))
-(((-479) (-10 -7 (-15 -4364 ((-562) (-562) (-562))) (-15 -3156 ((-112) (-562) (-562) (-562) (-562))) (-15 -2167 ((-1256 (-639 (-562))) (-766) (-766))))) (T -479))
-((-2167 (*1 *2 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1256 (-639 (-562)))) (-5 *1 (-479)))) (-3156 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-479)))) (-4364 (*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-479)))))
-(-10 -7 (-15 -4364 ((-562) (-562) (-562))) (-15 -3156 ((-112) (-562) (-562) (-562) (-562))) (-15 -2167 ((-1256 (-639 (-562))) (-766) (-766))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1402 (((-639 (-859 |#1|)) $) NIL)) (-1599 (((-1164 $) $ (-859 |#1|)) NIL) (((-1164 |#2|) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#2| (-554)))) (-2796 (($ $) NIL (|has| |#2| (-554)))) (-4370 (((-112) $) NIL (|has| |#2| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 (-859 |#1|))) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-2798 (($ $) NIL (|has| |#2| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#2| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-859 |#1|) "failed") $) NIL)) (-3961 ((|#2| $) NIL) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-859 |#1|) $) NIL)) (-2835 (($ $ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-2040 (($ $ (-639 (-562))) NIL)) (-1601 (($ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#2| (-904)))) (-3122 (($ $ |#2| (-481 (-3492 |#1|) (-766)) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-1390 (($ (-1164 |#2|) (-859 |#1|)) NIL) (($ (-1164 $) (-859 |#1|)) NIL)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#2| (-481 (-3492 |#1|) (-766))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ (-859 |#1|)) NIL)) (-2076 (((-481 (-3492 |#1|) (-766)) $) NIL) (((-766) $ (-859 |#1|)) NIL) (((-639 (-766)) $ (-639 (-859 |#1|))) NIL)) (-1551 (($ $ $) NIL (|has| |#2| (-845)))) (-2993 (($ $ $) NIL (|has| |#2| (-845)))) (-2836 (($ (-1 (-481 (-3492 |#1|) (-766)) (-481 (-3492 |#1|) (-766))) $) NIL)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-3372 (((-3 (-859 |#1|) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#2| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-2913 (((-1150) $) NIL)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| (-859 |#1|)) (|:| -1960 (-766))) "failed") $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#2| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#2| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#2| (-904)))) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-859 |#1|) |#2|) NIL) (($ $ (-639 (-859 |#1|)) (-639 |#2|)) NIL) (($ $ (-859 |#1|) $) NIL) (($ $ (-639 (-859 |#1|)) (-639 $)) NIL)) (-2455 (($ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-4029 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-3598 (((-481 (-3492 |#1|) (-766)) $) NIL) (((-766) $ (-859 |#1|)) NIL) (((-639 (-766)) $ (-639 (-859 |#1|))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-859 |#1|) (-610 (-535))) (|has| |#2| (-610 (-535)))))) (-3900 ((|#2| $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) NIL) (($ (-859 |#1|)) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#2| (-38 (-406 (-562)))) (|has| |#2| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#2| (-554)))) (-4358 (((-639 |#2|) $) NIL)) (-3906 ((|#2| $ (-481 (-3492 |#1|) (-766))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#2| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#2| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#2| (-554)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#2| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#2| (-38 (-406 (-562))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-480 |#1| |#2|) (-13 (-944 |#2| (-481 (-3492 |#1|) (-766)) (-859 |#1|)) (-10 -8 (-15 -2040 ($ $ (-639 (-562)))))) (-639 (-1168)) (-1044)) (T -480))
-((-2040 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-480 *3 *4)) (-14 *3 (-639 (-1168))) (-4 *4 (-1044)))))
-(-13 (-944 |#2| (-481 (-3492 |#1|) (-766)) (-859 |#1|)) (-10 -8 (-15 -2040 ($ $ (-639 (-562))))))
-((-4041 (((-112) $ $) NIL (|has| |#2| (-1092)))) (-1952 (((-112) $) NIL (|has| |#2| (-130)))) (-3901 (($ (-916)) NIL (|has| |#2| (-1044)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-3659 (($ $ $) NIL (|has| |#2| (-788)))) (-3214 (((-3 $ "failed") $ $) NIL (|has| |#2| (-130)))) (-4336 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| |#2| (-367)))) (-2277 (((-562) $) NIL (|has| |#2| (-843)))) (-4200 ((|#2| $ (-562) |#2|) NIL (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1092)))) (-3961 (((-562) $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-406 (-562)) $) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) ((|#2| $) NIL (|has| |#2| (-1092)))) (-2406 (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL (|has| |#2| (-1044))) (((-683 |#2|) (-683 $)) NIL (|has| |#2| (-1044)))) (-3668 (((-3 $ "failed") $) NIL (|has| |#2| (-721)))) (-1448 (($) NIL (|has| |#2| (-367)))) (-1505 ((|#2| $ (-562) |#2|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#2| $ (-562)) 11)) (-3519 (((-112) $) NIL (|has| |#2| (-843)))) (-1720 (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1957 (((-112) $) NIL (|has| |#2| (-721)))) (-3392 (((-112) $) NIL (|has| |#2| (-843)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1912 (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1490 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-1999 (((-916) $) NIL (|has| |#2| (-367)))) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#2| (-1092)))) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-2466 (($ (-916)) NIL (|has| |#2| (-367)))) (-1709 (((-1112) $) NIL (|has| |#2| (-1092)))) (-1421 ((|#2| $) NIL (|has| (-562) (-845)))) (-2716 (($ $ |#2|) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-2411 (((-639 |#2|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#2| $ (-562) |#2|) NIL) ((|#2| $ (-562)) NIL)) (-4177 ((|#2| $ $) NIL (|has| |#2| (-1044)))) (-1679 (($ (-1256 |#2|)) NIL)) (-3627 (((-133)) NIL (|has| |#2| (-362)))) (-4029 (($ $) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1044)))) (-1723 (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-1256 |#2|) $) NIL) (($ (-562)) NIL (-4037 (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092))) (|has| |#2| (-1044)))) (($ (-406 (-562))) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (($ |#2|) NIL (|has| |#2| (-1092))) (((-857) $) NIL (|has| |#2| (-609 (-857))))) (-2579 (((-766)) NIL (|has| |#2| (-1044)))) (-1744 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-3526 (($ $) NIL (|has| |#2| (-843)))) (-2286 (($) NIL (|has| |#2| (-130)) CONST)) (-2294 (($) NIL (|has| |#2| (-721)) CONST)) (-3114 (($ $) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1044)))) (-1798 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1772 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1731 (((-112) $ $) NIL (|has| |#2| (-1092)))) (-1785 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1759 (((-112) $ $) 15 (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1848 (($ $ $) NIL (|has| |#2| (-1044))) (($ $) NIL (|has| |#2| (-1044)))) (-1835 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-766)) NIL (|has| |#2| (-721))) (($ $ (-916)) NIL (|has| |#2| (-721)))) (* (($ (-562) $) NIL (|has| |#2| (-1044))) (($ $ $) NIL (|has| |#2| (-721))) (($ $ |#2|) NIL (|has| |#2| (-721))) (($ |#2| $) NIL (|has| |#2| (-721))) (($ (-766) $) NIL (|has| |#2| (-130))) (($ (-916) $) NIL (|has| |#2| (-25)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-4330 (((-1127) $) 11)) (-4318 (((-1127) $) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-477) (-13 (-1075) (-10 -8 (-15 -4318 ((-1127) $)) (-15 -4330 ((-1127) $))))) (T -477))
+((-4318 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-477)))) (-4330 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-477)))))
+(-13 (-1075) (-10 -8 (-15 -4318 ((-1127) $)) (-15 -4330 ((-1127) $))))
+((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-3655 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#2| $ |#1| |#2|) 16)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1472 (((-3 |#2| "failed") |#1| $) 20)) (-3329 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-3729 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-3 |#2| "failed") |#1| $) 18)) (-1475 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#2| $ |#1|) NIL)) (-1720 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 ((|#1| $) NIL (|has| |#1| (-845)))) (-2123 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-1929 ((|#1| $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4404))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1521 (((-639 |#1|) $) 13)) (-4278 (((-112) |#1| $) NIL)) (-2078 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-1581 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3336 (((-639 |#1|) $) NIL)) (-1987 (((-112) |#1| $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845)))) (-1963 (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL)) (-3510 (($ $ |#2|) NIL (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-2366 (((-639 |#2|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) 19)) (-2343 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-1932 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-4053 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-4131 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 11 (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-3492 (((-766) $) 15 (|has| $ (-6 -4403)))))
+(((-478 |#1| |#2| |#3|) (-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4403))) (-1092) (-1092) (-1150)) (T -478))
+NIL
+(-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4403)))
+((-4042 (((-562) (-562) (-562)) 7)) (-3401 (((-112) (-562) (-562) (-562) (-562)) 11)) (-2166 (((-1256 (-639 (-562))) (-766) (-766)) 22)))
+(((-479) (-10 -7 (-15 -4042 ((-562) (-562) (-562))) (-15 -3401 ((-112) (-562) (-562) (-562) (-562))) (-15 -2166 ((-1256 (-639 (-562))) (-766) (-766))))) (T -479))
+((-2166 (*1 *2 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1256 (-639 (-562)))) (-5 *1 (-479)))) (-3401 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-479)))) (-4042 (*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-479)))))
+(-10 -7 (-15 -4042 ((-562) (-562) (-562))) (-15 -3401 ((-112) (-562) (-562) (-562) (-562))) (-15 -2166 ((-1256 (-639 (-562))) (-766) (-766))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1401 (((-639 (-859 |#1|)) $) NIL)) (-1602 (((-1164 $) $ (-859 |#1|)) NIL) (((-1164 |#2|) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#2| (-554)))) (-1965 (($ $) NIL (|has| |#2| (-554)))) (-4102 (((-112) $) NIL (|has| |#2| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 (-859 |#1|))) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1977 (($ $) NIL (|has| |#2| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#2| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-859 |#1|) "failed") $) NIL)) (-3960 ((|#2| $) NIL) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-859 |#1|) $) NIL)) (-2355 (($ $ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-3999 (($ $ (-639 (-562))) NIL)) (-1600 (($ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#2| (-904)))) (-3066 (($ $ |#2| (-481 (-3492 |#1|) (-766)) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-1389 (($ (-1164 |#2|) (-859 |#1|)) NIL) (($ (-1164 $) (-859 |#1|)) NIL)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#2| (-481 (-3492 |#1|) (-766))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ (-859 |#1|)) NIL)) (-3161 (((-481 (-3492 |#1|) (-766)) $) NIL) (((-766) $ (-859 |#1|)) NIL) (((-639 (-766)) $ (-639 (-859 |#1|))) NIL)) (-1551 (($ $ $) NIL (|has| |#2| (-845)))) (-2993 (($ $ $) NIL (|has| |#2| (-845)))) (-2363 (($ (-1 (-481 (-3492 |#1|) (-766)) (-481 (-3492 |#1|) (-766))) $) NIL)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-3640 (((-3 (-859 |#1|) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#2| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-3696 (((-1150) $) NIL)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| (-859 |#1|)) (|:| -1300 (-766))) "failed") $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#2| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#2| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#2| (-904)))) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-859 |#1|) |#2|) NIL) (($ $ (-639 (-859 |#1|)) (-639 |#2|)) NIL) (($ $ (-859 |#1|) $) NIL) (($ $ (-639 (-859 |#1|)) (-639 $)) NIL)) (-2736 (($ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-4029 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2250 (((-481 (-3492 |#1|) (-766)) $) NIL) (((-766) $ (-859 |#1|)) NIL) (((-639 (-766)) $ (-639 (-859 |#1|))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-859 |#1|) (-610 (-535))) (|has| |#2| (-610 (-535)))))) (-2201 ((|#2| $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) NIL) (($ (-859 |#1|)) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#2| (-38 (-406 (-562)))) (|has| |#2| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#2| (-554)))) (-3969 (((-639 |#2|) $) NIL)) (-2266 ((|#2| $ (-481 (-3492 |#1|) (-766))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#2| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#2| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#2| (-554)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#2| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#2| (-38 (-406 (-562))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-480 |#1| |#2|) (-13 (-944 |#2| (-481 (-3492 |#1|) (-766)) (-859 |#1|)) (-10 -8 (-15 -3999 ($ $ (-639 (-562)))))) (-639 (-1168)) (-1044)) (T -480))
+((-3999 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-480 *3 *4)) (-14 *3 (-639 (-1168))) (-4 *4 (-1044)))))
+(-13 (-944 |#2| (-481 (-3492 |#1|) (-766)) (-859 |#1|)) (-10 -8 (-15 -3999 ($ $ (-639 (-562))))))
+((-4041 (((-112) $ $) NIL (|has| |#2| (-1092)))) (-4325 (((-112) $) NIL (|has| |#2| (-130)))) (-2211 (($ (-916)) NIL (|has| |#2| (-1044)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1593 (($ $ $) NIL (|has| |#2| (-788)))) (-2781 (((-3 $ "failed") $ $) NIL (|has| |#2| (-130)))) (-3735 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| |#2| (-367)))) (-1587 (((-562) $) NIL (|has| |#2| (-843)))) (-4200 ((|#2| $ (-562) |#2|) NIL (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1092)))) (-3960 (((-562) $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-406 (-562)) $) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) ((|#2| $) NIL (|has| |#2| (-1092)))) (-3449 (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL (|has| |#2| (-1044))) (((-683 |#2|) (-683 $)) NIL (|has| |#2| (-1044)))) (-1694 (((-3 $ "failed") $) NIL (|has| |#2| (-721)))) (-1447 (($) NIL (|has| |#2| (-367)))) (-1507 ((|#2| $ (-562) |#2|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#2| $ (-562)) 11)) (-2696 (((-112) $) NIL (|has| |#2| (-843)))) (-1720 (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-4367 (((-112) $) NIL (|has| |#2| (-721)))) (-3855 (((-112) $) NIL (|has| |#2| (-843)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-2123 (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1491 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-3549 (((-916) $) NIL (|has| |#2| (-367)))) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#2| (-1092)))) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-2464 (($ (-916)) NIL (|has| |#2| (-367)))) (-1709 (((-1112) $) NIL (|has| |#2| (-1092)))) (-1421 ((|#2| $) NIL (|has| (-562) (-845)))) (-3510 (($ $ |#2|) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-2366 (((-639 |#2|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#2| $ (-562) |#2|) NIL) ((|#2| $ (-562)) NIL)) (-2852 ((|#2| $ $) NIL (|has| |#2| (-1044)))) (-1678 (($ (-1256 |#2|)) NIL)) (-4340 (((-133)) NIL (|has| |#2| (-362)))) (-4029 (($ $) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1044)))) (-1723 (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-1256 |#2|) $) NIL) (($ (-562)) NIL (-4037 (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092))) (|has| |#2| (-1044)))) (($ (-406 (-562))) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (($ |#2|) NIL (|has| |#2| (-1092))) (((-857) $) NIL (|has| |#2| (-609 (-857))))) (-1568 (((-766)) NIL (|has| |#2| (-1044)))) (-2879 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-2757 (($ $) NIL (|has| |#2| (-843)))) (-2285 (($) NIL (|has| |#2| (-130)) CONST)) (-2294 (($) NIL (|has| |#2| (-721)) CONST)) (-3113 (($ $) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1044)))) (-1798 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1771 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1733 (((-112) $ $) NIL (|has| |#2| (-1092)))) (-1785 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1761 (((-112) $ $) 15 (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1847 (($ $ $) NIL (|has| |#2| (-1044))) (($ $) NIL (|has| |#2| (-1044)))) (-1836 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-766)) NIL (|has| |#2| (-721))) (($ $ (-916)) NIL (|has| |#2| (-721)))) (* (($ (-562) $) NIL (|has| |#2| (-1044))) (($ $ $) NIL (|has| |#2| (-721))) (($ $ |#2|) NIL (|has| |#2| (-721))) (($ |#2| $) NIL (|has| |#2| (-721))) (($ (-766) $) NIL (|has| |#2| (-130))) (($ (-916) $) NIL (|has| |#2| (-25)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-481 |#1| |#2|) (-237 |#1| |#2|) (-766) (-788)) (T -481))
NIL
(-237 |#1| |#2|)
-((-4041 (((-112) $ $) NIL)) (-1913 (((-639 (-505)) $) 11)) (-3254 (((-505) $) 10)) (-2913 (((-1150) $) NIL)) (-3709 (($ (-505) (-639 (-505))) 9)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 20) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-482) (-13 (-1075) (-10 -8 (-15 -3709 ($ (-505) (-639 (-505)))) (-15 -3254 ((-505) $)) (-15 -1913 ((-639 (-505)) $))))) (T -482))
-((-3709 (*1 *1 *2 *3) (-12 (-5 *3 (-639 (-505))) (-5 *2 (-505)) (-5 *1 (-482)))) (-3254 (*1 *2 *1) (-12 (-5 *2 (-505)) (-5 *1 (-482)))) (-1913 (*1 *2 *1) (-12 (-5 *2 (-639 (-505))) (-5 *1 (-482)))))
-(-13 (-1075) (-10 -8 (-15 -3709 ($ (-505) (-639 (-505)))) (-15 -3254 ((-505) $)) (-15 -1913 ((-639 (-505)) $))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) NIL)) (-1800 (($) NIL T CONST)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-2673 (($ $ $) 32)) (-1610 (($ $ $) 31)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2993 ((|#1| $) 26)) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3262 ((|#1| $) 27)) (-4300 (($ |#1| $) 10)) (-2408 (($ (-639 |#1|)) 12)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1904 ((|#1| $) 23)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) 9)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1932 (($ (-639 |#1|)) 29)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) 21 (|has| $ (-6 -4402)))))
-(((-483 |#1|) (-13 (-963 |#1|) (-10 -8 (-15 -2408 ($ (-639 |#1|))))) (-845)) (T -483))
-((-2408 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-483 *3)))))
-(-13 (-963 |#1|) (-10 -8 (-15 -2408 ($ (-639 |#1|)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1955 (($ $) 69)) (-2875 (((-112) $) NIL)) (-2913 (((-1150) $) NIL)) (-1366 (((-412 |#2| (-406 |#2|) |#3| |#4|) $) 44)) (-1709 (((-1112) $) NIL)) (-3148 (((-3 |#4| "failed") $) 107)) (-1329 (($ (-412 |#2| (-406 |#2|) |#3| |#4|)) 76) (($ |#4|) 32) (($ |#1| |#1|) 115) (($ |#1| |#1| (-562)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 127)) (-2018 (((-2 (|:| -1416 (-412 |#2| (-406 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 46)) (-4054 (((-857) $) 102)) (-2286 (($) 33 T CONST)) (-1731 (((-112) $ $) 109)) (-1848 (($ $) 72) (($ $ $) NIL)) (-1835 (($ $ $) 70)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 73)))
+((-4041 (((-112) $ $) NIL)) (-1917 (((-639 (-505)) $) 11)) (-3253 (((-505) $) 10)) (-3696 (((-1150) $) NIL)) (-3943 (($ (-505) (-639 (-505))) 9)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 20) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-482) (-13 (-1075) (-10 -8 (-15 -3943 ($ (-505) (-639 (-505)))) (-15 -3253 ((-505) $)) (-15 -1917 ((-639 (-505)) $))))) (T -482))
+((-3943 (*1 *1 *2 *3) (-12 (-5 *3 (-639 (-505))) (-5 *2 (-505)) (-5 *1 (-482)))) (-3253 (*1 *2 *1) (-12 (-5 *2 (-505)) (-5 *1 (-482)))) (-1917 (*1 *2 *1) (-12 (-5 *2 (-639 (-505))) (-5 *1 (-482)))))
+(-13 (-1075) (-10 -8 (-15 -3943 ($ (-505) (-639 (-505)))) (-15 -3253 ((-505) $)) (-15 -1917 ((-639 (-505)) $))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) NIL)) (-3329 (($) NIL T CONST)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-3124 (($ $ $) 32)) (-4103 (($ $ $) 31)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2993 ((|#1| $) 26)) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-2078 ((|#1| $) 27)) (-1581 (($ |#1| $) 10)) (-3467 (($ (-639 |#1|)) 12)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2038 ((|#1| $) 23)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) 9)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-4131 (($ (-639 |#1|)) 29)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) 21 (|has| $ (-6 -4403)))))
+(((-483 |#1|) (-13 (-963 |#1|) (-10 -8 (-15 -3467 ($ (-639 |#1|))))) (-845)) (T -483))
+((-3467 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-483 *3)))))
+(-13 (-963 |#1|) (-10 -8 (-15 -3467 ($ (-639 |#1|)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1954 (($ $) 69)) (-1488 (((-112) $) NIL)) (-3696 (((-1150) $) NIL)) (-1387 (((-412 |#2| (-406 |#2|) |#3| |#4|) $) 44)) (-1709 (((-1112) $) NIL)) (-3147 (((-3 |#4| "failed") $) 107)) (-1933 (($ (-412 |#2| (-406 |#2|) |#3| |#4|)) 76) (($ |#4|) 32) (($ |#1| |#1|) 115) (($ |#1| |#1| (-562)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 127)) (-3758 (((-2 (|:| -1416 (-412 |#2| (-406 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 46)) (-4053 (((-857) $) 102)) (-2285 (($) 33 T CONST)) (-1733 (((-112) $ $) 109)) (-1847 (($ $) 72) (($ $ $) NIL)) (-1836 (($ $ $) 70)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 73)))
(((-484 |#1| |#2| |#3| |#4|) (-334 |#1| |#2| |#3| |#4|) (-362) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|)) (T -484))
NIL
(-334 |#1| |#2| |#3| |#4|)
-((-2388 (((-562) (-639 (-562))) 29)) (-1976 ((|#1| (-639 |#1|)) 55)) (-2950 (((-639 |#1|) (-639 |#1|)) 56)) (-1558 (((-639 |#1|) (-639 |#1|)) 58)) (-1606 ((|#1| (-639 |#1|)) 57)) (-3900 (((-639 (-562)) (-639 |#1|)) 32)))
-(((-485 |#1|) (-10 -7 (-15 -1606 (|#1| (-639 |#1|))) (-15 -1976 (|#1| (-639 |#1|))) (-15 -1558 ((-639 |#1|) (-639 |#1|))) (-15 -2950 ((-639 |#1|) (-639 |#1|))) (-15 -3900 ((-639 (-562)) (-639 |#1|))) (-15 -2388 ((-562) (-639 (-562))))) (-1232 (-562))) (T -485))
-((-2388 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-562)) (-5 *1 (-485 *4)) (-4 *4 (-1232 *2)))) (-3900 (*1 *2 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-1232 (-562))) (-5 *2 (-639 (-562))) (-5 *1 (-485 *4)))) (-2950 (*1 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1232 (-562))) (-5 *1 (-485 *3)))) (-1558 (*1 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1232 (-562))) (-5 *1 (-485 *3)))) (-1976 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-5 *1 (-485 *2)) (-4 *2 (-1232 (-562))))) (-1606 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-5 *1 (-485 *2)) (-4 *2 (-1232 (-562))))))
-(-10 -7 (-15 -1606 (|#1| (-639 |#1|))) (-15 -1976 (|#1| (-639 |#1|))) (-15 -1558 ((-639 |#1|) (-639 |#1|))) (-15 -2950 ((-639 |#1|) (-639 |#1|))) (-15 -3900 ((-639 (-562)) (-639 |#1|))) (-15 -2388 ((-562) (-639 (-562)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-4246 (((-562) $) NIL (|has| (-562) (-306)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL (|has| (-562) (-815)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| (-562) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-562) (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| (-562) (-1033 (-562))))) (-3961 (((-562) $) NIL) (((-1168) $) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-562) (-1033 (-562)))) (((-562) $) NIL (|has| (-562) (-1033 (-562))))) (-1811 (($ $ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| (-562) (-544)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3519 (((-112) $) NIL (|has| (-562) (-815)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-562) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-562) (-881 (-378))))) (-1957 (((-112) $) NIL)) (-3425 (($ $) NIL)) (-4065 (((-562) $) NIL)) (-3699 (((-3 $ "failed") $) NIL (|has| (-562) (-1143)))) (-3392 (((-112) $) NIL (|has| (-562) (-815)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-562) (-845)))) (-4152 (($ (-1 (-562) (-562)) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| (-562) (-1143)) CONST)) (-3702 (($ (-406 (-562))) 9)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2736 (($ $) NIL (|has| (-562) (-306))) (((-406 (-562)) $) NIL)) (-4014 (((-562) $) NIL (|has| (-562) (-544)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-562)) (-639 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-562) (-562)) NIL (|has| (-562) (-308 (-562)))) (($ $ (-293 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-293 (-562)))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-1168)) (-639 (-562))) NIL (|has| (-562) (-513 (-1168) (-562)))) (($ $ (-1168) (-562)) NIL (|has| (-562) (-513 (-1168) (-562))))) (-1577 (((-766) $) NIL)) (-2343 (($ $ (-562)) NIL (|has| (-562) (-285 (-562) (-562))))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-3658 (($ $) NIL)) (-4076 (((-562) $) NIL)) (-4208 (((-887 (-562)) $) NIL (|has| (-562) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-562) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-562) (-610 (-535)))) (((-378) $) NIL (|has| (-562) (-1017))) (((-224) $) NIL (|has| (-562) (-1017)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-562) (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) 8) (($ (-562)) NIL) (($ (-1168)) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL) (((-999 16) $) 10)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-562) (-904))) (|has| (-562) (-144))))) (-2579 (((-766)) NIL)) (-2604 (((-562) $) NIL (|has| (-562) (-544)))) (-2922 (((-112) $ $) NIL)) (-3526 (($ $) NIL (|has| (-562) (-815)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1772 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1759 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1859 (($ $ $) NIL) (($ (-562) (-562)) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-562) $) NIL) (($ $ (-562)) NIL)))
-(((-486) (-13 (-987 (-562)) (-609 (-406 (-562))) (-609 (-999 16)) (-10 -8 (-15 -2736 ((-406 (-562)) $)) (-15 -3702 ($ (-406 (-562))))))) (T -486))
-((-2736 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-486)))) (-3702 (*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-486)))))
-(-13 (-987 (-562)) (-609 (-406 (-562))) (-609 (-999 16)) (-10 -8 (-15 -2736 ((-406 (-562)) $)) (-15 -3702 ($ (-406 (-562))))))
-((-1912 (((-639 |#2|) $) 23)) (-1669 (((-112) |#2| $) 28)) (-1763 (((-112) (-1 (-112) |#2|) $) 21)) (-1433 (($ $ (-639 (-293 |#2|))) 13) (($ $ (-293 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-639 |#2|) (-639 |#2|)) NIL)) (-1723 (((-766) (-1 (-112) |#2|) $) 22) (((-766) |#2| $) 26)) (-4054 (((-857) $) 37)) (-1744 (((-112) (-1 (-112) |#2|) $) 20)) (-1731 (((-112) $ $) 31)) (-3492 (((-766) $) 17)))
-(((-487 |#1| |#2|) (-10 -8 (-15 -4054 ((-857) |#1|)) (-15 -1731 ((-112) |#1| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#2|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#2| |#2|)) (-15 -1433 (|#1| |#1| (-293 |#2|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#2|)))) (-15 -1669 ((-112) |#2| |#1|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1912 ((-639 |#2|) |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -1763 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1744 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3492 ((-766) |#1|))) (-488 |#2|) (-1207)) (T -487))
-NIL
-(-10 -8 (-15 -4054 ((-857) |#1|)) (-15 -1731 ((-112) |#1| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#2|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#2| |#2|)) (-15 -1433 (|#1| |#1| (-293 |#2|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#2|)))) (-15 -1669 ((-112) |#2| |#1|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -1912 ((-639 |#2|) |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -1763 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1744 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3492 ((-766) |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) 8)) (-1800 (($) 7 T CONST)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-3266 (((-562) (-639 (-562))) 29)) (-1461 ((|#1| (-639 |#1|)) 55)) (-4071 (((-639 |#1|) (-639 |#1|)) 56)) (-1888 (((-639 |#1|) (-639 |#1|)) 58)) (-1606 ((|#1| (-639 |#1|)) 57)) (-2201 (((-639 (-562)) (-639 |#1|)) 32)))
+(((-485 |#1|) (-10 -7 (-15 -1606 (|#1| (-639 |#1|))) (-15 -1461 (|#1| (-639 |#1|))) (-15 -1888 ((-639 |#1|) (-639 |#1|))) (-15 -4071 ((-639 |#1|) (-639 |#1|))) (-15 -2201 ((-639 (-562)) (-639 |#1|))) (-15 -3266 ((-562) (-639 (-562))))) (-1232 (-562))) (T -485))
+((-3266 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-562)) (-5 *1 (-485 *4)) (-4 *4 (-1232 *2)))) (-2201 (*1 *2 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-1232 (-562))) (-5 *2 (-639 (-562))) (-5 *1 (-485 *4)))) (-4071 (*1 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1232 (-562))) (-5 *1 (-485 *3)))) (-1888 (*1 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1232 (-562))) (-5 *1 (-485 *3)))) (-1461 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-5 *1 (-485 *2)) (-4 *2 (-1232 (-562))))) (-1606 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-5 *1 (-485 *2)) (-4 *2 (-1232 (-562))))))
+(-10 -7 (-15 -1606 (|#1| (-639 |#1|))) (-15 -1461 (|#1| (-639 |#1|))) (-15 -1888 ((-639 |#1|) (-639 |#1|))) (-15 -4071 ((-639 |#1|) (-639 |#1|))) (-15 -2201 ((-639 (-562)) (-639 |#1|))) (-15 -3266 ((-562) (-639 (-562)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2300 (((-562) $) NIL (|has| (-562) (-306)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL (|has| (-562) (-815)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| (-562) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-562) (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| (-562) (-1033 (-562))))) (-3960 (((-562) $) NIL) (((-1168) $) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-562) (-1033 (-562)))) (((-562) $) NIL (|has| (-562) (-1033 (-562))))) (-1810 (($ $ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| (-562) (-544)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2696 (((-112) $) NIL (|has| (-562) (-815)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-562) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-562) (-881 (-378))))) (-4367 (((-112) $) NIL)) (-2957 (($ $) NIL)) (-4063 (((-562) $) NIL)) (-3828 (((-3 $ "failed") $) NIL (|has| (-562) (-1143)))) (-3855 (((-112) $) NIL (|has| (-562) (-815)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-562) (-845)))) (-4152 (($ (-1 (-562) (-562)) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| (-562) (-1143)) CONST)) (-3862 (($ (-406 (-562))) 9)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2561 (($ $) NIL (|has| (-562) (-306))) (((-406 (-562)) $) NIL)) (-3870 (((-562) $) NIL (|has| (-562) (-544)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-562)) (-639 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-562) (-562)) NIL (|has| (-562) (-308 (-562)))) (($ $ (-293 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-293 (-562)))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-1168)) (-639 (-562))) NIL (|has| (-562) (-513 (-1168) (-562)))) (($ $ (-1168) (-562)) NIL (|has| (-562) (-513 (-1168) (-562))))) (-2044 (((-766) $) NIL)) (-2343 (($ $ (-562)) NIL (|has| (-562) (-285 (-562) (-562))))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-1580 (($ $) NIL)) (-4079 (((-562) $) NIL)) (-4208 (((-887 (-562)) $) NIL (|has| (-562) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-562) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-562) (-610 (-535)))) (((-378) $) NIL (|has| (-562) (-1017))) (((-224) $) NIL (|has| (-562) (-1017)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-562) (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) 8) (($ (-562)) NIL) (($ (-1168)) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL) (((-999 16) $) 10)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-562) (-904))) (|has| (-562) (-144))))) (-1568 (((-766)) NIL)) (-3636 (((-562) $) NIL (|has| (-562) (-544)))) (-3799 (((-112) $ $) NIL)) (-2757 (($ $) NIL (|has| (-562) (-815)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1771 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1761 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1859 (($ $ $) NIL) (($ (-562) (-562)) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-562) $) NIL) (($ $ (-562)) NIL)))
+(((-486) (-13 (-987 (-562)) (-609 (-406 (-562))) (-609 (-999 16)) (-10 -8 (-15 -2561 ((-406 (-562)) $)) (-15 -3862 ($ (-406 (-562))))))) (T -486))
+((-2561 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-486)))) (-3862 (*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-486)))))
+(-13 (-987 (-562)) (-609 (-406 (-562))) (-609 (-999 16)) (-10 -8 (-15 -2561 ((-406 (-562)) $)) (-15 -3862 ($ (-406 (-562))))))
+((-2123 (((-639 |#2|) $) 23)) (-1572 (((-112) |#2| $) 28)) (-3008 (((-112) (-1 (-112) |#2|) $) 21)) (-1433 (($ $ (-639 (-293 |#2|))) 13) (($ $ (-293 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-639 |#2|) (-639 |#2|)) NIL)) (-1723 (((-766) (-1 (-112) |#2|) $) 22) (((-766) |#2| $) 26)) (-4053 (((-857) $) 37)) (-2879 (((-112) (-1 (-112) |#2|) $) 20)) (-1733 (((-112) $ $) 31)) (-3492 (((-766) $) 17)))
+(((-487 |#1| |#2|) (-10 -8 (-15 -4053 ((-857) |#1|)) (-15 -1733 ((-112) |#1| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#2|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#2| |#2|)) (-15 -1433 (|#1| |#1| (-293 |#2|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#2|)))) (-15 -1572 ((-112) |#2| |#1|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -2123 ((-639 |#2|) |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -3008 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2879 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3492 ((-766) |#1|))) (-488 |#2|) (-1207)) (T -487))
+NIL
+(-10 -8 (-15 -4053 ((-857) |#1|)) (-15 -1733 ((-112) |#1| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#2|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#2| |#2|)) (-15 -1433 (|#1| |#1| (-293 |#2|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#2|)))) (-15 -1572 ((-112) |#2| |#1|)) (-15 -1723 ((-766) |#2| |#1|)) (-15 -2123 ((-639 |#2|) |#1|)) (-15 -1723 ((-766) (-1 (-112) |#2|) |#1|)) (-15 -3008 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2879 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3492 ((-766) |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) 8)) (-3329 (($) 7 T CONST)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-488 |#1|) (-139) (-1207)) (T -488))
-((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-488 *3)) (-4 *3 (-1207)))) (-1490 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4403)) (-4 *1 (-488 *3)) (-4 *3 (-1207)))) (-1744 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4402)) (-4 *1 (-488 *4)) (-4 *4 (-1207)) (-5 *2 (-112)))) (-1763 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4402)) (-4 *1 (-488 *4)) (-4 *4 (-1207)) (-5 *2 (-112)))) (-1723 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4402)) (-4 *1 (-488 *4)) (-4 *4 (-1207)) (-5 *2 (-766)))) (-1720 (*1 *2 *1) (-12 (|has| *1 (-6 -4402)) (-4 *1 (-488 *3)) (-4 *3 (-1207)) (-5 *2 (-639 *3)))) (-1912 (*1 *2 *1) (-12 (|has| *1 (-6 -4402)) (-4 *1 (-488 *3)) (-4 *3 (-1207)) (-5 *2 (-639 *3)))) (-1723 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4402)) (-4 *1 (-488 *3)) (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-766)))) (-1669 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4402)) (-4 *1 (-488 *3)) (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-112)))))
-(-13 (-34) (-10 -8 (IF (|has| |t#1| (-609 (-857))) (-6 (-609 (-857))) |%noBranch|) (IF (|has| |t#1| (-1092)) (-6 (-1092)) |%noBranch|) (IF (|has| |t#1| (-1092)) (IF (|has| |t#1| (-308 |t#1|)) (-6 (-308 |t#1|)) |%noBranch|) |%noBranch|) (-15 -4152 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4403)) (-15 -1490 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4402)) (PROGN (-15 -1744 ((-112) (-1 (-112) |t#1|) $)) (-15 -1763 ((-112) (-1 (-112) |t#1|) $)) (-15 -1723 ((-766) (-1 (-112) |t#1|) $)) (-15 -1720 ((-639 |t#1|) $)) (-15 -1912 ((-639 |t#1|) $)) (IF (|has| |t#1| (-1092)) (PROGN (-15 -1723 ((-766) |t#1| $)) (-15 -1669 ((-112) |t#1| $))) |%noBranch|)) |%noBranch|)))
+((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-488 *3)) (-4 *3 (-1207)))) (-1491 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4404)) (-4 *1 (-488 *3)) (-4 *3 (-1207)))) (-2879 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4403)) (-4 *1 (-488 *4)) (-4 *4 (-1207)) (-5 *2 (-112)))) (-3008 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4403)) (-4 *1 (-488 *4)) (-4 *4 (-1207)) (-5 *2 (-112)))) (-1723 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4403)) (-4 *1 (-488 *4)) (-4 *4 (-1207)) (-5 *2 (-766)))) (-1720 (*1 *2 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-488 *3)) (-4 *3 (-1207)) (-5 *2 (-639 *3)))) (-2123 (*1 *2 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-488 *3)) (-4 *3 (-1207)) (-5 *2 (-639 *3)))) (-1723 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-488 *3)) (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-766)))) (-1572 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-488 *3)) (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-112)))))
+(-13 (-34) (-10 -8 (IF (|has| |t#1| (-609 (-857))) (-6 (-609 (-857))) |%noBranch|) (IF (|has| |t#1| (-1092)) (-6 (-1092)) |%noBranch|) (IF (|has| |t#1| (-1092)) (IF (|has| |t#1| (-308 |t#1|)) (-6 (-308 |t#1|)) |%noBranch|) |%noBranch|) (-15 -4152 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4404)) (-15 -1491 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4403)) (PROGN (-15 -2879 ((-112) (-1 (-112) |t#1|) $)) (-15 -3008 ((-112) (-1 (-112) |t#1|) $)) (-15 -1723 ((-766) (-1 (-112) |t#1|) $)) (-15 -1720 ((-639 |t#1|) $)) (-15 -2123 ((-639 |t#1|) $)) (IF (|has| |t#1| (-1092)) (PROGN (-15 -1723 ((-766) |t#1| $)) (-15 -1572 ((-112) |t#1| $))) |%noBranch|)) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-4054 ((|#1| $) 6) (($ |#1|) 9)))
+((-4053 ((|#1| $) 6) (($ |#1|) 9)))
(((-489 |#1|) (-139) (-1207)) (T -489))
NIL
(-13 (-609 |t#1|) (-612 |t#1|))
(((-612 |#1|) . T) ((-609 |#1|) . T))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-2899 (($ (-1150)) 8)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 14) (((-1150) $) 11)) (-1731 (((-112) $ $) 10)))
-(((-490) (-13 (-1092) (-609 (-1150)) (-10 -8 (-15 -2899 ($ (-1150)))))) (T -490))
-((-2899 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-490)))))
-(-13 (-1092) (-609 (-1150)) (-10 -8 (-15 -2899 ($ (-1150)))))
-((-2988 (($ $) 15)) (-4207 (($ $) 24)) (-3014 (($ $) 12)) (-3023 (($ $) 10)) (-3001 (($ $) 17)) (-2978 (($ $) 22)))
-(((-491 |#1|) (-10 -8 (-15 -2978 (|#1| |#1|)) (-15 -3001 (|#1| |#1|)) (-15 -3023 (|#1| |#1|)) (-15 -3014 (|#1| |#1|)) (-15 -4207 (|#1| |#1|)) (-15 -2988 (|#1| |#1|))) (-492)) (T -491))
-NIL
-(-10 -8 (-15 -2978 (|#1| |#1|)) (-15 -3001 (|#1| |#1|)) (-15 -3023 (|#1| |#1|)) (-15 -3014 (|#1| |#1|)) (-15 -4207 (|#1| |#1|)) (-15 -2988 (|#1| |#1|)))
-((-2988 (($ $) 11)) (-4207 (($ $) 10)) (-3014 (($ $) 9)) (-3023 (($ $) 8)) (-3001 (($ $) 7)) (-2978 (($ $) 6)))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1756 (($ (-1150)) 8)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 14) (((-1150) $) 11)) (-1733 (((-112) $ $) 10)))
+(((-490) (-13 (-1092) (-609 (-1150)) (-10 -8 (-15 -1756 ($ (-1150)))))) (T -490))
+((-1756 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-490)))))
+(-13 (-1092) (-609 (-1150)) (-10 -8 (-15 -1756 ($ (-1150)))))
+((-2987 (($ $) 15)) (-4206 (($ $) 24)) (-3013 (($ $) 12)) (-3022 (($ $) 10)) (-3000 (($ $) 17)) (-2977 (($ $) 22)))
+(((-491 |#1|) (-10 -8 (-15 -2977 (|#1| |#1|)) (-15 -3000 (|#1| |#1|)) (-15 -3022 (|#1| |#1|)) (-15 -3013 (|#1| |#1|)) (-15 -4206 (|#1| |#1|)) (-15 -2987 (|#1| |#1|))) (-492)) (T -491))
+NIL
+(-10 -8 (-15 -2977 (|#1| |#1|)) (-15 -3000 (|#1| |#1|)) (-15 -3022 (|#1| |#1|)) (-15 -3013 (|#1| |#1|)) (-15 -4206 (|#1| |#1|)) (-15 -2987 (|#1| |#1|)))
+((-2987 (($ $) 11)) (-4206 (($ $) 10)) (-3013 (($ $) 9)) (-3022 (($ $) 8)) (-3000 (($ $) 7)) (-2977 (($ $) 6)))
(((-492) (-139)) (T -492))
-((-2988 (*1 *1 *1) (-4 *1 (-492))) (-4207 (*1 *1 *1) (-4 *1 (-492))) (-3014 (*1 *1 *1) (-4 *1 (-492))) (-3023 (*1 *1 *1) (-4 *1 (-492))) (-3001 (*1 *1 *1) (-4 *1 (-492))) (-2978 (*1 *1 *1) (-4 *1 (-492))))
-(-13 (-10 -8 (-15 -2978 ($ $)) (-15 -3001 ($ $)) (-15 -3023 ($ $)) (-15 -3014 ($ $)) (-15 -4207 ($ $)) (-15 -2988 ($ $))))
+((-2987 (*1 *1 *1) (-4 *1 (-492))) (-4206 (*1 *1 *1) (-4 *1 (-492))) (-3013 (*1 *1 *1) (-4 *1 (-492))) (-3022 (*1 *1 *1) (-4 *1 (-492))) (-3000 (*1 *1 *1) (-4 *1 (-492))) (-2977 (*1 *1 *1) (-4 *1 (-492))))
+(-13 (-10 -8 (-15 -2977 ($ $)) (-15 -3000 ($ $)) (-15 -3022 ($ $)) (-15 -3013 ($ $)) (-15 -4206 ($ $)) (-15 -2987 ($ $))))
((-1635 (((-417 |#4|) |#4| (-1 (-417 |#2|) |#2|)) 42)))
(((-493 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1635 ((-417 |#4|) |#4| (-1 (-417 |#2|) |#2|)))) (-362) (-1232 |#1|) (-13 (-362) (-146) (-719 |#1| |#2|)) (-1232 |#3|)) (T -493))
((-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362)) (-4 *7 (-13 (-362) (-146) (-719 *5 *6))) (-5 *2 (-417 *3)) (-5 *1 (-493 *5 *6 *7 *3)) (-4 *3 (-1232 *7)))))
(-10 -7 (-15 -1635 ((-417 |#4|) |#4| (-1 (-417 |#2|) |#2|))))
-((-4041 (((-112) $ $) NIL)) (-1404 (((-639 $) (-1164 $) (-1168)) NIL) (((-639 $) (-1164 $)) NIL) (((-639 $) (-947 $)) NIL)) (-1821 (($ (-1164 $) (-1168)) NIL) (($ (-1164 $)) NIL) (($ (-947 $)) NIL)) (-1952 (((-112) $) 38)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-1607 (((-112) $ $) 63)) (-1495 (((-639 (-608 $)) $) 47)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3165 (($ $ (-293 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-1643 (($ $) NIL)) (-2569 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-3646 (((-639 $) (-1164 $) (-1168)) NIL) (((-639 $) (-1164 $)) NIL) (((-639 $) (-947 $)) NIL)) (-1502 (($ (-1164 $) (-1168)) NIL) (($ (-1164 $)) NIL) (($ (-947 $)) NIL)) (-4048 (((-3 (-608 $) "failed") $) NIL) (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL)) (-3961 (((-608 $) $) NIL) (((-562) $) NIL) (((-406 (-562)) $) 49)) (-1811 (($ $ $) NIL)) (-2406 (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1545 (-683 (-406 (-562)))) (|:| |vec| (-1256 (-406 (-562))))) (-683 $) (-1256 $)) NIL) (((-683 (-406 (-562))) (-683 $)) NIL)) (-1955 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-1383 (($ $) NIL) (($ (-639 $)) NIL)) (-3936 (((-639 (-114)) $) NIL)) (-2876 (((-114) (-114)) NIL)) (-1957 (((-112) $) 41)) (-3130 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-4065 (((-1117 (-562) (-608 $)) $) 36)) (-1891 (($ $ (-562)) NIL)) (-2247 (((-1164 $) (-1164 $) (-608 $)) 77) (((-1164 $) (-1164 $) (-639 (-608 $))) 54) (($ $ (-608 $)) 66) (($ $ (-639 (-608 $))) 67)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1677 (((-1164 $) (-608 $)) 64 (|has| $ (-1044)))) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 $ $) (-608 $)) NIL)) (-4367 (((-3 (-608 $) "failed") $) NIL)) (-1564 (($ (-639 $)) NIL) (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1583 (((-639 (-608 $)) $) NIL)) (-4141 (($ (-114) $) NIL) (($ (-114) (-639 $)) NIL)) (-1776 (((-112) $ (-114)) NIL) (((-112) $ (-1168)) NIL)) (-1525 (($ $) NIL)) (-3060 (((-766) $) NIL)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ (-639 $)) NIL) (($ $ $) NIL)) (-4296 (((-112) $ $) NIL) (((-112) $ (-1168)) NIL)) (-1635 (((-417 $) $) NIL)) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3803 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-1433 (($ $ (-608 $) $) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-1168) (-1 $ (-639 $))) NIL) (($ $ (-1168) (-1 $ $)) NIL) (($ $ (-639 (-114)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-114) (-1 $ (-639 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-1577 (((-766) $) NIL)) (-2343 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-639 $)) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3790 (($ $) NIL) (($ $ $) NIL)) (-4029 (($ $ (-766)) NIL) (($ $) 35)) (-4076 (((-1117 (-562) (-608 $)) $) 19)) (-2096 (($ $) NIL (|has| $ (-1044)))) (-4208 (((-378) $) 91) (((-224) $) 99) (((-168 (-378)) $) 107)) (-4054 (((-857) $) NIL) (($ (-608 $)) NIL) (($ (-406 (-562))) NIL) (($ $) NIL) (($ (-562)) NIL) (($ (-1117 (-562) (-608 $))) 20)) (-2579 (((-766)) NIL)) (-2746 (($ $) NIL) (($ (-639 $)) NIL)) (-2803 (((-112) (-114)) 83)) (-2922 (((-112) $ $) NIL)) (-2286 (($) 10 T CONST)) (-2294 (($) 21 T CONST)) (-3114 (($ $ (-766)) NIL) (($ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 23)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)) (-1859 (($ $ $) 43)) (-1848 (($ $ $) NIL) (($ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-406 (-562))) NIL) (($ $ (-562)) 45) (($ $ (-766)) NIL) (($ $ (-916)) NIL)) (* (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL) (($ $ $) 26) (($ (-562) $) NIL) (($ (-766) $) NIL) (($ (-916) $) NIL)))
-(((-494) (-13 (-301) (-27) (-1033 (-562)) (-1033 (-406 (-562))) (-635 (-562)) (-1017) (-635 (-406 (-562))) (-146) (-610 (-168 (-378))) (-232) (-10 -8 (-15 -4054 ($ (-1117 (-562) (-608 $)))) (-15 -4065 ((-1117 (-562) (-608 $)) $)) (-15 -4076 ((-1117 (-562) (-608 $)) $)) (-15 -1955 ($ $)) (-15 -1607 ((-112) $ $)) (-15 -2247 ((-1164 $) (-1164 $) (-608 $))) (-15 -2247 ((-1164 $) (-1164 $) (-639 (-608 $)))) (-15 -2247 ($ $ (-608 $))) (-15 -2247 ($ $ (-639 (-608 $))))))) (T -494))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1117 (-562) (-608 (-494)))) (-5 *1 (-494)))) (-4065 (*1 *2 *1) (-12 (-5 *2 (-1117 (-562) (-608 (-494)))) (-5 *1 (-494)))) (-4076 (*1 *2 *1) (-12 (-5 *2 (-1117 (-562) (-608 (-494)))) (-5 *1 (-494)))) (-1955 (*1 *1 *1) (-5 *1 (-494))) (-1607 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-494)))) (-2247 (*1 *2 *2 *3) (-12 (-5 *2 (-1164 (-494))) (-5 *3 (-608 (-494))) (-5 *1 (-494)))) (-2247 (*1 *2 *2 *3) (-12 (-5 *2 (-1164 (-494))) (-5 *3 (-639 (-608 (-494)))) (-5 *1 (-494)))) (-2247 (*1 *1 *1 *2) (-12 (-5 *2 (-608 (-494))) (-5 *1 (-494)))) (-2247 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-608 (-494)))) (-5 *1 (-494)))))
-(-13 (-301) (-27) (-1033 (-562)) (-1033 (-406 (-562))) (-635 (-562)) (-1017) (-635 (-406 (-562))) (-146) (-610 (-168 (-378))) (-232) (-10 -8 (-15 -4054 ($ (-1117 (-562) (-608 $)))) (-15 -4065 ((-1117 (-562) (-608 $)) $)) (-15 -4076 ((-1117 (-562) (-608 $)) $)) (-15 -1955 ($ $)) (-15 -1607 ((-112) $ $)) (-15 -2247 ((-1164 $) (-1164 $) (-608 $))) (-15 -2247 ((-1164 $) (-1164 $) (-639 (-608 $)))) (-15 -2247 ($ $ (-608 $))) (-15 -2247 ($ $ (-639 (-608 $))))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3381 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4403))) (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) |#1|) 25 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) 22 (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) 21)) (-4264 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1458 (($ (-766) |#1|) 14)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) 12 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-1610 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-562) $) 23 (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 16 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 17) (($ (-1 |#1| |#1| |#1|) $ $) 19)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3297 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2716 (($ $ |#1|) 10 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) 13)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) 24) (($ $ (-1223 (-562))) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) NIL)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) 9 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-1763 (((-639 $) (-1164 $) (-1168)) NIL) (((-639 $) (-1164 $)) NIL) (((-639 $) (-947 $)) NIL)) (-2391 (($ (-1164 $) (-1168)) NIL) (($ (-1164 $)) NIL) (($ (-947 $)) NIL)) (-4325 (((-112) $) 38)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-4081 (((-112) $ $) 63)) (-1501 (((-639 (-608 $)) $) 47)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3164 (($ $ (-293 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1644 (($ $) NIL)) (-1436 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-1431 (((-639 $) (-1164 $) (-1168)) NIL) (((-639 $) (-1164 $)) NIL) (((-639 $) (-947 $)) NIL)) (-2608 (($ (-1164 $) (-1168)) NIL) (($ (-1164 $)) NIL) (($ (-947 $)) NIL)) (-4048 (((-3 (-608 $) "failed") $) NIL) (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL)) (-3960 (((-608 $) $) NIL) (((-562) $) NIL) (((-406 (-562)) $) 49)) (-1810 (($ $ $) NIL)) (-3449 (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1767 (-683 (-406 (-562)))) (|:| |vec| (-1256 (-406 (-562))))) (-683 $) (-1256 $)) NIL) (((-683 (-406 (-562))) (-683 $)) NIL)) (-1954 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2229 (($ $) NIL) (($ (-639 $)) NIL)) (-4364 (((-639 (-114)) $) NIL)) (-1502 (((-114) (-114)) NIL)) (-4367 (((-112) $) 41)) (-3152 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-4063 (((-1117 (-562) (-608 $)) $) 36)) (-1895 (($ $ (-562)) NIL)) (-4363 (((-1164 $) (-1164 $) (-608 $)) 77) (((-1164 $) (-1164 $) (-639 (-608 $))) 54) (($ $ (-608 $)) 66) (($ $ (-639 (-608 $))) 67)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3476 (((-1164 $) (-608 $)) 64 (|has| $ (-1044)))) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 $ $) (-608 $)) NIL)) (-4068 (((-3 (-608 $) "failed") $) NIL)) (-1564 (($ (-639 $)) NIL) (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1582 (((-639 (-608 $)) $) NIL)) (-4141 (($ (-114) $) NIL) (($ (-114) (-639 $)) NIL)) (-3115 (((-112) $ (-114)) NIL) (((-112) $ (-1168)) NIL)) (-1525 (($ $) NIL)) (-3059 (((-766) $) NIL)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ (-639 $)) NIL) (($ $ $) NIL)) (-1533 (((-112) $ $) NIL) (((-112) $ (-1168)) NIL)) (-1635 (((-417 $) $) NIL)) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2438 (((-112) $) NIL (|has| $ (-1033 (-562))))) (-1433 (($ $ (-608 $) $) NIL) (($ $ (-639 (-608 $)) (-639 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-1168)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-1168) (-1 $ (-639 $))) NIL) (($ $ (-1168) (-1 $ $)) NIL) (($ $ (-639 (-114)) (-639 (-1 $ $))) NIL) (($ $ (-639 (-114)) (-639 (-1 $ (-639 $)))) NIL) (($ $ (-114) (-1 $ (-639 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-2044 (((-766) $) NIL)) (-2343 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-639 $)) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3461 (($ $) NIL) (($ $ $) NIL)) (-4029 (($ $ (-766)) NIL) (($ $) 35)) (-4079 (((-1117 (-562) (-608 $)) $) 19)) (-3371 (($ $) NIL (|has| $ (-1044)))) (-4208 (((-378) $) 91) (((-224) $) 99) (((-168 (-378)) $) 107)) (-4053 (((-857) $) NIL) (($ (-608 $)) NIL) (($ (-406 (-562))) NIL) (($ $) NIL) (($ (-562)) NIL) (($ (-1117 (-562) (-608 $))) 20)) (-1568 (((-766)) NIL)) (-2745 (($ $) NIL) (($ (-639 $)) NIL)) (-2036 (((-112) (-114)) 83)) (-3799 (((-112) $ $) NIL)) (-2285 (($) 10 T CONST)) (-2294 (($) 21 T CONST)) (-3113 (($ $ (-766)) NIL) (($ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 23)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)) (-1859 (($ $ $) 43)) (-1847 (($ $ $) NIL) (($ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-406 (-562))) NIL) (($ $ (-562)) 45) (($ $ (-766)) NIL) (($ $ (-916)) NIL)) (* (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL) (($ $ $) 26) (($ (-562) $) NIL) (($ (-766) $) NIL) (($ (-916) $) NIL)))
+(((-494) (-13 (-301) (-27) (-1033 (-562)) (-1033 (-406 (-562))) (-635 (-562)) (-1017) (-635 (-406 (-562))) (-146) (-610 (-168 (-378))) (-232) (-10 -8 (-15 -4053 ($ (-1117 (-562) (-608 $)))) (-15 -4063 ((-1117 (-562) (-608 $)) $)) (-15 -4079 ((-1117 (-562) (-608 $)) $)) (-15 -1954 ($ $)) (-15 -4081 ((-112) $ $)) (-15 -4363 ((-1164 $) (-1164 $) (-608 $))) (-15 -4363 ((-1164 $) (-1164 $) (-639 (-608 $)))) (-15 -4363 ($ $ (-608 $))) (-15 -4363 ($ $ (-639 (-608 $))))))) (T -494))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1117 (-562) (-608 (-494)))) (-5 *1 (-494)))) (-4063 (*1 *2 *1) (-12 (-5 *2 (-1117 (-562) (-608 (-494)))) (-5 *1 (-494)))) (-4079 (*1 *2 *1) (-12 (-5 *2 (-1117 (-562) (-608 (-494)))) (-5 *1 (-494)))) (-1954 (*1 *1 *1) (-5 *1 (-494))) (-4081 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-494)))) (-4363 (*1 *2 *2 *3) (-12 (-5 *2 (-1164 (-494))) (-5 *3 (-608 (-494))) (-5 *1 (-494)))) (-4363 (*1 *2 *2 *3) (-12 (-5 *2 (-1164 (-494))) (-5 *3 (-639 (-608 (-494)))) (-5 *1 (-494)))) (-4363 (*1 *1 *1 *2) (-12 (-5 *2 (-608 (-494))) (-5 *1 (-494)))) (-4363 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-608 (-494)))) (-5 *1 (-494)))))
+(-13 (-301) (-27) (-1033 (-562)) (-1033 (-406 (-562))) (-635 (-562)) (-1017) (-635 (-406 (-562))) (-146) (-610 (-168 (-378))) (-232) (-10 -8 (-15 -4053 ($ (-1117 (-562) (-608 $)))) (-15 -4063 ((-1117 (-562) (-608 $)) $)) (-15 -4079 ((-1117 (-562) (-608 $)) $)) (-15 -1954 ($ $)) (-15 -4081 ((-112) $ $)) (-15 -4363 ((-1164 $) (-1164 $) (-608 $))) (-15 -4363 ((-1164 $) (-1164 $) (-639 (-608 $)))) (-15 -4363 ($ $ (-608 $))) (-15 -4363 ($ $ (-639 (-608 $))))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3737 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4404))) (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) |#1|) 25 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) 22 (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) 21)) (-4265 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1458 (($ (-766) |#1|) 14)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) 12 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-4103 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-562) $) 23 (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 16 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 17) (($ (-1 |#1| |#1| |#1|) $ $) 19)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3295 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3510 (($ $ |#1|) 10 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) 13)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) 24) (($ $ (-1223 (-562))) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) NIL)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) 9 (|has| $ (-6 -4403)))))
(((-495 |#1| |#2|) (-19 |#1|) (-1207) (-562)) (T -495))
NIL
(-19 |#1|)
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) (-562) |#1|) NIL)) (-1928 (($ $ (-562) (-495 |#1| |#3|)) NIL)) (-3003 (($ $ (-562) (-495 |#1| |#2|)) NIL)) (-1800 (($) NIL T CONST)) (-3796 (((-495 |#1| |#3|) $ (-562)) NIL)) (-1505 ((|#1| $ (-562) (-562) |#1|) NIL)) (-1420 ((|#1| $ (-562) (-562)) NIL)) (-1720 (((-639 |#1|) $) NIL)) (-2699 (((-766) $) NIL)) (-1458 (($ (-766) (-766) |#1|) NIL)) (-2709 (((-766) $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-2783 (((-562) $) NIL)) (-4217 (((-562) $) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4088 (((-562) $) NIL)) (-2453 (((-562) $) NIL)) (-1490 (($ (-1 |#1| |#1|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2716 (($ $ |#1|) NIL)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ (-562) (-562)) NIL) ((|#1| $ (-562) (-562) |#1|) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-2211 (((-495 |#1| |#2|) $ (-562)) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) (-562) |#1|) NIL)) (-2267 (($ $ (-562) (-495 |#1| |#3|)) NIL)) (-3320 (($ $ (-562) (-495 |#1| |#2|)) NIL)) (-3329 (($) NIL T CONST)) (-3511 (((-495 |#1| |#3|) $ (-562)) NIL)) (-1507 ((|#1| $ (-562) (-562) |#1|) NIL)) (-1420 ((|#1| $ (-562) (-562)) NIL)) (-1720 (((-639 |#1|) $) NIL)) (-2698 (((-766) $) NIL)) (-1458 (($ (-766) (-766) |#1|) NIL)) (-2708 (((-766) $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1808 (((-562) $) NIL)) (-2028 (((-562) $) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3269 (((-562) $) NIL)) (-2727 (((-562) $) NIL)) (-1491 (($ (-1 |#1| |#1|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3510 (($ $ |#1|) NIL)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ (-562) (-562)) NIL) ((|#1| $ (-562) (-562) |#1|) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-2208 (((-495 |#1| |#2|) $ (-562)) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-496 |#1| |#2| |#3|) (-57 |#1| (-495 |#1| |#3|) (-495 |#1| |#2|)) (-1207) (-562) (-562)) (T -496))
NIL
(-57 |#1| (-495 |#1| |#3|) (-495 |#1| |#2|))
-((-2104 (((-639 (-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) (-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) (-766) (-766)) 27)) (-3414 (((-639 (-1164 |#1|)) |#1| (-766) (-766) (-766)) 34)) (-3757 (((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) (-639 |#3|) (-639 (-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) (-766)) 84)))
-(((-497 |#1| |#2| |#3|) (-10 -7 (-15 -3414 ((-639 (-1164 |#1|)) |#1| (-766) (-766) (-766))) (-15 -2104 ((-639 (-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) (-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) (-766) (-766))) (-15 -3757 ((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) (-639 |#3|) (-639 (-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) (-766)))) (-348) (-1232 |#1|) (-1232 |#2|)) (T -497))
-((-3757 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 (-2 (|:| -3928 (-683 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-683 *7))))) (-5 *5 (-766)) (-4 *8 (-1232 *7)) (-4 *7 (-1232 *6)) (-4 *6 (-348)) (-5 *2 (-2 (|:| -3928 (-683 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-683 *7)))) (-5 *1 (-497 *6 *7 *8)))) (-2104 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-766)) (-4 *5 (-348)) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-2 (|:| -3928 (-683 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-683 *6))))) (-5 *1 (-497 *5 *6 *7)) (-5 *3 (-2 (|:| -3928 (-683 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-683 *6)))) (-4 *7 (-1232 *6)))) (-3414 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-766)) (-4 *3 (-348)) (-4 *5 (-1232 *3)) (-5 *2 (-639 (-1164 *3))) (-5 *1 (-497 *3 *5 *6)) (-4 *6 (-1232 *5)))))
-(-10 -7 (-15 -3414 ((-639 (-1164 |#1|)) |#1| (-766) (-766) (-766))) (-15 -2104 ((-639 (-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) (-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) (-766) (-766))) (-15 -3757 ((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) (-639 |#3|) (-639 (-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) (-766))))
-((-3573 (((-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) (-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) (-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|)))) 62)) (-3894 ((|#1| (-683 |#1|) |#1| (-766)) 25)) (-3557 (((-766) (-766) (-766)) 30)) (-1865 (((-683 |#1|) (-683 |#1|) (-683 |#1|)) 42)) (-3112 (((-683 |#1|) (-683 |#1|) (-683 |#1|) |#1|) 50) (((-683 |#1|) (-683 |#1|) (-683 |#1|)) 47)) (-3799 ((|#1| (-683 |#1|) (-683 |#1|) |#1| (-562)) 29)) (-3436 ((|#1| (-683 |#1|)) 18)))
-(((-498 |#1| |#2| |#3|) (-10 -7 (-15 -3436 (|#1| (-683 |#1|))) (-15 -3894 (|#1| (-683 |#1|) |#1| (-766))) (-15 -3799 (|#1| (-683 |#1|) (-683 |#1|) |#1| (-562))) (-15 -3557 ((-766) (-766) (-766))) (-15 -3112 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3112 ((-683 |#1|) (-683 |#1|) (-683 |#1|) |#1|)) (-15 -1865 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3573 ((-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) (-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) (-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|)))))) (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $)))) (-1232 |#1|) (-408 |#1| |#2|)) (T -498))
-((-3573 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -3928 (-683 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-683 *3)))) (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))) (-1865 (*1 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))) (-3112 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-683 *3)) (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))) (-3112 (*1 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))) (-3557 (*1 *2 *2 *2) (-12 (-5 *2 (-766)) (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))) (-3799 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-683 *2)) (-5 *4 (-562)) (-4 *2 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $))))) (-4 *5 (-1232 *2)) (-5 *1 (-498 *2 *5 *6)) (-4 *6 (-408 *2 *5)))) (-3894 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-683 *2)) (-5 *4 (-766)) (-4 *2 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $))))) (-4 *5 (-1232 *2)) (-5 *1 (-498 *2 *5 *6)) (-4 *6 (-408 *2 *5)))) (-3436 (*1 *2 *3) (-12 (-5 *3 (-683 *2)) (-4 *4 (-1232 *2)) (-4 *2 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $))))) (-5 *1 (-498 *2 *4 *5)) (-4 *5 (-408 *2 *4)))))
-(-10 -7 (-15 -3436 (|#1| (-683 |#1|))) (-15 -3894 (|#1| (-683 |#1|) |#1| (-766))) (-15 -3799 (|#1| (-683 |#1|) (-683 |#1|) |#1| (-562))) (-15 -3557 ((-766) (-766) (-766))) (-15 -3112 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3112 ((-683 |#1|) (-683 |#1|) (-683 |#1|) |#1|)) (-15 -1865 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3573 ((-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) (-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) (-2 (|:| -3928 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))))))
-((-4041 (((-112) $ $) NIL)) (-3295 (($ $) NIL)) (-2265 (($ $ $) 35)) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) $) NIL (|has| (-112) (-845))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-3381 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-845)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4403)))) (-1395 (($ $) NIL (|has| (-112) (-845))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-4200 (((-112) $ (-1223 (-562)) (-112)) NIL (|has| $ (-6 -4403))) (((-112) $ (-562) (-112)) 36 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092))))) (-1475 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4402))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092))))) (-1955 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092))))) (-1505 (((-112) $ (-562) (-112)) NIL (|has| $ (-6 -4403)))) (-1420 (((-112) $ (-562)) NIL)) (-4264 (((-562) (-112) $ (-562)) NIL (|has| (-112) (-1092))) (((-562) (-112) $) NIL (|has| (-112) (-1092))) (((-562) (-1 (-112) (-112)) $) NIL)) (-1720 (((-639 (-112)) $) NIL (|has| $ (-6 -4402)))) (-2255 (($ $ $) 33)) (-2236 (($ $) NIL)) (-1325 (($ $ $) NIL)) (-1458 (($ (-766) (-112)) 23)) (-2134 (($ $ $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) 8 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL)) (-1610 (($ $ $) NIL (|has| (-112) (-845))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-1912 (((-639 (-112)) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL)) (-1490 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-112) (-112) (-112)) $ $) 30) (($ (-1 (-112) (-112)) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-3297 (($ $ $ (-562)) NIL) (($ (-112) $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-112) $) NIL (|has| (-562) (-845)))) (-3251 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-2716 (($ $ (-112)) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-112)) (-639 (-112))) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-293 (-112))) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-639 (-293 (-112)))) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092))))) (-2411 (((-639 (-112)) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) 24)) (-2343 (($ $ (-1223 (-562))) NIL) (((-112) $ (-562)) 18) (((-112) $ (-562) (-112)) NIL)) (-2880 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-1723 (((-766) (-112) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-112) (-1092)))) (((-766) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4402)))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) 25)) (-4208 (((-535) $) NIL (|has| (-112) (-610 (-535))))) (-4066 (($ (-639 (-112))) NIL)) (-2767 (($ (-639 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-4054 (((-857) $) 22)) (-1744 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4402)))) (-2246 (($ $ $) 31)) (-2308 (($ $ $) NIL)) (-2937 (($ $ $) 39)) (-2945 (($ $) 37)) (-2926 (($ $ $) 38)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 26)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 27)) (-2298 (($ $ $) NIL)) (-3492 (((-766) $) 10 (|has| $ (-6 -4402)))))
-(((-499 |#1|) (-13 (-123) (-10 -8 (-15 -2945 ($ $)) (-15 -2937 ($ $ $)) (-15 -2926 ($ $ $)))) (-562)) (T -499))
-((-2945 (*1 *1 *1) (-12 (-5 *1 (-499 *2)) (-14 *2 (-562)))) (-2937 (*1 *1 *1 *1) (-12 (-5 *1 (-499 *2)) (-14 *2 (-562)))) (-2926 (*1 *1 *1 *1) (-12 (-5 *1 (-499 *2)) (-14 *2 (-562)))))
-(-13 (-123) (-10 -8 (-15 -2945 ($ $)) (-15 -2937 ($ $ $)) (-15 -2926 ($ $ $))))
-((-2634 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1164 |#4|)) 34)) (-3995 (((-1164 |#4|) (-1 |#4| |#1|) |#2|) 30) ((|#2| (-1 |#1| |#4|) (-1164 |#4|)) 21)) (-1361 (((-3 (-683 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-683 (-1164 |#4|))) 45)) (-3215 (((-1164 (-1164 |#4|)) (-1 |#4| |#1|) |#3|) 54)))
-(((-500 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3995 (|#2| (-1 |#1| |#4|) (-1164 |#4|))) (-15 -3995 ((-1164 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2634 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1164 |#4|))) (-15 -1361 ((-3 (-683 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-683 (-1164 |#4|)))) (-15 -3215 ((-1164 (-1164 |#4|)) (-1 |#4| |#1|) |#3|))) (-1044) (-1232 |#1|) (-1232 |#2|) (-1044)) (T -500))
-((-3215 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1044)) (-4 *7 (-1044)) (-4 *6 (-1232 *5)) (-5 *2 (-1164 (-1164 *7))) (-5 *1 (-500 *5 *6 *4 *7)) (-4 *4 (-1232 *6)))) (-1361 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-683 (-1164 *8))) (-4 *5 (-1044)) (-4 *8 (-1044)) (-4 *6 (-1232 *5)) (-5 *2 (-683 *6)) (-5 *1 (-500 *5 *6 *7 *8)) (-4 *7 (-1232 *6)))) (-2634 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1164 *7)) (-4 *5 (-1044)) (-4 *7 (-1044)) (-4 *2 (-1232 *5)) (-5 *1 (-500 *5 *2 *6 *7)) (-4 *6 (-1232 *2)))) (-3995 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1044)) (-4 *7 (-1044)) (-4 *4 (-1232 *5)) (-5 *2 (-1164 *7)) (-5 *1 (-500 *5 *4 *6 *7)) (-4 *6 (-1232 *4)))) (-3995 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1164 *7)) (-4 *5 (-1044)) (-4 *7 (-1044)) (-4 *2 (-1232 *5)) (-5 *1 (-500 *5 *2 *6 *7)) (-4 *6 (-1232 *2)))))
-(-10 -7 (-15 -3995 (|#2| (-1 |#1| |#4|) (-1164 |#4|))) (-15 -3995 ((-1164 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2634 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1164 |#4|))) (-15 -1361 ((-3 (-683 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-683 (-1164 |#4|)))) (-15 -3215 ((-1164 (-1164 |#4|)) (-1 |#4| |#1|) |#3|)))
-((-4041 (((-112) $ $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1966 (((-1261) $) 19)) (-2343 (((-1150) $ (-1168)) 23)) (-1479 (((-1261) $) 15)) (-4054 (((-857) $) 21) (($ (-1150)) 20)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 9)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 8)))
-(((-501) (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $)) (-15 -1966 ((-1261) $)) (-15 -4054 ($ (-1150)))))) (T -501))
-((-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1150)) (-5 *1 (-501)))) (-1479 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-501)))) (-1966 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-501)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-501)))))
-(-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $)) (-15 -1966 ((-1261) $)) (-15 -4054 ($ (-1150)))))
-((-4096 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-1917 ((|#1| |#4|) 10)) (-1471 ((|#3| |#4|) 17)))
-(((-502 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1917 (|#1| |#4|)) (-15 -1471 (|#3| |#4|)) (-15 -4096 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-554) (-987 |#1|) (-372 |#1|) (-372 |#2|)) (T -502))
-((-4096 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-987 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-502 *4 *5 *6 *3)) (-4 *6 (-372 *4)) (-4 *3 (-372 *5)))) (-1471 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-987 *4)) (-4 *2 (-372 *4)) (-5 *1 (-502 *4 *5 *2 *3)) (-4 *3 (-372 *5)))) (-1917 (*1 *2 *3) (-12 (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-502 *2 *4 *5 *3)) (-4 *5 (-372 *2)) (-4 *3 (-372 *4)))))
-(-10 -7 (-15 -1917 (|#1| |#4|)) (-15 -1471 (|#3| |#4|)) (-15 -4096 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
-((-4041 (((-112) $ $) NIL)) (-2231 (((-112) $ (-639 |#3|)) 103) (((-112) $) 104)) (-1952 (((-112) $) 147)) (-1658 (($ $ |#4|) 95) (($ $ |#4| (-639 |#3|)) 99)) (-3842 (((-1157 (-639 (-947 |#1|)) (-639 (-293 (-947 |#1|)))) (-639 |#4|)) 140 (|has| |#3| (-610 (-1168))))) (-2097 (($ $ $) 89) (($ $ |#4|) 87)) (-1957 (((-112) $) 146)) (-1837 (($ $) 107)) (-2913 (((-1150) $) NIL)) (-4376 (($ $ $) 81) (($ (-639 $)) 83)) (-1886 (((-112) |#4| $) 106)) (-3601 (((-112) $ $) 70)) (-1366 (($ (-639 |#4|)) 88)) (-1709 (((-1112) $) NIL)) (-2619 (($ (-639 |#4|)) 144)) (-3622 (((-112) $) 145)) (-2769 (($ $) 72)) (-3795 (((-639 |#4|) $) 56)) (-1789 (((-2 (|:| |mval| (-683 |#1|)) (|:| |invmval| (-683 |#1|)) (|:| |genIdeal| $)) $ (-639 |#3|)) NIL)) (-2428 (((-112) |#4| $) 75)) (-3627 (((-562) $ (-639 |#3|)) 108) (((-562) $) 109)) (-4054 (((-857) $) 143) (($ (-639 |#4|)) 84)) (-1581 (($ (-2 (|:| |mval| (-683 |#1|)) (|:| |invmval| (-683 |#1|)) (|:| |genIdeal| $))) NIL)) (-1731 (((-112) $ $) 71)) (-1835 (($ $ $) 91)) (** (($ $ (-766)) 94)) (* (($ $ $) 93)))
-(((-503 |#1| |#2| |#3| |#4|) (-13 (-1092) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-766))) (-15 -1835 ($ $ $)) (-15 -1957 ((-112) $)) (-15 -1952 ((-112) $)) (-15 -2428 ((-112) |#4| $)) (-15 -3601 ((-112) $ $)) (-15 -1886 ((-112) |#4| $)) (-15 -2231 ((-112) $ (-639 |#3|))) (-15 -2231 ((-112) $)) (-15 -4376 ($ $ $)) (-15 -4376 ($ (-639 $))) (-15 -2097 ($ $ $)) (-15 -2097 ($ $ |#4|)) (-15 -2769 ($ $)) (-15 -1789 ((-2 (|:| |mval| (-683 |#1|)) (|:| |invmval| (-683 |#1|)) (|:| |genIdeal| $)) $ (-639 |#3|))) (-15 -1581 ($ (-2 (|:| |mval| (-683 |#1|)) (|:| |invmval| (-683 |#1|)) (|:| |genIdeal| $)))) (-15 -3627 ((-562) $ (-639 |#3|))) (-15 -3627 ((-562) $)) (-15 -1837 ($ $)) (-15 -1366 ($ (-639 |#4|))) (-15 -2619 ($ (-639 |#4|))) (-15 -3622 ((-112) $)) (-15 -3795 ((-639 |#4|) $)) (-15 -4054 ($ (-639 |#4|))) (-15 -1658 ($ $ |#4|)) (-15 -1658 ($ $ |#4| (-639 |#3|))) (IF (|has| |#3| (-610 (-1168))) (-15 -3842 ((-1157 (-639 (-947 |#1|)) (-639 (-293 (-947 |#1|)))) (-639 |#4|))) |%noBranch|))) (-362) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -503))
-((* (*1 *1 *1 *1) (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845)) (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-1835 (*1 *1 *1 *1) (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845)) (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (-1957 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-1952 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-2428 (*1 *2 *3 *1) (-12 (-4 *4 (-362)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))) (-3601 (*1 *2 *1 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-1886 (*1 *2 *3 *1) (-12 (-4 *4 (-362)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))) (-2231 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788)) (-5 *2 (-112)) (-5 *1 (-503 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))) (-2231 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-4376 (*1 *1 *1 *1) (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845)) (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (-4376 (*1 *1 *2) (-12 (-5 *2 (-639 (-503 *3 *4 *5 *6))) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-2097 (*1 *1 *1 *1) (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845)) (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (-2097 (*1 *1 *1 *2) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-944 *3 *4 *5)))) (-2769 (*1 *1 *1) (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845)) (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (-1789 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788)) (-5 *2 (-2 (|:| |mval| (-683 *4)) (|:| |invmval| (-683 *4)) (|:| |genIdeal| (-503 *4 *5 *6 *7)))) (-5 *1 (-503 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))) (-1581 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-683 *3)) (|:| |invmval| (-683 *3)) (|:| |genIdeal| (-503 *3 *4 *5 *6)))) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-3627 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788)) (-5 *2 (-562)) (-5 *1 (-503 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))) (-3627 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-562)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-1837 (*1 *1 *1) (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845)) (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (-1366 (*1 *1 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)))) (-2619 (*1 *1 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)))) (-3622 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-3795 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *6)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)))) (-1658 (*1 *1 *1 *2) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-944 *3 *4 *5)))) (-1658 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788)) (-5 *1 (-503 *4 *5 *6 *2)) (-4 *2 (-944 *4 *5 *6)))) (-3842 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *5 *6)) (-4 *6 (-610 (-1168))) (-4 *4 (-362)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1157 (-639 (-947 *4)) (-639 (-293 (-947 *4))))) (-5 *1 (-503 *4 *5 *6 *7)))))
-(-13 (-1092) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-766))) (-15 -1835 ($ $ $)) (-15 -1957 ((-112) $)) (-15 -1952 ((-112) $)) (-15 -2428 ((-112) |#4| $)) (-15 -3601 ((-112) $ $)) (-15 -1886 ((-112) |#4| $)) (-15 -2231 ((-112) $ (-639 |#3|))) (-15 -2231 ((-112) $)) (-15 -4376 ($ $ $)) (-15 -4376 ($ (-639 $))) (-15 -2097 ($ $ $)) (-15 -2097 ($ $ |#4|)) (-15 -2769 ($ $)) (-15 -1789 ((-2 (|:| |mval| (-683 |#1|)) (|:| |invmval| (-683 |#1|)) (|:| |genIdeal| $)) $ (-639 |#3|))) (-15 -1581 ($ (-2 (|:| |mval| (-683 |#1|)) (|:| |invmval| (-683 |#1|)) (|:| |genIdeal| $)))) (-15 -3627 ((-562) $ (-639 |#3|))) (-15 -3627 ((-562) $)) (-15 -1837 ($ $)) (-15 -1366 ($ (-639 |#4|))) (-15 -2619 ($ (-639 |#4|))) (-15 -3622 ((-112) $)) (-15 -3795 ((-639 |#4|) $)) (-15 -4054 ($ (-639 |#4|))) (-15 -1658 ($ $ |#4|)) (-15 -1658 ($ $ |#4| (-639 |#3|))) (IF (|has| |#3| (-610 (-1168))) (-15 -3842 ((-1157 (-639 (-947 |#1|)) (-639 (-293 (-947 |#1|)))) (-639 |#4|))) |%noBranch|)))
-((-4321 (((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) 148)) (-3054 (((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) 149)) (-1666 (((-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) 107)) (-2717 (((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) NIL)) (-4104 (((-639 (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) 151)) (-3791 (((-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-639 (-859 |#1|))) 163)))
-(((-504 |#1| |#2|) (-10 -7 (-15 -4321 ((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -3054 ((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -2717 ((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -1666 ((-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -4104 ((-639 (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -3791 ((-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-639 (-859 |#1|))))) (-639 (-1168)) (-766)) (T -504))
-((-3791 (*1 *2 *2 *3) (-12 (-5 *2 (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4) (-246 *4 (-406 (-562))))) (-5 *3 (-639 (-859 *4))) (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *1 (-504 *4 *5)))) (-4104 (*1 *2 *3) (-12 (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-639 (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4) (-246 *4 (-406 (-562)))))) (-5 *1 (-504 *4 *5)) (-5 *3 (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4) (-246 *4 (-406 (-562))))))) (-1666 (*1 *2 *2) (-12 (-5 *2 (-503 (-406 (-562)) (-239 *4 (-766)) (-859 *3) (-246 *3 (-406 (-562))))) (-14 *3 (-639 (-1168))) (-14 *4 (-766)) (-5 *1 (-504 *3 *4)))) (-2717 (*1 *2 *3) (-12 (-5 *3 (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4) (-246 *4 (-406 (-562))))) (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-112)) (-5 *1 (-504 *4 *5)))) (-3054 (*1 *2 *3) (-12 (-5 *3 (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4) (-246 *4 (-406 (-562))))) (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-112)) (-5 *1 (-504 *4 *5)))) (-4321 (*1 *2 *3) (-12 (-5 *3 (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4) (-246 *4 (-406 (-562))))) (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-112)) (-5 *1 (-504 *4 *5)))))
-(-10 -7 (-15 -4321 ((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -3054 ((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -2717 ((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -1666 ((-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -4104 ((-639 (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -3791 ((-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-639 (-859 |#1|)))))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 11) (((-1168) $) 9)) (-1731 (((-112) $ $) 7)))
+((-3452 (((-639 (-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) (-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) (-766) (-766)) 27)) (-4072 (((-639 (-1164 |#1|)) |#1| (-766) (-766) (-766)) 34)) (-3143 (((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) (-639 |#3|) (-639 (-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) (-766)) 84)))
+(((-497 |#1| |#2| |#3|) (-10 -7 (-15 -4072 ((-639 (-1164 |#1|)) |#1| (-766) (-766) (-766))) (-15 -3452 ((-639 (-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) (-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) (-766) (-766))) (-15 -3143 ((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) (-639 |#3|) (-639 (-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) (-766)))) (-348) (-1232 |#1|) (-1232 |#2|)) (T -497))
+((-3143 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 (-2 (|:| -4291 (-683 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-683 *7))))) (-5 *5 (-766)) (-4 *8 (-1232 *7)) (-4 *7 (-1232 *6)) (-4 *6 (-348)) (-5 *2 (-2 (|:| -4291 (-683 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-683 *7)))) (-5 *1 (-497 *6 *7 *8)))) (-3452 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-766)) (-4 *5 (-348)) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-2 (|:| -4291 (-683 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-683 *6))))) (-5 *1 (-497 *5 *6 *7)) (-5 *3 (-2 (|:| -4291 (-683 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-683 *6)))) (-4 *7 (-1232 *6)))) (-4072 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-766)) (-4 *3 (-348)) (-4 *5 (-1232 *3)) (-5 *2 (-639 (-1164 *3))) (-5 *1 (-497 *3 *5 *6)) (-4 *6 (-1232 *5)))))
+(-10 -7 (-15 -4072 ((-639 (-1164 |#1|)) |#1| (-766) (-766) (-766))) (-15 -3452 ((-639 (-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) (-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) (-766) (-766))) (-15 -3143 ((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) (-639 |#3|) (-639 (-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) (-766))))
+((-2026 (((-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) (-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) (-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|)))) 62)) (-2141 ((|#1| (-683 |#1|) |#1| (-766)) 25)) (-1856 (((-766) (-766) (-766)) 30)) (-2805 (((-683 |#1|) (-683 |#1|) (-683 |#1|)) 42)) (-2979 (((-683 |#1|) (-683 |#1|) (-683 |#1|) |#1|) 50) (((-683 |#1|) (-683 |#1|) (-683 |#1|)) 47)) (-2408 ((|#1| (-683 |#1|) (-683 |#1|) |#1| (-562)) 29)) (-3042 ((|#1| (-683 |#1|)) 18)))
+(((-498 |#1| |#2| |#3|) (-10 -7 (-15 -3042 (|#1| (-683 |#1|))) (-15 -2141 (|#1| (-683 |#1|) |#1| (-766))) (-15 -2408 (|#1| (-683 |#1|) (-683 |#1|) |#1| (-562))) (-15 -1856 ((-766) (-766) (-766))) (-15 -2979 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -2979 ((-683 |#1|) (-683 |#1|) (-683 |#1|) |#1|)) (-15 -2805 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -2026 ((-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) (-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) (-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|)))))) (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $)))) (-1232 |#1|) (-408 |#1| |#2|)) (T -498))
+((-2026 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -4291 (-683 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-683 *3)))) (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))) (-2805 (*1 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))) (-2979 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-683 *3)) (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))) (-2979 (*1 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))) (-1856 (*1 *2 *2 *2) (-12 (-5 *2 (-766)) (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $))))) (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))) (-2408 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-683 *2)) (-5 *4 (-562)) (-4 *2 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $))))) (-4 *5 (-1232 *2)) (-5 *1 (-498 *2 *5 *6)) (-4 *6 (-408 *2 *5)))) (-2141 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-683 *2)) (-5 *4 (-766)) (-4 *2 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $))))) (-4 *5 (-1232 *2)) (-5 *1 (-498 *2 *5 *6)) (-4 *6 (-408 *2 *5)))) (-3042 (*1 *2 *3) (-12 (-5 *3 (-683 *2)) (-4 *4 (-1232 *2)) (-4 *2 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $))))) (-5 *1 (-498 *2 *4 *5)) (-4 *5 (-408 *2 *4)))))
+(-10 -7 (-15 -3042 (|#1| (-683 |#1|))) (-15 -2141 (|#1| (-683 |#1|) |#1| (-766))) (-15 -2408 (|#1| (-683 |#1|) (-683 |#1|) |#1| (-562))) (-15 -1856 ((-766) (-766) (-766))) (-15 -2979 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -2979 ((-683 |#1|) (-683 |#1|) (-683 |#1|) |#1|)) (-15 -2805 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -2026 ((-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) (-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))) (-2 (|:| -4291 (-683 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-683 |#1|))))))
+((-4041 (((-112) $ $) NIL)) (-3294 (($ $) NIL)) (-2264 (($ $ $) 35)) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) $) NIL (|has| (-112) (-845))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-3737 (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| (-112) (-845)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4404)))) (-1395 (($ $) NIL (|has| (-112) (-845))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-4200 (((-112) $ (-1223 (-562)) (-112)) NIL (|has| $ (-6 -4404))) (((-112) $ (-562) (-112)) 36 (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092))))) (-1475 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4403))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092))))) (-1954 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092))))) (-1507 (((-112) $ (-562) (-112)) NIL (|has| $ (-6 -4404)))) (-1420 (((-112) $ (-562)) NIL)) (-4265 (((-562) (-112) $ (-562)) NIL (|has| (-112) (-1092))) (((-562) (-112) $) NIL (|has| (-112) (-1092))) (((-562) (-1 (-112) (-112)) $) NIL)) (-1720 (((-639 (-112)) $) NIL (|has| $ (-6 -4403)))) (-2256 (($ $ $) 33)) (-2234 (($ $) NIL)) (-1886 (($ $ $) NIL)) (-1458 (($ (-766) (-112)) 23)) (-2618 (($ $ $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) 8 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL)) (-4103 (($ $ $) NIL (|has| (-112) (-845))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-2123 (((-639 (-112)) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL)) (-1491 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-112) (-112) (-112)) $ $) 30) (($ (-1 (-112) (-112)) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-3295 (($ $ $ (-562)) NIL) (($ (-112) $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-112) $) NIL (|has| (-562) (-845)))) (-1963 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-3510 (($ $ (-112)) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-112)) (-639 (-112))) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-293 (-112))) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092)))) (($ $ (-639 (-293 (-112)))) NIL (-12 (|has| (-112) (-308 (-112))) (|has| (-112) (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092))))) (-2366 (((-639 (-112)) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) 24)) (-2343 (($ $ (-1223 (-562))) NIL) (((-112) $ (-562)) 18) (((-112) $ (-562) (-112)) NIL)) (-2880 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-1723 (((-766) (-112) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-112) (-1092)))) (((-766) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4403)))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) 25)) (-4208 (((-535) $) NIL (|has| (-112) (-610 (-535))))) (-4064 (($ (-639 (-112))) NIL)) (-2767 (($ (-639 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-4053 (((-857) $) 22)) (-2879 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4403)))) (-2245 (($ $ $) 31)) (-2306 (($ $ $) NIL)) (-2935 (($ $ $) 39)) (-2943 (($ $) 37)) (-2927 (($ $ $) 38)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 26)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 27)) (-2297 (($ $ $) NIL)) (-3492 (((-766) $) 10 (|has| $ (-6 -4403)))))
+(((-499 |#1|) (-13 (-123) (-10 -8 (-15 -2943 ($ $)) (-15 -2935 ($ $ $)) (-15 -2927 ($ $ $)))) (-562)) (T -499))
+((-2943 (*1 *1 *1) (-12 (-5 *1 (-499 *2)) (-14 *2 (-562)))) (-2935 (*1 *1 *1 *1) (-12 (-5 *1 (-499 *2)) (-14 *2 (-562)))) (-2927 (*1 *1 *1 *1) (-12 (-5 *1 (-499 *2)) (-14 *2 (-562)))))
+(-13 (-123) (-10 -8 (-15 -2943 ($ $)) (-15 -2935 ($ $ $)) (-15 -2927 ($ $ $))))
+((-3978 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1164 |#4|)) 34)) (-3673 (((-1164 |#4|) (-1 |#4| |#1|) |#2|) 30) ((|#2| (-1 |#1| |#4|) (-1164 |#4|)) 21)) (-1919 (((-3 (-683 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-683 (-1164 |#4|))) 45)) (-2791 (((-1164 (-1164 |#4|)) (-1 |#4| |#1|) |#3|) 54)))
+(((-500 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3673 (|#2| (-1 |#1| |#4|) (-1164 |#4|))) (-15 -3673 ((-1164 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -3978 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1164 |#4|))) (-15 -1919 ((-3 (-683 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-683 (-1164 |#4|)))) (-15 -2791 ((-1164 (-1164 |#4|)) (-1 |#4| |#1|) |#3|))) (-1044) (-1232 |#1|) (-1232 |#2|) (-1044)) (T -500))
+((-2791 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1044)) (-4 *7 (-1044)) (-4 *6 (-1232 *5)) (-5 *2 (-1164 (-1164 *7))) (-5 *1 (-500 *5 *6 *4 *7)) (-4 *4 (-1232 *6)))) (-1919 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-683 (-1164 *8))) (-4 *5 (-1044)) (-4 *8 (-1044)) (-4 *6 (-1232 *5)) (-5 *2 (-683 *6)) (-5 *1 (-500 *5 *6 *7 *8)) (-4 *7 (-1232 *6)))) (-3978 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1164 *7)) (-4 *5 (-1044)) (-4 *7 (-1044)) (-4 *2 (-1232 *5)) (-5 *1 (-500 *5 *2 *6 *7)) (-4 *6 (-1232 *2)))) (-3673 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1044)) (-4 *7 (-1044)) (-4 *4 (-1232 *5)) (-5 *2 (-1164 *7)) (-5 *1 (-500 *5 *4 *6 *7)) (-4 *6 (-1232 *4)))) (-3673 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1164 *7)) (-4 *5 (-1044)) (-4 *7 (-1044)) (-4 *2 (-1232 *5)) (-5 *1 (-500 *5 *2 *6 *7)) (-4 *6 (-1232 *2)))))
+(-10 -7 (-15 -3673 (|#2| (-1 |#1| |#4|) (-1164 |#4|))) (-15 -3673 ((-1164 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -3978 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1164 |#4|))) (-15 -1919 ((-3 (-683 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-683 (-1164 |#4|)))) (-15 -2791 ((-1164 (-1164 |#4|)) (-1 |#4| |#1|) |#3|)))
+((-4041 (((-112) $ $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1359 (((-1261) $) 19)) (-2343 (((-1150) $ (-1168)) 23)) (-1479 (((-1261) $) 15)) (-4053 (((-857) $) 21) (($ (-1150)) 20)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 9)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 8)))
+(((-501) (-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $)) (-15 -1359 ((-1261) $)) (-15 -4053 ($ (-1150)))))) (T -501))
+((-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1150)) (-5 *1 (-501)))) (-1479 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-501)))) (-1359 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-501)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-501)))))
+(-13 (-845) (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $)) (-15 -1359 ((-1261) $)) (-15 -4053 ($ (-1150)))))
+((-3358 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-2162 ((|#1| |#4|) 10)) (-2414 ((|#3| |#4|) 17)))
+(((-502 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2162 (|#1| |#4|)) (-15 -2414 (|#3| |#4|)) (-15 -3358 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-554) (-987 |#1|) (-372 |#1|) (-372 |#2|)) (T -502))
+((-3358 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-987 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-502 *4 *5 *6 *3)) (-4 *6 (-372 *4)) (-4 *3 (-372 *5)))) (-2414 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-987 *4)) (-4 *2 (-372 *4)) (-5 *1 (-502 *4 *5 *2 *3)) (-4 *3 (-372 *5)))) (-2162 (*1 *2 *3) (-12 (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-502 *2 *4 *5 *3)) (-4 *5 (-372 *2)) (-4 *3 (-372 *4)))))
+(-10 -7 (-15 -2162 (|#1| |#4|)) (-15 -2414 (|#3| |#4|)) (-15 -3358 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
+((-4041 (((-112) $ $) NIL)) (-4232 (((-112) $ (-639 |#3|)) 103) (((-112) $) 104)) (-4325 (((-112) $) 147)) (-1453 (($ $ |#4|) 95) (($ $ |#4| (-639 |#3|)) 99)) (-2784 (((-1157 (-639 (-947 |#1|)) (-639 (-293 (-947 |#1|)))) (-639 |#4|)) 140 (|has| |#3| (-610 (-1168))))) (-3380 (($ $ $) 89) (($ $ |#4|) 87)) (-4367 (((-112) $) 146)) (-2543 (($ $) 107)) (-3696 (((-1150) $) NIL)) (-4169 (($ $ $) 81) (($ (-639 $)) 83)) (-1834 (((-112) |#4| $) 106)) (-2278 (((-112) $ $) 70)) (-1387 (($ (-639 |#4|)) 88)) (-1709 (((-1112) $) NIL)) (-3804 (($ (-639 |#4|)) 144)) (-4285 (((-112) $) 145)) (-2848 (($ $) 72)) (-3501 (((-639 |#4|) $) 56)) (-3231 (((-2 (|:| |mval| (-683 |#1|)) (|:| |invmval| (-683 |#1|)) (|:| |genIdeal| $)) $ (-639 |#3|)) NIL)) (-2515 (((-112) |#4| $) 75)) (-4340 (((-562) $ (-639 |#3|)) 108) (((-562) $) 109)) (-4053 (((-857) $) 143) (($ (-639 |#4|)) 84)) (-2089 (($ (-2 (|:| |mval| (-683 |#1|)) (|:| |invmval| (-683 |#1|)) (|:| |genIdeal| $))) NIL)) (-1733 (((-112) $ $) 71)) (-1836 (($ $ $) 91)) (** (($ $ (-766)) 94)) (* (($ $ $) 93)))
+(((-503 |#1| |#2| |#3| |#4|) (-13 (-1092) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-766))) (-15 -1836 ($ $ $)) (-15 -4367 ((-112) $)) (-15 -4325 ((-112) $)) (-15 -2515 ((-112) |#4| $)) (-15 -2278 ((-112) $ $)) (-15 -1834 ((-112) |#4| $)) (-15 -4232 ((-112) $ (-639 |#3|))) (-15 -4232 ((-112) $)) (-15 -4169 ($ $ $)) (-15 -4169 ($ (-639 $))) (-15 -3380 ($ $ $)) (-15 -3380 ($ $ |#4|)) (-15 -2848 ($ $)) (-15 -3231 ((-2 (|:| |mval| (-683 |#1|)) (|:| |invmval| (-683 |#1|)) (|:| |genIdeal| $)) $ (-639 |#3|))) (-15 -2089 ($ (-2 (|:| |mval| (-683 |#1|)) (|:| |invmval| (-683 |#1|)) (|:| |genIdeal| $)))) (-15 -4340 ((-562) $ (-639 |#3|))) (-15 -4340 ((-562) $)) (-15 -2543 ($ $)) (-15 -1387 ($ (-639 |#4|))) (-15 -3804 ($ (-639 |#4|))) (-15 -4285 ((-112) $)) (-15 -3501 ((-639 |#4|) $)) (-15 -4053 ($ (-639 |#4|))) (-15 -1453 ($ $ |#4|)) (-15 -1453 ($ $ |#4| (-639 |#3|))) (IF (|has| |#3| (-610 (-1168))) (-15 -2784 ((-1157 (-639 (-947 |#1|)) (-639 (-293 (-947 |#1|)))) (-639 |#4|))) |%noBranch|))) (-362) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -503))
+((* (*1 *1 *1 *1) (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845)) (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-1836 (*1 *1 *1 *1) (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845)) (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (-4367 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-4325 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-2515 (*1 *2 *3 *1) (-12 (-4 *4 (-362)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))) (-2278 (*1 *2 *1 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-1834 (*1 *2 *3 *1) (-12 (-4 *4 (-362)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))) (-4232 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788)) (-5 *2 (-112)) (-5 *1 (-503 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))) (-4232 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-4169 (*1 *1 *1 *1) (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845)) (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (-4169 (*1 *1 *2) (-12 (-5 *2 (-639 (-503 *3 *4 *5 *6))) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-3380 (*1 *1 *1 *1) (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845)) (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (-3380 (*1 *1 *1 *2) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-944 *3 *4 *5)))) (-2848 (*1 *1 *1) (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845)) (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (-3231 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788)) (-5 *2 (-2 (|:| |mval| (-683 *4)) (|:| |invmval| (-683 *4)) (|:| |genIdeal| (-503 *4 *5 *6 *7)))) (-5 *1 (-503 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))) (-2089 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-683 *3)) (|:| |invmval| (-683 *3)) (|:| |genIdeal| (-503 *3 *4 *5 *6)))) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-4340 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788)) (-5 *2 (-562)) (-5 *1 (-503 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))) (-4340 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-562)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-2543 (*1 *1 *1) (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845)) (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (-1387 (*1 *1 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)))) (-3804 (*1 *1 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)))) (-4285 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-3501 (*1 *2 *1) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *6)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)))) (-1453 (*1 *1 *1 *2) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-944 *3 *4 *5)))) (-1453 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788)) (-5 *1 (-503 *4 *5 *6 *2)) (-4 *2 (-944 *4 *5 *6)))) (-2784 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *5 *6)) (-4 *6 (-610 (-1168))) (-4 *4 (-362)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1157 (-639 (-947 *4)) (-639 (-293 (-947 *4))))) (-5 *1 (-503 *4 *5 *6 *7)))))
+(-13 (-1092) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-766))) (-15 -1836 ($ $ $)) (-15 -4367 ((-112) $)) (-15 -4325 ((-112) $)) (-15 -2515 ((-112) |#4| $)) (-15 -2278 ((-112) $ $)) (-15 -1834 ((-112) |#4| $)) (-15 -4232 ((-112) $ (-639 |#3|))) (-15 -4232 ((-112) $)) (-15 -4169 ($ $ $)) (-15 -4169 ($ (-639 $))) (-15 -3380 ($ $ $)) (-15 -3380 ($ $ |#4|)) (-15 -2848 ($ $)) (-15 -3231 ((-2 (|:| |mval| (-683 |#1|)) (|:| |invmval| (-683 |#1|)) (|:| |genIdeal| $)) $ (-639 |#3|))) (-15 -2089 ($ (-2 (|:| |mval| (-683 |#1|)) (|:| |invmval| (-683 |#1|)) (|:| |genIdeal| $)))) (-15 -4340 ((-562) $ (-639 |#3|))) (-15 -4340 ((-562) $)) (-15 -2543 ($ $)) (-15 -1387 ($ (-639 |#4|))) (-15 -3804 ($ (-639 |#4|))) (-15 -4285 ((-112) $)) (-15 -3501 ((-639 |#4|) $)) (-15 -4053 ($ (-639 |#4|))) (-15 -1453 ($ $ |#4|)) (-15 -1453 ($ $ |#4| (-639 |#3|))) (IF (|has| |#3| (-610 (-1168))) (-15 -2784 ((-1157 (-639 (-947 |#1|)) (-639 (-293 (-947 |#1|)))) (-639 |#4|))) |%noBranch|)))
+((-1803 (((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) 148)) (-3675 (((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) 149)) (-1666 (((-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) 107)) (-3521 (((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) NIL)) (-3421 (((-639 (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) 151)) (-3474 (((-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-639 (-859 |#1|))) 163)))
+(((-504 |#1| |#2|) (-10 -7 (-15 -1803 ((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -3675 ((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -3521 ((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -1666 ((-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -3421 ((-639 (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -3474 ((-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-639 (-859 |#1|))))) (-639 (-1168)) (-766)) (T -504))
+((-3474 (*1 *2 *2 *3) (-12 (-5 *2 (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4) (-246 *4 (-406 (-562))))) (-5 *3 (-639 (-859 *4))) (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *1 (-504 *4 *5)))) (-3421 (*1 *2 *3) (-12 (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-639 (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4) (-246 *4 (-406 (-562)))))) (-5 *1 (-504 *4 *5)) (-5 *3 (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4) (-246 *4 (-406 (-562))))))) (-1666 (*1 *2 *2) (-12 (-5 *2 (-503 (-406 (-562)) (-239 *4 (-766)) (-859 *3) (-246 *3 (-406 (-562))))) (-14 *3 (-639 (-1168))) (-14 *4 (-766)) (-5 *1 (-504 *3 *4)))) (-3521 (*1 *2 *3) (-12 (-5 *3 (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4) (-246 *4 (-406 (-562))))) (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-112)) (-5 *1 (-504 *4 *5)))) (-3675 (*1 *2 *3) (-12 (-5 *3 (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4) (-246 *4 (-406 (-562))))) (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-112)) (-5 *1 (-504 *4 *5)))) (-1803 (*1 *2 *3) (-12 (-5 *3 (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4) (-246 *4 (-406 (-562))))) (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-112)) (-5 *1 (-504 *4 *5)))))
+(-10 -7 (-15 -1803 ((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -3675 ((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -3521 ((-112) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -1666 ((-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -3421 ((-639 (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562))))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))))) (-15 -3474 ((-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-503 (-406 (-562)) (-239 |#2| (-766)) (-859 |#1|) (-246 |#1| (-406 (-562)))) (-639 (-859 |#1|)))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 11) (((-1168) $) 9)) (-1733 (((-112) $ $) 7)))
(((-505) (-13 (-1092) (-609 (-1168)))) (T -505))
NIL
(-13 (-1092) (-609 (-1168)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1601 (($ $) NIL)) (-1378 (($ |#1| |#2|) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2500 ((|#2| $) NIL)) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-2286 (($) 12 T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) 11) (($ $ $) 23)) (-1835 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 18)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1600 (($ $) NIL)) (-1377 (($ |#1| |#2|) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2006 ((|#2| $) NIL)) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-2285 (($) 12 T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) 11) (($ $ $) 23)) (-1836 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 18)))
(((-506 |#1| |#2|) (-13 (-21) (-508 |#1| |#2|)) (-21) (-845)) (T -506))
NIL
(-13 (-21) (-508 |#1| |#2|))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 12)) (-1800 (($) NIL T CONST)) (-1601 (($ $) 27)) (-1378 (($ |#1| |#2|) 24)) (-4152 (($ (-1 |#1| |#1|) $) 26)) (-2500 ((|#2| $) NIL)) (-1573 ((|#1| $) 28)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-2286 (($) 10 T CONST)) (-1731 (((-112) $ $) NIL)) (-1835 (($ $ $) 17)) (* (($ (-916) $) NIL) (($ (-766) $) 22)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 12)) (-3329 (($) NIL T CONST)) (-1600 (($ $) 27)) (-1377 (($ |#1| |#2|) 24)) (-4152 (($ (-1 |#1| |#1|) $) 26)) (-2006 ((|#2| $) NIL)) (-1573 ((|#1| $) 28)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-2285 (($) 10 T CONST)) (-1733 (((-112) $ $) NIL)) (-1836 (($ $ $) 17)) (* (($ (-916) $) NIL) (($ (-766) $) 22)))
(((-507 |#1| |#2|) (-13 (-23) (-508 |#1| |#2|)) (-23) (-845)) (T -507))
NIL
(-13 (-23) (-508 |#1| |#2|))
-((-4041 (((-112) $ $) 7)) (-1601 (($ $) 13)) (-1378 (($ |#1| |#2|) 16)) (-4152 (($ (-1 |#1| |#1|) $) 17)) (-2500 ((|#2| $) 14)) (-1573 ((|#1| $) 15)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) 7)) (-1600 (($ $) 13)) (-1377 (($ |#1| |#2|) 16)) (-4152 (($ (-1 |#1| |#1|) $) 17)) (-2006 ((|#2| $) 14)) (-1573 ((|#1| $) 15)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1733 (((-112) $ $) 6)))
(((-508 |#1| |#2|) (-139) (-1092) (-845)) (T -508))
-((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-508 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-845)))) (-1378 (*1 *1 *2 *3) (-12 (-4 *1 (-508 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-845)))) (-1573 (*1 *2 *1) (-12 (-4 *1 (-508 *2 *3)) (-4 *3 (-845)) (-4 *2 (-1092)))) (-2500 (*1 *2 *1) (-12 (-4 *1 (-508 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-845)))) (-1601 (*1 *1 *1) (-12 (-4 *1 (-508 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-845)))))
-(-13 (-1092) (-10 -8 (-15 -4152 ($ (-1 |t#1| |t#1|) $)) (-15 -1378 ($ |t#1| |t#2|)) (-15 -1573 (|t#1| $)) (-15 -2500 (|t#2| $)) (-15 -1601 ($ $))))
+((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-508 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-845)))) (-1377 (*1 *1 *2 *3) (-12 (-4 *1 (-508 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-845)))) (-1573 (*1 *2 *1) (-12 (-4 *1 (-508 *2 *3)) (-4 *3 (-845)) (-4 *2 (-1092)))) (-2006 (*1 *2 *1) (-12 (-4 *1 (-508 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-845)))) (-1600 (*1 *1 *1) (-12 (-4 *1 (-508 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-845)))))
+(-13 (-1092) (-10 -8 (-15 -4152 ($ (-1 |t#1| |t#1|) $)) (-15 -1377 ($ |t#1| |t#2|)) (-15 -1573 (|t#1| $)) (-15 -2006 (|t#2| $)) (-15 -1600 ($ $))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1800 (($) NIL T CONST)) (-1601 (($ $) NIL)) (-1378 (($ |#1| |#2|) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2500 ((|#2| $) NIL)) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-2286 (($) NIL T CONST)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 13)) (-1835 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-3329 (($) NIL T CONST)) (-1600 (($ $) NIL)) (-1377 (($ |#1| |#2|) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2006 ((|#2| $) NIL)) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-2285 (($) NIL T CONST)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 13)) (-1836 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL)))
(((-509 |#1| |#2|) (-13 (-787) (-508 |#1| |#2|)) (-787) (-845)) (T -509))
NIL
(-13 (-787) (-508 |#1| |#2|))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3659 (($ $ $) 16)) (-3214 (((-3 $ "failed") $ $) 13)) (-1800 (($) NIL T CONST)) (-1601 (($ $) NIL)) (-1378 (($ |#1| |#2|) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2500 ((|#2| $) NIL)) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-2286 (($) NIL T CONST)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)) (-1835 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1593 (($ $ $) 16)) (-2781 (((-3 $ "failed") $ $) 13)) (-3329 (($) NIL T CONST)) (-1600 (($ $) NIL)) (-1377 (($ |#1| |#2|) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2006 ((|#2| $) NIL)) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-2285 (($) NIL T CONST)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL)))
(((-510 |#1| |#2|) (-13 (-788) (-508 |#1| |#2|)) (-788) (-845)) (T -510))
NIL
(-13 (-788) (-508 |#1| |#2|))
-((-4041 (((-112) $ $) NIL)) (-1601 (($ $) 24)) (-1378 (($ |#1| |#2|) 21)) (-4152 (($ (-1 |#1| |#1|) $) 23)) (-2500 ((|#2| $) 26)) (-1573 ((|#1| $) 25)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 20)) (-1731 (((-112) $ $) 13)))
+((-4041 (((-112) $ $) NIL)) (-1600 (($ $) 24)) (-1377 (($ |#1| |#2|) 21)) (-4152 (($ (-1 |#1| |#1|) $) 23)) (-2006 ((|#2| $) 26)) (-1573 ((|#1| $) 25)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 20)) (-1733 (((-112) $ $) 13)))
(((-511 |#1| |#2|) (-508 |#1| |#2|) (-1092) (-845)) (T -511))
NIL
(-508 |#1| |#2|)
@@ -2066,319 +2066,319 @@ NIL
(((-513 |#1| |#2|) (-139) (-1092) (-1207)) (T -513))
((-1433 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *4)) (-5 *3 (-639 *5)) (-4 *1 (-513 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1207)))) (-1433 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-513 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1207)))))
(-13 (-10 -8 (-15 -1433 ($ $ |t#1| |t#2|)) (-15 -1433 ($ $ (-639 |t#1|) (-639 |t#2|)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 16)) (-1938 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))) $) 18)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1382 (((-766) $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3961 ((|#1| $) NIL)) (-3126 ((|#1| $ (-562)) 23)) (-4173 ((|#2| $ (-562)) 21)) (-1304 (($ (-1 |#1| |#1|) $) 46)) (-3344 (($ (-1 |#2| |#2|) $) 43)) (-2913 (((-1150) $) NIL)) (-1755 (($ $ $) 53 (|has| |#2| (-787)))) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 42) (($ |#1|) NIL)) (-3906 ((|#2| |#1| $) 49)) (-2286 (($) 11 T CONST)) (-1731 (((-112) $ $) 29)) (-1835 (($ $ $) 27) (($ |#1| $) 25)) (* (($ (-916) $) NIL) (($ (-766) $) 36) (($ |#2| |#1|) 31)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 16)) (-4196 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))) $) 18)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1382 (((-766) $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3960 ((|#1| $) NIL)) (-3111 ((|#1| $ (-562)) 23)) (-2826 ((|#2| $ (-562)) 21)) (-2491 (($ (-1 |#1| |#1|) $) 46)) (-1545 (($ (-1 |#2| |#2|) $) 43)) (-3696 (((-1150) $) NIL)) (-2956 (($ $ $) 53 (|has| |#2| (-787)))) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 42) (($ |#1|) NIL)) (-2266 ((|#2| |#1| $) 49)) (-2285 (($) 11 T CONST)) (-1733 (((-112) $ $) 29)) (-1836 (($ $ $) 27) (($ |#1| $) 25)) (* (($ (-916) $) NIL) (($ (-766) $) 36) (($ |#2| |#1|) 31)))
(((-514 |#1| |#2| |#3|) (-322 |#1| |#2|) (-1092) (-130) |#2|) (T -514))
NIL
(-322 |#1| |#2|)
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3381 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4403))) (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-4336 (((-112) $ (-766)) NIL)) (-4250 (((-112) (-112)) 25)) (-4200 ((|#1| $ (-562) |#1|) 28 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4403)))) (-3111 (($ (-1 (-112) |#1|) $) 52)) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-4354 (($ $) 56 (|has| |#1| (-1092)))) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4000 (($ |#1| $) NIL (|has| |#1| (-1092))) (($ (-1 (-112) |#1|) $) 44)) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) NIL)) (-4264 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-2933 (($ $ (-562)) 13)) (-3189 (((-766) $) 11)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1458 (($ (-766) |#1|) 23)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) 21 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2673 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) 35)) (-1610 (($ (-1 (-112) |#1| |#1|) $ $) 36) (($ $ $) NIL (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-562) $) 20 (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-4300 (($ $ $ (-562)) 51) (($ |#1| $ (-562)) 37)) (-3297 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2851 (($ (-639 |#1|)) 29)) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2716 (($ $ |#1|) 19 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 40)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) 16)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) 33) (($ $ (-1223 (-562))) NIL)) (-2878 (($ $ (-1223 (-562))) 50) (($ $ (-562)) 45)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1853 (($ $ $ (-562)) 41 (|has| $ (-6 -4403)))) (-4220 (($ $) 32)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) NIL)) (-4142 (($ $ $) 42) (($ $ |#1|) 39)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) 38) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) 17 (|has| $ (-6 -4402)))))
-(((-515 |#1| |#2|) (-13 (-19 |#1|) (-281 |#1|) (-10 -8 (-15 -2851 ($ (-639 |#1|))) (-15 -3189 ((-766) $)) (-15 -2933 ($ $ (-562))) (-15 -4250 ((-112) (-112))))) (-1207) (-562)) (T -515))
-((-2851 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-515 *3 *4)) (-14 *4 (-562)))) (-3189 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-515 *3 *4)) (-4 *3 (-1207)) (-14 *4 (-562)))) (-2933 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-515 *3 *4)) (-4 *3 (-1207)) (-14 *4 *2))) (-4250 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-515 *3 *4)) (-4 *3 (-1207)) (-14 *4 (-562)))))
-(-13 (-19 |#1|) (-281 |#1|) (-10 -8 (-15 -2851 ($ (-639 |#1|))) (-15 -3189 ((-766) $)) (-15 -2933 ($ $ (-562))) (-15 -4250 ((-112) (-112)))))
-((-4041 (((-112) $ $) NIL)) (-3091 (((-1127) $) 11)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1444 (((-1127) $) 13)) (-3317 (((-1127) $) 9)) (-4054 (((-857) $) 21) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-516) (-13 (-1075) (-10 -8 (-15 -3317 ((-1127) $)) (-15 -3091 ((-1127) $)) (-15 -1444 ((-1127) $))))) (T -516))
-((-3317 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-516)))) (-3091 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-516)))) (-1444 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-516)))))
-(-13 (-1075) (-10 -8 (-15 -3317 ((-1127) $)) (-15 -3091 ((-1127) $)) (-15 -1444 ((-1127) $))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2024 (((-112) $) NIL)) (-3285 (((-766)) NIL)) (-1748 (((-579 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-579 |#1|) (-367)))) (-3984 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-579 |#1|) (-367)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| (-579 |#1|) (-367)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-579 |#1|) "failed") $) NIL)) (-3961 (((-579 |#1|) $) NIL)) (-4018 (($ (-1256 (-579 |#1|))) NIL)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-579 |#1|) (-367)))) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| (-579 |#1|) (-367)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-3529 (($) NIL (|has| (-579 |#1|) (-367)))) (-1322 (((-112) $) NIL (|has| (-579 |#1|) (-367)))) (-3589 (($ $ (-766)) NIL (-4037 (|has| (-579 |#1|) (-144)) (|has| (-579 |#1|) (-367)))) (($ $) NIL (-4037 (|has| (-579 |#1|) (-144)) (|has| (-579 |#1|) (-367))))) (-2717 (((-112) $) NIL)) (-1900 (((-916) $) NIL (|has| (-579 |#1|) (-367))) (((-828 (-916)) $) NIL (-4037 (|has| (-579 |#1|) (-144)) (|has| (-579 |#1|) (-367))))) (-1957 (((-112) $) NIL)) (-1846 (($) NIL (|has| (-579 |#1|) (-367)))) (-1316 (((-112) $) NIL (|has| (-579 |#1|) (-367)))) (-2247 (((-579 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-579 |#1|) (-367)))) (-3699 (((-3 $ "failed") $) NIL (|has| (-579 |#1|) (-367)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1565 (((-1164 (-579 |#1|)) $) NIL) (((-1164 $) $ (-916)) NIL (|has| (-579 |#1|) (-367)))) (-1999 (((-916) $) NIL (|has| (-579 |#1|) (-367)))) (-3892 (((-1164 (-579 |#1|)) $) NIL (|has| (-579 |#1|) (-367)))) (-4203 (((-1164 (-579 |#1|)) $) NIL (|has| (-579 |#1|) (-367))) (((-3 (-1164 (-579 |#1|)) "failed") $ $) NIL (|has| (-579 |#1|) (-367)))) (-2393 (($ $ (-1164 (-579 |#1|))) NIL (|has| (-579 |#1|) (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| (-579 |#1|) (-367)) CONST)) (-2466 (($ (-916)) NIL (|has| (-579 |#1|) (-367)))) (-3113 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-3148 (($) NIL (|has| (-579 |#1|) (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL (|has| (-579 |#1|) (-367)))) (-1635 (((-417 $) $) NIL)) (-4121 (((-828 (-916))) NIL) (((-916)) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3362 (((-766) $) NIL (|has| (-579 |#1|) (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| (-579 |#1|) (-144)) (|has| (-579 |#1|) (-367))))) (-3627 (((-133)) NIL)) (-4029 (($ $) NIL (|has| (-579 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-579 |#1|) (-367)))) (-3598 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-2096 (((-1164 (-579 |#1|))) NIL)) (-2283 (($) NIL (|has| (-579 |#1|) (-367)))) (-2624 (($) NIL (|has| (-579 |#1|) (-367)))) (-3593 (((-1256 (-579 |#1|)) $) NIL) (((-683 (-579 |#1|)) (-1256 $)) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| (-579 |#1|) (-367)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-579 |#1|)) NIL)) (-2805 (($ $) NIL (|has| (-579 |#1|) (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| (-579 |#1|) (-144)) (|has| (-579 |#1|) (-367))))) (-2579 (((-766)) NIL)) (-3928 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-2922 (((-112) $ $) NIL)) (-3694 (((-112) $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4374 (($ $) NIL (|has| (-579 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-579 |#1|) (-367)))) (-3114 (($ $) NIL (|has| (-579 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-579 |#1|) (-367)))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ (-579 |#1|)) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ (-579 |#1|)) NIL) (($ (-579 |#1|) $) NIL)))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3737 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4404))) (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-3735 (((-112) $ (-766)) NIL)) (-2327 (((-112) (-112)) 25)) (-4200 ((|#1| $ (-562) |#1|) 28 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4404)))) (-2968 (($ (-1 (-112) |#1|) $) 52)) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-3923 (($ $) 56 (|has| |#1| (-1092)))) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3729 (($ |#1| $) NIL (|has| |#1| (-1092))) (($ (-1 (-112) |#1|) $) 44)) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) NIL)) (-4265 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-3917 (($ $ (-562)) 13)) (-2558 (((-766) $) 11)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1458 (($ (-766) |#1|) 23)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) 21 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-3124 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) 35)) (-4103 (($ (-1 (-112) |#1| |#1|) $ $) 36) (($ $ $) NIL (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-562) $) 20 (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1581 (($ $ $ (-562)) 51) (($ |#1| $ (-562)) 37)) (-3295 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-4322 (($ (-639 |#1|)) 29)) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3510 (($ $ |#1|) 19 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 40)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) 16)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) 33) (($ $ (-1223 (-562))) NIL)) (-1527 (($ $ (-1223 (-562))) 50) (($ $ (-562)) 45)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2694 (($ $ $ (-562)) 41 (|has| $ (-6 -4404)))) (-4220 (($ $) 32)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) NIL)) (-2587 (($ $ $) 42) (($ $ |#1|) 39)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) 38) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) 17 (|has| $ (-6 -4403)))))
+(((-515 |#1| |#2|) (-13 (-19 |#1|) (-281 |#1|) (-10 -8 (-15 -4322 ($ (-639 |#1|))) (-15 -2558 ((-766) $)) (-15 -3917 ($ $ (-562))) (-15 -2327 ((-112) (-112))))) (-1207) (-562)) (T -515))
+((-4322 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-515 *3 *4)) (-14 *4 (-562)))) (-2558 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-515 *3 *4)) (-4 *3 (-1207)) (-14 *4 (-562)))) (-3917 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-515 *3 *4)) (-4 *3 (-1207)) (-14 *4 *2))) (-2327 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-515 *3 *4)) (-4 *3 (-1207)) (-14 *4 (-562)))))
+(-13 (-19 |#1|) (-281 |#1|) (-10 -8 (-15 -4322 ($ (-639 |#1|))) (-15 -2558 ((-766) $)) (-15 -3917 ($ $ (-562))) (-15 -2327 ((-112) (-112)))))
+((-4041 (((-112) $ $) NIL)) (-4024 (((-1127) $) 11)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2261 (((-1127) $) 13)) (-3316 (((-1127) $) 9)) (-4053 (((-857) $) 21) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-516) (-13 (-1075) (-10 -8 (-15 -3316 ((-1127) $)) (-15 -4024 ((-1127) $)) (-15 -2261 ((-1127) $))))) (T -516))
+((-3316 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-516)))) (-4024 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-516)))) (-2261 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-516)))))
+(-13 (-1075) (-10 -8 (-15 -3316 ((-1127) $)) (-15 -4024 ((-1127) $)) (-15 -2261 ((-1127) $))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3826 (((-112) $) NIL)) (-2284 (((-766)) NIL)) (-1748 (((-579 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-579 |#1|) (-367)))) (-1755 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-579 |#1|) (-367)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) NIL (|has| (-579 |#1|) (-367)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-579 |#1|) "failed") $) NIL)) (-3960 (((-579 |#1|) $) NIL)) (-3916 (($ (-1256 (-579 |#1|))) NIL)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-579 |#1|) (-367)))) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| (-579 |#1|) (-367)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-2787 (($) NIL (|has| (-579 |#1|) (-367)))) (-1844 (((-112) $) NIL (|has| (-579 |#1|) (-367)))) (-2184 (($ $ (-766)) NIL (-4037 (|has| (-579 |#1|) (-144)) (|has| (-579 |#1|) (-367)))) (($ $) NIL (-4037 (|has| (-579 |#1|) (-144)) (|has| (-579 |#1|) (-367))))) (-3521 (((-112) $) NIL)) (-1993 (((-916) $) NIL (|has| (-579 |#1|) (-367))) (((-828 (-916)) $) NIL (-4037 (|has| (-579 |#1|) (-144)) (|has| (-579 |#1|) (-367))))) (-4367 (((-112) $) NIL)) (-2631 (($) NIL (|has| (-579 |#1|) (-367)))) (-1775 (((-112) $) NIL (|has| (-579 |#1|) (-367)))) (-4363 (((-579 |#1|) $) NIL) (($ $ (-916)) NIL (|has| (-579 |#1|) (-367)))) (-3828 (((-3 $ "failed") $) NIL (|has| (-579 |#1|) (-367)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1937 (((-1164 (-579 |#1|)) $) NIL) (((-1164 $) $ (-916)) NIL (|has| (-579 |#1|) (-367)))) (-3549 (((-916) $) NIL (|has| (-579 |#1|) (-367)))) (-2121 (((-1164 (-579 |#1|)) $) NIL (|has| (-579 |#1|) (-367)))) (-1894 (((-1164 (-579 |#1|)) $) NIL (|has| (-579 |#1|) (-367))) (((-3 (-1164 (-579 |#1|)) "failed") $ $) NIL (|has| (-579 |#1|) (-367)))) (-3319 (($ $ (-1164 (-579 |#1|))) NIL (|has| (-579 |#1|) (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| (-579 |#1|) (-367)) CONST)) (-2464 (($ (-916)) NIL (|has| (-579 |#1|) (-367)))) (-2991 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-3147 (($) NIL (|has| (-579 |#1|) (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL (|has| (-579 |#1|) (-367)))) (-1635 (((-417 $) $) NIL)) (-3548 (((-828 (-916))) NIL) (((-916)) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3543 (((-766) $) NIL (|has| (-579 |#1|) (-367))) (((-3 (-766) "failed") $ $) NIL (-4037 (|has| (-579 |#1|) (-144)) (|has| (-579 |#1|) (-367))))) (-4340 (((-133)) NIL)) (-4029 (($ $) NIL (|has| (-579 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-579 |#1|) (-367)))) (-2250 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-3371 (((-1164 (-579 |#1|))) NIL)) (-1653 (($) NIL (|has| (-579 |#1|) (-367)))) (-3861 (($) NIL (|has| (-579 |#1|) (-367)))) (-2205 (((-1256 (-579 |#1|)) $) NIL) (((-683 (-579 |#1|)) (-1256 $)) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| (-579 |#1|) (-367)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-579 |#1|)) NIL)) (-2059 (($ $) NIL (|has| (-579 |#1|) (-367))) (((-3 $ "failed") $) NIL (-4037 (|has| (-579 |#1|) (-144)) (|has| (-579 |#1|) (-367))))) (-1568 (((-766)) NIL)) (-4291 (((-1256 $)) NIL) (((-1256 $) (-916)) NIL)) (-3799 (((-112) $ $) NIL)) (-3782 (((-112) $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4144 (($ $) NIL (|has| (-579 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-579 |#1|) (-367)))) (-3113 (($ $) NIL (|has| (-579 |#1|) (-367))) (($ $ (-766)) NIL (|has| (-579 |#1|) (-367)))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL) (($ $ (-579 |#1|)) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ $ (-579 |#1|)) NIL) (($ (-579 |#1|) $) NIL)))
(((-517 |#1| |#2|) (-328 (-579 |#1|)) (-916) (-916)) (T -517))
NIL
(-328 (-579 |#1|))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) (-562) |#1|) 35)) (-1928 (($ $ (-562) |#4|) NIL)) (-3003 (($ $ (-562) |#5|) NIL)) (-1800 (($) NIL T CONST)) (-3796 ((|#4| $ (-562)) NIL)) (-1505 ((|#1| $ (-562) (-562) |#1|) 34)) (-1420 ((|#1| $ (-562) (-562)) 32)) (-1720 (((-639 |#1|) $) NIL)) (-2699 (((-766) $) 28)) (-1458 (($ (-766) (-766) |#1|) 25)) (-2709 (((-766) $) 30)) (-3292 (((-112) $ (-766)) NIL)) (-2783 (((-562) $) 26)) (-4217 (((-562) $) 27)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4088 (((-562) $) 29)) (-2453 (((-562) $) 31)) (-1490 (($ (-1 |#1| |#1|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) 38 (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2716 (($ $ |#1|) NIL)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 14)) (-4307 (($) 16)) (-2343 ((|#1| $ (-562) (-562)) 33) ((|#1| $ (-562) (-562) |#1|) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-2211 ((|#5| $ (-562)) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) (-562) |#1|) 35)) (-2267 (($ $ (-562) |#4|) NIL)) (-3320 (($ $ (-562) |#5|) NIL)) (-3329 (($) NIL T CONST)) (-3511 ((|#4| $ (-562)) NIL)) (-1507 ((|#1| $ (-562) (-562) |#1|) 34)) (-1420 ((|#1| $ (-562) (-562)) 32)) (-1720 (((-639 |#1|) $) NIL)) (-2698 (((-766) $) 28)) (-1458 (($ (-766) (-766) |#1|) 25)) (-2708 (((-766) $) 30)) (-4172 (((-112) $ (-766)) NIL)) (-1808 (((-562) $) 26)) (-2028 (((-562) $) 27)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3269 (((-562) $) 29)) (-2727 (((-562) $) 31)) (-1491 (($ (-1 |#1| |#1|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) 38 (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3510 (($ $ |#1|) NIL)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 14)) (-1663 (($) 16)) (-2343 ((|#1| $ (-562) (-562)) 33) ((|#1| $ (-562) (-562) |#1|) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-2208 ((|#5| $ (-562)) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-518 |#1| |#2| |#3| |#4| |#5|) (-57 |#1| |#4| |#5|) (-1207) (-562) (-562) (-372 |#1|) (-372 |#1|)) (T -518))
NIL
(-57 |#1| |#4| |#5|)
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2534 ((|#1| $) NIL)) (-2359 ((|#1| $) NIL)) (-3121 (($ $) NIL)) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-2254 (($ $ (-562)) 58 (|has| $ (-6 -4403)))) (-1399 (((-112) $) NIL (|has| |#1| (-845))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3381 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-845)))) (($ (-1 (-112) |#1| |#1|) $) 56 (|has| $ (-6 -4403)))) (-1395 (($ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-1512 ((|#1| $ |#1|) NIL (|has| $ (-6 -4403)))) (-3012 (($ $ $) 23 (|has| $ (-6 -4403)))) (-3950 ((|#1| $ |#1|) NIL (|has| $ (-6 -4403)))) (-2687 ((|#1| $ |#1|) 21 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4403))) (($ $ "rest" $) 24 (|has| $ (-6 -4403))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) NIL (|has| $ (-6 -4403)))) (-3111 (($ (-1 (-112) |#1|) $) NIL)) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-2350 ((|#1| $) NIL)) (-1800 (($) NIL T CONST)) (-2447 (($ $) 28 (|has| $ (-6 -4403)))) (-2677 (($ $) 29)) (-1434 (($ $) 18) (($ $ (-766)) 32)) (-4354 (($ $) 54 (|has| |#1| (-1092)))) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4000 (($ |#1| $) NIL (|has| |#1| (-1092))) (($ (-1 (-112) |#1|) $) NIL)) (-1475 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1505 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) NIL)) (-3266 (((-112) $) NIL)) (-4264 (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092))) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) (-1 (-112) |#1|) $) NIL)) (-1720 (((-639 |#1|) $) 27 (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) NIL)) (-4379 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1458 (($ (-766) |#1|) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) 31 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2673 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) 57)) (-1610 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 52 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3716 (($ |#1|) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-4007 (((-639 |#1|) $) NIL)) (-3449 (((-112) $) NIL)) (-2913 (((-1150) $) 50 (|has| |#1| (-1092)))) (-1504 ((|#1| $) NIL) (($ $ (-766)) NIL)) (-4300 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-3297 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) 13) (($ $ (-766)) NIL)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2716 (($ $ |#1|) NIL (|has| $ (-6 -4403)))) (-2017 (((-112) $) NIL)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 12)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) 17)) (-4307 (($) 16)) (-2343 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1223 (-562))) NIL) ((|#1| $ (-562)) NIL) ((|#1| $ (-562) |#1|) NIL)) (-2568 (((-562) $ $) NIL)) (-2878 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2880 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2424 (((-112) $) 33)) (-2613 (($ $) NIL)) (-4327 (($ $) NIL (|has| $ (-6 -4403)))) (-2296 (((-766) $) NIL)) (-3913 (($ $) 35)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) 34)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 26)) (-4142 (($ $ $) 53) (($ $ |#1|) NIL)) (-2767 (($ $ $) NIL) (($ |#1| $) 10) (($ (-639 $)) NIL) (($ $ |#1|) NIL)) (-4054 (((-857) $) 45 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) NIL)) (-4055 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) 47 (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) 9 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2533 ((|#1| $) NIL)) (-2358 ((|#1| $) NIL)) (-3120 (($ $) NIL)) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1335 (($ $ (-562)) 58 (|has| $ (-6 -4404)))) (-1706 (((-112) $) NIL (|has| |#1| (-845))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3737 (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| |#1| (-845)))) (($ (-1 (-112) |#1| |#1|) $) 56 (|has| $ (-6 -4404)))) (-1395 (($ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-2677 ((|#1| $ |#1|) NIL (|has| $ (-6 -4404)))) (-3400 (($ $ $) 23 (|has| $ (-6 -4404)))) (-1393 ((|#1| $ |#1|) NIL (|has| $ (-6 -4404)))) (-3239 ((|#1| $ |#1|) 21 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4404))) (($ $ "rest" $) 24 (|has| $ (-6 -4404))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) NIL (|has| $ (-6 -4404)))) (-2968 (($ (-1 (-112) |#1|) $) NIL)) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-2349 ((|#1| $) NIL)) (-3329 (($) NIL T CONST)) (-2673 (($ $) 28 (|has| $ (-6 -4404)))) (-2676 (($ $) 29)) (-1434 (($ $) 18) (($ $ (-766)) 32)) (-3923 (($ $) 54 (|has| |#1| (-1092)))) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3729 (($ |#1| $) NIL (|has| |#1| (-1092))) (($ (-1 (-112) |#1|) $) NIL)) (-1475 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1507 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) NIL)) (-2101 (((-112) $) NIL)) (-4265 (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092))) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) (-1 (-112) |#1|) $) NIL)) (-1720 (((-639 |#1|) $) 27 (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) NIL)) (-4188 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1458 (($ (-766) |#1|) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) 31 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-3124 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) 57)) (-4103 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 52 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3716 (($ |#1|) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-4008 (((-639 |#1|) $) NIL)) (-3179 (((-112) $) NIL)) (-3696 (((-1150) $) 50 (|has| |#1| (-1092)))) (-1504 ((|#1| $) NIL) (($ $ (-766)) NIL)) (-1581 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-3295 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) 13) (($ $ (-766)) NIL)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3510 (($ $ |#1|) NIL (|has| $ (-6 -4404)))) (-3745 (((-112) $) NIL)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 12)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) 17)) (-1663 (($) 16)) (-2343 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1223 (-562))) NIL) ((|#1| $ (-562)) NIL) ((|#1| $ (-562) |#1|) NIL)) (-1423 (((-562) $ $) NIL)) (-1527 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2880 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2473 (((-112) $) 33)) (-3734 (($ $) NIL)) (-3659 (($ $) NIL (|has| $ (-6 -4404)))) (-3595 (((-766) $) NIL)) (-2333 (($ $) 35)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) 34)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 26)) (-2587 (($ $ $) 53) (($ $ |#1|) NIL)) (-2767 (($ $ $) NIL) (($ |#1| $) 10) (($ (-639 $)) NIL) (($ $ |#1|) NIL)) (-4053 (((-857) $) 45 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) NIL)) (-2985 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) 47 (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) 9 (|has| $ (-6 -4403)))))
(((-519 |#1| |#2|) (-660 |#1|) (-1207) (-562)) (T -519))
NIL
(-660 |#1|)
-((-2522 ((|#4| |#4|) 27)) (-2173 (((-766) |#4|) 32)) (-3922 (((-766) |#4|) 33)) (-2318 (((-639 |#3|) |#4|) 39 (|has| |#3| (-6 -4403)))) (-3494 (((-3 |#4| "failed") |#4|) 50)) (-2785 ((|#4| |#4|) 43)) (-3770 ((|#1| |#4|) 42)))
-(((-520 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2522 (|#4| |#4|)) (-15 -2173 ((-766) |#4|)) (-15 -3922 ((-766) |#4|)) (IF (|has| |#3| (-6 -4403)) (-15 -2318 ((-639 |#3|) |#4|)) |%noBranch|) (-15 -3770 (|#1| |#4|)) (-15 -2785 (|#4| |#4|)) (-15 -3494 ((-3 |#4| "failed") |#4|))) (-362) (-372 |#1|) (-372 |#1|) (-681 |#1| |#2| |#3|)) (T -520))
-((-3494 (*1 *2 *2) (|partial| -12 (-4 *3 (-362)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-520 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-2785 (*1 *2 *2) (-12 (-4 *3 (-362)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-520 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-3770 (*1 *2 *3) (-12 (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-362)) (-5 *1 (-520 *2 *4 *5 *3)) (-4 *3 (-681 *2 *4 *5)))) (-2318 (*1 *2 *3) (-12 (|has| *6 (-6 -4403)) (-4 *4 (-362)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-639 *6)) (-5 *1 (-520 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-3922 (*1 *2 *3) (-12 (-4 *4 (-362)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-766)) (-5 *1 (-520 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-2173 (*1 *2 *3) (-12 (-4 *4 (-362)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-766)) (-5 *1 (-520 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-2522 (*1 *2 *2) (-12 (-4 *3 (-362)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-520 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
-(-10 -7 (-15 -2522 (|#4| |#4|)) (-15 -2173 ((-766) |#4|)) (-15 -3922 ((-766) |#4|)) (IF (|has| |#3| (-6 -4403)) (-15 -2318 ((-639 |#3|) |#4|)) |%noBranch|) (-15 -3770 (|#1| |#4|)) (-15 -2785 (|#4| |#4|)) (-15 -3494 ((-3 |#4| "failed") |#4|)))
-((-2522 ((|#8| |#4|) 20)) (-2318 (((-639 |#3|) |#4|) 29 (|has| |#7| (-6 -4403)))) (-3494 (((-3 |#8| "failed") |#4|) 23)))
-(((-521 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2522 (|#8| |#4|)) (-15 -3494 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4403)) (-15 -2318 ((-639 |#3|) |#4|)) |%noBranch|)) (-554) (-372 |#1|) (-372 |#1|) (-681 |#1| |#2| |#3|) (-987 |#1|) (-372 |#5|) (-372 |#5|) (-681 |#5| |#6| |#7|)) (T -521))
-((-2318 (*1 *2 *3) (-12 (|has| *9 (-6 -4403)) (-4 *4 (-554)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-4 *7 (-987 *4)) (-4 *8 (-372 *7)) (-4 *9 (-372 *7)) (-5 *2 (-639 *6)) (-5 *1 (-521 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-681 *4 *5 *6)) (-4 *10 (-681 *7 *8 *9)))) (-3494 (*1 *2 *3) (|partial| -12 (-4 *4 (-554)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-4 *7 (-987 *4)) (-4 *2 (-681 *7 *8 *9)) (-5 *1 (-521 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-681 *4 *5 *6)) (-4 *8 (-372 *7)) (-4 *9 (-372 *7)))) (-2522 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-4 *7 (-987 *4)) (-4 *2 (-681 *7 *8 *9)) (-5 *1 (-521 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-681 *4 *5 *6)) (-4 *8 (-372 *7)) (-4 *9 (-372 *7)))))
-(-10 -7 (-15 -2522 (|#8| |#4|)) (-15 -3494 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4403)) (-15 -2318 ((-639 |#3|) |#4|)) |%noBranch|))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2911 (($ (-766) (-766)) NIL)) (-2654 (($ $ $) NIL)) (-2529 (($ (-598 |#1| |#3|)) NIL) (($ $) NIL)) (-2952 (((-112) $) NIL)) (-2188 (($ $ (-562) (-562)) 12)) (-2467 (($ $ (-562) (-562)) NIL)) (-1593 (($ $ (-562) (-562) (-562) (-562)) NIL)) (-3886 (($ $) NIL)) (-3220 (((-112) $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-4212 (($ $ (-562) (-562) $) NIL)) (-4200 ((|#1| $ (-562) (-562) |#1|) NIL) (($ $ (-639 (-562)) (-639 (-562)) $) NIL)) (-1928 (($ $ (-562) (-598 |#1| |#3|)) NIL)) (-3003 (($ $ (-562) (-598 |#1| |#2|)) NIL)) (-2554 (($ (-766) |#1|) NIL)) (-1800 (($) NIL T CONST)) (-2522 (($ $) 21 (|has| |#1| (-306)))) (-3796 (((-598 |#1| |#3|) $ (-562)) NIL)) (-2173 (((-766) $) 24 (|has| |#1| (-554)))) (-1505 ((|#1| $ (-562) (-562) |#1|) NIL)) (-1420 ((|#1| $ (-562) (-562)) NIL)) (-1720 (((-639 |#1|) $) NIL)) (-3922 (((-766) $) 26 (|has| |#1| (-554)))) (-2318 (((-639 (-598 |#1| |#2|)) $) 29 (|has| |#1| (-554)))) (-2699 (((-766) $) NIL)) (-1458 (($ (-766) (-766) |#1|) NIL)) (-2709 (((-766) $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-2280 ((|#1| $) 19 (|has| |#1| (-6 (-4404 "*"))))) (-2783 (((-562) $) 10)) (-4217 (((-562) $) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4088 (((-562) $) 11)) (-2453 (((-562) $) NIL)) (-2885 (($ (-639 (-639 |#1|))) NIL)) (-1490 (($ (-1 |#1| |#1|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2824 (((-639 (-639 |#1|)) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3494 (((-3 $ "failed") $) 33 (|has| |#1| (-362)))) (-2309 (($ $ $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2716 (($ $ |#1|) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ (-562) (-562)) NIL) ((|#1| $ (-562) (-562) |#1|) NIL) (($ $ (-639 (-562)) (-639 (-562))) NIL)) (-3448 (($ (-639 |#1|)) NIL) (($ (-639 $)) NIL)) (-1544 (((-112) $) NIL)) (-3770 ((|#1| $) 17 (|has| |#1| (-6 (-4404 "*"))))) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-2211 (((-598 |#1| |#2|) $ (-562)) NIL)) (-4054 (($ (-598 |#1| |#2|)) NIL) (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1335 (((-112) $) NIL)) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $ $) NIL) (($ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-562) $) NIL) (((-598 |#1| |#2|) $ (-598 |#1| |#2|)) NIL) (((-598 |#1| |#3|) (-598 |#1| |#3|) $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-2239 ((|#4| |#4|) 27)) (-2172 (((-766) |#4|) 32)) (-4244 (((-766) |#4|) 33)) (-3821 (((-639 |#3|) |#4|) 39 (|has| |#3| (-6 -4404)))) (-2463 (((-3 |#4| "failed") |#4|) 50)) (-1830 ((|#4| |#4|) 43)) (-3282 ((|#1| |#4|) 42)))
+(((-520 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2239 (|#4| |#4|)) (-15 -2172 ((-766) |#4|)) (-15 -4244 ((-766) |#4|)) (IF (|has| |#3| (-6 -4404)) (-15 -3821 ((-639 |#3|) |#4|)) |%noBranch|) (-15 -3282 (|#1| |#4|)) (-15 -1830 (|#4| |#4|)) (-15 -2463 ((-3 |#4| "failed") |#4|))) (-362) (-372 |#1|) (-372 |#1|) (-681 |#1| |#2| |#3|)) (T -520))
+((-2463 (*1 *2 *2) (|partial| -12 (-4 *3 (-362)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-520 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-1830 (*1 *2 *2) (-12 (-4 *3 (-362)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-520 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-3282 (*1 *2 *3) (-12 (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-362)) (-5 *1 (-520 *2 *4 *5 *3)) (-4 *3 (-681 *2 *4 *5)))) (-3821 (*1 *2 *3) (-12 (|has| *6 (-6 -4404)) (-4 *4 (-362)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-639 *6)) (-5 *1 (-520 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-4244 (*1 *2 *3) (-12 (-4 *4 (-362)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-766)) (-5 *1 (-520 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-2172 (*1 *2 *3) (-12 (-4 *4 (-362)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-766)) (-5 *1 (-520 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-2239 (*1 *2 *2) (-12 (-4 *3 (-362)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-520 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
+(-10 -7 (-15 -2239 (|#4| |#4|)) (-15 -2172 ((-766) |#4|)) (-15 -4244 ((-766) |#4|)) (IF (|has| |#3| (-6 -4404)) (-15 -3821 ((-639 |#3|) |#4|)) |%noBranch|) (-15 -3282 (|#1| |#4|)) (-15 -1830 (|#4| |#4|)) (-15 -2463 ((-3 |#4| "failed") |#4|)))
+((-2239 ((|#8| |#4|) 20)) (-3821 (((-639 |#3|) |#4|) 29 (|has| |#7| (-6 -4404)))) (-2463 (((-3 |#8| "failed") |#4|) 23)))
+(((-521 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -2239 (|#8| |#4|)) (-15 -2463 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4404)) (-15 -3821 ((-639 |#3|) |#4|)) |%noBranch|)) (-554) (-372 |#1|) (-372 |#1|) (-681 |#1| |#2| |#3|) (-987 |#1|) (-372 |#5|) (-372 |#5|) (-681 |#5| |#6| |#7|)) (T -521))
+((-3821 (*1 *2 *3) (-12 (|has| *9 (-6 -4404)) (-4 *4 (-554)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-4 *7 (-987 *4)) (-4 *8 (-372 *7)) (-4 *9 (-372 *7)) (-5 *2 (-639 *6)) (-5 *1 (-521 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-681 *4 *5 *6)) (-4 *10 (-681 *7 *8 *9)))) (-2463 (*1 *2 *3) (|partial| -12 (-4 *4 (-554)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-4 *7 (-987 *4)) (-4 *2 (-681 *7 *8 *9)) (-5 *1 (-521 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-681 *4 *5 *6)) (-4 *8 (-372 *7)) (-4 *9 (-372 *7)))) (-2239 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-4 *7 (-987 *4)) (-4 *2 (-681 *7 *8 *9)) (-5 *1 (-521 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-681 *4 *5 *6)) (-4 *8 (-372 *7)) (-4 *9 (-372 *7)))))
+(-10 -7 (-15 -2239 (|#8| |#4|)) (-15 -2463 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4404)) (-15 -3821 ((-639 |#3|) |#4|)) |%noBranch|))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2910 (($ (-766) (-766)) NIL)) (-2955 (($ $ $) NIL)) (-2309 (($ (-598 |#1| |#3|)) NIL) (($ $) NIL)) (-4097 (((-112) $) NIL)) (-1975 (($ $ (-562) (-562)) 12)) (-2842 (($ $ (-562) (-562)) NIL)) (-2167 (($ $ (-562) (-562) (-562) (-562)) NIL)) (-2058 (($ $) NIL)) (-2819 (((-112) $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-1980 (($ $ (-562) (-562) $) NIL)) (-4200 ((|#1| $ (-562) (-562) |#1|) NIL) (($ $ (-639 (-562)) (-639 (-562)) $) NIL)) (-2267 (($ $ (-562) (-598 |#1| |#3|)) NIL)) (-3320 (($ $ (-562) (-598 |#1| |#2|)) NIL)) (-4369 (($ (-766) |#1|) NIL)) (-3329 (($) NIL T CONST)) (-2239 (($ $) 21 (|has| |#1| (-306)))) (-3511 (((-598 |#1| |#3|) $ (-562)) NIL)) (-2172 (((-766) $) 24 (|has| |#1| (-554)))) (-1507 ((|#1| $ (-562) (-562) |#1|) NIL)) (-1420 ((|#1| $ (-562) (-562)) NIL)) (-1720 (((-639 |#1|) $) NIL)) (-4244 (((-766) $) 26 (|has| |#1| (-554)))) (-3821 (((-639 (-598 |#1| |#2|)) $) 29 (|has| |#1| (-554)))) (-2698 (((-766) $) NIL)) (-1458 (($ (-766) (-766) |#1|) NIL)) (-2708 (((-766) $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1622 ((|#1| $) 19 (|has| |#1| (-6 (-4405 "*"))))) (-1808 (((-562) $) 10)) (-2028 (((-562) $) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3269 (((-562) $) 11)) (-2727 (((-562) $) NIL)) (-2884 (($ (-639 (-639 |#1|))) NIL)) (-1491 (($ (-1 |#1| |#1|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2247 (((-639 (-639 |#1|)) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-2463 (((-3 $ "failed") $) 33 (|has| |#1| (-362)))) (-3713 (($ $ $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3510 (($ $ |#1|) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ (-562) (-562)) NIL) ((|#1| $ (-562) (-562) |#1|) NIL) (($ $ (-639 (-562)) (-639 (-562))) NIL)) (-3168 (($ (-639 |#1|)) NIL) (($ (-639 $)) NIL)) (-1752 (((-112) $) NIL)) (-3282 ((|#1| $) 17 (|has| |#1| (-6 (-4405 "*"))))) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-2208 (((-598 |#1| |#2|) $ (-562)) NIL)) (-4053 (($ (-598 |#1| |#2|)) NIL) (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1996 (((-112) $) NIL)) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $ $) NIL) (($ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-562) $) NIL) (((-598 |#1| |#2|) $ (-598 |#1| |#2|)) NIL) (((-598 |#1| |#3|) (-598 |#1| |#3|) $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-522 |#1| |#2| |#3|) (-681 |#1| (-598 |#1| |#3|) (-598 |#1| |#2|)) (-1044) (-562) (-562)) (T -522))
NIL
(-681 |#1| (-598 |#1| |#3|) (-598 |#1| |#2|))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-4273 (((-639 (-1206)) $) 13)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 20) (($ (-1173)) NIL) (((-1173) $) NIL) (($ (-639 (-1206))) 11)) (-1731 (((-112) $ $) NIL)))
-(((-523) (-13 (-1075) (-10 -8 (-15 -4054 ($ (-639 (-1206)))) (-15 -4273 ((-639 (-1206)) $))))) (T -523))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-523)))) (-4273 (*1 *2 *1) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-523)))))
-(-13 (-1075) (-10 -8 (-15 -4054 ($ (-639 (-1206)))) (-15 -4273 ((-639 (-1206)) $))))
-((-4041 (((-112) $ $) NIL)) (-2931 (((-1127) $) 14)) (-2913 (((-1150) $) NIL)) (-2806 (((-1168) $) 11)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 21) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-524) (-13 (-1075) (-10 -8 (-15 -2806 ((-1168) $)) (-15 -2931 ((-1127) $))))) (T -524))
-((-2806 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-524)))) (-2931 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-524)))))
-(-13 (-1075) (-10 -8 (-15 -2806 ((-1168) $)) (-15 -2931 ((-1127) $))))
-((-3691 (((-685 (-1214)) $) 15)) (-3192 (((-685 (-1213)) $) 35)) (-3661 (((-685 (-1212)) $) 26)) (-1735 (((-685 (-547)) $) 12)) (-1890 (((-685 (-546)) $) 39)) (-2242 (((-685 (-545)) $) 30)) (-1477 (((-766) $ (-128)) 49)))
-(((-525 |#1|) (-10 -8 (-15 -1477 ((-766) |#1| (-128))) (-15 -3192 ((-685 (-1213)) |#1|)) (-15 -1890 ((-685 (-546)) |#1|)) (-15 -3661 ((-685 (-1212)) |#1|)) (-15 -2242 ((-685 (-545)) |#1|)) (-15 -3691 ((-685 (-1214)) |#1|)) (-15 -1735 ((-685 (-547)) |#1|))) (-526)) (T -525))
-NIL
-(-10 -8 (-15 -1477 ((-766) |#1| (-128))) (-15 -3192 ((-685 (-1213)) |#1|)) (-15 -1890 ((-685 (-546)) |#1|)) (-15 -3661 ((-685 (-1212)) |#1|)) (-15 -2242 ((-685 (-545)) |#1|)) (-15 -3691 ((-685 (-1214)) |#1|)) (-15 -1735 ((-685 (-547)) |#1|)))
-((-3691 (((-685 (-1214)) $) 12)) (-3192 (((-685 (-1213)) $) 8)) (-3661 (((-685 (-1212)) $) 10)) (-1735 (((-685 (-547)) $) 13)) (-1890 (((-685 (-546)) $) 9)) (-2242 (((-685 (-545)) $) 11)) (-1477 (((-766) $ (-128)) 7)) (-1850 (((-685 (-129)) $) 14)) (-3948 (($ $) 6)))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-4360 (((-639 (-1206)) $) 13)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 20) (($ (-1173)) NIL) (((-1173) $) NIL) (($ (-639 (-1206))) 11)) (-1733 (((-112) $ $) NIL)))
+(((-523) (-13 (-1075) (-10 -8 (-15 -4053 ($ (-639 (-1206)))) (-15 -4360 ((-639 (-1206)) $))))) (T -523))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-523)))) (-4360 (*1 *2 *1) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-523)))))
+(-13 (-1075) (-10 -8 (-15 -4053 ($ (-639 (-1206)))) (-15 -4360 ((-639 (-1206)) $))))
+((-4041 (((-112) $ $) NIL)) (-3895 (((-1127) $) 14)) (-3696 (((-1150) $) NIL)) (-2069 (((-1168) $) 11)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 21) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-524) (-13 (-1075) (-10 -8 (-15 -2069 ((-1168) $)) (-15 -3895 ((-1127) $))))) (T -524))
+((-2069 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-524)))) (-3895 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-524)))))
+(-13 (-1075) (-10 -8 (-15 -2069 ((-1168) $)) (-15 -3895 ((-1127) $))))
+((-3746 (((-685 (-1214)) $) 15)) (-2589 (((-685 (-1213)) $) 35)) (-1617 (((-685 (-1212)) $) 26)) (-3994 (((-685 (-547)) $) 12)) (-1882 (((-685 (-546)) $) 39)) (-4320 (((-685 (-545)) $) 30)) (-2456 (((-766) $ (-128)) 49)))
+(((-525 |#1|) (-10 -8 (-15 -2456 ((-766) |#1| (-128))) (-15 -2589 ((-685 (-1213)) |#1|)) (-15 -1882 ((-685 (-546)) |#1|)) (-15 -1617 ((-685 (-1212)) |#1|)) (-15 -4320 ((-685 (-545)) |#1|)) (-15 -3746 ((-685 (-1214)) |#1|)) (-15 -3994 ((-685 (-547)) |#1|))) (-526)) (T -525))
+NIL
+(-10 -8 (-15 -2456 ((-766) |#1| (-128))) (-15 -2589 ((-685 (-1213)) |#1|)) (-15 -1882 ((-685 (-546)) |#1|)) (-15 -1617 ((-685 (-1212)) |#1|)) (-15 -4320 ((-685 (-545)) |#1|)) (-15 -3746 ((-685 (-1214)) |#1|)) (-15 -3994 ((-685 (-547)) |#1|)))
+((-3746 (((-685 (-1214)) $) 12)) (-2589 (((-685 (-1213)) $) 8)) (-1617 (((-685 (-1212)) $) 10)) (-3994 (((-685 (-547)) $) 13)) (-1882 (((-685 (-546)) $) 9)) (-4320 (((-685 (-545)) $) 11)) (-2456 (((-766) $ (-128)) 7)) (-2661 (((-685 (-129)) $) 14)) (-1380 (($ $) 6)))
(((-526) (-139)) (T -526))
-((-1850 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-129))))) (-1735 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-547))))) (-3691 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-1214))))) (-2242 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-545))))) (-3661 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-1212))))) (-1890 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-546))))) (-3192 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-1213))))) (-1477 (*1 *2 *1 *3) (-12 (-4 *1 (-526)) (-5 *3 (-128)) (-5 *2 (-766)))))
-(-13 (-172) (-10 -8 (-15 -1850 ((-685 (-129)) $)) (-15 -1735 ((-685 (-547)) $)) (-15 -3691 ((-685 (-1214)) $)) (-15 -2242 ((-685 (-545)) $)) (-15 -3661 ((-685 (-1212)) $)) (-15 -1890 ((-685 (-546)) $)) (-15 -3192 ((-685 (-1213)) $)) (-15 -1477 ((-766) $ (-128)))))
+((-2661 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-129))))) (-3994 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-547))))) (-3746 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-1214))))) (-4320 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-545))))) (-1617 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-1212))))) (-1882 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-546))))) (-2589 (*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-1213))))) (-2456 (*1 *2 *1 *3) (-12 (-4 *1 (-526)) (-5 *3 (-128)) (-5 *2 (-766)))))
+(-13 (-172) (-10 -8 (-15 -2661 ((-685 (-129)) $)) (-15 -3994 ((-685 (-547)) $)) (-15 -3746 ((-685 (-1214)) $)) (-15 -4320 ((-685 (-545)) $)) (-15 -1617 ((-685 (-1212)) $)) (-15 -1882 ((-685 (-546)) $)) (-15 -2589 ((-685 (-1213)) $)) (-15 -2456 ((-766) $ (-128)))))
(((-172) . T))
-((-1845 (((-1164 |#1|) (-766)) 75)) (-1748 (((-1256 |#1|) (-1256 |#1|) (-916)) 68)) (-1651 (((-1261) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))) |#1|) 83)) (-3092 (((-1256 |#1|) (-1256 |#1|) (-766)) 36)) (-1448 (((-1256 |#1|) (-916)) 70)) (-3446 (((-1256 |#1|) (-1256 |#1|) (-562)) 24)) (-4380 (((-1164 |#1|) (-1256 |#1|)) 76)) (-1846 (((-1256 |#1|) (-916)) 94)) (-1316 (((-112) (-1256 |#1|)) 79)) (-2247 (((-1256 |#1|) (-1256 |#1|) (-916)) 61)) (-1565 (((-1164 |#1|) (-1256 |#1|)) 88)) (-1999 (((-916) (-1256 |#1|)) 58)) (-1525 (((-1256 |#1|) (-1256 |#1|)) 30)) (-2466 (((-1256 |#1|) (-916) (-916)) 96)) (-3781 (((-1256 |#1|) (-1256 |#1|) (-1112) (-1112)) 23)) (-1492 (((-1256 |#1|) (-1256 |#1|) (-766) (-1112)) 37)) (-3928 (((-1256 (-1256 |#1|)) (-916)) 93)) (-1859 (((-1256 |#1|) (-1256 |#1|) (-1256 |#1|)) 80)) (** (((-1256 |#1|) (-1256 |#1|) (-562)) 43)) (* (((-1256 |#1|) (-1256 |#1|) (-1256 |#1|)) 25)))
-(((-527 |#1|) (-10 -7 (-15 -1651 ((-1261) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))) |#1|)) (-15 -1448 ((-1256 |#1|) (-916))) (-15 -2466 ((-1256 |#1|) (-916) (-916))) (-15 -4380 ((-1164 |#1|) (-1256 |#1|))) (-15 -1845 ((-1164 |#1|) (-766))) (-15 -1492 ((-1256 |#1|) (-1256 |#1|) (-766) (-1112))) (-15 -3092 ((-1256 |#1|) (-1256 |#1|) (-766))) (-15 -3781 ((-1256 |#1|) (-1256 |#1|) (-1112) (-1112))) (-15 -3446 ((-1256 |#1|) (-1256 |#1|) (-562))) (-15 ** ((-1256 |#1|) (-1256 |#1|) (-562))) (-15 * ((-1256 |#1|) (-1256 |#1|) (-1256 |#1|))) (-15 -1859 ((-1256 |#1|) (-1256 |#1|) (-1256 |#1|))) (-15 -2247 ((-1256 |#1|) (-1256 |#1|) (-916))) (-15 -1748 ((-1256 |#1|) (-1256 |#1|) (-916))) (-15 -1525 ((-1256 |#1|) (-1256 |#1|))) (-15 -1999 ((-916) (-1256 |#1|))) (-15 -1316 ((-112) (-1256 |#1|))) (-15 -3928 ((-1256 (-1256 |#1|)) (-916))) (-15 -1846 ((-1256 |#1|) (-916))) (-15 -1565 ((-1164 |#1|) (-1256 |#1|)))) (-348)) (T -527))
-((-1565 (*1 *2 *3) (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-1164 *4)) (-5 *1 (-527 *4)))) (-1846 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1256 *4)) (-5 *1 (-527 *4)) (-4 *4 (-348)))) (-3928 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1256 (-1256 *4))) (-5 *1 (-527 *4)) (-4 *4 (-348)))) (-1316 (*1 *2 *3) (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-112)) (-5 *1 (-527 *4)))) (-1999 (*1 *2 *3) (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-916)) (-5 *1 (-527 *4)))) (-1525 (*1 *2 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-348)) (-5 *1 (-527 *3)))) (-1748 (*1 *2 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-916)) (-4 *4 (-348)) (-5 *1 (-527 *4)))) (-2247 (*1 *2 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-916)) (-4 *4 (-348)) (-5 *1 (-527 *4)))) (-1859 (*1 *2 *2 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-348)) (-5 *1 (-527 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-348)) (-5 *1 (-527 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-562)) (-4 *4 (-348)) (-5 *1 (-527 *4)))) (-3446 (*1 *2 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-562)) (-4 *4 (-348)) (-5 *1 (-527 *4)))) (-3781 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-1112)) (-4 *4 (-348)) (-5 *1 (-527 *4)))) (-3092 (*1 *2 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-527 *4)))) (-1492 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1256 *5)) (-5 *3 (-766)) (-5 *4 (-1112)) (-4 *5 (-348)) (-5 *1 (-527 *5)))) (-1845 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1164 *4)) (-5 *1 (-527 *4)) (-4 *4 (-348)))) (-4380 (*1 *2 *3) (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-1164 *4)) (-5 *1 (-527 *4)))) (-2466 (*1 *2 *3 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1256 *4)) (-5 *1 (-527 *4)) (-4 *4 (-348)))) (-1448 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1256 *4)) (-5 *1 (-527 *4)) (-4 *4 (-348)))) (-1651 (*1 *2 *3 *4) (-12 (-5 *3 (-1256 (-639 (-2 (|:| -2534 *4) (|:| -2466 (-1112)))))) (-4 *4 (-348)) (-5 *2 (-1261)) (-5 *1 (-527 *4)))))
-(-10 -7 (-15 -1651 ((-1261) (-1256 (-639 (-2 (|:| -2534 |#1|) (|:| -2466 (-1112))))) |#1|)) (-15 -1448 ((-1256 |#1|) (-916))) (-15 -2466 ((-1256 |#1|) (-916) (-916))) (-15 -4380 ((-1164 |#1|) (-1256 |#1|))) (-15 -1845 ((-1164 |#1|) (-766))) (-15 -1492 ((-1256 |#1|) (-1256 |#1|) (-766) (-1112))) (-15 -3092 ((-1256 |#1|) (-1256 |#1|) (-766))) (-15 -3781 ((-1256 |#1|) (-1256 |#1|) (-1112) (-1112))) (-15 -3446 ((-1256 |#1|) (-1256 |#1|) (-562))) (-15 ** ((-1256 |#1|) (-1256 |#1|) (-562))) (-15 * ((-1256 |#1|) (-1256 |#1|) (-1256 |#1|))) (-15 -1859 ((-1256 |#1|) (-1256 |#1|) (-1256 |#1|))) (-15 -2247 ((-1256 |#1|) (-1256 |#1|) (-916))) (-15 -1748 ((-1256 |#1|) (-1256 |#1|) (-916))) (-15 -1525 ((-1256 |#1|) (-1256 |#1|))) (-15 -1999 ((-916) (-1256 |#1|))) (-15 -1316 ((-112) (-1256 |#1|))) (-15 -3928 ((-1256 (-1256 |#1|)) (-916))) (-15 -1846 ((-1256 |#1|) (-916))) (-15 -1565 ((-1164 |#1|) (-1256 |#1|))))
-((-3691 (((-685 (-1214)) $) NIL)) (-3192 (((-685 (-1213)) $) NIL)) (-3661 (((-685 (-1212)) $) NIL)) (-1735 (((-685 (-547)) $) NIL)) (-1890 (((-685 (-546)) $) NIL)) (-2242 (((-685 (-545)) $) NIL)) (-1477 (((-766) $ (-128)) NIL)) (-1850 (((-685 (-129)) $) 23)) (-2909 (((-1112) $ (-1112)) 28)) (-4264 (((-1112) $) 27)) (-2468 (((-112) $) 18)) (-2273 (($ (-387)) 12) (($ (-1150)) 14)) (-2647 (((-112) $) 24)) (-4054 (((-857) $) 31)) (-3948 (($ $) 25)))
-(((-528) (-13 (-526) (-609 (-857)) (-10 -8 (-15 -2273 ($ (-387))) (-15 -2273 ($ (-1150))) (-15 -2647 ((-112) $)) (-15 -2468 ((-112) $)) (-15 -4264 ((-1112) $)) (-15 -2909 ((-1112) $ (-1112)))))) (T -528))
-((-2273 (*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-528)))) (-2273 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-528)))) (-2647 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-528)))) (-2468 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-528)))) (-4264 (*1 *2 *1) (-12 (-5 *2 (-1112)) (-5 *1 (-528)))) (-2909 (*1 *2 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-528)))))
-(-13 (-526) (-609 (-857)) (-10 -8 (-15 -2273 ($ (-387))) (-15 -2273 ($ (-1150))) (-15 -2647 ((-112) $)) (-15 -2468 ((-112) $)) (-15 -4264 ((-1112) $)) (-15 -2909 ((-1112) $ (-1112)))))
-((-3512 (((-1 |#1| |#1|) |#1|) 11)) (-3638 (((-1 |#1| |#1|)) 10)))
-(((-529 |#1|) (-10 -7 (-15 -3638 ((-1 |#1| |#1|))) (-15 -3512 ((-1 |#1| |#1|) |#1|))) (-13 (-721) (-25))) (T -529))
-((-3512 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-529 *3)) (-4 *3 (-13 (-721) (-25))))) (-3638 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-529 *3)) (-4 *3 (-13 (-721) (-25))))))
-(-10 -7 (-15 -3638 ((-1 |#1| |#1|))) (-15 -3512 ((-1 |#1| |#1|) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3659 (($ $ $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1601 (($ $) NIL)) (-1378 (($ (-766) |#1|) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 (-766) (-766)) $) NIL)) (-2500 ((|#1| $) NIL)) (-1573 (((-766) $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 20)) (-2286 (($) NIL T CONST)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)) (-1835 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL)))
+((-2622 (((-1164 |#1|) (-766)) 75)) (-1748 (((-1256 |#1|) (-1256 |#1|) (-916)) 68)) (-1388 (((-1261) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))) |#1|) 83)) (-4036 (((-1256 |#1|) (-1256 |#1|) (-766)) 36)) (-1447 (((-1256 |#1|) (-916)) 70)) (-3145 (((-1256 |#1|) (-1256 |#1|) (-562)) 24)) (-4201 (((-1164 |#1|) (-1256 |#1|)) 76)) (-2631 (((-1256 |#1|) (-916)) 94)) (-1775 (((-112) (-1256 |#1|)) 79)) (-4363 (((-1256 |#1|) (-1256 |#1|) (-916)) 61)) (-1937 (((-1164 |#1|) (-1256 |#1|)) 88)) (-3549 (((-916) (-1256 |#1|)) 58)) (-1525 (((-1256 |#1|) (-1256 |#1|)) 30)) (-2464 (((-1256 |#1|) (-916) (-916)) 96)) (-3382 (((-1256 |#1|) (-1256 |#1|) (-1112) (-1112)) 23)) (-2538 (((-1256 |#1|) (-1256 |#1|) (-766) (-1112)) 37)) (-4291 (((-1256 (-1256 |#1|)) (-916)) 93)) (-1859 (((-1256 |#1|) (-1256 |#1|) (-1256 |#1|)) 80)) (** (((-1256 |#1|) (-1256 |#1|) (-562)) 43)) (* (((-1256 |#1|) (-1256 |#1|) (-1256 |#1|)) 25)))
+(((-527 |#1|) (-10 -7 (-15 -1388 ((-1261) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))) |#1|)) (-15 -1447 ((-1256 |#1|) (-916))) (-15 -2464 ((-1256 |#1|) (-916) (-916))) (-15 -4201 ((-1164 |#1|) (-1256 |#1|))) (-15 -2622 ((-1164 |#1|) (-766))) (-15 -2538 ((-1256 |#1|) (-1256 |#1|) (-766) (-1112))) (-15 -4036 ((-1256 |#1|) (-1256 |#1|) (-766))) (-15 -3382 ((-1256 |#1|) (-1256 |#1|) (-1112) (-1112))) (-15 -3145 ((-1256 |#1|) (-1256 |#1|) (-562))) (-15 ** ((-1256 |#1|) (-1256 |#1|) (-562))) (-15 * ((-1256 |#1|) (-1256 |#1|) (-1256 |#1|))) (-15 -1859 ((-1256 |#1|) (-1256 |#1|) (-1256 |#1|))) (-15 -4363 ((-1256 |#1|) (-1256 |#1|) (-916))) (-15 -1748 ((-1256 |#1|) (-1256 |#1|) (-916))) (-15 -1525 ((-1256 |#1|) (-1256 |#1|))) (-15 -3549 ((-916) (-1256 |#1|))) (-15 -1775 ((-112) (-1256 |#1|))) (-15 -4291 ((-1256 (-1256 |#1|)) (-916))) (-15 -2631 ((-1256 |#1|) (-916))) (-15 -1937 ((-1164 |#1|) (-1256 |#1|)))) (-348)) (T -527))
+((-1937 (*1 *2 *3) (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-1164 *4)) (-5 *1 (-527 *4)))) (-2631 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1256 *4)) (-5 *1 (-527 *4)) (-4 *4 (-348)))) (-4291 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1256 (-1256 *4))) (-5 *1 (-527 *4)) (-4 *4 (-348)))) (-1775 (*1 *2 *3) (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-112)) (-5 *1 (-527 *4)))) (-3549 (*1 *2 *3) (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-916)) (-5 *1 (-527 *4)))) (-1525 (*1 *2 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-348)) (-5 *1 (-527 *3)))) (-1748 (*1 *2 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-916)) (-4 *4 (-348)) (-5 *1 (-527 *4)))) (-4363 (*1 *2 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-916)) (-4 *4 (-348)) (-5 *1 (-527 *4)))) (-1859 (*1 *2 *2 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-348)) (-5 *1 (-527 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-348)) (-5 *1 (-527 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-562)) (-4 *4 (-348)) (-5 *1 (-527 *4)))) (-3145 (*1 *2 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-562)) (-4 *4 (-348)) (-5 *1 (-527 *4)))) (-3382 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-1112)) (-4 *4 (-348)) (-5 *1 (-527 *4)))) (-4036 (*1 *2 *2 *3) (-12 (-5 *2 (-1256 *4)) (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-527 *4)))) (-2538 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1256 *5)) (-5 *3 (-766)) (-5 *4 (-1112)) (-4 *5 (-348)) (-5 *1 (-527 *5)))) (-2622 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1164 *4)) (-5 *1 (-527 *4)) (-4 *4 (-348)))) (-4201 (*1 *2 *3) (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-1164 *4)) (-5 *1 (-527 *4)))) (-2464 (*1 *2 *3 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1256 *4)) (-5 *1 (-527 *4)) (-4 *4 (-348)))) (-1447 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1256 *4)) (-5 *1 (-527 *4)) (-4 *4 (-348)))) (-1388 (*1 *2 *3 *4) (-12 (-5 *3 (-1256 (-639 (-2 (|:| -2533 *4) (|:| -2464 (-1112)))))) (-4 *4 (-348)) (-5 *2 (-1261)) (-5 *1 (-527 *4)))))
+(-10 -7 (-15 -1388 ((-1261) (-1256 (-639 (-2 (|:| -2533 |#1|) (|:| -2464 (-1112))))) |#1|)) (-15 -1447 ((-1256 |#1|) (-916))) (-15 -2464 ((-1256 |#1|) (-916) (-916))) (-15 -4201 ((-1164 |#1|) (-1256 |#1|))) (-15 -2622 ((-1164 |#1|) (-766))) (-15 -2538 ((-1256 |#1|) (-1256 |#1|) (-766) (-1112))) (-15 -4036 ((-1256 |#1|) (-1256 |#1|) (-766))) (-15 -3382 ((-1256 |#1|) (-1256 |#1|) (-1112) (-1112))) (-15 -3145 ((-1256 |#1|) (-1256 |#1|) (-562))) (-15 ** ((-1256 |#1|) (-1256 |#1|) (-562))) (-15 * ((-1256 |#1|) (-1256 |#1|) (-1256 |#1|))) (-15 -1859 ((-1256 |#1|) (-1256 |#1|) (-1256 |#1|))) (-15 -4363 ((-1256 |#1|) (-1256 |#1|) (-916))) (-15 -1748 ((-1256 |#1|) (-1256 |#1|) (-916))) (-15 -1525 ((-1256 |#1|) (-1256 |#1|))) (-15 -3549 ((-916) (-1256 |#1|))) (-15 -1775 ((-112) (-1256 |#1|))) (-15 -4291 ((-1256 (-1256 |#1|)) (-916))) (-15 -2631 ((-1256 |#1|) (-916))) (-15 -1937 ((-1164 |#1|) (-1256 |#1|))))
+((-3746 (((-685 (-1214)) $) NIL)) (-2589 (((-685 (-1213)) $) NIL)) (-1617 (((-685 (-1212)) $) NIL)) (-3994 (((-685 (-547)) $) NIL)) (-1882 (((-685 (-546)) $) NIL)) (-4320 (((-685 (-545)) $) NIL)) (-2456 (((-766) $ (-128)) NIL)) (-2661 (((-685 (-129)) $) 23)) (-3663 (((-1112) $ (-1112)) 28)) (-4265 (((-1112) $) 27)) (-2851 (((-112) $) 18)) (-1548 (($ (-387)) 12) (($ (-1150)) 14)) (-4132 (((-112) $) 24)) (-4053 (((-857) $) 31)) (-1380 (($ $) 25)))
+(((-528) (-13 (-526) (-609 (-857)) (-10 -8 (-15 -1548 ($ (-387))) (-15 -1548 ($ (-1150))) (-15 -4132 ((-112) $)) (-15 -2851 ((-112) $)) (-15 -4265 ((-1112) $)) (-15 -3663 ((-1112) $ (-1112)))))) (T -528))
+((-1548 (*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-528)))) (-1548 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-528)))) (-4132 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-528)))) (-2851 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-528)))) (-4265 (*1 *2 *1) (-12 (-5 *2 (-1112)) (-5 *1 (-528)))) (-3663 (*1 *2 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-528)))))
+(-13 (-526) (-609 (-857)) (-10 -8 (-15 -1548 ($ (-387))) (-15 -1548 ($ (-1150))) (-15 -4132 ((-112) $)) (-15 -2851 ((-112) $)) (-15 -4265 ((-1112) $)) (-15 -3663 ((-1112) $ (-1112)))))
+((-3513 (((-1 |#1| |#1|) |#1|) 11)) (-1351 (((-1 |#1| |#1|)) 10)))
+(((-529 |#1|) (-10 -7 (-15 -1351 ((-1 |#1| |#1|))) (-15 -3513 ((-1 |#1| |#1|) |#1|))) (-13 (-721) (-25))) (T -529))
+((-3513 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-529 *3)) (-4 *3 (-13 (-721) (-25))))) (-1351 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-529 *3)) (-4 *3 (-13 (-721) (-25))))))
+(-10 -7 (-15 -1351 ((-1 |#1| |#1|))) (-15 -3513 ((-1 |#1| |#1|) |#1|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1593 (($ $ $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1600 (($ $) NIL)) (-1377 (($ (-766) |#1|) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 (-766) (-766)) $) NIL)) (-2006 ((|#1| $) NIL)) (-1573 (((-766) $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 20)) (-2285 (($) NIL T CONST)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL)))
(((-530 |#1|) (-13 (-788) (-508 (-766) |#1|)) (-845)) (T -530))
NIL
(-13 (-788) (-508 (-766) |#1|))
-((-1619 (((-639 |#2|) (-1164 |#1|) |#3|) 83)) (-2232 (((-639 (-2 (|:| |outval| |#2|) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 |#2|))))) (-683 |#1|) |#3| (-1 (-417 (-1164 |#1|)) (-1164 |#1|))) 100)) (-3267 (((-1164 |#1|) (-683 |#1|)) 95)))
-(((-531 |#1| |#2| |#3|) (-10 -7 (-15 -3267 ((-1164 |#1|) (-683 |#1|))) (-15 -1619 ((-639 |#2|) (-1164 |#1|) |#3|)) (-15 -2232 ((-639 (-2 (|:| |outval| |#2|) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 |#2|))))) (-683 |#1|) |#3| (-1 (-417 (-1164 |#1|)) (-1164 |#1|))))) (-362) (-362) (-13 (-362) (-843))) (T -531))
-((-2232 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *6)) (-5 *5 (-1 (-417 (-1164 *6)) (-1164 *6))) (-4 *6 (-362)) (-5 *2 (-639 (-2 (|:| |outval| *7) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 *7)))))) (-5 *1 (-531 *6 *7 *4)) (-4 *7 (-362)) (-4 *4 (-13 (-362) (-843))))) (-1619 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *5)) (-4 *5 (-362)) (-5 *2 (-639 *6)) (-5 *1 (-531 *5 *6 *4)) (-4 *6 (-362)) (-4 *4 (-13 (-362) (-843))))) (-3267 (*1 *2 *3) (-12 (-5 *3 (-683 *4)) (-4 *4 (-362)) (-5 *2 (-1164 *4)) (-5 *1 (-531 *4 *5 *6)) (-4 *5 (-362)) (-4 *6 (-13 (-362) (-843))))))
-(-10 -7 (-15 -3267 ((-1164 |#1|) (-683 |#1|))) (-15 -1619 ((-639 |#2|) (-1164 |#1|) |#3|)) (-15 -2232 ((-639 (-2 (|:| |outval| |#2|) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 |#2|))))) (-683 |#1|) |#3| (-1 (-417 (-1164 |#1|)) (-1164 |#1|)))))
-((-2475 (((-685 (-1214)) $ (-1214)) NIL)) (-3202 (((-685 (-547)) $ (-547)) NIL)) (-3787 (((-766) $ (-128)) 39)) (-3966 (((-685 (-129)) $ (-129)) 40)) (-3691 (((-685 (-1214)) $) NIL)) (-3192 (((-685 (-1213)) $) NIL)) (-3661 (((-685 (-1212)) $) NIL)) (-1735 (((-685 (-547)) $) NIL)) (-1890 (((-685 (-546)) $) NIL)) (-2242 (((-685 (-545)) $) NIL)) (-1477 (((-766) $ (-128)) 34)) (-1850 (((-685 (-129)) $) 37)) (-3828 (((-112) $) 29)) (-2640 (((-685 $) (-577) (-949)) 19) (((-685 $) (-490) (-949)) 26)) (-4054 (((-857) $) 49)) (-3948 (($ $) 41)))
-(((-532) (-13 (-762 (-577)) (-609 (-857)) (-10 -8 (-15 -2640 ((-685 $) (-490) (-949)))))) (T -532))
-((-2640 (*1 *2 *3 *4) (-12 (-5 *3 (-490)) (-5 *4 (-949)) (-5 *2 (-685 (-532))) (-5 *1 (-532)))))
-(-13 (-762 (-577)) (-609 (-857)) (-10 -8 (-15 -2640 ((-685 $) (-490) (-949)))))
+((-4189 (((-639 |#2|) (-1164 |#1|) |#3|) 83)) (-4241 (((-639 (-2 (|:| |outval| |#2|) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 |#2|))))) (-683 |#1|) |#3| (-1 (-417 (-1164 |#1|)) (-1164 |#1|))) 100)) (-2111 (((-1164 |#1|) (-683 |#1|)) 95)))
+(((-531 |#1| |#2| |#3|) (-10 -7 (-15 -2111 ((-1164 |#1|) (-683 |#1|))) (-15 -4189 ((-639 |#2|) (-1164 |#1|) |#3|)) (-15 -4241 ((-639 (-2 (|:| |outval| |#2|) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 |#2|))))) (-683 |#1|) |#3| (-1 (-417 (-1164 |#1|)) (-1164 |#1|))))) (-362) (-362) (-13 (-362) (-843))) (T -531))
+((-4241 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *6)) (-5 *5 (-1 (-417 (-1164 *6)) (-1164 *6))) (-4 *6 (-362)) (-5 *2 (-639 (-2 (|:| |outval| *7) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 *7)))))) (-5 *1 (-531 *6 *7 *4)) (-4 *7 (-362)) (-4 *4 (-13 (-362) (-843))))) (-4189 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *5)) (-4 *5 (-362)) (-5 *2 (-639 *6)) (-5 *1 (-531 *5 *6 *4)) (-4 *6 (-362)) (-4 *4 (-13 (-362) (-843))))) (-2111 (*1 *2 *3) (-12 (-5 *3 (-683 *4)) (-4 *4 (-362)) (-5 *2 (-1164 *4)) (-5 *1 (-531 *4 *5 *6)) (-4 *5 (-362)) (-4 *6 (-13 (-362) (-843))))))
+(-10 -7 (-15 -2111 ((-1164 |#1|) (-683 |#1|))) (-15 -4189 ((-639 |#2|) (-1164 |#1|) |#3|)) (-15 -4241 ((-639 (-2 (|:| |outval| |#2|) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 |#2|))))) (-683 |#1|) |#3| (-1 (-417 (-1164 |#1|)) (-1164 |#1|)))))
+((-1734 (((-685 (-1214)) $ (-1214)) NIL)) (-2667 (((-685 (-547)) $ (-547)) NIL)) (-3445 (((-766) $ (-128)) 39)) (-1571 (((-685 (-129)) $ (-129)) 40)) (-3746 (((-685 (-1214)) $) NIL)) (-2589 (((-685 (-1213)) $) NIL)) (-1617 (((-685 (-1212)) $) NIL)) (-3994 (((-685 (-547)) $) NIL)) (-1882 (((-685 (-546)) $) NIL)) (-4320 (((-685 (-545)) $) NIL)) (-2456 (((-766) $ (-128)) 34)) (-2661 (((-685 (-129)) $) 37)) (-2659 (((-112) $) 29)) (-4052 (((-685 $) (-577) (-949)) 19) (((-685 $) (-490) (-949)) 26)) (-4053 (((-857) $) 49)) (-1380 (($ $) 41)))
+(((-532) (-13 (-762 (-577)) (-609 (-857)) (-10 -8 (-15 -4052 ((-685 $) (-490) (-949)))))) (T -532))
+((-4052 (*1 *2 *3 *4) (-12 (-5 *3 (-490)) (-5 *4 (-949)) (-5 *2 (-685 (-532))) (-5 *1 (-532)))))
+(-13 (-762 (-577)) (-609 (-857)) (-10 -8 (-15 -4052 ((-685 $) (-490) (-949)))))
((-3604 (((-838 (-562))) 12)) (-3616 (((-838 (-562))) 14)) (-4113 (((-828 (-562))) 9)))
(((-533) (-10 -7 (-15 -4113 ((-828 (-562)))) (-15 -3604 ((-838 (-562)))) (-15 -3616 ((-838 (-562)))))) (T -533))
((-3616 (*1 *2) (-12 (-5 *2 (-838 (-562))) (-5 *1 (-533)))) (-3604 (*1 *2) (-12 (-5 *2 (-838 (-562))) (-5 *1 (-533)))) (-4113 (*1 *2) (-12 (-5 *2 (-828 (-562))) (-5 *1 (-533)))))
(-10 -7 (-15 -4113 ((-828 (-562)))) (-15 -3604 ((-838 (-562)))) (-15 -3616 ((-838 (-562)))))
-((-2914 (((-535) (-1168)) 15)) (-3924 ((|#1| (-535)) 20)))
-(((-534 |#1|) (-10 -7 (-15 -2914 ((-535) (-1168))) (-15 -3924 (|#1| (-535)))) (-1207)) (T -534))
-((-3924 (*1 *2 *3) (-12 (-5 *3 (-535)) (-5 *1 (-534 *2)) (-4 *2 (-1207)))) (-2914 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-535)) (-5 *1 (-534 *4)) (-4 *4 (-1207)))))
-(-10 -7 (-15 -2914 ((-535) (-1168))) (-15 -3924 (|#1| (-535))))
-((-4041 (((-112) $ $) NIL)) (-2740 (((-1150) $) 47)) (-1873 (((-112) $) 43)) (-1730 (((-1168) $) 44)) (-2186 (((-112) $) 41)) (-3596 (((-1150) $) 42)) (-3912 (($ (-1150)) 48)) (-3155 (((-112) $) NIL)) (-4060 (((-112) $) NIL)) (-1661 (((-112) $) NIL)) (-2913 (((-1150) $) NIL)) (-3835 (($ $ (-639 (-1168))) 20)) (-3924 (((-52) $) 22)) (-3377 (((-112) $) NIL)) (-1757 (((-562) $) NIL)) (-1709 (((-1112) $) NIL)) (-1407 (($ $ (-639 (-1168)) (-1168)) 60)) (-3715 (((-112) $) NIL)) (-4235 (((-224) $) NIL)) (-2755 (($ $) 38)) (-2404 (((-857) $) NIL)) (-3342 (((-112) $ $) NIL)) (-2343 (($ $ (-562)) NIL) (($ $ (-639 (-562))) NIL)) (-1716 (((-639 $) $) 28)) (-3095 (((-1168) (-639 $)) 49)) (-4208 (($ (-1150)) NIL) (($ (-1168)) 18) (($ (-562)) 8) (($ (-224)) 25) (($ (-857)) NIL) (($ (-639 $)) 56) (((-1096) $) 11) (($ (-1096)) 12)) (-3464 (((-1168) (-1168) (-639 $)) 52)) (-4054 (((-857) $) 46)) (-3740 (($ $) 51)) (-3728 (($ $) 50)) (-4269 (($ $ (-639 $)) 57)) (-2849 (((-112) $) 27)) (-2286 (($) 9 T CONST)) (-2294 (($) 10 T CONST)) (-1731 (((-112) $ $) 61)) (-1859 (($ $ $) 66)) (-1835 (($ $ $) 62)) (** (($ $ (-766)) 65) (($ $ (-562)) 64)) (* (($ $ $) 63)) (-3492 (((-562) $) NIL)))
-(((-535) (-13 (-1095 (-1150) (-1168) (-562) (-224) (-857)) (-610 (-1096)) (-10 -8 (-15 -3924 ((-52) $)) (-15 -4208 ($ (-1096))) (-15 -4269 ($ $ (-639 $))) (-15 -1407 ($ $ (-639 (-1168)) (-1168))) (-15 -3835 ($ $ (-639 (-1168)))) (-15 -1835 ($ $ $)) (-15 * ($ $ $)) (-15 -1859 ($ $ $)) (-15 ** ($ $ (-766))) (-15 ** ($ $ (-562))) (-15 0 ($) -1497) (-15 1 ($) -1497) (-15 -2755 ($ $)) (-15 -2740 ((-1150) $)) (-15 -3912 ($ (-1150))) (-15 -3095 ((-1168) (-639 $))) (-15 -3464 ((-1168) (-1168) (-639 $)))))) (T -535))
-((-3924 (*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-535)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-1096)) (-5 *1 (-535)))) (-4269 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-535))) (-5 *1 (-535)))) (-1407 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-1168)) (-5 *1 (-535)))) (-3835 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-535)))) (-1835 (*1 *1 *1 *1) (-5 *1 (-535))) (* (*1 *1 *1 *1) (-5 *1 (-535))) (-1859 (*1 *1 *1 *1) (-5 *1 (-535))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-535)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-535)))) (-2286 (*1 *1) (-5 *1 (-535))) (-2294 (*1 *1) (-5 *1 (-535))) (-2755 (*1 *1 *1) (-5 *1 (-535))) (-2740 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-535)))) (-3912 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-535)))) (-3095 (*1 *2 *3) (-12 (-5 *3 (-639 (-535))) (-5 *2 (-1168)) (-5 *1 (-535)))) (-3464 (*1 *2 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-535))) (-5 *1 (-535)))))
-(-13 (-1095 (-1150) (-1168) (-562) (-224) (-857)) (-610 (-1096)) (-10 -8 (-15 -3924 ((-52) $)) (-15 -4208 ($ (-1096))) (-15 -4269 ($ $ (-639 $))) (-15 -1407 ($ $ (-639 (-1168)) (-1168))) (-15 -3835 ($ $ (-639 (-1168)))) (-15 -1835 ($ $ $)) (-15 * ($ $ $)) (-15 -1859 ($ $ $)) (-15 ** ($ $ (-766))) (-15 ** ($ $ (-562))) (-15 (-2286) ($) -1497) (-15 (-2294) ($) -1497) (-15 -2755 ($ $)) (-15 -2740 ((-1150) $)) (-15 -3912 ($ (-1150))) (-15 -3095 ((-1168) (-639 $))) (-15 -3464 ((-1168) (-1168) (-639 $)))))
-((-2729 ((|#2| |#2|) 17)) (-2398 ((|#2| |#2|) 13)) (-4329 ((|#2| |#2| (-562) (-562)) 20)) (-2200 ((|#2| |#2|) 15)))
-(((-536 |#1| |#2|) (-10 -7 (-15 -2398 (|#2| |#2|)) (-15 -2200 (|#2| |#2|)) (-15 -2729 (|#2| |#2|)) (-15 -4329 (|#2| |#2| (-562) (-562)))) (-13 (-554) (-146)) (-1247 |#1|)) (T -536))
-((-4329 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-562)) (-4 *4 (-13 (-554) (-146))) (-5 *1 (-536 *4 *2)) (-4 *2 (-1247 *4)))) (-2729 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-536 *3 *2)) (-4 *2 (-1247 *3)))) (-2200 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-536 *3 *2)) (-4 *2 (-1247 *3)))) (-2398 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-536 *3 *2)) (-4 *2 (-1247 *3)))))
-(-10 -7 (-15 -2398 (|#2| |#2|)) (-15 -2200 (|#2| |#2|)) (-15 -2729 (|#2| |#2|)) (-15 -4329 (|#2| |#2| (-562) (-562))))
-((-1941 (((-639 (-293 (-947 |#2|))) (-639 |#2|) (-639 (-1168))) 32)) (-1707 (((-639 |#2|) (-947 |#1|) |#3|) 53) (((-639 |#2|) (-1164 |#1|) |#3|) 52)) (-3293 (((-639 (-639 |#2|)) (-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168)) |#3|) 88)))
-(((-537 |#1| |#2| |#3|) (-10 -7 (-15 -1707 ((-639 |#2|) (-1164 |#1|) |#3|)) (-15 -1707 ((-639 |#2|) (-947 |#1|) |#3|)) (-15 -3293 ((-639 (-639 |#2|)) (-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168)) |#3|)) (-15 -1941 ((-639 (-293 (-947 |#2|))) (-639 |#2|) (-639 (-1168))))) (-451) (-362) (-13 (-362) (-843))) (T -537))
-((-1941 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 (-1168))) (-4 *6 (-362)) (-5 *2 (-639 (-293 (-947 *6)))) (-5 *1 (-537 *5 *6 *7)) (-4 *5 (-451)) (-4 *7 (-13 (-362) (-843))))) (-3293 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-639 (-947 *6))) (-5 *4 (-639 (-1168))) (-4 *6 (-451)) (-5 *2 (-639 (-639 *7))) (-5 *1 (-537 *6 *7 *5)) (-4 *7 (-362)) (-4 *5 (-13 (-362) (-843))))) (-1707 (*1 *2 *3 *4) (-12 (-5 *3 (-947 *5)) (-4 *5 (-451)) (-5 *2 (-639 *6)) (-5 *1 (-537 *5 *6 *4)) (-4 *6 (-362)) (-4 *4 (-13 (-362) (-843))))) (-1707 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *5)) (-4 *5 (-451)) (-5 *2 (-639 *6)) (-5 *1 (-537 *5 *6 *4)) (-4 *6 (-362)) (-4 *4 (-13 (-362) (-843))))))
-(-10 -7 (-15 -1707 ((-639 |#2|) (-1164 |#1|) |#3|)) (-15 -1707 ((-639 |#2|) (-947 |#1|) |#3|)) (-15 -3293 ((-639 (-639 |#2|)) (-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168)) |#3|)) (-15 -1941 ((-639 (-293 (-947 |#2|))) (-639 |#2|) (-639 (-1168)))))
-((-2925 ((|#2| |#2| |#1|) 17)) (-1728 ((|#2| (-639 |#2|)) 26)) (-3309 ((|#2| (-639 |#2|)) 45)))
-(((-538 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1728 (|#2| (-639 |#2|))) (-15 -3309 (|#2| (-639 |#2|))) (-15 -2925 (|#2| |#2| |#1|))) (-306) (-1232 |#1|) |#1| (-1 |#1| |#1| (-766))) (T -538))
-((-2925 (*1 *2 *2 *3) (-12 (-4 *3 (-306)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-766))) (-5 *1 (-538 *3 *2 *4 *5)) (-4 *2 (-1232 *3)))) (-3309 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-538 *4 *2 *5 *6)) (-4 *4 (-306)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-766))))) (-1728 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-538 *4 *2 *5 *6)) (-4 *4 (-306)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-766))))))
-(-10 -7 (-15 -1728 (|#2| (-639 |#2|))) (-15 -3309 (|#2| (-639 |#2|))) (-15 -2925 (|#2| |#2| |#1|)))
+((-3706 (((-535) (-1168)) 15)) (-3924 ((|#1| (-535)) 20)))
+(((-534 |#1|) (-10 -7 (-15 -3706 ((-535) (-1168))) (-15 -3924 (|#1| (-535)))) (-1207)) (T -534))
+((-3924 (*1 *2 *3) (-12 (-5 *3 (-535)) (-5 *1 (-534 *2)) (-4 *2 (-1207)))) (-3706 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-535)) (-5 *1 (-534 *4)) (-4 *4 (-1207)))))
+(-10 -7 (-15 -3706 ((-535) (-1168))) (-15 -3924 (|#1| (-535))))
+((-4041 (((-112) $ $) NIL)) (-2591 (((-1150) $) 47)) (-1681 (((-112) $) 43)) (-1729 (((-1168) $) 44)) (-1950 (((-112) $) 41)) (-3596 (((-1150) $) 42)) (-2322 (($ (-1150)) 48)) (-3391 (((-112) $) NIL)) (-3032 (((-112) $) NIL)) (-1498 (((-112) $) NIL)) (-3696 (((-1150) $) NIL)) (-3835 (($ $ (-639 (-1168))) 20)) (-3924 (((-52) $) 22)) (-3693 (((-112) $) NIL)) (-1757 (((-562) $) NIL)) (-1709 (((-1112) $) NIL)) (-1407 (($ $ (-639 (-1168)) (-1168)) 60)) (-4014 (((-112) $) NIL)) (-4237 (((-224) $) NIL)) (-2754 (($ $) 38)) (-2400 (((-857) $) NIL)) (-3339 (((-112) $ $) NIL)) (-2343 (($ $ (-562)) NIL) (($ $ (-639 (-562))) NIL)) (-1716 (((-639 $) $) 28)) (-3093 (((-1168) (-639 $)) 49)) (-4208 (($ (-1150)) NIL) (($ (-1168)) 18) (($ (-562)) 8) (($ (-224)) 25) (($ (-857)) NIL) (($ (-639 $)) 56) (((-1096) $) 11) (($ (-1096)) 12)) (-3464 (((-1168) (-1168) (-639 $)) 52)) (-4053 (((-857) $) 46)) (-3740 (($ $) 51)) (-3728 (($ $) 50)) (-4317 (($ $ (-639 $)) 57)) (-4301 (((-112) $) 27)) (-2285 (($) 9 T CONST)) (-2294 (($) 10 T CONST)) (-1733 (((-112) $ $) 61)) (-1859 (($ $ $) 66)) (-1836 (($ $ $) 62)) (** (($ $ (-766)) 65) (($ $ (-562)) 64)) (* (($ $ $) 63)) (-3492 (((-562) $) NIL)))
+(((-535) (-13 (-1095 (-1150) (-1168) (-562) (-224) (-857)) (-610 (-1096)) (-10 -8 (-15 -3924 ((-52) $)) (-15 -4208 ($ (-1096))) (-15 -4317 ($ $ (-639 $))) (-15 -1407 ($ $ (-639 (-1168)) (-1168))) (-15 -3835 ($ $ (-639 (-1168)))) (-15 -1836 ($ $ $)) (-15 * ($ $ $)) (-15 -1859 ($ $ $)) (-15 ** ($ $ (-766))) (-15 ** ($ $ (-562))) (-15 0 ($) -1497) (-15 1 ($) -1497) (-15 -2754 ($ $)) (-15 -2591 ((-1150) $)) (-15 -2322 ($ (-1150))) (-15 -3093 ((-1168) (-639 $))) (-15 -3464 ((-1168) (-1168) (-639 $)))))) (T -535))
+((-3924 (*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-535)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-1096)) (-5 *1 (-535)))) (-4317 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-535))) (-5 *1 (-535)))) (-1407 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-1168)) (-5 *1 (-535)))) (-3835 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-535)))) (-1836 (*1 *1 *1 *1) (-5 *1 (-535))) (* (*1 *1 *1 *1) (-5 *1 (-535))) (-1859 (*1 *1 *1 *1) (-5 *1 (-535))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-535)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-535)))) (-2285 (*1 *1) (-5 *1 (-535))) (-2294 (*1 *1) (-5 *1 (-535))) (-2754 (*1 *1 *1) (-5 *1 (-535))) (-2591 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-535)))) (-2322 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-535)))) (-3093 (*1 *2 *3) (-12 (-5 *3 (-639 (-535))) (-5 *2 (-1168)) (-5 *1 (-535)))) (-3464 (*1 *2 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-535))) (-5 *1 (-535)))))
+(-13 (-1095 (-1150) (-1168) (-562) (-224) (-857)) (-610 (-1096)) (-10 -8 (-15 -3924 ((-52) $)) (-15 -4208 ($ (-1096))) (-15 -4317 ($ $ (-639 $))) (-15 -1407 ($ $ (-639 (-1168)) (-1168))) (-15 -3835 ($ $ (-639 (-1168)))) (-15 -1836 ($ $ $)) (-15 * ($ $ $)) (-15 -1859 ($ $ $)) (-15 ** ($ $ (-766))) (-15 ** ($ $ (-562))) (-15 (-2285) ($) -1497) (-15 (-2294) ($) -1497) (-15 -2754 ($ $)) (-15 -2591 ((-1150) $)) (-15 -2322 ($ (-1150))) (-15 -3093 ((-1168) (-639 $))) (-15 -3464 ((-1168) (-1168) (-639 $)))))
+((-2490 ((|#2| |#2|) 17)) (-3377 ((|#2| |#2|) 13)) (-3669 ((|#2| |#2| (-562) (-562)) 20)) (-2102 ((|#2| |#2|) 15)))
+(((-536 |#1| |#2|) (-10 -7 (-15 -3377 (|#2| |#2|)) (-15 -2102 (|#2| |#2|)) (-15 -2490 (|#2| |#2|)) (-15 -3669 (|#2| |#2| (-562) (-562)))) (-13 (-554) (-146)) (-1247 |#1|)) (T -536))
+((-3669 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-562)) (-4 *4 (-13 (-554) (-146))) (-5 *1 (-536 *4 *2)) (-4 *2 (-1247 *4)))) (-2490 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-536 *3 *2)) (-4 *2 (-1247 *3)))) (-2102 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-536 *3 *2)) (-4 *2 (-1247 *3)))) (-3377 (*1 *2 *2) (-12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-536 *3 *2)) (-4 *2 (-1247 *3)))))
+(-10 -7 (-15 -3377 (|#2| |#2|)) (-15 -2102 (|#2| |#2|)) (-15 -2490 (|#2| |#2|)) (-15 -3669 (|#2| |#2| (-562) (-562))))
+((-4228 (((-639 (-293 (-947 |#2|))) (-639 |#2|) (-639 (-1168))) 32)) (-3762 (((-639 |#2|) (-947 |#1|) |#3|) 53) (((-639 |#2|) (-1164 |#1|) |#3|) 52)) (-4180 (((-639 (-639 |#2|)) (-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168)) |#3|) 88)))
+(((-537 |#1| |#2| |#3|) (-10 -7 (-15 -3762 ((-639 |#2|) (-1164 |#1|) |#3|)) (-15 -3762 ((-639 |#2|) (-947 |#1|) |#3|)) (-15 -4180 ((-639 (-639 |#2|)) (-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168)) |#3|)) (-15 -4228 ((-639 (-293 (-947 |#2|))) (-639 |#2|) (-639 (-1168))))) (-451) (-362) (-13 (-362) (-843))) (T -537))
+((-4228 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 (-1168))) (-4 *6 (-362)) (-5 *2 (-639 (-293 (-947 *6)))) (-5 *1 (-537 *5 *6 *7)) (-4 *5 (-451)) (-4 *7 (-13 (-362) (-843))))) (-4180 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-639 (-947 *6))) (-5 *4 (-639 (-1168))) (-4 *6 (-451)) (-5 *2 (-639 (-639 *7))) (-5 *1 (-537 *6 *7 *5)) (-4 *7 (-362)) (-4 *5 (-13 (-362) (-843))))) (-3762 (*1 *2 *3 *4) (-12 (-5 *3 (-947 *5)) (-4 *5 (-451)) (-5 *2 (-639 *6)) (-5 *1 (-537 *5 *6 *4)) (-4 *6 (-362)) (-4 *4 (-13 (-362) (-843))))) (-3762 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *5)) (-4 *5 (-451)) (-5 *2 (-639 *6)) (-5 *1 (-537 *5 *6 *4)) (-4 *6 (-362)) (-4 *4 (-13 (-362) (-843))))))
+(-10 -7 (-15 -3762 ((-639 |#2|) (-1164 |#1|) |#3|)) (-15 -3762 ((-639 |#2|) (-947 |#1|) |#3|)) (-15 -4180 ((-639 (-639 |#2|)) (-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168)) |#3|)) (-15 -4228 ((-639 (-293 (-947 |#2|))) (-639 |#2|) (-639 (-1168)))))
+((-3834 ((|#2| |#2| |#1|) 17)) (-3936 ((|#2| (-639 |#2|)) 26)) (-4321 ((|#2| (-639 |#2|)) 45)))
+(((-538 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3936 (|#2| (-639 |#2|))) (-15 -4321 (|#2| (-639 |#2|))) (-15 -3834 (|#2| |#2| |#1|))) (-306) (-1232 |#1|) |#1| (-1 |#1| |#1| (-766))) (T -538))
+((-3834 (*1 *2 *2 *3) (-12 (-4 *3 (-306)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-766))) (-5 *1 (-538 *3 *2 *4 *5)) (-4 *2 (-1232 *3)))) (-4321 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-538 *4 *2 *5 *6)) (-4 *4 (-306)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-766))))) (-3936 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-538 *4 *2 *5 *6)) (-4 *4 (-306)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-766))))))
+(-10 -7 (-15 -3936 (|#2| (-639 |#2|))) (-15 -4321 (|#2| (-639 |#2|))) (-15 -3834 (|#2| |#2| |#1|)))
((-1635 (((-417 (-1164 |#4|)) (-1164 |#4|) (-1 (-417 (-1164 |#3|)) (-1164 |#3|))) 79) (((-417 |#4|) |#4| (-1 (-417 (-1164 |#3|)) (-1164 |#3|))) 167)))
(((-539 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1635 ((-417 |#4|) |#4| (-1 (-417 (-1164 |#3|)) (-1164 |#3|)))) (-15 -1635 ((-417 (-1164 |#4|)) (-1164 |#4|) (-1 (-417 (-1164 |#3|)) (-1164 |#3|))))) (-845) (-788) (-13 (-306) (-146)) (-944 |#3| |#2| |#1|)) (T -539))
((-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-417 (-1164 *7)) (-1164 *7))) (-4 *7 (-13 (-306) (-146))) (-4 *5 (-845)) (-4 *6 (-788)) (-4 *8 (-944 *7 *6 *5)) (-5 *2 (-417 (-1164 *8))) (-5 *1 (-539 *5 *6 *7 *8)) (-5 *3 (-1164 *8)))) (-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-417 (-1164 *7)) (-1164 *7))) (-4 *7 (-13 (-306) (-146))) (-4 *5 (-845)) (-4 *6 (-788)) (-5 *2 (-417 *3)) (-5 *1 (-539 *5 *6 *7 *3)) (-4 *3 (-944 *7 *6 *5)))))
(-10 -7 (-15 -1635 ((-417 |#4|) |#4| (-1 (-417 (-1164 |#3|)) (-1164 |#3|)))) (-15 -1635 ((-417 (-1164 |#4|)) (-1164 |#4|) (-1 (-417 (-1164 |#3|)) (-1164 |#3|)))))
-((-2729 ((|#4| |#4|) 73)) (-2398 ((|#4| |#4|) 69)) (-4329 ((|#4| |#4| (-562) (-562)) 75)) (-2200 ((|#4| |#4|) 71)))
-(((-540 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2398 (|#4| |#4|)) (-15 -2200 (|#4| |#4|)) (-15 -2729 (|#4| |#4|)) (-15 -4329 (|#4| |#4| (-562) (-562)))) (-13 (-362) (-367) (-610 (-562))) (-1232 |#1|) (-719 |#1| |#2|) (-1247 |#3|)) (T -540))
-((-4329 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-562)) (-4 *4 (-13 (-362) (-367) (-610 *3))) (-4 *5 (-1232 *4)) (-4 *6 (-719 *4 *5)) (-5 *1 (-540 *4 *5 *6 *2)) (-4 *2 (-1247 *6)))) (-2729 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-4 *4 (-1232 *3)) (-4 *5 (-719 *3 *4)) (-5 *1 (-540 *3 *4 *5 *2)) (-4 *2 (-1247 *5)))) (-2200 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-4 *4 (-1232 *3)) (-4 *5 (-719 *3 *4)) (-5 *1 (-540 *3 *4 *5 *2)) (-4 *2 (-1247 *5)))) (-2398 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-4 *4 (-1232 *3)) (-4 *5 (-719 *3 *4)) (-5 *1 (-540 *3 *4 *5 *2)) (-4 *2 (-1247 *5)))))
-(-10 -7 (-15 -2398 (|#4| |#4|)) (-15 -2200 (|#4| |#4|)) (-15 -2729 (|#4| |#4|)) (-15 -4329 (|#4| |#4| (-562) (-562))))
-((-2729 ((|#2| |#2|) 27)) (-2398 ((|#2| |#2|) 23)) (-4329 ((|#2| |#2| (-562) (-562)) 29)) (-2200 ((|#2| |#2|) 25)))
-(((-541 |#1| |#2|) (-10 -7 (-15 -2398 (|#2| |#2|)) (-15 -2200 (|#2| |#2|)) (-15 -2729 (|#2| |#2|)) (-15 -4329 (|#2| |#2| (-562) (-562)))) (-13 (-362) (-367) (-610 (-562))) (-1247 |#1|)) (T -541))
-((-4329 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-562)) (-4 *4 (-13 (-362) (-367) (-610 *3))) (-5 *1 (-541 *4 *2)) (-4 *2 (-1247 *4)))) (-2729 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-5 *1 (-541 *3 *2)) (-4 *2 (-1247 *3)))) (-2200 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-5 *1 (-541 *3 *2)) (-4 *2 (-1247 *3)))) (-2398 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-5 *1 (-541 *3 *2)) (-4 *2 (-1247 *3)))))
-(-10 -7 (-15 -2398 (|#2| |#2|)) (-15 -2200 (|#2| |#2|)) (-15 -2729 (|#2| |#2|)) (-15 -4329 (|#2| |#2| (-562) (-562))))
-((-2113 (((-3 (-562) "failed") |#2| |#1| (-1 (-3 (-562) "failed") |#1|)) 14) (((-3 (-562) "failed") |#2| |#1| (-562) (-1 (-3 (-562) "failed") |#1|)) 13) (((-3 (-562) "failed") |#2| (-562) (-1 (-3 (-562) "failed") |#1|)) 26)))
-(((-542 |#1| |#2|) (-10 -7 (-15 -2113 ((-3 (-562) "failed") |#2| (-562) (-1 (-3 (-562) "failed") |#1|))) (-15 -2113 ((-3 (-562) "failed") |#2| |#1| (-562) (-1 (-3 (-562) "failed") |#1|))) (-15 -2113 ((-3 (-562) "failed") |#2| |#1| (-1 (-3 (-562) "failed") |#1|)))) (-1044) (-1232 |#1|)) (T -542))
-((-2113 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-562) "failed") *4)) (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-542 *4 *3)) (-4 *3 (-1232 *4)))) (-2113 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-562) "failed") *4)) (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-542 *4 *3)) (-4 *3 (-1232 *4)))) (-2113 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-562) "failed") *5)) (-4 *5 (-1044)) (-5 *2 (-562)) (-5 *1 (-542 *5 *3)) (-4 *3 (-1232 *5)))))
-(-10 -7 (-15 -2113 ((-3 (-562) "failed") |#2| (-562) (-1 (-3 (-562) "failed") |#1|))) (-15 -2113 ((-3 (-562) "failed") |#2| |#1| (-562) (-1 (-3 (-562) "failed") |#1|))) (-15 -2113 ((-3 (-562) "failed") |#2| |#1| (-1 (-3 (-562) "failed") |#1|))))
-((-1685 (($ $ $) 78)) (-2921 (((-417 $) $) 46)) (-4048 (((-3 (-562) "failed") $) 58)) (-3961 (((-562) $) 36)) (-1726 (((-3 (-406 (-562)) "failed") $) 73)) (-3035 (((-112) $) 23)) (-1291 (((-406 (-562)) $) 71)) (-2717 (((-112) $) 49)) (-3854 (($ $ $ $) 85)) (-3519 (((-112) $) 15)) (-2794 (($ $ $) 56)) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 68)) (-3699 (((-3 $ "failed") $) 63)) (-3930 (($ $) 22)) (-1809 (($ $ $) 83)) (-3729 (($) 59)) (-1351 (($ $) 52)) (-1635 (((-417 $) $) 44)) (-3803 (((-112) $) 13)) (-1577 (((-766) $) 27)) (-4029 (($ $ (-766)) NIL) (($ $) 10)) (-4220 (($ $) 16)) (-4208 (((-562) $) NIL) (((-535) $) 35) (((-887 (-562)) $) 39) (((-378) $) 30) (((-224) $) 32)) (-2579 (((-766)) 8)) (-2929 (((-112) $ $) 19)) (-3261 (($ $ $) 54)))
-(((-543 |#1|) (-10 -8 (-15 -1809 (|#1| |#1| |#1|)) (-15 -3854 (|#1| |#1| |#1| |#1|)) (-15 -3930 (|#1| |#1|)) (-15 -4220 (|#1| |#1|)) (-15 -1726 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -1291 ((-406 (-562)) |#1|)) (-15 -3035 ((-112) |#1|)) (-15 -1685 (|#1| |#1| |#1|)) (-15 -2929 ((-112) |#1| |#1|)) (-15 -3803 ((-112) |#1|)) (-15 -3729 (|#1|)) (-15 -3699 ((-3 |#1| "failed") |#1|)) (-15 -4208 ((-224) |#1|)) (-15 -4208 ((-378) |#1|)) (-15 -2794 (|#1| |#1| |#1|)) (-15 -1351 (|#1| |#1|)) (-15 -3261 (|#1| |#1| |#1|)) (-15 -2533 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4208 ((-562) |#1|)) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -3519 ((-112) |#1|)) (-15 -1577 ((-766) |#1|)) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -2921 ((-417 |#1|) |#1|)) (-15 -2717 ((-112) |#1|)) (-15 -2579 ((-766)))) (-544)) (T -543))
-((-2579 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-543 *3)) (-4 *3 (-544)))))
-(-10 -8 (-15 -1809 (|#1| |#1| |#1|)) (-15 -3854 (|#1| |#1| |#1| |#1|)) (-15 -3930 (|#1| |#1|)) (-15 -4220 (|#1| |#1|)) (-15 -1726 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -1291 ((-406 (-562)) |#1|)) (-15 -3035 ((-112) |#1|)) (-15 -1685 (|#1| |#1| |#1|)) (-15 -2929 ((-112) |#1| |#1|)) (-15 -3803 ((-112) |#1|)) (-15 -3729 (|#1|)) (-15 -3699 ((-3 |#1| "failed") |#1|)) (-15 -4208 ((-224) |#1|)) (-15 -4208 ((-378) |#1|)) (-15 -2794 (|#1| |#1| |#1|)) (-15 -1351 (|#1| |#1|)) (-15 -3261 (|#1| |#1| |#1|)) (-15 -2533 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4208 ((-562) |#1|)) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -3519 ((-112) |#1|)) (-15 -1577 ((-766) |#1|)) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -2921 ((-417 |#1|) |#1|)) (-15 -2717 ((-112) |#1|)) (-15 -2579 ((-766))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-1685 (($ $ $) 85)) (-3214 (((-3 $ "failed") $ $) 19)) (-4375 (($ $ $ $) 74)) (-2798 (($ $) 52)) (-2921 (((-417 $) $) 53)) (-2569 (((-112) $ $) 125)) (-2277 (((-562) $) 114)) (-3358 (($ $ $) 88)) (-1800 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 106)) (-3961 (((-562) $) 107)) (-1811 (($ $ $) 129)) (-2406 (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 104) (((-683 (-562)) (-683 $)) 103)) (-3668 (((-3 $ "failed") $) 33)) (-1726 (((-3 (-406 (-562)) "failed") $) 82)) (-3035 (((-112) $) 84)) (-1291 (((-406 (-562)) $) 83)) (-1448 (($) 81) (($ $) 80)) (-1787 (($ $ $) 128)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 123)) (-2717 (((-112) $) 54)) (-3854 (($ $ $ $) 72)) (-1292 (($ $ $) 86)) (-3519 (((-112) $) 116)) (-2794 (($ $ $) 97)) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 100)) (-1957 (((-112) $) 31)) (-3130 (((-112) $) 92)) (-3699 (((-3 $ "failed") $) 94)) (-3392 (((-112) $) 115)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 132)) (-2504 (($ $ $ $) 73)) (-1551 (($ $ $) 117)) (-2993 (($ $ $) 118)) (-3930 (($ $) 76)) (-3641 (($ $) 89)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1809 (($ $ $) 71)) (-3729 (($) 93 T CONST)) (-4137 (($ $) 78)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1351 (($ $) 98)) (-1635 (((-417 $) $) 51)) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 131) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 130)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 124)) (-3803 (((-112) $) 91)) (-1577 (((-766) $) 126)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 127)) (-4029 (($ $ (-766)) 111) (($ $) 109)) (-2372 (($ $) 77)) (-4220 (($ $) 79)) (-4208 (((-562) $) 108) (((-535) $) 102) (((-887 (-562)) $) 101) (((-378) $) 96) (((-224) $) 95)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-562)) 105)) (-2579 (((-766)) 28)) (-2929 (((-112) $ $) 87)) (-3261 (($ $ $) 99)) (-3241 (($) 90)) (-2922 (((-112) $ $) 40)) (-3131 (($ $ $ $) 75)) (-3526 (($ $) 113)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-766)) 112) (($ $) 110)) (-1798 (((-112) $ $) 120)) (-1772 (((-112) $ $) 121)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 119)) (-1759 (((-112) $ $) 122)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-2490 ((|#4| |#4|) 73)) (-3377 ((|#4| |#4|) 69)) (-3669 ((|#4| |#4| (-562) (-562)) 75)) (-2102 ((|#4| |#4|) 71)))
+(((-540 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3377 (|#4| |#4|)) (-15 -2102 (|#4| |#4|)) (-15 -2490 (|#4| |#4|)) (-15 -3669 (|#4| |#4| (-562) (-562)))) (-13 (-362) (-367) (-610 (-562))) (-1232 |#1|) (-719 |#1| |#2|) (-1247 |#3|)) (T -540))
+((-3669 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-562)) (-4 *4 (-13 (-362) (-367) (-610 *3))) (-4 *5 (-1232 *4)) (-4 *6 (-719 *4 *5)) (-5 *1 (-540 *4 *5 *6 *2)) (-4 *2 (-1247 *6)))) (-2490 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-4 *4 (-1232 *3)) (-4 *5 (-719 *3 *4)) (-5 *1 (-540 *3 *4 *5 *2)) (-4 *2 (-1247 *5)))) (-2102 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-4 *4 (-1232 *3)) (-4 *5 (-719 *3 *4)) (-5 *1 (-540 *3 *4 *5 *2)) (-4 *2 (-1247 *5)))) (-3377 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-4 *4 (-1232 *3)) (-4 *5 (-719 *3 *4)) (-5 *1 (-540 *3 *4 *5 *2)) (-4 *2 (-1247 *5)))))
+(-10 -7 (-15 -3377 (|#4| |#4|)) (-15 -2102 (|#4| |#4|)) (-15 -2490 (|#4| |#4|)) (-15 -3669 (|#4| |#4| (-562) (-562))))
+((-2490 ((|#2| |#2|) 27)) (-3377 ((|#2| |#2|) 23)) (-3669 ((|#2| |#2| (-562) (-562)) 29)) (-2102 ((|#2| |#2|) 25)))
+(((-541 |#1| |#2|) (-10 -7 (-15 -3377 (|#2| |#2|)) (-15 -2102 (|#2| |#2|)) (-15 -2490 (|#2| |#2|)) (-15 -3669 (|#2| |#2| (-562) (-562)))) (-13 (-362) (-367) (-610 (-562))) (-1247 |#1|)) (T -541))
+((-3669 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-562)) (-4 *4 (-13 (-362) (-367) (-610 *3))) (-5 *1 (-541 *4 *2)) (-4 *2 (-1247 *4)))) (-2490 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-5 *1 (-541 *3 *2)) (-4 *2 (-1247 *3)))) (-2102 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-5 *1 (-541 *3 *2)) (-4 *2 (-1247 *3)))) (-3377 (*1 *2 *2) (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-5 *1 (-541 *3 *2)) (-4 *2 (-1247 *3)))))
+(-10 -7 (-15 -3377 (|#2| |#2|)) (-15 -2102 (|#2| |#2|)) (-15 -2490 (|#2| |#2|)) (-15 -3669 (|#2| |#2| (-562) (-562))))
+((-2406 (((-3 (-562) "failed") |#2| |#1| (-1 (-3 (-562) "failed") |#1|)) 14) (((-3 (-562) "failed") |#2| |#1| (-562) (-1 (-3 (-562) "failed") |#1|)) 13) (((-3 (-562) "failed") |#2| (-562) (-1 (-3 (-562) "failed") |#1|)) 26)))
+(((-542 |#1| |#2|) (-10 -7 (-15 -2406 ((-3 (-562) "failed") |#2| (-562) (-1 (-3 (-562) "failed") |#1|))) (-15 -2406 ((-3 (-562) "failed") |#2| |#1| (-562) (-1 (-3 (-562) "failed") |#1|))) (-15 -2406 ((-3 (-562) "failed") |#2| |#1| (-1 (-3 (-562) "failed") |#1|)))) (-1044) (-1232 |#1|)) (T -542))
+((-2406 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-562) "failed") *4)) (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-542 *4 *3)) (-4 *3 (-1232 *4)))) (-2406 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-562) "failed") *4)) (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-542 *4 *3)) (-4 *3 (-1232 *4)))) (-2406 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-562) "failed") *5)) (-4 *5 (-1044)) (-5 *2 (-562)) (-5 *1 (-542 *5 *3)) (-4 *3 (-1232 *5)))))
+(-10 -7 (-15 -2406 ((-3 (-562) "failed") |#2| (-562) (-1 (-3 (-562) "failed") |#1|))) (-15 -2406 ((-3 (-562) "failed") |#2| |#1| (-562) (-1 (-3 (-562) "failed") |#1|))) (-15 -2406 ((-3 (-562) "failed") |#2| |#1| (-1 (-3 (-562) "failed") |#1|))))
+((-3544 (($ $ $) 78)) (-3788 (((-417 $) $) 46)) (-4048 (((-3 (-562) "failed") $) 58)) (-3960 (((-562) $) 36)) (-3913 (((-3 (-406 (-562)) "failed") $) 73)) (-3498 (((-112) $) 23)) (-3854 (((-406 (-562)) $) 71)) (-3521 (((-112) $) 49)) (-2877 (($ $ $ $) 85)) (-2696 (((-112) $) 15)) (-1940 (($ $ $) 56)) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 68)) (-3828 (((-3 $ "failed") $) 63)) (-3930 (($ $) 22)) (-2296 (($ $ $) 83)) (-3730 (($) 59)) (-3350 (($ $) 52)) (-1635 (((-417 $) $) 44)) (-2438 (((-112) $) 13)) (-2044 (((-766) $) 27)) (-4029 (($ $ (-766)) NIL) (($ $) 10)) (-4220 (($ $) 16)) (-4208 (((-562) $) NIL) (((-535) $) 35) (((-887 (-562)) $) 39) (((-378) $) 30) (((-224) $) 32)) (-1568 (((-766)) 8)) (-3869 (((-112) $ $) 19)) (-2068 (($ $ $) 54)))
+(((-543 |#1|) (-10 -8 (-15 -2296 (|#1| |#1| |#1|)) (-15 -2877 (|#1| |#1| |#1| |#1|)) (-15 -3930 (|#1| |#1|)) (-15 -4220 (|#1| |#1|)) (-15 -3913 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3854 ((-406 (-562)) |#1|)) (-15 -3498 ((-112) |#1|)) (-15 -3544 (|#1| |#1| |#1|)) (-15 -3869 ((-112) |#1| |#1|)) (-15 -2438 ((-112) |#1|)) (-15 -3730 (|#1|)) (-15 -3828 ((-3 |#1| "failed") |#1|)) (-15 -4208 ((-224) |#1|)) (-15 -4208 ((-378) |#1|)) (-15 -1940 (|#1| |#1| |#1|)) (-15 -3350 (|#1| |#1|)) (-15 -2068 (|#1| |#1| |#1|)) (-15 -2337 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4208 ((-562) |#1|)) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -2696 ((-112) |#1|)) (-15 -2044 ((-766) |#1|)) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3788 ((-417 |#1|) |#1|)) (-15 -3521 ((-112) |#1|)) (-15 -1568 ((-766)))) (-544)) (T -543))
+((-1568 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-543 *3)) (-4 *3 (-544)))))
+(-10 -8 (-15 -2296 (|#1| |#1| |#1|)) (-15 -2877 (|#1| |#1| |#1| |#1|)) (-15 -3930 (|#1| |#1|)) (-15 -4220 (|#1| |#1|)) (-15 -3913 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3854 ((-406 (-562)) |#1|)) (-15 -3498 ((-112) |#1|)) (-15 -3544 (|#1| |#1| |#1|)) (-15 -3869 ((-112) |#1| |#1|)) (-15 -2438 ((-112) |#1|)) (-15 -3730 (|#1|)) (-15 -3828 ((-3 |#1| "failed") |#1|)) (-15 -4208 ((-224) |#1|)) (-15 -4208 ((-378) |#1|)) (-15 -1940 (|#1| |#1| |#1|)) (-15 -3350 (|#1| |#1|)) (-15 -2068 (|#1| |#1| |#1|)) (-15 -2337 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4208 ((-562) |#1|)) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -2696 ((-112) |#1|)) (-15 -2044 ((-766) |#1|)) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3788 ((-417 |#1|) |#1|)) (-15 -3521 ((-112) |#1|)) (-15 -1568 ((-766))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-3544 (($ $ $) 85)) (-2781 (((-3 $ "failed") $ $) 19)) (-4158 (($ $ $ $) 74)) (-1977 (($ $) 52)) (-3788 (((-417 $) $) 53)) (-1436 (((-112) $ $) 125)) (-1587 (((-562) $) 114)) (-3355 (($ $ $) 88)) (-3329 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 106)) (-3960 (((-562) $) 107)) (-1810 (($ $ $) 129)) (-3449 (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 104) (((-683 (-562)) (-683 $)) 103)) (-1694 (((-3 $ "failed") $) 33)) (-3913 (((-3 (-406 (-562)) "failed") $) 82)) (-3498 (((-112) $) 84)) (-3854 (((-406 (-562)) $) 83)) (-1447 (($) 81) (($ $) 80)) (-1787 (($ $ $) 128)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 123)) (-3521 (((-112) $) 54)) (-2877 (($ $ $ $) 72)) (-3867 (($ $ $) 86)) (-2696 (((-112) $) 116)) (-1940 (($ $ $) 97)) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 100)) (-4367 (((-112) $) 31)) (-3152 (((-112) $) 92)) (-3828 (((-3 $ "failed") $) 94)) (-3855 (((-112) $) 115)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 132)) (-2051 (($ $ $ $) 73)) (-1551 (($ $ $) 117)) (-2993 (($ $ $) 118)) (-3930 (($ $) 76)) (-3641 (($ $) 89)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-2296 (($ $ $) 71)) (-3730 (($) 93 T CONST)) (-4137 (($ $) 78)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-3350 (($ $) 98)) (-1635 (((-417 $) $) 51)) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 131) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 130)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 124)) (-2438 (((-112) $) 91)) (-2044 (((-766) $) 126)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 127)) (-4029 (($ $ (-766)) 111) (($ $) 109)) (-2369 (($ $) 77)) (-4220 (($ $) 79)) (-4208 (((-562) $) 108) (((-535) $) 102) (((-887 (-562)) $) 101) (((-378) $) 96) (((-224) $) 95)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-562)) 105)) (-1568 (((-766)) 28)) (-3869 (((-112) $ $) 87)) (-2068 (($ $ $) 99)) (-3240 (($) 90)) (-3799 (((-112) $ $) 40)) (-3160 (($ $ $ $) 75)) (-2757 (($ $) 113)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-766)) 112) (($ $) 110)) (-1798 (((-112) $ $) 120)) (-1771 (((-112) $ $) 121)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 119)) (-1761 (((-112) $ $) 122)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-544) (-139)) (T -544))
-((-3130 (*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112)))) (-3803 (*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112)))) (-3241 (*1 *1) (-4 *1 (-544))) (-3641 (*1 *1 *1) (-4 *1 (-544))) (-3358 (*1 *1 *1 *1) (-4 *1 (-544))) (-2929 (*1 *2 *1 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112)))) (-1292 (*1 *1 *1 *1) (-4 *1 (-544))) (-1685 (*1 *1 *1 *1) (-4 *1 (-544))) (-3035 (*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112)))) (-1291 (*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-406 (-562))))) (-1726 (*1 *2 *1) (|partial| -12 (-4 *1 (-544)) (-5 *2 (-406 (-562))))) (-1448 (*1 *1) (-4 *1 (-544))) (-1448 (*1 *1 *1) (-4 *1 (-544))) (-4220 (*1 *1 *1) (-4 *1 (-544))) (-4137 (*1 *1 *1) (-4 *1 (-544))) (-2372 (*1 *1 *1) (-4 *1 (-544))) (-3930 (*1 *1 *1) (-4 *1 (-544))) (-3131 (*1 *1 *1 *1 *1) (-4 *1 (-544))) (-4375 (*1 *1 *1 *1 *1) (-4 *1 (-544))) (-2504 (*1 *1 *1 *1 *1) (-4 *1 (-544))) (-3854 (*1 *1 *1 *1 *1) (-4 *1 (-544))) (-1809 (*1 *1 *1 *1) (-4 *1 (-544))))
-(-13 (-1211) (-306) (-815) (-232) (-610 (-562)) (-1033 (-562)) (-635 (-562)) (-610 (-535)) (-610 (-887 (-562))) (-881 (-562)) (-142) (-1017) (-146) (-1143) (-10 -8 (-15 -3130 ((-112) $)) (-15 -3803 ((-112) $)) (-6 -4401) (-15 -3241 ($)) (-15 -3641 ($ $)) (-15 -3358 ($ $ $)) (-15 -2929 ((-112) $ $)) (-15 -1292 ($ $ $)) (-15 -1685 ($ $ $)) (-15 -3035 ((-112) $)) (-15 -1291 ((-406 (-562)) $)) (-15 -1726 ((-3 (-406 (-562)) "failed") $)) (-15 -1448 ($)) (-15 -1448 ($ $)) (-15 -4220 ($ $)) (-15 -4137 ($ $)) (-15 -2372 ($ $)) (-15 -3930 ($ $)) (-15 -3131 ($ $ $ $)) (-15 -4375 ($ $ $ $)) (-15 -2504 ($ $ $ $)) (-15 -3854 ($ $ $ $)) (-15 -1809 ($ $ $)) (-6 -4400)))
+((-3152 (*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112)))) (-2438 (*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112)))) (-3240 (*1 *1) (-4 *1 (-544))) (-3641 (*1 *1 *1) (-4 *1 (-544))) (-3355 (*1 *1 *1 *1) (-4 *1 (-544))) (-3869 (*1 *2 *1 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112)))) (-3867 (*1 *1 *1 *1) (-4 *1 (-544))) (-3544 (*1 *1 *1 *1) (-4 *1 (-544))) (-3498 (*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112)))) (-3854 (*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-406 (-562))))) (-3913 (*1 *2 *1) (|partial| -12 (-4 *1 (-544)) (-5 *2 (-406 (-562))))) (-1447 (*1 *1) (-4 *1 (-544))) (-1447 (*1 *1 *1) (-4 *1 (-544))) (-4220 (*1 *1 *1) (-4 *1 (-544))) (-4137 (*1 *1 *1) (-4 *1 (-544))) (-2369 (*1 *1 *1) (-4 *1 (-544))) (-3930 (*1 *1 *1) (-4 *1 (-544))) (-3160 (*1 *1 *1 *1 *1) (-4 *1 (-544))) (-4158 (*1 *1 *1 *1 *1) (-4 *1 (-544))) (-2051 (*1 *1 *1 *1 *1) (-4 *1 (-544))) (-2877 (*1 *1 *1 *1 *1) (-4 *1 (-544))) (-2296 (*1 *1 *1 *1) (-4 *1 (-544))))
+(-13 (-1211) (-306) (-815) (-232) (-610 (-562)) (-1033 (-562)) (-635 (-562)) (-610 (-535)) (-610 (-887 (-562))) (-881 (-562)) (-142) (-1017) (-146) (-1143) (-10 -8 (-15 -3152 ((-112) $)) (-15 -2438 ((-112) $)) (-6 -4402) (-15 -3240 ($)) (-15 -3641 ($ $)) (-15 -3355 ($ $ $)) (-15 -3869 ((-112) $ $)) (-15 -3867 ($ $ $)) (-15 -3544 ($ $ $)) (-15 -3498 ((-112) $)) (-15 -3854 ((-406 (-562)) $)) (-15 -3913 ((-3 (-406 (-562)) "failed") $)) (-15 -1447 ($)) (-15 -1447 ($ $)) (-15 -4220 ($ $)) (-15 -4137 ($ $)) (-15 -2369 ($ $)) (-15 -3930 ($ $)) (-15 -3160 ($ $ $ $)) (-15 -4158 ($ $ $ $)) (-15 -2051 ($ $ $ $)) (-15 -2877 ($ $ $ $)) (-15 -2296 ($ $ $)) (-6 -4401)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-146) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-142) . T) ((-171) . T) ((-610 (-224)) . T) ((-610 (-378)) . T) ((-610 (-535)) . T) ((-610 (-562)) . T) ((-610 (-887 (-562))) . T) ((-232) . T) ((-289) . T) ((-306) . T) ((-451) . T) ((-554) . T) ((-642 $) . T) ((-635 (-562)) . T) ((-712 $) . T) ((-721) . T) ((-786) . T) ((-787) . T) ((-789) . T) ((-790) . T) ((-815) . T) ((-843) . T) ((-845) . T) ((-881 (-562)) . T) ((-915) . T) ((-1017) . T) ((-1033 (-562)) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1143) . T) ((-1211) . T))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1448 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-1999 (((-916) $) NIL)) (-2913 (((-1150) $) NIL)) (-2466 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1447 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-3549 (((-916) $) NIL)) (-3696 (((-1150) $) NIL)) (-2464 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)))
(((-545) (-839)) (T -545))
NIL
(-839)
((|Integer|) (COND ((< 16 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1448 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-1999 (((-916) $) NIL)) (-2913 (((-1150) $) NIL)) (-2466 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1447 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-3549 (((-916) $) NIL)) (-3696 (((-1150) $) NIL)) (-2464 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)))
(((-546) (-839)) (T -546))
NIL
(-839)
((|Integer|) (COND ((< 32 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1448 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-1999 (((-916) $) NIL)) (-2913 (((-1150) $) NIL)) (-2466 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1447 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-3549 (((-916) $) NIL)) (-3696 (((-1150) $) NIL)) (-2464 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)))
(((-547) (-839)) (T -547))
NIL
(-839)
((|Integer|) (COND ((< 8 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-3052 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#2| $ |#1| |#2|) NIL)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1472 (((-3 |#2| "failed") |#1| $) NIL)) (-1800 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-4000 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-3 |#2| "failed") |#1| $) NIL)) (-1475 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#2| $ |#1|) NIL)) (-1720 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 ((|#1| $) NIL (|has| |#1| (-845)))) (-1912 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-3874 ((|#1| $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4403))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1520 (((-639 |#1|) $) NIL)) (-4265 (((-112) |#1| $) NIL)) (-3262 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-4300 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-2093 (((-639 |#1|) $) NIL)) (-1570 (((-112) |#1| $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845)))) (-3251 (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL)) (-2716 (($ $ |#2|) NIL (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-2411 (((-639 |#2|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3564 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-4054 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-1932 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-548 |#1| |#2| |#3|) (-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4402))) (-1092) (-1092) (-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4402)))) (T -548))
-NIL
-(-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4402)))
-((-2047 (((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) (-1 (-1164 |#2|) (-1164 |#2|))) 51)))
-(((-549 |#1| |#2|) (-10 -7 (-15 -2047 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) (-1 (-1164 |#2|) (-1164 |#2|))))) (-13 (-845) (-554)) (-13 (-27) (-429 |#1|))) (T -549))
-((-2047 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-608 *3)) (-5 *5 (-1 (-1164 *3) (-1164 *3))) (-4 *3 (-13 (-27) (-429 *6))) (-4 *6 (-13 (-845) (-554))) (-5 *2 (-583 *3)) (-5 *1 (-549 *6 *3)))))
-(-10 -7 (-15 -2047 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) (-1 (-1164 |#2|) (-1164 |#2|)))))
-((-2430 (((-583 |#5|) |#5| (-1 |#3| |#3|)) 198)) (-4176 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 194)) (-3749 (((-583 |#5|) |#5| (-1 |#3| |#3|)) 201)))
-(((-550 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3749 ((-583 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2430 ((-583 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4176 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-845) (-554) (-1033 (-562))) (-13 (-27) (-429 |#1|)) (-1232 |#2|) (-1232 (-406 |#3|)) (-341 |#2| |#3| |#4|)) (T -550))
-((-4176 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-27) (-429 *4))) (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-4 *7 (-1232 (-406 *6))) (-5 *1 (-550 *4 *5 *6 *7 *2)) (-4 *2 (-341 *5 *6 *7)))) (-2430 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1232 *6)) (-4 *6 (-13 (-27) (-429 *5))) (-4 *5 (-13 (-845) (-554) (-1033 (-562)))) (-4 *8 (-1232 (-406 *7))) (-5 *2 (-583 *3)) (-5 *1 (-550 *5 *6 *7 *8 *3)) (-4 *3 (-341 *6 *7 *8)))) (-3749 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1232 *6)) (-4 *6 (-13 (-27) (-429 *5))) (-4 *5 (-13 (-845) (-554) (-1033 (-562)))) (-4 *8 (-1232 (-406 *7))) (-5 *2 (-583 *3)) (-5 *1 (-550 *5 *6 *7 *8 *3)) (-4 *3 (-341 *6 *7 *8)))))
-(-10 -7 (-15 -3749 ((-583 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2430 ((-583 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4176 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
-((-3179 (((-112) (-562) (-562)) 10)) (-4035 (((-562) (-562)) 7)) (-3554 (((-562) (-562) (-562)) 8)))
-(((-551) (-10 -7 (-15 -4035 ((-562) (-562))) (-15 -3554 ((-562) (-562) (-562))) (-15 -3179 ((-112) (-562) (-562))))) (T -551))
-((-3179 (*1 *2 *3 *3) (-12 (-5 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-551)))) (-3554 (*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-551)))) (-4035 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-551)))))
-(-10 -7 (-15 -4035 ((-562) (-562))) (-15 -3554 ((-562) (-562) (-562))) (-15 -3179 ((-112) (-562) (-562))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3697 ((|#1| $) 62)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-2988 (($ $) 92)) (-4097 (($ $) 75)) (-3659 ((|#1| $) 63)) (-3214 (((-3 $ "failed") $ $) 19)) (-1643 (($ $) 74)) (-4207 (($ $) 91)) (-4074 (($ $) 76)) (-3014 (($ $) 90)) (-4119 (($ $) 77)) (-1800 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 70)) (-3961 (((-562) $) 71)) (-3668 (((-3 $ "failed") $) 33)) (-4112 (($ |#1| |#1|) 67)) (-3519 (((-112) $) 61)) (-4100 (($) 102)) (-1957 (((-112) $) 31)) (-1891 (($ $ (-562)) 73)) (-3392 (((-112) $) 60)) (-1551 (($ $ $) 108)) (-2993 (($ $ $) 107)) (-4365 (($ $) 99)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-2682 (($ |#1| |#1|) 68) (($ |#1|) 66) (($ (-406 (-562))) 65)) (-1310 ((|#1| $) 64)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1762 (((-3 $ "failed") $ $) 43)) (-3430 (($ $) 100)) (-3023 (($ $) 89)) (-4130 (($ $) 78)) (-3001 (($ $) 88)) (-4108 (($ $) 79)) (-2978 (($ $) 87)) (-4087 (($ $) 80)) (-2843 (((-112) $ |#1|) 59)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-562)) 69)) (-2579 (((-766)) 28)) (-3055 (($ $) 98)) (-4165 (($ $) 86)) (-2922 (((-112) $ $) 40)) (-3033 (($ $) 97)) (-4138 (($ $) 85)) (-3078 (($ $) 96)) (-4182 (($ $) 84)) (-1566 (($ $) 95)) (-4195 (($ $) 83)) (-3066 (($ $) 94)) (-4174 (($ $) 82)) (-3044 (($ $) 93)) (-4151 (($ $) 81)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 105)) (-1772 (((-112) $ $) 104)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 106)) (-1759 (((-112) $ $) 103)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ $) 101) (($ $ (-406 (-562))) 72)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-3655 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#2| $ |#1| |#2|) NIL)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1472 (((-3 |#2| "failed") |#1| $) NIL)) (-3329 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-3729 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-3 |#2| "failed") |#1| $) NIL)) (-1475 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#2| $ |#1|) NIL)) (-1720 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 ((|#1| $) NIL (|has| |#1| (-845)))) (-2123 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-1929 ((|#1| $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4404))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1521 (((-639 |#1|) $) NIL)) (-4278 (((-112) |#1| $) NIL)) (-2078 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-1581 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3336 (((-639 |#1|) $) NIL)) (-1987 (((-112) |#1| $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845)))) (-1963 (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL)) (-3510 (($ $ |#2|) NIL (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-2366 (((-639 |#2|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-1932 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-4053 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-4131 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-548 |#1| |#2| |#3|) (-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4403))) (-1092) (-1092) (-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4403)))) (T -548))
+NIL
+(-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4403)))
+((-4088 (((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) (-1 (-1164 |#2|) (-1164 |#2|))) 51)))
+(((-549 |#1| |#2|) (-10 -7 (-15 -4088 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) (-1 (-1164 |#2|) (-1164 |#2|))))) (-13 (-845) (-554)) (-13 (-27) (-429 |#1|))) (T -549))
+((-4088 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-608 *3)) (-5 *5 (-1 (-1164 *3) (-1164 *3))) (-4 *3 (-13 (-27) (-429 *6))) (-4 *6 (-13 (-845) (-554))) (-5 *2 (-583 *3)) (-5 *1 (-549 *6 *3)))))
+(-10 -7 (-15 -4088 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) (-1 (-1164 |#2|) (-1164 |#2|)))))
+((-2535 (((-583 |#5|) |#5| (-1 |#3| |#3|)) 198)) (-2843 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 194)) (-3090 (((-583 |#5|) |#5| (-1 |#3| |#3|)) 201)))
+(((-550 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3090 ((-583 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2535 ((-583 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2843 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-845) (-554) (-1033 (-562))) (-13 (-27) (-429 |#1|)) (-1232 |#2|) (-1232 (-406 |#3|)) (-341 |#2| |#3| |#4|)) (T -550))
+((-2843 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-27) (-429 *4))) (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-4 *7 (-1232 (-406 *6))) (-5 *1 (-550 *4 *5 *6 *7 *2)) (-4 *2 (-341 *5 *6 *7)))) (-2535 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1232 *6)) (-4 *6 (-13 (-27) (-429 *5))) (-4 *5 (-13 (-845) (-554) (-1033 (-562)))) (-4 *8 (-1232 (-406 *7))) (-5 *2 (-583 *3)) (-5 *1 (-550 *5 *6 *7 *8 *3)) (-4 *3 (-341 *6 *7 *8)))) (-3090 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1232 *6)) (-4 *6 (-13 (-27) (-429 *5))) (-4 *5 (-13 (-845) (-554) (-1033 (-562)))) (-4 *8 (-1232 (-406 *7))) (-5 *2 (-583 *3)) (-5 *1 (-550 *5 *6 *7 *8 *3)) (-4 *3 (-341 *6 *7 *8)))))
+(-10 -7 (-15 -3090 ((-583 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2535 ((-583 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2843 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
+((-2457 (((-112) (-562) (-562)) 10)) (-4073 (((-562) (-562)) 7)) (-1835 (((-562) (-562) (-562)) 8)))
+(((-551) (-10 -7 (-15 -4073 ((-562) (-562))) (-15 -1835 ((-562) (-562) (-562))) (-15 -2457 ((-112) (-562) (-562))))) (T -551))
+((-2457 (*1 *2 *3 *3) (-12 (-5 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-551)))) (-1835 (*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-551)))) (-4073 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-551)))))
+(-10 -7 (-15 -4073 ((-562) (-562))) (-15 -1835 ((-562) (-562) (-562))) (-15 -2457 ((-112) (-562) (-562))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-3697 ((|#1| $) 62)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2987 (($ $) 92)) (-4098 (($ $) 75)) (-1593 ((|#1| $) 63)) (-2781 (((-3 $ "failed") $ $) 19)) (-1644 (($ $) 74)) (-4206 (($ $) 91)) (-4074 (($ $) 76)) (-3013 (($ $) 90)) (-4120 (($ $) 77)) (-3329 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 70)) (-3960 (((-562) $) 71)) (-1694 (((-3 $ "failed") $) 33)) (-3479 (($ |#1| |#1|) 67)) (-2696 (((-112) $) 61)) (-4100 (($) 102)) (-4367 (((-112) $) 31)) (-1895 (($ $ (-562)) 73)) (-3855 (((-112) $) 60)) (-1551 (($ $ $) 108)) (-2993 (($ $ $) 107)) (-4366 (($ $) 99)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-3203 (($ |#1| |#1|) 68) (($ |#1|) 66) (($ (-406 (-562))) 65)) (-1693 ((|#1| $) 64)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1762 (((-3 $ "failed") $ $) 43)) (-3430 (($ $) 100)) (-3022 (($ $) 89)) (-4130 (($ $) 78)) (-3000 (($ $) 88)) (-4108 (($ $) 79)) (-2977 (($ $) 87)) (-4087 (($ $) 80)) (-4251 (((-112) $ |#1|) 59)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-562)) 69)) (-1568 (((-766)) 28)) (-3054 (($ $) 98)) (-4165 (($ $) 86)) (-3799 (((-112) $ $) 40)) (-3033 (($ $) 97)) (-4139 (($ $) 85)) (-3077 (($ $) 96)) (-4183 (($ $) 84)) (-1567 (($ $) 95)) (-4195 (($ $) 83)) (-3065 (($ $) 94)) (-4175 (($ $) 82)) (-3040 (($ $) 93)) (-4151 (($ $) 81)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 105)) (-1771 (((-112) $ $) 104)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 106)) (-1761 (((-112) $ $) 103)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ $) 101) (($ $ (-406 (-562))) 72)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-552 |#1|) (-139) (-13 (-403) (-1192))) (T -552))
-((-2682 (*1 *1 *2 *2) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))) (-4112 (*1 *1 *2 *2) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))) (-2682 (*1 *1 *2) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))) (-2682 (*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))))) (-1310 (*1 *2 *1) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))) (-3659 (*1 *2 *1) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))) (-3697 (*1 *2 *1) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))) (-3519 (*1 *2 *1) (-12 (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))) (-5 *2 (-112)))) (-3392 (*1 *2 *1) (-12 (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))) (-5 *2 (-112)))) (-2843 (*1 *2 *1 *3) (-12 (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))) (-5 *2 (-112)))))
-(-13 (-451) (-845) (-1192) (-997) (-1033 (-562)) (-10 -8 (-6 -1406) (-15 -2682 ($ |t#1| |t#1|)) (-15 -4112 ($ |t#1| |t#1|)) (-15 -2682 ($ |t#1|)) (-15 -2682 ($ (-406 (-562)))) (-15 -1310 (|t#1| $)) (-15 -3659 (|t#1| $)) (-15 -3697 (|t#1| $)) (-15 -3519 ((-112) $)) (-15 -3392 ((-112) $)) (-15 -2843 ((-112) $ |t#1|))))
+((-3203 (*1 *1 *2 *2) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))) (-3479 (*1 *1 *2 *2) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))) (-3203 (*1 *1 *2) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))) (-3203 (*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))))) (-1693 (*1 *2 *1) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))) (-1593 (*1 *2 *1) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))) (-3697 (*1 *2 *1) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))) (-2696 (*1 *2 *1) (-12 (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))) (-5 *2 (-112)))) (-3855 (*1 *2 *1) (-12 (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))) (-5 *2 (-112)))) (-4251 (*1 *2 *1 *3) (-12 (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))) (-5 *2 (-112)))))
+(-13 (-451) (-845) (-1192) (-997) (-1033 (-562)) (-10 -8 (-6 -1406) (-15 -3203 ($ |t#1| |t#1|)) (-15 -3479 ($ |t#1| |t#1|)) (-15 -3203 ($ |t#1|)) (-15 -3203 ($ (-406 (-562)))) (-15 -1693 (|t#1| $)) (-15 -1593 (|t#1| $)) (-15 -3697 (|t#1| $)) (-15 -2696 ((-112) $)) (-15 -3855 ((-112) $)) (-15 -4251 ((-112) $ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-35) . T) ((-95) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-283) . T) ((-289) . T) ((-451) . T) ((-492) . T) ((-554) . T) ((-642 $) . T) ((-712 $) . T) ((-721) . T) ((-845) . T) ((-997) . T) ((-1033 (-562)) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1192) . T) ((-1195) . T))
-((-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 9)) (-2796 (($ $) 11)) (-4370 (((-112) $) 18)) (-3668 (((-3 $ "failed") $) 16)) (-2922 (((-112) $ $) 20)))
-(((-553 |#1|) (-10 -8 (-15 -4370 ((-112) |#1|)) (-15 -2922 ((-112) |#1| |#1|)) (-15 -2796 (|#1| |#1|)) (-15 -1445 ((-2 (|:| -3931 |#1|) (|:| -4389 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3668 ((-3 |#1| "failed") |#1|))) (-554)) (T -553))
+((-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 9)) (-1965 (($ $) 11)) (-4102 (((-112) $) 18)) (-1694 (((-3 $ "failed") $) 16)) (-3799 (((-112) $ $) 20)))
+(((-553 |#1|) (-10 -8 (-15 -4102 ((-112) |#1|)) (-15 -3799 ((-112) |#1| |#1|)) (-15 -1965 (|#1| |#1|)) (-15 -2271 ((-2 (|:| -4310 |#1|) (|:| -4390 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -1694 ((-3 |#1| "failed") |#1|))) (-554)) (T -553))
NIL
-(-10 -8 (-15 -4370 ((-112) |#1|)) (-15 -2922 ((-112) |#1| |#1|)) (-15 -2796 (|#1| |#1|)) (-15 -1445 ((-2 (|:| -3931 |#1|) (|:| -4389 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3668 ((-3 |#1| "failed") |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ $) 43)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+(-10 -8 (-15 -4102 ((-112) |#1|)) (-15 -3799 ((-112) |#1| |#1|)) (-15 -1965 (|#1| |#1|)) (-15 -2271 ((-2 (|:| -4310 |#1|) (|:| -4390 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -1694 ((-3 |#1| "failed") |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ $) 43)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-554) (-139)) (T -554))
-((-1762 (*1 *1 *1 *1) (|partial| -4 *1 (-554))) (-1445 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -3931 *1) (|:| -4389 *1) (|:| |associate| *1))) (-4 *1 (-554)))) (-2796 (*1 *1 *1) (-4 *1 (-554))) (-2922 (*1 *2 *1 *1) (-12 (-4 *1 (-554)) (-5 *2 (-112)))) (-4370 (*1 *2 *1) (-12 (-4 *1 (-554)) (-5 *2 (-112)))))
-(-13 (-171) (-38 $) (-289) (-10 -8 (-15 -1762 ((-3 $ "failed") $ $)) (-15 -1445 ((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $)) (-15 -2796 ($ $)) (-15 -2922 ((-112) $ $)) (-15 -4370 ((-112) $))))
+((-1762 (*1 *1 *1 *1) (|partial| -4 *1 (-554))) (-2271 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -4310 *1) (|:| -4390 *1) (|:| |associate| *1))) (-4 *1 (-554)))) (-1965 (*1 *1 *1) (-4 *1 (-554))) (-3799 (*1 *2 *1 *1) (-12 (-4 *1 (-554)) (-5 *2 (-112)))) (-4102 (*1 *2 *1) (-12 (-4 *1 (-554)) (-5 *2 (-112)))))
+(-13 (-171) (-38 $) (-289) (-10 -8 (-15 -1762 ((-3 $ "failed") $ $)) (-15 -2271 ((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $)) (-15 -1965 ($ $)) (-15 -3799 ((-112) $ $)) (-15 -4102 ((-112) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-289) . T) ((-642 $) . T) ((-712 $) . T) ((-721) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-1866 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1168) (-639 |#2|)) 37)) (-2942 (((-583 |#2|) |#2| (-1168)) 62)) (-3322 (((-3 |#2| "failed") |#2| (-1168)) 151)) (-1303 (((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1168) (-608 |#2|) (-639 (-608 |#2|))) 154)) (-3303 (((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1168) |#2|) 40)))
-(((-555 |#1| |#2|) (-10 -7 (-15 -3303 ((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1168) |#2|)) (-15 -1866 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1168) (-639 |#2|))) (-15 -3322 ((-3 |#2| "failed") |#2| (-1168))) (-15 -2942 ((-583 |#2|) |#2| (-1168))) (-15 -1303 ((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1168) (-608 |#2|) (-639 (-608 |#2|))))) (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -555))
-((-1303 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1168)) (-5 *6 (-639 (-608 *3))) (-5 *5 (-608 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *7))) (-4 *7 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-2 (|:| -3860 *3) (|:| |coeff| *3))) (-5 *1 (-555 *7 *3)))) (-2942 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-583 *3)) (-5 *1 (-555 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-3322 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-555 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))) (-1866 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-639 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-555 *6 *3)))) (-3303 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1168)) (-4 *5 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-2 (|:| -3860 *3) (|:| |coeff| *3))) (-5 *1 (-555 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
-(-10 -7 (-15 -3303 ((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1168) |#2|)) (-15 -1866 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1168) (-639 |#2|))) (-15 -3322 ((-3 |#2| "failed") |#2| (-1168))) (-15 -2942 ((-583 |#2|) |#2| (-1168))) (-15 -1303 ((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1168) (-608 |#2|) (-639 (-608 |#2|)))))
-((-2921 (((-417 |#1|) |#1|) 18)) (-1635 (((-417 |#1|) |#1|) 33)) (-2780 (((-3 |#1| "failed") |#1|) 44)) (-4092 (((-417 |#1|) |#1|) 51)))
-(((-556 |#1|) (-10 -7 (-15 -1635 ((-417 |#1|) |#1|)) (-15 -2921 ((-417 |#1|) |#1|)) (-15 -4092 ((-417 |#1|) |#1|)) (-15 -2780 ((-3 |#1| "failed") |#1|))) (-544)) (T -556))
-((-2780 (*1 *2 *2) (|partial| -12 (-5 *1 (-556 *2)) (-4 *2 (-544)))) (-4092 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-556 *3)) (-4 *3 (-544)))) (-2921 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-556 *3)) (-4 *3 (-544)))) (-1635 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-556 *3)) (-4 *3 (-544)))))
-(-10 -7 (-15 -1635 ((-417 |#1|) |#1|)) (-15 -2921 ((-417 |#1|) |#1|)) (-15 -4092 ((-417 |#1|) |#1|)) (-15 -2780 ((-3 |#1| "failed") |#1|)))
-((-2646 (($) 9)) (-1711 (((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 35)) (-1520 (((-639 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) $) 32)) (-4300 (($ (-2 (|:| -2320 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) 29)) (-3967 (($ (-639 (-2 (|:| -2320 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) 27)) (-2694 (((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 39)) (-2411 (((-639 (-2 (|:| -2320 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $) 37)) (-4276 (((-1261)) 12)))
-(((-557) (-10 -8 (-15 -2646 ($)) (-15 -4276 ((-1261))) (-15 -1520 ((-639 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) $)) (-15 -3967 ($ (-639 (-2 (|:| -2320 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))))) (-15 -4300 ($ (-2 (|:| -2320 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-15 -1711 ((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2411 ((-639 (-2 (|:| -2320 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $)) (-15 -2694 ((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))) (T -557))
-((-2694 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *1 (-557)))) (-2411 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| -2320 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-5 *1 (-557)))) (-1711 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *1 (-557)))) (-4300 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2320 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) (-5 *1 (-557)))) (-3967 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -2320 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-5 *1 (-557)))) (-1520 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-5 *1 (-557)))) (-4276 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-557)))) (-2646 (*1 *1) (-5 *1 (-557))))
-(-10 -8 (-15 -2646 ($)) (-15 -4276 ((-1261))) (-15 -1520 ((-639 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) $)) (-15 -3967 ($ (-639 (-2 (|:| -2320 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))))) (-15 -4300 ($ (-2 (|:| -2320 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-15 -1711 ((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2411 ((-639 (-2 (|:| -2320 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $)) (-15 -2694 ((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -1590 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))
-((-1599 (((-1164 (-406 (-1164 |#2|))) |#2| (-608 |#2|) (-608 |#2|) (-1164 |#2|)) 32)) (-1654 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|))) 100) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|) |#2| (-1164 |#2|)) 110)) (-2561 (((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|))) 80) (((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) |#2| (-1164 |#2|)) 52)) (-2171 (((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2| (-608 |#2|) |#2| (-406 (-1164 |#2|))) 87) (((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2| |#2| (-1164 |#2|)) 109)) (-2402 (((-3 |#2| "failed") |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)) (-608 |#2|) |#2| (-406 (-1164 |#2|))) 105) (((-3 |#2| "failed") |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)) |#2| (-1164 |#2|)) 111)) (-4166 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3928 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|))) 128 (|has| |#3| (-650 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3928 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) |#2| (-1164 |#2|)) 127 (|has| |#3| (-650 |#2|)))) (-1390 ((|#2| (-1164 (-406 (-1164 |#2|))) (-608 |#2|) |#2|) 50)) (-1943 (((-1164 (-406 (-1164 |#2|))) (-1164 |#2|) (-608 |#2|)) 31)))
-(((-558 |#1| |#2| |#3|) (-10 -7 (-15 -2561 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) |#2| (-1164 |#2|))) (-15 -2561 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -2171 ((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2| |#2| (-1164 |#2|))) (-15 -2171 ((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2| (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -1654 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|) |#2| (-1164 |#2|))) (-15 -1654 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -2402 ((-3 |#2| "failed") |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)) |#2| (-1164 |#2|))) (-15 -2402 ((-3 |#2| "failed") |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)) (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -1599 ((-1164 (-406 (-1164 |#2|))) |#2| (-608 |#2|) (-608 |#2|) (-1164 |#2|))) (-15 -1390 (|#2| (-1164 (-406 (-1164 |#2|))) (-608 |#2|) |#2|)) (-15 -1943 ((-1164 (-406 (-1164 |#2|))) (-1164 |#2|) (-608 |#2|))) (IF (|has| |#3| (-650 |#2|)) (PROGN (-15 -4166 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3928 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) |#2| (-1164 |#2|))) (-15 -4166 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3928 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|))))) |%noBranch|)) (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))) (-13 (-429 |#1|) (-27) (-1192)) (-1092)) (T -558))
-((-4166 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-608 *4)) (-5 *6 (-406 (-1164 *4))) (-4 *4 (-13 (-429 *7) (-27) (-1192))) (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4)))) (-5 *1 (-558 *7 *4 *3)) (-4 *3 (-650 *4)) (-4 *3 (-1092)))) (-4166 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-608 *4)) (-5 *6 (-1164 *4)) (-4 *4 (-13 (-429 *7) (-27) (-1192))) (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4)))) (-5 *1 (-558 *7 *4 *3)) (-4 *3 (-650 *4)) (-4 *3 (-1092)))) (-1943 (*1 *2 *3 *4) (-12 (-5 *4 (-608 *6)) (-4 *6 (-13 (-429 *5) (-27) (-1192))) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-1164 (-406 (-1164 *6)))) (-5 *1 (-558 *5 *6 *7)) (-5 *3 (-1164 *6)) (-4 *7 (-1092)))) (-1390 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1164 (-406 (-1164 *2)))) (-5 *4 (-608 *2)) (-4 *2 (-13 (-429 *5) (-27) (-1192))) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *1 (-558 *5 *2 *6)) (-4 *6 (-1092)))) (-1599 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-608 *3)) (-4 *3 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-1164 (-406 (-1164 *3)))) (-5 *1 (-558 *6 *3 *7)) (-5 *5 (-1164 *3)) (-4 *7 (-1092)))) (-2402 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-608 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1168))) (-5 *5 (-406 (-1164 *2))) (-4 *2 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *1 (-558 *6 *2 *7)) (-4 *7 (-1092)))) (-2402 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-608 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1168))) (-5 *5 (-1164 *2)) (-4 *2 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *1 (-558 *6 *2 *7)) (-4 *7 (-1092)))) (-1654 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-639 *3)) (-5 *6 (-406 (-1164 *3))) (-4 *3 (-13 (-429 *7) (-27) (-1192))) (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-558 *7 *3 *8)) (-4 *8 (-1092)))) (-1654 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-639 *3)) (-5 *6 (-1164 *3)) (-4 *3 (-13 (-429 *7) (-27) (-1192))) (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-558 *7 *3 *8)) (-4 *8 (-1092)))) (-2171 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-406 (-1164 *3))) (-4 *3 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| -3860 *3) (|:| |coeff| *3))) (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092)))) (-2171 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-1164 *3)) (-4 *3 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| -3860 *3) (|:| |coeff| *3))) (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092)))) (-2561 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-608 *3)) (-5 *5 (-406 (-1164 *3))) (-4 *3 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-583 *3)) (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092)))) (-2561 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-608 *3)) (-5 *5 (-1164 *3)) (-4 *3 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-583 *3)) (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092)))))
-(-10 -7 (-15 -2561 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) |#2| (-1164 |#2|))) (-15 -2561 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -2171 ((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2| |#2| (-1164 |#2|))) (-15 -2171 ((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2| (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -1654 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|) |#2| (-1164 |#2|))) (-15 -1654 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -2402 ((-3 |#2| "failed") |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)) |#2| (-1164 |#2|))) (-15 -2402 ((-3 |#2| "failed") |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)) (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -1599 ((-1164 (-406 (-1164 |#2|))) |#2| (-608 |#2|) (-608 |#2|) (-1164 |#2|))) (-15 -1390 (|#2| (-1164 (-406 (-1164 |#2|))) (-608 |#2|) |#2|)) (-15 -1943 ((-1164 (-406 (-1164 |#2|))) (-1164 |#2|) (-608 |#2|))) (IF (|has| |#3| (-650 |#2|)) (PROGN (-15 -4166 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3928 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) |#2| (-1164 |#2|))) (-15 -4166 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3928 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|))))) |%noBranch|))
-((-2882 (((-562) (-562) (-766)) 66)) (-2243 (((-562) (-562)) 65)) (-2425 (((-562) (-562)) 64)) (-3351 (((-562) (-562)) 69)) (-1761 (((-562) (-562) (-562)) 49)) (-3735 (((-562) (-562) (-562)) 46)) (-2118 (((-406 (-562)) (-562)) 20)) (-3628 (((-562) (-562)) 21)) (-2159 (((-562) (-562)) 58)) (-4342 (((-562) (-562)) 32)) (-2437 (((-639 (-562)) (-562)) 63)) (-3757 (((-562) (-562) (-562) (-562) (-562)) 44)) (-3160 (((-406 (-562)) (-562)) 41)))
-(((-559) (-10 -7 (-15 -3160 ((-406 (-562)) (-562))) (-15 -3757 ((-562) (-562) (-562) (-562) (-562))) (-15 -2437 ((-639 (-562)) (-562))) (-15 -4342 ((-562) (-562))) (-15 -2159 ((-562) (-562))) (-15 -3628 ((-562) (-562))) (-15 -2118 ((-406 (-562)) (-562))) (-15 -3735 ((-562) (-562) (-562))) (-15 -1761 ((-562) (-562) (-562))) (-15 -3351 ((-562) (-562))) (-15 -2425 ((-562) (-562))) (-15 -2243 ((-562) (-562))) (-15 -2882 ((-562) (-562) (-766))))) (T -559))
-((-2882 (*1 *2 *2 *3) (-12 (-5 *2 (-562)) (-5 *3 (-766)) (-5 *1 (-559)))) (-2243 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-2425 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-3351 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-1761 (*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-3735 (*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-2118 (*1 *2 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-559)) (-5 *3 (-562)))) (-3628 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-2159 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-4342 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-2437 (*1 *2 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-559)) (-5 *3 (-562)))) (-3757 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-3160 (*1 *2 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-559)) (-5 *3 (-562)))))
-(-10 -7 (-15 -3160 ((-406 (-562)) (-562))) (-15 -3757 ((-562) (-562) (-562) (-562) (-562))) (-15 -2437 ((-639 (-562)) (-562))) (-15 -4342 ((-562) (-562))) (-15 -2159 ((-562) (-562))) (-15 -3628 ((-562) (-562))) (-15 -2118 ((-406 (-562)) (-562))) (-15 -3735 ((-562) (-562) (-562))) (-15 -1761 ((-562) (-562) (-562))) (-15 -3351 ((-562) (-562))) (-15 -2425 ((-562) (-562))) (-15 -2243 ((-562) (-562))) (-15 -2882 ((-562) (-562) (-766))))
-((-1435 (((-2 (|:| |answer| |#4|) (|:| -3288 |#4|)) |#4| (-1 |#2| |#2|)) 52)))
-(((-560 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1435 ((-2 (|:| |answer| |#4|) (|:| -3288 |#4|)) |#4| (-1 |#2| |#2|)))) (-362) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|)) (T -560))
-((-1435 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362)) (-4 *7 (-1232 (-406 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -3288 *3))) (-5 *1 (-560 *5 *6 *7 *3)) (-4 *3 (-341 *5 *6 *7)))))
-(-10 -7 (-15 -1435 ((-2 (|:| |answer| |#4|) (|:| -3288 |#4|)) |#4| (-1 |#2| |#2|))))
-((-1435 (((-2 (|:| |answer| (-406 |#2|)) (|:| -3288 (-406 |#2|)) (|:| |specpart| (-406 |#2|)) (|:| |polypart| |#2|)) (-406 |#2|) (-1 |#2| |#2|)) 18)))
-(((-561 |#1| |#2|) (-10 -7 (-15 -1435 ((-2 (|:| |answer| (-406 |#2|)) (|:| -3288 (-406 |#2|)) (|:| |specpart| (-406 |#2|)) (|:| |polypart| |#2|)) (-406 |#2|) (-1 |#2| |#2|)))) (-362) (-1232 |#1|)) (T -561))
-((-1435 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| |answer| (-406 *6)) (|:| -3288 (-406 *6)) (|:| |specpart| (-406 *6)) (|:| |polypart| *6))) (-5 *1 (-561 *5 *6)) (-5 *3 (-406 *6)))))
-(-10 -7 (-15 -1435 ((-2 (|:| |answer| (-406 |#2|)) (|:| -3288 (-406 |#2|)) (|:| |specpart| (-406 |#2|)) (|:| |polypart| |#2|)) (-406 |#2|) (-1 |#2| |#2|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 25)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 88)) (-2796 (($ $) 89)) (-4370 (((-112) $) NIL)) (-1685 (($ $ $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-4375 (($ $ $ $) 43)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL)) (-3358 (($ $ $) 82)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL)) (-3961 (((-562) $) NIL)) (-1811 (($ $ $) 81)) (-2406 (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 62) (((-683 (-562)) (-683 $)) 58)) (-3668 (((-3 $ "failed") $) 85)) (-1726 (((-3 (-406 (-562)) "failed") $) NIL)) (-3035 (((-112) $) NIL)) (-1291 (((-406 (-562)) $) NIL)) (-1448 (($) 64) (($ $) 65)) (-1787 (($ $ $) 80)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3854 (($ $ $ $) NIL)) (-1292 (($ $ $) 55)) (-3519 (((-112) $) NIL)) (-2794 (($ $ $) NIL)) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL)) (-1957 (((-112) $) 26)) (-3130 (((-112) $) 75)) (-3699 (((-3 $ "failed") $) NIL)) (-3392 (((-112) $) 35)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2504 (($ $ $ $) 44)) (-1551 (($ $ $) 77)) (-2993 (($ $ $) 76)) (-3930 (($ $) NIL)) (-3641 (($ $) 41)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) 54)) (-1809 (($ $ $) NIL)) (-3729 (($) NIL T CONST)) (-4137 (($ $) 31)) (-1709 (((-1112) $) 34)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 119)) (-1606 (($ $ $) 86) (($ (-639 $)) NIL)) (-1351 (($ $) NIL)) (-1635 (((-417 $) $) 105)) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL)) (-1762 (((-3 $ "failed") $ $) 84)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3803 (((-112) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 79)) (-4029 (($ $ (-766)) NIL) (($ $) NIL)) (-2372 (($ $) 32)) (-4220 (($ $) 30)) (-4208 (((-562) $) 40) (((-535) $) 52) (((-887 (-562)) $) NIL) (((-378) $) 47) (((-224) $) 49) (((-1150) $) 53)) (-4054 (((-857) $) 38) (($ (-562)) 39) (($ $) NIL) (($ (-562)) 39)) (-2579 (((-766)) NIL)) (-2929 (((-112) $ $) NIL)) (-3261 (($ $ $) NIL)) (-3241 (($) 29)) (-2922 (((-112) $ $) NIL)) (-3131 (($ $ $ $) 42)) (-3526 (($ $) 63)) (-2286 (($) 27 T CONST)) (-2294 (($) 28 T CONST)) (-2833 (((-1150) $) 20) (((-1150) $ (-112)) 22) (((-1261) (-817) $) 23) (((-1261) (-817) $ (-112)) 24)) (-3114 (($ $ (-766)) NIL) (($ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 66)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 67)) (-1848 (($ $) 68) (($ $ $) 70)) (-1835 (($ $ $) 69)) (** (($ $ (-916)) NIL) (($ $ (-766)) 74)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 72) (($ $ $) 71)))
-(((-562) (-13 (-544) (-610 (-1150)) (-823) (-10 -8 (-15 -1448 ($ $)) (-6 -4389) (-6 -4394) (-6 -4390) (-6 -4384)))) (T -562))
-((-1448 (*1 *1 *1) (-5 *1 (-562))))
-(-13 (-544) (-610 (-1150)) (-823) (-10 -8 (-15 -1448 ($ $)) (-6 -4389) (-6 -4394) (-6 -4390) (-6 -4384)))
-((-2172 (((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))) (-764) (-1056)) 108) (((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))) (-764)) 110)) (-2667 (((-3 (-1030) "failed") (-315 (-378)) (-1084 (-838 (-378))) (-1168)) 172) (((-3 (-1030) "failed") (-315 (-378)) (-1084 (-838 (-378))) (-1150)) 171) (((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378) (-378) (-1056)) 176) (((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378) (-378)) 177) (((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378)) 178) (((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378))))) 179) (((-1030) (-315 (-378)) (-1086 (-838 (-378)))) 167) (((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378)) 166) (((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378) (-378)) 162) (((-1030) (-764)) 155) (((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378) (-378) (-1056)) 161)))
-(((-563) (-10 -7 (-15 -2667 ((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378) (-378) (-1056))) (-15 -2667 ((-1030) (-764))) (-15 -2667 ((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378) (-378))) (-15 -2667 ((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378))) (-15 -2667 ((-1030) (-315 (-378)) (-1086 (-838 (-378))))) (-15 -2667 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))))) (-15 -2667 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378))) (-15 -2667 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378) (-378))) (-15 -2667 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378) (-378) (-1056))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))) (-764))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))) (-764) (-1056))) (-15 -2667 ((-3 (-1030) "failed") (-315 (-378)) (-1084 (-838 (-378))) (-1150))) (-15 -2667 ((-3 (-1030) "failed") (-315 (-378)) (-1084 (-838 (-378))) (-1168))))) (T -563))
-((-2667 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-315 (-378))) (-5 *4 (-1084 (-838 (-378)))) (-5 *5 (-1168)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-2667 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-315 (-378))) (-5 *4 (-1084 (-838 (-378)))) (-5 *5 (-1150)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-2172 (*1 *2 *3 *4) (-12 (-5 *3 (-764)) (-5 *4 (-1056)) (-5 *2 (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030)))) (-5 *1 (-563)))) (-2172 (*1 *2 *3) (-12 (-5 *3 (-764)) (-5 *2 (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030)))) (-5 *1 (-563)))) (-2667 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378))))) (-5 *5 (-378)) (-5 *6 (-1056)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-2667 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378))))) (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-2667 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378))))) (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-2667 (*1 *2 *3 *4) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378))))) (-5 *2 (-1030)) (-5 *1 (-563)))) (-2667 (*1 *2 *3 *4) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378)))) (-5 *2 (-1030)) (-5 *1 (-563)))) (-2667 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378)))) (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-2667 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378)))) (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-2667 (*1 *2 *3) (-12 (-5 *3 (-764)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-2667 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378)))) (-5 *5 (-378)) (-5 *6 (-1056)) (-5 *2 (-1030)) (-5 *1 (-563)))))
-(-10 -7 (-15 -2667 ((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378) (-378) (-1056))) (-15 -2667 ((-1030) (-764))) (-15 -2667 ((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378) (-378))) (-15 -2667 ((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378))) (-15 -2667 ((-1030) (-315 (-378)) (-1086 (-838 (-378))))) (-15 -2667 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))))) (-15 -2667 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378))) (-15 -2667 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378) (-378))) (-15 -2667 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378) (-378) (-1056))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))) (-764))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))) (-764) (-1056))) (-15 -2667 ((-3 (-1030) "failed") (-315 (-378)) (-1084 (-838 (-378))) (-1150))) (-15 -2667 ((-3 (-1030) "failed") (-315 (-378)) (-1084 (-838 (-378))) (-1168))))
-((-3642 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|)) 183)) (-3163 (((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|)) 98)) (-1914 (((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2|) 179)) (-3479 (((-3 |#2| "failed") |#2| |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168))) 188)) (-3150 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3928 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) (-1168)) 196 (|has| |#3| (-650 |#2|)))))
-(((-564 |#1| |#2| |#3|) (-10 -7 (-15 -3163 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|))) (-15 -1914 ((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2|)) (-15 -3642 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|))) (-15 -3479 ((-3 |#2| "failed") |#2| |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)))) (IF (|has| |#3| (-650 |#2|)) (-15 -3150 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3928 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) (-1168))) |%noBranch|)) (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))) (-13 (-429 |#1|) (-27) (-1192)) (-1092)) (T -564))
-((-3150 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-608 *4)) (-5 *6 (-1168)) (-4 *4 (-13 (-429 *7) (-27) (-1192))) (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4)))) (-5 *1 (-564 *7 *4 *3)) (-4 *3 (-650 *4)) (-4 *3 (-1092)))) (-3479 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-608 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1168))) (-4 *2 (-13 (-429 *5) (-27) (-1192))) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *1 (-564 *5 *2 *6)) (-4 *6 (-1092)))) (-3642 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-639 *3)) (-4 *3 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-564 *6 *3 *7)) (-4 *7 (-1092)))) (-1914 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-608 *3)) (-4 *3 (-13 (-429 *5) (-27) (-1192))) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| -3860 *3) (|:| |coeff| *3))) (-5 *1 (-564 *5 *3 *6)) (-4 *6 (-1092)))) (-3163 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-608 *3)) (-4 *3 (-13 (-429 *5) (-27) (-1192))) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-583 *3)) (-5 *1 (-564 *5 *3 *6)) (-4 *6 (-1092)))))
-(-10 -7 (-15 -3163 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|))) (-15 -1914 ((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2|)) (-15 -3642 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|))) (-15 -3479 ((-3 |#2| "failed") |#2| |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)))) (IF (|has| |#3| (-650 |#2|)) (-15 -3150 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3928 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) (-1168))) |%noBranch|))
-((-4024 (((-2 (|:| -3670 |#2|) (|:| |nconst| |#2|)) |#2| (-1168)) 63)) (-4279 (((-3 |#2| "failed") |#2| (-1168) (-838 |#2|) (-838 |#2|)) 163 (-12 (|has| |#2| (-1131)) (|has| |#1| (-610 (-887 (-562)))) (|has| |#1| (-881 (-562))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168)) 146 (-12 (|has| |#2| (-625)) (|has| |#1| (-610 (-887 (-562)))) (|has| |#1| (-881 (-562)))))) (-2610 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168)) 147 (-12 (|has| |#2| (-625)) (|has| |#1| (-610 (-887 (-562)))) (|has| |#1| (-881 (-562)))))))
-(((-565 |#1| |#2|) (-10 -7 (-15 -4024 ((-2 (|:| -3670 |#2|) (|:| |nconst| |#2|)) |#2| (-1168))) (IF (|has| |#1| (-610 (-887 (-562)))) (IF (|has| |#1| (-881 (-562))) (PROGN (IF (|has| |#2| (-625)) (PROGN (-15 -2610 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168))) (-15 -4279 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168)))) |%noBranch|) (IF (|has| |#2| (-1131)) (-15 -4279 ((-3 |#2| "failed") |#2| (-1168) (-838 |#2|) (-838 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-845) (-1033 (-562)) (-451) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -565))
-((-4279 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1168)) (-5 *4 (-838 *2)) (-4 *2 (-1131)) (-4 *2 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-610 (-887 (-562)))) (-4 *5 (-881 (-562))) (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562)))) (-5 *1 (-565 *5 *2)))) (-4279 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1168)) (-4 *5 (-610 (-887 (-562)))) (-4 *5 (-881 (-562))) (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-565 *5 *3)) (-4 *3 (-625)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-2610 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1168)) (-4 *5 (-610 (-887 (-562)))) (-4 *5 (-881 (-562))) (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-565 *5 *3)) (-4 *3 (-625)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-4024 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562)))) (-5 *2 (-2 (|:| -3670 *3) (|:| |nconst| *3))) (-5 *1 (-565 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
-(-10 -7 (-15 -4024 ((-2 (|:| -3670 |#2|) (|:| |nconst| |#2|)) |#2| (-1168))) (IF (|has| |#1| (-610 (-887 (-562)))) (IF (|has| |#1| (-881 (-562))) (PROGN (IF (|has| |#2| (-625)) (PROGN (-15 -2610 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168))) (-15 -4279 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168)))) |%noBranch|) (IF (|has| |#2| (-1131)) (-15 -4279 ((-3 |#2| "failed") |#2| (-1168) (-838 |#2|) (-838 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-1784 (((-3 (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|)))))) "failed") (-406 |#2|) (-639 (-406 |#2|))) 41)) (-2667 (((-583 (-406 |#2|)) (-406 |#2|)) 28)) (-4071 (((-3 (-406 |#2|) "failed") (-406 |#2|)) 17)) (-2615 (((-3 (-2 (|:| -3860 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-406 |#2|)) 48)))
-(((-566 |#1| |#2|) (-10 -7 (-15 -2667 ((-583 (-406 |#2|)) (-406 |#2|))) (-15 -4071 ((-3 (-406 |#2|) "failed") (-406 |#2|))) (-15 -2615 ((-3 (-2 (|:| -3860 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-406 |#2|))) (-15 -1784 ((-3 (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|)))))) "failed") (-406 |#2|) (-639 (-406 |#2|))))) (-13 (-362) (-146) (-1033 (-562))) (-1232 |#1|)) (T -566))
-((-1784 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-639 (-406 *6))) (-5 *3 (-406 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-566 *5 *6)))) (-2615 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-362) (-146) (-1033 (-562)))) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| -3860 (-406 *5)) (|:| |coeff| (-406 *5)))) (-5 *1 (-566 *4 *5)) (-5 *3 (-406 *5)))) (-4071 (*1 *2 *2) (|partial| -12 (-5 *2 (-406 *4)) (-4 *4 (-1232 *3)) (-4 *3 (-13 (-362) (-146) (-1033 (-562)))) (-5 *1 (-566 *3 *4)))) (-2667 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-562)))) (-4 *5 (-1232 *4)) (-5 *2 (-583 (-406 *5))) (-5 *1 (-566 *4 *5)) (-5 *3 (-406 *5)))))
-(-10 -7 (-15 -2667 ((-583 (-406 |#2|)) (-406 |#2|))) (-15 -4071 ((-3 (-406 |#2|) "failed") (-406 |#2|))) (-15 -2615 ((-3 (-2 (|:| -3860 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-406 |#2|))) (-15 -1784 ((-3 (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|)))))) "failed") (-406 |#2|) (-639 (-406 |#2|)))))
-((-1618 (((-3 (-562) "failed") |#1|) 14)) (-3377 (((-112) |#1|) 13)) (-1757 (((-562) |#1|) 9)))
-(((-567 |#1|) (-10 -7 (-15 -1757 ((-562) |#1|)) (-15 -3377 ((-112) |#1|)) (-15 -1618 ((-3 (-562) "failed") |#1|))) (-1033 (-562))) (T -567))
-((-1618 (*1 *2 *3) (|partial| -12 (-5 *2 (-562)) (-5 *1 (-567 *3)) (-4 *3 (-1033 *2)))) (-3377 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-567 *3)) (-4 *3 (-1033 (-562))))) (-1757 (*1 *2 *3) (-12 (-5 *2 (-562)) (-5 *1 (-567 *3)) (-4 *3 (-1033 *2)))))
-(-10 -7 (-15 -1757 ((-562) |#1|)) (-15 -3377 ((-112) |#1|)) (-15 -1618 ((-3 (-562) "failed") |#1|)))
-((-1527 (((-3 (-2 (|:| |mainpart| (-406 (-947 |#1|))) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 (-947 |#1|))) (|:| |logand| (-406 (-947 |#1|))))))) "failed") (-406 (-947 |#1|)) (-1168) (-639 (-406 (-947 |#1|)))) 48)) (-3206 (((-583 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-1168)) 28)) (-1819 (((-3 (-406 (-947 |#1|)) "failed") (-406 (-947 |#1|)) (-1168)) 23)) (-2482 (((-3 (-2 (|:| -3860 (-406 (-947 |#1|))) (|:| |coeff| (-406 (-947 |#1|)))) "failed") (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|))) 35)))
-(((-568 |#1|) (-10 -7 (-15 -3206 ((-583 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-1168))) (-15 -1819 ((-3 (-406 (-947 |#1|)) "failed") (-406 (-947 |#1|)) (-1168))) (-15 -1527 ((-3 (-2 (|:| |mainpart| (-406 (-947 |#1|))) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 (-947 |#1|))) (|:| |logand| (-406 (-947 |#1|))))))) "failed") (-406 (-947 |#1|)) (-1168) (-639 (-406 (-947 |#1|))))) (-15 -2482 ((-3 (-2 (|:| -3860 (-406 (-947 |#1|))) (|:| |coeff| (-406 (-947 |#1|)))) "failed") (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|))))) (-13 (-554) (-1033 (-562)) (-146))) (T -568))
-((-2482 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1168)) (-4 *5 (-13 (-554) (-1033 (-562)) (-146))) (-5 *2 (-2 (|:| -3860 (-406 (-947 *5))) (|:| |coeff| (-406 (-947 *5))))) (-5 *1 (-568 *5)) (-5 *3 (-406 (-947 *5))))) (-1527 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-639 (-406 (-947 *6)))) (-5 *3 (-406 (-947 *6))) (-4 *6 (-13 (-554) (-1033 (-562)) (-146))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-568 *6)))) (-1819 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-406 (-947 *4))) (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-1033 (-562)) (-146))) (-5 *1 (-568 *4)))) (-3206 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-554) (-1033 (-562)) (-146))) (-5 *2 (-583 (-406 (-947 *5)))) (-5 *1 (-568 *5)) (-5 *3 (-406 (-947 *5))))))
-(-10 -7 (-15 -3206 ((-583 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-1168))) (-15 -1819 ((-3 (-406 (-947 |#1|)) "failed") (-406 (-947 |#1|)) (-1168))) (-15 -1527 ((-3 (-2 (|:| |mainpart| (-406 (-947 |#1|))) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 (-947 |#1|))) (|:| |logand| (-406 (-947 |#1|))))))) "failed") (-406 (-947 |#1|)) (-1168) (-639 (-406 (-947 |#1|))))) (-15 -2482 ((-3 (-2 (|:| -3860 (-406 (-947 |#1|))) (|:| |coeff| (-406 (-947 |#1|)))) "failed") (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|)))))
-((-4041 (((-112) $ $) 58)) (-1952 (((-112) $) 36)) (-3697 ((|#1| $) 30)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) 62)) (-2988 (($ $) 122)) (-4097 (($ $) 102)) (-3659 ((|#1| $) 28)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1643 (($ $) NIL)) (-4207 (($ $) 124)) (-4074 (($ $) 98)) (-3014 (($ $) 126)) (-4119 (($ $) 106)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) 77)) (-3961 (((-562) $) 79)) (-3668 (((-3 $ "failed") $) 61)) (-4112 (($ |#1| |#1|) 26)) (-3519 (((-112) $) 33)) (-4100 (($) 88)) (-1957 (((-112) $) 43)) (-1891 (($ $ (-562)) NIL)) (-3392 (((-112) $) 34)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4365 (($ $) 90)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-2682 (($ |#1| |#1|) 20) (($ |#1|) 25) (($ (-406 (-562))) 76)) (-1310 ((|#1| $) 27)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) 64) (($ (-639 $)) NIL)) (-1762 (((-3 $ "failed") $ $) 63)) (-3430 (($ $) 92)) (-3023 (($ $) 130)) (-4130 (($ $) 104)) (-3001 (($ $) 132)) (-4108 (($ $) 108)) (-2978 (($ $) 128)) (-4087 (($ $) 100)) (-2843 (((-112) $ |#1|) 31)) (-4054 (((-857) $) 84) (($ (-562)) 66) (($ $) NIL) (($ (-562)) 66)) (-2579 (((-766)) 86)) (-3055 (($ $) 144)) (-4165 (($ $) 114)) (-2922 (((-112) $ $) NIL)) (-3033 (($ $) 142)) (-4138 (($ $) 110)) (-3078 (($ $) 140)) (-4182 (($ $) 120)) (-1566 (($ $) 138)) (-4195 (($ $) 118)) (-3066 (($ $) 136)) (-4174 (($ $) 116)) (-3044 (($ $) 134)) (-4151 (($ $) 112)) (-2286 (($) 21 T CONST)) (-2294 (($) 10 T CONST)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 37)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 35)) (-1848 (($ $) 41) (($ $ $) 42)) (-1835 (($ $ $) 40)) (** (($ $ (-916)) 54) (($ $ (-766)) NIL) (($ $ $) 94) (($ $ (-406 (-562))) 146)) (* (($ (-916) $) 51) (($ (-766) $) NIL) (($ (-562) $) 50) (($ $ $) 48)))
+((-2814 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1168) (-639 |#2|)) 37)) (-3997 (((-583 |#2|) |#2| (-1168)) 62)) (-1323 (((-3 |#2| "failed") |#2| (-1168)) 151)) (-2480 (((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1168) (-608 |#2|) (-639 (-608 |#2|))) 154)) (-4261 (((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1168) |#2|) 40)))
+(((-555 |#1| |#2|) (-10 -7 (-15 -4261 ((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1168) |#2|)) (-15 -2814 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1168) (-639 |#2|))) (-15 -1323 ((-3 |#2| "failed") |#2| (-1168))) (-15 -3997 ((-583 |#2|) |#2| (-1168))) (-15 -2480 ((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1168) (-608 |#2|) (-639 (-608 |#2|))))) (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -555))
+((-2480 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1168)) (-5 *6 (-639 (-608 *3))) (-5 *5 (-608 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *7))) (-4 *7 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-2 (|:| -2929 *3) (|:| |coeff| *3))) (-5 *1 (-555 *7 *3)))) (-3997 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-583 *3)) (-5 *1 (-555 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-1323 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-555 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))) (-2814 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-639 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-555 *6 *3)))) (-4261 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1168)) (-4 *5 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-2 (|:| -2929 *3) (|:| |coeff| *3))) (-5 *1 (-555 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
+(-10 -7 (-15 -4261 ((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1168) |#2|)) (-15 -2814 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1168) (-639 |#2|))) (-15 -1323 ((-3 |#2| "failed") |#2| (-1168))) (-15 -3997 ((-583 |#2|) |#2| (-1168))) (-15 -2480 ((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1168) (-608 |#2|) (-639 (-608 |#2|)))))
+((-3788 (((-417 |#1|) |#1|) 18)) (-1635 (((-417 |#1|) |#1|) 33)) (-2928 (((-3 |#1| "failed") |#1|) 44)) (-3308 (((-417 |#1|) |#1|) 51)))
+(((-556 |#1|) (-10 -7 (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3788 ((-417 |#1|) |#1|)) (-15 -3308 ((-417 |#1|) |#1|)) (-15 -2928 ((-3 |#1| "failed") |#1|))) (-544)) (T -556))
+((-2928 (*1 *2 *2) (|partial| -12 (-5 *1 (-556 *2)) (-4 *2 (-544)))) (-3308 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-556 *3)) (-4 *3 (-544)))) (-3788 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-556 *3)) (-4 *3 (-544)))) (-1635 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-556 *3)) (-4 *3 (-544)))))
+(-10 -7 (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3788 ((-417 |#1|) |#1|)) (-15 -3308 ((-417 |#1|) |#1|)) (-15 -2928 ((-3 |#1| "failed") |#1|)))
+((-4122 (($) 9)) (-1713 (((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 35)) (-1521 (((-639 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) $) 32)) (-1581 (($ (-2 (|:| -2319 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) 29)) (-1588 (($ (-639 (-2 (|:| -2319 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) 27)) (-2693 (((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 39)) (-2366 (((-639 (-2 (|:| -2319 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $) 37)) (-1294 (((-1261)) 12)))
+(((-557) (-10 -8 (-15 -4122 ($)) (-15 -1294 ((-1261))) (-15 -1521 ((-639 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) $)) (-15 -1588 ($ (-639 (-2 (|:| -2319 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))))) (-15 -1581 ($ (-2 (|:| -2319 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-15 -1713 ((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2366 ((-639 (-2 (|:| -2319 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $)) (-15 -2693 ((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))) (T -557))
+((-2693 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *1 (-557)))) (-2366 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| -2319 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-5 *1 (-557)))) (-1713 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))) (-5 *1 (-557)))) (-1581 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2319 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) (-5 *1 (-557)))) (-1588 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -2319 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-5 *1 (-557)))) (-1521 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-5 *1 (-557)))) (-1294 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-557)))) (-4122 (*1 *1) (-5 *1 (-557))))
+(-10 -8 (-15 -4122 ($)) (-15 -1294 ((-1261))) (-15 -1521 ((-639 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) $)) (-15 -1588 ($ (-639 (-2 (|:| -2319 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))))) (-15 -1581 ($ (-2 (|:| -2319 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))))))) (-15 -1713 ((-3 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) "failed") (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -2366 ((-639 (-2 (|:| -2319 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated"))))))) $)) (-15 -2693 ((-2 (|:| |endPointContinuity| (-3 (|:| |continuous| "Continuous at the end points") (|:| |lowerSingular| "There is a singularity at the lower end point") (|:| |upperSingular| "There is a singularity at the upper end point") (|:| |bothSingular| "There are singularities at both end points") (|:| |notEvaluated| "End point continuity not yet evaluated"))) (|:| |singularitiesStream| (-3 (|:| |str| (-1148 (-224))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2147 (-3 (|:| |finite| "The range is finite") (|:| |lowerInfinite| "The bottom of range is infinite") (|:| |upperInfinite| "The top of range is infinite") (|:| |bothInfinite| "Both top and bottom points are infinite") (|:| |notEvaluated| "Range not yet evaluated")))) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))
+((-1602 (((-1164 (-406 (-1164 |#2|))) |#2| (-608 |#2|) (-608 |#2|) (-1164 |#2|)) 32)) (-1426 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|))) 100) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|) |#2| (-1164 |#2|)) 110)) (-1341 (((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|))) 80) (((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) |#2| (-1164 |#2|)) 52)) (-1792 (((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2| (-608 |#2|) |#2| (-406 (-1164 |#2|))) 87) (((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2| |#2| (-1164 |#2|)) 109)) (-3419 (((-3 |#2| "failed") |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)) (-608 |#2|) |#2| (-406 (-1164 |#2|))) 105) (((-3 |#2| "failed") |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)) |#2| (-1164 |#2|)) 111)) (-2758 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4291 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|))) 128 (|has| |#3| (-650 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4291 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) |#2| (-1164 |#2|)) 127 (|has| |#3| (-650 |#2|)))) (-1389 ((|#2| (-1164 (-406 (-1164 |#2|))) (-608 |#2|) |#2|) 50)) (-1942 (((-1164 (-406 (-1164 |#2|))) (-1164 |#2|) (-608 |#2|)) 31)))
+(((-558 |#1| |#2| |#3|) (-10 -7 (-15 -1341 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) |#2| (-1164 |#2|))) (-15 -1341 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -1792 ((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2| |#2| (-1164 |#2|))) (-15 -1792 ((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2| (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -1426 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|) |#2| (-1164 |#2|))) (-15 -1426 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -3419 ((-3 |#2| "failed") |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)) |#2| (-1164 |#2|))) (-15 -3419 ((-3 |#2| "failed") |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)) (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -1602 ((-1164 (-406 (-1164 |#2|))) |#2| (-608 |#2|) (-608 |#2|) (-1164 |#2|))) (-15 -1389 (|#2| (-1164 (-406 (-1164 |#2|))) (-608 |#2|) |#2|)) (-15 -1942 ((-1164 (-406 (-1164 |#2|))) (-1164 |#2|) (-608 |#2|))) (IF (|has| |#3| (-650 |#2|)) (PROGN (-15 -2758 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4291 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) |#2| (-1164 |#2|))) (-15 -2758 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4291 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|))))) |%noBranch|)) (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))) (-13 (-429 |#1|) (-27) (-1192)) (-1092)) (T -558))
+((-2758 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-608 *4)) (-5 *6 (-406 (-1164 *4))) (-4 *4 (-13 (-429 *7) (-27) (-1192))) (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4)))) (-5 *1 (-558 *7 *4 *3)) (-4 *3 (-650 *4)) (-4 *3 (-1092)))) (-2758 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-608 *4)) (-5 *6 (-1164 *4)) (-4 *4 (-13 (-429 *7) (-27) (-1192))) (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4)))) (-5 *1 (-558 *7 *4 *3)) (-4 *3 (-650 *4)) (-4 *3 (-1092)))) (-1942 (*1 *2 *3 *4) (-12 (-5 *4 (-608 *6)) (-4 *6 (-13 (-429 *5) (-27) (-1192))) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-1164 (-406 (-1164 *6)))) (-5 *1 (-558 *5 *6 *7)) (-5 *3 (-1164 *6)) (-4 *7 (-1092)))) (-1389 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1164 (-406 (-1164 *2)))) (-5 *4 (-608 *2)) (-4 *2 (-13 (-429 *5) (-27) (-1192))) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *1 (-558 *5 *2 *6)) (-4 *6 (-1092)))) (-1602 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-608 *3)) (-4 *3 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-1164 (-406 (-1164 *3)))) (-5 *1 (-558 *6 *3 *7)) (-5 *5 (-1164 *3)) (-4 *7 (-1092)))) (-3419 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-608 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1168))) (-5 *5 (-406 (-1164 *2))) (-4 *2 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *1 (-558 *6 *2 *7)) (-4 *7 (-1092)))) (-3419 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-608 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1168))) (-5 *5 (-1164 *2)) (-4 *2 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *1 (-558 *6 *2 *7)) (-4 *7 (-1092)))) (-1426 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-639 *3)) (-5 *6 (-406 (-1164 *3))) (-4 *3 (-13 (-429 *7) (-27) (-1192))) (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-558 *7 *3 *8)) (-4 *8 (-1092)))) (-1426 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-639 *3)) (-5 *6 (-1164 *3)) (-4 *3 (-13 (-429 *7) (-27) (-1192))) (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-558 *7 *3 *8)) (-4 *8 (-1092)))) (-1792 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-406 (-1164 *3))) (-4 *3 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| -2929 *3) (|:| |coeff| *3))) (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092)))) (-1792 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-1164 *3)) (-4 *3 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| -2929 *3) (|:| |coeff| *3))) (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092)))) (-1341 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-608 *3)) (-5 *5 (-406 (-1164 *3))) (-4 *3 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-583 *3)) (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092)))) (-1341 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-608 *3)) (-5 *5 (-1164 *3)) (-4 *3 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-583 *3)) (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092)))))
+(-10 -7 (-15 -1341 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) |#2| (-1164 |#2|))) (-15 -1341 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -1792 ((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2| |#2| (-1164 |#2|))) (-15 -1792 ((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2| (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -1426 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|) |#2| (-1164 |#2|))) (-15 -1426 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -3419 ((-3 |#2| "failed") |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)) |#2| (-1164 |#2|))) (-15 -3419 ((-3 |#2| "failed") |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)) (-608 |#2|) |#2| (-406 (-1164 |#2|)))) (-15 -1602 ((-1164 (-406 (-1164 |#2|))) |#2| (-608 |#2|) (-608 |#2|) (-1164 |#2|))) (-15 -1389 (|#2| (-1164 (-406 (-1164 |#2|))) (-608 |#2|) |#2|)) (-15 -1942 ((-1164 (-406 (-1164 |#2|))) (-1164 |#2|) (-608 |#2|))) (IF (|has| |#3| (-650 |#2|)) (PROGN (-15 -2758 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4291 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) |#2| (-1164 |#2|))) (-15 -2758 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4291 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) (-608 |#2|) |#2| (-406 (-1164 |#2|))))) |%noBranch|))
+((-1557 (((-562) (-562) (-766)) 66)) (-4332 (((-562) (-562)) 65)) (-2482 (((-562) (-562)) 64)) (-1632 (((-562) (-562)) 69)) (-2996 (((-562) (-562) (-562)) 49)) (-2970 (((-562) (-562) (-562)) 46)) (-2458 (((-406 (-562)) (-562)) 20)) (-4349 (((-562) (-562)) 21)) (-2854 (((-562) (-562)) 58)) (-3795 (((-562) (-562)) 32)) (-2595 (((-639 (-562)) (-562)) 63)) (-3143 (((-562) (-562) (-562) (-562) (-562)) 44)) (-3443 (((-406 (-562)) (-562)) 41)))
+(((-559) (-10 -7 (-15 -3443 ((-406 (-562)) (-562))) (-15 -3143 ((-562) (-562) (-562) (-562) (-562))) (-15 -2595 ((-639 (-562)) (-562))) (-15 -3795 ((-562) (-562))) (-15 -2854 ((-562) (-562))) (-15 -4349 ((-562) (-562))) (-15 -2458 ((-406 (-562)) (-562))) (-15 -2970 ((-562) (-562) (-562))) (-15 -2996 ((-562) (-562) (-562))) (-15 -1632 ((-562) (-562))) (-15 -2482 ((-562) (-562))) (-15 -4332 ((-562) (-562))) (-15 -1557 ((-562) (-562) (-766))))) (T -559))
+((-1557 (*1 *2 *2 *3) (-12 (-5 *2 (-562)) (-5 *3 (-766)) (-5 *1 (-559)))) (-4332 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-2482 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-1632 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-2996 (*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-2970 (*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-2458 (*1 *2 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-559)) (-5 *3 (-562)))) (-4349 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-2854 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-3795 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-2595 (*1 *2 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-559)) (-5 *3 (-562)))) (-3143 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))) (-3443 (*1 *2 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-559)) (-5 *3 (-562)))))
+(-10 -7 (-15 -3443 ((-406 (-562)) (-562))) (-15 -3143 ((-562) (-562) (-562) (-562) (-562))) (-15 -2595 ((-639 (-562)) (-562))) (-15 -3795 ((-562) (-562))) (-15 -2854 ((-562) (-562))) (-15 -4349 ((-562) (-562))) (-15 -2458 ((-406 (-562)) (-562))) (-15 -2970 ((-562) (-562) (-562))) (-15 -2996 ((-562) (-562) (-562))) (-15 -1632 ((-562) (-562))) (-15 -2482 ((-562) (-562))) (-15 -4332 ((-562) (-562))) (-15 -1557 ((-562) (-562) (-766))))
+((-2015 (((-2 (|:| |answer| |#4|) (|:| -2312 |#4|)) |#4| (-1 |#2| |#2|)) 52)))
+(((-560 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2015 ((-2 (|:| |answer| |#4|) (|:| -2312 |#4|)) |#4| (-1 |#2| |#2|)))) (-362) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|)) (T -560))
+((-2015 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362)) (-4 *7 (-1232 (-406 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -2312 *3))) (-5 *1 (-560 *5 *6 *7 *3)) (-4 *3 (-341 *5 *6 *7)))))
+(-10 -7 (-15 -2015 ((-2 (|:| |answer| |#4|) (|:| -2312 |#4|)) |#4| (-1 |#2| |#2|))))
+((-2015 (((-2 (|:| |answer| (-406 |#2|)) (|:| -2312 (-406 |#2|)) (|:| |specpart| (-406 |#2|)) (|:| |polypart| |#2|)) (-406 |#2|) (-1 |#2| |#2|)) 18)))
+(((-561 |#1| |#2|) (-10 -7 (-15 -2015 ((-2 (|:| |answer| (-406 |#2|)) (|:| -2312 (-406 |#2|)) (|:| |specpart| (-406 |#2|)) (|:| |polypart| |#2|)) (-406 |#2|) (-1 |#2| |#2|)))) (-362) (-1232 |#1|)) (T -561))
+((-2015 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| |answer| (-406 *6)) (|:| -2312 (-406 *6)) (|:| |specpart| (-406 *6)) (|:| |polypart| *6))) (-5 *1 (-561 *5 *6)) (-5 *3 (-406 *6)))))
+(-10 -7 (-15 -2015 ((-2 (|:| |answer| (-406 |#2|)) (|:| -2312 (-406 |#2|)) (|:| |specpart| (-406 |#2|)) (|:| |polypart| |#2|)) (-406 |#2|) (-1 |#2| |#2|))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 25)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 88)) (-1965 (($ $) 89)) (-4102 (((-112) $) NIL)) (-3544 (($ $ $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-4158 (($ $ $ $) 43)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL)) (-3355 (($ $ $) 82)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL)) (-3960 (((-562) $) NIL)) (-1810 (($ $ $) 81)) (-3449 (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 62) (((-683 (-562)) (-683 $)) 58)) (-1694 (((-3 $ "failed") $) 85)) (-3913 (((-3 (-406 (-562)) "failed") $) NIL)) (-3498 (((-112) $) NIL)) (-3854 (((-406 (-562)) $) NIL)) (-1447 (($) 64) (($ $) 65)) (-1787 (($ $ $) 80)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2877 (($ $ $ $) NIL)) (-3867 (($ $ $) 55)) (-2696 (((-112) $) NIL)) (-1940 (($ $ $) NIL)) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL)) (-4367 (((-112) $) 26)) (-3152 (((-112) $) 75)) (-3828 (((-3 $ "failed") $) NIL)) (-3855 (((-112) $) 35)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2051 (($ $ $ $) 44)) (-1551 (($ $ $) 77)) (-2993 (($ $ $) 76)) (-3930 (($ $) NIL)) (-3641 (($ $) 41)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) 54)) (-2296 (($ $ $) NIL)) (-3730 (($) NIL T CONST)) (-4137 (($ $) 31)) (-1709 (((-1112) $) 34)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 119)) (-1606 (($ $ $) 86) (($ (-639 $)) NIL)) (-3350 (($ $) NIL)) (-1635 (((-417 $) $) 105)) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL)) (-1762 (((-3 $ "failed") $ $) 84)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2438 (((-112) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 79)) (-4029 (($ $ (-766)) NIL) (($ $) NIL)) (-2369 (($ $) 32)) (-4220 (($ $) 30)) (-4208 (((-562) $) 40) (((-535) $) 52) (((-887 (-562)) $) NIL) (((-378) $) 47) (((-224) $) 49) (((-1150) $) 53)) (-4053 (((-857) $) 38) (($ (-562)) 39) (($ $) NIL) (($ (-562)) 39)) (-1568 (((-766)) NIL)) (-3869 (((-112) $ $) NIL)) (-2068 (($ $ $) NIL)) (-3240 (($) 29)) (-3799 (((-112) $ $) NIL)) (-3160 (($ $ $ $) 42)) (-2757 (($ $) 63)) (-2285 (($) 27 T CONST)) (-2294 (($) 28 T CONST)) (-2332 (((-1150) $) 20) (((-1150) $ (-112)) 22) (((-1261) (-817) $) 23) (((-1261) (-817) $ (-112)) 24)) (-3113 (($ $ (-766)) NIL) (($ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 66)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 67)) (-1847 (($ $) 68) (($ $ $) 70)) (-1836 (($ $ $) 69)) (** (($ $ (-916)) NIL) (($ $ (-766)) 74)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 72) (($ $ $) 71)))
+(((-562) (-13 (-544) (-610 (-1150)) (-823) (-10 -8 (-15 -1447 ($ $)) (-6 -4390) (-6 -4395) (-6 -4391) (-6 -4385)))) (T -562))
+((-1447 (*1 *1 *1) (-5 *1 (-562))))
+(-13 (-544) (-610 (-1150)) (-823) (-10 -8 (-15 -1447 ($ $)) (-6 -4390) (-6 -4395) (-6 -4391) (-6 -4385)))
+((-1806 (((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))) (-764) (-1056)) 108) (((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))) (-764)) 110)) (-3081 (((-3 (-1030) "failed") (-315 (-378)) (-1084 (-838 (-378))) (-1168)) 172) (((-3 (-1030) "failed") (-315 (-378)) (-1084 (-838 (-378))) (-1150)) 171) (((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378) (-378) (-1056)) 176) (((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378) (-378)) 177) (((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378)) 178) (((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378))))) 179) (((-1030) (-315 (-378)) (-1086 (-838 (-378)))) 167) (((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378)) 166) (((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378) (-378)) 162) (((-1030) (-764)) 155) (((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378) (-378) (-1056)) 161)))
+(((-563) (-10 -7 (-15 -3081 ((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378) (-378) (-1056))) (-15 -3081 ((-1030) (-764))) (-15 -3081 ((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378) (-378))) (-15 -3081 ((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378))) (-15 -3081 ((-1030) (-315 (-378)) (-1086 (-838 (-378))))) (-15 -3081 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))))) (-15 -3081 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378))) (-15 -3081 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378) (-378))) (-15 -3081 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378) (-378) (-1056))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))) (-764))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))) (-764) (-1056))) (-15 -3081 ((-3 (-1030) "failed") (-315 (-378)) (-1084 (-838 (-378))) (-1150))) (-15 -3081 ((-3 (-1030) "failed") (-315 (-378)) (-1084 (-838 (-378))) (-1168))))) (T -563))
+((-3081 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-315 (-378))) (-5 *4 (-1084 (-838 (-378)))) (-5 *5 (-1168)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-3081 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-315 (-378))) (-5 *4 (-1084 (-838 (-378)))) (-5 *5 (-1150)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-1806 (*1 *2 *3 *4) (-12 (-5 *3 (-764)) (-5 *4 (-1056)) (-5 *2 (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030)))) (-5 *1 (-563)))) (-1806 (*1 *2 *3) (-12 (-5 *3 (-764)) (-5 *2 (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030)))) (-5 *1 (-563)))) (-3081 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378))))) (-5 *5 (-378)) (-5 *6 (-1056)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-3081 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378))))) (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-3081 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378))))) (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-3081 (*1 *2 *3 *4) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378))))) (-5 *2 (-1030)) (-5 *1 (-563)))) (-3081 (*1 *2 *3 *4) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378)))) (-5 *2 (-1030)) (-5 *1 (-563)))) (-3081 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378)))) (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-3081 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378)))) (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-3081 (*1 *2 *3) (-12 (-5 *3 (-764)) (-5 *2 (-1030)) (-5 *1 (-563)))) (-3081 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378)))) (-5 *5 (-378)) (-5 *6 (-1056)) (-5 *2 (-1030)) (-5 *1 (-563)))))
+(-10 -7 (-15 -3081 ((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378) (-378) (-1056))) (-15 -3081 ((-1030) (-764))) (-15 -3081 ((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378) (-378))) (-15 -3081 ((-1030) (-315 (-378)) (-1086 (-838 (-378))) (-378))) (-15 -3081 ((-1030) (-315 (-378)) (-1086 (-838 (-378))))) (-15 -3081 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))))) (-15 -3081 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378))) (-15 -3081 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378) (-378))) (-15 -3081 ((-1030) (-315 (-378)) (-639 (-1086 (-838 (-378)))) (-378) (-378) (-1056))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))) (-764))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))) (-764) (-1056))) (-15 -3081 ((-3 (-1030) "failed") (-315 (-378)) (-1084 (-838 (-378))) (-1150))) (-15 -3081 ((-3 (-1030) "failed") (-315 (-378)) (-1084 (-838 (-378))) (-1168))))
+((-1383 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|)) 183)) (-2340 (((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|)) 98)) (-2133 (((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2|) 179)) (-3458 (((-3 |#2| "failed") |#2| |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168))) 188)) (-3335 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4291 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) (-1168)) 196 (|has| |#3| (-650 |#2|)))))
+(((-564 |#1| |#2| |#3|) (-10 -7 (-15 -2340 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|))) (-15 -2133 ((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2|)) (-15 -1383 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|))) (-15 -3458 ((-3 |#2| "failed") |#2| |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)))) (IF (|has| |#3| (-650 |#2|)) (-15 -3335 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4291 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) (-1168))) |%noBranch|)) (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))) (-13 (-429 |#1|) (-27) (-1192)) (-1092)) (T -564))
+((-3335 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-608 *4)) (-5 *6 (-1168)) (-4 *4 (-13 (-429 *7) (-27) (-1192))) (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4)))) (-5 *1 (-564 *7 *4 *3)) (-4 *3 (-650 *4)) (-4 *3 (-1092)))) (-3458 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-608 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1168))) (-4 *2 (-13 (-429 *5) (-27) (-1192))) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *1 (-564 *5 *2 *6)) (-4 *6 (-1092)))) (-1383 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-639 *3)) (-4 *3 (-13 (-429 *6) (-27) (-1192))) (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-564 *6 *3 *7)) (-4 *7 (-1092)))) (-2133 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-608 *3)) (-4 *3 (-13 (-429 *5) (-27) (-1192))) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-2 (|:| -2929 *3) (|:| |coeff| *3))) (-5 *1 (-564 *5 *3 *6)) (-4 *6 (-1092)))) (-2340 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-608 *3)) (-4 *3 (-13 (-429 *5) (-27) (-1192))) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562)))) (-5 *2 (-583 *3)) (-5 *1 (-564 *5 *3 *6)) (-4 *6 (-1092)))))
+(-10 -7 (-15 -2340 ((-583 |#2|) |#2| (-608 |#2|) (-608 |#2|))) (-15 -2133 ((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-608 |#2|) (-608 |#2|) |#2|)) (-15 -1383 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-608 |#2|) (-608 |#2|) (-639 |#2|))) (-15 -3458 ((-3 |#2| "failed") |#2| |#2| |#2| (-608 |#2|) (-608 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1168)))) (IF (|has| |#3| (-650 |#2|)) (-15 -3335 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -4291 (-639 |#2|))) |#3| |#2| (-608 |#2|) (-608 |#2|) (-1168))) |%noBranch|))
+((-3951 (((-2 (|:| -3542 |#2|) (|:| |nconst| |#2|)) |#2| (-1168)) 63)) (-1321 (((-3 |#2| "failed") |#2| (-1168) (-838 |#2|) (-838 |#2|)) 163 (-12 (|has| |#2| (-1131)) (|has| |#1| (-610 (-887 (-562)))) (|has| |#1| (-881 (-562))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168)) 146 (-12 (|has| |#2| (-625)) (|has| |#1| (-610 (-887 (-562)))) (|has| |#1| (-881 (-562)))))) (-3701 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168)) 147 (-12 (|has| |#2| (-625)) (|has| |#1| (-610 (-887 (-562)))) (|has| |#1| (-881 (-562)))))))
+(((-565 |#1| |#2|) (-10 -7 (-15 -3951 ((-2 (|:| -3542 |#2|) (|:| |nconst| |#2|)) |#2| (-1168))) (IF (|has| |#1| (-610 (-887 (-562)))) (IF (|has| |#1| (-881 (-562))) (PROGN (IF (|has| |#2| (-625)) (PROGN (-15 -3701 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168))) (-15 -1321 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168)))) |%noBranch|) (IF (|has| |#2| (-1131)) (-15 -1321 ((-3 |#2| "failed") |#2| (-1168) (-838 |#2|) (-838 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-845) (-1033 (-562)) (-451) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -565))
+((-1321 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1168)) (-5 *4 (-838 *2)) (-4 *2 (-1131)) (-4 *2 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-610 (-887 (-562)))) (-4 *5 (-881 (-562))) (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562)))) (-5 *1 (-565 *5 *2)))) (-1321 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1168)) (-4 *5 (-610 (-887 (-562)))) (-4 *5 (-881 (-562))) (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-565 *5 *3)) (-4 *3 (-625)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-3701 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1168)) (-4 *5 (-610 (-887 (-562)))) (-4 *5 (-881 (-562))) (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-565 *5 *3)) (-4 *3 (-625)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-3951 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562)))) (-5 *2 (-2 (|:| -3542 *3) (|:| |nconst| *3))) (-5 *1 (-565 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
+(-10 -7 (-15 -3951 ((-2 (|:| -3542 |#2|) (|:| |nconst| |#2|)) |#2| (-1168))) (IF (|has| |#1| (-610 (-887 (-562)))) (IF (|has| |#1| (-881 (-562))) (PROGN (IF (|has| |#2| (-625)) (PROGN (-15 -3701 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168))) (-15 -1321 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168)))) |%noBranch|) (IF (|has| |#2| (-1131)) (-15 -1321 ((-3 |#2| "failed") |#2| (-1168) (-838 |#2|) (-838 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-3197 (((-3 (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|)))))) "failed") (-406 |#2|) (-639 (-406 |#2|))) 41)) (-3081 (((-583 (-406 |#2|)) (-406 |#2|)) 28)) (-3129 (((-3 (-406 |#2|) "failed") (-406 |#2|)) 17)) (-3759 (((-3 (-2 (|:| -2929 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-406 |#2|)) 48)))
+(((-566 |#1| |#2|) (-10 -7 (-15 -3081 ((-583 (-406 |#2|)) (-406 |#2|))) (-15 -3129 ((-3 (-406 |#2|) "failed") (-406 |#2|))) (-15 -3759 ((-3 (-2 (|:| -2929 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-406 |#2|))) (-15 -3197 ((-3 (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|)))))) "failed") (-406 |#2|) (-639 (-406 |#2|))))) (-13 (-362) (-146) (-1033 (-562))) (-1232 |#1|)) (T -566))
+((-3197 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-639 (-406 *6))) (-5 *3 (-406 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-566 *5 *6)))) (-3759 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-362) (-146) (-1033 (-562)))) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| -2929 (-406 *5)) (|:| |coeff| (-406 *5)))) (-5 *1 (-566 *4 *5)) (-5 *3 (-406 *5)))) (-3129 (*1 *2 *2) (|partial| -12 (-5 *2 (-406 *4)) (-4 *4 (-1232 *3)) (-4 *3 (-13 (-362) (-146) (-1033 (-562)))) (-5 *1 (-566 *3 *4)))) (-3081 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-562)))) (-4 *5 (-1232 *4)) (-5 *2 (-583 (-406 *5))) (-5 *1 (-566 *4 *5)) (-5 *3 (-406 *5)))))
+(-10 -7 (-15 -3081 ((-583 (-406 |#2|)) (-406 |#2|))) (-15 -3129 ((-3 (-406 |#2|) "failed") (-406 |#2|))) (-15 -3759 ((-3 (-2 (|:| -2929 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-406 |#2|))) (-15 -3197 ((-3 (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|)))))) "failed") (-406 |#2|) (-639 (-406 |#2|)))))
+((-4178 (((-3 (-562) "failed") |#1|) 14)) (-3693 (((-112) |#1|) 13)) (-1757 (((-562) |#1|) 9)))
+(((-567 |#1|) (-10 -7 (-15 -1757 ((-562) |#1|)) (-15 -3693 ((-112) |#1|)) (-15 -4178 ((-3 (-562) "failed") |#1|))) (-1033 (-562))) (T -567))
+((-4178 (*1 *2 *3) (|partial| -12 (-5 *2 (-562)) (-5 *1 (-567 *3)) (-4 *3 (-1033 *2)))) (-3693 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-567 *3)) (-4 *3 (-1033 (-562))))) (-1757 (*1 *2 *3) (-12 (-5 *2 (-562)) (-5 *1 (-567 *3)) (-4 *3 (-1033 *2)))))
+(-10 -7 (-15 -1757 ((-562) |#1|)) (-15 -3693 ((-112) |#1|)) (-15 -4178 ((-3 (-562) "failed") |#1|)))
+((-2790 (((-3 (-2 (|:| |mainpart| (-406 (-947 |#1|))) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 (-947 |#1|))) (|:| |logand| (-406 (-947 |#1|))))))) "failed") (-406 (-947 |#1|)) (-1168) (-639 (-406 (-947 |#1|)))) 48)) (-2710 (((-583 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-1168)) 28)) (-2384 (((-3 (-406 (-947 |#1|)) "failed") (-406 (-947 |#1|)) (-1168)) 23)) (-1824 (((-3 (-2 (|:| -2929 (-406 (-947 |#1|))) (|:| |coeff| (-406 (-947 |#1|)))) "failed") (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|))) 35)))
+(((-568 |#1|) (-10 -7 (-15 -2710 ((-583 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-1168))) (-15 -2384 ((-3 (-406 (-947 |#1|)) "failed") (-406 (-947 |#1|)) (-1168))) (-15 -2790 ((-3 (-2 (|:| |mainpart| (-406 (-947 |#1|))) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 (-947 |#1|))) (|:| |logand| (-406 (-947 |#1|))))))) "failed") (-406 (-947 |#1|)) (-1168) (-639 (-406 (-947 |#1|))))) (-15 -1824 ((-3 (-2 (|:| -2929 (-406 (-947 |#1|))) (|:| |coeff| (-406 (-947 |#1|)))) "failed") (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|))))) (-13 (-554) (-1033 (-562)) (-146))) (T -568))
+((-1824 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1168)) (-4 *5 (-13 (-554) (-1033 (-562)) (-146))) (-5 *2 (-2 (|:| -2929 (-406 (-947 *5))) (|:| |coeff| (-406 (-947 *5))))) (-5 *1 (-568 *5)) (-5 *3 (-406 (-947 *5))))) (-2790 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-639 (-406 (-947 *6)))) (-5 *3 (-406 (-947 *6))) (-4 *6 (-13 (-554) (-1033 (-562)) (-146))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-568 *6)))) (-2384 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-406 (-947 *4))) (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-1033 (-562)) (-146))) (-5 *1 (-568 *4)))) (-2710 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-554) (-1033 (-562)) (-146))) (-5 *2 (-583 (-406 (-947 *5)))) (-5 *1 (-568 *5)) (-5 *3 (-406 (-947 *5))))))
+(-10 -7 (-15 -2710 ((-583 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-1168))) (-15 -2384 ((-3 (-406 (-947 |#1|)) "failed") (-406 (-947 |#1|)) (-1168))) (-15 -2790 ((-3 (-2 (|:| |mainpart| (-406 (-947 |#1|))) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 (-947 |#1|))) (|:| |logand| (-406 (-947 |#1|))))))) "failed") (-406 (-947 |#1|)) (-1168) (-639 (-406 (-947 |#1|))))) (-15 -1824 ((-3 (-2 (|:| -2929 (-406 (-947 |#1|))) (|:| |coeff| (-406 (-947 |#1|)))) "failed") (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|)))))
+((-4041 (((-112) $ $) 58)) (-4325 (((-112) $) 36)) (-3697 ((|#1| $) 30)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) 62)) (-2987 (($ $) 122)) (-4098 (($ $) 102)) (-1593 ((|#1| $) 28)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1644 (($ $) NIL)) (-4206 (($ $) 124)) (-4074 (($ $) 98)) (-3013 (($ $) 126)) (-4120 (($ $) 106)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) 77)) (-3960 (((-562) $) 79)) (-1694 (((-3 $ "failed") $) 61)) (-3479 (($ |#1| |#1|) 26)) (-2696 (((-112) $) 33)) (-4100 (($) 88)) (-4367 (((-112) $) 43)) (-1895 (($ $ (-562)) NIL)) (-3855 (((-112) $) 34)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4366 (($ $) 90)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-3203 (($ |#1| |#1|) 20) (($ |#1|) 25) (($ (-406 (-562))) 76)) (-1693 ((|#1| $) 27)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) 64) (($ (-639 $)) NIL)) (-1762 (((-3 $ "failed") $ $) 63)) (-3430 (($ $) 92)) (-3022 (($ $) 130)) (-4130 (($ $) 104)) (-3000 (($ $) 132)) (-4108 (($ $) 108)) (-2977 (($ $) 128)) (-4087 (($ $) 100)) (-4251 (((-112) $ |#1|) 31)) (-4053 (((-857) $) 84) (($ (-562)) 66) (($ $) NIL) (($ (-562)) 66)) (-1568 (((-766)) 86)) (-3054 (($ $) 144)) (-4165 (($ $) 114)) (-3799 (((-112) $ $) NIL)) (-3033 (($ $) 142)) (-4139 (($ $) 110)) (-3077 (($ $) 140)) (-4183 (($ $) 120)) (-1567 (($ $) 138)) (-4195 (($ $) 118)) (-3065 (($ $) 136)) (-4175 (($ $) 116)) (-3040 (($ $) 134)) (-4151 (($ $) 112)) (-2285 (($) 21 T CONST)) (-2294 (($) 10 T CONST)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 37)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 35)) (-1847 (($ $) 41) (($ $ $) 42)) (-1836 (($ $ $) 40)) (** (($ $ (-916)) 54) (($ $ (-766)) NIL) (($ $ $) 94) (($ $ (-406 (-562))) 146)) (* (($ (-916) $) 51) (($ (-766) $) NIL) (($ (-562) $) 50) (($ $ $) 48)))
(((-569 |#1|) (-552 |#1|) (-13 (-403) (-1192))) (T -569))
NIL
(-552 |#1|)
-((-4150 (((-3 (-639 (-1164 (-562))) "failed") (-639 (-1164 (-562))) (-1164 (-562))) 24)))
-(((-570) (-10 -7 (-15 -4150 ((-3 (-639 (-1164 (-562))) "failed") (-639 (-1164 (-562))) (-1164 (-562)))))) (T -570))
-((-4150 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-1164 (-562)))) (-5 *3 (-1164 (-562))) (-5 *1 (-570)))))
-(-10 -7 (-15 -4150 ((-3 (-639 (-1164 (-562))) "failed") (-639 (-1164 (-562))) (-1164 (-562)))))
-((-1491 (((-639 (-608 |#2|)) (-639 (-608 |#2|)) (-1168)) 19)) (-3972 (((-639 (-608 |#2|)) (-639 |#2|) (-1168)) 23)) (-2494 (((-639 (-608 |#2|)) (-639 (-608 |#2|)) (-639 (-608 |#2|))) 11)) (-4257 ((|#2| |#2| (-1168)) 53 (|has| |#1| (-554)))) (-4015 ((|#2| |#2| (-1168)) 77 (-12 (|has| |#2| (-283)) (|has| |#1| (-451))))) (-2313 (((-608 |#2|) (-608 |#2|) (-639 (-608 |#2|)) (-1168)) 25)) (-2416 (((-608 |#2|) (-639 (-608 |#2|))) 24)) (-1387 (((-583 |#2|) |#2| (-1168) (-1 (-583 |#2|) |#2| (-1168)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168))) 101 (-12 (|has| |#2| (-283)) (|has| |#2| (-625)) (|has| |#2| (-1033 (-1168))) (|has| |#1| (-610 (-887 (-562)))) (|has| |#1| (-451)) (|has| |#1| (-881 (-562)))))))
-(((-571 |#1| |#2|) (-10 -7 (-15 -1491 ((-639 (-608 |#2|)) (-639 (-608 |#2|)) (-1168))) (-15 -2416 ((-608 |#2|) (-639 (-608 |#2|)))) (-15 -2313 ((-608 |#2|) (-608 |#2|) (-639 (-608 |#2|)) (-1168))) (-15 -2494 ((-639 (-608 |#2|)) (-639 (-608 |#2|)) (-639 (-608 |#2|)))) (-15 -3972 ((-639 (-608 |#2|)) (-639 |#2|) (-1168))) (IF (|has| |#1| (-554)) (-15 -4257 (|#2| |#2| (-1168))) |%noBranch|) (IF (|has| |#1| (-451)) (IF (|has| |#2| (-283)) (PROGN (-15 -4015 (|#2| |#2| (-1168))) (IF (|has| |#1| (-610 (-887 (-562)))) (IF (|has| |#1| (-881 (-562))) (IF (|has| |#2| (-625)) (IF (|has| |#2| (-1033 (-1168))) (-15 -1387 ((-583 |#2|) |#2| (-1168) (-1 (-583 |#2|) |#2| (-1168)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-845) (-429 |#1|)) (T -571))
-((-1387 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-583 *3) *3 (-1168))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1168))) (-4 *3 (-283)) (-4 *3 (-625)) (-4 *3 (-1033 *4)) (-4 *3 (-429 *7)) (-5 *4 (-1168)) (-4 *7 (-610 (-887 (-562)))) (-4 *7 (-451)) (-4 *7 (-881 (-562))) (-4 *7 (-845)) (-5 *2 (-583 *3)) (-5 *1 (-571 *7 *3)))) (-4015 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-451)) (-4 *4 (-845)) (-5 *1 (-571 *4 *2)) (-4 *2 (-283)) (-4 *2 (-429 *4)))) (-4257 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-554)) (-4 *4 (-845)) (-5 *1 (-571 *4 *2)) (-4 *2 (-429 *4)))) (-3972 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *6)) (-5 *4 (-1168)) (-4 *6 (-429 *5)) (-4 *5 (-845)) (-5 *2 (-639 (-608 *6))) (-5 *1 (-571 *5 *6)))) (-2494 (*1 *2 *2 *2) (-12 (-5 *2 (-639 (-608 *4))) (-4 *4 (-429 *3)) (-4 *3 (-845)) (-5 *1 (-571 *3 *4)))) (-2313 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-639 (-608 *6))) (-5 *4 (-1168)) (-5 *2 (-608 *6)) (-4 *6 (-429 *5)) (-4 *5 (-845)) (-5 *1 (-571 *5 *6)))) (-2416 (*1 *2 *3) (-12 (-5 *3 (-639 (-608 *5))) (-4 *4 (-845)) (-5 *2 (-608 *5)) (-5 *1 (-571 *4 *5)) (-4 *5 (-429 *4)))) (-1491 (*1 *2 *2 *3) (-12 (-5 *2 (-639 (-608 *5))) (-5 *3 (-1168)) (-4 *5 (-429 *4)) (-4 *4 (-845)) (-5 *1 (-571 *4 *5)))))
-(-10 -7 (-15 -1491 ((-639 (-608 |#2|)) (-639 (-608 |#2|)) (-1168))) (-15 -2416 ((-608 |#2|) (-639 (-608 |#2|)))) (-15 -2313 ((-608 |#2|) (-608 |#2|) (-639 (-608 |#2|)) (-1168))) (-15 -2494 ((-639 (-608 |#2|)) (-639 (-608 |#2|)) (-639 (-608 |#2|)))) (-15 -3972 ((-639 (-608 |#2|)) (-639 |#2|) (-1168))) (IF (|has| |#1| (-554)) (-15 -4257 (|#2| |#2| (-1168))) |%noBranch|) (IF (|has| |#1| (-451)) (IF (|has| |#2| (-283)) (PROGN (-15 -4015 (|#2| |#2| (-1168))) (IF (|has| |#1| (-610 (-887 (-562)))) (IF (|has| |#1| (-881 (-562))) (IF (|has| |#2| (-625)) (IF (|has| |#2| (-1033 (-1168))) (-15 -1387 ((-583 |#2|) |#2| (-1168) (-1 (-583 |#2|) |#2| (-1168)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-2858 (((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-639 |#1|) "failed") (-562) |#1| |#1|)) 172)) (-2143 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|))))))) (|:| |a0| |#1|)) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-639 (-406 |#2|))) 148)) (-3278 (((-3 (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|)))))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-639 (-406 |#2|))) 145)) (-2953 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 133)) (-2589 (((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 158)) (-2465 (((-3 (-2 (|:| -3860 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-406 |#2|)) 175)) (-1637 (((-3 (-2 (|:| |answer| (-406 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3860 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-406 |#2|)) 178)) (-1314 (((-2 (|:| |ir| (-583 (-406 |#2|))) (|:| |specpart| (-406 |#2|)) (|:| |polypart| |#2|)) (-406 |#2|) (-1 |#2| |#2|)) 84)) (-4032 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 90)) (-3812 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|))))))) (|:| |a0| |#1|)) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1602 |#1|) (|:| |sol?| (-112))) (-562) |#1|) (-639 (-406 |#2|))) 152)) (-2771 (((-3 (-619 |#1| |#2|) "failed") (-619 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1602 |#1|) (|:| |sol?| (-112))) (-562) |#1|)) 137)) (-4213 (((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1602 |#1|) (|:| |sol?| (-112))) (-562) |#1|)) 162)) (-3338 (((-3 (-2 (|:| |answer| (-406 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3860 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1602 |#1|) (|:| |sol?| (-112))) (-562) |#1|) (-406 |#2|)) 183)))
-(((-572 |#1| |#2|) (-10 -7 (-15 -2589 ((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -4213 ((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1602 |#1|) (|:| |sol?| (-112))) (-562) |#1|))) (-15 -2858 ((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-639 |#1|) "failed") (-562) |#1| |#1|))) (-15 -1637 ((-3 (-2 (|:| |answer| (-406 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3860 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-406 |#2|))) (-15 -3338 ((-3 (-2 (|:| |answer| (-406 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3860 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1602 |#1|) (|:| |sol?| (-112))) (-562) |#1|) (-406 |#2|))) (-15 -2143 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|))))))) (|:| |a0| |#1|)) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-639 (-406 |#2|)))) (-15 -3812 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|))))))) (|:| |a0| |#1|)) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1602 |#1|) (|:| |sol?| (-112))) (-562) |#1|) (-639 (-406 |#2|)))) (-15 -2465 ((-3 (-2 (|:| -3860 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-406 |#2|))) (-15 -3278 ((-3 (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|)))))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-639 (-406 |#2|)))) (-15 -2953 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2771 ((-3 (-619 |#1| |#2|) "failed") (-619 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1602 |#1|) (|:| |sol?| (-112))) (-562) |#1|))) (-15 -1314 ((-2 (|:| |ir| (-583 (-406 |#2|))) (|:| |specpart| (-406 |#2|)) (|:| |polypart| |#2|)) (-406 |#2|) (-1 |#2| |#2|))) (-15 -4032 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-362) (-1232 |#1|)) (T -572))
-((-4032 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-572 *5 *3)))) (-1314 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| |ir| (-583 (-406 *6))) (|:| |specpart| (-406 *6)) (|:| |polypart| *6))) (-5 *1 (-572 *5 *6)) (-5 *3 (-406 *6)))) (-2771 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-619 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -1602 *4) (|:| |sol?| (-112))) (-562) *4)) (-4 *4 (-362)) (-4 *5 (-1232 *4)) (-5 *1 (-572 *4 *5)))) (-2953 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -3860 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-362)) (-5 *1 (-572 *4 *2)) (-4 *2 (-1232 *4)))) (-3278 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-639 (-406 *7))) (-4 *7 (-1232 *6)) (-5 *3 (-406 *7)) (-4 *6 (-362)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-572 *6 *7)))) (-2465 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| -3860 (-406 *6)) (|:| |coeff| (-406 *6)))) (-5 *1 (-572 *5 *6)) (-5 *3 (-406 *6)))) (-3812 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -1602 *7) (|:| |sol?| (-112))) (-562) *7)) (-5 *6 (-639 (-406 *8))) (-4 *7 (-362)) (-4 *8 (-1232 *7)) (-5 *3 (-406 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-572 *7 *8)))) (-2143 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -3860 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-639 (-406 *8))) (-4 *7 (-362)) (-4 *8 (-1232 *7)) (-5 *3 (-406 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-572 *7 *8)))) (-3338 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -1602 *6) (|:| |sol?| (-112))) (-562) *6)) (-4 *6 (-362)) (-4 *7 (-1232 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-406 *7)) (|:| |a0| *6)) (-2 (|:| -3860 (-406 *7)) (|:| |coeff| (-406 *7))) "failed")) (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))) (-1637 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -3860 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-362)) (-4 *7 (-1232 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-406 *7)) (|:| |a0| *6)) (-2 (|:| -3860 (-406 *7)) (|:| |coeff| (-406 *7))) "failed")) (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))) (-2858 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-639 *6) "failed") (-562) *6 *6)) (-4 *6 (-362)) (-4 *7 (-1232 *6)) (-5 *2 (-2 (|:| |answer| (-583 (-406 *7))) (|:| |a0| *6))) (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))) (-4213 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -1602 *6) (|:| |sol?| (-112))) (-562) *6)) (-4 *6 (-362)) (-4 *7 (-1232 *6)) (-5 *2 (-2 (|:| |answer| (-583 (-406 *7))) (|:| |a0| *6))) (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))) (-2589 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -3860 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-362)) (-4 *7 (-1232 *6)) (-5 *2 (-2 (|:| |answer| (-583 (-406 *7))) (|:| |a0| *6))) (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))))
-(-10 -7 (-15 -2589 ((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -4213 ((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1602 |#1|) (|:| |sol?| (-112))) (-562) |#1|))) (-15 -2858 ((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-639 |#1|) "failed") (-562) |#1| |#1|))) (-15 -1637 ((-3 (-2 (|:| |answer| (-406 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3860 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-406 |#2|))) (-15 -3338 ((-3 (-2 (|:| |answer| (-406 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -3860 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1602 |#1|) (|:| |sol?| (-112))) (-562) |#1|) (-406 |#2|))) (-15 -2143 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|))))))) (|:| |a0| |#1|)) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-639 (-406 |#2|)))) (-15 -3812 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|))))))) (|:| |a0| |#1|)) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1602 |#1|) (|:| |sol?| (-112))) (-562) |#1|) (-639 (-406 |#2|)))) (-15 -2465 ((-3 (-2 (|:| -3860 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-406 |#2|))) (-15 -3278 ((-3 (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|)))))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-639 (-406 |#2|)))) (-15 -2953 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2771 ((-3 (-619 |#1| |#2|) "failed") (-619 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1602 |#1|) (|:| |sol?| (-112))) (-562) |#1|))) (-15 -1314 ((-2 (|:| |ir| (-583 (-406 |#2|))) (|:| |specpart| (-406 |#2|)) (|:| |polypart| |#2|)) (-406 |#2|) (-1 |#2| |#2|))) (-15 -4032 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
-((-2495 (((-3 |#2| "failed") |#2| (-1168) (-1168)) 10)))
-(((-573 |#1| |#2|) (-10 -7 (-15 -2495 ((-3 |#2| "failed") |#2| (-1168) (-1168)))) (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-954) (-1131) (-29 |#1|))) (T -573))
-((-2495 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1168)) (-4 *4 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-573 *4 *2)) (-4 *2 (-13 (-1192) (-954) (-1131) (-29 *4))))))
-(-10 -7 (-15 -2495 ((-3 |#2| "failed") |#2| (-1168) (-1168))))
-((-2475 (((-685 (-1214)) $ (-1214)) 26)) (-3202 (((-685 (-547)) $ (-547)) 25)) (-3787 (((-766) $ (-128)) 27)) (-3966 (((-685 (-129)) $ (-129)) 24)) (-3691 (((-685 (-1214)) $) 12)) (-3192 (((-685 (-1213)) $) 8)) (-3661 (((-685 (-1212)) $) 10)) (-1735 (((-685 (-547)) $) 13)) (-1890 (((-685 (-546)) $) 9)) (-2242 (((-685 (-545)) $) 11)) (-1477 (((-766) $ (-128)) 7)) (-1850 (((-685 (-129)) $) 14)) (-3948 (($ $) 6)))
+((-2654 (((-3 (-639 (-1164 (-562))) "failed") (-639 (-1164 (-562))) (-1164 (-562))) 24)))
+(((-570) (-10 -7 (-15 -2654 ((-3 (-639 (-1164 (-562))) "failed") (-639 (-1164 (-562))) (-1164 (-562)))))) (T -570))
+((-2654 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-1164 (-562)))) (-5 *3 (-1164 (-562))) (-5 *1 (-570)))))
+(-10 -7 (-15 -2654 ((-3 (-639 (-1164 (-562))) "failed") (-639 (-1164 (-562))) (-1164 (-562)))))
+((-2527 (((-639 (-608 |#2|)) (-639 (-608 |#2|)) (-1168)) 19)) (-1643 (((-639 (-608 |#2|)) (-639 |#2|) (-1168)) 23)) (-2492 (((-639 (-608 |#2|)) (-639 (-608 |#2|)) (-639 (-608 |#2|))) 11)) (-2387 ((|#2| |#2| (-1168)) 53 (|has| |#1| (-554)))) (-3881 ((|#2| |#2| (-1168)) 77 (-12 (|has| |#2| (-283)) (|has| |#1| (-451))))) (-3763 (((-608 |#2|) (-608 |#2|) (-639 (-608 |#2|)) (-1168)) 25)) (-2411 (((-608 |#2|) (-639 (-608 |#2|))) 24)) (-3258 (((-583 |#2|) |#2| (-1168) (-1 (-583 |#2|) |#2| (-1168)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168))) 101 (-12 (|has| |#2| (-283)) (|has| |#2| (-625)) (|has| |#2| (-1033 (-1168))) (|has| |#1| (-610 (-887 (-562)))) (|has| |#1| (-451)) (|has| |#1| (-881 (-562)))))))
+(((-571 |#1| |#2|) (-10 -7 (-15 -2527 ((-639 (-608 |#2|)) (-639 (-608 |#2|)) (-1168))) (-15 -2411 ((-608 |#2|) (-639 (-608 |#2|)))) (-15 -3763 ((-608 |#2|) (-608 |#2|) (-639 (-608 |#2|)) (-1168))) (-15 -2492 ((-639 (-608 |#2|)) (-639 (-608 |#2|)) (-639 (-608 |#2|)))) (-15 -1643 ((-639 (-608 |#2|)) (-639 |#2|) (-1168))) (IF (|has| |#1| (-554)) (-15 -2387 (|#2| |#2| (-1168))) |%noBranch|) (IF (|has| |#1| (-451)) (IF (|has| |#2| (-283)) (PROGN (-15 -3881 (|#2| |#2| (-1168))) (IF (|has| |#1| (-610 (-887 (-562)))) (IF (|has| |#1| (-881 (-562))) (IF (|has| |#2| (-625)) (IF (|has| |#2| (-1033 (-1168))) (-15 -3258 ((-583 |#2|) |#2| (-1168) (-1 (-583 |#2|) |#2| (-1168)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-845) (-429 |#1|)) (T -571))
+((-3258 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-583 *3) *3 (-1168))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1168))) (-4 *3 (-283)) (-4 *3 (-625)) (-4 *3 (-1033 *4)) (-4 *3 (-429 *7)) (-5 *4 (-1168)) (-4 *7 (-610 (-887 (-562)))) (-4 *7 (-451)) (-4 *7 (-881 (-562))) (-4 *7 (-845)) (-5 *2 (-583 *3)) (-5 *1 (-571 *7 *3)))) (-3881 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-451)) (-4 *4 (-845)) (-5 *1 (-571 *4 *2)) (-4 *2 (-283)) (-4 *2 (-429 *4)))) (-2387 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-554)) (-4 *4 (-845)) (-5 *1 (-571 *4 *2)) (-4 *2 (-429 *4)))) (-1643 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *6)) (-5 *4 (-1168)) (-4 *6 (-429 *5)) (-4 *5 (-845)) (-5 *2 (-639 (-608 *6))) (-5 *1 (-571 *5 *6)))) (-2492 (*1 *2 *2 *2) (-12 (-5 *2 (-639 (-608 *4))) (-4 *4 (-429 *3)) (-4 *3 (-845)) (-5 *1 (-571 *3 *4)))) (-3763 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-639 (-608 *6))) (-5 *4 (-1168)) (-5 *2 (-608 *6)) (-4 *6 (-429 *5)) (-4 *5 (-845)) (-5 *1 (-571 *5 *6)))) (-2411 (*1 *2 *3) (-12 (-5 *3 (-639 (-608 *5))) (-4 *4 (-845)) (-5 *2 (-608 *5)) (-5 *1 (-571 *4 *5)) (-4 *5 (-429 *4)))) (-2527 (*1 *2 *2 *3) (-12 (-5 *2 (-639 (-608 *5))) (-5 *3 (-1168)) (-4 *5 (-429 *4)) (-4 *4 (-845)) (-5 *1 (-571 *4 *5)))))
+(-10 -7 (-15 -2527 ((-639 (-608 |#2|)) (-639 (-608 |#2|)) (-1168))) (-15 -2411 ((-608 |#2|) (-639 (-608 |#2|)))) (-15 -3763 ((-608 |#2|) (-608 |#2|) (-639 (-608 |#2|)) (-1168))) (-15 -2492 ((-639 (-608 |#2|)) (-639 (-608 |#2|)) (-639 (-608 |#2|)))) (-15 -1643 ((-639 (-608 |#2|)) (-639 |#2|) (-1168))) (IF (|has| |#1| (-554)) (-15 -2387 (|#2| |#2| (-1168))) |%noBranch|) (IF (|has| |#1| (-451)) (IF (|has| |#2| (-283)) (PROGN (-15 -3881 (|#2| |#2| (-1168))) (IF (|has| |#1| (-610 (-887 (-562)))) (IF (|has| |#1| (-881 (-562))) (IF (|has| |#2| (-625)) (IF (|has| |#2| (-1033 (-1168))) (-15 -3258 ((-583 |#2|) |#2| (-1168) (-1 (-583 |#2|) |#2| (-1168)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1168)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-1289 (((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-639 |#1|) "failed") (-562) |#1| |#1|)) 172)) (-2711 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|))))))) (|:| |a0| |#1|)) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-639 (-406 |#2|))) 148)) (-2221 (((-3 (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|)))))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-639 (-406 |#2|))) 145)) (-4105 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 133)) (-1673 (((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 158)) (-2832 (((-3 (-2 (|:| -2929 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-406 |#2|)) 175)) (-4352 (((-3 (-2 (|:| |answer| (-406 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2929 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-406 |#2|)) 178)) (-1746 (((-2 (|:| |ir| (-583 (-406 |#2|))) (|:| |specpart| (-406 |#2|)) (|:| |polypart| |#2|)) (-406 |#2|) (-1 |#2| |#2|)) 84)) (-4034 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 90)) (-2521 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|))))))) (|:| |a0| |#1|)) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1603 |#1|) (|:| |sol?| (-112))) (-562) |#1|) (-639 (-406 |#2|))) 152)) (-2863 (((-3 (-619 |#1| |#2|) "failed") (-619 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1603 |#1|) (|:| |sol?| (-112))) (-562) |#1|)) 137)) (-1994 (((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1603 |#1|) (|:| |sol?| (-112))) (-562) |#1|)) 162)) (-1486 (((-3 (-2 (|:| |answer| (-406 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2929 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1603 |#1|) (|:| |sol?| (-112))) (-562) |#1|) (-406 |#2|)) 183)))
+(((-572 |#1| |#2|) (-10 -7 (-15 -1673 ((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -1994 ((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1603 |#1|) (|:| |sol?| (-112))) (-562) |#1|))) (-15 -1289 ((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-639 |#1|) "failed") (-562) |#1| |#1|))) (-15 -4352 ((-3 (-2 (|:| |answer| (-406 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2929 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-406 |#2|))) (-15 -1486 ((-3 (-2 (|:| |answer| (-406 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2929 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1603 |#1|) (|:| |sol?| (-112))) (-562) |#1|) (-406 |#2|))) (-15 -2711 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|))))))) (|:| |a0| |#1|)) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-639 (-406 |#2|)))) (-15 -2521 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|))))))) (|:| |a0| |#1|)) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1603 |#1|) (|:| |sol?| (-112))) (-562) |#1|) (-639 (-406 |#2|)))) (-15 -2832 ((-3 (-2 (|:| -2929 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-406 |#2|))) (-15 -2221 ((-3 (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|)))))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-639 (-406 |#2|)))) (-15 -4105 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2863 ((-3 (-619 |#1| |#2|) "failed") (-619 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1603 |#1|) (|:| |sol?| (-112))) (-562) |#1|))) (-15 -1746 ((-2 (|:| |ir| (-583 (-406 |#2|))) (|:| |specpart| (-406 |#2|)) (|:| |polypart| |#2|)) (-406 |#2|) (-1 |#2| |#2|))) (-15 -4034 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-362) (-1232 |#1|)) (T -572))
+((-4034 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-572 *5 *3)))) (-1746 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| |ir| (-583 (-406 *6))) (|:| |specpart| (-406 *6)) (|:| |polypart| *6))) (-5 *1 (-572 *5 *6)) (-5 *3 (-406 *6)))) (-2863 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-619 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -1603 *4) (|:| |sol?| (-112))) (-562) *4)) (-4 *4 (-362)) (-4 *5 (-1232 *4)) (-5 *1 (-572 *4 *5)))) (-4105 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -2929 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-362)) (-5 *1 (-572 *4 *2)) (-4 *2 (-1232 *4)))) (-2221 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-639 (-406 *7))) (-4 *7 (-1232 *6)) (-5 *3 (-406 *7)) (-4 *6 (-362)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-572 *6 *7)))) (-2832 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| -2929 (-406 *6)) (|:| |coeff| (-406 *6)))) (-5 *1 (-572 *5 *6)) (-5 *3 (-406 *6)))) (-2521 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -1603 *7) (|:| |sol?| (-112))) (-562) *7)) (-5 *6 (-639 (-406 *8))) (-4 *7 (-362)) (-4 *8 (-1232 *7)) (-5 *3 (-406 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-572 *7 *8)))) (-2711 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -2929 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-639 (-406 *8))) (-4 *7 (-362)) (-4 *8 (-1232 *7)) (-5 *3 (-406 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-572 *7 *8)))) (-1486 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -1603 *6) (|:| |sol?| (-112))) (-562) *6)) (-4 *6 (-362)) (-4 *7 (-1232 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-406 *7)) (|:| |a0| *6)) (-2 (|:| -2929 (-406 *7)) (|:| |coeff| (-406 *7))) "failed")) (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))) (-4352 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2929 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-362)) (-4 *7 (-1232 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-406 *7)) (|:| |a0| *6)) (-2 (|:| -2929 (-406 *7)) (|:| |coeff| (-406 *7))) "failed")) (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))) (-1289 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-639 *6) "failed") (-562) *6 *6)) (-4 *6 (-362)) (-4 *7 (-1232 *6)) (-5 *2 (-2 (|:| |answer| (-583 (-406 *7))) (|:| |a0| *6))) (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))) (-1994 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -1603 *6) (|:| |sol?| (-112))) (-562) *6)) (-4 *6 (-362)) (-4 *7 (-1232 *6)) (-5 *2 (-2 (|:| |answer| (-583 (-406 *7))) (|:| |a0| *6))) (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))) (-1673 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2929 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-362)) (-4 *7 (-1232 *6)) (-5 *2 (-2 (|:| |answer| (-583 (-406 *7))) (|:| |a0| *6))) (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))))
+(-10 -7 (-15 -1673 ((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -1994 ((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1603 |#1|) (|:| |sol?| (-112))) (-562) |#1|))) (-15 -1289 ((-2 (|:| |answer| (-583 (-406 |#2|))) (|:| |a0| |#1|)) (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-639 |#1|) "failed") (-562) |#1| |#1|))) (-15 -4352 ((-3 (-2 (|:| |answer| (-406 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2929 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-406 |#2|))) (-15 -1486 ((-3 (-2 (|:| |answer| (-406 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2929 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1603 |#1|) (|:| |sol?| (-112))) (-562) |#1|) (-406 |#2|))) (-15 -2711 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|))))))) (|:| |a0| |#1|)) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-639 (-406 |#2|)))) (-15 -2521 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|))))))) (|:| |a0| |#1|)) "failed") (-406 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1603 |#1|) (|:| |sol?| (-112))) (-562) |#1|) (-639 (-406 |#2|)))) (-15 -2832 ((-3 (-2 (|:| -2929 (-406 |#2|)) (|:| |coeff| (-406 |#2|))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-406 |#2|))) (-15 -2221 ((-3 (-2 (|:| |mainpart| (-406 |#2|)) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| (-406 |#2|)) (|:| |logand| (-406 |#2|)))))) "failed") (-406 |#2|) (-1 |#2| |#2|) (-639 (-406 |#2|)))) (-15 -4105 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2863 ((-3 (-619 |#1| |#2|) "failed") (-619 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -1603 |#1|) (|:| |sol?| (-112))) (-562) |#1|))) (-15 -1746 ((-2 (|:| |ir| (-583 (-406 |#2|))) (|:| |specpart| (-406 |#2|)) (|:| |polypart| |#2|)) (-406 |#2|) (-1 |#2| |#2|))) (-15 -4034 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
+((-1958 (((-3 |#2| "failed") |#2| (-1168) (-1168)) 10)))
+(((-573 |#1| |#2|) (-10 -7 (-15 -1958 ((-3 |#2| "failed") |#2| (-1168) (-1168)))) (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-954) (-1131) (-29 |#1|))) (T -573))
+((-1958 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1168)) (-4 *4 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-573 *4 *2)) (-4 *2 (-13 (-1192) (-954) (-1131) (-29 *4))))))
+(-10 -7 (-15 -1958 ((-3 |#2| "failed") |#2| (-1168) (-1168))))
+((-1734 (((-685 (-1214)) $ (-1214)) 26)) (-2667 (((-685 (-547)) $ (-547)) 25)) (-3445 (((-766) $ (-128)) 27)) (-1571 (((-685 (-129)) $ (-129)) 24)) (-3746 (((-685 (-1214)) $) 12)) (-2589 (((-685 (-1213)) $) 8)) (-1617 (((-685 (-1212)) $) 10)) (-3994 (((-685 (-547)) $) 13)) (-1882 (((-685 (-546)) $) 9)) (-4320 (((-685 (-545)) $) 11)) (-2456 (((-766) $ (-128)) 7)) (-2661 (((-685 (-129)) $) 14)) (-1380 (($ $) 6)))
(((-574) (-139)) (T -574))
NIL
(-13 (-526) (-855))
(((-172) . T) ((-526) . T) ((-855) . T))
-((-2475 (((-685 (-1214)) $ (-1214)) NIL)) (-3202 (((-685 (-547)) $ (-547)) NIL)) (-3787 (((-766) $ (-128)) NIL)) (-3966 (((-685 (-129)) $ (-129)) NIL)) (-3691 (((-685 (-1214)) $) NIL)) (-3192 (((-685 (-1213)) $) NIL)) (-3661 (((-685 (-1212)) $) NIL)) (-1735 (((-685 (-547)) $) NIL)) (-1890 (((-685 (-546)) $) NIL)) (-2242 (((-685 (-545)) $) NIL)) (-1477 (((-766) $ (-128)) NIL)) (-1850 (((-685 (-129)) $) NIL)) (-2468 (((-112) $) NIL)) (-2747 (($ (-387)) 14) (($ (-1150)) 16)) (-4054 (((-857) $) NIL)) (-3948 (($ $) NIL)))
-(((-575) (-13 (-574) (-609 (-857)) (-10 -8 (-15 -2747 ($ (-387))) (-15 -2747 ($ (-1150))) (-15 -2468 ((-112) $))))) (T -575))
-((-2747 (*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-575)))) (-2747 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-575)))) (-2468 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-575)))))
-(-13 (-574) (-609 (-857)) (-10 -8 (-15 -2747 ($ (-387))) (-15 -2747 ($ (-1150))) (-15 -2468 ((-112) $))))
-((-4041 (((-112) $ $) NIL)) (-3463 (($) 7 T CONST)) (-2913 (((-1150) $) NIL)) (-1541 (($) 6 T CONST)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 14)) (-3921 (($) 8 T CONST)) (-1731 (((-112) $ $) 10)))
-(((-576) (-13 (-1092) (-10 -8 (-15 -1541 ($) -1497) (-15 -3463 ($) -1497) (-15 -3921 ($) -1497)))) (T -576))
-((-1541 (*1 *1) (-5 *1 (-576))) (-3463 (*1 *1) (-5 *1 (-576))) (-3921 (*1 *1) (-5 *1 (-576))))
-(-13 (-1092) (-10 -8 (-15 -1541 ($) -1497) (-15 -3463 ($) -1497) (-15 -3921 ($) -1497)))
-((-4041 (((-112) $ $) NIL)) (-3217 (((-685 $) (-490)) 16)) (-2913 (((-1150) $) NIL)) (-2151 (($ (-1150)) 9)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 31)) (-2409 (((-212 4 (-129)) $) 19)) (-1731 (((-112) $ $) 22)))
-(((-577) (-13 (-1092) (-10 -8 (-15 -2151 ($ (-1150))) (-15 -2409 ((-212 4 (-129)) $)) (-15 -3217 ((-685 $) (-490)))))) (T -577))
-((-2151 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-577)))) (-2409 (*1 *2 *1) (-12 (-5 *2 (-212 4 (-129))) (-5 *1 (-577)))) (-3217 (*1 *2 *3) (-12 (-5 *3 (-490)) (-5 *2 (-685 (-577))) (-5 *1 (-577)))))
-(-13 (-1092) (-10 -8 (-15 -2151 ($ (-1150))) (-15 -2409 ((-212 4 (-129)) $)) (-15 -3217 ((-685 $) (-490)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1643 (($ $ (-562)) 66)) (-2569 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-4334 (($ (-1164 (-562)) (-562)) 72)) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) 58)) (-2977 (($ $) 34)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-1900 (((-766) $) 15)) (-1957 (((-112) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3518 (((-562)) 29)) (-2779 (((-562) $) 32)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1353 (($ $ (-562)) 21)) (-1762 (((-3 $ "failed") $ $) 59)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) 16)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 61)) (-3280 (((-1148 (-562)) $) 18)) (-2256 (($ $) 23)) (-4054 (((-857) $) 86) (($ (-562)) 52) (($ $) NIL)) (-2579 (((-766)) 14)) (-2922 (((-112) $ $) NIL)) (-1406 (((-562) $ (-562)) 36)) (-2286 (($) 35 T CONST)) (-2294 (($) 19 T CONST)) (-1731 (((-112) $ $) 39)) (-1848 (($ $) 51) (($ $ $) 37)) (-1835 (($ $ $) 50)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 54) (($ $ $) 55)))
+((-1734 (((-685 (-1214)) $ (-1214)) NIL)) (-2667 (((-685 (-547)) $ (-547)) NIL)) (-3445 (((-766) $ (-128)) NIL)) (-1571 (((-685 (-129)) $ (-129)) NIL)) (-3746 (((-685 (-1214)) $) NIL)) (-2589 (((-685 (-1213)) $) NIL)) (-1617 (((-685 (-1212)) $) NIL)) (-3994 (((-685 (-547)) $) NIL)) (-1882 (((-685 (-546)) $) NIL)) (-4320 (((-685 (-545)) $) NIL)) (-2456 (((-766) $ (-128)) NIL)) (-2661 (((-685 (-129)) $) NIL)) (-2851 (((-112) $) NIL)) (-2648 (($ (-387)) 14) (($ (-1150)) 16)) (-4053 (((-857) $) NIL)) (-1380 (($ $) NIL)))
+(((-575) (-13 (-574) (-609 (-857)) (-10 -8 (-15 -2648 ($ (-387))) (-15 -2648 ($ (-1150))) (-15 -2851 ((-112) $))))) (T -575))
+((-2648 (*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-575)))) (-2648 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-575)))) (-2851 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-575)))))
+(-13 (-574) (-609 (-857)) (-10 -8 (-15 -2648 ($ (-387))) (-15 -2648 ($ (-1150))) (-15 -2851 ((-112) $))))
+((-4041 (((-112) $ $) NIL)) (-3462 (($) 7 T CONST)) (-3696 (((-1150) $) NIL)) (-1542 (($) 6 T CONST)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 14)) (-4235 (($) 8 T CONST)) (-1733 (((-112) $ $) 10)))
+(((-576) (-13 (-1092) (-10 -8 (-15 -1542 ($) -1497) (-15 -3462 ($) -1497) (-15 -4235 ($) -1497)))) (T -576))
+((-1542 (*1 *1) (-5 *1 (-576))) (-3462 (*1 *1) (-5 *1 (-576))) (-4235 (*1 *1) (-5 *1 (-576))))
+(-13 (-1092) (-10 -8 (-15 -1542 ($) -1497) (-15 -3462 ($) -1497) (-15 -4235 ($) -1497)))
+((-4041 (((-112) $ $) NIL)) (-3216 (((-685 $) (-490)) 16)) (-3696 (((-1150) $) NIL)) (-2792 (($ (-1150)) 9)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 31)) (-3477 (((-212 4 (-129)) $) 19)) (-1733 (((-112) $ $) 22)))
+(((-577) (-13 (-1092) (-10 -8 (-15 -2792 ($ (-1150))) (-15 -3477 ((-212 4 (-129)) $)) (-15 -3216 ((-685 $) (-490)))))) (T -577))
+((-2792 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-577)))) (-3477 (*1 *2 *1) (-12 (-5 *2 (-212 4 (-129))) (-5 *1 (-577)))) (-3216 (*1 *2 *3) (-12 (-5 *3 (-490)) (-5 *2 (-685 (-577))) (-5 *1 (-577)))))
+(-13 (-1092) (-10 -8 (-15 -2792 ($ (-1150))) (-15 -3477 ((-212 4 (-129)) $)) (-15 -3216 ((-685 $) (-490)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1644 (($ $ (-562)) 66)) (-1436 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-3723 (($ (-1164 (-562)) (-562)) 72)) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) 58)) (-3119 (($ $) 34)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-1993 (((-766) $) 15)) (-4367 (((-112) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2685 (((-562)) 29)) (-2920 (((-562) $) 32)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-4316 (($ $ (-562)) 21)) (-1762 (((-3 $ "failed") $ $) 59)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) 16)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 61)) (-2244 (((-1148 (-562)) $) 18)) (-1345 (($ $) 23)) (-4053 (((-857) $) 86) (($ (-562)) 52) (($ $) NIL)) (-1568 (((-766)) 14)) (-3799 (((-112) $ $) NIL)) (-1406 (((-562) $ (-562)) 36)) (-2285 (($) 35 T CONST)) (-2294 (($) 19 T CONST)) (-1733 (((-112) $ $) 39)) (-1847 (($ $) 51) (($ $ $) 37)) (-1836 (($ $ $) 50)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 54) (($ $ $) 55)))
(((-578 |#1| |#2|) (-864 |#1|) (-562) (-112)) (T -578))
NIL
(-864 |#1|)
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 21)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2024 (((-112) $) NIL)) (-3285 (((-766)) NIL)) (-1748 (($ $ (-916)) NIL (|has| $ (-367))) (($ $) NIL)) (-3984 (((-1180 (-916) (-766)) (-562)) 47)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 $ "failed") $) 75)) (-3961 (($ $) 74)) (-4018 (($ (-1256 $)) 73)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) 44)) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) 32)) (-1448 (($) NIL)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-3529 (($) 49)) (-1322 (((-112) $) NIL)) (-3589 (($ $) NIL) (($ $ (-766)) NIL)) (-2717 (((-112) $) NIL)) (-1900 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-1957 (((-112) $) NIL)) (-1846 (($) 37 (|has| $ (-367)))) (-1316 (((-112) $) NIL (|has| $ (-367)))) (-2247 (($ $ (-916)) NIL (|has| $ (-367))) (($ $) NIL)) (-3699 (((-3 $ "failed") $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1565 (((-1164 $) $ (-916)) NIL (|has| $ (-367))) (((-1164 $) $) 83)) (-1999 (((-916) $) 55)) (-3892 (((-1164 $) $) NIL (|has| $ (-367)))) (-4203 (((-3 (-1164 $) "failed") $ $) NIL (|has| $ (-367))) (((-1164 $) $) NIL (|has| $ (-367)))) (-2393 (($ $ (-1164 $)) NIL (|has| $ (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL T CONST)) (-2466 (($ (-916)) 48)) (-3113 (((-112) $) 67)) (-1709 (((-1112) $) NIL)) (-3148 (($) 19 (|has| $ (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) 42)) (-1635 (((-417 $) $) NIL)) (-4121 (((-916)) 66) (((-828 (-916))) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3362 (((-3 (-766) "failed") $ $) NIL) (((-766) $) NIL)) (-3627 (((-133)) NIL)) (-4029 (($ $ (-766)) NIL) (($ $) NIL)) (-3598 (((-916) $) 65) (((-828 (-916)) $) NIL)) (-2096 (((-1164 $)) 82)) (-2283 (($) 54)) (-2624 (($) 38 (|has| $ (-367)))) (-3593 (((-683 $) (-1256 $)) NIL) (((-1256 $) $) 71)) (-4208 (((-562) $) 28)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) 30) (($ $) NIL) (($ (-406 (-562))) NIL)) (-2805 (((-3 $ "failed") $) NIL) (($ $) 84)) (-2579 (((-766)) 39)) (-3928 (((-1256 $) (-916)) 77) (((-1256 $)) 76)) (-2922 (((-112) $ $) NIL)) (-3694 (((-112) $) NIL)) (-2286 (($) 22 T CONST)) (-2294 (($) 18 T CONST)) (-4374 (($ $ (-766)) NIL (|has| $ (-367))) (($ $) NIL (|has| $ (-367)))) (-3114 (($ $ (-766)) NIL) (($ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 26)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 61) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 21)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3826 (((-112) $) NIL)) (-2284 (((-766)) NIL)) (-1748 (($ $ (-916)) NIL (|has| $ (-367))) (($ $) NIL)) (-1755 (((-1180 (-916) (-766)) (-562)) 47)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 $ "failed") $) 75)) (-3960 (($ $) 74)) (-3916 (($ (-1256 $)) 73)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) 44)) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) 32)) (-1447 (($) NIL)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-2787 (($) 49)) (-1844 (((-112) $) NIL)) (-2184 (($ $) NIL) (($ $ (-766)) NIL)) (-3521 (((-112) $) NIL)) (-1993 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-4367 (((-112) $) NIL)) (-2631 (($) 37 (|has| $ (-367)))) (-1775 (((-112) $) NIL (|has| $ (-367)))) (-4363 (($ $ (-916)) NIL (|has| $ (-367))) (($ $) NIL)) (-3828 (((-3 $ "failed") $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1937 (((-1164 $) $ (-916)) NIL (|has| $ (-367))) (((-1164 $) $) 83)) (-3549 (((-916) $) 55)) (-2121 (((-1164 $) $) NIL (|has| $ (-367)))) (-1894 (((-3 (-1164 $) "failed") $ $) NIL (|has| $ (-367))) (((-1164 $) $) NIL (|has| $ (-367)))) (-3319 (($ $ (-1164 $)) NIL (|has| $ (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL T CONST)) (-2464 (($ (-916)) 48)) (-2991 (((-112) $) 67)) (-1709 (((-1112) $) NIL)) (-3147 (($) 19 (|has| $ (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) 42)) (-1635 (((-417 $) $) NIL)) (-3548 (((-916)) 66) (((-828 (-916))) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3543 (((-3 (-766) "failed") $ $) NIL) (((-766) $) NIL)) (-4340 (((-133)) NIL)) (-4029 (($ $ (-766)) NIL) (($ $) NIL)) (-2250 (((-916) $) 65) (((-828 (-916)) $) NIL)) (-3371 (((-1164 $)) 82)) (-1653 (($) 54)) (-3861 (($) 38 (|has| $ (-367)))) (-2205 (((-683 $) (-1256 $)) NIL) (((-1256 $) $) 71)) (-4208 (((-562) $) 28)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) 30) (($ $) NIL) (($ (-406 (-562))) NIL)) (-2059 (((-3 $ "failed") $) NIL) (($ $) 84)) (-1568 (((-766)) 39)) (-4291 (((-1256 $) (-916)) 77) (((-1256 $)) 76)) (-3799 (((-112) $ $) NIL)) (-3782 (((-112) $) NIL)) (-2285 (($) 22 T CONST)) (-2294 (($) 18 T CONST)) (-4144 (($ $ (-766)) NIL (|has| $ (-367))) (($ $) NIL (|has| $ (-367)))) (-3113 (($ $ (-766)) NIL) (($ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 26)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 61) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
(((-579 |#1|) (-13 (-348) (-328 $) (-610 (-562))) (-916)) (T -579))
NIL
(-13 (-348) (-328 $) (-610 (-562)))
-((-1538 (((-1261) (-1150)) 10)))
-(((-580) (-10 -7 (-15 -1538 ((-1261) (-1150))))) (T -580))
-((-1538 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-580)))))
-(-10 -7 (-15 -1538 ((-1261) (-1150))))
-((-2176 (((-583 |#2|) (-583 |#2|)) 39)) (-3525 (((-639 |#2|) (-583 |#2|)) 41)) (-2733 ((|#2| (-583 |#2|)) 47)))
-(((-581 |#1| |#2|) (-10 -7 (-15 -2176 ((-583 |#2|) (-583 |#2|))) (-15 -3525 ((-639 |#2|) (-583 |#2|))) (-15 -2733 (|#2| (-583 |#2|)))) (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))) (-13 (-29 |#1|) (-1192))) (T -581))
-((-2733 (*1 *2 *3) (-12 (-5 *3 (-583 *2)) (-4 *2 (-13 (-29 *4) (-1192))) (-5 *1 (-581 *4 *2)) (-4 *4 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))))) (-3525 (*1 *2 *3) (-12 (-5 *3 (-583 *5)) (-4 *5 (-13 (-29 *4) (-1192))) (-4 *4 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *2 (-639 *5)) (-5 *1 (-581 *4 *5)))) (-2176 (*1 *2 *2) (-12 (-5 *2 (-583 *4)) (-4 *4 (-13 (-29 *3) (-1192))) (-4 *3 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *1 (-581 *3 *4)))))
-(-10 -7 (-15 -2176 ((-583 |#2|) (-583 |#2|))) (-15 -3525 ((-639 |#2|) (-583 |#2|))) (-15 -2733 (|#2| (-583 |#2|))))
-((-4152 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 44) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-583 |#2|) (-1 |#2| |#1|) (-583 |#1|)) 30)))
-(((-582 |#1| |#2|) (-10 -7 (-15 -4152 ((-583 |#2|) (-1 |#2| |#1|) (-583 |#1|))) (-15 -4152 ((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -4152 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -4152 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-362) (-362)) (T -582))
-((-4152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-362)) (-4 *6 (-362)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-582 *5 *6)))) (-4152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-362)) (-4 *2 (-362)) (-5 *1 (-582 *5 *2)))) (-4152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -3860 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-362)) (-4 *6 (-362)) (-5 *2 (-2 (|:| -3860 *6) (|:| |coeff| *6))) (-5 *1 (-582 *5 *6)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-583 *5)) (-4 *5 (-362)) (-4 *6 (-362)) (-5 *2 (-583 *6)) (-5 *1 (-582 *5 *6)))))
-(-10 -7 (-15 -4152 ((-583 |#2|) (-1 |#2| |#1|) (-583 |#1|))) (-15 -4152 ((-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -3860 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -4152 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -4152 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 69)) (-3961 ((|#1| $) NIL)) (-3860 ((|#1| $) 26)) (-2644 (((-639 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 28)) (-2381 (($ |#1| (-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 |#1|)) (|:| |logand| (-1164 |#1|)))) (-639 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 24)) (-3288 (((-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 |#1|)) (|:| |logand| (-1164 |#1|)))) $) 27)) (-2913 (((-1150) $) NIL)) (-1982 (($ |#1| |#1|) 33) (($ |#1| (-1168)) 44 (|has| |#1| (-1033 (-1168))))) (-1709 (((-1112) $) NIL)) (-3039 (((-112) $) 30)) (-4029 ((|#1| $ (-1 |#1| |#1|)) 81) ((|#1| $ (-1168)) 82 (|has| |#1| (-895 (-1168))))) (-4054 (((-857) $) 96) (($ |#1|) 25)) (-2286 (($) 16 T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) 15) (($ $ $) NIL)) (-1835 (($ $ $) 78)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 14) (($ (-406 (-562)) $) 36) (($ $ (-406 (-562))) NIL)))
-(((-583 |#1|) (-13 (-712 (-406 (-562))) (-1033 |#1|) (-10 -8 (-15 -2381 ($ |#1| (-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 |#1|)) (|:| |logand| (-1164 |#1|)))) (-639 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -3860 (|#1| $)) (-15 -3288 ((-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 |#1|)) (|:| |logand| (-1164 |#1|)))) $)) (-15 -2644 ((-639 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3039 ((-112) $)) (-15 -1982 ($ |#1| |#1|)) (-15 -4029 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-895 (-1168))) (-15 -4029 (|#1| $ (-1168))) |%noBranch|) (IF (|has| |#1| (-1033 (-1168))) (-15 -1982 ($ |#1| (-1168))) |%noBranch|))) (-362)) (T -583))
-((-2381 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 *2)) (|:| |logand| (-1164 *2))))) (-5 *4 (-639 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-362)) (-5 *1 (-583 *2)))) (-3860 (*1 *2 *1) (-12 (-5 *1 (-583 *2)) (-4 *2 (-362)))) (-3288 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 *3)) (|:| |logand| (-1164 *3))))) (-5 *1 (-583 *3)) (-4 *3 (-362)))) (-2644 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-583 *3)) (-4 *3 (-362)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-583 *3)) (-4 *3 (-362)))) (-1982 (*1 *1 *2 *2) (-12 (-5 *1 (-583 *2)) (-4 *2 (-362)))) (-4029 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-583 *2)) (-4 *2 (-362)))) (-4029 (*1 *2 *1 *3) (-12 (-4 *2 (-362)) (-4 *2 (-895 *3)) (-5 *1 (-583 *2)) (-5 *3 (-1168)))) (-1982 (*1 *1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *1 (-583 *2)) (-4 *2 (-1033 *3)) (-4 *2 (-362)))))
-(-13 (-712 (-406 (-562))) (-1033 |#1|) (-10 -8 (-15 -2381 ($ |#1| (-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 |#1|)) (|:| |logand| (-1164 |#1|)))) (-639 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -3860 (|#1| $)) (-15 -3288 ((-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 |#1|)) (|:| |logand| (-1164 |#1|)))) $)) (-15 -2644 ((-639 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3039 ((-112) $)) (-15 -1982 ($ |#1| |#1|)) (-15 -4029 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-895 (-1168))) (-15 -4029 (|#1| $ (-1168))) |%noBranch|) (IF (|has| |#1| (-1033 (-1168))) (-15 -1982 ($ |#1| (-1168))) |%noBranch|)))
-((-1746 (((-112) |#1|) 16)) (-2868 (((-3 |#1| "failed") |#1|) 14)) (-3605 (((-2 (|:| -3241 |#1|) (|:| -1960 (-766))) |#1|) 30) (((-3 |#1| "failed") |#1| (-766)) 18)) (-2130 (((-112) |#1| (-766)) 19)) (-1301 ((|#1| |#1|) 31)) (-3286 ((|#1| |#1| (-766)) 33)))
-(((-584 |#1|) (-10 -7 (-15 -2130 ((-112) |#1| (-766))) (-15 -3605 ((-3 |#1| "failed") |#1| (-766))) (-15 -3605 ((-2 (|:| -3241 |#1|) (|:| -1960 (-766))) |#1|)) (-15 -3286 (|#1| |#1| (-766))) (-15 -1746 ((-112) |#1|)) (-15 -2868 ((-3 |#1| "failed") |#1|)) (-15 -1301 (|#1| |#1|))) (-544)) (T -584))
-((-1301 (*1 *2 *2) (-12 (-5 *1 (-584 *2)) (-4 *2 (-544)))) (-2868 (*1 *2 *2) (|partial| -12 (-5 *1 (-584 *2)) (-4 *2 (-544)))) (-1746 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-584 *3)) (-4 *3 (-544)))) (-3286 (*1 *2 *2 *3) (-12 (-5 *3 (-766)) (-5 *1 (-584 *2)) (-4 *2 (-544)))) (-3605 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -3241 *3) (|:| -1960 (-766)))) (-5 *1 (-584 *3)) (-4 *3 (-544)))) (-3605 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-766)) (-5 *1 (-584 *2)) (-4 *2 (-544)))) (-2130 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-5 *2 (-112)) (-5 *1 (-584 *3)) (-4 *3 (-544)))))
-(-10 -7 (-15 -2130 ((-112) |#1| (-766))) (-15 -3605 ((-3 |#1| "failed") |#1| (-766))) (-15 -3605 ((-2 (|:| -3241 |#1|) (|:| -1960 (-766))) |#1|)) (-15 -3286 (|#1| |#1| (-766))) (-15 -1746 ((-112) |#1|)) (-15 -2868 ((-3 |#1| "failed") |#1|)) (-15 -1301 (|#1| |#1|)))
-((-2948 (((-1164 |#1|) (-916)) 26)))
-(((-585 |#1|) (-10 -7 (-15 -2948 ((-1164 |#1|) (-916)))) (-348)) (T -585))
-((-2948 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-585 *4)) (-4 *4 (-348)))))
-(-10 -7 (-15 -2948 ((-1164 |#1|) (-916))))
-((-2176 (((-583 (-406 (-947 |#1|))) (-583 (-406 (-947 |#1|)))) 27)) (-2667 (((-3 (-315 |#1|) (-639 (-315 |#1|))) (-406 (-947 |#1|)) (-1168)) 34 (|has| |#1| (-146)))) (-3525 (((-639 (-315 |#1|)) (-583 (-406 (-947 |#1|)))) 19)) (-1317 (((-315 |#1|) (-406 (-947 |#1|)) (-1168)) 32 (|has| |#1| (-146)))) (-2733 (((-315 |#1|) (-583 (-406 (-947 |#1|)))) 21)))
-(((-586 |#1|) (-10 -7 (-15 -2176 ((-583 (-406 (-947 |#1|))) (-583 (-406 (-947 |#1|))))) (-15 -3525 ((-639 (-315 |#1|)) (-583 (-406 (-947 |#1|))))) (-15 -2733 ((-315 |#1|) (-583 (-406 (-947 |#1|))))) (IF (|has| |#1| (-146)) (PROGN (-15 -2667 ((-3 (-315 |#1|) (-639 (-315 |#1|))) (-406 (-947 |#1|)) (-1168))) (-15 -1317 ((-315 |#1|) (-406 (-947 |#1|)) (-1168)))) |%noBranch|)) (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (T -586))
-((-1317 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-146)) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *2 (-315 *5)) (-5 *1 (-586 *5)))) (-2667 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-146)) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *2 (-3 (-315 *5) (-639 (-315 *5)))) (-5 *1 (-586 *5)))) (-2733 (*1 *2 *3) (-12 (-5 *3 (-583 (-406 (-947 *4)))) (-4 *4 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *2 (-315 *4)) (-5 *1 (-586 *4)))) (-3525 (*1 *2 *3) (-12 (-5 *3 (-583 (-406 (-947 *4)))) (-4 *4 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *2 (-639 (-315 *4))) (-5 *1 (-586 *4)))) (-2176 (*1 *2 *2) (-12 (-5 *2 (-583 (-406 (-947 *3)))) (-4 *3 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *1 (-586 *3)))))
-(-10 -7 (-15 -2176 ((-583 (-406 (-947 |#1|))) (-583 (-406 (-947 |#1|))))) (-15 -3525 ((-639 (-315 |#1|)) (-583 (-406 (-947 |#1|))))) (-15 -2733 ((-315 |#1|) (-583 (-406 (-947 |#1|))))) (IF (|has| |#1| (-146)) (PROGN (-15 -2667 ((-3 (-315 |#1|) (-639 (-315 |#1|))) (-406 (-947 |#1|)) (-1168))) (-15 -1317 ((-315 |#1|) (-406 (-947 |#1|)) (-1168)))) |%noBranch|))
-((-3857 (((-639 (-683 (-562))) (-639 (-562)) (-639 (-900 (-562)))) 45) (((-639 (-683 (-562))) (-639 (-562))) 46) (((-683 (-562)) (-639 (-562)) (-900 (-562))) 41)) (-4205 (((-766) (-639 (-562))) 39)))
-(((-587) (-10 -7 (-15 -4205 ((-766) (-639 (-562)))) (-15 -3857 ((-683 (-562)) (-639 (-562)) (-900 (-562)))) (-15 -3857 ((-639 (-683 (-562))) (-639 (-562)))) (-15 -3857 ((-639 (-683 (-562))) (-639 (-562)) (-639 (-900 (-562))))))) (T -587))
-((-3857 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-562))) (-5 *4 (-639 (-900 (-562)))) (-5 *2 (-639 (-683 (-562)))) (-5 *1 (-587)))) (-3857 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-639 (-683 (-562)))) (-5 *1 (-587)))) (-3857 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-562))) (-5 *4 (-900 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-587)))) (-4205 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-766)) (-5 *1 (-587)))))
-(-10 -7 (-15 -4205 ((-766) (-639 (-562)))) (-15 -3857 ((-683 (-562)) (-639 (-562)) (-900 (-562)))) (-15 -3857 ((-639 (-683 (-562))) (-639 (-562)))) (-15 -3857 ((-639 (-683 (-562))) (-639 (-562)) (-639 (-900 (-562))))))
-((-2707 (((-639 |#5|) |#5| (-112)) 72)) (-3420 (((-112) |#5| (-639 |#5|)) 30)))
-(((-588 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2707 ((-639 |#5|) |#5| (-112))) (-15 -3420 ((-112) |#5| (-639 |#5|)))) (-13 (-306) (-146)) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1101 |#1| |#2| |#3| |#4|)) (T -588))
-((-3420 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-1101 *5 *6 *7 *8)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-588 *5 *6 *7 *8 *3)))) (-2707 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-639 *3)) (-5 *1 (-588 *5 *6 *7 *8 *3)) (-4 *3 (-1101 *5 *6 *7 *8)))))
-(-10 -7 (-15 -2707 ((-639 |#5|) |#5| (-112))) (-15 -3420 ((-112) |#5| (-639 |#5|))))
-((-4041 (((-112) $ $) NIL)) (-4328 (((-1127) $) 11)) (-4316 (((-1127) $) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-589) (-13 (-1075) (-10 -8 (-15 -4316 ((-1127) $)) (-15 -4328 ((-1127) $))))) (T -589))
-((-4316 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-589)))) (-4328 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-589)))))
-(-13 (-1075) (-10 -8 (-15 -4316 ((-1127) $)) (-15 -4328 ((-1127) $))))
-((-4041 (((-112) $ $) NIL (|has| (-143) (-1092)))) (-2744 (($ $) 34)) (-1576 (($ $) NIL)) (-3398 (($ $ (-143)) NIL) (($ $ (-140)) NIL)) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-3824 (((-112) $ $) 51)) (-3801 (((-112) $ $ (-562)) 46)) (-2176 (((-639 $) $ (-143)) 59) (((-639 $) $ (-140)) 60)) (-1399 (((-112) (-1 (-112) (-143) (-143)) $) NIL) (((-112) $) NIL (|has| (-143) (-845)))) (-3381 (($ (-1 (-112) (-143) (-143)) $) NIL (|has| $ (-6 -4403))) (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-845))))) (-1395 (($ (-1 (-112) (-143) (-143)) $) NIL) (($ $) NIL (|has| (-143) (-845)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 (((-143) $ (-562) (-143)) 45 (|has| $ (-6 -4403))) (((-143) $ (-1223 (-562)) (-143)) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-1968 (($ $ (-143)) 63) (($ $ (-140)) 64)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-3944 (($ $ (-1223 (-562)) $) 44)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-1475 (($ (-143) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092)))) (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-143) (-1 (-143) (-143) (-143)) $ (-143) (-143)) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092)))) (((-143) (-1 (-143) (-143) (-143)) $ (-143)) NIL (|has| $ (-6 -4402))) (((-143) (-1 (-143) (-143) (-143)) $) NIL (|has| $ (-6 -4402)))) (-1505 (((-143) $ (-562) (-143)) NIL (|has| $ (-6 -4403)))) (-1420 (((-143) $ (-562)) NIL)) (-3847 (((-112) $ $) 71)) (-4264 (((-562) (-1 (-112) (-143)) $) NIL) (((-562) (-143) $) NIL (|has| (-143) (-1092))) (((-562) (-143) $ (-562)) 48 (|has| (-143) (-1092))) (((-562) $ $ (-562)) 47) (((-562) (-140) $ (-562)) 50)) (-1720 (((-639 (-143)) $) NIL (|has| $ (-6 -4402)))) (-1458 (($ (-766) (-143)) 9)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) 28 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| (-143) (-845)))) (-1610 (($ (-1 (-112) (-143) (-143)) $ $) NIL) (($ $ $) NIL (|has| (-143) (-845)))) (-1912 (((-639 (-143)) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-143) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-3874 (((-562) $) 42 (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-143) (-845)))) (-4263 (((-112) $ $ (-143)) 72)) (-3789 (((-766) $ $ (-143)) 69)) (-1490 (($ (-1 (-143) (-143)) $) 33 (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-143) (-143)) $) NIL) (($ (-1 (-143) (-143) (-143)) $ $) NIL)) (-1614 (($ $) 37)) (-3141 (($ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-1980 (($ $ (-143)) 61) (($ $ (-140)) 62)) (-2913 (((-1150) $) 38 (|has| (-143) (-1092)))) (-3297 (($ (-143) $ (-562)) NIL) (($ $ $ (-562)) 23)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-562) $) 68) (((-1112) $) NIL (|has| (-143) (-1092)))) (-1421 (((-143) $) NIL (|has| (-562) (-845)))) (-3251 (((-3 (-143) "failed") (-1 (-112) (-143)) $) NIL)) (-2716 (($ $ (-143)) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-143)))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-293 (-143))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-143) (-143)) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-639 (-143)) (-639 (-143))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) (-143) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-2411 (((-639 (-143)) $) NIL)) (-2974 (((-112) $) 12)) (-4307 (($) 10)) (-2343 (((-143) $ (-562) (-143)) NIL) (((-143) $ (-562)) 52) (($ $ (-1223 (-562))) 21) (($ $ $) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402))) (((-766) (-143) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-1853 (($ $ $ (-562)) 65 (|has| $ (-6 -4403)))) (-4220 (($ $) 17)) (-4208 (((-535) $) NIL (|has| (-143) (-610 (-535))))) (-4066 (($ (-639 (-143))) NIL)) (-2767 (($ $ (-143)) NIL) (($ (-143) $) NIL) (($ $ $) 16) (($ (-639 $)) 66)) (-4054 (($ (-143)) NIL) (((-857) $) 27 (|has| (-143) (-609 (-857))))) (-1744 (((-112) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| (-143) (-845)))) (-1772 (((-112) $ $) NIL (|has| (-143) (-845)))) (-1731 (((-112) $ $) 14 (|has| (-143) (-1092)))) (-1785 (((-112) $ $) NIL (|has| (-143) (-845)))) (-1759 (((-112) $ $) 15 (|has| (-143) (-845)))) (-3492 (((-766) $) 13 (|has| $ (-6 -4402)))))
+((-1687 (((-1261) (-1150)) 10)))
+(((-580) (-10 -7 (-15 -1687 ((-1261) (-1150))))) (T -580))
+((-1687 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-580)))))
+(-10 -7 (-15 -1687 ((-1261) (-1150))))
+((-1841 (((-583 |#2|) (-583 |#2|)) 39)) (-3525 (((-639 |#2|) (-583 |#2|)) 41)) (-2532 ((|#2| (-583 |#2|)) 47)))
+(((-581 |#1| |#2|) (-10 -7 (-15 -1841 ((-583 |#2|) (-583 |#2|))) (-15 -3525 ((-639 |#2|) (-583 |#2|))) (-15 -2532 (|#2| (-583 |#2|)))) (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))) (-13 (-29 |#1|) (-1192))) (T -581))
+((-2532 (*1 *2 *3) (-12 (-5 *3 (-583 *2)) (-4 *2 (-13 (-29 *4) (-1192))) (-5 *1 (-581 *4 *2)) (-4 *4 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))))) (-3525 (*1 *2 *3) (-12 (-5 *3 (-583 *5)) (-4 *5 (-13 (-29 *4) (-1192))) (-4 *4 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *2 (-639 *5)) (-5 *1 (-581 *4 *5)))) (-1841 (*1 *2 *2) (-12 (-5 *2 (-583 *4)) (-4 *4 (-13 (-29 *3) (-1192))) (-4 *3 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *1 (-581 *3 *4)))))
+(-10 -7 (-15 -1841 ((-583 |#2|) (-583 |#2|))) (-15 -3525 ((-639 |#2|) (-583 |#2|))) (-15 -2532 (|#2| (-583 |#2|))))
+((-4152 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 44) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-583 |#2|) (-1 |#2| |#1|) (-583 |#1|)) 30)))
+(((-582 |#1| |#2|) (-10 -7 (-15 -4152 ((-583 |#2|) (-1 |#2| |#1|) (-583 |#1|))) (-15 -4152 ((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -4152 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -4152 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-362) (-362)) (T -582))
+((-4152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-362)) (-4 *6 (-362)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-582 *5 *6)))) (-4152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-362)) (-4 *2 (-362)) (-5 *1 (-582 *5 *2)))) (-4152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -2929 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-362)) (-4 *6 (-362)) (-5 *2 (-2 (|:| -2929 *6) (|:| |coeff| *6))) (-5 *1 (-582 *5 *6)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-583 *5)) (-4 *5 (-362)) (-4 *6 (-362)) (-5 *2 (-583 *6)) (-5 *1 (-582 *5 *6)))))
+(-10 -7 (-15 -4152 ((-583 |#2|) (-1 |#2| |#1|) (-583 |#1|))) (-15 -4152 ((-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2929 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -4152 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -4152 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 69)) (-3960 ((|#1| $) NIL)) (-2929 ((|#1| $) 26)) (-4099 (((-639 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 28)) (-3187 (($ |#1| (-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 |#1|)) (|:| |logand| (-1164 |#1|)))) (-639 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 24)) (-2312 (((-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 |#1|)) (|:| |logand| (-1164 |#1|)))) $) 27)) (-3696 (((-1150) $) NIL)) (-1529 (($ |#1| |#1|) 33) (($ |#1| (-1168)) 44 (|has| |#1| (-1033 (-1168))))) (-1709 (((-1112) $) NIL)) (-3539 (((-112) $) 30)) (-4029 ((|#1| $ (-1 |#1| |#1|)) 81) ((|#1| $ (-1168)) 82 (|has| |#1| (-895 (-1168))))) (-4053 (((-857) $) 96) (($ |#1|) 25)) (-2285 (($) 16 T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) 15) (($ $ $) NIL)) (-1836 (($ $ $) 78)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 14) (($ (-406 (-562)) $) 36) (($ $ (-406 (-562))) NIL)))
+(((-583 |#1|) (-13 (-712 (-406 (-562))) (-1033 |#1|) (-10 -8 (-15 -3187 ($ |#1| (-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 |#1|)) (|:| |logand| (-1164 |#1|)))) (-639 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2929 (|#1| $)) (-15 -2312 ((-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 |#1|)) (|:| |logand| (-1164 |#1|)))) $)) (-15 -4099 ((-639 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3539 ((-112) $)) (-15 -1529 ($ |#1| |#1|)) (-15 -4029 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-895 (-1168))) (-15 -4029 (|#1| $ (-1168))) |%noBranch|) (IF (|has| |#1| (-1033 (-1168))) (-15 -1529 ($ |#1| (-1168))) |%noBranch|))) (-362)) (T -583))
+((-3187 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 *2)) (|:| |logand| (-1164 *2))))) (-5 *4 (-639 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-362)) (-5 *1 (-583 *2)))) (-2929 (*1 *2 *1) (-12 (-5 *1 (-583 *2)) (-4 *2 (-362)))) (-2312 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 *3)) (|:| |logand| (-1164 *3))))) (-5 *1 (-583 *3)) (-4 *3 (-362)))) (-4099 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-583 *3)) (-4 *3 (-362)))) (-3539 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-583 *3)) (-4 *3 (-362)))) (-1529 (*1 *1 *2 *2) (-12 (-5 *1 (-583 *2)) (-4 *2 (-362)))) (-4029 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-583 *2)) (-4 *2 (-362)))) (-4029 (*1 *2 *1 *3) (-12 (-4 *2 (-362)) (-4 *2 (-895 *3)) (-5 *1 (-583 *2)) (-5 *3 (-1168)))) (-1529 (*1 *1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *1 (-583 *2)) (-4 *2 (-1033 *3)) (-4 *2 (-362)))))
+(-13 (-712 (-406 (-562))) (-1033 |#1|) (-10 -8 (-15 -3187 ($ |#1| (-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 |#1|)) (|:| |logand| (-1164 |#1|)))) (-639 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2929 (|#1| $)) (-15 -2312 ((-639 (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 |#1|)) (|:| |logand| (-1164 |#1|)))) $)) (-15 -4099 ((-639 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3539 ((-112) $)) (-15 -1529 ($ |#1| |#1|)) (-15 -4029 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-895 (-1168))) (-15 -4029 (|#1| $ (-1168))) |%noBranch|) (IF (|has| |#1| (-1033 (-1168))) (-15 -1529 ($ |#1| (-1168))) |%noBranch|)))
+((-2897 (((-112) |#1|) 16)) (-1392 (((-3 |#1| "failed") |#1|) 14)) (-2308 (((-2 (|:| -3240 |#1|) (|:| -1300 (-766))) |#1|) 30) (((-3 |#1| "failed") |#1| (-766)) 18)) (-2579 (((-112) |#1| (-766)) 19)) (-2223 ((|#1| |#1|) 31)) (-2293 ((|#1| |#1| (-766)) 33)))
+(((-584 |#1|) (-10 -7 (-15 -2579 ((-112) |#1| (-766))) (-15 -2308 ((-3 |#1| "failed") |#1| (-766))) (-15 -2308 ((-2 (|:| -3240 |#1|) (|:| -1300 (-766))) |#1|)) (-15 -2293 (|#1| |#1| (-766))) (-15 -2897 ((-112) |#1|)) (-15 -1392 ((-3 |#1| "failed") |#1|)) (-15 -2223 (|#1| |#1|))) (-544)) (T -584))
+((-2223 (*1 *2 *2) (-12 (-5 *1 (-584 *2)) (-4 *2 (-544)))) (-1392 (*1 *2 *2) (|partial| -12 (-5 *1 (-584 *2)) (-4 *2 (-544)))) (-2897 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-584 *3)) (-4 *3 (-544)))) (-2293 (*1 *2 *2 *3) (-12 (-5 *3 (-766)) (-5 *1 (-584 *2)) (-4 *2 (-544)))) (-2308 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -3240 *3) (|:| -1300 (-766)))) (-5 *1 (-584 *3)) (-4 *3 (-544)))) (-2308 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-766)) (-5 *1 (-584 *2)) (-4 *2 (-544)))) (-2579 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-5 *2 (-112)) (-5 *1 (-584 *3)) (-4 *3 (-544)))))
+(-10 -7 (-15 -2579 ((-112) |#1| (-766))) (-15 -2308 ((-3 |#1| "failed") |#1| (-766))) (-15 -2308 ((-2 (|:| -3240 |#1|) (|:| -1300 (-766))) |#1|)) (-15 -2293 (|#1| |#1| (-766))) (-15 -2897 ((-112) |#1|)) (-15 -1392 ((-3 |#1| "failed") |#1|)) (-15 -2223 (|#1| |#1|)))
+((-4047 (((-1164 |#1|) (-916)) 26)))
+(((-585 |#1|) (-10 -7 (-15 -4047 ((-1164 |#1|) (-916)))) (-348)) (T -585))
+((-4047 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-585 *4)) (-4 *4 (-348)))))
+(-10 -7 (-15 -4047 ((-1164 |#1|) (-916))))
+((-1841 (((-583 (-406 (-947 |#1|))) (-583 (-406 (-947 |#1|)))) 27)) (-3081 (((-3 (-315 |#1|) (-639 (-315 |#1|))) (-406 (-947 |#1|)) (-1168)) 34 (|has| |#1| (-146)))) (-3525 (((-639 (-315 |#1|)) (-583 (-406 (-947 |#1|)))) 19)) (-1788 (((-315 |#1|) (-406 (-947 |#1|)) (-1168)) 32 (|has| |#1| (-146)))) (-2532 (((-315 |#1|) (-583 (-406 (-947 |#1|)))) 21)))
+(((-586 |#1|) (-10 -7 (-15 -1841 ((-583 (-406 (-947 |#1|))) (-583 (-406 (-947 |#1|))))) (-15 -3525 ((-639 (-315 |#1|)) (-583 (-406 (-947 |#1|))))) (-15 -2532 ((-315 |#1|) (-583 (-406 (-947 |#1|))))) (IF (|has| |#1| (-146)) (PROGN (-15 -3081 ((-3 (-315 |#1|) (-639 (-315 |#1|))) (-406 (-947 |#1|)) (-1168))) (-15 -1788 ((-315 |#1|) (-406 (-947 |#1|)) (-1168)))) |%noBranch|)) (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (T -586))
+((-1788 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-146)) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *2 (-315 *5)) (-5 *1 (-586 *5)))) (-3081 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-146)) (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *2 (-3 (-315 *5) (-639 (-315 *5)))) (-5 *1 (-586 *5)))) (-2532 (*1 *2 *3) (-12 (-5 *3 (-583 (-406 (-947 *4)))) (-4 *4 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *2 (-315 *4)) (-5 *1 (-586 *4)))) (-3525 (*1 *2 *3) (-12 (-5 *3 (-583 (-406 (-947 *4)))) (-4 *4 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *2 (-639 (-315 *4))) (-5 *1 (-586 *4)))) (-1841 (*1 *2 *2) (-12 (-5 *2 (-583 (-406 (-947 *3)))) (-4 *3 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562)))) (-5 *1 (-586 *3)))))
+(-10 -7 (-15 -1841 ((-583 (-406 (-947 |#1|))) (-583 (-406 (-947 |#1|))))) (-15 -3525 ((-639 (-315 |#1|)) (-583 (-406 (-947 |#1|))))) (-15 -2532 ((-315 |#1|) (-583 (-406 (-947 |#1|))))) (IF (|has| |#1| (-146)) (PROGN (-15 -3081 ((-3 (-315 |#1|) (-639 (-315 |#1|))) (-406 (-947 |#1|)) (-1168))) (-15 -1788 ((-315 |#1|) (-406 (-947 |#1|)) (-1168)))) |%noBranch|))
+((-2903 (((-639 (-683 (-562))) (-639 (-562)) (-639 (-900 (-562)))) 45) (((-639 (-683 (-562))) (-639 (-562))) 46) (((-683 (-562)) (-639 (-562)) (-900 (-562))) 41)) (-1924 (((-766) (-639 (-562))) 39)))
+(((-587) (-10 -7 (-15 -1924 ((-766) (-639 (-562)))) (-15 -2903 ((-683 (-562)) (-639 (-562)) (-900 (-562)))) (-15 -2903 ((-639 (-683 (-562))) (-639 (-562)))) (-15 -2903 ((-639 (-683 (-562))) (-639 (-562)) (-639 (-900 (-562))))))) (T -587))
+((-2903 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-562))) (-5 *4 (-639 (-900 (-562)))) (-5 *2 (-639 (-683 (-562)))) (-5 *1 (-587)))) (-2903 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-639 (-683 (-562)))) (-5 *1 (-587)))) (-2903 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-562))) (-5 *4 (-900 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-587)))) (-1924 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-766)) (-5 *1 (-587)))))
+(-10 -7 (-15 -1924 ((-766) (-639 (-562)))) (-15 -2903 ((-683 (-562)) (-639 (-562)) (-900 (-562)))) (-15 -2903 ((-639 (-683 (-562))) (-639 (-562)))) (-15 -2903 ((-639 (-683 (-562))) (-639 (-562)) (-639 (-900 (-562))))))
+((-3437 (((-639 |#5|) |#5| (-112)) 72)) (-2914 (((-112) |#5| (-639 |#5|)) 30)))
+(((-588 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3437 ((-639 |#5|) |#5| (-112))) (-15 -2914 ((-112) |#5| (-639 |#5|)))) (-13 (-306) (-146)) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1101 |#1| |#2| |#3| |#4|)) (T -588))
+((-2914 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-1101 *5 *6 *7 *8)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-588 *5 *6 *7 *8 *3)))) (-3437 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-639 *3)) (-5 *1 (-588 *5 *6 *7 *8 *3)) (-4 *3 (-1101 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3437 ((-639 |#5|) |#5| (-112))) (-15 -2914 ((-112) |#5| (-639 |#5|))))
+((-4041 (((-112) $ $) NIL)) (-4330 (((-1127) $) 11)) (-4318 (((-1127) $) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-589) (-13 (-1075) (-10 -8 (-15 -4318 ((-1127) $)) (-15 -4330 ((-1127) $))))) (T -589))
+((-4318 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-589)))) (-4330 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-589)))))
+(-13 (-1075) (-10 -8 (-15 -4318 ((-1127) $)) (-15 -4330 ((-1127) $))))
+((-4041 (((-112) $ $) NIL (|has| (-143) (-1092)))) (-2629 (($ $) 34)) (-2033 (($ $) NIL)) (-3904 (($ $ (-143)) NIL) (($ $ (-140)) NIL)) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-3824 (((-112) $ $) 51)) (-3801 (((-112) $ $ (-562)) 46)) (-1841 (((-639 $) $ (-143)) 59) (((-639 $) $ (-140)) 60)) (-1706 (((-112) (-1 (-112) (-143) (-143)) $) NIL) (((-112) $) NIL (|has| (-143) (-845)))) (-3737 (($ (-1 (-112) (-143) (-143)) $) NIL (|has| $ (-6 -4404))) (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| (-143) (-845))))) (-1395 (($ (-1 (-112) (-143) (-143)) $) NIL) (($ $) NIL (|has| (-143) (-845)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 (((-143) $ (-562) (-143)) 45 (|has| $ (-6 -4404))) (((-143) $ (-1223 (-562)) (-143)) NIL (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-1967 (($ $ (-143)) 63) (($ $ (-140)) 64)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1348 (($ $ (-1223 (-562)) $) 44)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-1475 (($ (-143) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092)))) (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-143) (-1 (-143) (-143) (-143)) $ (-143) (-143)) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092)))) (((-143) (-1 (-143) (-143) (-143)) $ (-143)) NIL (|has| $ (-6 -4403))) (((-143) (-1 (-143) (-143) (-143)) $) NIL (|has| $ (-6 -4403)))) (-1507 (((-143) $ (-562) (-143)) NIL (|has| $ (-6 -4404)))) (-1420 (((-143) $ (-562)) NIL)) (-3847 (((-112) $ $) 71)) (-4265 (((-562) (-1 (-112) (-143)) $) NIL) (((-562) (-143) $) NIL (|has| (-143) (-1092))) (((-562) (-143) $ (-562)) 48 (|has| (-143) (-1092))) (((-562) $ $ (-562)) 47) (((-562) (-140) $ (-562)) 50)) (-1720 (((-639 (-143)) $) NIL (|has| $ (-6 -4403)))) (-1458 (($ (-766) (-143)) 9)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) 28 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| (-143) (-845)))) (-4103 (($ (-1 (-112) (-143) (-143)) $ $) NIL) (($ $ $) NIL (|has| (-143) (-845)))) (-2123 (((-639 (-143)) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-143) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-1929 (((-562) $) 42 (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-143) (-845)))) (-4264 (((-112) $ $ (-143)) 72)) (-3789 (((-766) $ $ (-143)) 69)) (-1491 (($ (-1 (-143) (-143)) $) 33 (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-143) (-143)) $) NIL) (($ (-1 (-143) (-143) (-143)) $ $) NIL)) (-4145 (($ $) 37)) (-3249 (($ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-1979 (($ $ (-143)) 61) (($ $ (-140)) 62)) (-3696 (((-1150) $) 38 (|has| (-143) (-1092)))) (-3295 (($ (-143) $ (-562)) NIL) (($ $ $ (-562)) 23)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-562) $) 68) (((-1112) $) NIL (|has| (-143) (-1092)))) (-1421 (((-143) $) NIL (|has| (-562) (-845)))) (-1963 (((-3 (-143) "failed") (-1 (-112) (-143)) $) NIL)) (-3510 (($ $ (-143)) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-143)))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-293 (-143))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-143) (-143)) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-639 (-143)) (-639 (-143))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) (-143) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-2366 (((-639 (-143)) $) NIL)) (-3087 (((-112) $) 12)) (-1663 (($) 10)) (-2343 (((-143) $ (-562) (-143)) NIL) (((-143) $ (-562)) 52) (($ $ (-1223 (-562))) 21) (($ $ $) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403))) (((-766) (-143) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-2694 (($ $ $ (-562)) 65 (|has| $ (-6 -4404)))) (-4220 (($ $) 17)) (-4208 (((-535) $) NIL (|has| (-143) (-610 (-535))))) (-4064 (($ (-639 (-143))) NIL)) (-2767 (($ $ (-143)) NIL) (($ (-143) $) NIL) (($ $ $) 16) (($ (-639 $)) 66)) (-4053 (($ (-143)) NIL) (((-857) $) 27 (|has| (-143) (-609 (-857))))) (-2879 (((-112) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| (-143) (-845)))) (-1771 (((-112) $ $) NIL (|has| (-143) (-845)))) (-1733 (((-112) $ $) 14 (|has| (-143) (-1092)))) (-1785 (((-112) $ $) NIL (|has| (-143) (-845)))) (-1761 (((-112) $ $) 15 (|has| (-143) (-845)))) (-3492 (((-766) $) 13 (|has| $ (-6 -4403)))))
(((-590 |#1|) (-13 (-1136) (-10 -8 (-15 -1709 ((-562) $)))) (-562)) (T -590))
((-1709 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-590 *3)) (-14 *3 *2))))
(-13 (-1136) (-10 -8 (-15 -1709 ((-562) $))))
@@ -2386,14 +2386,14 @@ NIL
(((-591 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1625 ((-2 (|:| |num| |#4|) (|:| |den| (-562))) |#4| |#2| (-1086 |#4|))) (-15 -1625 ((-2 (|:| |num| |#4|) (|:| |den| (-562))) |#4| |#2|))) (-788) (-845) (-554) (-944 |#3| |#1| |#2|)) (T -591))
((-1625 (*1 *2 *3 *4) (-12 (-4 *5 (-788)) (-4 *4 (-845)) (-4 *6 (-554)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-562)))) (-5 *1 (-591 *5 *4 *6 *3)) (-4 *3 (-944 *6 *5 *4)))) (-1625 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1086 *3)) (-4 *3 (-944 *7 *6 *4)) (-4 *6 (-788)) (-4 *4 (-845)) (-4 *7 (-554)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-562)))) (-5 *1 (-591 *6 *4 *7 *3)))))
(-10 -7 (-15 -1625 ((-2 (|:| |num| |#4|) (|:| |den| (-562))) |#4| |#2| (-1086 |#4|))) (-15 -1625 ((-2 (|:| |num| |#4|) (|:| |den| (-562))) |#4| |#2|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 63)) (-1402 (((-639 (-1074)) $) NIL)) (-2444 (((-1168) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-2557 (($ $ (-562)) 54) (($ $ (-562) (-562)) 55)) (-1938 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) 60)) (-3412 (($ $) 99)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3008 (((-857) (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) (-1021 (-838 (-562))) (-1168) |#1| (-406 (-562))) 223)) (-1503 (($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) 34)) (-1800 (($) NIL T CONST)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1756 (((-112) $) NIL)) (-1900 (((-562) $) 58) (((-562) $ (-562)) 59)) (-1957 (((-112) $) NIL)) (-3374 (($ $ (-916)) 76)) (-4222 (($ (-1 |#1| (-562)) $) 73)) (-3536 (((-112) $) 25)) (-1378 (($ |#1| (-562)) 22) (($ $ (-1074) (-562)) NIL) (($ $ (-639 (-1074)) (-639 (-562))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) 67)) (-3245 (($ (-1021 (-838 (-562))) (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) 13)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-2667 (($ $) 149 (|has| |#1| (-38 (-406 (-562)))))) (-2002 (((-3 $ "failed") $ $ (-112)) 98)) (-3758 (($ $ $) 107)) (-1709 (((-1112) $) NIL)) (-1388 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) 15)) (-2975 (((-1021 (-838 (-562))) $) 14)) (-1353 (($ $ (-562)) 45)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-562)))))) (-2343 ((|#1| $ (-562)) 57) (($ $ $) NIL (|has| (-562) (-1104)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-562) |#1|)))) (($ $) 70 (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (-3598 (((-562) $) NIL)) (-2256 (($ $) 46)) (-4054 (((-857) $) NIL) (($ (-562)) 28) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554))) (($ |#1|) 27 (|has| |#1| (-171)))) (-3906 ((|#1| $ (-562)) 56)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) 37)) (-2328 ((|#1| $) NIL)) (-2284 (($ $) 185 (|has| |#1| (-38 (-406 (-562)))))) (-1295 (($ $) 157 (|has| |#1| (-38 (-406 (-562)))))) (-2815 (($ $) 189 (|has| |#1| (-38 (-406 (-562)))))) (-3551 (($ $) 162 (|has| |#1| (-38 (-406 (-562)))))) (-3910 (($ $) 188 (|has| |#1| (-38 (-406 (-562)))))) (-2790 (($ $) 161 (|has| |#1| (-38 (-406 (-562)))))) (-3575 (($ $ (-406 (-562))) 165 (|has| |#1| (-38 (-406 (-562)))))) (-3421 (($ $ |#1|) 145 (|has| |#1| (-38 (-406 (-562)))))) (-3314 (($ $) 191 (|has| |#1| (-38 (-406 (-562)))))) (-2003 (($ $) 148 (|has| |#1| (-38 (-406 (-562)))))) (-4237 (($ $) 190 (|has| |#1| (-38 (-406 (-562)))))) (-4201 (($ $) 163 (|has| |#1| (-38 (-406 (-562)))))) (-2512 (($ $) 186 (|has| |#1| (-38 (-406 (-562)))))) (-2657 (($ $) 159 (|has| |#1| (-38 (-406 (-562)))))) (-4043 (($ $) 187 (|has| |#1| (-38 (-406 (-562)))))) (-2030 (($ $) 160 (|has| |#1| (-38 (-406 (-562)))))) (-3938 (($ $) 196 (|has| |#1| (-38 (-406 (-562)))))) (-1667 (($ $) 172 (|has| |#1| (-38 (-406 (-562)))))) (-2674 (($ $) 193 (|has| |#1| (-38 (-406 (-562)))))) (-1411 (($ $) 167 (|has| |#1| (-38 (-406 (-562)))))) (-2690 (($ $) 200 (|has| |#1| (-38 (-406 (-562)))))) (-3435 (($ $) 176 (|has| |#1| (-38 (-406 (-562)))))) (-2990 (($ $) 202 (|has| |#1| (-38 (-406 (-562)))))) (-1591 (($ $) 178 (|has| |#1| (-38 (-406 (-562)))))) (-4260 (($ $) 198 (|has| |#1| (-38 (-406 (-562)))))) (-2001 (($ $) 174 (|has| |#1| (-38 (-406 (-562)))))) (-2997 (($ $) 195 (|has| |#1| (-38 (-406 (-562)))))) (-1909 (($ $) 170 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-1406 ((|#1| $ (-562)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-562)))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-2286 (($) 29 T CONST)) (-2294 (($) 38 T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-562) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (-1731 (((-112) $ $) 65)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $) 84) (($ $ $) 64)) (-1835 (($ $ $) 81)) (** (($ $ (-916)) NIL) (($ $ (-766)) 102)) (* (($ (-916) $) 89) (($ (-766) $) 87) (($ (-562) $) 85) (($ $ $) 95) (($ $ |#1|) NIL) (($ |#1| $) 114) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
-(((-592 |#1|) (-13 (-1234 |#1| (-562)) (-10 -8 (-15 -3245 ($ (-1021 (-838 (-562))) (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))))) (-15 -2975 ((-1021 (-838 (-562))) $)) (-15 -1388 ((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $)) (-15 -1503 ($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))))) (-15 -3536 ((-112) $)) (-15 -4222 ($ (-1 |#1| (-562)) $)) (-15 -2002 ((-3 $ "failed") $ $ (-112))) (-15 -3412 ($ $)) (-15 -3758 ($ $ $)) (-15 -3008 ((-857) (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) (-1021 (-838 (-562))) (-1168) |#1| (-406 (-562)))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -2667 ($ $)) (-15 -3421 ($ $ |#1|)) (-15 -3575 ($ $ (-406 (-562)))) (-15 -2003 ($ $)) (-15 -3314 ($ $)) (-15 -3551 ($ $)) (-15 -2030 ($ $)) (-15 -1295 ($ $)) (-15 -2657 ($ $)) (-15 -2790 ($ $)) (-15 -4201 ($ $)) (-15 -1411 ($ $)) (-15 -1909 ($ $)) (-15 -1667 ($ $)) (-15 -2001 ($ $)) (-15 -3435 ($ $)) (-15 -1591 ($ $)) (-15 -2815 ($ $)) (-15 -4043 ($ $)) (-15 -2284 ($ $)) (-15 -2512 ($ $)) (-15 -3910 ($ $)) (-15 -4237 ($ $)) (-15 -2674 ($ $)) (-15 -2997 ($ $)) (-15 -3938 ($ $)) (-15 -4260 ($ $)) (-15 -2690 ($ $)) (-15 -2990 ($ $))) |%noBranch|))) (-1044)) (T -592))
-((-3536 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-1044)))) (-3245 (*1 *1 *2 *3) (-12 (-5 *2 (-1021 (-838 (-562)))) (-5 *3 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *4)))) (-4 *4 (-1044)) (-5 *1 (-592 *4)))) (-2975 (*1 *2 *1) (-12 (-5 *2 (-1021 (-838 (-562)))) (-5 *1 (-592 *3)) (-4 *3 (-1044)))) (-1388 (*1 *2 *1) (-12 (-5 *2 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *3)))) (-5 *1 (-592 *3)) (-4 *3 (-1044)))) (-1503 (*1 *1 *2) (-12 (-5 *2 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *3)))) (-4 *3 (-1044)) (-5 *1 (-592 *3)))) (-4222 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-562))) (-4 *3 (-1044)) (-5 *1 (-592 *3)))) (-2002 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-1044)))) (-3412 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-1044)))) (-3758 (*1 *1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-1044)))) (-3008 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *6)))) (-5 *4 (-1021 (-838 (-562)))) (-5 *5 (-1168)) (-5 *7 (-406 (-562))) (-4 *6 (-1044)) (-5 *2 (-857)) (-5 *1 (-592 *6)))) (-2667 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3421 (*1 *1 *1 *2) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3575 (*1 *1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-592 *3)) (-4 *3 (-38 *2)) (-4 *3 (-1044)))) (-2003 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3314 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3551 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2030 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-1295 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2657 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2790 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-4201 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-1411 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-1909 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-1667 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2001 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3435 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-1591 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2815 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-4043 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2284 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2512 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3910 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-4237 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2674 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2997 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3938 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-4260 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2690 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2990 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(-13 (-1234 |#1| (-562)) (-10 -8 (-15 -3245 ($ (-1021 (-838 (-562))) (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))))) (-15 -2975 ((-1021 (-838 (-562))) $)) (-15 -1388 ((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $)) (-15 -1503 ($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))))) (-15 -3536 ((-112) $)) (-15 -4222 ($ (-1 |#1| (-562)) $)) (-15 -2002 ((-3 $ "failed") $ $ (-112))) (-15 -3412 ($ $)) (-15 -3758 ($ $ $)) (-15 -3008 ((-857) (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) (-1021 (-838 (-562))) (-1168) |#1| (-406 (-562)))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -2667 ($ $)) (-15 -3421 ($ $ |#1|)) (-15 -3575 ($ $ (-406 (-562)))) (-15 -2003 ($ $)) (-15 -3314 ($ $)) (-15 -3551 ($ $)) (-15 -2030 ($ $)) (-15 -1295 ($ $)) (-15 -2657 ($ $)) (-15 -2790 ($ $)) (-15 -4201 ($ $)) (-15 -1411 ($ $)) (-15 -1909 ($ $)) (-15 -1667 ($ $)) (-15 -2001 ($ $)) (-15 -3435 ($ $)) (-15 -1591 ($ $)) (-15 -2815 ($ $)) (-15 -4043 ($ $)) (-15 -2284 ($ $)) (-15 -2512 ($ $)) (-15 -3910 ($ $)) (-15 -4237 ($ $)) (-15 -2674 ($ $)) (-15 -2997 ($ $)) (-15 -3938 ($ $)) (-15 -4260 ($ $)) (-15 -2690 ($ $)) (-15 -2990 ($ $))) |%noBranch|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1503 (($ (-1148 |#1|)) 9)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) 42)) (-1756 (((-112) $) 52)) (-1900 (((-766) $) 55) (((-766) $ (-766)) 54)) (-1957 (((-112) $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ $) 44 (|has| |#1| (-554)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL (|has| |#1| (-554)))) (-4358 (((-1148 |#1|) $) 23)) (-2579 (((-766)) 51)) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2286 (($) 10 T CONST)) (-2294 (($) 14 T CONST)) (-1731 (((-112) $ $) 22)) (-1848 (($ $) 30) (($ $ $) 16)) (-1835 (($ $ $) 25)) (** (($ $ (-916)) NIL) (($ $ (-766)) 49)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 34) (($ $ $) 28) (($ |#1| $) 37) (($ $ |#1|) 38) (($ $ (-562)) 36)))
-(((-593 |#1|) (-13 (-1044) (-10 -8 (-15 -4358 ((-1148 |#1|) $)) (-15 -1503 ($ (-1148 |#1|))) (-15 -1756 ((-112) $)) (-15 -1900 ((-766) $)) (-15 -1900 ((-766) $ (-766))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-562))) (IF (|has| |#1| (-554)) (-6 (-554)) |%noBranch|))) (-1044)) (T -593))
-((-4358 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-593 *3)) (-4 *3 (-1044)))) (-1503 (*1 *1 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-593 *3)))) (-1756 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-1044)))) (-1900 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-593 *3)) (-4 *3 (-1044)))) (-1900 (*1 *2 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-593 *3)) (-4 *3 (-1044)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-1044)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-593 *2)) (-4 *2 (-1044)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-593 *3)) (-4 *3 (-1044)))))
-(-13 (-1044) (-10 -8 (-15 -4358 ((-1148 |#1|) $)) (-15 -1503 ($ (-1148 |#1|))) (-15 -1756 ((-112) $)) (-15 -1900 ((-766) $)) (-15 -1900 ((-766) $ (-766))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-562))) (IF (|has| |#1| (-554)) (-6 (-554)) |%noBranch|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 63)) (-1401 (((-639 (-1074)) $) NIL)) (-2443 (((-1168) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1302 (($ $ (-562)) 54) (($ $ (-562) (-562)) 55)) (-4196 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) 60)) (-4045 (($ $) 99)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3369 (((-857) (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) (-1021 (-838 (-562))) (-1168) |#1| (-406 (-562))) 223)) (-1503 (($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) 34)) (-3329 (($) NIL T CONST)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2965 (((-112) $) NIL)) (-1993 (((-562) $) 58) (((-562) $ (-562)) 59)) (-4367 (((-112) $) NIL)) (-3662 (($ $ (-916)) 76)) (-2064 (($ (-1 |#1| (-562)) $) 73)) (-2833 (((-112) $) 25)) (-1377 (($ |#1| (-562)) 22) (($ $ (-1074) (-562)) NIL) (($ $ (-639 (-1074)) (-639 (-562))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) 67)) (-1889 (($ (-1021 (-838 (-562))) (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) 13)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-3081 (($ $) 149 (|has| |#1| (-38 (-406 (-562)))))) (-3577 (((-3 $ "failed") $ $ (-112)) 98)) (-3154 (($ $ $) 107)) (-1709 (((-1112) $) NIL)) (-1988 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) 15)) (-3095 (((-1021 (-838 (-562))) $) 14)) (-4316 (($ $ (-562)) 45)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-562)))))) (-2343 ((|#1| $ (-562)) 57) (($ $ $) NIL (|has| (-562) (-1104)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-562) |#1|)))) (($ $) 70 (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (-2250 (((-562) $) NIL)) (-1345 (($ $) 46)) (-4053 (((-857) $) NIL) (($ (-562)) 28) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554))) (($ |#1|) 27 (|has| |#1| (-171)))) (-2266 ((|#1| $ (-562)) 56)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) 37)) (-2328 ((|#1| $) NIL)) (-1667 (($ $) 185 (|has| |#1| (-38 (-406 (-562)))))) (-3207 (($ $) 157 (|has| |#1| (-38 (-406 (-562)))))) (-2160 (($ $) 189 (|has| |#1| (-38 (-406 (-562)))))) (-1797 (($ $) 162 (|has| |#1| (-38 (-406 (-562)))))) (-2305 (($ $) 188 (|has| |#1| (-38 (-406 (-562)))))) (-1891 (($ $) 161 (|has| |#1| (-38 (-406 (-562)))))) (-2052 (($ $ (-406 (-562))) 165 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (($ $ |#1|) 145 (|has| |#1| (-38 (-406 (-562)))))) (-4362 (($ $) 191 (|has| |#1| (-38 (-406 (-562)))))) (-3588 (($ $) 148 (|has| |#1| (-38 (-406 (-562)))))) (-2206 (($ $) 190 (|has| |#1| (-38 (-406 (-562)))))) (-1868 (($ $) 163 (|has| |#1| (-38 (-406 (-562)))))) (-2134 (($ $) 186 (|has| |#1| (-38 (-406 (-562)))))) (-2971 (($ $) 159 (|has| |#1| (-38 (-406 (-562)))))) (-4129 (($ $) 187 (|has| |#1| (-38 (-406 (-562)))))) (-3897 (($ $) 160 (|has| |#1| (-38 (-406 (-562)))))) (-1290 (($ $) 196 (|has| |#1| (-38 (-406 (-562)))))) (-1546 (($ $) 172 (|has| |#1| (-38 (-406 (-562)))))) (-3132 (($ $) 193 (|has| |#1| (-38 (-406 (-562)))))) (-1826 (($ $) 167 (|has| |#1| (-38 (-406 (-562)))))) (-3273 (($ $) 200 (|has| |#1| (-38 (-406 (-562)))))) (-3030 (($ $) 176 (|has| |#1| (-38 (-406 (-562)))))) (-3224 (($ $) 202 (|has| |#1| (-38 (-406 (-562)))))) (-2157 (($ $) 178 (|has| |#1| (-38 (-406 (-562)))))) (-2413 (($ $) 198 (|has| |#1| (-38 (-406 (-562)))))) (-3568 (($ $) 174 (|has| |#1| (-38 (-406 (-562)))))) (-3287 (($ $) 195 (|has| |#1| (-38 (-406 (-562)))))) (-2095 (($ $) 170 (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-1406 ((|#1| $ (-562)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-562)))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-2285 (($) 29 T CONST)) (-2294 (($) 38 T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-562) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (-1733 (((-112) $ $) 65)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $) 84) (($ $ $) 64)) (-1836 (($ $ $) 81)) (** (($ $ (-916)) NIL) (($ $ (-766)) 102)) (* (($ (-916) $) 89) (($ (-766) $) 87) (($ (-562) $) 85) (($ $ $) 95) (($ $ |#1|) NIL) (($ |#1| $) 114) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+(((-592 |#1|) (-13 (-1234 |#1| (-562)) (-10 -8 (-15 -1889 ($ (-1021 (-838 (-562))) (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))))) (-15 -3095 ((-1021 (-838 (-562))) $)) (-15 -1988 ((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $)) (-15 -1503 ($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))))) (-15 -2833 ((-112) $)) (-15 -2064 ($ (-1 |#1| (-562)) $)) (-15 -3577 ((-3 $ "failed") $ $ (-112))) (-15 -4045 ($ $)) (-15 -3154 ($ $ $)) (-15 -3369 ((-857) (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) (-1021 (-838 (-562))) (-1168) |#1| (-406 (-562)))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -3081 ($ $)) (-15 -2922 ($ $ |#1|)) (-15 -2052 ($ $ (-406 (-562)))) (-15 -3588 ($ $)) (-15 -4362 ($ $)) (-15 -1797 ($ $)) (-15 -3897 ($ $)) (-15 -3207 ($ $)) (-15 -2971 ($ $)) (-15 -1891 ($ $)) (-15 -1868 ($ $)) (-15 -1826 ($ $)) (-15 -2095 ($ $)) (-15 -1546 ($ $)) (-15 -3568 ($ $)) (-15 -3030 ($ $)) (-15 -2157 ($ $)) (-15 -2160 ($ $)) (-15 -4129 ($ $)) (-15 -1667 ($ $)) (-15 -2134 ($ $)) (-15 -2305 ($ $)) (-15 -2206 ($ $)) (-15 -3132 ($ $)) (-15 -3287 ($ $)) (-15 -1290 ($ $)) (-15 -2413 ($ $)) (-15 -3273 ($ $)) (-15 -3224 ($ $))) |%noBranch|))) (-1044)) (T -592))
+((-2833 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-1044)))) (-1889 (*1 *1 *2 *3) (-12 (-5 *2 (-1021 (-838 (-562)))) (-5 *3 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *4)))) (-4 *4 (-1044)) (-5 *1 (-592 *4)))) (-3095 (*1 *2 *1) (-12 (-5 *2 (-1021 (-838 (-562)))) (-5 *1 (-592 *3)) (-4 *3 (-1044)))) (-1988 (*1 *2 *1) (-12 (-5 *2 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *3)))) (-5 *1 (-592 *3)) (-4 *3 (-1044)))) (-1503 (*1 *1 *2) (-12 (-5 *2 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *3)))) (-4 *3 (-1044)) (-5 *1 (-592 *3)))) (-2064 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-562))) (-4 *3 (-1044)) (-5 *1 (-592 *3)))) (-3577 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-1044)))) (-4045 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-1044)))) (-3154 (*1 *1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-1044)))) (-3369 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *6)))) (-5 *4 (-1021 (-838 (-562)))) (-5 *5 (-1168)) (-5 *7 (-406 (-562))) (-4 *6 (-1044)) (-5 *2 (-857)) (-5 *1 (-592 *6)))) (-3081 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2922 (*1 *1 *1 *2) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2052 (*1 *1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-592 *3)) (-4 *3 (-38 *2)) (-4 *3 (-1044)))) (-3588 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-4362 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-1797 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3897 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3207 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2971 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-1891 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-1868 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-1826 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2095 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-1546 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3568 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3030 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2157 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2160 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-4129 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-1667 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2134 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2305 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2206 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3132 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3287 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-1290 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-2413 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3273 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))) (-3224 (*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(-13 (-1234 |#1| (-562)) (-10 -8 (-15 -1889 ($ (-1021 (-838 (-562))) (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))))) (-15 -3095 ((-1021 (-838 (-562))) $)) (-15 -1988 ((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $)) (-15 -1503 ($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))))) (-15 -2833 ((-112) $)) (-15 -2064 ($ (-1 |#1| (-562)) $)) (-15 -3577 ((-3 $ "failed") $ $ (-112))) (-15 -4045 ($ $)) (-15 -3154 ($ $ $)) (-15 -3369 ((-857) (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) (-1021 (-838 (-562))) (-1168) |#1| (-406 (-562)))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -3081 ($ $)) (-15 -2922 ($ $ |#1|)) (-15 -2052 ($ $ (-406 (-562)))) (-15 -3588 ($ $)) (-15 -4362 ($ $)) (-15 -1797 ($ $)) (-15 -3897 ($ $)) (-15 -3207 ($ $)) (-15 -2971 ($ $)) (-15 -1891 ($ $)) (-15 -1868 ($ $)) (-15 -1826 ($ $)) (-15 -2095 ($ $)) (-15 -1546 ($ $)) (-15 -3568 ($ $)) (-15 -3030 ($ $)) (-15 -2157 ($ $)) (-15 -2160 ($ $)) (-15 -4129 ($ $)) (-15 -1667 ($ $)) (-15 -2134 ($ $)) (-15 -2305 ($ $)) (-15 -2206 ($ $)) (-15 -3132 ($ $)) (-15 -3287 ($ $)) (-15 -1290 ($ $)) (-15 -2413 ($ $)) (-15 -3273 ($ $)) (-15 -3224 ($ $))) |%noBranch|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1503 (($ (-1148 |#1|)) 9)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) 42)) (-2965 (((-112) $) 52)) (-1993 (((-766) $) 55) (((-766) $ (-766)) 54)) (-4367 (((-112) $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ $) 44 (|has| |#1| (-554)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL (|has| |#1| (-554)))) (-3969 (((-1148 |#1|) $) 23)) (-1568 (((-766)) 51)) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2285 (($) 10 T CONST)) (-2294 (($) 14 T CONST)) (-1733 (((-112) $ $) 22)) (-1847 (($ $) 30) (($ $ $) 16)) (-1836 (($ $ $) 25)) (** (($ $ (-916)) NIL) (($ $ (-766)) 49)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 34) (($ $ $) 28) (($ |#1| $) 37) (($ $ |#1|) 38) (($ $ (-562)) 36)))
+(((-593 |#1|) (-13 (-1044) (-10 -8 (-15 -3969 ((-1148 |#1|) $)) (-15 -1503 ($ (-1148 |#1|))) (-15 -2965 ((-112) $)) (-15 -1993 ((-766) $)) (-15 -1993 ((-766) $ (-766))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-562))) (IF (|has| |#1| (-554)) (-6 (-554)) |%noBranch|))) (-1044)) (T -593))
+((-3969 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-593 *3)) (-4 *3 (-1044)))) (-1503 (*1 *1 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-593 *3)))) (-2965 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-1044)))) (-1993 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-593 *3)) (-4 *3 (-1044)))) (-1993 (*1 *2 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-593 *3)) (-4 *3 (-1044)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-593 *2)) (-4 *2 (-1044)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-593 *2)) (-4 *2 (-1044)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-593 *3)) (-4 *3 (-1044)))))
+(-13 (-1044) (-10 -8 (-15 -3969 ((-1148 |#1|) $)) (-15 -1503 ($ (-1148 |#1|))) (-15 -2965 ((-112) $)) (-15 -1993 ((-766) $)) (-15 -1993 ((-766) $ (-766))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-562))) (IF (|has| |#1| (-554)) (-6 (-554)) |%noBranch|)))
((-4152 (((-597 |#2|) (-1 |#2| |#1|) (-597 |#1|)) 15)))
(((-594 |#1| |#2|) (-10 -7 (-15 -4152 ((-597 |#2|) (-1 |#2| |#1|) (-597 |#1|)))) (-1207) (-1207)) (T -594))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-597 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-597 *6)) (-5 *1 (-594 *5 *6)))))
@@ -2402,432 +2402,432 @@ NIL
(((-595 |#1| |#2| |#3|) (-10 -7 (-15 -4152 ((-597 |#3|) (-1 |#3| |#1| |#2|) (-597 |#1|) (-597 |#2|))) (-15 -4152 ((-1148 |#3|) (-1 |#3| |#1| |#2|) (-1148 |#1|) (-597 |#2|))) (-15 -4152 ((-1148 |#3|) (-1 |#3| |#1| |#2|) (-597 |#1|) (-1148 |#2|)))) (-1207) (-1207) (-1207)) (T -595))
((-4152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-597 *6)) (-5 *5 (-1148 *7)) (-4 *6 (-1207)) (-4 *7 (-1207)) (-4 *8 (-1207)) (-5 *2 (-1148 *8)) (-5 *1 (-595 *6 *7 *8)))) (-4152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1148 *6)) (-5 *5 (-597 *7)) (-4 *6 (-1207)) (-4 *7 (-1207)) (-4 *8 (-1207)) (-5 *2 (-1148 *8)) (-5 *1 (-595 *6 *7 *8)))) (-4152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-597 *6)) (-5 *5 (-597 *7)) (-4 *6 (-1207)) (-4 *7 (-1207)) (-4 *8 (-1207)) (-5 *2 (-597 *8)) (-5 *1 (-595 *6 *7 *8)))))
(-10 -7 (-15 -4152 ((-597 |#3|) (-1 |#3| |#1| |#2|) (-597 |#1|) (-597 |#2|))) (-15 -4152 ((-1148 |#3|) (-1 |#3| |#1| |#2|) (-1148 |#1|) (-597 |#2|))) (-15 -4152 ((-1148 |#3|) (-1 |#3| |#1| |#2|) (-597 |#1|) (-1148 |#2|))))
-((-3996 ((|#3| |#3| (-639 (-608 |#3|)) (-639 (-1168))) 55)) (-4297 (((-168 |#2|) |#3|) 117)) (-3550 ((|#3| (-168 |#2|)) 44)) (-3204 ((|#2| |#3|) 19)) (-1753 ((|#3| |#2|) 33)))
-(((-596 |#1| |#2| |#3|) (-10 -7 (-15 -3550 (|#3| (-168 |#2|))) (-15 -3204 (|#2| |#3|)) (-15 -1753 (|#3| |#2|)) (-15 -4297 ((-168 |#2|) |#3|)) (-15 -3996 (|#3| |#3| (-639 (-608 |#3|)) (-639 (-1168))))) (-13 (-554) (-845)) (-13 (-429 |#1|) (-997) (-1192)) (-13 (-429 (-168 |#1|)) (-997) (-1192))) (T -596))
-((-3996 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-639 (-608 *2))) (-5 *4 (-639 (-1168))) (-4 *2 (-13 (-429 (-168 *5)) (-997) (-1192))) (-4 *5 (-13 (-554) (-845))) (-5 *1 (-596 *5 *6 *2)) (-4 *6 (-13 (-429 *5) (-997) (-1192))))) (-4297 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845))) (-5 *2 (-168 *5)) (-5 *1 (-596 *4 *5 *3)) (-4 *5 (-13 (-429 *4) (-997) (-1192))) (-4 *3 (-13 (-429 (-168 *4)) (-997) (-1192))))) (-1753 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845))) (-4 *2 (-13 (-429 (-168 *4)) (-997) (-1192))) (-5 *1 (-596 *4 *3 *2)) (-4 *3 (-13 (-429 *4) (-997) (-1192))))) (-3204 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845))) (-4 *2 (-13 (-429 *4) (-997) (-1192))) (-5 *1 (-596 *4 *2 *3)) (-4 *3 (-13 (-429 (-168 *4)) (-997) (-1192))))) (-3550 (*1 *2 *3) (-12 (-5 *3 (-168 *5)) (-4 *5 (-13 (-429 *4) (-997) (-1192))) (-4 *4 (-13 (-554) (-845))) (-4 *2 (-13 (-429 (-168 *4)) (-997) (-1192))) (-5 *1 (-596 *4 *5 *2)))))
-(-10 -7 (-15 -3550 (|#3| (-168 |#2|))) (-15 -3204 (|#2| |#3|)) (-15 -1753 (|#3| |#2|)) (-15 -4297 ((-168 |#2|) |#3|)) (-15 -3996 (|#3| |#3| (-639 (-608 |#3|)) (-639 (-1168)))))
-((-3556 (($ (-1 (-112) |#1|) $) 17)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2167 (($ (-1 |#1| |#1|) |#1|) 9)) (-3535 (($ (-1 (-112) |#1|) $) 13)) (-3546 (($ (-1 (-112) |#1|) $) 15)) (-4066 (((-1148 |#1|) $) 18)) (-4054 (((-857) $) NIL)))
-(((-597 |#1|) (-13 (-609 (-857)) (-10 -8 (-15 -4152 ($ (-1 |#1| |#1|) $)) (-15 -3535 ($ (-1 (-112) |#1|) $)) (-15 -3546 ($ (-1 (-112) |#1|) $)) (-15 -3556 ($ (-1 (-112) |#1|) $)) (-15 -2167 ($ (-1 |#1| |#1|) |#1|)) (-15 -4066 ((-1148 |#1|) $)))) (-1207)) (T -597))
-((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3)))) (-3535 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3)))) (-3546 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3)))) (-3556 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3)))) (-2167 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3)))) (-4066 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-597 *3)) (-4 *3 (-1207)))))
-(-13 (-609 (-857)) (-10 -8 (-15 -4152 ($ (-1 |#1| |#1|) $)) (-15 -3535 ($ (-1 (-112) |#1|) $)) (-15 -3546 ($ (-1 (-112) |#1|) $)) (-15 -3556 ($ (-1 (-112) |#1|) $)) (-15 -2167 ($ (-1 |#1| |#1|) |#1|)) (-15 -4066 ((-1148 |#1|) $))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2911 (($ (-766)) NIL (|has| |#1| (-23)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3381 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4403))) (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) NIL)) (-4264 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-2841 (((-683 |#1|) $ $) NIL (|has| |#1| (-1044)))) (-1458 (($ (-766) |#1|) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-1610 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3076 ((|#1| $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1044))))) (-3289 (((-112) $ (-766)) NIL)) (-3641 ((|#1| $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1044))))) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3297 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2716 (($ $ |#1|) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-4177 ((|#1| $ $) NIL (|has| |#1| (-1044)))) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1386 (($ $ $) NIL (|has| |#1| (-1044)))) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) NIL)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1848 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1835 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-562) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-721))) (($ $ |#1|) NIL (|has| |#1| (-721)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-3685 ((|#3| |#3| (-639 (-608 |#3|)) (-639 (-1168))) 55)) (-1544 (((-168 |#2|) |#3|) 117)) (-1784 ((|#3| (-168 |#2|)) 44)) (-2689 ((|#2| |#3|) 19)) (-2937 ((|#3| |#2|) 33)))
+(((-596 |#1| |#2| |#3|) (-10 -7 (-15 -1784 (|#3| (-168 |#2|))) (-15 -2689 (|#2| |#3|)) (-15 -2937 (|#3| |#2|)) (-15 -1544 ((-168 |#2|) |#3|)) (-15 -3685 (|#3| |#3| (-639 (-608 |#3|)) (-639 (-1168))))) (-13 (-554) (-845)) (-13 (-429 |#1|) (-997) (-1192)) (-13 (-429 (-168 |#1|)) (-997) (-1192))) (T -596))
+((-3685 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-639 (-608 *2))) (-5 *4 (-639 (-1168))) (-4 *2 (-13 (-429 (-168 *5)) (-997) (-1192))) (-4 *5 (-13 (-554) (-845))) (-5 *1 (-596 *5 *6 *2)) (-4 *6 (-13 (-429 *5) (-997) (-1192))))) (-1544 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845))) (-5 *2 (-168 *5)) (-5 *1 (-596 *4 *5 *3)) (-4 *5 (-13 (-429 *4) (-997) (-1192))) (-4 *3 (-13 (-429 (-168 *4)) (-997) (-1192))))) (-2937 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845))) (-4 *2 (-13 (-429 (-168 *4)) (-997) (-1192))) (-5 *1 (-596 *4 *3 *2)) (-4 *3 (-13 (-429 *4) (-997) (-1192))))) (-2689 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-845))) (-4 *2 (-13 (-429 *4) (-997) (-1192))) (-5 *1 (-596 *4 *2 *3)) (-4 *3 (-13 (-429 (-168 *4)) (-997) (-1192))))) (-1784 (*1 *2 *3) (-12 (-5 *3 (-168 *5)) (-4 *5 (-13 (-429 *4) (-997) (-1192))) (-4 *4 (-13 (-554) (-845))) (-4 *2 (-13 (-429 (-168 *4)) (-997) (-1192))) (-5 *1 (-596 *4 *5 *2)))))
+(-10 -7 (-15 -1784 (|#3| (-168 |#2|))) (-15 -2689 (|#2| |#3|)) (-15 -2937 (|#3| |#2|)) (-15 -1544 ((-168 |#2|) |#3|)) (-15 -3685 (|#3| |#3| (-639 (-608 |#3|)) (-639 (-1168)))))
+((-3556 (($ (-1 (-112) |#1|) $) 17)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2166 (($ (-1 |#1| |#1|) |#1|) 9)) (-3535 (($ (-1 (-112) |#1|) $) 13)) (-3546 (($ (-1 (-112) |#1|) $) 15)) (-4064 (((-1148 |#1|) $) 18)) (-4053 (((-857) $) NIL)))
+(((-597 |#1|) (-13 (-609 (-857)) (-10 -8 (-15 -4152 ($ (-1 |#1| |#1|) $)) (-15 -3535 ($ (-1 (-112) |#1|) $)) (-15 -3546 ($ (-1 (-112) |#1|) $)) (-15 -3556 ($ (-1 (-112) |#1|) $)) (-15 -2166 ($ (-1 |#1| |#1|) |#1|)) (-15 -4064 ((-1148 |#1|) $)))) (-1207)) (T -597))
+((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3)))) (-3535 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3)))) (-3546 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3)))) (-3556 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3)))) (-2166 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3)))) (-4064 (*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-597 *3)) (-4 *3 (-1207)))))
+(-13 (-609 (-857)) (-10 -8 (-15 -4152 ($ (-1 |#1| |#1|) $)) (-15 -3535 ($ (-1 (-112) |#1|) $)) (-15 -3546 ($ (-1 (-112) |#1|) $)) (-15 -3556 ($ (-1 (-112) |#1|) $)) (-15 -2166 ($ (-1 |#1| |#1|) |#1|)) (-15 -4064 ((-1148 |#1|) $))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2910 (($ (-766)) NIL (|has| |#1| (-23)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3737 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4404))) (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) NIL)) (-4265 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-2840 (((-683 |#1|) $ $) NIL (|has| |#1| (-1044)))) (-1458 (($ (-766) |#1|) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-4103 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3872 ((|#1| $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1044))))) (-4147 (((-112) $ (-766)) NIL)) (-3641 ((|#1| $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1044))))) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3295 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3510 (($ $ |#1|) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-2852 ((|#1| $ $) NIL (|has| |#1| (-1044)))) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-3247 (($ $ $) NIL (|has| |#1| (-1044)))) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) NIL)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1847 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1836 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-562) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-721))) (($ $ |#1|) NIL (|has| |#1| (-721)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-598 |#1| |#2|) (-1254 |#1|) (-1207) (-562)) (T -598))
NIL
(-1254 |#1|)
-((-3052 (((-1261) $ |#2| |#2|) 36)) (-4197 ((|#2| $) 23)) (-3874 ((|#2| $) 21)) (-1490 (($ (-1 |#3| |#3|) $) 32)) (-4152 (($ (-1 |#3| |#3|) $) 30)) (-1421 ((|#3| $) 26)) (-2716 (($ $ |#3|) 33)) (-3521 (((-112) |#3| $) 17)) (-2411 (((-639 |#3|) $) 15)) (-2343 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
-(((-599 |#1| |#2| |#3|) (-10 -8 (-15 -3052 ((-1261) |#1| |#2| |#2|)) (-15 -2716 (|#1| |#1| |#3|)) (-15 -1421 (|#3| |#1|)) (-15 -4197 (|#2| |#1|)) (-15 -3874 (|#2| |#1|)) (-15 -3521 ((-112) |#3| |#1|)) (-15 -2411 ((-639 |#3|) |#1|)) (-15 -2343 (|#3| |#1| |#2|)) (-15 -2343 (|#3| |#1| |#2| |#3|)) (-15 -1490 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4152 (|#1| (-1 |#3| |#3|) |#1|))) (-600 |#2| |#3|) (-1092) (-1207)) (T -599))
+((-3655 (((-1261) $ |#2| |#2|) 36)) (-1849 ((|#2| $) 23)) (-1929 ((|#2| $) 21)) (-1491 (($ (-1 |#3| |#3|) $) 32)) (-4152 (($ (-1 |#3| |#3|) $) 30)) (-1421 ((|#3| $) 26)) (-3510 (($ $ |#3|) 33)) (-2716 (((-112) |#3| $) 17)) (-2366 (((-639 |#3|) $) 15)) (-2343 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
+(((-599 |#1| |#2| |#3|) (-10 -8 (-15 -3655 ((-1261) |#1| |#2| |#2|)) (-15 -3510 (|#1| |#1| |#3|)) (-15 -1421 (|#3| |#1|)) (-15 -1849 (|#2| |#1|)) (-15 -1929 (|#2| |#1|)) (-15 -2716 ((-112) |#3| |#1|)) (-15 -2366 ((-639 |#3|) |#1|)) (-15 -2343 (|#3| |#1| |#2|)) (-15 -2343 (|#3| |#1| |#2| |#3|)) (-15 -1491 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4152 (|#1| (-1 |#3| |#3|) |#1|))) (-600 |#2| |#3|) (-1092) (-1207)) (T -599))
NIL
-(-10 -8 (-15 -3052 ((-1261) |#1| |#2| |#2|)) (-15 -2716 (|#1| |#1| |#3|)) (-15 -1421 (|#3| |#1|)) (-15 -4197 (|#2| |#1|)) (-15 -3874 (|#2| |#1|)) (-15 -3521 ((-112) |#3| |#1|)) (-15 -2411 ((-639 |#3|) |#1|)) (-15 -2343 (|#3| |#1| |#2|)) (-15 -2343 (|#3| |#1| |#2| |#3|)) (-15 -1490 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4152 (|#1| (-1 |#3| |#3|) |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#2| (-1092)))) (-3052 (((-1261) $ |#1| |#1|) 40 (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) 8)) (-4200 ((|#2| $ |#1| |#2|) 52 (|has| $ (-6 -4403)))) (-1800 (($) 7 T CONST)) (-1505 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4403)))) (-1420 ((|#2| $ |#1|) 51)) (-1720 (((-639 |#2|) $) 30 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-4197 ((|#1| $) 43 (|has| |#1| (-845)))) (-1912 (((-639 |#2|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#2| $) 27 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4402))))) (-3874 ((|#1| $) 44 (|has| |#1| (-845)))) (-1490 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#2| |#2|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#2| (-1092)))) (-2093 (((-639 |#1|) $) 46)) (-1570 (((-112) |#1| $) 47)) (-1709 (((-1112) $) 21 (|has| |#2| (-1092)))) (-1421 ((|#2| $) 42 (|has| |#1| (-845)))) (-2716 (($ $ |#2|) 41 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#2|))) 26 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) 25 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) 23 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#2| $) 45 (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-2411 (((-639 |#2|) $) 48)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#2| $ |#1| |#2|) 50) ((|#2| $ |#1|) 49)) (-1723 (((-766) (-1 (-112) |#2|) $) 31 (|has| $ (-6 -4402))) (((-766) |#2| $) 28 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4054 (((-857) $) 18 (|has| |#2| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#2| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+(-10 -8 (-15 -3655 ((-1261) |#1| |#2| |#2|)) (-15 -3510 (|#1| |#1| |#3|)) (-15 -1421 (|#3| |#1|)) (-15 -1849 (|#2| |#1|)) (-15 -1929 (|#2| |#1|)) (-15 -2716 ((-112) |#3| |#1|)) (-15 -2366 ((-639 |#3|) |#1|)) (-15 -2343 (|#3| |#1| |#2|)) (-15 -2343 (|#3| |#1| |#2| |#3|)) (-15 -1491 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4152 (|#1| (-1 |#3| |#3|) |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#2| (-1092)))) (-3655 (((-1261) $ |#1| |#1|) 40 (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) 8)) (-4200 ((|#2| $ |#1| |#2|) 52 (|has| $ (-6 -4404)))) (-3329 (($) 7 T CONST)) (-1507 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4404)))) (-1420 ((|#2| $ |#1|) 51)) (-1720 (((-639 |#2|) $) 30 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-1849 ((|#1| $) 43 (|has| |#1| (-845)))) (-2123 (((-639 |#2|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#2| $) 27 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4403))))) (-1929 ((|#1| $) 44 (|has| |#1| (-845)))) (-1491 (($ (-1 |#2| |#2|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#2| |#2|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#2| (-1092)))) (-3336 (((-639 |#1|) $) 46)) (-1987 (((-112) |#1| $) 47)) (-1709 (((-1112) $) 21 (|has| |#2| (-1092)))) (-1421 ((|#2| $) 42 (|has| |#1| (-845)))) (-3510 (($ $ |#2|) 41 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#2|))) 26 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) 25 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) 24 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) 23 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#2| $) 45 (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-2366 (((-639 |#2|) $) 48)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#2| $ |#1| |#2|) 50) ((|#2| $ |#1|) 49)) (-1723 (((-766) (-1 (-112) |#2|) $) 31 (|has| $ (-6 -4403))) (((-766) |#2| $) 28 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4053 (((-857) $) 18 (|has| |#2| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#2| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-600 |#1| |#2|) (-139) (-1092) (-1207)) (T -600))
-((-2411 (*1 *2 *1) (-12 (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207)) (-5 *2 (-639 *4)))) (-1570 (*1 *2 *3 *1) (-12 (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207)) (-5 *2 (-112)))) (-2093 (*1 *2 *1) (-12 (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207)) (-5 *2 (-639 *3)))) (-3521 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4402)) (-4 *1 (-600 *4 *3)) (-4 *4 (-1092)) (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-112)))) (-3874 (*1 *2 *1) (-12 (-4 *1 (-600 *2 *3)) (-4 *3 (-1207)) (-4 *2 (-1092)) (-4 *2 (-845)))) (-4197 (*1 *2 *1) (-12 (-4 *1 (-600 *2 *3)) (-4 *3 (-1207)) (-4 *2 (-1092)) (-4 *2 (-845)))) (-1421 (*1 *2 *1) (-12 (-4 *1 (-600 *3 *2)) (-4 *3 (-1092)) (-4 *3 (-845)) (-4 *2 (-1207)))) (-2716 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-600 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1207)))) (-3052 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207)) (-5 *2 (-1261)))))
-(-13 (-488 |t#2|) (-287 |t#1| |t#2|) (-10 -8 (-15 -2411 ((-639 |t#2|) $)) (-15 -1570 ((-112) |t#1| $)) (-15 -2093 ((-639 |t#1|) $)) (IF (|has| |t#2| (-1092)) (IF (|has| $ (-6 -4402)) (-15 -3521 ((-112) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-845)) (PROGN (-15 -3874 (|t#1| $)) (-15 -4197 (|t#1| $)) (-15 -1421 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4403)) (PROGN (-15 -2716 ($ $ |t#2|)) (-15 -3052 ((-1261) $ |t#1| |t#1|))) |%noBranch|)))
+((-2366 (*1 *2 *1) (-12 (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207)) (-5 *2 (-639 *4)))) (-1987 (*1 *2 *3 *1) (-12 (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207)) (-5 *2 (-112)))) (-3336 (*1 *2 *1) (-12 (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207)) (-5 *2 (-639 *3)))) (-2716 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-600 *4 *3)) (-4 *4 (-1092)) (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-112)))) (-1929 (*1 *2 *1) (-12 (-4 *1 (-600 *2 *3)) (-4 *3 (-1207)) (-4 *2 (-1092)) (-4 *2 (-845)))) (-1849 (*1 *2 *1) (-12 (-4 *1 (-600 *2 *3)) (-4 *3 (-1207)) (-4 *2 (-1092)) (-4 *2 (-845)))) (-1421 (*1 *2 *1) (-12 (-4 *1 (-600 *3 *2)) (-4 *3 (-1092)) (-4 *3 (-845)) (-4 *2 (-1207)))) (-3510 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-600 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1207)))) (-3655 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207)) (-5 *2 (-1261)))))
+(-13 (-488 |t#2|) (-287 |t#1| |t#2|) (-10 -8 (-15 -2366 ((-639 |t#2|) $)) (-15 -1987 ((-112) |t#1| $)) (-15 -3336 ((-639 |t#1|) $)) (IF (|has| |t#2| (-1092)) (IF (|has| $ (-6 -4403)) (-15 -2716 ((-112) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-845)) (PROGN (-15 -1929 (|t#1| $)) (-15 -1849 (|t#1| $)) (-15 -1421 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4404)) (PROGN (-15 -3510 ($ $ |t#2|)) (-15 -3655 ((-1261) $ |t#1| |t#1|))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#2| (-1092)) ((-609 (-857)) -4037 (|has| |#2| (-1092)) (|has| |#2| (-609 (-857)))) ((-285 |#1| |#2|) . T) ((-287 |#1| |#2|) . T) ((-308 |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-488 |#2|) . T) ((-513 |#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-1092) |has| |#2| (-1092)) ((-1207) . T))
-((-4054 (((-857) $) 17) (($ (-129)) 13) (((-129) $) 14)))
+((-4053 (((-857) $) 17) (($ (-129)) 13) (((-129) $) 14)))
(((-601) (-13 (-609 (-857)) (-489 (-129)))) (T -601))
NIL
(-13 (-609 (-857)) (-489 (-129)))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL) (($ (-1173)) NIL) (((-1173) $) NIL) (((-1206) $) 14) (($ (-639 (-1206))) 13)) (-4036 (((-639 (-1206)) $) 10)) (-1731 (((-112) $ $) NIL)))
-(((-602) (-13 (-1075) (-609 (-1206)) (-10 -8 (-15 -4054 ($ (-639 (-1206)))) (-15 -4036 ((-639 (-1206)) $))))) (T -602))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-602)))) (-4036 (*1 *2 *1) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-602)))))
-(-13 (-1075) (-609 (-1206)) (-10 -8 (-15 -4054 ($ (-639 (-1206)))) (-15 -4036 ((-639 (-1206)) $))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3931 (((-3 $ "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1902 (((-1256 (-683 |#1|))) NIL (|has| |#2| (-416 |#1|))) (((-1256 (-683 |#1|)) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-3655 (((-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-1800 (($) NIL T CONST)) (-2874 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2117 (((-3 $ "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-4356 (((-683 |#1|)) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2422 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-2966 (((-683 |#1|) $) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) $ (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2545 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3407 (((-1164 (-947 |#1|))) NIL (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-362))))) (-1379 (($ $ (-916)) NIL)) (-2355 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-3474 (((-1164 |#1|) $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2819 ((|#1|) NIL (|has| |#2| (-416 |#1|))) ((|#1| (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2964 (((-1164 |#1|) $) NIL (|has| |#2| (-366 |#1|)))) (-2380 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-4018 (($ (-1256 |#1|)) NIL (|has| |#2| (-416 |#1|))) (($ (-1256 |#1|) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-3668 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2173 (((-916)) NIL (|has| |#2| (-366 |#1|)))) (-1321 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3650 (($ $ (-916)) NIL)) (-3813 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3375 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-4258 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1681 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3700 (((-3 $ "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3025 (((-683 |#1|)) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-4153 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-1671 (((-683 |#1|) $) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) $ (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-4238 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2743 (((-1164 (-947 |#1|))) NIL (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-362))))) (-2991 (($ $ (-916)) NIL)) (-1680 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-2026 (((-1164 |#1|) $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-1305 ((|#1|) NIL (|has| |#2| (-416 |#1|))) ((|#1| (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2670 (((-1164 |#1|) $) NIL (|has| |#2| (-366 |#1|)))) (-2090 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2913 (((-1150) $) NIL)) (-2144 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2580 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2809 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1709 (((-1112) $) NIL)) (-4323 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2343 ((|#1| $ (-562)) NIL (|has| |#2| (-416 |#1|)))) (-3593 (((-683 |#1|) (-1256 $)) NIL (|has| |#2| (-416 |#1|))) (((-1256 |#1|) $) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) (-1256 $) (-1256 $)) NIL (|has| |#2| (-366 |#1|))) (((-1256 |#1|) $ (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-4208 (($ (-1256 |#1|)) NIL (|has| |#2| (-416 |#1|))) (((-1256 |#1|) $) NIL (|has| |#2| (-416 |#1|)))) (-4136 (((-639 (-947 |#1|))) NIL (|has| |#2| (-416 |#1|))) (((-639 (-947 |#1|)) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-1911 (($ $ $) NIL)) (-1396 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-4054 (((-857) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-3928 (((-1256 $)) NIL (|has| |#2| (-416 |#1|)))) (-3553 (((-639 (-1256 |#1|))) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2436 (($ $ $ $) NIL)) (-2850 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1360 (($ (-683 |#1|) $) NIL (|has| |#2| (-416 |#1|)))) (-3626 (($ $ $) NIL)) (-1981 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3199 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-4114 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2286 (($) NIL T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) 24)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
-(((-603 |#1| |#2|) (-13 (-739 |#1|) (-609 |#2|) (-10 -8 (-15 -4054 ($ |#2|)) (IF (|has| |#2| (-416 |#1|)) (-6 (-416 |#1|)) |%noBranch|) (IF (|has| |#2| (-366 |#1|)) (-6 (-366 |#1|)) |%noBranch|))) (-171) (-739 |#1|)) (T -603))
-((-4054 (*1 *1 *2) (-12 (-4 *3 (-171)) (-5 *1 (-603 *3 *2)) (-4 *2 (-739 *3)))))
-(-13 (-739 |#1|) (-609 |#2|) (-10 -8 (-15 -4054 ($ |#2|)) (IF (|has| |#2| (-416 |#1|)) (-6 (-416 |#1|)) |%noBranch|) (IF (|has| |#2| (-366 |#1|)) (-6 (-366 |#1|)) |%noBranch|)))
-((-4041 (((-112) $ $) NIL)) (-3067 (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) 33)) (-1443 (($ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) NIL) (($) NIL)) (-3052 (((-1261) $ (-1150) (-1150)) NIL (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-1150) |#1|) 43)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402)))) (-1472 (((-3 |#1| "failed") (-1150) $) 46)) (-1800 (($) NIL T CONST)) (-2413 (($ $ (-1150)) 24)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092))))) (-4000 (((-3 |#1| "failed") (-1150) $) 47) (($ (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402))) (($ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL (|has| $ (-6 -4402)))) (-1475 (($ (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402))) (($ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092))))) (-1955 (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092))))) (-1805 (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) 32)) (-1505 ((|#1| $ (-1150) |#1|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-1150)) NIL)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402))) (((-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402)))) (-4332 (($ $) 48)) (-3316 (($ (-387)) 22) (($ (-387) (-1150)) 21)) (-3254 (((-387) $) 34)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-1150) $) NIL (|has| (-1150) (-845)))) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402))) (((-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (((-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092))))) (-3874 (((-1150) $) NIL (|has| (-1150) (-845)))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-1520 (((-639 (-1150)) $) 39)) (-4265 (((-112) (-1150) $) NIL)) (-3523 (((-1150) $) 35)) (-3262 (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL)) (-4300 (($ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL)) (-2093 (((-639 (-1150)) $) NIL)) (-1570 (((-112) (-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 ((|#1| $) NIL (|has| (-1150) (-845)))) (-3251 (((-3 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) "failed") (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL)) (-2716 (($ $ |#1|) NIL (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) NIL (-12 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)))) (($ $ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) NIL (-12 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) NIL (-12 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)))) (($ $ (-639 (-293 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))))) NIL (-12 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) 37)) (-2343 ((|#1| $ (-1150) |#1|) NIL) ((|#1| $ (-1150)) 42)) (-3564 (($ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) NIL) (($) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (((-766) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)))) (((-766) (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) NIL)) (-4054 (((-857) $) 20)) (-3948 (($ $) 25)) (-1932 (($ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) NIL)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 19)) (-3492 (((-766) $) 41 (|has| $ (-6 -4402)))))
-(((-604 |#1|) (-13 (-363 (-387) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) (-1183 (-1150) |#1|) (-10 -8 (-6 -4402) (-15 -4332 ($ $)))) (-1092)) (T -604))
-((-4332 (*1 *1 *1) (-12 (-5 *1 (-604 *2)) (-4 *2 (-1092)))))
-(-13 (-363 (-387) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) (-1183 (-1150) |#1|) (-10 -8 (-6 -4402) (-15 -4332 ($ $))))
-((-1669 (((-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) $) 15)) (-1520 (((-639 |#2|) $) 19)) (-4265 (((-112) |#2| $) 12)))
-(((-605 |#1| |#2| |#3|) (-10 -8 (-15 -1520 ((-639 |#2|) |#1|)) (-15 -4265 ((-112) |#2| |#1|)) (-15 -1669 ((-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) |#1|))) (-606 |#2| |#3|) (-1092) (-1092)) (T -605))
-NIL
-(-10 -8 (-15 -1520 ((-639 |#2|) |#1|)) (-15 -4265 ((-112) |#2| |#1|)) (-15 -1669 ((-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) |#1|)))
-((-4041 (((-112) $ $) 19 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-4336 (((-112) $ (-766)) 8)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 45 (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 55 (|has| $ (-6 -4402)))) (-1472 (((-3 |#2| "failed") |#1| $) 61)) (-1800 (($) 7 T CONST)) (-1459 (($ $) 58 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402))))) (-4000 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 47 (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 46 (|has| $ (-6 -4402))) (((-3 |#2| "failed") |#1| $) 62)) (-1475 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 54 (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 56 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 53 (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 52 (|has| $ (-6 -4402)))) (-1720 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 30 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-1520 (((-639 |#1|) $) 63)) (-4265 (((-112) |#1| $) 64)) (-3262 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 39)) (-4300 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 40)) (-1709 (((-1112) $) 21 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-3251 (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 51)) (-1904 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 41)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))))) 26 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 25 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 24 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 23 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-3564 (($) 49) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 48)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 31 (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 50)) (-4054 (((-857) $) 18 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857))))) (-1932 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 42)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL) (($ (-1173)) NIL) (((-1173) $) NIL) (((-1206) $) 14) (($ (-639 (-1206))) 13)) (-4038 (((-639 (-1206)) $) 10)) (-1733 (((-112) $ $) NIL)))
+(((-602) (-13 (-1075) (-609 (-1206)) (-10 -8 (-15 -4053 ($ (-639 (-1206)))) (-15 -4038 ((-639 (-1206)) $))))) (T -602))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-602)))) (-4038 (*1 *2 *1) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-602)))))
+(-13 (-1075) (-609 (-1206)) (-10 -8 (-15 -4053 ($ (-639 (-1206)))) (-15 -4038 ((-639 (-1206)) $))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-4310 (((-3 $ "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-2016 (((-1256 (-683 |#1|))) NIL (|has| |#2| (-416 |#1|))) (((-1256 (-683 |#1|)) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-1540 (((-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-3329 (($) NIL T CONST)) (-1469 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2447 (((-3 $ "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3945 (((-683 |#1|)) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2452 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-2995 (((-683 |#1|) $) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) $ (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-4276 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3996 (((-1164 (-947 |#1|))) NIL (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-362))))) (-2127 (($ $ (-916)) NIL)) (-2949 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-3407 (((-1164 |#1|) $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2200 ((|#1|) NIL (|has| |#2| (-416 |#1|))) ((|#1| (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2974 (((-1164 |#1|) $) NIL (|has| |#2| (-366 |#1|)))) (-3178 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3916 (($ (-1256 |#1|)) NIL (|has| |#2| (-416 |#1|))) (($ (-1256 |#1|) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-1694 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2172 (((-916)) NIL (|has| |#2| (-366 |#1|)))) (-1832 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1492 (($ $ (-916)) NIL)) (-2531 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3671 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2394 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3502 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3839 (((-3 $ "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3506 (((-683 |#1|)) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2664 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-1583 (((-683 |#1|) $) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) $ (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2217 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2620 (((-1164 (-947 |#1|))) NIL (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-362))))) (-3235 (($ $ (-916)) NIL)) (-3495 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-3849 (((-1164 |#1|) $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-1636 ((|#1|) NIL (|has| |#2| (-416 |#1|))) ((|#1| (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-3099 (((-1164 |#1|) $) NIL (|has| |#2| (-366 |#1|)))) (-3302 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3696 (((-1150) $) NIL)) (-2720 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1579 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2104 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1709 (((-1112) $) NIL)) (-3626 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2343 ((|#1| $ (-562)) NIL (|has| |#2| (-416 |#1|)))) (-2205 (((-683 |#1|) (-1256 $)) NIL (|has| |#2| (-416 |#1|))) (((-1256 |#1|) $) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) (-1256 $) (-1256 $)) NIL (|has| |#2| (-366 |#1|))) (((-1256 |#1|) $ (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-4208 (($ (-1256 |#1|)) NIL (|has| |#2| (-416 |#1|))) (((-1256 |#1|) $) NIL (|has| |#2| (-416 |#1|)))) (-2555 (((-639 (-947 |#1|))) NIL (|has| |#2| (-416 |#1|))) (((-639 (-947 |#1|)) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2114 (($ $ $) NIL)) (-3901 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-4053 (((-857) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-4291 (((-1256 $)) NIL (|has| |#2| (-416 |#1|)))) (-1823 (((-639 (-1256 |#1|))) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2584 (($ $ $ $) NIL)) (-4309 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1360 (($ (-683 |#1|) $) NIL (|has| |#2| (-416 |#1|)))) (-4324 (($ $ $) NIL)) (-1517 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2636 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3488 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2285 (($) NIL T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) 24)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
+(((-603 |#1| |#2|) (-13 (-739 |#1|) (-609 |#2|) (-10 -8 (-15 -4053 ($ |#2|)) (IF (|has| |#2| (-416 |#1|)) (-6 (-416 |#1|)) |%noBranch|) (IF (|has| |#2| (-366 |#1|)) (-6 (-366 |#1|)) |%noBranch|))) (-171) (-739 |#1|)) (T -603))
+((-4053 (*1 *1 *2) (-12 (-4 *3 (-171)) (-5 *1 (-603 *3 *2)) (-4 *2 (-739 *3)))))
+(-13 (-739 |#1|) (-609 |#2|) (-10 -8 (-15 -4053 ($ |#2|)) (IF (|has| |#2| (-416 |#1|)) (-6 (-416 |#1|)) |%noBranch|) (IF (|has| |#2| (-366 |#1|)) (-6 (-366 |#1|)) |%noBranch|)))
+((-4041 (((-112) $ $) NIL)) (-3791 (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) 33)) (-1443 (($ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) NIL) (($) NIL)) (-3655 (((-1261) $ (-1150) (-1150)) NIL (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-1150) |#1|) 43)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403)))) (-1472 (((-3 |#1| "failed") (-1150) $) 46)) (-3329 (($) NIL T CONST)) (-2385 (($ $ (-1150)) 24)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092))))) (-3729 (((-3 |#1| "failed") (-1150) $) 47) (($ (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403))) (($ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL (|has| $ (-6 -4403)))) (-1475 (($ (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403))) (($ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092))))) (-1954 (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092))))) (-3385 (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) 32)) (-1507 ((|#1| $ (-1150) |#1|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-1150)) NIL)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403))) (((-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403)))) (-3702 (($ $) 48)) (-3315 (($ (-387)) 22) (($ (-387) (-1150)) 21)) (-3253 (((-387) $) 34)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-1150) $) NIL (|has| (-1150) (-845)))) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403))) (((-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (((-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092))))) (-1929 (((-1150) $) NIL (|has| (-1150) (-845)))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404))) (($ (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-1521 (((-639 (-1150)) $) 39)) (-4278 (((-112) (-1150) $) NIL)) (-2735 (((-1150) $) 35)) (-2078 (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL)) (-1581 (($ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL)) (-3336 (((-639 (-1150)) $) NIL)) (-1987 (((-112) (-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 ((|#1| $) NIL (|has| (-1150) (-845)))) (-1963 (((-3 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) "failed") (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL)) (-3510 (($ $ |#1|) NIL (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) NIL (-12 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)))) (($ $ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) NIL (-12 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) NIL (-12 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)))) (($ $ (-639 (-293 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))))) NIL (-12 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) 37)) (-2343 ((|#1| $ (-1150) |#1|) NIL) ((|#1| $ (-1150)) 42)) (-1932 (($ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) NIL) (($) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (((-766) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)))) (((-766) (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) NIL)) (-4053 (((-857) $) 20)) (-1380 (($ $) 25)) (-4131 (($ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) NIL)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 19)) (-3492 (((-766) $) 41 (|has| $ (-6 -4403)))))
+(((-604 |#1|) (-13 (-363 (-387) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) (-1183 (-1150) |#1|) (-10 -8 (-6 -4403) (-15 -3702 ($ $)))) (-1092)) (T -604))
+((-3702 (*1 *1 *1) (-12 (-5 *1 (-604 *2)) (-4 *2 (-1092)))))
+(-13 (-363 (-387) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) (-1183 (-1150) |#1|) (-10 -8 (-6 -4403) (-15 -3702 ($ $))))
+((-1572 (((-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) $) 15)) (-1521 (((-639 |#2|) $) 19)) (-4278 (((-112) |#2| $) 12)))
+(((-605 |#1| |#2| |#3|) (-10 -8 (-15 -1521 ((-639 |#2|) |#1|)) (-15 -4278 ((-112) |#2| |#1|)) (-15 -1572 ((-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) |#1|))) (-606 |#2| |#3|) (-1092) (-1092)) (T -605))
+NIL
+(-10 -8 (-15 -1521 ((-639 |#2|) |#1|)) (-15 -4278 ((-112) |#2| |#1|)) (-15 -1572 ((-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) |#1|)))
+((-4041 (((-112) $ $) 19 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-3735 (((-112) $ (-766)) 8)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 45 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 55 (|has| $ (-6 -4403)))) (-1472 (((-3 |#2| "failed") |#1| $) 61)) (-3329 (($) 7 T CONST)) (-1459 (($ $) 58 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403))))) (-3729 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 47 (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 46 (|has| $ (-6 -4403))) (((-3 |#2| "failed") |#1| $) 62)) (-1475 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 54 (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 56 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 53 (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 52 (|has| $ (-6 -4403)))) (-1720 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 30 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-1521 (((-639 |#1|) $) 63)) (-4278 (((-112) |#1| $) 64)) (-2078 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 39)) (-1581 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 40)) (-1709 (((-1112) $) 21 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-1963 (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 51)) (-2038 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 41)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))))) 26 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 25 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 24 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 23 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-1932 (($) 49) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 48)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 31 (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 50)) (-4053 (((-857) $) 18 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857))))) (-4131 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 42)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-606 |#1| |#2|) (-139) (-1092) (-1092)) (T -606))
-((-4265 (*1 *2 *3 *1) (-12 (-4 *1 (-606 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-5 *2 (-112)))) (-1520 (*1 *2 *1) (-12 (-4 *1 (-606 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-5 *2 (-639 *3)))) (-4000 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-606 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))) (-1472 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-606 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))))
-(-13 (-228 (-2 (|:| -2320 |t#1|) (|:| -2694 |t#2|))) (-10 -8 (-15 -4265 ((-112) |t#1| $)) (-15 -1520 ((-639 |t#1|) $)) (-15 -4000 ((-3 |t#2| "failed") |t#1| $)) (-15 -1472 ((-3 |t#2| "failed") |t#1| $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T) ((-102) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) ((-609 (-857)) -4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857)))) ((-150 #0#) . T) ((-610 (-535)) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))) ((-228 #0#) . T) ((-234 #0#) . T) ((-308 #0#) -12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))) ((-488 #0#) . T) ((-513 #0# #0#) -12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))) ((-1092) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) ((-1207) . T))
-((-1377 (((-608 |#2|) |#1|) 15)) (-4117 (((-3 |#1| "failed") (-608 |#2|)) 19)))
-(((-607 |#1| |#2|) (-10 -7 (-15 -1377 ((-608 |#2|) |#1|)) (-15 -4117 ((-3 |#1| "failed") (-608 |#2|)))) (-845) (-845)) (T -607))
-((-4117 (*1 *2 *3) (|partial| -12 (-5 *3 (-608 *4)) (-4 *4 (-845)) (-4 *2 (-845)) (-5 *1 (-607 *2 *4)))) (-1377 (*1 *2 *3) (-12 (-5 *2 (-608 *4)) (-5 *1 (-607 *3 *4)) (-4 *3 (-845)) (-4 *4 (-845)))))
-(-10 -7 (-15 -1377 ((-608 |#2|) |#1|)) (-15 -4117 ((-3 |#1| "failed") (-608 |#2|))))
-((-4041 (((-112) $ $) NIL)) (-2918 (((-3 (-1168) "failed") $) 37)) (-2111 (((-1261) $ (-766)) 26)) (-4264 (((-766) $) 25)) (-2876 (((-114) $) 12)) (-3254 (((-1168) $) 20)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-4141 (($ (-114) (-639 |#1|) (-766)) 30) (($ (-1168)) 31)) (-1776 (((-112) $ (-114)) 18) (((-112) $ (-1168)) 16)) (-3060 (((-766) $) 22)) (-1709 (((-1112) $) NIL)) (-4208 (((-887 (-562)) $) 77 (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) 84 (|has| |#1| (-610 (-887 (-378))))) (((-535) $) 69 (|has| |#1| (-610 (-535))))) (-4054 (((-857) $) 55)) (-2828 (((-639 |#1|) $) 24)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 41)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 42)))
-(((-608 |#1|) (-13 (-131) (-879 |#1|) (-10 -8 (-15 -3254 ((-1168) $)) (-15 -2876 ((-114) $)) (-15 -2828 ((-639 |#1|) $)) (-15 -3060 ((-766) $)) (-15 -4141 ($ (-114) (-639 |#1|) (-766))) (-15 -4141 ($ (-1168))) (-15 -2918 ((-3 (-1168) "failed") $)) (-15 -1776 ((-112) $ (-114))) (-15 -1776 ((-112) $ (-1168))) (IF (|has| |#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|))) (-845)) (T -608))
-((-3254 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-608 *3)) (-4 *3 (-845)))) (-2876 (*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-608 *3)) (-4 *3 (-845)))) (-2828 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-608 *3)) (-4 *3 (-845)))) (-3060 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-608 *3)) (-4 *3 (-845)))) (-4141 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-114)) (-5 *3 (-639 *5)) (-5 *4 (-766)) (-4 *5 (-845)) (-5 *1 (-608 *5)))) (-4141 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-608 *3)) (-4 *3 (-845)))) (-2918 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-608 *3)) (-4 *3 (-845)))) (-1776 (*1 *2 *1 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-608 *4)) (-4 *4 (-845)))) (-1776 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-608 *4)) (-4 *4 (-845)))))
-(-13 (-131) (-879 |#1|) (-10 -8 (-15 -3254 ((-1168) $)) (-15 -2876 ((-114) $)) (-15 -2828 ((-639 |#1|) $)) (-15 -3060 ((-766) $)) (-15 -4141 ($ (-114) (-639 |#1|) (-766))) (-15 -4141 ($ (-1168))) (-15 -2918 ((-3 (-1168) "failed") $)) (-15 -1776 ((-112) $ (-114))) (-15 -1776 ((-112) $ (-1168))) (IF (|has| |#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|)))
-((-4054 ((|#1| $) 6)))
+((-4278 (*1 *2 *3 *1) (-12 (-4 *1 (-606 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-5 *2 (-112)))) (-1521 (*1 *2 *1) (-12 (-4 *1 (-606 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-5 *2 (-639 *3)))) (-3729 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-606 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))) (-1472 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-606 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))))
+(-13 (-228 (-2 (|:| -2319 |t#1|) (|:| -2693 |t#2|))) (-10 -8 (-15 -4278 ((-112) |t#1| $)) (-15 -1521 ((-639 |t#1|) $)) (-15 -3729 ((-3 |t#2| "failed") |t#1| $)) (-15 -1472 ((-3 |t#2| "failed") |t#1| $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T) ((-102) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) ((-609 (-857)) -4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857)))) ((-150 #0#) . T) ((-610 (-535)) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))) ((-228 #0#) . T) ((-234 #0#) . T) ((-308 #0#) -12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))) ((-488 #0#) . T) ((-513 #0# #0#) -12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))) ((-1092) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) ((-1207) . T))
+((-3427 (((-608 |#2|) |#1|) 15)) (-3516 (((-3 |#1| "failed") (-608 |#2|)) 19)))
+(((-607 |#1| |#2|) (-10 -7 (-15 -3427 ((-608 |#2|) |#1|)) (-15 -3516 ((-3 |#1| "failed") (-608 |#2|)))) (-845) (-845)) (T -607))
+((-3516 (*1 *2 *3) (|partial| -12 (-5 *3 (-608 *4)) (-4 *4 (-845)) (-4 *2 (-845)) (-5 *1 (-607 *2 *4)))) (-3427 (*1 *2 *3) (-12 (-5 *2 (-608 *4)) (-5 *1 (-607 *3 *4)) (-4 *3 (-845)) (-4 *4 (-845)))))
+(-10 -7 (-15 -3427 ((-608 |#2|) |#1|)) (-15 -3516 ((-3 |#1| "failed") (-608 |#2|))))
+((-4041 (((-112) $ $) NIL)) (-3754 (((-3 (-1168) "failed") $) 37)) (-2389 (((-1261) $ (-766)) 26)) (-4265 (((-766) $) 25)) (-1502 (((-114) $) 12)) (-3253 (((-1168) $) 20)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-4141 (($ (-114) (-639 |#1|) (-766)) 30) (($ (-1168)) 31)) (-3115 (((-112) $ (-114)) 18) (((-112) $ (-1168)) 16)) (-3059 (((-766) $) 22)) (-1709 (((-1112) $) NIL)) (-4208 (((-887 (-562)) $) 77 (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) 84 (|has| |#1| (-610 (-887 (-378))))) (((-535) $) 69 (|has| |#1| (-610 (-535))))) (-4053 (((-857) $) 55)) (-2282 (((-639 |#1|) $) 24)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 41)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 42)))
+(((-608 |#1|) (-13 (-131) (-879 |#1|) (-10 -8 (-15 -3253 ((-1168) $)) (-15 -1502 ((-114) $)) (-15 -2282 ((-639 |#1|) $)) (-15 -3059 ((-766) $)) (-15 -4141 ($ (-114) (-639 |#1|) (-766))) (-15 -4141 ($ (-1168))) (-15 -3754 ((-3 (-1168) "failed") $)) (-15 -3115 ((-112) $ (-114))) (-15 -3115 ((-112) $ (-1168))) (IF (|has| |#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|))) (-845)) (T -608))
+((-3253 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-608 *3)) (-4 *3 (-845)))) (-1502 (*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-608 *3)) (-4 *3 (-845)))) (-2282 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-608 *3)) (-4 *3 (-845)))) (-3059 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-608 *3)) (-4 *3 (-845)))) (-4141 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-114)) (-5 *3 (-639 *5)) (-5 *4 (-766)) (-4 *5 (-845)) (-5 *1 (-608 *5)))) (-4141 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-608 *3)) (-4 *3 (-845)))) (-3754 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-608 *3)) (-4 *3 (-845)))) (-3115 (*1 *2 *1 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-608 *4)) (-4 *4 (-845)))) (-3115 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-608 *4)) (-4 *4 (-845)))))
+(-13 (-131) (-879 |#1|) (-10 -8 (-15 -3253 ((-1168) $)) (-15 -1502 ((-114) $)) (-15 -2282 ((-639 |#1|) $)) (-15 -3059 ((-766) $)) (-15 -4141 ($ (-114) (-639 |#1|) (-766))) (-15 -4141 ($ (-1168))) (-15 -3754 ((-3 (-1168) "failed") $)) (-15 -3115 ((-112) $ (-114))) (-15 -3115 ((-112) $ (-1168))) (IF (|has| |#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|)))
+((-4053 ((|#1| $) 6)))
(((-609 |#1|) (-139) (-1207)) (T -609))
-((-4054 (*1 *2 *1) (-12 (-4 *1 (-609 *2)) (-4 *2 (-1207)))))
-(-13 (-10 -8 (-15 -4054 (|t#1| $))))
+((-4053 (*1 *2 *1) (-12 (-4 *1 (-609 *2)) (-4 *2 (-1207)))))
+(-13 (-10 -8 (-15 -4053 (|t#1| $))))
((-4208 ((|#1| $) 6)))
(((-610 |#1|) (-139) (-1207)) (T -610))
((-4208 (*1 *2 *1) (-12 (-4 *1 (-610 *2)) (-4 *2 (-1207)))))
(-13 (-10 -8 (-15 -4208 (|t#1| $))))
-((-4286 (((-3 (-1164 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|) (-1 (-417 |#2|) |#2|)) 15) (((-3 (-1164 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|)) 16)))
-(((-611 |#1| |#2|) (-10 -7 (-15 -4286 ((-3 (-1164 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|))) (-15 -4286 ((-3 (-1164 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|) (-1 (-417 |#2|) |#2|)))) (-13 (-146) (-27) (-1033 (-562)) (-1033 (-406 (-562)))) (-1232 |#1|)) (T -611))
-((-4286 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-146) (-27) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-1164 (-406 *6))) (-5 *1 (-611 *5 *6)) (-5 *3 (-406 *6)))) (-4286 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-146) (-27) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *2 (-1164 (-406 *5))) (-5 *1 (-611 *4 *5)) (-5 *3 (-406 *5)))))
-(-10 -7 (-15 -4286 ((-3 (-1164 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|))) (-15 -4286 ((-3 (-1164 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|) (-1 (-417 |#2|) |#2|))))
-((-4054 (($ |#1|) 6)))
+((-1398 (((-3 (-1164 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|) (-1 (-417 |#2|) |#2|)) 15) (((-3 (-1164 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|)) 16)))
+(((-611 |#1| |#2|) (-10 -7 (-15 -1398 ((-3 (-1164 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|))) (-15 -1398 ((-3 (-1164 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|) (-1 (-417 |#2|) |#2|)))) (-13 (-146) (-27) (-1033 (-562)) (-1033 (-406 (-562)))) (-1232 |#1|)) (T -611))
+((-1398 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-146) (-27) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-1164 (-406 *6))) (-5 *1 (-611 *5 *6)) (-5 *3 (-406 *6)))) (-1398 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-146) (-27) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *2 (-1164 (-406 *5))) (-5 *1 (-611 *4 *5)) (-5 *3 (-406 *5)))))
+(-10 -7 (-15 -1398 ((-3 (-1164 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|))) (-15 -1398 ((-3 (-1164 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|) (-1 (-417 |#2|) |#2|))))
+((-4053 (($ |#1|) 6)))
(((-612 |#1|) (-139) (-1207)) (T -612))
-((-4054 (*1 *1 *2) (-12 (-4 *1 (-612 *2)) (-4 *2 (-1207)))))
-(-13 (-10 -8 (-15 -4054 ($ |t#1|))))
-((-4041 (((-112) $ $) NIL)) (-4378 (($) 8 T CONST)) (-2797 (($) 9 T CONST)) (-2255 (($ $ $) 21)) (-2236 (($ $) 19)) (-2913 (((-1150) $) NIL)) (-3994 (($ $ $) 22)) (-1709 (((-1112) $) NIL)) (-1615 (($) 7 T CONST)) (-1935 (($ $ $) 23)) (-4054 (((-857) $) 27)) (-2276 (((-112) $ (|[\|\|]| -1615)) 16) (((-112) $ (|[\|\|]| -4378)) 18) (((-112) $ (|[\|\|]| -2797)) 14)) (-2246 (($ $ $) 20)) (-1731 (((-112) $ $) 12)))
-(((-613) (-13 (-962) (-10 -8 (-15 -1615 ($) -1497) (-15 -4378 ($) -1497) (-15 -2797 ($) -1497) (-15 -2276 ((-112) $ (|[\|\|]| -1615))) (-15 -2276 ((-112) $ (|[\|\|]| -4378))) (-15 -2276 ((-112) $ (|[\|\|]| -2797)))))) (T -613))
-((-1615 (*1 *1) (-5 *1 (-613))) (-4378 (*1 *1) (-5 *1 (-613))) (-2797 (*1 *1) (-5 *1 (-613))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1615)) (-5 *2 (-112)) (-5 *1 (-613)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -4378)) (-5 *2 (-112)) (-5 *1 (-613)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -2797)) (-5 *2 (-112)) (-5 *1 (-613)))))
-(-13 (-962) (-10 -8 (-15 -1615 ($) -1497) (-15 -4378 ($) -1497) (-15 -2797 ($) -1497) (-15 -2276 ((-112) $ (|[\|\|]| -1615))) (-15 -2276 ((-112) $ (|[\|\|]| -4378))) (-15 -2276 ((-112) $ (|[\|\|]| -2797)))))
+((-4053 (*1 *1 *2) (-12 (-4 *1 (-612 *2)) (-4 *2 (-1207)))))
+(-13 (-10 -8 (-15 -4053 ($ |t#1|))))
+((-4041 (((-112) $ $) NIL)) (-4380 (($) 8 T CONST)) (-2796 (($) 9 T CONST)) (-2256 (($ $ $) 21)) (-2234 (($ $) 19)) (-3696 (((-1150) $) NIL)) (-3664 (($ $ $) 22)) (-1709 (((-1112) $) NIL)) (-1615 (($) 7 T CONST)) (-4166 (($ $ $) 23)) (-4053 (((-857) $) 27)) (-2276 (((-112) $ (|[\|\|]| -1615)) 16) (((-112) $ (|[\|\|]| -4380)) 18) (((-112) $ (|[\|\|]| -2796)) 14)) (-2245 (($ $ $) 20)) (-1733 (((-112) $ $) 12)))
+(((-613) (-13 (-962) (-10 -8 (-15 -1615 ($) -1497) (-15 -4380 ($) -1497) (-15 -2796 ($) -1497) (-15 -2276 ((-112) $ (|[\|\|]| -1615))) (-15 -2276 ((-112) $ (|[\|\|]| -4380))) (-15 -2276 ((-112) $ (|[\|\|]| -2796)))))) (T -613))
+((-1615 (*1 *1) (-5 *1 (-613))) (-4380 (*1 *1) (-5 *1 (-613))) (-2796 (*1 *1) (-5 *1 (-613))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1615)) (-5 *2 (-112)) (-5 *1 (-613)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -4380)) (-5 *2 (-112)) (-5 *1 (-613)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -2796)) (-5 *2 (-112)) (-5 *1 (-613)))))
+(-13 (-962) (-10 -8 (-15 -1615 ($) -1497) (-15 -4380 ($) -1497) (-15 -2796 ($) -1497) (-15 -2276 ((-112) $ (|[\|\|]| -1615))) (-15 -2276 ((-112) $ (|[\|\|]| -4380))) (-15 -2276 ((-112) $ (|[\|\|]| -2796)))))
((-4208 (($ |#1|) 6)))
(((-614 |#1|) (-139) (-1207)) (T -614))
((-4208 (*1 *1 *2) (-12 (-4 *1 (-614 *2)) (-4 *2 (-1207)))))
(-13 (-10 -8 (-15 -4208 ($ |t#1|))))
-((-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) 10)))
-(((-615 |#1| |#2|) (-10 -8 (-15 -4054 (|#1| |#2|)) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|))) (-616 |#2|) (-1044)) (T -615))
+((-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) 10)))
+(((-615 |#1| |#2|) (-10 -8 (-15 -4053 (|#1| |#2|)) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|))) (-616 |#2|) (-1044)) (T -615))
NIL
-(-10 -8 (-15 -4054 (|#1| |#2|)) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 36)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ |#1| $) 37)))
+(-10 -8 (-15 -4053 (|#1| |#2|)) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 36)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ |#1| $) 37)))
(((-616 |#1|) (-139) (-1044)) (T -616))
-((-4054 (*1 *1 *2) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1044)))))
-(-13 (-1044) (-642 |t#1|) (-10 -8 (-15 -4054 ($ |t#1|))))
+((-4053 (*1 *1 *2) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1044)))))
+(-13 (-1044) (-642 |t#1|) (-10 -8 (-15 -4053 ($ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-642 |#1|) . T) ((-642 $) . T) ((-721) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2277 (((-562) $) NIL (|has| |#1| (-843)))) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) NIL)) (-3519 (((-112) $) NIL (|has| |#1| (-843)))) (-1957 (((-112) $) NIL)) (-4065 ((|#1| $) 13)) (-3392 (((-112) $) NIL (|has| |#1| (-843)))) (-1551 (($ $ $) NIL (|has| |#1| (-843)))) (-2993 (($ $ $) NIL (|has| |#1| (-843)))) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4076 ((|#3| $) 15)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) NIL)) (-2579 (((-766)) 20)) (-3526 (($ $) NIL (|has| |#1| (-843)))) (-2286 (($) NIL T CONST)) (-2294 (($) 12 T CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1859 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-617 |#1| |#2| |#3|) (-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-843)) (-6 (-843)) |%noBranch|) (-15 -1859 ($ $ |#3|)) (-15 -1859 ($ |#1| |#3|)) (-15 -4065 (|#1| $)) (-15 -4076 (|#3| $)))) (-38 |#2|) (-171) (|SubsetCategory| (-721) |#2|)) (T -617))
-((-1859 (*1 *1 *1 *2) (-12 (-4 *4 (-171)) (-5 *1 (-617 *3 *4 *2)) (-4 *3 (-38 *4)) (-4 *2 (|SubsetCategory| (-721) *4)))) (-1859 (*1 *1 *2 *3) (-12 (-4 *4 (-171)) (-5 *1 (-617 *2 *4 *3)) (-4 *2 (-38 *4)) (-4 *3 (|SubsetCategory| (-721) *4)))) (-4065 (*1 *2 *1) (-12 (-4 *3 (-171)) (-4 *2 (-38 *3)) (-5 *1 (-617 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-721) *3)))) (-4076 (*1 *2 *1) (-12 (-4 *4 (-171)) (-4 *2 (|SubsetCategory| (-721) *4)) (-5 *1 (-617 *3 *4 *2)) (-4 *3 (-38 *4)))))
-(-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-843)) (-6 (-843)) |%noBranch|) (-15 -1859 ($ $ |#3|)) (-15 -1859 ($ |#1| |#3|)) (-15 -4065 (|#1| $)) (-15 -4076 (|#3| $))))
-((-3945 ((|#2| |#2| (-1168) (-1168)) 18)))
-(((-618 |#1| |#2|) (-10 -7 (-15 -3945 (|#2| |#2| (-1168) (-1168)))) (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-954) (-29 |#1|))) (T -618))
-((-3945 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-618 *4 *2)) (-4 *2 (-13 (-1192) (-954) (-29 *4))))))
-(-10 -7 (-15 -3945 (|#2| |#2| (-1168) (-1168))))
-((-4041 (((-112) $ $) 56)) (-1952 (((-112) $) 52)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-1906 ((|#1| $) 49)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4157 (((-2 (|:| -2401 $) (|:| -3937 (-406 |#2|))) (-406 |#2|)) 97 (|has| |#1| (-362)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 85) (((-3 |#2| "failed") $) 81)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1601 (($ $) 24)) (-3668 (((-3 $ "failed") $) 75)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-1900 (((-562) $) 19)) (-1957 (((-112) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3536 (((-112) $) 36)) (-1378 (($ |#1| (-562)) 21)) (-1573 ((|#1| $) 51)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) 87 (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 101 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ $) 79)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1577 (((-766) $) 100 (|has| |#1| (-362)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 99 (|has| |#1| (-362)))) (-4029 (($ $ (-1 |#2| |#2|)) 66) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $) NIL (|has| |#2| (-232)))) (-3598 (((-562) $) 34)) (-4208 (((-406 |#2|) $) 42)) (-4054 (((-857) $) 62) (($ (-562)) 32) (($ $) NIL) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) 31) (($ |#2|) 22)) (-3906 ((|#1| $ (-562)) 63)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) 29)) (-2922 (((-112) $ $) NIL)) (-2286 (($) 9 T CONST)) (-2294 (($) 12 T CONST)) (-3114 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $) NIL (|has| |#2| (-232)))) (-1731 (((-112) $ $) 17)) (-1848 (($ $) 46) (($ $ $) NIL)) (-1835 (($ $ $) 76)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 26) (($ $ $) 44)))
-(((-619 |#1| |#2|) (-13 (-230 |#2|) (-554) (-610 (-406 |#2|)) (-410 |#1|) (-1033 |#2|) (-10 -8 (-15 -3536 ((-112) $)) (-15 -3598 ((-562) $)) (-15 -1900 ((-562) $)) (-15 -1601 ($ $)) (-15 -1573 (|#1| $)) (-15 -1906 (|#1| $)) (-15 -3906 (|#1| $ (-562))) (-15 -1378 ($ |#1| (-562))) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-6 (-306)) (-15 -4157 ((-2 (|:| -2401 $) (|:| -3937 (-406 |#2|))) (-406 |#2|)))) |%noBranch|))) (-554) (-1232 |#1|)) (T -619))
-((-3536 (*1 *2 *1) (-12 (-4 *3 (-554)) (-5 *2 (-112)) (-5 *1 (-619 *3 *4)) (-4 *4 (-1232 *3)))) (-3598 (*1 *2 *1) (-12 (-4 *3 (-554)) (-5 *2 (-562)) (-5 *1 (-619 *3 *4)) (-4 *4 (-1232 *3)))) (-1900 (*1 *2 *1) (-12 (-4 *3 (-554)) (-5 *2 (-562)) (-5 *1 (-619 *3 *4)) (-4 *4 (-1232 *3)))) (-1601 (*1 *1 *1) (-12 (-4 *2 (-554)) (-5 *1 (-619 *2 *3)) (-4 *3 (-1232 *2)))) (-1573 (*1 *2 *1) (-12 (-4 *2 (-554)) (-5 *1 (-619 *2 *3)) (-4 *3 (-1232 *2)))) (-1906 (*1 *2 *1) (-12 (-4 *2 (-554)) (-5 *1 (-619 *2 *3)) (-4 *3 (-1232 *2)))) (-3906 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *2 (-554)) (-5 *1 (-619 *2 *4)) (-4 *4 (-1232 *2)))) (-1378 (*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-4 *2 (-554)) (-5 *1 (-619 *2 *4)) (-4 *4 (-1232 *2)))) (-4157 (*1 *2 *3) (-12 (-4 *4 (-362)) (-4 *4 (-554)) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| -2401 (-619 *4 *5)) (|:| -3937 (-406 *5)))) (-5 *1 (-619 *4 *5)) (-5 *3 (-406 *5)))))
-(-13 (-230 |#2|) (-554) (-610 (-406 |#2|)) (-410 |#1|) (-1033 |#2|) (-10 -8 (-15 -3536 ((-112) $)) (-15 -3598 ((-562) $)) (-15 -1900 ((-562) $)) (-15 -1601 ($ $)) (-15 -1573 (|#1| $)) (-15 -1906 (|#1| $)) (-15 -3906 (|#1| $ (-562))) (-15 -1378 ($ |#1| (-562))) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-6 (-306)) (-15 -4157 ((-2 (|:| -2401 $) (|:| -3937 (-406 |#2|))) (-406 |#2|)))) |%noBranch|)))
-((-2304 (((-639 |#6|) (-639 |#4|) (-112)) 46)) (-2618 ((|#6| |#6|) 39)))
-(((-620 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2618 (|#6| |#6|)) (-15 -2304 ((-639 |#6|) (-639 |#4|) (-112)))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|) (-1101 |#1| |#2| |#3| |#4|)) (T -620))
-((-2304 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 *10)) (-5 *1 (-620 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *10 (-1101 *5 *6 *7 *8)))) (-2618 (*1 *2 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *1 (-620 *3 *4 *5 *6 *7 *2)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *2 (-1101 *3 *4 *5 *6)))))
-(-10 -7 (-15 -2618 (|#6| |#6|)) (-15 -2304 ((-639 |#6|) (-639 |#4|) (-112))))
-((-4249 (((-112) |#3| (-766) (-639 |#3|)) 23)) (-1796 (((-3 (-2 (|:| |polfac| (-639 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-639 (-1164 |#3|)))) "failed") |#3| (-639 (-1164 |#3|)) (-2 (|:| |contp| |#3|) (|:| -1510 (-639 (-2 (|:| |irr| |#4|) (|:| -2762 (-562)))))) (-639 |#3|) (-639 |#1|) (-639 |#3|)) 55)))
-(((-621 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4249 ((-112) |#3| (-766) (-639 |#3|))) (-15 -1796 ((-3 (-2 (|:| |polfac| (-639 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-639 (-1164 |#3|)))) "failed") |#3| (-639 (-1164 |#3|)) (-2 (|:| |contp| |#3|) (|:| -1510 (-639 (-2 (|:| |irr| |#4|) (|:| -2762 (-562)))))) (-639 |#3|) (-639 |#1|) (-639 |#3|)))) (-845) (-788) (-306) (-944 |#3| |#2| |#1|)) (T -621))
-((-1796 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -1510 (-639 (-2 (|:| |irr| *10) (|:| -2762 (-562))))))) (-5 *6 (-639 *3)) (-5 *7 (-639 *8)) (-4 *8 (-845)) (-4 *3 (-306)) (-4 *10 (-944 *3 *9 *8)) (-4 *9 (-788)) (-5 *2 (-2 (|:| |polfac| (-639 *10)) (|:| |correct| *3) (|:| |corrfact| (-639 (-1164 *3))))) (-5 *1 (-621 *8 *9 *3 *10)) (-5 *4 (-639 (-1164 *3))))) (-4249 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-766)) (-5 *5 (-639 *3)) (-4 *3 (-306)) (-4 *6 (-845)) (-4 *7 (-788)) (-5 *2 (-112)) (-5 *1 (-621 *6 *7 *3 *8)) (-4 *8 (-944 *3 *7 *6)))))
-(-10 -7 (-15 -4249 ((-112) |#3| (-766) (-639 |#3|))) (-15 -1796 ((-3 (-2 (|:| |polfac| (-639 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-639 (-1164 |#3|)))) "failed") |#3| (-639 (-1164 |#3|)) (-2 (|:| |contp| |#3|) (|:| -1510 (-639 (-2 (|:| |irr| |#4|) (|:| -2762 (-562)))))) (-639 |#3|) (-639 |#1|) (-639 |#3|))))
-((-4041 (((-112) $ $) NIL)) (-4328 (((-1127) $) 11)) (-4316 (((-1127) $) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-622) (-13 (-1075) (-10 -8 (-15 -4316 ((-1127) $)) (-15 -4328 ((-1127) $))))) (T -622))
-((-4316 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-622)))) (-4328 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-622)))))
-(-13 (-1075) (-10 -8 (-15 -4316 ((-1127) $)) (-15 -4328 ((-1127) $))))
-((-4041 (((-112) $ $) NIL)) (-2852 (((-639 |#1|) $) NIL)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) NIL)) (-1957 (((-112) $) NIL)) (-3818 (($ $) 67)) (-4365 (((-658 |#1| |#2|) $) 52)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 70)) (-1446 (((-639 (-293 |#2|)) $ $) 33)) (-1709 (((-1112) $) NIL)) (-3430 (($ (-658 |#1| |#2|)) 48)) (-3665 (($ $ $) NIL)) (-1911 (($ $ $) NIL)) (-4054 (((-857) $) 58) (((-1271 |#1| |#2|) $) NIL) (((-1276 |#1| |#2|) $) 66)) (-2294 (($) 53 T CONST)) (-3070 (((-639 (-2 (|:| |k| (-666 |#1|)) (|:| |c| |#2|))) $) 31)) (-2848 (((-639 (-658 |#1| |#2|)) (-639 |#1|)) 65)) (-2516 (((-639 (-2 (|:| |k| (-888 |#1|)) (|:| |c| |#2|))) $) 37)) (-1731 (((-112) $ $) 54)) (-1859 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ $ $) 44)))
-(((-623 |#1| |#2| |#3|) (-13 (-472) (-10 -8 (-15 -3430 ($ (-658 |#1| |#2|))) (-15 -4365 ((-658 |#1| |#2|) $)) (-15 -2516 ((-639 (-2 (|:| |k| (-888 |#1|)) (|:| |c| |#2|))) $)) (-15 -4054 ((-1271 |#1| |#2|) $)) (-15 -4054 ((-1276 |#1| |#2|) $)) (-15 -3818 ($ $)) (-15 -2852 ((-639 |#1|) $)) (-15 -2848 ((-639 (-658 |#1| |#2|)) (-639 |#1|))) (-15 -3070 ((-639 (-2 (|:| |k| (-666 |#1|)) (|:| |c| |#2|))) $)) (-15 -1446 ((-639 (-293 |#2|)) $ $)))) (-845) (-13 (-171) (-712 (-406 (-562)))) (-916)) (T -623))
-((-3430 (*1 *1 *2) (-12 (-5 *2 (-658 *3 *4)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-5 *1 (-623 *3 *4 *5)) (-14 *5 (-916)))) (-4365 (*1 *2 *1) (-12 (-5 *2 (-658 *3 *4)) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))) (-2516 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |k| (-888 *3)) (|:| |c| *4)))) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-1271 *3 *4)) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-1276 *3 *4)) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))) (-3818 (*1 *1 *1) (-12 (-5 *1 (-623 *2 *3 *4)) (-4 *2 (-845)) (-4 *3 (-13 (-171) (-712 (-406 (-562))))) (-14 *4 (-916)))) (-2852 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))) (-2848 (*1 *2 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-845)) (-5 *2 (-639 (-658 *4 *5))) (-5 *1 (-623 *4 *5 *6)) (-4 *5 (-13 (-171) (-712 (-406 (-562))))) (-14 *6 (-916)))) (-3070 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |k| (-666 *3)) (|:| |c| *4)))) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))) (-1446 (*1 *2 *1 *1) (-12 (-5 *2 (-639 (-293 *4))) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))))
-(-13 (-472) (-10 -8 (-15 -3430 ($ (-658 |#1| |#2|))) (-15 -4365 ((-658 |#1| |#2|) $)) (-15 -2516 ((-639 (-2 (|:| |k| (-888 |#1|)) (|:| |c| |#2|))) $)) (-15 -4054 ((-1271 |#1| |#2|) $)) (-15 -4054 ((-1276 |#1| |#2|) $)) (-15 -3818 ($ $)) (-15 -2852 ((-639 |#1|) $)) (-15 -2848 ((-639 (-658 |#1| |#2|)) (-639 |#1|))) (-15 -3070 ((-639 (-2 (|:| |k| (-666 |#1|)) (|:| |c| |#2|))) $)) (-15 -1446 ((-639 (-293 |#2|)) $ $))))
-((-2304 (((-639 (-1138 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|)))) (-639 (-775 |#1| (-859 |#2|))) (-112)) 71) (((-639 (-1041 |#1| |#2|)) (-639 (-775 |#1| (-859 |#2|))) (-112)) 57)) (-1453 (((-112) (-639 (-775 |#1| (-859 |#2|)))) 23)) (-3089 (((-639 (-1138 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|)))) (-639 (-775 |#1| (-859 |#2|))) (-112)) 70)) (-3537 (((-639 (-1041 |#1| |#2|)) (-639 (-775 |#1| (-859 |#2|))) (-112)) 56)) (-2769 (((-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|)))) 27)) (-3065 (((-3 (-639 (-775 |#1| (-859 |#2|))) "failed") (-639 (-775 |#1| (-859 |#2|)))) 26)))
-(((-624 |#1| |#2|) (-10 -7 (-15 -1453 ((-112) (-639 (-775 |#1| (-859 |#2|))))) (-15 -3065 ((-3 (-639 (-775 |#1| (-859 |#2|))) "failed") (-639 (-775 |#1| (-859 |#2|))))) (-15 -2769 ((-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|))))) (-15 -3537 ((-639 (-1041 |#1| |#2|)) (-639 (-775 |#1| (-859 |#2|))) (-112))) (-15 -3089 ((-639 (-1138 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|)))) (-639 (-775 |#1| (-859 |#2|))) (-112))) (-15 -2304 ((-639 (-1041 |#1| |#2|)) (-639 (-775 |#1| (-859 |#2|))) (-112))) (-15 -2304 ((-639 (-1138 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|)))) (-639 (-775 |#1| (-859 |#2|))) (-112)))) (-451) (-639 (-1168))) (T -624))
-((-2304 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451)) (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1138 *5 (-530 (-859 *6)) (-859 *6) (-775 *5 (-859 *6))))) (-5 *1 (-624 *5 *6)))) (-2304 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451)) (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-624 *5 *6)))) (-3089 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451)) (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1138 *5 (-530 (-859 *6)) (-859 *6) (-775 *5 (-859 *6))))) (-5 *1 (-624 *5 *6)))) (-3537 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451)) (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-624 *5 *6)))) (-2769 (*1 *2 *2) (-12 (-5 *2 (-639 (-775 *3 (-859 *4)))) (-4 *3 (-451)) (-14 *4 (-639 (-1168))) (-5 *1 (-624 *3 *4)))) (-3065 (*1 *2 *2) (|partial| -12 (-5 *2 (-639 (-775 *3 (-859 *4)))) (-4 *3 (-451)) (-14 *4 (-639 (-1168))) (-5 *1 (-624 *3 *4)))) (-1453 (*1 *2 *3) (-12 (-5 *3 (-639 (-775 *4 (-859 *5)))) (-4 *4 (-451)) (-14 *5 (-639 (-1168))) (-5 *2 (-112)) (-5 *1 (-624 *4 *5)))))
-(-10 -7 (-15 -1453 ((-112) (-639 (-775 |#1| (-859 |#2|))))) (-15 -3065 ((-3 (-639 (-775 |#1| (-859 |#2|))) "failed") (-639 (-775 |#1| (-859 |#2|))))) (-15 -2769 ((-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|))))) (-15 -3537 ((-639 (-1041 |#1| |#2|)) (-639 (-775 |#1| (-859 |#2|))) (-112))) (-15 -3089 ((-639 (-1138 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|)))) (-639 (-775 |#1| (-859 |#2|))) (-112))) (-15 -2304 ((-639 (-1041 |#1| |#2|)) (-639 (-775 |#1| (-859 |#2|))) (-112))) (-15 -2304 ((-639 (-1138 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|)))) (-639 (-775 |#1| (-859 |#2|))) (-112))))
-((-2988 (($ $) 38)) (-4097 (($ $) 21)) (-4207 (($ $) 37)) (-4074 (($ $) 22)) (-3014 (($ $) 36)) (-4119 (($ $) 23)) (-4100 (($) 48)) (-4365 (($ $) 45)) (-2033 (($ $) 17)) (-1982 (($ $ (-1084 $)) 7) (($ $ (-1168)) 6)) (-3430 (($ $) 46)) (-4021 (($ $) 15)) (-4056 (($ $) 16)) (-3023 (($ $) 35)) (-4130 (($ $) 24)) (-3001 (($ $) 34)) (-4108 (($ $) 25)) (-2978 (($ $) 33)) (-4087 (($ $) 26)) (-3055 (($ $) 44)) (-4165 (($ $) 32)) (-3033 (($ $) 43)) (-4138 (($ $) 31)) (-3078 (($ $) 42)) (-4182 (($ $) 30)) (-1566 (($ $) 41)) (-4195 (($ $) 29)) (-3066 (($ $) 40)) (-4174 (($ $) 28)) (-3044 (($ $) 39)) (-4151 (($ $) 27)) (-4083 (($ $) 19)) (-2537 (($ $) 20)) (-4361 (($ $) 18)) (** (($ $ $) 47)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1587 (((-562) $) NIL (|has| |#1| (-843)))) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) NIL)) (-2696 (((-112) $) NIL (|has| |#1| (-843)))) (-4367 (((-112) $) NIL)) (-4063 ((|#1| $) 13)) (-3855 (((-112) $) NIL (|has| |#1| (-843)))) (-1551 (($ $ $) NIL (|has| |#1| (-843)))) (-2993 (($ $ $) NIL (|has| |#1| (-843)))) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4079 ((|#3| $) 15)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) NIL)) (-1568 (((-766)) 20)) (-2757 (($ $) NIL (|has| |#1| (-843)))) (-2285 (($) NIL T CONST)) (-2294 (($) 12 T CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1859 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-617 |#1| |#2| |#3|) (-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-843)) (-6 (-843)) |%noBranch|) (-15 -1859 ($ $ |#3|)) (-15 -1859 ($ |#1| |#3|)) (-15 -4063 (|#1| $)) (-15 -4079 (|#3| $)))) (-38 |#2|) (-171) (|SubsetCategory| (-721) |#2|)) (T -617))
+((-1859 (*1 *1 *1 *2) (-12 (-4 *4 (-171)) (-5 *1 (-617 *3 *4 *2)) (-4 *3 (-38 *4)) (-4 *2 (|SubsetCategory| (-721) *4)))) (-1859 (*1 *1 *2 *3) (-12 (-4 *4 (-171)) (-5 *1 (-617 *2 *4 *3)) (-4 *2 (-38 *4)) (-4 *3 (|SubsetCategory| (-721) *4)))) (-4063 (*1 *2 *1) (-12 (-4 *3 (-171)) (-4 *2 (-38 *3)) (-5 *1 (-617 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-721) *3)))) (-4079 (*1 *2 *1) (-12 (-4 *4 (-171)) (-4 *2 (|SubsetCategory| (-721) *4)) (-5 *1 (-617 *3 *4 *2)) (-4 *3 (-38 *4)))))
+(-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-843)) (-6 (-843)) |%noBranch|) (-15 -1859 ($ $ |#3|)) (-15 -1859 ($ |#1| |#3|)) (-15 -4063 (|#1| $)) (-15 -4079 (|#3| $))))
+((-1357 ((|#2| |#2| (-1168) (-1168)) 18)))
+(((-618 |#1| |#2|) (-10 -7 (-15 -1357 (|#2| |#2| (-1168) (-1168)))) (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-954) (-29 |#1|))) (T -618))
+((-1357 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-618 *4 *2)) (-4 *2 (-13 (-1192) (-954) (-29 *4))))))
+(-10 -7 (-15 -1357 (|#2| |#2| (-1168) (-1168))))
+((-4041 (((-112) $ $) 56)) (-4325 (((-112) $) 52)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2060 ((|#1| $) 49)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-2687 (((-2 (|:| -3408 $) (|:| -4374 (-406 |#2|))) (-406 |#2|)) 97 (|has| |#1| (-362)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 85) (((-3 |#2| "failed") $) 81)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-1600 (($ $) 24)) (-1694 (((-3 $ "failed") $) 75)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-1993 (((-562) $) 19)) (-4367 (((-112) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-2833 (((-112) $) 36)) (-1377 (($ |#1| (-562)) 21)) (-1573 ((|#1| $) 51)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) 87 (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 101 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ $) 79)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-2044 (((-766) $) 100 (|has| |#1| (-362)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 99 (|has| |#1| (-362)))) (-4029 (($ $ (-1 |#2| |#2|)) 66) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $) NIL (|has| |#2| (-232)))) (-2250 (((-562) $) 34)) (-4208 (((-406 |#2|) $) 42)) (-4053 (((-857) $) 62) (($ (-562)) 32) (($ $) NIL) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) 31) (($ |#2|) 22)) (-2266 ((|#1| $ (-562)) 63)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) 29)) (-3799 (((-112) $ $) NIL)) (-2285 (($) 9 T CONST)) (-2294 (($) 12 T CONST)) (-3113 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $) NIL (|has| |#2| (-232)))) (-1733 (((-112) $ $) 17)) (-1847 (($ $) 46) (($ $ $) NIL)) (-1836 (($ $ $) 76)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 26) (($ $ $) 44)))
+(((-619 |#1| |#2|) (-13 (-230 |#2|) (-554) (-610 (-406 |#2|)) (-410 |#1|) (-1033 |#2|) (-10 -8 (-15 -2833 ((-112) $)) (-15 -2250 ((-562) $)) (-15 -1993 ((-562) $)) (-15 -1600 ($ $)) (-15 -1573 (|#1| $)) (-15 -2060 (|#1| $)) (-15 -2266 (|#1| $ (-562))) (-15 -1377 ($ |#1| (-562))) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-6 (-306)) (-15 -2687 ((-2 (|:| -3408 $) (|:| -4374 (-406 |#2|))) (-406 |#2|)))) |%noBranch|))) (-554) (-1232 |#1|)) (T -619))
+((-2833 (*1 *2 *1) (-12 (-4 *3 (-554)) (-5 *2 (-112)) (-5 *1 (-619 *3 *4)) (-4 *4 (-1232 *3)))) (-2250 (*1 *2 *1) (-12 (-4 *3 (-554)) (-5 *2 (-562)) (-5 *1 (-619 *3 *4)) (-4 *4 (-1232 *3)))) (-1993 (*1 *2 *1) (-12 (-4 *3 (-554)) (-5 *2 (-562)) (-5 *1 (-619 *3 *4)) (-4 *4 (-1232 *3)))) (-1600 (*1 *1 *1) (-12 (-4 *2 (-554)) (-5 *1 (-619 *2 *3)) (-4 *3 (-1232 *2)))) (-1573 (*1 *2 *1) (-12 (-4 *2 (-554)) (-5 *1 (-619 *2 *3)) (-4 *3 (-1232 *2)))) (-2060 (*1 *2 *1) (-12 (-4 *2 (-554)) (-5 *1 (-619 *2 *3)) (-4 *3 (-1232 *2)))) (-2266 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *2 (-554)) (-5 *1 (-619 *2 *4)) (-4 *4 (-1232 *2)))) (-1377 (*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-4 *2 (-554)) (-5 *1 (-619 *2 *4)) (-4 *4 (-1232 *2)))) (-2687 (*1 *2 *3) (-12 (-4 *4 (-362)) (-4 *4 (-554)) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| -3408 (-619 *4 *5)) (|:| -4374 (-406 *5)))) (-5 *1 (-619 *4 *5)) (-5 *3 (-406 *5)))))
+(-13 (-230 |#2|) (-554) (-610 (-406 |#2|)) (-410 |#1|) (-1033 |#2|) (-10 -8 (-15 -2833 ((-112) $)) (-15 -2250 ((-562) $)) (-15 -1993 ((-562) $)) (-15 -1600 ($ $)) (-15 -1573 (|#1| $)) (-15 -2060 (|#1| $)) (-15 -2266 (|#1| $ (-562))) (-15 -1377 ($ |#1| (-562))) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-6 (-306)) (-15 -2687 ((-2 (|:| -3408 $) (|:| -4374 (-406 |#2|))) (-406 |#2|)))) |%noBranch|)))
+((-3672 (((-639 |#6|) (-639 |#4|) (-112)) 46)) (-3793 ((|#6| |#6|) 39)))
+(((-620 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3793 (|#6| |#6|)) (-15 -3672 ((-639 |#6|) (-639 |#4|) (-112)))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|) (-1101 |#1| |#2| |#3| |#4|)) (T -620))
+((-3672 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 *10)) (-5 *1 (-620 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *10 (-1101 *5 *6 *7 *8)))) (-3793 (*1 *2 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *1 (-620 *3 *4 *5 *6 *7 *2)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *2 (-1101 *3 *4 *5 *6)))))
+(-10 -7 (-15 -3793 (|#6| |#6|)) (-15 -3672 ((-639 |#6|) (-639 |#4|) (-112))))
+((-2320 (((-112) |#3| (-766) (-639 |#3|)) 23)) (-3305 (((-3 (-2 (|:| |polfac| (-639 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-639 (-1164 |#3|)))) "failed") |#3| (-639 (-1164 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2656 (-639 (-2 (|:| |irr| |#4|) (|:| -2794 (-562)))))) (-639 |#3|) (-639 |#1|) (-639 |#3|)) 55)))
+(((-621 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2320 ((-112) |#3| (-766) (-639 |#3|))) (-15 -3305 ((-3 (-2 (|:| |polfac| (-639 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-639 (-1164 |#3|)))) "failed") |#3| (-639 (-1164 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2656 (-639 (-2 (|:| |irr| |#4|) (|:| -2794 (-562)))))) (-639 |#3|) (-639 |#1|) (-639 |#3|)))) (-845) (-788) (-306) (-944 |#3| |#2| |#1|)) (T -621))
+((-3305 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -2656 (-639 (-2 (|:| |irr| *10) (|:| -2794 (-562))))))) (-5 *6 (-639 *3)) (-5 *7 (-639 *8)) (-4 *8 (-845)) (-4 *3 (-306)) (-4 *10 (-944 *3 *9 *8)) (-4 *9 (-788)) (-5 *2 (-2 (|:| |polfac| (-639 *10)) (|:| |correct| *3) (|:| |corrfact| (-639 (-1164 *3))))) (-5 *1 (-621 *8 *9 *3 *10)) (-5 *4 (-639 (-1164 *3))))) (-2320 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-766)) (-5 *5 (-639 *3)) (-4 *3 (-306)) (-4 *6 (-845)) (-4 *7 (-788)) (-5 *2 (-112)) (-5 *1 (-621 *6 *7 *3 *8)) (-4 *8 (-944 *3 *7 *6)))))
+(-10 -7 (-15 -2320 ((-112) |#3| (-766) (-639 |#3|))) (-15 -3305 ((-3 (-2 (|:| |polfac| (-639 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-639 (-1164 |#3|)))) "failed") |#3| (-639 (-1164 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2656 (-639 (-2 (|:| |irr| |#4|) (|:| -2794 (-562)))))) (-639 |#3|) (-639 |#1|) (-639 |#3|))))
+((-4041 (((-112) $ $) NIL)) (-4330 (((-1127) $) 11)) (-4318 (((-1127) $) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-622) (-13 (-1075) (-10 -8 (-15 -4318 ((-1127) $)) (-15 -4330 ((-1127) $))))) (T -622))
+((-4318 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-622)))) (-4330 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-622)))))
+(-13 (-1075) (-10 -8 (-15 -4318 ((-1127) $)) (-15 -4330 ((-1127) $))))
+((-4041 (((-112) $ $) NIL)) (-2850 (((-639 |#1|) $) NIL)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) NIL)) (-4367 (((-112) $) NIL)) (-2572 (($ $) 67)) (-4366 (((-658 |#1| |#2|) $) 52)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 70)) (-2281 (((-639 (-293 |#2|)) $ $) 33)) (-1709 (((-1112) $) NIL)) (-3430 (($ (-658 |#1| |#2|)) 48)) (-1660 (($ $ $) NIL)) (-2114 (($ $ $) NIL)) (-4053 (((-857) $) 58) (((-1271 |#1| |#2|) $) NIL) (((-1276 |#1| |#2|) $) 66)) (-2294 (($) 53 T CONST)) (-3825 (((-639 (-2 (|:| |k| (-666 |#1|)) (|:| |c| |#2|))) $) 31)) (-4292 (((-639 (-658 |#1| |#2|)) (-639 |#1|)) 65)) (-2174 (((-639 (-2 (|:| |k| (-888 |#1|)) (|:| |c| |#2|))) $) 37)) (-1733 (((-112) $ $) 54)) (-1859 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ $ $) 44)))
+(((-623 |#1| |#2| |#3|) (-13 (-472) (-10 -8 (-15 -3430 ($ (-658 |#1| |#2|))) (-15 -4366 ((-658 |#1| |#2|) $)) (-15 -2174 ((-639 (-2 (|:| |k| (-888 |#1|)) (|:| |c| |#2|))) $)) (-15 -4053 ((-1271 |#1| |#2|) $)) (-15 -4053 ((-1276 |#1| |#2|) $)) (-15 -2572 ($ $)) (-15 -2850 ((-639 |#1|) $)) (-15 -4292 ((-639 (-658 |#1| |#2|)) (-639 |#1|))) (-15 -3825 ((-639 (-2 (|:| |k| (-666 |#1|)) (|:| |c| |#2|))) $)) (-15 -2281 ((-639 (-293 |#2|)) $ $)))) (-845) (-13 (-171) (-712 (-406 (-562)))) (-916)) (T -623))
+((-3430 (*1 *1 *2) (-12 (-5 *2 (-658 *3 *4)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-5 *1 (-623 *3 *4 *5)) (-14 *5 (-916)))) (-4366 (*1 *2 *1) (-12 (-5 *2 (-658 *3 *4)) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))) (-2174 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |k| (-888 *3)) (|:| |c| *4)))) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-1271 *3 *4)) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-1276 *3 *4)) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))) (-2572 (*1 *1 *1) (-12 (-5 *1 (-623 *2 *3 *4)) (-4 *2 (-845)) (-4 *3 (-13 (-171) (-712 (-406 (-562))))) (-14 *4 (-916)))) (-2850 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))) (-4292 (*1 *2 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-845)) (-5 *2 (-639 (-658 *4 *5))) (-5 *1 (-623 *4 *5 *6)) (-4 *5 (-13 (-171) (-712 (-406 (-562))))) (-14 *6 (-916)))) (-3825 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |k| (-666 *3)) (|:| |c| *4)))) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))) (-2281 (*1 *2 *1 *1) (-12 (-5 *2 (-639 (-293 *4))) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845)) (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))))
+(-13 (-472) (-10 -8 (-15 -3430 ($ (-658 |#1| |#2|))) (-15 -4366 ((-658 |#1| |#2|) $)) (-15 -2174 ((-639 (-2 (|:| |k| (-888 |#1|)) (|:| |c| |#2|))) $)) (-15 -4053 ((-1271 |#1| |#2|) $)) (-15 -4053 ((-1276 |#1| |#2|) $)) (-15 -2572 ($ $)) (-15 -2850 ((-639 |#1|) $)) (-15 -4292 ((-639 (-658 |#1| |#2|)) (-639 |#1|))) (-15 -3825 ((-639 (-2 (|:| |k| (-666 |#1|)) (|:| |c| |#2|))) $)) (-15 -2281 ((-639 (-293 |#2|)) $ $))))
+((-3672 (((-639 (-1138 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|)))) (-639 (-775 |#1| (-859 |#2|))) (-112)) 71) (((-639 (-1041 |#1| |#2|)) (-639 (-775 |#1| (-859 |#2|))) (-112)) 57)) (-2311 (((-112) (-639 (-775 |#1| (-859 |#2|)))) 23)) (-4000 (((-639 (-1138 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|)))) (-639 (-775 |#1| (-859 |#2|))) (-112)) 70)) (-2841 (((-639 (-1041 |#1| |#2|)) (-639 (-775 |#1| (-859 |#2|))) (-112)) 56)) (-2848 (((-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|)))) 27)) (-3779 (((-3 (-639 (-775 |#1| (-859 |#2|))) "failed") (-639 (-775 |#1| (-859 |#2|)))) 26)))
+(((-624 |#1| |#2|) (-10 -7 (-15 -2311 ((-112) (-639 (-775 |#1| (-859 |#2|))))) (-15 -3779 ((-3 (-639 (-775 |#1| (-859 |#2|))) "failed") (-639 (-775 |#1| (-859 |#2|))))) (-15 -2848 ((-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|))))) (-15 -2841 ((-639 (-1041 |#1| |#2|)) (-639 (-775 |#1| (-859 |#2|))) (-112))) (-15 -4000 ((-639 (-1138 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|)))) (-639 (-775 |#1| (-859 |#2|))) (-112))) (-15 -3672 ((-639 (-1041 |#1| |#2|)) (-639 (-775 |#1| (-859 |#2|))) (-112))) (-15 -3672 ((-639 (-1138 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|)))) (-639 (-775 |#1| (-859 |#2|))) (-112)))) (-451) (-639 (-1168))) (T -624))
+((-3672 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451)) (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1138 *5 (-530 (-859 *6)) (-859 *6) (-775 *5 (-859 *6))))) (-5 *1 (-624 *5 *6)))) (-3672 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451)) (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-624 *5 *6)))) (-4000 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451)) (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1138 *5 (-530 (-859 *6)) (-859 *6) (-775 *5 (-859 *6))))) (-5 *1 (-624 *5 *6)))) (-2841 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451)) (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-624 *5 *6)))) (-2848 (*1 *2 *2) (-12 (-5 *2 (-639 (-775 *3 (-859 *4)))) (-4 *3 (-451)) (-14 *4 (-639 (-1168))) (-5 *1 (-624 *3 *4)))) (-3779 (*1 *2 *2) (|partial| -12 (-5 *2 (-639 (-775 *3 (-859 *4)))) (-4 *3 (-451)) (-14 *4 (-639 (-1168))) (-5 *1 (-624 *3 *4)))) (-2311 (*1 *2 *3) (-12 (-5 *3 (-639 (-775 *4 (-859 *5)))) (-4 *4 (-451)) (-14 *5 (-639 (-1168))) (-5 *2 (-112)) (-5 *1 (-624 *4 *5)))))
+(-10 -7 (-15 -2311 ((-112) (-639 (-775 |#1| (-859 |#2|))))) (-15 -3779 ((-3 (-639 (-775 |#1| (-859 |#2|))) "failed") (-639 (-775 |#1| (-859 |#2|))))) (-15 -2848 ((-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|))))) (-15 -2841 ((-639 (-1041 |#1| |#2|)) (-639 (-775 |#1| (-859 |#2|))) (-112))) (-15 -4000 ((-639 (-1138 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|)))) (-639 (-775 |#1| (-859 |#2|))) (-112))) (-15 -3672 ((-639 (-1041 |#1| |#2|)) (-639 (-775 |#1| (-859 |#2|))) (-112))) (-15 -3672 ((-639 (-1138 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|)))) (-639 (-775 |#1| (-859 |#2|))) (-112))))
+((-2987 (($ $) 38)) (-4098 (($ $) 21)) (-4206 (($ $) 37)) (-4074 (($ $) 22)) (-3013 (($ $) 36)) (-4120 (($ $) 23)) (-4100 (($) 48)) (-4366 (($ $) 45)) (-2032 (($ $) 17)) (-1529 (($ $ (-1084 $)) 7) (($ $ (-1168)) 6)) (-3430 (($ $) 46)) (-4021 (($ $) 15)) (-4057 (($ $) 16)) (-3022 (($ $) 35)) (-4130 (($ $) 24)) (-3000 (($ $) 34)) (-4108 (($ $) 25)) (-2977 (($ $) 33)) (-4087 (($ $) 26)) (-3054 (($ $) 44)) (-4165 (($ $) 32)) (-3033 (($ $) 43)) (-4139 (($ $) 31)) (-3077 (($ $) 42)) (-4183 (($ $) 30)) (-1567 (($ $) 41)) (-4195 (($ $) 29)) (-3065 (($ $) 40)) (-4175 (($ $) 28)) (-3040 (($ $) 39)) (-4151 (($ $) 27)) (-3234 (($ $) 19)) (-4198 (($ $) 20)) (-4003 (($ $) 18)) (** (($ $ $) 47)))
(((-625) (-139)) (T -625))
-((-2537 (*1 *1 *1) (-4 *1 (-625))) (-4083 (*1 *1 *1) (-4 *1 (-625))) (-4361 (*1 *1 *1) (-4 *1 (-625))) (-2033 (*1 *1 *1) (-4 *1 (-625))) (-4056 (*1 *1 *1) (-4 *1 (-625))) (-4021 (*1 *1 *1) (-4 *1 (-625))))
-(-13 (-954) (-1192) (-10 -8 (-15 -2537 ($ $)) (-15 -4083 ($ $)) (-15 -4361 ($ $)) (-15 -2033 ($ $)) (-15 -4056 ($ $)) (-15 -4021 ($ $))))
+((-4198 (*1 *1 *1) (-4 *1 (-625))) (-3234 (*1 *1 *1) (-4 *1 (-625))) (-4003 (*1 *1 *1) (-4 *1 (-625))) (-2032 (*1 *1 *1) (-4 *1 (-625))) (-4057 (*1 *1 *1) (-4 *1 (-625))) (-4021 (*1 *1 *1) (-4 *1 (-625))))
+(-13 (-954) (-1192) (-10 -8 (-15 -4198 ($ $)) (-15 -3234 ($ $)) (-15 -4003 ($ $)) (-15 -2032 ($ $)) (-15 -4057 ($ $)) (-15 -4021 ($ $))))
(((-35) . T) ((-95) . T) ((-283) . T) ((-492) . T) ((-954) . T) ((-1192) . T) ((-1195) . T))
-((-2876 (((-114) (-114)) 83)) (-2033 ((|#2| |#2|) 30)) (-1982 ((|#2| |#2| (-1084 |#2|)) 79) ((|#2| |#2| (-1168)) 52)) (-4021 ((|#2| |#2|) 29)) (-4056 ((|#2| |#2|) 31)) (-2803 (((-112) (-114)) 34)) (-4083 ((|#2| |#2|) 26)) (-2537 ((|#2| |#2|) 28)) (-4361 ((|#2| |#2|) 27)))
-(((-626 |#1| |#2|) (-10 -7 (-15 -2803 ((-112) (-114))) (-15 -2876 ((-114) (-114))) (-15 -2537 (|#2| |#2|)) (-15 -4083 (|#2| |#2|)) (-15 -4361 (|#2| |#2|)) (-15 -2033 (|#2| |#2|)) (-15 -4021 (|#2| |#2|)) (-15 -4056 (|#2| |#2|)) (-15 -1982 (|#2| |#2| (-1168))) (-15 -1982 (|#2| |#2| (-1084 |#2|)))) (-13 (-845) (-554)) (-13 (-429 |#1|) (-997) (-1192))) (T -626))
-((-1982 (*1 *2 *2 *3) (-12 (-5 *3 (-1084 *2)) (-4 *2 (-13 (-429 *4) (-997) (-1192))) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-626 *4 *2)))) (-1982 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-626 *4 *2)) (-4 *2 (-13 (-429 *4) (-997) (-1192))))) (-4056 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2)) (-4 *2 (-13 (-429 *3) (-997) (-1192))))) (-4021 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2)) (-4 *2 (-13 (-429 *3) (-997) (-1192))))) (-2033 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2)) (-4 *2 (-13 (-429 *3) (-997) (-1192))))) (-4361 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2)) (-4 *2 (-13 (-429 *3) (-997) (-1192))))) (-4083 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2)) (-4 *2 (-13 (-429 *3) (-997) (-1192))))) (-2537 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2)) (-4 *2 (-13 (-429 *3) (-997) (-1192))))) (-2876 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *4)) (-4 *4 (-13 (-429 *3) (-997) (-1192))))) (-2803 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-626 *4 *5)) (-4 *5 (-13 (-429 *4) (-997) (-1192))))))
-(-10 -7 (-15 -2803 ((-112) (-114))) (-15 -2876 ((-114) (-114))) (-15 -2537 (|#2| |#2|)) (-15 -4083 (|#2| |#2|)) (-15 -4361 (|#2| |#2|)) (-15 -2033 (|#2| |#2|)) (-15 -4021 (|#2| |#2|)) (-15 -4056 (|#2| |#2|)) (-15 -1982 (|#2| |#2| (-1168))) (-15 -1982 (|#2| |#2| (-1084 |#2|))))
-((-2871 (((-480 |#1| |#2|) (-246 |#1| |#2|)) 53)) (-4038 (((-639 (-246 |#1| |#2|)) (-639 (-480 |#1| |#2|))) 68)) (-2532 (((-480 |#1| |#2|) (-639 (-480 |#1| |#2|)) (-859 |#1|)) 70) (((-480 |#1| |#2|) (-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)) (-859 |#1|)) 69)) (-2788 (((-2 (|:| |gblist| (-639 (-246 |#1| |#2|))) (|:| |gvlist| (-639 (-562)))) (-639 (-480 |#1| |#2|))) 108)) (-1359 (((-639 (-480 |#1| |#2|)) (-859 |#1|) (-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|))) 83)) (-4338 (((-2 (|:| |glbase| (-639 (-246 |#1| |#2|))) (|:| |glval| (-639 (-562)))) (-639 (-246 |#1| |#2|))) 118)) (-1715 (((-1256 |#2|) (-480 |#1| |#2|) (-639 (-480 |#1| |#2|))) 58)) (-2233 (((-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|))) 41)) (-3101 (((-246 |#1| |#2|) (-246 |#1| |#2|) (-639 (-246 |#1| |#2|))) 50)) (-2595 (((-246 |#1| |#2|) (-639 |#2|) (-246 |#1| |#2|) (-639 (-246 |#1| |#2|))) 91)))
-(((-627 |#1| |#2|) (-10 -7 (-15 -2788 ((-2 (|:| |gblist| (-639 (-246 |#1| |#2|))) (|:| |gvlist| (-639 (-562)))) (-639 (-480 |#1| |#2|)))) (-15 -4338 ((-2 (|:| |glbase| (-639 (-246 |#1| |#2|))) (|:| |glval| (-639 (-562)))) (-639 (-246 |#1| |#2|)))) (-15 -4038 ((-639 (-246 |#1| |#2|)) (-639 (-480 |#1| |#2|)))) (-15 -2532 ((-480 |#1| |#2|) (-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)) (-859 |#1|))) (-15 -2532 ((-480 |#1| |#2|) (-639 (-480 |#1| |#2|)) (-859 |#1|))) (-15 -2233 ((-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)))) (-15 -1715 ((-1256 |#2|) (-480 |#1| |#2|) (-639 (-480 |#1| |#2|)))) (-15 -2595 ((-246 |#1| |#2|) (-639 |#2|) (-246 |#1| |#2|) (-639 (-246 |#1| |#2|)))) (-15 -1359 ((-639 (-480 |#1| |#2|)) (-859 |#1|) (-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)))) (-15 -3101 ((-246 |#1| |#2|) (-246 |#1| |#2|) (-639 (-246 |#1| |#2|)))) (-15 -2871 ((-480 |#1| |#2|) (-246 |#1| |#2|)))) (-639 (-1168)) (-451)) (T -627))
-((-2871 (*1 *2 *3) (-12 (-5 *3 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *2 (-480 *4 *5)) (-5 *1 (-627 *4 *5)))) (-3101 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-246 *4 *5))) (-5 *2 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *1 (-627 *4 *5)))) (-1359 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-639 (-480 *4 *5))) (-5 *3 (-859 *4)) (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *1 (-627 *4 *5)))) (-2595 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 (-246 *5 *6))) (-4 *6 (-451)) (-5 *2 (-246 *5 *6)) (-14 *5 (-639 (-1168))) (-5 *1 (-627 *5 *6)))) (-1715 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-480 *5 *6))) (-5 *3 (-480 *5 *6)) (-14 *5 (-639 (-1168))) (-4 *6 (-451)) (-5 *2 (-1256 *6)) (-5 *1 (-627 *5 *6)))) (-2233 (*1 *2 *2) (-12 (-5 *2 (-639 (-480 *3 *4))) (-14 *3 (-639 (-1168))) (-4 *4 (-451)) (-5 *1 (-627 *3 *4)))) (-2532 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-480 *5 *6))) (-5 *4 (-859 *5)) (-14 *5 (-639 (-1168))) (-5 *2 (-480 *5 *6)) (-5 *1 (-627 *5 *6)) (-4 *6 (-451)))) (-2532 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-639 (-480 *5 *6))) (-5 *4 (-859 *5)) (-14 *5 (-639 (-1168))) (-5 *2 (-480 *5 *6)) (-5 *1 (-627 *5 *6)) (-4 *6 (-451)))) (-4038 (*1 *2 *3) (-12 (-5 *3 (-639 (-480 *4 *5))) (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *2 (-639 (-246 *4 *5))) (-5 *1 (-627 *4 *5)))) (-4338 (*1 *2 *3) (-12 (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *2 (-2 (|:| |glbase| (-639 (-246 *4 *5))) (|:| |glval| (-639 (-562))))) (-5 *1 (-627 *4 *5)) (-5 *3 (-639 (-246 *4 *5))))) (-2788 (*1 *2 *3) (-12 (-5 *3 (-639 (-480 *4 *5))) (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *2 (-2 (|:| |gblist| (-639 (-246 *4 *5))) (|:| |gvlist| (-639 (-562))))) (-5 *1 (-627 *4 *5)))))
-(-10 -7 (-15 -2788 ((-2 (|:| |gblist| (-639 (-246 |#1| |#2|))) (|:| |gvlist| (-639 (-562)))) (-639 (-480 |#1| |#2|)))) (-15 -4338 ((-2 (|:| |glbase| (-639 (-246 |#1| |#2|))) (|:| |glval| (-639 (-562)))) (-639 (-246 |#1| |#2|)))) (-15 -4038 ((-639 (-246 |#1| |#2|)) (-639 (-480 |#1| |#2|)))) (-15 -2532 ((-480 |#1| |#2|) (-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)) (-859 |#1|))) (-15 -2532 ((-480 |#1| |#2|) (-639 (-480 |#1| |#2|)) (-859 |#1|))) (-15 -2233 ((-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)))) (-15 -1715 ((-1256 |#2|) (-480 |#1| |#2|) (-639 (-480 |#1| |#2|)))) (-15 -2595 ((-246 |#1| |#2|) (-639 |#2|) (-246 |#1| |#2|) (-639 (-246 |#1| |#2|)))) (-15 -1359 ((-639 (-480 |#1| |#2|)) (-859 |#1|) (-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)))) (-15 -3101 ((-246 |#1| |#2|) (-246 |#1| |#2|) (-639 (-246 |#1| |#2|)))) (-15 -2871 ((-480 |#1| |#2|) (-246 |#1| |#2|))))
-((-4041 (((-112) $ $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))))) NIL)) (-3052 (((-1261) $ (-1150) (-1150)) NIL (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 (((-52) $ (-1150) (-52)) 16) (((-52) $ (-1168) (-52)) 17)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402)))) (-1472 (((-3 (-52) "failed") (-1150) $) NIL)) (-1800 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092))))) (-4000 (($ (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) $) NIL (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-3 (-52) "failed") (-1150) $) NIL)) (-1475 (($ (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092)))) (($ (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $ (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092)))) (((-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $ (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402)))) (-1505 (((-52) $ (-1150) (-52)) NIL (|has| $ (-6 -4403)))) (-1420 (((-52) $ (-1150)) NIL)) (-1720 (((-639 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-639 (-52)) $) NIL (|has| $ (-6 -4402)))) (-4332 (($ $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-1150) $) NIL (|has| (-1150) (-845)))) (-1912 (((-639 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-639 (-52)) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-52) (-1092))))) (-3874 (((-1150) $) NIL (|has| (-1150) (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-1554 (($ (-387)) 9)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092))))) (-1520 (((-639 (-1150)) $) NIL)) (-4265 (((-112) (-1150) $) NIL)) (-3262 (((-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) $) NIL)) (-4300 (($ (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) $) NIL)) (-2093 (((-639 (-1150)) $) NIL)) (-1570 (((-112) (-1150) $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092))))) (-1421 (((-52) $) NIL (|has| (-1150) (-845)))) (-3251 (((-3 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) "failed") (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL)) (-2716 (($ $ (-52)) NIL (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) $) NIL)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))))) NIL (-12 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092)))) (($ $ (-293 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))))) NIL (-12 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092)))) (($ $ (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) NIL (-12 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092)))) (($ $ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))))) NIL (-12 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092)))) (($ $ (-639 (-52)) (-639 (-52))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-293 (-52))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-639 (-293 (-52)))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-52) (-1092))))) (-2411 (((-639 (-52)) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 (((-52) $ (-1150)) 14) (((-52) $ (-1150) (-52)) NIL) (((-52) $ (-1168)) 15)) (-3564 (($) NIL) (($ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092)))) (((-766) (-52) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-52) (-1092)))) (((-766) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))))) NIL)) (-4054 (((-857) $) NIL (-4037 (|has| (-52) (-609 (-857))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-609 (-857)))))) (-1932 (($ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))))) NIL)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 (-52))) (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-628) (-13 (-1183 (-1150) (-52)) (-10 -8 (-15 -1554 ($ (-387))) (-15 -4332 ($ $)) (-15 -2343 ((-52) $ (-1168))) (-15 -4200 ((-52) $ (-1168) (-52)))))) (T -628))
-((-1554 (*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-628)))) (-4332 (*1 *1 *1) (-5 *1 (-628))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-628)))) (-4200 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1168)) (-5 *1 (-628)))))
-(-13 (-1183 (-1150) (-52)) (-10 -8 (-15 -1554 ($ (-387))) (-15 -4332 ($ $)) (-15 -2343 ((-52) $ (-1168))) (-15 -4200 ((-52) $ (-1168) (-52)))))
+((-1502 (((-114) (-114)) 83)) (-2032 ((|#2| |#2|) 30)) (-1529 ((|#2| |#2| (-1084 |#2|)) 79) ((|#2| |#2| (-1168)) 52)) (-4021 ((|#2| |#2|) 29)) (-4057 ((|#2| |#2|) 31)) (-2036 (((-112) (-114)) 34)) (-3234 ((|#2| |#2|) 26)) (-4198 ((|#2| |#2|) 28)) (-4003 ((|#2| |#2|) 27)))
+(((-626 |#1| |#2|) (-10 -7 (-15 -2036 ((-112) (-114))) (-15 -1502 ((-114) (-114))) (-15 -4198 (|#2| |#2|)) (-15 -3234 (|#2| |#2|)) (-15 -4003 (|#2| |#2|)) (-15 -2032 (|#2| |#2|)) (-15 -4021 (|#2| |#2|)) (-15 -4057 (|#2| |#2|)) (-15 -1529 (|#2| |#2| (-1168))) (-15 -1529 (|#2| |#2| (-1084 |#2|)))) (-13 (-845) (-554)) (-13 (-429 |#1|) (-997) (-1192))) (T -626))
+((-1529 (*1 *2 *2 *3) (-12 (-5 *3 (-1084 *2)) (-4 *2 (-13 (-429 *4) (-997) (-1192))) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-626 *4 *2)))) (-1529 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-626 *4 *2)) (-4 *2 (-13 (-429 *4) (-997) (-1192))))) (-4057 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2)) (-4 *2 (-13 (-429 *3) (-997) (-1192))))) (-4021 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2)) (-4 *2 (-13 (-429 *3) (-997) (-1192))))) (-2032 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2)) (-4 *2 (-13 (-429 *3) (-997) (-1192))))) (-4003 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2)) (-4 *2 (-13 (-429 *3) (-997) (-1192))))) (-3234 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2)) (-4 *2 (-13 (-429 *3) (-997) (-1192))))) (-4198 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2)) (-4 *2 (-13 (-429 *3) (-997) (-1192))))) (-1502 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *4)) (-4 *4 (-13 (-429 *3) (-997) (-1192))))) (-2036 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-626 *4 *5)) (-4 *5 (-13 (-429 *4) (-997) (-1192))))))
+(-10 -7 (-15 -2036 ((-112) (-114))) (-15 -1502 ((-114) (-114))) (-15 -4198 (|#2| |#2|)) (-15 -3234 (|#2| |#2|)) (-15 -4003 (|#2| |#2|)) (-15 -2032 (|#2| |#2|)) (-15 -4021 (|#2| |#2|)) (-15 -4057 (|#2| |#2|)) (-15 -1529 (|#2| |#2| (-1168))) (-15 -1529 (|#2| |#2| (-1084 |#2|))))
+((-1430 (((-480 |#1| |#2|) (-246 |#1| |#2|)) 53)) (-4082 (((-639 (-246 |#1| |#2|)) (-639 (-480 |#1| |#2|))) 68)) (-2326 (((-480 |#1| |#2|) (-639 (-480 |#1| |#2|)) (-859 |#1|)) 70) (((-480 |#1| |#2|) (-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)) (-859 |#1|)) 69)) (-1867 (((-2 (|:| |gblist| (-639 (-246 |#1| |#2|))) (|:| |gvlist| (-639 (-562)))) (-639 (-480 |#1| |#2|))) 108)) (-1905 (((-639 (-480 |#1| |#2|)) (-859 |#1|) (-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|))) 83)) (-3748 (((-2 (|:| |glbase| (-639 (-246 |#1| |#2|))) (|:| |glval| (-639 (-562)))) (-639 (-246 |#1| |#2|))) 118)) (-3830 (((-1256 |#2|) (-480 |#1| |#2|) (-639 (-480 |#1| |#2|))) 58)) (-4252 (((-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|))) 41)) (-2902 (((-246 |#1| |#2|) (-246 |#1| |#2|) (-639 (-246 |#1| |#2|))) 50)) (-3551 (((-246 |#1| |#2|) (-639 |#2|) (-246 |#1| |#2|) (-639 (-246 |#1| |#2|))) 91)))
+(((-627 |#1| |#2|) (-10 -7 (-15 -1867 ((-2 (|:| |gblist| (-639 (-246 |#1| |#2|))) (|:| |gvlist| (-639 (-562)))) (-639 (-480 |#1| |#2|)))) (-15 -3748 ((-2 (|:| |glbase| (-639 (-246 |#1| |#2|))) (|:| |glval| (-639 (-562)))) (-639 (-246 |#1| |#2|)))) (-15 -4082 ((-639 (-246 |#1| |#2|)) (-639 (-480 |#1| |#2|)))) (-15 -2326 ((-480 |#1| |#2|) (-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)) (-859 |#1|))) (-15 -2326 ((-480 |#1| |#2|) (-639 (-480 |#1| |#2|)) (-859 |#1|))) (-15 -4252 ((-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)))) (-15 -3830 ((-1256 |#2|) (-480 |#1| |#2|) (-639 (-480 |#1| |#2|)))) (-15 -3551 ((-246 |#1| |#2|) (-639 |#2|) (-246 |#1| |#2|) (-639 (-246 |#1| |#2|)))) (-15 -1905 ((-639 (-480 |#1| |#2|)) (-859 |#1|) (-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)))) (-15 -2902 ((-246 |#1| |#2|) (-246 |#1| |#2|) (-639 (-246 |#1| |#2|)))) (-15 -1430 ((-480 |#1| |#2|) (-246 |#1| |#2|)))) (-639 (-1168)) (-451)) (T -627))
+((-1430 (*1 *2 *3) (-12 (-5 *3 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *2 (-480 *4 *5)) (-5 *1 (-627 *4 *5)))) (-2902 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-246 *4 *5))) (-5 *2 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *1 (-627 *4 *5)))) (-1905 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-639 (-480 *4 *5))) (-5 *3 (-859 *4)) (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *1 (-627 *4 *5)))) (-3551 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 (-246 *5 *6))) (-4 *6 (-451)) (-5 *2 (-246 *5 *6)) (-14 *5 (-639 (-1168))) (-5 *1 (-627 *5 *6)))) (-3830 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-480 *5 *6))) (-5 *3 (-480 *5 *6)) (-14 *5 (-639 (-1168))) (-4 *6 (-451)) (-5 *2 (-1256 *6)) (-5 *1 (-627 *5 *6)))) (-4252 (*1 *2 *2) (-12 (-5 *2 (-639 (-480 *3 *4))) (-14 *3 (-639 (-1168))) (-4 *4 (-451)) (-5 *1 (-627 *3 *4)))) (-2326 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-480 *5 *6))) (-5 *4 (-859 *5)) (-14 *5 (-639 (-1168))) (-5 *2 (-480 *5 *6)) (-5 *1 (-627 *5 *6)) (-4 *6 (-451)))) (-2326 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-639 (-480 *5 *6))) (-5 *4 (-859 *5)) (-14 *5 (-639 (-1168))) (-5 *2 (-480 *5 *6)) (-5 *1 (-627 *5 *6)) (-4 *6 (-451)))) (-4082 (*1 *2 *3) (-12 (-5 *3 (-639 (-480 *4 *5))) (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *2 (-639 (-246 *4 *5))) (-5 *1 (-627 *4 *5)))) (-3748 (*1 *2 *3) (-12 (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *2 (-2 (|:| |glbase| (-639 (-246 *4 *5))) (|:| |glval| (-639 (-562))))) (-5 *1 (-627 *4 *5)) (-5 *3 (-639 (-246 *4 *5))))) (-1867 (*1 *2 *3) (-12 (-5 *3 (-639 (-480 *4 *5))) (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *2 (-2 (|:| |gblist| (-639 (-246 *4 *5))) (|:| |gvlist| (-639 (-562))))) (-5 *1 (-627 *4 *5)))))
+(-10 -7 (-15 -1867 ((-2 (|:| |gblist| (-639 (-246 |#1| |#2|))) (|:| |gvlist| (-639 (-562)))) (-639 (-480 |#1| |#2|)))) (-15 -3748 ((-2 (|:| |glbase| (-639 (-246 |#1| |#2|))) (|:| |glval| (-639 (-562)))) (-639 (-246 |#1| |#2|)))) (-15 -4082 ((-639 (-246 |#1| |#2|)) (-639 (-480 |#1| |#2|)))) (-15 -2326 ((-480 |#1| |#2|) (-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)) (-859 |#1|))) (-15 -2326 ((-480 |#1| |#2|) (-639 (-480 |#1| |#2|)) (-859 |#1|))) (-15 -4252 ((-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)))) (-15 -3830 ((-1256 |#2|) (-480 |#1| |#2|) (-639 (-480 |#1| |#2|)))) (-15 -3551 ((-246 |#1| |#2|) (-639 |#2|) (-246 |#1| |#2|) (-639 (-246 |#1| |#2|)))) (-15 -1905 ((-639 (-480 |#1| |#2|)) (-859 |#1|) (-639 (-480 |#1| |#2|)) (-639 (-480 |#1| |#2|)))) (-15 -2902 ((-246 |#1| |#2|) (-246 |#1| |#2|) (-639 (-246 |#1| |#2|)))) (-15 -1430 ((-480 |#1| |#2|) (-246 |#1| |#2|))))
+((-4041 (((-112) $ $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))))) NIL)) (-3655 (((-1261) $ (-1150) (-1150)) NIL (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 (((-52) $ (-1150) (-52)) 16) (((-52) $ (-1168) (-52)) 17)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403)))) (-1472 (((-3 (-52) "failed") (-1150) $) NIL)) (-3329 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092))))) (-3729 (($ (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-3 (-52) "failed") (-1150) $) NIL)) (-1475 (($ (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092)))) (($ (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $ (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092)))) (((-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $ (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403)))) (-1507 (((-52) $ (-1150) (-52)) NIL (|has| $ (-6 -4404)))) (-1420 (((-52) $ (-1150)) NIL)) (-1720 (((-639 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-639 (-52)) $) NIL (|has| $ (-6 -4403)))) (-3702 (($ $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-1150) $) NIL (|has| (-1150) (-845)))) (-2123 (((-639 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-639 (-52)) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-52) (-1092))))) (-1929 (((-1150) $) NIL (|has| (-1150) (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4404))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-1552 (($ (-387)) 9)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092))))) (-1521 (((-639 (-1150)) $) NIL)) (-4278 (((-112) (-1150) $) NIL)) (-2078 (((-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) $) NIL)) (-1581 (($ (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) $) NIL)) (-3336 (((-639 (-1150)) $) NIL)) (-1987 (((-112) (-1150) $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092))))) (-1421 (((-52) $) NIL (|has| (-1150) (-845)))) (-1963 (((-3 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) "failed") (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL)) (-3510 (($ $ (-52)) NIL (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) $) NIL)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))))) NIL (-12 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092)))) (($ $ (-293 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))))) NIL (-12 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092)))) (($ $ (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) NIL (-12 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092)))) (($ $ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))))) NIL (-12 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092)))) (($ $ (-639 (-52)) (-639 (-52))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-293 (-52))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-639 (-293 (-52)))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-52) (-1092))))) (-2366 (((-639 (-52)) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 (((-52) $ (-1150)) 14) (((-52) $ (-1150) (-52)) NIL) (((-52) $ (-1168)) 15)) (-1932 (($) NIL) (($ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092)))) (((-766) (-52) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-52) (-1092)))) (((-766) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))))) NIL)) (-4053 (((-857) $) NIL (-4037 (|has| (-52) (-609 (-857))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-609 (-857)))))) (-4131 (($ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))))) NIL)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 (-52))) (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-628) (-13 (-1183 (-1150) (-52)) (-10 -8 (-15 -1552 ($ (-387))) (-15 -3702 ($ $)) (-15 -2343 ((-52) $ (-1168))) (-15 -4200 ((-52) $ (-1168) (-52)))))) (T -628))
+((-1552 (*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-628)))) (-3702 (*1 *1 *1) (-5 *1 (-628))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-628)))) (-4200 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1168)) (-5 *1 (-628)))))
+(-13 (-1183 (-1150) (-52)) (-10 -8 (-15 -1552 ($ (-387))) (-15 -3702 ($ $)) (-15 -2343 ((-52) $ (-1168))) (-15 -4200 ((-52) $ (-1168) (-52)))))
((-1859 (($ $ |#2|) 10)))
(((-629 |#1| |#2|) (-10 -8 (-15 -1859 (|#1| |#1| |#2|))) (-630 |#2|) (-171)) (T -629))
NIL
(-10 -8 (-15 -1859 (|#1| |#1| |#2|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4066 (($ $ $) 29)) (-4054 (((-857) $) 11)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 28 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4064 (($ $ $) 29)) (-4053 (((-857) $) 11)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 28 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
(((-630 |#1|) (-139) (-171)) (T -630))
-((-4066 (*1 *1 *1 *1) (-12 (-4 *1 (-630 *2)) (-4 *2 (-171)))) (-1859 (*1 *1 *1 *2) (-12 (-4 *1 (-630 *2)) (-4 *2 (-171)) (-4 *2 (-362)))))
-(-13 (-712 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -4066 ($ $ $)) (IF (|has| |t#1| (-362)) (-15 -1859 ($ $ |t#1|)) |%noBranch|)))
+((-4064 (*1 *1 *1 *1) (-12 (-4 *1 (-630 *2)) (-4 *2 (-171)))) (-1859 (*1 *1 *1 *2) (-12 (-4 *1 (-630 *2)) (-4 *2 (-171)) (-4 *2 (-362)))))
+(-13 (-712 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -4064 ($ $ $)) (IF (|has| |t#1| (-362)) (-15 -1859 ($ $ |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-609 (-857)) . T) ((-642 |#1|) . T) ((-712 |#1|) . T) ((-1050 |#1|) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3931 (((-3 $ "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1902 (((-1256 (-683 |#1|))) NIL (|has| |#2| (-416 |#1|))) (((-1256 (-683 |#1|)) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-3655 (((-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-1800 (($) NIL T CONST)) (-2874 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2117 (((-3 $ "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-4356 (((-683 |#1|)) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2422 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-2966 (((-683 |#1|) $) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) $ (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2545 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3407 (((-1164 (-947 |#1|))) NIL (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-362))))) (-1379 (($ $ (-916)) NIL)) (-2355 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-3474 (((-1164 |#1|) $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2819 ((|#1|) NIL (|has| |#2| (-416 |#1|))) ((|#1| (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2964 (((-1164 |#1|) $) NIL (|has| |#2| (-366 |#1|)))) (-2380 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-4018 (($ (-1256 |#1|)) NIL (|has| |#2| (-416 |#1|))) (($ (-1256 |#1|) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-3668 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2173 (((-916)) NIL (|has| |#2| (-366 |#1|)))) (-1321 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3650 (($ $ (-916)) NIL)) (-3813 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3375 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-4258 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1681 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3700 (((-3 $ "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3025 (((-683 |#1|)) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-4153 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-1671 (((-683 |#1|) $) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) $ (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-4238 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2743 (((-1164 (-947 |#1|))) NIL (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-362))))) (-2991 (($ $ (-916)) NIL)) (-1680 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-2026 (((-1164 |#1|) $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-1305 ((|#1|) NIL (|has| |#2| (-416 |#1|))) ((|#1| (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2670 (((-1164 |#1|) $) NIL (|has| |#2| (-366 |#1|)))) (-2090 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2913 (((-1150) $) NIL)) (-2144 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2580 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2809 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1709 (((-1112) $) NIL)) (-4323 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2343 ((|#1| $ (-562)) NIL (|has| |#2| (-416 |#1|)))) (-3593 (((-683 |#1|) (-1256 $)) NIL (|has| |#2| (-416 |#1|))) (((-1256 |#1|) $) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) (-1256 $) (-1256 $)) NIL (|has| |#2| (-366 |#1|))) (((-1256 |#1|) $ (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-4208 (($ (-1256 |#1|)) NIL (|has| |#2| (-416 |#1|))) (((-1256 |#1|) $) NIL (|has| |#2| (-416 |#1|)))) (-4136 (((-639 (-947 |#1|))) NIL (|has| |#2| (-416 |#1|))) (((-639 (-947 |#1|)) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-1911 (($ $ $) NIL)) (-1396 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-4054 (((-857) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-3928 (((-1256 $)) NIL (|has| |#2| (-416 |#1|)))) (-3553 (((-639 (-1256 |#1|))) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2436 (($ $ $ $) NIL)) (-2850 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1360 (($ (-683 |#1|) $) NIL (|has| |#2| (-416 |#1|)))) (-3626 (($ $ $) NIL)) (-1981 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3199 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-4114 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2286 (($) 15 T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) 17)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-631 |#1| |#2|) (-13 (-739 |#1|) (-609 |#2|) (-10 -8 (-15 -4054 ($ |#2|)) (IF (|has| |#2| (-416 |#1|)) (-6 (-416 |#1|)) |%noBranch|) (IF (|has| |#2| (-366 |#1|)) (-6 (-366 |#1|)) |%noBranch|))) (-171) (-739 |#1|)) (T -631))
-((-4054 (*1 *1 *2) (-12 (-4 *3 (-171)) (-5 *1 (-631 *3 *2)) (-4 *2 (-739 *3)))))
-(-13 (-739 |#1|) (-609 |#2|) (-10 -8 (-15 -4054 ($ |#2|)) (IF (|has| |#2| (-416 |#1|)) (-6 (-416 |#1|)) |%noBranch|) (IF (|has| |#2| (-366 |#1|)) (-6 (-366 |#1|)) |%noBranch|)))
-((-2166 (((-3 (-838 |#2|) "failed") |#2| (-293 |#2|) (-1150)) 81) (((-3 (-838 |#2|) (-2 (|:| |leftHandLimit| (-3 (-838 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-838 |#2|) "failed"))) "failed") |#2| (-293 (-838 |#2|))) 103)) (-3879 (((-3 (-828 |#2|) "failed") |#2| (-293 (-828 |#2|))) 108)))
-(((-632 |#1| |#2|) (-10 -7 (-15 -2166 ((-3 (-838 |#2|) (-2 (|:| |leftHandLimit| (-3 (-838 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-838 |#2|) "failed"))) "failed") |#2| (-293 (-838 |#2|)))) (-15 -3879 ((-3 (-828 |#2|) "failed") |#2| (-293 (-828 |#2|)))) (-15 -2166 ((-3 (-838 |#2|) "failed") |#2| (-293 |#2|) (-1150)))) (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -632))
-((-2166 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-293 *3)) (-5 *5 (-1150)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-838 *3)) (-5 *1 (-632 *6 *3)))) (-3879 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-293 (-828 *3))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-828 *3)) (-5 *1 (-632 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-2166 (*1 *2 *3 *4) (-12 (-5 *4 (-293 (-838 *3))) (-4 *3 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (-838 *3) (-2 (|:| |leftHandLimit| (-3 (-838 *3) "failed")) (|:| |rightHandLimit| (-3 (-838 *3) "failed"))) "failed")) (-5 *1 (-632 *5 *3)))))
-(-10 -7 (-15 -2166 ((-3 (-838 |#2|) (-2 (|:| |leftHandLimit| (-3 (-838 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-838 |#2|) "failed"))) "failed") |#2| (-293 (-838 |#2|)))) (-15 -3879 ((-3 (-828 |#2|) "failed") |#2| (-293 (-828 |#2|)))) (-15 -2166 ((-3 (-838 |#2|) "failed") |#2| (-293 |#2|) (-1150))))
-((-2166 (((-3 (-838 (-406 (-947 |#1|))) "failed") (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))) (-1150)) 80) (((-3 (-838 (-406 (-947 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed"))) "failed") (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|)))) 20) (((-3 (-838 (-406 (-947 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed"))) "failed") (-406 (-947 |#1|)) (-293 (-838 (-947 |#1|)))) 35)) (-3879 (((-828 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|)))) 23) (((-828 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-293 (-828 (-947 |#1|)))) 43)))
-(((-633 |#1|) (-10 -7 (-15 -2166 ((-3 (-838 (-406 (-947 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed"))) "failed") (-406 (-947 |#1|)) (-293 (-838 (-947 |#1|))))) (-15 -2166 ((-3 (-838 (-406 (-947 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed"))) "failed") (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))))) (-15 -3879 ((-828 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-293 (-828 (-947 |#1|))))) (-15 -3879 ((-828 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))))) (-15 -2166 ((-3 (-838 (-406 (-947 |#1|))) "failed") (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))) (-1150)))) (-451)) (T -633))
-((-2166 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-293 (-406 (-947 *6)))) (-5 *5 (-1150)) (-5 *3 (-406 (-947 *6))) (-4 *6 (-451)) (-5 *2 (-838 *3)) (-5 *1 (-633 *6)))) (-3879 (*1 *2 *3 *4) (-12 (-5 *4 (-293 (-406 (-947 *5)))) (-5 *3 (-406 (-947 *5))) (-4 *5 (-451)) (-5 *2 (-828 *3)) (-5 *1 (-633 *5)))) (-3879 (*1 *2 *3 *4) (-12 (-5 *4 (-293 (-828 (-947 *5)))) (-4 *5 (-451)) (-5 *2 (-828 (-406 (-947 *5)))) (-5 *1 (-633 *5)) (-5 *3 (-406 (-947 *5))))) (-2166 (*1 *2 *3 *4) (-12 (-5 *4 (-293 (-406 (-947 *5)))) (-5 *3 (-406 (-947 *5))) (-4 *5 (-451)) (-5 *2 (-3 (-838 *3) (-2 (|:| |leftHandLimit| (-3 (-838 *3) "failed")) (|:| |rightHandLimit| (-3 (-838 *3) "failed"))) "failed")) (-5 *1 (-633 *5)))) (-2166 (*1 *2 *3 *4) (-12 (-5 *4 (-293 (-838 (-947 *5)))) (-4 *5 (-451)) (-5 *2 (-3 (-838 (-406 (-947 *5))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 *5))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 *5))) "failed"))) "failed")) (-5 *1 (-633 *5)) (-5 *3 (-406 (-947 *5))))))
-(-10 -7 (-15 -2166 ((-3 (-838 (-406 (-947 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed"))) "failed") (-406 (-947 |#1|)) (-293 (-838 (-947 |#1|))))) (-15 -2166 ((-3 (-838 (-406 (-947 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed"))) "failed") (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))))) (-15 -3879 ((-828 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-293 (-828 (-947 |#1|))))) (-15 -3879 ((-828 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))))) (-15 -2166 ((-3 (-838 (-406 (-947 |#1|))) "failed") (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))) (-1150))))
-((-1400 (((-3 (-1256 (-406 |#1|)) "failed") (-1256 |#2|) |#2|) 57 (-2236 (|has| |#1| (-362)))) (((-3 (-1256 |#1|) "failed") (-1256 |#2|) |#2|) 42 (|has| |#1| (-362)))) (-1569 (((-112) (-1256 |#2|)) 30)) (-1847 (((-3 (-1256 |#1|) "failed") (-1256 |#2|)) 33)))
-(((-634 |#1| |#2|) (-10 -7 (-15 -1569 ((-112) (-1256 |#2|))) (-15 -1847 ((-3 (-1256 |#1|) "failed") (-1256 |#2|))) (IF (|has| |#1| (-362)) (-15 -1400 ((-3 (-1256 |#1|) "failed") (-1256 |#2|) |#2|)) (-15 -1400 ((-3 (-1256 (-406 |#1|)) "failed") (-1256 |#2|) |#2|)))) (-554) (-635 |#1|)) (T -634))
-((-1400 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 *5)) (-2236 (-4 *5 (-362))) (-4 *5 (-554)) (-5 *2 (-1256 (-406 *5))) (-5 *1 (-634 *5 *4)))) (-1400 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 *5)) (-4 *5 (-362)) (-4 *5 (-554)) (-5 *2 (-1256 *5)) (-5 *1 (-634 *5 *4)))) (-1847 (*1 *2 *3) (|partial| -12 (-5 *3 (-1256 *5)) (-4 *5 (-635 *4)) (-4 *4 (-554)) (-5 *2 (-1256 *4)) (-5 *1 (-634 *4 *5)))) (-1569 (*1 *2 *3) (-12 (-5 *3 (-1256 *5)) (-4 *5 (-635 *4)) (-4 *4 (-554)) (-5 *2 (-112)) (-5 *1 (-634 *4 *5)))))
-(-10 -7 (-15 -1569 ((-112) (-1256 |#2|))) (-15 -1847 ((-3 (-1256 |#1|) "failed") (-1256 |#2|))) (IF (|has| |#1| (-362)) (-15 -1400 ((-3 (-1256 |#1|) "failed") (-1256 |#2|) |#2|)) (-15 -1400 ((-3 (-1256 (-406 |#1|)) "failed") (-1256 |#2|) |#2|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2406 (((-683 |#1|) (-683 $)) 36) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 35)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-562)) 29)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-4310 (((-3 $ "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-2016 (((-1256 (-683 |#1|))) NIL (|has| |#2| (-416 |#1|))) (((-1256 (-683 |#1|)) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-1540 (((-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-3329 (($) NIL T CONST)) (-1469 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2447 (((-3 $ "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3945 (((-683 |#1|)) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2452 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-2995 (((-683 |#1|) $) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) $ (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-4276 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3996 (((-1164 (-947 |#1|))) NIL (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-362))))) (-2127 (($ $ (-916)) NIL)) (-2949 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-3407 (((-1164 |#1|) $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2200 ((|#1|) NIL (|has| |#2| (-416 |#1|))) ((|#1| (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2974 (((-1164 |#1|) $) NIL (|has| |#2| (-366 |#1|)))) (-3178 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3916 (($ (-1256 |#1|)) NIL (|has| |#2| (-416 |#1|))) (($ (-1256 |#1|) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-1694 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2172 (((-916)) NIL (|has| |#2| (-366 |#1|)))) (-1832 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1492 (($ $ (-916)) NIL)) (-2531 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3671 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2394 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3502 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3839 (((-3 $ "failed")) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-3506 (((-683 |#1|)) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2664 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-1583 (((-683 |#1|) $) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) $ (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2217 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2620 (((-1164 (-947 |#1|))) NIL (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-362))))) (-3235 (($ $ (-916)) NIL)) (-3495 ((|#1| $) NIL (|has| |#2| (-366 |#1|)))) (-3849 (((-1164 |#1|) $) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-1636 ((|#1|) NIL (|has| |#2| (-416 |#1|))) ((|#1| (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-3099 (((-1164 |#1|) $) NIL (|has| |#2| (-366 |#1|)))) (-3302 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3696 (((-1150) $) NIL)) (-2720 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1579 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2104 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1709 (((-1112) $) NIL)) (-3626 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2343 ((|#1| $ (-562)) NIL (|has| |#2| (-416 |#1|)))) (-2205 (((-683 |#1|) (-1256 $)) NIL (|has| |#2| (-416 |#1|))) (((-1256 |#1|) $) NIL (|has| |#2| (-416 |#1|))) (((-683 |#1|) (-1256 $) (-1256 $)) NIL (|has| |#2| (-366 |#1|))) (((-1256 |#1|) $ (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-4208 (($ (-1256 |#1|)) NIL (|has| |#2| (-416 |#1|))) (((-1256 |#1|) $) NIL (|has| |#2| (-416 |#1|)))) (-2555 (((-639 (-947 |#1|))) NIL (|has| |#2| (-416 |#1|))) (((-639 (-947 |#1|)) (-1256 $)) NIL (|has| |#2| (-366 |#1|)))) (-2114 (($ $ $) NIL)) (-3901 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-4053 (((-857) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-4291 (((-1256 $)) NIL (|has| |#2| (-416 |#1|)))) (-1823 (((-639 (-1256 |#1|))) NIL (-4037 (-12 (|has| |#2| (-366 |#1|)) (|has| |#1| (-554))) (-12 (|has| |#2| (-416 |#1|)) (|has| |#1| (-554)))))) (-2584 (($ $ $ $) NIL)) (-4309 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-1360 (($ (-683 |#1|) $) NIL (|has| |#2| (-416 |#1|)))) (-4324 (($ $ $) NIL)) (-1517 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2636 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-3488 (((-112)) NIL (|has| |#2| (-366 |#1|)))) (-2285 (($) 15 T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) 17)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-631 |#1| |#2|) (-13 (-739 |#1|) (-609 |#2|) (-10 -8 (-15 -4053 ($ |#2|)) (IF (|has| |#2| (-416 |#1|)) (-6 (-416 |#1|)) |%noBranch|) (IF (|has| |#2| (-366 |#1|)) (-6 (-366 |#1|)) |%noBranch|))) (-171) (-739 |#1|)) (T -631))
+((-4053 (*1 *1 *2) (-12 (-4 *3 (-171)) (-5 *1 (-631 *3 *2)) (-4 *2 (-739 *3)))))
+(-13 (-739 |#1|) (-609 |#2|) (-10 -8 (-15 -4053 ($ |#2|)) (IF (|has| |#2| (-416 |#1|)) (-6 (-416 |#1|)) |%noBranch|) (IF (|has| |#2| (-366 |#1|)) (-6 (-366 |#1|)) |%noBranch|)))
+((-1739 (((-3 (-838 |#2|) "failed") |#2| (-293 |#2|) (-1150)) 81) (((-3 (-838 |#2|) (-2 (|:| |leftHandLimit| (-3 (-838 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-838 |#2|) "failed"))) "failed") |#2| (-293 (-838 |#2|))) 103)) (-1990 (((-3 (-828 |#2|) "failed") |#2| (-293 (-828 |#2|))) 108)))
+(((-632 |#1| |#2|) (-10 -7 (-15 -1739 ((-3 (-838 |#2|) (-2 (|:| |leftHandLimit| (-3 (-838 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-838 |#2|) "failed"))) "failed") |#2| (-293 (-838 |#2|)))) (-15 -1990 ((-3 (-828 |#2|) "failed") |#2| (-293 (-828 |#2|)))) (-15 -1739 ((-3 (-838 |#2|) "failed") |#2| (-293 |#2|) (-1150)))) (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -632))
+((-1739 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-293 *3)) (-5 *5 (-1150)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-838 *3)) (-5 *1 (-632 *6 *3)))) (-1990 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-293 (-828 *3))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-828 *3)) (-5 *1 (-632 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))) (-1739 (*1 *2 *3 *4) (-12 (-5 *4 (-293 (-838 *3))) (-4 *3 (-13 (-27) (-1192) (-429 *5))) (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-3 (-838 *3) (-2 (|:| |leftHandLimit| (-3 (-838 *3) "failed")) (|:| |rightHandLimit| (-3 (-838 *3) "failed"))) "failed")) (-5 *1 (-632 *5 *3)))))
+(-10 -7 (-15 -1739 ((-3 (-838 |#2|) (-2 (|:| |leftHandLimit| (-3 (-838 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-838 |#2|) "failed"))) "failed") |#2| (-293 (-838 |#2|)))) (-15 -1990 ((-3 (-828 |#2|) "failed") |#2| (-293 (-828 |#2|)))) (-15 -1739 ((-3 (-838 |#2|) "failed") |#2| (-293 |#2|) (-1150))))
+((-1739 (((-3 (-838 (-406 (-947 |#1|))) "failed") (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))) (-1150)) 80) (((-3 (-838 (-406 (-947 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed"))) "failed") (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|)))) 20) (((-3 (-838 (-406 (-947 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed"))) "failed") (-406 (-947 |#1|)) (-293 (-838 (-947 |#1|)))) 35)) (-1990 (((-828 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|)))) 23) (((-828 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-293 (-828 (-947 |#1|)))) 43)))
+(((-633 |#1|) (-10 -7 (-15 -1739 ((-3 (-838 (-406 (-947 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed"))) "failed") (-406 (-947 |#1|)) (-293 (-838 (-947 |#1|))))) (-15 -1739 ((-3 (-838 (-406 (-947 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed"))) "failed") (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))))) (-15 -1990 ((-828 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-293 (-828 (-947 |#1|))))) (-15 -1990 ((-828 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))))) (-15 -1739 ((-3 (-838 (-406 (-947 |#1|))) "failed") (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))) (-1150)))) (-451)) (T -633))
+((-1739 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-293 (-406 (-947 *6)))) (-5 *5 (-1150)) (-5 *3 (-406 (-947 *6))) (-4 *6 (-451)) (-5 *2 (-838 *3)) (-5 *1 (-633 *6)))) (-1990 (*1 *2 *3 *4) (-12 (-5 *4 (-293 (-406 (-947 *5)))) (-5 *3 (-406 (-947 *5))) (-4 *5 (-451)) (-5 *2 (-828 *3)) (-5 *1 (-633 *5)))) (-1990 (*1 *2 *3 *4) (-12 (-5 *4 (-293 (-828 (-947 *5)))) (-4 *5 (-451)) (-5 *2 (-828 (-406 (-947 *5)))) (-5 *1 (-633 *5)) (-5 *3 (-406 (-947 *5))))) (-1739 (*1 *2 *3 *4) (-12 (-5 *4 (-293 (-406 (-947 *5)))) (-5 *3 (-406 (-947 *5))) (-4 *5 (-451)) (-5 *2 (-3 (-838 *3) (-2 (|:| |leftHandLimit| (-3 (-838 *3) "failed")) (|:| |rightHandLimit| (-3 (-838 *3) "failed"))) "failed")) (-5 *1 (-633 *5)))) (-1739 (*1 *2 *3 *4) (-12 (-5 *4 (-293 (-838 (-947 *5)))) (-4 *5 (-451)) (-5 *2 (-3 (-838 (-406 (-947 *5))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 *5))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 *5))) "failed"))) "failed")) (-5 *1 (-633 *5)) (-5 *3 (-406 (-947 *5))))))
+(-10 -7 (-15 -1739 ((-3 (-838 (-406 (-947 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed"))) "failed") (-406 (-947 |#1|)) (-293 (-838 (-947 |#1|))))) (-15 -1739 ((-3 (-838 (-406 (-947 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-838 (-406 (-947 |#1|))) "failed"))) "failed") (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))))) (-15 -1990 ((-828 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-293 (-828 (-947 |#1|))))) (-15 -1990 ((-828 (-406 (-947 |#1|))) (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))))) (-15 -1739 ((-3 (-838 (-406 (-947 |#1|))) "failed") (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))) (-1150))))
+((-1721 (((-3 (-1256 (-406 |#1|)) "failed") (-1256 |#2|) |#2|) 57 (-2234 (|has| |#1| (-362)))) (((-3 (-1256 |#1|) "failed") (-1256 |#2|) |#2|) 42 (|has| |#1| (-362)))) (-1974 (((-112) (-1256 |#2|)) 30)) (-2640 (((-3 (-1256 |#1|) "failed") (-1256 |#2|)) 33)))
+(((-634 |#1| |#2|) (-10 -7 (-15 -1974 ((-112) (-1256 |#2|))) (-15 -2640 ((-3 (-1256 |#1|) "failed") (-1256 |#2|))) (IF (|has| |#1| (-362)) (-15 -1721 ((-3 (-1256 |#1|) "failed") (-1256 |#2|) |#2|)) (-15 -1721 ((-3 (-1256 (-406 |#1|)) "failed") (-1256 |#2|) |#2|)))) (-554) (-635 |#1|)) (T -634))
+((-1721 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 *5)) (-2234 (-4 *5 (-362))) (-4 *5 (-554)) (-5 *2 (-1256 (-406 *5))) (-5 *1 (-634 *5 *4)))) (-1721 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 *5)) (-4 *5 (-362)) (-4 *5 (-554)) (-5 *2 (-1256 *5)) (-5 *1 (-634 *5 *4)))) (-2640 (*1 *2 *3) (|partial| -12 (-5 *3 (-1256 *5)) (-4 *5 (-635 *4)) (-4 *4 (-554)) (-5 *2 (-1256 *4)) (-5 *1 (-634 *4 *5)))) (-1974 (*1 *2 *3) (-12 (-5 *3 (-1256 *5)) (-4 *5 (-635 *4)) (-4 *4 (-554)) (-5 *2 (-112)) (-5 *1 (-634 *4 *5)))))
+(-10 -7 (-15 -1974 ((-112) (-1256 |#2|))) (-15 -2640 ((-3 (-1256 |#1|) "failed") (-1256 |#2|))) (IF (|has| |#1| (-362)) (-15 -1721 ((-3 (-1256 |#1|) "failed") (-1256 |#2|) |#2|)) (-15 -1721 ((-3 (-1256 (-406 |#1|)) "failed") (-1256 |#2|) |#2|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3449 (((-683 |#1|) (-683 $)) 36) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 35)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-562)) 29)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-635 |#1|) (-139) (-1044)) (T -635))
-((-2406 (*1 *2 *3) (-12 (-5 *3 (-683 *1)) (-4 *1 (-635 *4)) (-4 *4 (-1044)) (-5 *2 (-683 *4)))) (-2406 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *1)) (-5 *4 (-1256 *1)) (-4 *1 (-635 *5)) (-4 *5 (-1044)) (-5 *2 (-2 (|:| -1545 (-683 *5)) (|:| |vec| (-1256 *5)))))))
-(-13 (-1044) (-10 -8 (-15 -2406 ((-683 |t#1|) (-683 $))) (-15 -2406 ((-2 (|:| -1545 (-683 |t#1|)) (|:| |vec| (-1256 |t#1|))) (-683 $) (-1256 $)))))
+((-3449 (*1 *2 *3) (-12 (-5 *3 (-683 *1)) (-4 *1 (-635 *4)) (-4 *4 (-1044)) (-5 *2 (-683 *4)))) (-3449 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *1)) (-5 *4 (-1256 *1)) (-4 *1 (-635 *5)) (-4 *5 (-1044)) (-5 *2 (-2 (|:| -1767 (-683 *5)) (|:| |vec| (-1256 *5)))))))
+(-13 (-1044) (-10 -8 (-15 -3449 ((-683 |t#1|) (-683 $))) (-15 -3449 ((-2 (|:| -1767 (-683 |t#1|)) (|:| |vec| (-1256 |t#1|))) (-683 $) (-1256 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-642 $) . T) ((-721) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
((-3789 ((|#2| (-639 |#1|) (-639 |#2|) |#1| (-1 |#2| |#1|)) 18) (((-1 |#2| |#1|) (-639 |#1|) (-639 |#2|) (-1 |#2| |#1|)) 19) ((|#2| (-639 |#1|) (-639 |#2|) |#1| |#2|) 16) (((-1 |#2| |#1|) (-639 |#1|) (-639 |#2|) |#2|) 17) ((|#2| (-639 |#1|) (-639 |#2|) |#1|) 10) (((-1 |#2| |#1|) (-639 |#1|) (-639 |#2|)) 12)))
(((-636 |#1| |#2|) (-10 -7 (-15 -3789 ((-1 |#2| |#1|) (-639 |#1|) (-639 |#2|))) (-15 -3789 (|#2| (-639 |#1|) (-639 |#2|) |#1|)) (-15 -3789 ((-1 |#2| |#1|) (-639 |#1|) (-639 |#2|) |#2|)) (-15 -3789 (|#2| (-639 |#1|) (-639 |#2|) |#1| |#2|)) (-15 -3789 ((-1 |#2| |#1|) (-639 |#1|) (-639 |#2|) (-1 |#2| |#1|))) (-15 -3789 (|#2| (-639 |#1|) (-639 |#2|) |#1| (-1 |#2| |#1|)))) (-1092) (-1207)) (T -636))
((-3789 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-639 *5)) (-5 *4 (-639 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1092)) (-4 *2 (-1207)) (-5 *1 (-636 *5 *2)))) (-3789 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-639 *5)) (-5 *4 (-639 *6)) (-4 *5 (-1092)) (-4 *6 (-1207)) (-5 *1 (-636 *5 *6)))) (-3789 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-639 *5)) (-5 *4 (-639 *2)) (-4 *5 (-1092)) (-4 *2 (-1207)) (-5 *1 (-636 *5 *2)))) (-3789 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 *5)) (-4 *6 (-1092)) (-4 *5 (-1207)) (-5 *2 (-1 *5 *6)) (-5 *1 (-636 *6 *5)))) (-3789 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 *5)) (-5 *4 (-639 *2)) (-4 *5 (-1092)) (-4 *2 (-1207)) (-5 *1 (-636 *5 *2)))) (-3789 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *5)) (-5 *4 (-639 *6)) (-4 *5 (-1092)) (-4 *6 (-1207)) (-5 *2 (-1 *6 *5)) (-5 *1 (-636 *5 *6)))))
(-10 -7 (-15 -3789 ((-1 |#2| |#1|) (-639 |#1|) (-639 |#2|))) (-15 -3789 (|#2| (-639 |#1|) (-639 |#2|) |#1|)) (-15 -3789 ((-1 |#2| |#1|) (-639 |#1|) (-639 |#2|) |#2|)) (-15 -3789 (|#2| (-639 |#1|) (-639 |#2|) |#1| |#2|)) (-15 -3789 ((-1 |#2| |#1|) (-639 |#1|) (-639 |#2|) (-1 |#2| |#1|))) (-15 -3789 (|#2| (-639 |#1|) (-639 |#2|) |#1| (-1 |#2| |#1|))))
-((-2578 (((-639 |#2|) (-1 |#2| |#1| |#2|) (-639 |#1|) |#2|) 16)) (-1955 ((|#2| (-1 |#2| |#1| |#2|) (-639 |#1|) |#2|) 18)) (-4152 (((-639 |#2|) (-1 |#2| |#1|) (-639 |#1|)) 13)))
-(((-637 |#1| |#2|) (-10 -7 (-15 -2578 ((-639 |#2|) (-1 |#2| |#1| |#2|) (-639 |#1|) |#2|)) (-15 -1955 (|#2| (-1 |#2| |#1| |#2|) (-639 |#1|) |#2|)) (-15 -4152 ((-639 |#2|) (-1 |#2| |#1|) (-639 |#1|)))) (-1207) (-1207)) (T -637))
-((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-639 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-639 *6)) (-5 *1 (-637 *5 *6)))) (-1955 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-639 *5)) (-4 *5 (-1207)) (-4 *2 (-1207)) (-5 *1 (-637 *5 *2)))) (-2578 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-639 *6)) (-4 *6 (-1207)) (-4 *5 (-1207)) (-5 *2 (-639 *5)) (-5 *1 (-637 *6 *5)))))
-(-10 -7 (-15 -2578 ((-639 |#2|) (-1 |#2| |#1| |#2|) (-639 |#1|) |#2|)) (-15 -1955 (|#2| (-1 |#2| |#1| |#2|) (-639 |#1|) |#2|)) (-15 -4152 ((-639 |#2|) (-1 |#2| |#1|) (-639 |#1|))))
+((-1555 (((-639 |#2|) (-1 |#2| |#1| |#2|) (-639 |#1|) |#2|) 16)) (-1954 ((|#2| (-1 |#2| |#1| |#2|) (-639 |#1|) |#2|) 18)) (-4152 (((-639 |#2|) (-1 |#2| |#1|) (-639 |#1|)) 13)))
+(((-637 |#1| |#2|) (-10 -7 (-15 -1555 ((-639 |#2|) (-1 |#2| |#1| |#2|) (-639 |#1|) |#2|)) (-15 -1954 (|#2| (-1 |#2| |#1| |#2|) (-639 |#1|) |#2|)) (-15 -4152 ((-639 |#2|) (-1 |#2| |#1|) (-639 |#1|)))) (-1207) (-1207)) (T -637))
+((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-639 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-639 *6)) (-5 *1 (-637 *5 *6)))) (-1954 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-639 *5)) (-4 *5 (-1207)) (-4 *2 (-1207)) (-5 *1 (-637 *5 *2)))) (-1555 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-639 *6)) (-4 *6 (-1207)) (-4 *5 (-1207)) (-5 *2 (-639 *5)) (-5 *1 (-637 *6 *5)))))
+(-10 -7 (-15 -1555 ((-639 |#2|) (-1 |#2| |#1| |#2|) (-639 |#1|) |#2|)) (-15 -1954 (|#2| (-1 |#2| |#1| |#2|) (-639 |#1|) |#2|)) (-15 -4152 ((-639 |#2|) (-1 |#2| |#1|) (-639 |#1|))))
((-4152 (((-639 |#3|) (-1 |#3| |#1| |#2|) (-639 |#1|) (-639 |#2|)) 13)))
(((-638 |#1| |#2| |#3|) (-10 -7 (-15 -4152 ((-639 |#3|) (-1 |#3| |#1| |#2|) (-639 |#1|) (-639 |#2|)))) (-1207) (-1207) (-1207)) (T -638))
((-4152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-639 *6)) (-5 *5 (-639 *7)) (-4 *6 (-1207)) (-4 *7 (-1207)) (-4 *8 (-1207)) (-5 *2 (-639 *8)) (-5 *1 (-638 *6 *7 *8)))))
(-10 -7 (-15 -4152 ((-639 |#3|) (-1 |#3| |#1| |#2|) (-639 |#1|) (-639 |#2|))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2534 ((|#1| $) NIL)) (-2359 ((|#1| $) NIL)) (-3121 (($ $) NIL)) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-2254 (($ $ (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) $) NIL (|has| |#1| (-845))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3381 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-845)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-1395 (($ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-1512 ((|#1| $ |#1|) NIL (|has| $ (-6 -4403)))) (-3012 (($ $ $) NIL (|has| $ (-6 -4403)))) (-3950 ((|#1| $ |#1|) NIL (|has| $ (-6 -4403)))) (-2687 ((|#1| $ |#1|) NIL (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4403))) (($ $ "rest" $) NIL (|has| $ (-6 -4403))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) NIL (|has| $ (-6 -4403)))) (-1349 (($ $ $) 31 (|has| |#1| (-1092)))) (-1340 (($ $ $) 33 (|has| |#1| (-1092)))) (-3750 (($ $ $) 36 (|has| |#1| (-1092)))) (-3111 (($ (-1 (-112) |#1|) $) NIL)) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-2350 ((|#1| $) NIL)) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-1434 (($ $) NIL) (($ $ (-766)) NIL)) (-4354 (($ $) NIL (|has| |#1| (-1092)))) (-1459 (($ $) 30 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4000 (($ |#1| $) NIL (|has| |#1| (-1092))) (($ (-1 (-112) |#1|) $) NIL)) (-1475 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1505 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) NIL)) (-3266 (((-112) $) NIL)) (-4264 (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092))) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) (-1 (-112) |#1|) $) NIL)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-2220 (((-112) $) 9)) (-2720 (((-639 $) $) NIL)) (-4379 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1370 (($) 7)) (-1458 (($ (-766) |#1|) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2673 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-1610 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 32 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3716 (($ |#1|) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-4007 (((-639 |#1|) $) NIL)) (-3449 (((-112) $) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1504 ((|#1| $) NIL) (($ $ (-766)) NIL)) (-4300 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-3297 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL) (($ $ (-766)) NIL)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2716 (($ $ |#1|) NIL (|has| $ (-6 -4403)))) (-2017 (((-112) $) NIL)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1223 (-562))) NIL) ((|#1| $ (-562)) 35) ((|#1| $ (-562) |#1|) NIL)) (-2568 (((-562) $ $) NIL)) (-2878 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2880 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2424 (((-112) $) NIL)) (-2613 (($ $) NIL)) (-4327 (($ $) NIL (|has| $ (-6 -4403)))) (-2296 (((-766) $) NIL)) (-3913 (($ $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) 44 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) NIL)) (-3949 (($ |#1| $) 10)) (-4142 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2767 (($ $ $) 29) (($ |#1| $) NIL) (($ (-639 $)) NIL) (($ $ |#1|) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) NIL)) (-4055 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1592 (($ $ $) 11)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-2833 (((-1150) $) 25 (|has| |#1| (-823))) (((-1150) $ (-112)) 26 (|has| |#1| (-823))) (((-1261) (-817) $) 27 (|has| |#1| (-823))) (((-1261) (-817) $ (-112)) 28 (|has| |#1| (-823)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-639 |#1|) (-13 (-660 |#1|) (-10 -8 (-15 -1370 ($)) (-15 -2220 ((-112) $)) (-15 -3949 ($ |#1| $)) (-15 -1592 ($ $ $)) (IF (|has| |#1| (-1092)) (PROGN (-15 -1349 ($ $ $)) (-15 -1340 ($ $ $)) (-15 -3750 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|))) (-1207)) (T -639))
-((-1370 (*1 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1207)))) (-2220 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-639 *3)) (-4 *3 (-1207)))) (-3949 (*1 *1 *2 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1207)))) (-1592 (*1 *1 *1 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1207)))) (-1349 (*1 *1 *1 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-1207)))) (-1340 (*1 *1 *1 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-1207)))) (-3750 (*1 *1 *1 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-1207)))))
-(-13 (-660 |#1|) (-10 -8 (-15 -1370 ($)) (-15 -2220 ((-112) $)) (-15 -3949 ($ |#1| $)) (-15 -1592 ($ $ $)) (IF (|has| |#1| (-1092)) (PROGN (-15 -1349 ($ $ $)) (-15 -1340 ($ $ $)) (-15 -3750 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|)))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 11) (($ (-1173)) NIL) (((-1173) $) NIL) ((|#1| $) 8)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2533 ((|#1| $) NIL)) (-2358 ((|#1| $) NIL)) (-3120 (($ $) NIL)) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1335 (($ $ (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) $) NIL (|has| |#1| (-845))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3737 (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| |#1| (-845)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-1395 (($ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-2677 ((|#1| $ |#1|) NIL (|has| $ (-6 -4404)))) (-3400 (($ $ $) NIL (|has| $ (-6 -4404)))) (-1393 ((|#1| $ |#1|) NIL (|has| $ (-6 -4404)))) (-3239 ((|#1| $ |#1|) NIL (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4404))) (($ $ "rest" $) NIL (|has| $ (-6 -4404))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) NIL (|has| $ (-6 -4404)))) (-1349 (($ $ $) 31 (|has| |#1| (-1092)))) (-1340 (($ $ $) 33 (|has| |#1| (-1092)))) (-3751 (($ $ $) 36 (|has| |#1| (-1092)))) (-2968 (($ (-1 (-112) |#1|) $) NIL)) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-2349 ((|#1| $) NIL)) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1434 (($ $) NIL) (($ $ (-766)) NIL)) (-3923 (($ $) NIL (|has| |#1| (-1092)))) (-1459 (($ $) 30 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3729 (($ |#1| $) NIL (|has| |#1| (-1092))) (($ (-1 (-112) |#1|) $) NIL)) (-1475 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1507 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) NIL)) (-2101 (((-112) $) NIL)) (-4265 (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092))) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) (-1 (-112) |#1|) $) NIL)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-2224 (((-112) $) 9)) (-2409 (((-639 $) $) NIL)) (-4188 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1370 (($) 7)) (-1458 (($ (-766) |#1|) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-3124 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-4103 (($ $ $) NIL (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 32 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3716 (($ |#1|) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-4008 (((-639 |#1|) $) NIL)) (-3179 (((-112) $) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1504 ((|#1| $) NIL) (($ $ (-766)) NIL)) (-1581 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-3295 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL) (($ $ (-766)) NIL)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3510 (($ $ |#1|) NIL (|has| $ (-6 -4404)))) (-3745 (((-112) $) NIL)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1223 (-562))) NIL) ((|#1| $ (-562)) 35) ((|#1| $ (-562) |#1|) NIL)) (-1423 (((-562) $ $) NIL)) (-1527 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2880 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2473 (((-112) $) NIL)) (-3734 (($ $) NIL)) (-3659 (($ $) NIL (|has| $ (-6 -4404)))) (-3595 (((-766) $) NIL)) (-2333 (($ $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) 44 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) NIL)) (-3949 (($ |#1| $) 10)) (-2587 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2767 (($ $ $) 29) (($ |#1| $) NIL) (($ (-639 $)) NIL) (($ $ |#1|) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) NIL)) (-2985 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1591 (($ $ $) 11)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-2332 (((-1150) $) 25 (|has| |#1| (-823))) (((-1150) $ (-112)) 26 (|has| |#1| (-823))) (((-1261) (-817) $) 27 (|has| |#1| (-823))) (((-1261) (-817) $ (-112)) 28 (|has| |#1| (-823)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-639 |#1|) (-13 (-660 |#1|) (-10 -8 (-15 -1370 ($)) (-15 -2224 ((-112) $)) (-15 -3949 ($ |#1| $)) (-15 -1591 ($ $ $)) (IF (|has| |#1| (-1092)) (PROGN (-15 -1349 ($ $ $)) (-15 -1340 ($ $ $)) (-15 -3751 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|))) (-1207)) (T -639))
+((-1370 (*1 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1207)))) (-2224 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-639 *3)) (-4 *3 (-1207)))) (-3949 (*1 *1 *2 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1207)))) (-1591 (*1 *1 *1 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1207)))) (-1349 (*1 *1 *1 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-1207)))) (-1340 (*1 *1 *1 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-1207)))) (-3751 (*1 *1 *1 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-1207)))))
+(-13 (-660 |#1|) (-10 -8 (-15 -1370 ($)) (-15 -2224 ((-112) $)) (-15 -3949 ($ |#1| $)) (-15 -1591 ($ $ $)) (IF (|has| |#1| (-1092)) (PROGN (-15 -1349 ($ $ $)) (-15 -1340 ($ $ $)) (-15 -3751 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-823)) (-6 (-823)) |%noBranch|)))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 11) (($ (-1173)) NIL) (((-1173) $) NIL) ((|#1| $) 8)) (-1733 (((-112) $ $) NIL)))
(((-640 |#1|) (-13 (-1075) (-609 |#1|)) (-1092)) (T -640))
NIL
(-13 (-1075) (-609 |#1|))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1447 (($ |#1| |#1| $) 43)) (-4336 (((-112) $ (-766)) NIL)) (-3111 (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-4354 (($ $) 45)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4000 (($ |#1| $) 51 (|has| $ (-6 -4402))) (($ (-1 (-112) |#1|) $) 53 (|has| $ (-6 -4402)))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402)))) (-1720 (((-639 |#1|) $) 9 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1490 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 37)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3262 ((|#1| $) 46)) (-4300 (($ |#1| $) 26) (($ |#1| $ (-766)) 42)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1904 ((|#1| $) 48)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 21)) (-4307 (($) 25)) (-1804 (((-112) $) 49)) (-2671 (((-639 (-2 (|:| -2694 |#1|) (|:| -1723 (-766)))) $) 58)) (-3564 (($) 23) (($ (-639 |#1|)) 18)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) 55 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) 19)) (-4208 (((-535) $) 34 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) NIL)) (-4054 (((-857) $) 14 (|has| |#1| (-609 (-857))))) (-1932 (($ (-639 |#1|)) 22)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 60 (|has| |#1| (-1092)))) (-3492 (((-766) $) 16 (|has| $ (-6 -4402)))))
-(((-641 |#1|) (-13 (-689 |#1|) (-10 -8 (-6 -4402) (-15 -1804 ((-112) $)) (-15 -1447 ($ |#1| |#1| $)))) (-1092)) (T -641))
-((-1804 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-641 *3)) (-4 *3 (-1092)))) (-1447 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-641 *2)) (-4 *2 (-1092)))))
-(-13 (-689 |#1|) (-10 -8 (-6 -4402) (-15 -1804 ((-112) $)) (-15 -1447 ($ |#1| |#1| $))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#1| $) 23)))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1446 (($ |#1| |#1| $) 43)) (-3735 (((-112) $ (-766)) NIL)) (-2968 (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-3923 (($ $) 45)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3729 (($ |#1| $) 51 (|has| $ (-6 -4403))) (($ (-1 (-112) |#1|) $) 53 (|has| $ (-6 -4403)))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-1720 (((-639 |#1|) $) 9 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1491 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 37)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-2078 ((|#1| $) 46)) (-1581 (($ |#1| $) 26) (($ |#1| $ (-766)) 42)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2038 ((|#1| $) 48)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 21)) (-1663 (($) 25)) (-3375 (((-112) $) 49)) (-3110 (((-639 (-2 (|:| -2693 |#1|) (|:| -1723 (-766)))) $) 58)) (-1932 (($) 23) (($ (-639 |#1|)) 18)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) 55 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) 19)) (-4208 (((-535) $) 34 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) NIL)) (-4053 (((-857) $) 14 (|has| |#1| (-609 (-857))))) (-4131 (($ (-639 |#1|)) 22)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 60 (|has| |#1| (-1092)))) (-3492 (((-766) $) 16 (|has| $ (-6 -4403)))))
+(((-641 |#1|) (-13 (-689 |#1|) (-10 -8 (-6 -4403) (-15 -3375 ((-112) $)) (-15 -1446 ($ |#1| |#1| $)))) (-1092)) (T -641))
+((-3375 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-641 *3)) (-4 *3 (-1092)))) (-1446 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-641 *2)) (-4 *2 (-1092)))))
+(-13 (-689 |#1|) (-10 -8 (-6 -4403) (-15 -3375 ((-112) $)) (-15 -1446 ($ |#1| |#1| $))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#1| $) 23)))
(((-642 |#1|) (-139) (-1051)) (T -642))
((* (*1 *1 *2 *1) (-12 (-4 *1 (-642 *2)) (-4 *2 (-1051)))))
(-13 (-21) (-10 -8 (-15 * ($ |t#1| $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766) $) 15)) (-2999 (($ $ |#1|) 56)) (-2447 (($ $) 32)) (-2677 (($ $) 31)) (-4048 (((-3 |#1| "failed") $) 48)) (-3961 ((|#1| $) NIL)) (-2960 (($ |#1| |#2| $) 62) (($ $ $) 63)) (-1995 (((-857) $ (-1 (-857) (-857) (-857)) (-1 (-857) (-857) (-857)) (-562)) 46)) (-3126 ((|#1| $ (-562)) 30)) (-1870 ((|#2| $ (-562)) 29)) (-1304 (($ (-1 |#1| |#1|) $) 34)) (-2866 (($ (-1 |#2| |#2|) $) 38)) (-3744 (($) 10)) (-4105 (($ |#1| |#2|) 22)) (-4214 (($ (-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|)))) 23)) (-3307 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))) $) 13)) (-1549 (($ |#1| $) 57)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1369 (((-112) $ $) 60)) (-4054 (((-857) $) 19) (($ |#1|) 16)) (-1731 (((-112) $ $) 25)))
-(((-643 |#1| |#2| |#3|) (-13 (-1092) (-1033 |#1|) (-10 -8 (-15 -1995 ((-857) $ (-1 (-857) (-857) (-857)) (-1 (-857) (-857) (-857)) (-562))) (-15 -3307 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))) $)) (-15 -4105 ($ |#1| |#2|)) (-15 -4214 ($ (-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))))) (-15 -1870 (|#2| $ (-562))) (-15 -3126 (|#1| $ (-562))) (-15 -2677 ($ $)) (-15 -2447 ($ $)) (-15 -1382 ((-766) $)) (-15 -3744 ($)) (-15 -2999 ($ $ |#1|)) (-15 -1549 ($ |#1| $)) (-15 -2960 ($ |#1| |#2| $)) (-15 -2960 ($ $ $)) (-15 -1369 ((-112) $ $)) (-15 -2866 ($ (-1 |#2| |#2|) $)) (-15 -1304 ($ (-1 |#1| |#1|) $)))) (-1092) (-23) |#2|) (T -643))
-((-1995 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-857) (-857) (-857))) (-5 *4 (-562)) (-5 *2 (-857)) (-5 *1 (-643 *5 *6 *7)) (-4 *5 (-1092)) (-4 *6 (-23)) (-14 *7 *6))) (-3307 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 *4)))) (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092)) (-4 *4 (-23)) (-14 *5 *4))) (-4105 (*1 *1 *2 *3) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-4214 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 *4)))) (-4 *3 (-1092)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-643 *3 *4 *5)))) (-1870 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *2 (-23)) (-5 *1 (-643 *4 *2 *5)) (-4 *4 (-1092)) (-14 *5 *2))) (-3126 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *2 (-1092)) (-5 *1 (-643 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-2677 (*1 *1 *1) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-2447 (*1 *1 *1) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-1382 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092)) (-4 *4 (-23)) (-14 *5 *4))) (-3744 (*1 *1) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-2999 (*1 *1 *1 *2) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-1549 (*1 *1 *2 *1) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-2960 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-2960 (*1 *1 *1 *1) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-1369 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092)) (-4 *4 (-23)) (-14 *5 *4))) (-2866 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092)))) (-1304 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-643 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
-(-13 (-1092) (-1033 |#1|) (-10 -8 (-15 -1995 ((-857) $ (-1 (-857) (-857) (-857)) (-1 (-857) (-857) (-857)) (-562))) (-15 -3307 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))) $)) (-15 -4105 ($ |#1| |#2|)) (-15 -4214 ($ (-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))))) (-15 -1870 (|#2| $ (-562))) (-15 -3126 (|#1| $ (-562))) (-15 -2677 ($ $)) (-15 -2447 ($ $)) (-15 -1382 ((-766) $)) (-15 -3744 ($)) (-15 -2999 ($ $ |#1|)) (-15 -1549 ($ |#1| $)) (-15 -2960 ($ |#1| |#2| $)) (-15 -2960 ($ $ $)) (-15 -1369 ((-112) $ $)) (-15 -2866 ($ (-1 |#2| |#2|) $)) (-15 -1304 ($ (-1 |#1| |#1|) $))))
-((-3874 (((-562) $) 23)) (-3297 (($ |#2| $ (-562)) 21) (($ $ $ (-562)) NIL)) (-2093 (((-639 (-562)) $) 12)) (-1570 (((-112) (-562) $) 14)) (-2767 (($ $ |#2|) 18) (($ |#2| $) 19) (($ $ $) NIL) (($ (-639 $)) NIL)))
-(((-644 |#1| |#2|) (-10 -8 (-15 -3297 (|#1| |#1| |#1| (-562))) (-15 -3297 (|#1| |#2| |#1| (-562))) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -3874 ((-562) |#1|)) (-15 -2093 ((-639 (-562)) |#1|)) (-15 -1570 ((-112) (-562) |#1|))) (-645 |#2|) (-1207)) (T -644))
-NIL
-(-10 -8 (-15 -3297 (|#1| |#1| |#1| (-562))) (-15 -3297 (|#1| |#2| |#1| (-562))) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -3874 ((-562) |#1|)) (-15 -2093 ((-639 (-562)) |#1|)) (-15 -1570 ((-112) (-562) |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3052 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) |#1|) 52 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) 58 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-1459 (($ $) 78 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#1| $) 77 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) 53 (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) 51)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-1458 (($ (-766) |#1|) 69)) (-3292 (((-112) $ (-766)) 9)) (-4197 (((-562) $) 43 (|has| (-562) (-845)))) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 44 (|has| (-562) (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3297 (($ |#1| $ (-562)) 60) (($ $ $ (-562)) 59)) (-2093 (((-639 (-562)) $) 46)) (-1570 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 42 (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2716 (($ $ |#1|) 41 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) 48)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ (-562) |#1|) 50) ((|#1| $ (-562)) 49) (($ $ (-1223 (-562))) 63)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 70)) (-2767 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766) $) 15)) (-3299 (($ $ |#1|) 56)) (-2673 (($ $) 32)) (-2676 (($ $) 31)) (-4048 (((-3 |#1| "failed") $) 48)) (-3960 ((|#1| $) NIL)) (-2959 (($ |#1| |#2| $) 62) (($ $ $) 63)) (-3508 (((-857) $ (-1 (-857) (-857) (-857)) (-1 (-857) (-857) (-857)) (-562)) 46)) (-3111 ((|#1| $ (-562)) 30)) (-1646 ((|#2| $ (-562)) 29)) (-2491 (($ (-1 |#1| |#1|) $) 34)) (-1369 (($ (-1 |#2| |#2|) $) 38)) (-3036 (($) 10)) (-3432 (($ |#1| |#2|) 22)) (-2008 (($ (-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|)))) 23)) (-4298 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))) $) 13)) (-1804 (($ |#1| $) 57)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2507 (((-112) $ $) 60)) (-4053 (((-857) $) 19) (($ |#1|) 16)) (-1733 (((-112) $ $) 25)))
+(((-643 |#1| |#2| |#3|) (-13 (-1092) (-1033 |#1|) (-10 -8 (-15 -3508 ((-857) $ (-1 (-857) (-857) (-857)) (-1 (-857) (-857) (-857)) (-562))) (-15 -4298 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))) $)) (-15 -3432 ($ |#1| |#2|)) (-15 -2008 ($ (-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))))) (-15 -1646 (|#2| $ (-562))) (-15 -3111 (|#1| $ (-562))) (-15 -2676 ($ $)) (-15 -2673 ($ $)) (-15 -1382 ((-766) $)) (-15 -3036 ($)) (-15 -3299 ($ $ |#1|)) (-15 -1804 ($ |#1| $)) (-15 -2959 ($ |#1| |#2| $)) (-15 -2959 ($ $ $)) (-15 -2507 ((-112) $ $)) (-15 -1369 ($ (-1 |#2| |#2|) $)) (-15 -2491 ($ (-1 |#1| |#1|) $)))) (-1092) (-23) |#2|) (T -643))
+((-3508 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-857) (-857) (-857))) (-5 *4 (-562)) (-5 *2 (-857)) (-5 *1 (-643 *5 *6 *7)) (-4 *5 (-1092)) (-4 *6 (-23)) (-14 *7 *6))) (-4298 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 *4)))) (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092)) (-4 *4 (-23)) (-14 *5 *4))) (-3432 (*1 *1 *2 *3) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-2008 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 *4)))) (-4 *3 (-1092)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-643 *3 *4 *5)))) (-1646 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *2 (-23)) (-5 *1 (-643 *4 *2 *5)) (-4 *4 (-1092)) (-14 *5 *2))) (-3111 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *2 (-1092)) (-5 *1 (-643 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-2676 (*1 *1 *1) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-2673 (*1 *1 *1) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-1382 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092)) (-4 *4 (-23)) (-14 *5 *4))) (-3036 (*1 *1) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-3299 (*1 *1 *1 *2) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-1804 (*1 *1 *2 *1) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-2959 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-2959 (*1 *1 *1 *1) (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23)) (-14 *4 *3))) (-2507 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092)) (-4 *4 (-23)) (-14 *5 *4))) (-1369 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092)))) (-2491 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-643 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
+(-13 (-1092) (-1033 |#1|) (-10 -8 (-15 -3508 ((-857) $ (-1 (-857) (-857) (-857)) (-1 (-857) (-857) (-857)) (-562))) (-15 -4298 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))) $)) (-15 -3432 ($ |#1| |#2|)) (-15 -2008 ($ (-639 (-2 (|:| |gen| |#1|) (|:| -3430 |#2|))))) (-15 -1646 (|#2| $ (-562))) (-15 -3111 (|#1| $ (-562))) (-15 -2676 ($ $)) (-15 -2673 ($ $)) (-15 -1382 ((-766) $)) (-15 -3036 ($)) (-15 -3299 ($ $ |#1|)) (-15 -1804 ($ |#1| $)) (-15 -2959 ($ |#1| |#2| $)) (-15 -2959 ($ $ $)) (-15 -2507 ((-112) $ $)) (-15 -1369 ($ (-1 |#2| |#2|) $)) (-15 -2491 ($ (-1 |#1| |#1|) $))))
+((-1929 (((-562) $) 23)) (-3295 (($ |#2| $ (-562)) 21) (($ $ $ (-562)) NIL)) (-3336 (((-639 (-562)) $) 12)) (-1987 (((-112) (-562) $) 14)) (-2767 (($ $ |#2|) 18) (($ |#2| $) 19) (($ $ $) NIL) (($ (-639 $)) NIL)))
+(((-644 |#1| |#2|) (-10 -8 (-15 -3295 (|#1| |#1| |#1| (-562))) (-15 -3295 (|#1| |#2| |#1| (-562))) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -1929 ((-562) |#1|)) (-15 -3336 ((-639 (-562)) |#1|)) (-15 -1987 ((-112) (-562) |#1|))) (-645 |#2|) (-1207)) (T -644))
+NIL
+(-10 -8 (-15 -3295 (|#1| |#1| |#1| (-562))) (-15 -3295 (|#1| |#2| |#1| (-562))) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -1929 ((-562) |#1|)) (-15 -3336 ((-639 (-562)) |#1|)) (-15 -1987 ((-112) (-562) |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3655 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) |#1|) 52 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) 58 (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-1459 (($ $) 78 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#1| $) 77 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) 53 (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) 51)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-1458 (($ (-766) |#1|) 69)) (-4172 (((-112) $ (-766)) 9)) (-1849 (((-562) $) 43 (|has| (-562) (-845)))) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 44 (|has| (-562) (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3295 (($ |#1| $ (-562)) 60) (($ $ $ (-562)) 59)) (-3336 (((-639 (-562)) $) 46)) (-1987 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 42 (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-3510 (($ $ |#1|) 41 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) 48)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ (-562) |#1|) 50) ((|#1| $ (-562)) 49) (($ $ (-1223 (-562))) 63)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 70)) (-2767 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-645 |#1|) (-139) (-1207)) (T -645))
-((-1458 (*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-2767 (*1 *1 *1 *2) (-12 (-4 *1 (-645 *2)) (-4 *2 (-1207)))) (-2767 (*1 *1 *2 *1) (-12 (-4 *1 (-645 *2)) (-4 *2 (-1207)))) (-2767 (*1 *1 *1 *1) (-12 (-4 *1 (-645 *2)) (-4 *2 (-1207)))) (-2767 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-4152 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 (-1223 (-562))) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-2880 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-2880 (*1 *1 *1 *2) (-12 (-5 *2 (-1223 (-562))) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-3297 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-645 *2)) (-4 *2 (-1207)))) (-3297 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-4200 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1223 (-562))) (|has| *1 (-6 -4403)) (-4 *1 (-645 *2)) (-4 *2 (-1207)))))
-(-13 (-600 (-562) |t#1|) (-150 |t#1|) (-10 -8 (-15 -1458 ($ (-766) |t#1|)) (-15 -2767 ($ $ |t#1|)) (-15 -2767 ($ |t#1| $)) (-15 -2767 ($ $ $)) (-15 -2767 ($ (-639 $))) (-15 -4152 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -2343 ($ $ (-1223 (-562)))) (-15 -2880 ($ $ (-562))) (-15 -2880 ($ $ (-1223 (-562)))) (-15 -3297 ($ |t#1| $ (-562))) (-15 -3297 ($ $ $ (-562))) (IF (|has| $ (-6 -4403)) (-15 -4200 (|t#1| $ (-1223 (-562)) |t#1|)) |%noBranch|)))
+((-1458 (*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-2767 (*1 *1 *1 *2) (-12 (-4 *1 (-645 *2)) (-4 *2 (-1207)))) (-2767 (*1 *1 *2 *1) (-12 (-4 *1 (-645 *2)) (-4 *2 (-1207)))) (-2767 (*1 *1 *1 *1) (-12 (-4 *1 (-645 *2)) (-4 *2 (-1207)))) (-2767 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-4152 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 (-1223 (-562))) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-2880 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-2880 (*1 *1 *1 *2) (-12 (-5 *2 (-1223 (-562))) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-3295 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-645 *2)) (-4 *2 (-1207)))) (-3295 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-645 *3)) (-4 *3 (-1207)))) (-4200 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1223 (-562))) (|has| *1 (-6 -4404)) (-4 *1 (-645 *2)) (-4 *2 (-1207)))))
+(-13 (-600 (-562) |t#1|) (-150 |t#1|) (-10 -8 (-15 -1458 ($ (-766) |t#1|)) (-15 -2767 ($ $ |t#1|)) (-15 -2767 ($ |t#1| $)) (-15 -2767 ($ $ $)) (-15 -2767 ($ (-639 $))) (-15 -4152 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -2343 ($ $ (-1223 (-562)))) (-15 -2880 ($ $ (-562))) (-15 -2880 ($ $ (-1223 (-562)))) (-15 -3295 ($ |t#1| $ (-562))) (-15 -3295 ($ $ $ (-562))) (IF (|has| $ (-6 -4404)) (-15 -4200 (|t#1| $ (-1223 (-562)) |t#1|)) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-285 #0=(-562) |#1|) . T) ((-287 #0# |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-600 #0# |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-4351 (((-3 |#2| "failed") |#3| |#2| (-1168) |#2| (-639 |#2|)) 160) (((-3 (-2 (|:| |particular| |#2|) (|:| -3928 (-639 |#2|))) "failed") |#3| |#2| (-1168)) 44)))
-(((-646 |#1| |#2| |#3|) (-10 -7 (-15 -4351 ((-3 (-2 (|:| |particular| |#2|) (|:| -3928 (-639 |#2|))) "failed") |#3| |#2| (-1168))) (-15 -4351 ((-3 |#2| "failed") |#3| |#2| (-1168) |#2| (-639 |#2|)))) (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)) (-13 (-29 |#1|) (-1192) (-954)) (-650 |#2|)) (T -646))
-((-4351 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-639 *2)) (-4 *2 (-13 (-29 *6) (-1192) (-954))) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *1 (-646 *6 *2 *3)) (-4 *3 (-650 *2)))) (-4351 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1168)) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-4 *4 (-13 (-29 *6) (-1192) (-954))) (-5 *2 (-2 (|:| |particular| *4) (|:| -3928 (-639 *4)))) (-5 *1 (-646 *6 *4 *3)) (-4 *3 (-650 *4)))))
-(-10 -7 (-15 -4351 ((-3 (-2 (|:| |particular| |#2|) (|:| -3928 (-639 |#2|))) "failed") |#3| |#2| (-1168))) (-15 -4351 ((-3 |#2| "failed") |#3| |#2| (-1168) |#2| (-639 |#2|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-2155 (($ $) NIL (|has| |#1| (-362)))) (-2639 (($ $ $) NIL (|has| |#1| (-362)))) (-1439 (($ $ (-766)) NIL (|has| |#1| (-362)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1896 (($ $ $) NIL (|has| |#1| (-362)))) (-3688 (($ $ $) NIL (|has| |#1| (-362)))) (-2488 (($ $ $) NIL (|has| |#1| (-362)))) (-4282 (($ $ $) NIL (|has| |#1| (-362)))) (-2703 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-3041 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-2227 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#1| (-451)))) (-1957 (((-112) $) NIL)) (-1378 (($ |#1| (-766)) NIL)) (-1664 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-554)))) (-1736 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-554)))) (-2076 (((-766) $) NIL)) (-1639 (($ $ $) NIL (|has| |#1| (-362)))) (-2492 (($ $ $) NIL (|has| |#1| (-362)))) (-4132 (($ $ $) NIL (|has| |#1| (-362)))) (-3671 (($ $ $) NIL (|has| |#1| (-362)))) (-2189 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-2075 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1535 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-2343 ((|#1| $ |#1|) NIL)) (-2297 (($ $ $) NIL (|has| |#1| (-362)))) (-3598 (((-766) $) NIL)) (-3900 ((|#1| $) NIL (|has| |#1| (-451)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) NIL)) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-766)) NIL)) (-2579 (((-766)) NIL)) (-1360 ((|#1| $ |#1| |#1|) NIL)) (-1563 (($ $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($) NIL)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-3888 (((-3 |#2| "failed") |#3| |#2| (-1168) |#2| (-639 |#2|)) 160) (((-3 (-2 (|:| |particular| |#2|) (|:| -4291 (-639 |#2|))) "failed") |#3| |#2| (-1168)) 44)))
+(((-646 |#1| |#2| |#3|) (-10 -7 (-15 -3888 ((-3 (-2 (|:| |particular| |#2|) (|:| -4291 (-639 |#2|))) "failed") |#3| |#2| (-1168))) (-15 -3888 ((-3 |#2| "failed") |#3| |#2| (-1168) |#2| (-639 |#2|)))) (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)) (-13 (-29 |#1|) (-1192) (-954)) (-650 |#2|)) (T -646))
+((-3888 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-639 *2)) (-4 *2 (-13 (-29 *6) (-1192) (-954))) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *1 (-646 *6 *2 *3)) (-4 *3 (-650 *2)))) (-3888 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1168)) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-4 *4 (-13 (-29 *6) (-1192) (-954))) (-5 *2 (-2 (|:| |particular| *4) (|:| -4291 (-639 *4)))) (-5 *1 (-646 *6 *4 *3)) (-4 *3 (-650 *4)))))
+(-10 -7 (-15 -3888 ((-3 (-2 (|:| |particular| |#2|) (|:| -4291 (-639 |#2|))) "failed") |#3| |#2| (-1168))) (-15 -3888 ((-3 |#2| "failed") |#3| |#2| (-1168) |#2| (-639 |#2|))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2818 (($ $) NIL (|has| |#1| (-362)))) (-4039 (($ $ $) NIL (|has| |#1| (-362)))) (-2061 (($ $ (-766)) NIL (|has| |#1| (-362)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1944 (($ $ $) NIL (|has| |#1| (-362)))) (-3711 (($ $ $) NIL (|has| |#1| (-362)))) (-1884 (($ $ $) NIL (|has| |#1| (-362)))) (-1353 (($ $ $) NIL (|has| |#1| (-362)))) (-3392 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-3560 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-4190 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#1| (-451)))) (-4367 (((-112) $) NIL)) (-1377 (($ |#1| (-766)) NIL)) (-1524 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-554)))) (-4006 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-554)))) (-3161 (((-766) $) NIL)) (-4371 (($ $ $) NIL (|has| |#1| (-362)))) (-1934 (($ $ $) NIL (|has| |#1| (-362)))) (-2516 (($ $ $) NIL (|has| |#1| (-362)))) (-3552 (($ $ $) NIL (|has| |#1| (-362)))) (-1989 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-3151 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1651 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-2343 ((|#1| $ |#1|) NIL)) (-3606 (($ $ $) NIL (|has| |#1| (-362)))) (-2250 (((-766) $) NIL)) (-2201 ((|#1| $) NIL (|has| |#1| (-451)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) NIL)) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-766)) NIL)) (-1568 (((-766)) NIL)) (-1360 ((|#1| $ |#1| |#1|) NIL)) (-1926 (($ $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($) NIL)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-647 |#1|) (-650 |#1|) (-232)) (T -647))
NIL
(-650 |#1|)
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-2155 (($ $) NIL (|has| |#1| (-362)))) (-2639 (($ $ $) NIL (|has| |#1| (-362)))) (-1439 (($ $ (-766)) NIL (|has| |#1| (-362)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1896 (($ $ $) NIL (|has| |#1| (-362)))) (-3688 (($ $ $) NIL (|has| |#1| (-362)))) (-2488 (($ $ $) NIL (|has| |#1| (-362)))) (-4282 (($ $ $) NIL (|has| |#1| (-362)))) (-2703 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-3041 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-2227 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#1| (-451)))) (-1957 (((-112) $) NIL)) (-1378 (($ |#1| (-766)) NIL)) (-1664 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-554)))) (-1736 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-554)))) (-2076 (((-766) $) NIL)) (-1639 (($ $ $) NIL (|has| |#1| (-362)))) (-2492 (($ $ $) NIL (|has| |#1| (-362)))) (-4132 (($ $ $) NIL (|has| |#1| (-362)))) (-3671 (($ $ $) NIL (|has| |#1| (-362)))) (-2189 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-2075 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1535 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-2343 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-2297 (($ $ $) NIL (|has| |#1| (-362)))) (-3598 (((-766) $) NIL)) (-3900 ((|#1| $) NIL (|has| |#1| (-451)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) NIL)) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-766)) NIL)) (-2579 (((-766)) NIL)) (-1360 ((|#1| $ |#1| |#1|) NIL)) (-1563 (($ $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($) NIL)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2818 (($ $) NIL (|has| |#1| (-362)))) (-4039 (($ $ $) NIL (|has| |#1| (-362)))) (-2061 (($ $ (-766)) NIL (|has| |#1| (-362)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1944 (($ $ $) NIL (|has| |#1| (-362)))) (-3711 (($ $ $) NIL (|has| |#1| (-362)))) (-1884 (($ $ $) NIL (|has| |#1| (-362)))) (-1353 (($ $ $) NIL (|has| |#1| (-362)))) (-3392 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-3560 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-4190 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#1| (-451)))) (-4367 (((-112) $) NIL)) (-1377 (($ |#1| (-766)) NIL)) (-1524 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-554)))) (-4006 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-554)))) (-3161 (((-766) $) NIL)) (-4371 (($ $ $) NIL (|has| |#1| (-362)))) (-1934 (($ $ $) NIL (|has| |#1| (-362)))) (-2516 (($ $ $) NIL (|has| |#1| (-362)))) (-3552 (($ $ $) NIL (|has| |#1| (-362)))) (-1989 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-3151 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1651 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-2343 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-3606 (($ $ $) NIL (|has| |#1| (-362)))) (-2250 (((-766) $) NIL)) (-2201 ((|#1| $) NIL (|has| |#1| (-451)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) NIL)) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-766)) NIL)) (-1568 (((-766)) NIL)) (-1360 ((|#1| $ |#1| |#1|) NIL)) (-1926 (($ $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($) NIL)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-648 |#1| |#2|) (-13 (-650 |#1|) (-285 |#2| |#2|)) (-232) (-13 (-642 |#1|) (-10 -8 (-15 -4029 ($ $))))) (T -648))
NIL
(-13 (-650 |#1|) (-285 |#2| |#2|))
-((-2155 (($ $) 26)) (-1563 (($ $) 24)) (-3114 (($) 12)))
-(((-649 |#1| |#2|) (-10 -8 (-15 -2155 (|#1| |#1|)) (-15 -1563 (|#1| |#1|)) (-15 -3114 (|#1|))) (-650 |#2|) (-1044)) (T -649))
+((-2818 (($ $) 26)) (-1926 (($ $) 24)) (-3113 (($) 12)))
+(((-649 |#1| |#2|) (-10 -8 (-15 -2818 (|#1| |#1|)) (-15 -1926 (|#1| |#1|)) (-15 -3113 (|#1|))) (-650 |#2|) (-1044)) (T -649))
NIL
-(-10 -8 (-15 -2155 (|#1| |#1|)) (-15 -1563 (|#1| |#1|)) (-15 -3114 (|#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-2155 (($ $) 81 (|has| |#1| (-362)))) (-2639 (($ $ $) 83 (|has| |#1| (-362)))) (-1439 (($ $ (-766)) 82 (|has| |#1| (-362)))) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-1896 (($ $ $) 44 (|has| |#1| (-362)))) (-3688 (($ $ $) 45 (|has| |#1| (-362)))) (-2488 (($ $ $) 47 (|has| |#1| (-362)))) (-4282 (($ $ $) 42 (|has| |#1| (-362)))) (-2703 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 41 (|has| |#1| (-362)))) (-3041 (((-3 $ "failed") $ $) 43 (|has| |#1| (-362)))) (-2227 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 46 (|has| |#1| (-362)))) (-4048 (((-3 (-562) "failed") $) 74 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 71 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 68)) (-3961 (((-562) $) 73 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 70 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 69)) (-1601 (($ $) 63)) (-3668 (((-3 $ "failed") $) 33)) (-1498 (($ $) 54 (|has| |#1| (-451)))) (-1957 (((-112) $) 31)) (-1378 (($ |#1| (-766)) 61)) (-1664 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 56 (|has| |#1| (-554)))) (-1736 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 57 (|has| |#1| (-554)))) (-2076 (((-766) $) 65)) (-1639 (($ $ $) 51 (|has| |#1| (-362)))) (-2492 (($ $ $) 52 (|has| |#1| (-362)))) (-4132 (($ $ $) 40 (|has| |#1| (-362)))) (-3671 (($ $ $) 49 (|has| |#1| (-362)))) (-2189 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 48 (|has| |#1| (-362)))) (-2075 (((-3 $ "failed") $ $) 50 (|has| |#1| (-362)))) (-1535 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 53 (|has| |#1| (-362)))) (-1573 ((|#1| $) 64)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ |#1|) 58 (|has| |#1| (-554)))) (-2343 ((|#1| $ |#1|) 86)) (-2297 (($ $ $) 80 (|has| |#1| (-362)))) (-3598 (((-766) $) 66)) (-3900 ((|#1| $) 55 (|has| |#1| (-451)))) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 72 (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) 67)) (-4358 (((-639 |#1|) $) 60)) (-3906 ((|#1| $ (-766)) 62)) (-2579 (((-766)) 28)) (-1360 ((|#1| $ |#1| |#1|) 59)) (-1563 (($ $) 84)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($) 85)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 76) (($ |#1| $) 75)))
+(-10 -8 (-15 -2818 (|#1| |#1|)) (-15 -1926 (|#1| |#1|)) (-15 -3113 (|#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2818 (($ $) 81 (|has| |#1| (-362)))) (-4039 (($ $ $) 83 (|has| |#1| (-362)))) (-2061 (($ $ (-766)) 82 (|has| |#1| (-362)))) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1944 (($ $ $) 44 (|has| |#1| (-362)))) (-3711 (($ $ $) 45 (|has| |#1| (-362)))) (-1884 (($ $ $) 47 (|has| |#1| (-362)))) (-1353 (($ $ $) 42 (|has| |#1| (-362)))) (-3392 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 41 (|has| |#1| (-362)))) (-3560 (((-3 $ "failed") $ $) 43 (|has| |#1| (-362)))) (-4190 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 46 (|has| |#1| (-362)))) (-4048 (((-3 (-562) "failed") $) 74 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 71 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 68)) (-3960 (((-562) $) 73 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 70 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 69)) (-1600 (($ $) 63)) (-1694 (((-3 $ "failed") $) 33)) (-2578 (($ $) 54 (|has| |#1| (-451)))) (-4367 (((-112) $) 31)) (-1377 (($ |#1| (-766)) 61)) (-1524 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 56 (|has| |#1| (-554)))) (-4006 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 57 (|has| |#1| (-554)))) (-3161 (((-766) $) 65)) (-4371 (($ $ $) 51 (|has| |#1| (-362)))) (-1934 (($ $ $) 52 (|has| |#1| (-362)))) (-2516 (($ $ $) 40 (|has| |#1| (-362)))) (-3552 (($ $ $) 49 (|has| |#1| (-362)))) (-1989 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 48 (|has| |#1| (-362)))) (-3151 (((-3 $ "failed") $ $) 50 (|has| |#1| (-362)))) (-1651 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 53 (|has| |#1| (-362)))) (-1573 ((|#1| $) 64)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ |#1|) 58 (|has| |#1| (-554)))) (-2343 ((|#1| $ |#1|) 86)) (-3606 (($ $ $) 80 (|has| |#1| (-362)))) (-2250 (((-766) $) 66)) (-2201 ((|#1| $) 55 (|has| |#1| (-451)))) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 72 (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) 67)) (-3969 (((-639 |#1|) $) 60)) (-2266 ((|#1| $ (-766)) 62)) (-1568 (((-766)) 28)) (-1360 ((|#1| $ |#1| |#1|) 59)) (-1926 (($ $) 84)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($) 85)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 76) (($ |#1| $) 75)))
(((-650 |#1|) (-139) (-1044)) (T -650))
-((-3114 (*1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)))) (-1563 (*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)))) (-2639 (*1 *1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-1439 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-650 *3)) (-4 *3 (-1044)) (-4 *3 (-362)))) (-2155 (*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-2297 (*1 *1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
-(-13 (-847 |t#1|) (-285 |t#1| |t#1|) (-10 -8 (-15 -3114 ($)) (-15 -1563 ($ $)) (IF (|has| |t#1| (-362)) (PROGN (-15 -2639 ($ $ $)) (-15 -1439 ($ $ (-766))) (-15 -2155 ($ $)) (-15 -2297 ($ $ $))) |%noBranch|)))
+((-3113 (*1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)))) (-1926 (*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)))) (-4039 (*1 *1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-2061 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-650 *3)) (-4 *3 (-1044)) (-4 *3 (-362)))) (-2818 (*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-3606 (*1 *1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(-13 (-847 |t#1|) (-285 |t#1| |t#1|) (-10 -8 (-15 -3113 ($)) (-15 -1926 ($ $)) (IF (|has| |t#1| (-362)) (PROGN (-15 -4039 ($ $ $)) (-15 -2061 ($ $ (-766))) (-15 -2818 ($ $)) (-15 -3606 ($ $ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-171)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-612 #0=(-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-609 (-857)) . T) ((-285 |#1| |#1|) . T) ((-410 |#1|) . T) ((-642 |#1|) . T) ((-642 $) . T) ((-712 |#1|) |has| |#1| (-171)) ((-721) . T) ((-1033 #0#) |has| |#1| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 |#1|) . T) ((-1050 |#1|) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-847 |#1|) . T))
-((-3955 (((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|))) 74 (|has| |#1| (-27)))) (-1635 (((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|))) 73 (|has| |#1| (-27))) (((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|)) 17)))
-(((-651 |#1| |#2|) (-10 -7 (-15 -1635 ((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1635 ((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|)))) (-15 -3955 ((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|))))) |%noBranch|)) (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))) (-1232 |#1|)) (T -651))
-((-3955 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *2 (-639 (-647 (-406 *5)))) (-5 *1 (-651 *4 *5)) (-5 *3 (-647 (-406 *5))))) (-1635 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *2 (-639 (-647 (-406 *5)))) (-5 *1 (-651 *4 *5)) (-5 *3 (-647 (-406 *5))))) (-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-639 *5) *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-647 (-406 *6)))) (-5 *1 (-651 *5 *6)) (-5 *3 (-647 (-406 *6))))))
-(-10 -7 (-15 -1635 ((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1635 ((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|)))) (-15 -3955 ((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|))))) |%noBranch|))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-2155 (($ $) NIL (|has| |#1| (-362)))) (-2639 (($ $ $) 28 (|has| |#1| (-362)))) (-1439 (($ $ (-766)) 31 (|has| |#1| (-362)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1896 (($ $ $) NIL (|has| |#1| (-362)))) (-3688 (($ $ $) NIL (|has| |#1| (-362)))) (-2488 (($ $ $) NIL (|has| |#1| (-362)))) (-4282 (($ $ $) NIL (|has| |#1| (-362)))) (-2703 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-3041 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-2227 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#1| (-451)))) (-1957 (((-112) $) NIL)) (-1378 (($ |#1| (-766)) NIL)) (-1664 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-554)))) (-1736 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-554)))) (-2076 (((-766) $) NIL)) (-1639 (($ $ $) NIL (|has| |#1| (-362)))) (-2492 (($ $ $) NIL (|has| |#1| (-362)))) (-4132 (($ $ $) NIL (|has| |#1| (-362)))) (-3671 (($ $ $) NIL (|has| |#1| (-362)))) (-2189 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-2075 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1535 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-2343 ((|#1| $ |#1|) 24)) (-2297 (($ $ $) 33 (|has| |#1| (-362)))) (-3598 (((-766) $) NIL)) (-3900 ((|#1| $) NIL (|has| |#1| (-451)))) (-4054 (((-857) $) 20) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) NIL)) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-766)) NIL)) (-2579 (((-766)) NIL)) (-1360 ((|#1| $ |#1| |#1|) 23)) (-1563 (($ $) NIL)) (-2286 (($) 21 T CONST)) (-2294 (($) 8 T CONST)) (-3114 (($) NIL)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-1454 (((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|))) 74 (|has| |#1| (-27)))) (-1635 (((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|))) 73 (|has| |#1| (-27))) (((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|)) 17)))
+(((-651 |#1| |#2|) (-10 -7 (-15 -1635 ((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1635 ((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|)))) (-15 -1454 ((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|))))) |%noBranch|)) (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))) (-1232 |#1|)) (T -651))
+((-1454 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *2 (-639 (-647 (-406 *5)))) (-5 *1 (-651 *4 *5)) (-5 *3 (-647 (-406 *5))))) (-1635 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *2 (-639 (-647 (-406 *5)))) (-5 *1 (-651 *4 *5)) (-5 *3 (-647 (-406 *5))))) (-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-639 *5) *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-647 (-406 *6)))) (-5 *1 (-651 *5 *6)) (-5 *3 (-647 (-406 *6))))))
+(-10 -7 (-15 -1635 ((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -1635 ((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|)))) (-15 -1454 ((-639 (-647 (-406 |#2|))) (-647 (-406 |#2|))))) |%noBranch|))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2818 (($ $) NIL (|has| |#1| (-362)))) (-4039 (($ $ $) 28 (|has| |#1| (-362)))) (-2061 (($ $ (-766)) 31 (|has| |#1| (-362)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1944 (($ $ $) NIL (|has| |#1| (-362)))) (-3711 (($ $ $) NIL (|has| |#1| (-362)))) (-1884 (($ $ $) NIL (|has| |#1| (-362)))) (-1353 (($ $ $) NIL (|has| |#1| (-362)))) (-3392 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-3560 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-4190 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#1| (-451)))) (-4367 (((-112) $) NIL)) (-1377 (($ |#1| (-766)) NIL)) (-1524 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-554)))) (-4006 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-554)))) (-3161 (((-766) $) NIL)) (-4371 (($ $ $) NIL (|has| |#1| (-362)))) (-1934 (($ $ $) NIL (|has| |#1| (-362)))) (-2516 (($ $ $) NIL (|has| |#1| (-362)))) (-3552 (($ $ $) NIL (|has| |#1| (-362)))) (-1989 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-3151 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1651 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-2343 ((|#1| $ |#1|) 24)) (-3606 (($ $ $) 33 (|has| |#1| (-362)))) (-2250 (((-766) $) NIL)) (-2201 ((|#1| $) NIL (|has| |#1| (-451)))) (-4053 (((-857) $) 20) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) NIL)) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-766)) NIL)) (-1568 (((-766)) NIL)) (-1360 ((|#1| $ |#1| |#1|) 23)) (-1926 (($ $) NIL)) (-2285 (($) 21 T CONST)) (-2294 (($) 8 T CONST)) (-3113 (($) NIL)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-652 |#1| |#2|) (-650 |#1|) (-1044) (-1 |#1| |#1|)) (T -652))
NIL
(-650 |#1|)
-((-2639 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 59)) (-1439 ((|#2| |#2| (-766) (-1 |#1| |#1|)) 40)) (-2297 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 61)))
-(((-653 |#1| |#2|) (-10 -7 (-15 -2639 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -1439 (|#2| |#2| (-766) (-1 |#1| |#1|))) (-15 -2297 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-362) (-650 |#1|)) (T -653))
-((-2297 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-362)) (-5 *1 (-653 *4 *2)) (-4 *2 (-650 *4)))) (-1439 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-766)) (-5 *4 (-1 *5 *5)) (-4 *5 (-362)) (-5 *1 (-653 *5 *2)) (-4 *2 (-650 *5)))) (-2639 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-362)) (-5 *1 (-653 *4 *2)) (-4 *2 (-650 *4)))))
-(-10 -7 (-15 -2639 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -1439 (|#2| |#2| (-766) (-1 |#1| |#1|))) (-15 -2297 (|#2| |#2| |#2| (-1 |#1| |#1|))))
-((-2308 (($ $ $) 9)))
-(((-654 |#1|) (-10 -8 (-15 -2308 (|#1| |#1| |#1|))) (-655)) (T -654))
-NIL
-(-10 -8 (-15 -2308 (|#1| |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-3295 (($ $) 10)) (-2308 (($ $ $) 8)) (-1731 (((-112) $ $) 6)) (-2298 (($ $ $) 9)))
+((-4039 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 59)) (-2061 ((|#2| |#2| (-766) (-1 |#1| |#1|)) 40)) (-3606 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 61)))
+(((-653 |#1| |#2|) (-10 -7 (-15 -4039 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -2061 (|#2| |#2| (-766) (-1 |#1| |#1|))) (-15 -3606 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-362) (-650 |#1|)) (T -653))
+((-3606 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-362)) (-5 *1 (-653 *4 *2)) (-4 *2 (-650 *4)))) (-2061 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-766)) (-5 *4 (-1 *5 *5)) (-4 *5 (-362)) (-5 *1 (-653 *5 *2)) (-4 *2 (-650 *5)))) (-4039 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-362)) (-5 *1 (-653 *4 *2)) (-4 *2 (-650 *4)))))
+(-10 -7 (-15 -4039 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -2061 (|#2| |#2| (-766) (-1 |#1| |#1|))) (-15 -3606 (|#2| |#2| |#2| (-1 |#1| |#1|))))
+((-2306 (($ $ $) 9)))
+(((-654 |#1|) (-10 -8 (-15 -2306 (|#1| |#1| |#1|))) (-655)) (T -654))
+NIL
+(-10 -8 (-15 -2306 (|#1| |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-3294 (($ $) 10)) (-2306 (($ $ $) 8)) (-1733 (((-112) $ $) 6)) (-2297 (($ $ $) 9)))
(((-655) (-139)) (T -655))
-((-3295 (*1 *1 *1) (-4 *1 (-655))) (-2298 (*1 *1 *1 *1) (-4 *1 (-655))) (-2308 (*1 *1 *1 *1) (-4 *1 (-655))))
-(-13 (-102) (-10 -8 (-15 -3295 ($ $)) (-15 -2298 ($ $ $)) (-15 -2308 ($ $ $))))
+((-3294 (*1 *1 *1) (-4 *1 (-655))) (-2297 (*1 *1 *1 *1) (-4 *1 (-655))) (-2306 (*1 *1 *1 *1) (-4 *1 (-655))))
+(-13 (-102) (-10 -8 (-15 -3294 ($ $)) (-15 -2297 ($ $ $)) (-15 -2306 ($ $ $))))
(((-102) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 15)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-4065 ((|#1| $) 21)) (-1551 (($ $ $) NIL (|has| |#1| (-786)))) (-2993 (($ $ $) NIL (|has| |#1| (-786)))) (-2913 (((-1150) $) 46)) (-1709 (((-1112) $) NIL)) (-4076 ((|#3| $) 22)) (-4054 (((-857) $) 42)) (-2286 (($) 10 T CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-786)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-786)))) (-1731 (((-112) $ $) 20)) (-1785 (((-112) $ $) NIL (|has| |#1| (-786)))) (-1759 (((-112) $ $) 24 (|has| |#1| (-786)))) (-1859 (($ $ |#3|) 34) (($ |#1| |#3|) 35)) (-1848 (($ $) 17) (($ $ $) NIL)) (-1835 (($ $ $) 27)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 30) (($ |#2| $) 32) (($ $ |#2|) NIL)))
-(((-656 |#1| |#2| |#3|) (-13 (-712 |#2|) (-10 -8 (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|) (-15 -1859 ($ $ |#3|)) (-15 -1859 ($ |#1| |#3|)) (-15 -4065 (|#1| $)) (-15 -4076 (|#3| $)))) (-712 |#2|) (-171) (|SubsetCategory| (-721) |#2|)) (T -656))
-((-1859 (*1 *1 *1 *2) (-12 (-4 *4 (-171)) (-5 *1 (-656 *3 *4 *2)) (-4 *3 (-712 *4)) (-4 *2 (|SubsetCategory| (-721) *4)))) (-1859 (*1 *1 *2 *3) (-12 (-4 *4 (-171)) (-5 *1 (-656 *2 *4 *3)) (-4 *2 (-712 *4)) (-4 *3 (|SubsetCategory| (-721) *4)))) (-4065 (*1 *2 *1) (-12 (-4 *3 (-171)) (-4 *2 (-712 *3)) (-5 *1 (-656 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-721) *3)))) (-4076 (*1 *2 *1) (-12 (-4 *4 (-171)) (-4 *2 (|SubsetCategory| (-721) *4)) (-5 *1 (-656 *3 *4 *2)) (-4 *3 (-712 *4)))))
-(-13 (-712 |#2|) (-10 -8 (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|) (-15 -1859 ($ $ |#3|)) (-15 -1859 ($ |#1| |#3|)) (-15 -4065 (|#1| $)) (-15 -4076 (|#3| $))))
-((-4254 (((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|)) 33)))
-(((-657 |#1|) (-10 -7 (-15 -4254 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|)))) (-904)) (T -657))
-((-4254 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-1164 *4))) (-5 *3 (-1164 *4)) (-4 *4 (-904)) (-5 *1 (-657 *4)))))
-(-10 -7 (-15 -4254 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-2852 (((-639 |#1|) $) 82)) (-1881 (($ $ (-766)) 90)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-2415 (((-1280 |#1| |#2|) (-1280 |#1| |#2|) $) 48)) (-4048 (((-3 (-666 |#1|) "failed") $) NIL)) (-3961 (((-666 |#1|) $) NIL)) (-1601 (($ $) 89)) (-1694 (((-766) $) NIL)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-3045 (($ (-666 |#1|) |#2|) 68)) (-3818 (($ $) 86)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-2221 (((-1280 |#1| |#2|) (-1280 |#1| |#2|) $) 47)) (-1468 (((-2 (|:| |k| (-666 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1560 (((-666 |#1|) $) NIL)) (-1573 ((|#2| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1433 (($ $ |#1| $) 30) (($ $ (-639 |#1|) (-639 $)) 32)) (-3598 (((-766) $) 88)) (-4066 (($ $ $) 20) (($ (-666 |#1|) (-666 |#1|)) 77) (($ (-666 |#1|) $) 75) (($ $ (-666 |#1|)) 76)) (-4054 (((-857) $) NIL) (($ |#1|) 74) (((-1271 |#1| |#2|) $) 58) (((-1280 |#1| |#2|) $) 41) (($ (-666 |#1|)) 25)) (-4358 (((-639 |#2|) $) NIL)) (-3906 ((|#2| $ (-666 |#1|)) NIL)) (-4221 ((|#2| (-1280 |#1| |#2|) $) 43)) (-2286 (($) 23 T CONST)) (-2516 (((-639 (-2 (|:| |k| (-666 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3134 (((-3 $ "failed") (-1271 |#1| |#2|)) 60)) (-4031 (($ (-666 |#1|)) 14)) (-1731 (((-112) $ $) 44)) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1848 (($ $) 66) (($ $ $) NIL)) (-1835 (($ $ $) 29)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#2| $) 28) (($ $ |#2|) NIL) (($ |#2| (-666 |#1|)) NIL)))
-(((-658 |#1| |#2|) (-13 (-373 |#1| |#2|) (-381 |#2| (-666 |#1|)) (-10 -8 (-15 -3134 ((-3 $ "failed") (-1271 |#1| |#2|))) (-15 -4066 ($ (-666 |#1|) (-666 |#1|))) (-15 -4066 ($ (-666 |#1|) $)) (-15 -4066 ($ $ (-666 |#1|))))) (-845) (-171)) (T -658))
-((-3134 (*1 *1 *2) (|partial| -12 (-5 *2 (-1271 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)) (-5 *1 (-658 *3 *4)))) (-4066 (*1 *1 *2 *2) (-12 (-5 *2 (-666 *3)) (-4 *3 (-845)) (-5 *1 (-658 *3 *4)) (-4 *4 (-171)))) (-4066 (*1 *1 *2 *1) (-12 (-5 *2 (-666 *3)) (-4 *3 (-845)) (-5 *1 (-658 *3 *4)) (-4 *4 (-171)))) (-4066 (*1 *1 *1 *2) (-12 (-5 *2 (-666 *3)) (-4 *3 (-845)) (-5 *1 (-658 *3 *4)) (-4 *4 (-171)))))
-(-13 (-373 |#1| |#2|) (-381 |#2| (-666 |#1|)) (-10 -8 (-15 -3134 ((-3 $ "failed") (-1271 |#1| |#2|))) (-15 -4066 ($ (-666 |#1|) (-666 |#1|))) (-15 -4066 ($ (-666 |#1|) $)) (-15 -4066 ($ $ (-666 |#1|)))))
-((-1399 (((-112) $) NIL) (((-112) (-1 (-112) |#2| |#2|) $) 49)) (-3381 (($ $) NIL) (($ (-1 (-112) |#2| |#2|) $) 12)) (-3111 (($ (-1 (-112) |#2|) $) 27)) (-2447 (($ $) 55)) (-4354 (($ $) 63)) (-4000 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 36)) (-1955 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 50) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 52)) (-4264 (((-562) |#2| $ (-562)) 60) (((-562) |#2| $) NIL) (((-562) (-1 (-112) |#2|) $) 46)) (-1458 (($ (-766) |#2|) 53)) (-2673 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 29)) (-1610 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 24)) (-4152 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 54)) (-3716 (($ |#2|) 15)) (-4300 (($ $ $ (-562)) 35) (($ |#2| $ (-562)) 33)) (-3251 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 45)) (-2878 (($ $ (-1223 (-562))) 43) (($ $ (-562)) 37)) (-1853 (($ $ $ (-562)) 59)) (-4220 (($ $) 57)) (-1759 (((-112) $ $) 65)))
-(((-659 |#1| |#2|) (-10 -8 (-15 -3716 (|#1| |#2|)) (-15 -2878 (|#1| |#1| (-562))) (-15 -2878 (|#1| |#1| (-1223 (-562)))) (-15 -4000 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4300 (|#1| |#2| |#1| (-562))) (-15 -4300 (|#1| |#1| |#1| (-562))) (-15 -2673 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3111 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4000 (|#1| |#2| |#1|)) (-15 -4354 (|#1| |#1|)) (-15 -2673 (|#1| |#1| |#1|)) (-15 -1610 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1399 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4264 ((-562) (-1 (-112) |#2|) |#1|)) (-15 -4264 ((-562) |#2| |#1|)) (-15 -4264 ((-562) |#2| |#1| (-562))) (-15 -1610 (|#1| |#1| |#1|)) (-15 -1399 ((-112) |#1|)) (-15 -1853 (|#1| |#1| |#1| (-562))) (-15 -2447 (|#1| |#1|)) (-15 -3381 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3381 (|#1| |#1|)) (-15 -1759 ((-112) |#1| |#1|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3251 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1458 (|#1| (-766) |#2|)) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4220 (|#1| |#1|))) (-660 |#2|) (-1207)) (T -659))
-NIL
-(-10 -8 (-15 -3716 (|#1| |#2|)) (-15 -2878 (|#1| |#1| (-562))) (-15 -2878 (|#1| |#1| (-1223 (-562)))) (-15 -4000 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4300 (|#1| |#2| |#1| (-562))) (-15 -4300 (|#1| |#1| |#1| (-562))) (-15 -2673 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3111 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4000 (|#1| |#2| |#1|)) (-15 -4354 (|#1| |#1|)) (-15 -2673 (|#1| |#1| |#1|)) (-15 -1610 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1399 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4264 ((-562) (-1 (-112) |#2|) |#1|)) (-15 -4264 ((-562) |#2| |#1|)) (-15 -4264 ((-562) |#2| |#1| (-562))) (-15 -1610 (|#1| |#1| |#1|)) (-15 -1399 ((-112) |#1|)) (-15 -1853 (|#1| |#1| |#1| (-562))) (-15 -2447 (|#1| |#1|)) (-15 -3381 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3381 (|#1| |#1|)) (-15 -1759 ((-112) |#1| |#1|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1955 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3251 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1458 (|#1| (-766) |#2|)) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4220 (|#1| |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2534 ((|#1| $) 48)) (-2359 ((|#1| $) 65)) (-3121 (($ $) 67)) (-3052 (((-1261) $ (-562) (-562)) 97 (|has| $ (-6 -4403)))) (-2254 (($ $ (-562)) 52 (|has| $ (-6 -4403)))) (-1399 (((-112) $) 142 (|has| |#1| (-845))) (((-112) (-1 (-112) |#1| |#1|) $) 136)) (-3381 (($ $) 146 (-12 (|has| |#1| (-845)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1| |#1|) $) 145 (|has| $ (-6 -4403)))) (-1395 (($ $) 141 (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $) 135)) (-4336 (((-112) $ (-766)) 8)) (-1512 ((|#1| $ |#1|) 39 (|has| $ (-6 -4403)))) (-3012 (($ $ $) 56 (|has| $ (-6 -4403)))) (-3950 ((|#1| $ |#1|) 54 (|has| $ (-6 -4403)))) (-2687 ((|#1| $ |#1|) 58 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4403))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4403))) (($ $ "rest" $) 55 (|has| $ (-6 -4403))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) 117 (|has| $ (-6 -4403))) ((|#1| $ (-562) |#1|) 86 (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) 41 (|has| $ (-6 -4403)))) (-3111 (($ (-1 (-112) |#1|) $) 129)) (-3556 (($ (-1 (-112) |#1|) $) 102 (|has| $ (-6 -4402)))) (-2350 ((|#1| $) 66)) (-1800 (($) 7 T CONST)) (-2447 (($ $) 144 (|has| $ (-6 -4403)))) (-2677 (($ $) 134)) (-1434 (($ $) 73) (($ $ (-766)) 71)) (-4354 (($ $) 131 (|has| |#1| (-1092)))) (-1459 (($ $) 99 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4000 (($ |#1| $) 130 (|has| |#1| (-1092))) (($ (-1 (-112) |#1|) $) 125)) (-1475 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4402))) (($ |#1| $) 100 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1505 ((|#1| $ (-562) |#1|) 85 (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) 87)) (-3266 (((-112) $) 83)) (-4264 (((-562) |#1| $ (-562)) 139 (|has| |#1| (-1092))) (((-562) |#1| $) 138 (|has| |#1| (-1092))) (((-562) (-1 (-112) |#1|) $) 137)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) 50)) (-4379 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-1458 (($ (-766) |#1|) 108)) (-3292 (((-112) $ (-766)) 9)) (-4197 (((-562) $) 95 (|has| (-562) (-845)))) (-1551 (($ $ $) 147 (|has| |#1| (-845)))) (-2673 (($ $ $) 132 (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) 128)) (-1610 (($ $ $) 140 (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) 133)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 94 (|has| (-562) (-845)))) (-2993 (($ $ $) 148 (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3716 (($ |#1|) 122)) (-3289 (((-112) $ (-766)) 10)) (-4007 (((-639 |#1|) $) 45)) (-3449 (((-112) $) 49)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1504 ((|#1| $) 70) (($ $ (-766)) 68)) (-4300 (($ $ $ (-562)) 127) (($ |#1| $ (-562)) 126)) (-3297 (($ $ $ (-562)) 116) (($ |#1| $ (-562)) 115)) (-2093 (((-639 (-562)) $) 92)) (-1570 (((-112) (-562) $) 91)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 76) (($ $ (-766)) 74)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-2716 (($ $ |#1|) 96 (|has| $ (-6 -4403)))) (-2017 (((-112) $) 84)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) 90)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1223 (-562))) 112) ((|#1| $ (-562)) 89) ((|#1| $ (-562) |#1|) 88)) (-2568 (((-562) $ $) 44)) (-2878 (($ $ (-1223 (-562))) 124) (($ $ (-562)) 123)) (-2880 (($ $ (-1223 (-562))) 114) (($ $ (-562)) 113)) (-2424 (((-112) $) 46)) (-2613 (($ $) 62)) (-4327 (($ $) 59 (|has| $ (-6 -4403)))) (-2296 (((-766) $) 63)) (-3913 (($ $) 64)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1853 (($ $ $ (-562)) 143 (|has| $ (-6 -4403)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 98 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 107)) (-4142 (($ $ $) 61) (($ $ |#1|) 60)) (-2767 (($ $ $) 78) (($ |#1| $) 77) (($ (-639 $)) 110) (($ $ |#1|) 109)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) 51)) (-4055 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) 150 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 151 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-1785 (((-112) $ $) 149 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 152 (|has| |#1| (-845)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 15)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-4063 ((|#1| $) 21)) (-1551 (($ $ $) NIL (|has| |#1| (-786)))) (-2993 (($ $ $) NIL (|has| |#1| (-786)))) (-3696 (((-1150) $) 46)) (-1709 (((-1112) $) NIL)) (-4079 ((|#3| $) 22)) (-4053 (((-857) $) 42)) (-2285 (($) 10 T CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-786)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-786)))) (-1733 (((-112) $ $) 20)) (-1785 (((-112) $ $) NIL (|has| |#1| (-786)))) (-1761 (((-112) $ $) 24 (|has| |#1| (-786)))) (-1859 (($ $ |#3|) 34) (($ |#1| |#3|) 35)) (-1847 (($ $) 17) (($ $ $) NIL)) (-1836 (($ $ $) 27)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 30) (($ |#2| $) 32) (($ $ |#2|) NIL)))
+(((-656 |#1| |#2| |#3|) (-13 (-712 |#2|) (-10 -8 (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|) (-15 -1859 ($ $ |#3|)) (-15 -1859 ($ |#1| |#3|)) (-15 -4063 (|#1| $)) (-15 -4079 (|#3| $)))) (-712 |#2|) (-171) (|SubsetCategory| (-721) |#2|)) (T -656))
+((-1859 (*1 *1 *1 *2) (-12 (-4 *4 (-171)) (-5 *1 (-656 *3 *4 *2)) (-4 *3 (-712 *4)) (-4 *2 (|SubsetCategory| (-721) *4)))) (-1859 (*1 *1 *2 *3) (-12 (-4 *4 (-171)) (-5 *1 (-656 *2 *4 *3)) (-4 *2 (-712 *4)) (-4 *3 (|SubsetCategory| (-721) *4)))) (-4063 (*1 *2 *1) (-12 (-4 *3 (-171)) (-4 *2 (-712 *3)) (-5 *1 (-656 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-721) *3)))) (-4079 (*1 *2 *1) (-12 (-4 *4 (-171)) (-4 *2 (|SubsetCategory| (-721) *4)) (-5 *1 (-656 *3 *4 *2)) (-4 *3 (-712 *4)))))
+(-13 (-712 |#2|) (-10 -8 (IF (|has| |#1| (-786)) (-6 (-786)) |%noBranch|) (-15 -1859 ($ $ |#3|)) (-15 -1859 ($ |#1| |#3|)) (-15 -4063 (|#1| $)) (-15 -4079 (|#3| $))))
+((-2359 (((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|)) 33)))
+(((-657 |#1|) (-10 -7 (-15 -2359 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|)))) (-904)) (T -657))
+((-2359 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-1164 *4))) (-5 *3 (-1164 *4)) (-4 *4 (-904)) (-5 *1 (-657 *4)))))
+(-10 -7 (-15 -2359 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2850 (((-639 |#1|) $) 82)) (-1772 (($ $ (-766)) 90)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-2403 (((-1280 |#1| |#2|) (-1280 |#1| |#2|) $) 48)) (-4048 (((-3 (-666 |#1|) "failed") $) NIL)) (-3960 (((-666 |#1|) $) NIL)) (-1600 (($ $) 89)) (-3627 (((-766) $) NIL)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-3044 (($ (-666 |#1|) |#2|) 68)) (-2572 (($ $) 86)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-2303 (((-1280 |#1| |#2|) (-1280 |#1| |#2|) $) 47)) (-2395 (((-2 (|:| |k| (-666 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1560 (((-666 |#1|) $) NIL)) (-1573 ((|#2| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1433 (($ $ |#1| $) 30) (($ $ (-639 |#1|) (-639 $)) 32)) (-2250 (((-766) $) 88)) (-4064 (($ $ $) 20) (($ (-666 |#1|) (-666 |#1|)) 77) (($ (-666 |#1|) $) 75) (($ $ (-666 |#1|)) 76)) (-4053 (((-857) $) NIL) (($ |#1|) 74) (((-1271 |#1| |#2|) $) 58) (((-1280 |#1| |#2|) $) 41) (($ (-666 |#1|)) 25)) (-3969 (((-639 |#2|) $) NIL)) (-2266 ((|#2| $ (-666 |#1|)) NIL)) (-4221 ((|#2| (-1280 |#1| |#2|) $) 43)) (-2285 (($) 23 T CONST)) (-2174 (((-639 (-2 (|:| |k| (-666 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3192 (((-3 $ "failed") (-1271 |#1| |#2|)) 60)) (-4016 (($ (-666 |#1|)) 14)) (-1733 (((-112) $ $) 44)) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1847 (($ $) 66) (($ $ $) NIL)) (-1836 (($ $ $) 29)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#2| $) 28) (($ $ |#2|) NIL) (($ |#2| (-666 |#1|)) NIL)))
+(((-658 |#1| |#2|) (-13 (-373 |#1| |#2|) (-381 |#2| (-666 |#1|)) (-10 -8 (-15 -3192 ((-3 $ "failed") (-1271 |#1| |#2|))) (-15 -4064 ($ (-666 |#1|) (-666 |#1|))) (-15 -4064 ($ (-666 |#1|) $)) (-15 -4064 ($ $ (-666 |#1|))))) (-845) (-171)) (T -658))
+((-3192 (*1 *1 *2) (|partial| -12 (-5 *2 (-1271 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)) (-5 *1 (-658 *3 *4)))) (-4064 (*1 *1 *2 *2) (-12 (-5 *2 (-666 *3)) (-4 *3 (-845)) (-5 *1 (-658 *3 *4)) (-4 *4 (-171)))) (-4064 (*1 *1 *2 *1) (-12 (-5 *2 (-666 *3)) (-4 *3 (-845)) (-5 *1 (-658 *3 *4)) (-4 *4 (-171)))) (-4064 (*1 *1 *1 *2) (-12 (-5 *2 (-666 *3)) (-4 *3 (-845)) (-5 *1 (-658 *3 *4)) (-4 *4 (-171)))))
+(-13 (-373 |#1| |#2|) (-381 |#2| (-666 |#1|)) (-10 -8 (-15 -3192 ((-3 $ "failed") (-1271 |#1| |#2|))) (-15 -4064 ($ (-666 |#1|) (-666 |#1|))) (-15 -4064 ($ (-666 |#1|) $)) (-15 -4064 ($ $ (-666 |#1|)))))
+((-1706 (((-112) $) NIL) (((-112) (-1 (-112) |#2| |#2|) $) 49)) (-3737 (($ $) NIL) (($ (-1 (-112) |#2| |#2|) $) 12)) (-2968 (($ (-1 (-112) |#2|) $) 27)) (-2673 (($ $) 55)) (-3923 (($ $) 63)) (-3729 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 36)) (-1954 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 50) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 52)) (-4265 (((-562) |#2| $ (-562)) 60) (((-562) |#2| $) NIL) (((-562) (-1 (-112) |#2|) $) 46)) (-1458 (($ (-766) |#2|) 53)) (-3124 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 29)) (-4103 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 24)) (-4152 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 54)) (-3716 (($ |#2|) 15)) (-1581 (($ $ $ (-562)) 35) (($ |#2| $ (-562)) 33)) (-1963 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 45)) (-1527 (($ $ (-1223 (-562))) 43) (($ $ (-562)) 37)) (-2694 (($ $ $ (-562)) 59)) (-4220 (($ $) 57)) (-1761 (((-112) $ $) 65)))
+(((-659 |#1| |#2|) (-10 -8 (-15 -3716 (|#1| |#2|)) (-15 -1527 (|#1| |#1| (-562))) (-15 -1527 (|#1| |#1| (-1223 (-562)))) (-15 -3729 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1581 (|#1| |#2| |#1| (-562))) (-15 -1581 (|#1| |#1| |#1| (-562))) (-15 -3124 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2968 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3729 (|#1| |#2| |#1|)) (-15 -3923 (|#1| |#1|)) (-15 -3124 (|#1| |#1| |#1|)) (-15 -4103 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1706 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4265 ((-562) (-1 (-112) |#2|) |#1|)) (-15 -4265 ((-562) |#2| |#1|)) (-15 -4265 ((-562) |#2| |#1| (-562))) (-15 -4103 (|#1| |#1| |#1|)) (-15 -1706 ((-112) |#1|)) (-15 -2694 (|#1| |#1| |#1| (-562))) (-15 -2673 (|#1| |#1|)) (-15 -3737 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3737 (|#1| |#1|)) (-15 -1761 ((-112) |#1| |#1|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1963 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1458 (|#1| (-766) |#2|)) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4220 (|#1| |#1|))) (-660 |#2|) (-1207)) (T -659))
+NIL
+(-10 -8 (-15 -3716 (|#1| |#2|)) (-15 -1527 (|#1| |#1| (-562))) (-15 -1527 (|#1| |#1| (-1223 (-562)))) (-15 -3729 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1581 (|#1| |#2| |#1| (-562))) (-15 -1581 (|#1| |#1| |#1| (-562))) (-15 -3124 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2968 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3729 (|#1| |#2| |#1|)) (-15 -3923 (|#1| |#1|)) (-15 -3124 (|#1| |#1| |#1|)) (-15 -4103 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1706 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4265 ((-562) (-1 (-112) |#2|) |#1|)) (-15 -4265 ((-562) |#2| |#1|)) (-15 -4265 ((-562) |#2| |#1| (-562))) (-15 -4103 (|#1| |#1| |#1|)) (-15 -1706 ((-112) |#1|)) (-15 -2694 (|#1| |#1| |#1| (-562))) (-15 -2673 (|#1| |#1|)) (-15 -3737 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3737 (|#1| |#1|)) (-15 -1761 ((-112) |#1| |#1|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1954 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1963 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1458 (|#1| (-766) |#2|)) (-15 -4152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4220 (|#1| |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2533 ((|#1| $) 48)) (-2358 ((|#1| $) 65)) (-3120 (($ $) 67)) (-3655 (((-1261) $ (-562) (-562)) 97 (|has| $ (-6 -4404)))) (-1335 (($ $ (-562)) 52 (|has| $ (-6 -4404)))) (-1706 (((-112) $) 142 (|has| |#1| (-845))) (((-112) (-1 (-112) |#1| |#1|) $) 136)) (-3737 (($ $) 146 (-12 (|has| |#1| (-845)) (|has| $ (-6 -4404)))) (($ (-1 (-112) |#1| |#1|) $) 145 (|has| $ (-6 -4404)))) (-1395 (($ $) 141 (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $) 135)) (-3735 (((-112) $ (-766)) 8)) (-2677 ((|#1| $ |#1|) 39 (|has| $ (-6 -4404)))) (-3400 (($ $ $) 56 (|has| $ (-6 -4404)))) (-1393 ((|#1| $ |#1|) 54 (|has| $ (-6 -4404)))) (-3239 ((|#1| $ |#1|) 58 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4404))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4404))) (($ $ "rest" $) 55 (|has| $ (-6 -4404))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) 117 (|has| $ (-6 -4404))) ((|#1| $ (-562) |#1|) 86 (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) 41 (|has| $ (-6 -4404)))) (-2968 (($ (-1 (-112) |#1|) $) 129)) (-3556 (($ (-1 (-112) |#1|) $) 102 (|has| $ (-6 -4403)))) (-2349 ((|#1| $) 66)) (-3329 (($) 7 T CONST)) (-2673 (($ $) 144 (|has| $ (-6 -4404)))) (-2676 (($ $) 134)) (-1434 (($ $) 73) (($ $ (-766)) 71)) (-3923 (($ $) 131 (|has| |#1| (-1092)))) (-1459 (($ $) 99 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-3729 (($ |#1| $) 130 (|has| |#1| (-1092))) (($ (-1 (-112) |#1|) $) 125)) (-1475 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4403))) (($ |#1| $) 100 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1507 ((|#1| $ (-562) |#1|) 85 (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) 87)) (-2101 (((-112) $) 83)) (-4265 (((-562) |#1| $ (-562)) 139 (|has| |#1| (-1092))) (((-562) |#1| $) 138 (|has| |#1| (-1092))) (((-562) (-1 (-112) |#1|) $) 137)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) 50)) (-4188 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-1458 (($ (-766) |#1|) 108)) (-4172 (((-112) $ (-766)) 9)) (-1849 (((-562) $) 95 (|has| (-562) (-845)))) (-1551 (($ $ $) 147 (|has| |#1| (-845)))) (-3124 (($ $ $) 132 (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) 128)) (-4103 (($ $ $) 140 (|has| |#1| (-845))) (($ (-1 (-112) |#1| |#1|) $ $) 133)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 94 (|has| (-562) (-845)))) (-2993 (($ $ $) 148 (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3716 (($ |#1|) 122)) (-4147 (((-112) $ (-766)) 10)) (-4008 (((-639 |#1|) $) 45)) (-3179 (((-112) $) 49)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1504 ((|#1| $) 70) (($ $ (-766)) 68)) (-1581 (($ $ $ (-562)) 127) (($ |#1| $ (-562)) 126)) (-3295 (($ $ $ (-562)) 116) (($ |#1| $ (-562)) 115)) (-3336 (((-639 (-562)) $) 92)) (-1987 (((-112) (-562) $) 91)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 76) (($ $ (-766)) 74)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-3510 (($ $ |#1|) 96 (|has| $ (-6 -4404)))) (-3745 (((-112) $) 84)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) 90)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1223 (-562))) 112) ((|#1| $ (-562)) 89) ((|#1| $ (-562) |#1|) 88)) (-1423 (((-562) $ $) 44)) (-1527 (($ $ (-1223 (-562))) 124) (($ $ (-562)) 123)) (-2880 (($ $ (-1223 (-562))) 114) (($ $ (-562)) 113)) (-2473 (((-112) $) 46)) (-3734 (($ $) 62)) (-3659 (($ $) 59 (|has| $ (-6 -4404)))) (-3595 (((-766) $) 63)) (-2333 (($ $) 64)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-2694 (($ $ $ (-562)) 143 (|has| $ (-6 -4404)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 98 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 107)) (-2587 (($ $ $) 61) (($ $ |#1|) 60)) (-2767 (($ $ $) 78) (($ |#1| $) 77) (($ (-639 $)) 110) (($ $ |#1|) 109)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) 51)) (-2985 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) 150 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 151 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-1785 (((-112) $ $) 149 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 152 (|has| |#1| (-845)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-660 |#1|) (-139) (-1207)) (T -660))
((-3716 (*1 *1 *2) (-12 (-4 *1 (-660 *2)) (-4 *2 (-1207)))))
(-13 (-1141 |t#1|) (-372 |t#1|) (-281 |t#1|) (-10 -8 (-15 -3716 ($ |t#1|))))
(((-34) . T) ((-102) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845))) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845)) (|has| |#1| (-609 (-857)))) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-285 #0=(-562) |#1|) . T) ((-287 #0# |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-281 |#1|) . T) ((-372 |#1|) . T) ((-488 |#1|) . T) ((-600 #0# |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-645 |#1|) . T) ((-845) |has| |#1| (-845)) ((-1005 |#1|) . T) ((-1092) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845))) ((-1141 |#1|) . T) ((-1207) . T) ((-1244 |#1|) . T))
-((-4351 (((-639 (-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|))))) (-639 (-639 |#1|)) (-639 (-1256 |#1|))) 22) (((-639 (-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|))))) (-683 |#1|) (-639 (-1256 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|)))) (-639 (-639 |#1|)) (-1256 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|)))) (-683 |#1|) (-1256 |#1|)) 14)) (-2173 (((-766) (-683 |#1|) (-1256 |#1|)) 30)) (-2106 (((-3 (-1256 |#1|) "failed") (-683 |#1|) (-1256 |#1|)) 24)) (-3249 (((-112) (-683 |#1|) (-1256 |#1|)) 27)))
-(((-661 |#1|) (-10 -7 (-15 -4351 ((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|)))) (-683 |#1|) (-1256 |#1|))) (-15 -4351 ((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|)))) (-639 (-639 |#1|)) (-1256 |#1|))) (-15 -4351 ((-639 (-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|))))) (-683 |#1|) (-639 (-1256 |#1|)))) (-15 -4351 ((-639 (-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|))))) (-639 (-639 |#1|)) (-639 (-1256 |#1|)))) (-15 -2106 ((-3 (-1256 |#1|) "failed") (-683 |#1|) (-1256 |#1|))) (-15 -3249 ((-112) (-683 |#1|) (-1256 |#1|))) (-15 -2173 ((-766) (-683 |#1|) (-1256 |#1|)))) (-362)) (T -661))
-((-2173 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)) (-4 *5 (-362)) (-5 *2 (-766)) (-5 *1 (-661 *5)))) (-3249 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)) (-4 *5 (-362)) (-5 *2 (-112)) (-5 *1 (-661 *5)))) (-2106 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1256 *4)) (-5 *3 (-683 *4)) (-4 *4 (-362)) (-5 *1 (-661 *4)))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-639 *5))) (-4 *5 (-362)) (-5 *2 (-639 (-2 (|:| |particular| (-3 (-1256 *5) "failed")) (|:| -3928 (-639 (-1256 *5)))))) (-5 *1 (-661 *5)) (-5 *4 (-639 (-1256 *5))))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *5)) (-4 *5 (-362)) (-5 *2 (-639 (-2 (|:| |particular| (-3 (-1256 *5) "failed")) (|:| -3928 (-639 (-1256 *5)))))) (-5 *1 (-661 *5)) (-5 *4 (-639 (-1256 *5))))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-639 *5))) (-4 *5 (-362)) (-5 *2 (-2 (|:| |particular| (-3 (-1256 *5) "failed")) (|:| -3928 (-639 (-1256 *5))))) (-5 *1 (-661 *5)) (-5 *4 (-1256 *5)))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| |particular| (-3 (-1256 *5) "failed")) (|:| -3928 (-639 (-1256 *5))))) (-5 *1 (-661 *5)) (-5 *4 (-1256 *5)))))
-(-10 -7 (-15 -4351 ((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|)))) (-683 |#1|) (-1256 |#1|))) (-15 -4351 ((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|)))) (-639 (-639 |#1|)) (-1256 |#1|))) (-15 -4351 ((-639 (-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|))))) (-683 |#1|) (-639 (-1256 |#1|)))) (-15 -4351 ((-639 (-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|))))) (-639 (-639 |#1|)) (-639 (-1256 |#1|)))) (-15 -2106 ((-3 (-1256 |#1|) "failed") (-683 |#1|) (-1256 |#1|))) (-15 -3249 ((-112) (-683 |#1|) (-1256 |#1|))) (-15 -2173 ((-766) (-683 |#1|) (-1256 |#1|))))
-((-4351 (((-639 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3928 (-639 |#3|)))) |#4| (-639 |#3|)) 47) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3928 (-639 |#3|))) |#4| |#3|) 45)) (-2173 (((-766) |#4| |#3|) 17)) (-2106 (((-3 |#3| "failed") |#4| |#3|) 20)) (-3249 (((-112) |#4| |#3|) 13)))
-(((-662 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4351 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3928 (-639 |#3|))) |#4| |#3|)) (-15 -4351 ((-639 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3928 (-639 |#3|)))) |#4| (-639 |#3|))) (-15 -2106 ((-3 |#3| "failed") |#4| |#3|)) (-15 -3249 ((-112) |#4| |#3|)) (-15 -2173 ((-766) |#4| |#3|))) (-362) (-13 (-372 |#1|) (-10 -7 (-6 -4403))) (-13 (-372 |#1|) (-10 -7 (-6 -4403))) (-681 |#1| |#2| |#3|)) (T -662))
-((-2173 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4403)))) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))) (-5 *2 (-766)) (-5 *1 (-662 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4)))) (-3249 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4403)))) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))) (-5 *2 (-112)) (-5 *1 (-662 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4)))) (-2106 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-362)) (-4 *5 (-13 (-372 *4) (-10 -7 (-6 -4403)))) (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4403)))) (-5 *1 (-662 *4 *5 *2 *3)) (-4 *3 (-681 *4 *5 *2)))) (-4351 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4403)))) (-4 *7 (-13 (-372 *5) (-10 -7 (-6 -4403)))) (-5 *2 (-639 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -3928 (-639 *7))))) (-5 *1 (-662 *5 *6 *7 *3)) (-5 *4 (-639 *7)) (-4 *3 (-681 *5 *6 *7)))) (-4351 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4403)))) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4)))) (-5 *1 (-662 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4)))))
-(-10 -7 (-15 -4351 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3928 (-639 |#3|))) |#4| |#3|)) (-15 -4351 ((-639 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3928 (-639 |#3|)))) |#4| (-639 |#3|))) (-15 -2106 ((-3 |#3| "failed") |#4| |#3|)) (-15 -3249 ((-112) |#4| |#3|)) (-15 -2173 ((-766) |#4| |#3|)))
-((-2140 (((-2 (|:| |particular| (-3 (-1256 (-406 |#4|)) "failed")) (|:| -3928 (-639 (-1256 (-406 |#4|))))) (-639 |#4|) (-639 |#3|)) 45)))
-(((-663 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2140 ((-2 (|:| |particular| (-3 (-1256 (-406 |#4|)) "failed")) (|:| -3928 (-639 (-1256 (-406 |#4|))))) (-639 |#4|) (-639 |#3|)))) (-554) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -663))
-((-2140 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *7)) (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-5 *2 (-2 (|:| |particular| (-3 (-1256 (-406 *8)) "failed")) (|:| -3928 (-639 (-1256 (-406 *8)))))) (-5 *1 (-663 *5 *6 *7 *8)))))
-(-10 -7 (-15 -2140 ((-2 (|:| |particular| (-3 (-1256 (-406 |#4|)) "failed")) (|:| -3928 (-639 (-1256 (-406 |#4|))))) (-639 |#4|) (-639 |#3|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3931 (((-3 $ "failed")) NIL (|has| |#2| (-554)))) (-1748 ((|#2| $) NIL)) (-2952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1902 (((-1256 (-683 |#2|))) NIL) (((-1256 (-683 |#2|)) (-1256 $)) NIL)) (-3220 (((-112) $) NIL)) (-3655 (((-1256 $)) 37)) (-4336 (((-112) $ (-766)) NIL)) (-2554 (($ |#2|) NIL)) (-1800 (($) NIL T CONST)) (-2522 (($ $) NIL (|has| |#2| (-306)))) (-3796 (((-239 |#1| |#2|) $ (-562)) NIL)) (-2874 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) NIL (|has| |#2| (-554)))) (-2117 (((-3 $ "failed")) NIL (|has| |#2| (-554)))) (-4356 (((-683 |#2|)) NIL) (((-683 |#2|) (-1256 $)) NIL)) (-2422 ((|#2| $) NIL)) (-2966 (((-683 |#2|) $) NIL) (((-683 |#2|) $ (-1256 $)) NIL)) (-2545 (((-3 $ "failed") $) NIL (|has| |#2| (-554)))) (-3407 (((-1164 (-947 |#2|))) NIL (|has| |#2| (-362)))) (-1379 (($ $ (-916)) NIL)) (-2355 ((|#2| $) NIL)) (-3474 (((-1164 |#2|) $) NIL (|has| |#2| (-554)))) (-2819 ((|#2|) NIL) ((|#2| (-1256 $)) NIL)) (-2964 (((-1164 |#2|) $) NIL)) (-2380 (((-112)) NIL)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 |#2| "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) ((|#2| $) NIL)) (-4018 (($ (-1256 |#2|)) NIL) (($ (-1256 |#2|) (-1256 $)) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-2173 (((-766) $) NIL (|has| |#2| (-554))) (((-916)) 38)) (-1420 ((|#2| $ (-562) (-562)) NIL)) (-1321 (((-112)) NIL)) (-3650 (($ $ (-916)) NIL)) (-1720 (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1957 (((-112) $) NIL)) (-3922 (((-766) $) NIL (|has| |#2| (-554)))) (-2318 (((-639 (-239 |#1| |#2|)) $) NIL (|has| |#2| (-554)))) (-2699 (((-766) $) NIL)) (-3813 (((-112)) NIL)) (-2709 (((-766) $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-2280 ((|#2| $) NIL (|has| |#2| (-6 (-4404 "*"))))) (-2783 (((-562) $) NIL)) (-4217 (((-562) $) NIL)) (-1912 (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-4088 (((-562) $) NIL)) (-2453 (((-562) $) NIL)) (-2885 (($ (-639 (-639 |#2|))) NIL)) (-1490 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2824 (((-639 (-639 |#2|)) $) NIL)) (-3375 (((-112)) NIL)) (-4258 (((-112)) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-1681 (((-3 (-2 (|:| |particular| $) (|:| -3928 (-639 $))) "failed")) NIL (|has| |#2| (-554)))) (-3700 (((-3 $ "failed")) NIL (|has| |#2| (-554)))) (-3025 (((-683 |#2|)) NIL) (((-683 |#2|) (-1256 $)) NIL)) (-4153 ((|#2| $) NIL)) (-1671 (((-683 |#2|) $) NIL) (((-683 |#2|) $ (-1256 $)) NIL)) (-4238 (((-3 $ "failed") $) NIL (|has| |#2| (-554)))) (-2743 (((-1164 (-947 |#2|))) NIL (|has| |#2| (-362)))) (-2991 (($ $ (-916)) NIL)) (-1680 ((|#2| $) NIL)) (-2026 (((-1164 |#2|) $) NIL (|has| |#2| (-554)))) (-1305 ((|#2|) NIL) ((|#2| (-1256 $)) NIL)) (-2670 (((-1164 |#2|) $) NIL)) (-2090 (((-112)) NIL)) (-2913 (((-1150) $) NIL)) (-2144 (((-112)) NIL)) (-2580 (((-112)) NIL)) (-2809 (((-112)) NIL)) (-3494 (((-3 $ "failed") $) NIL (|has| |#2| (-362)))) (-1709 (((-1112) $) NIL)) (-4323 (((-112)) NIL)) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554)))) (-1763 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#2| $ (-562) (-562) |#2|) NIL) ((|#2| $ (-562) (-562)) 22) ((|#2| $ (-562)) NIL)) (-4029 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $) NIL (|has| |#2| (-232)))) (-3436 ((|#2| $) NIL)) (-3448 (($ (-639 |#2|)) NIL)) (-1544 (((-112) $) NIL)) (-3798 (((-239 |#1| |#2|) $) NIL)) (-3770 ((|#2| $) NIL (|has| |#2| (-6 (-4404 "*"))))) (-1723 (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-4220 (($ $) NIL)) (-3593 (((-683 |#2|) (-1256 $)) NIL) (((-1256 |#2|) $) NIL) (((-683 |#2|) (-1256 $) (-1256 $)) NIL) (((-1256 |#2|) $ (-1256 $)) 25)) (-4208 (($ (-1256 |#2|)) NIL) (((-1256 |#2|) $) NIL)) (-4136 (((-639 (-947 |#2|))) NIL) (((-639 (-947 |#2|)) (-1256 $)) NIL)) (-1911 (($ $ $) NIL)) (-1396 (((-112)) NIL)) (-2211 (((-239 |#1| |#2|) $ (-562)) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#2| (-1033 (-406 (-562))))) (($ |#2|) NIL) (((-683 |#2|) $) NIL)) (-2579 (((-766)) NIL)) (-3928 (((-1256 $)) 36)) (-3553 (((-639 (-1256 |#2|))) NIL (|has| |#2| (-554)))) (-2436 (($ $ $ $) NIL)) (-2850 (((-112)) NIL)) (-1360 (($ (-683 |#2|) $) NIL)) (-1744 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1335 (((-112) $) NIL)) (-3626 (($ $ $) NIL)) (-1981 (((-112)) NIL)) (-3199 (((-112)) NIL)) (-4114 (((-112)) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $) NIL (|has| |#2| (-232)))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#2| (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-239 |#1| |#2|) $ (-239 |#1| |#2|)) NIL) (((-239 |#1| |#2|) (-239 |#1| |#2|) $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-3888 (((-639 (-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|))))) (-639 (-639 |#1|)) (-639 (-1256 |#1|))) 22) (((-639 (-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|))))) (-683 |#1|) (-639 (-1256 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|)))) (-639 (-639 |#1|)) (-1256 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|)))) (-683 |#1|) (-1256 |#1|)) 14)) (-2172 (((-766) (-683 |#1|) (-1256 |#1|)) 30)) (-2341 (((-3 (-1256 |#1|) "failed") (-683 |#1|) (-1256 |#1|)) 24)) (-1939 (((-112) (-683 |#1|) (-1256 |#1|)) 27)))
+(((-661 |#1|) (-10 -7 (-15 -3888 ((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|)))) (-683 |#1|) (-1256 |#1|))) (-15 -3888 ((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|)))) (-639 (-639 |#1|)) (-1256 |#1|))) (-15 -3888 ((-639 (-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|))))) (-683 |#1|) (-639 (-1256 |#1|)))) (-15 -3888 ((-639 (-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|))))) (-639 (-639 |#1|)) (-639 (-1256 |#1|)))) (-15 -2341 ((-3 (-1256 |#1|) "failed") (-683 |#1|) (-1256 |#1|))) (-15 -1939 ((-112) (-683 |#1|) (-1256 |#1|))) (-15 -2172 ((-766) (-683 |#1|) (-1256 |#1|)))) (-362)) (T -661))
+((-2172 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)) (-4 *5 (-362)) (-5 *2 (-766)) (-5 *1 (-661 *5)))) (-1939 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)) (-4 *5 (-362)) (-5 *2 (-112)) (-5 *1 (-661 *5)))) (-2341 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1256 *4)) (-5 *3 (-683 *4)) (-4 *4 (-362)) (-5 *1 (-661 *4)))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-639 *5))) (-4 *5 (-362)) (-5 *2 (-639 (-2 (|:| |particular| (-3 (-1256 *5) "failed")) (|:| -4291 (-639 (-1256 *5)))))) (-5 *1 (-661 *5)) (-5 *4 (-639 (-1256 *5))))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *5)) (-4 *5 (-362)) (-5 *2 (-639 (-2 (|:| |particular| (-3 (-1256 *5) "failed")) (|:| -4291 (-639 (-1256 *5)))))) (-5 *1 (-661 *5)) (-5 *4 (-639 (-1256 *5))))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-639 *5))) (-4 *5 (-362)) (-5 *2 (-2 (|:| |particular| (-3 (-1256 *5) "failed")) (|:| -4291 (-639 (-1256 *5))))) (-5 *1 (-661 *5)) (-5 *4 (-1256 *5)))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| |particular| (-3 (-1256 *5) "failed")) (|:| -4291 (-639 (-1256 *5))))) (-5 *1 (-661 *5)) (-5 *4 (-1256 *5)))))
+(-10 -7 (-15 -3888 ((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|)))) (-683 |#1|) (-1256 |#1|))) (-15 -3888 ((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|)))) (-639 (-639 |#1|)) (-1256 |#1|))) (-15 -3888 ((-639 (-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|))))) (-683 |#1|) (-639 (-1256 |#1|)))) (-15 -3888 ((-639 (-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|))))) (-639 (-639 |#1|)) (-639 (-1256 |#1|)))) (-15 -2341 ((-3 (-1256 |#1|) "failed") (-683 |#1|) (-1256 |#1|))) (-15 -1939 ((-112) (-683 |#1|) (-1256 |#1|))) (-15 -2172 ((-766) (-683 |#1|) (-1256 |#1|))))
+((-3888 (((-639 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4291 (-639 |#3|)))) |#4| (-639 |#3|)) 47) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4291 (-639 |#3|))) |#4| |#3|) 45)) (-2172 (((-766) |#4| |#3|) 17)) (-2341 (((-3 |#3| "failed") |#4| |#3|) 20)) (-1939 (((-112) |#4| |#3|) 13)))
+(((-662 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3888 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4291 (-639 |#3|))) |#4| |#3|)) (-15 -3888 ((-639 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4291 (-639 |#3|)))) |#4| (-639 |#3|))) (-15 -2341 ((-3 |#3| "failed") |#4| |#3|)) (-15 -1939 ((-112) |#4| |#3|)) (-15 -2172 ((-766) |#4| |#3|))) (-362) (-13 (-372 |#1|) (-10 -7 (-6 -4404))) (-13 (-372 |#1|) (-10 -7 (-6 -4404))) (-681 |#1| |#2| |#3|)) (T -662))
+((-2172 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4404)))) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4404)))) (-5 *2 (-766)) (-5 *1 (-662 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4)))) (-1939 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4404)))) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4404)))) (-5 *2 (-112)) (-5 *1 (-662 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4)))) (-2341 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-362)) (-4 *5 (-13 (-372 *4) (-10 -7 (-6 -4404)))) (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4404)))) (-5 *1 (-662 *4 *5 *2 *3)) (-4 *3 (-681 *4 *5 *2)))) (-3888 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4404)))) (-4 *7 (-13 (-372 *5) (-10 -7 (-6 -4404)))) (-5 *2 (-639 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -4291 (-639 *7))))) (-5 *1 (-662 *5 *6 *7 *3)) (-5 *4 (-639 *7)) (-4 *3 (-681 *5 *6 *7)))) (-3888 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4404)))) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4404)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4)))) (-5 *1 (-662 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4)))))
+(-10 -7 (-15 -3888 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4291 (-639 |#3|))) |#4| |#3|)) (-15 -3888 ((-639 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4291 (-639 |#3|)))) |#4| (-639 |#3|))) (-15 -2341 ((-3 |#3| "failed") |#4| |#3|)) (-15 -1939 ((-112) |#4| |#3|)) (-15 -2172 ((-766) |#4| |#3|)))
+((-2679 (((-2 (|:| |particular| (-3 (-1256 (-406 |#4|)) "failed")) (|:| -4291 (-639 (-1256 (-406 |#4|))))) (-639 |#4|) (-639 |#3|)) 45)))
+(((-663 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2679 ((-2 (|:| |particular| (-3 (-1256 (-406 |#4|)) "failed")) (|:| -4291 (-639 (-1256 (-406 |#4|))))) (-639 |#4|) (-639 |#3|)))) (-554) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -663))
+((-2679 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *7)) (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-5 *2 (-2 (|:| |particular| (-3 (-1256 (-406 *8)) "failed")) (|:| -4291 (-639 (-1256 (-406 *8)))))) (-5 *1 (-663 *5 *6 *7 *8)))))
+(-10 -7 (-15 -2679 ((-2 (|:| |particular| (-3 (-1256 (-406 |#4|)) "failed")) (|:| -4291 (-639 (-1256 (-406 |#4|))))) (-639 |#4|) (-639 |#3|))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-4310 (((-3 $ "failed")) NIL (|has| |#2| (-554)))) (-1748 ((|#2| $) NIL)) (-4097 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-2016 (((-1256 (-683 |#2|))) NIL) (((-1256 (-683 |#2|)) (-1256 $)) NIL)) (-2819 (((-112) $) NIL)) (-1540 (((-1256 $)) 37)) (-3735 (((-112) $ (-766)) NIL)) (-4369 (($ |#2|) NIL)) (-3329 (($) NIL T CONST)) (-2239 (($ $) NIL (|has| |#2| (-306)))) (-3511 (((-239 |#1| |#2|) $ (-562)) NIL)) (-1469 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) NIL (|has| |#2| (-554)))) (-2447 (((-3 $ "failed")) NIL (|has| |#2| (-554)))) (-3945 (((-683 |#2|)) NIL) (((-683 |#2|) (-1256 $)) NIL)) (-2452 ((|#2| $) NIL)) (-2995 (((-683 |#2|) $) NIL) (((-683 |#2|) $ (-1256 $)) NIL)) (-4276 (((-3 $ "failed") $) NIL (|has| |#2| (-554)))) (-3996 (((-1164 (-947 |#2|))) NIL (|has| |#2| (-362)))) (-2127 (($ $ (-916)) NIL)) (-2949 ((|#2| $) NIL)) (-3407 (((-1164 |#2|) $) NIL (|has| |#2| (-554)))) (-2200 ((|#2|) NIL) ((|#2| (-1256 $)) NIL)) (-2974 (((-1164 |#2|) $) NIL)) (-3178 (((-112)) NIL)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 |#2| "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) ((|#2| $) NIL)) (-3916 (($ (-1256 |#2|)) NIL) (($ (-1256 |#2|) (-1256 $)) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2172 (((-766) $) NIL (|has| |#2| (-554))) (((-916)) 38)) (-1420 ((|#2| $ (-562) (-562)) NIL)) (-1832 (((-112)) NIL)) (-1492 (($ $ (-916)) NIL)) (-1720 (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-4367 (((-112) $) NIL)) (-4244 (((-766) $) NIL (|has| |#2| (-554)))) (-3821 (((-639 (-239 |#1| |#2|)) $) NIL (|has| |#2| (-554)))) (-2698 (((-766) $) NIL)) (-2531 (((-112)) NIL)) (-2708 (((-766) $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1622 ((|#2| $) NIL (|has| |#2| (-6 (-4405 "*"))))) (-1808 (((-562) $) NIL)) (-2028 (((-562) $) NIL)) (-2123 (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-3269 (((-562) $) NIL)) (-2727 (((-562) $) NIL)) (-2884 (($ (-639 (-639 |#2|))) NIL)) (-1491 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2247 (((-639 (-639 |#2|)) $) NIL)) (-3671 (((-112)) NIL)) (-2394 (((-112)) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3502 (((-3 (-2 (|:| |particular| $) (|:| -4291 (-639 $))) "failed")) NIL (|has| |#2| (-554)))) (-3839 (((-3 $ "failed")) NIL (|has| |#2| (-554)))) (-3506 (((-683 |#2|)) NIL) (((-683 |#2|) (-1256 $)) NIL)) (-2664 ((|#2| $) NIL)) (-1583 (((-683 |#2|) $) NIL) (((-683 |#2|) $ (-1256 $)) NIL)) (-2217 (((-3 $ "failed") $) NIL (|has| |#2| (-554)))) (-2620 (((-1164 (-947 |#2|))) NIL (|has| |#2| (-362)))) (-3235 (($ $ (-916)) NIL)) (-3495 ((|#2| $) NIL)) (-3849 (((-1164 |#2|) $) NIL (|has| |#2| (-554)))) (-1636 ((|#2|) NIL) ((|#2| (-1256 $)) NIL)) (-3099 (((-1164 |#2|) $) NIL)) (-3302 (((-112)) NIL)) (-3696 (((-1150) $) NIL)) (-2720 (((-112)) NIL)) (-1579 (((-112)) NIL)) (-2104 (((-112)) NIL)) (-2463 (((-3 $ "failed") $) NIL (|has| |#2| (-362)))) (-1709 (((-1112) $) NIL)) (-3626 (((-112)) NIL)) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554)))) (-3008 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#2| $ (-562) (-562) |#2|) NIL) ((|#2| $ (-562) (-562)) 22) ((|#2| $ (-562)) NIL)) (-4029 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $) NIL (|has| |#2| (-232)))) (-3042 ((|#2| $) NIL)) (-3168 (($ (-639 |#2|)) NIL)) (-1752 (((-112) $) NIL)) (-2399 (((-239 |#1| |#2|) $) NIL)) (-3282 ((|#2| $) NIL (|has| |#2| (-6 (-4405 "*"))))) (-1723 (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-4220 (($ $) NIL)) (-2205 (((-683 |#2|) (-1256 $)) NIL) (((-1256 |#2|) $) NIL) (((-683 |#2|) (-1256 $) (-1256 $)) NIL) (((-1256 |#2|) $ (-1256 $)) 25)) (-4208 (($ (-1256 |#2|)) NIL) (((-1256 |#2|) $) NIL)) (-2555 (((-639 (-947 |#2|))) NIL) (((-639 (-947 |#2|)) (-1256 $)) NIL)) (-2114 (($ $ $) NIL)) (-3901 (((-112)) NIL)) (-2208 (((-239 |#1| |#2|) $ (-562)) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#2| (-1033 (-406 (-562))))) (($ |#2|) NIL) (((-683 |#2|) $) NIL)) (-1568 (((-766)) NIL)) (-4291 (((-1256 $)) 36)) (-1823 (((-639 (-1256 |#2|))) NIL (|has| |#2| (-554)))) (-2584 (($ $ $ $) NIL)) (-4309 (((-112)) NIL)) (-1360 (($ (-683 |#2|) $) NIL)) (-2879 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1996 (((-112) $) NIL)) (-4324 (($ $ $) NIL)) (-1517 (((-112)) NIL)) (-2636 (((-112)) NIL)) (-3488 (((-112)) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $) NIL (|has| |#2| (-232)))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#2| (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-239 |#1| |#2|) $ (-239 |#1| |#2|)) NIL) (((-239 |#1| |#2|) (-239 |#1| |#2|) $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-664 |#1| |#2|) (-13 (-1115 |#1| |#2| (-239 |#1| |#2|) (-239 |#1| |#2|)) (-609 (-683 |#2|)) (-416 |#2|)) (-916) (-171)) (T -664))
NIL
(-13 (-1115 |#1| |#2| (-239 |#1| |#2|) (-239 |#1| |#2|)) (-609 (-683 |#2|)) (-416 |#2|))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3885 (((-639 (-1127)) $) 10)) (-4054 (((-857) $) 18) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-665) (-13 (-1075) (-10 -8 (-15 -3885 ((-639 (-1127)) $))))) (T -665))
-((-3885 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-665)))))
-(-13 (-1075) (-10 -8 (-15 -3885 ((-639 (-1127)) $))))
-((-4041 (((-112) $ $) NIL)) (-2852 (((-639 |#1|) $) NIL)) (-1602 (($ $) 51)) (-2585 (((-112) $) NIL)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3961 ((|#1| $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4042 (((-3 $ "failed") (-814 |#1|)) 23)) (-2810 (((-112) (-814 |#1|)) 15)) (-2138 (($ (-814 |#1|)) 24)) (-3496 (((-112) $ $) 29)) (-3641 (((-916) $) 36)) (-1588 (($ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1635 (((-639 $) (-814 |#1|)) 17)) (-4054 (((-857) $) 42) (($ |#1|) 33) (((-814 |#1|) $) 38) (((-671 |#1|) $) 43)) (-2351 (((-59 (-639 $)) (-639 |#1|) (-916)) 56)) (-2577 (((-639 $) (-639 |#1|) (-916)) 59)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 52)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 37)))
-(((-666 |#1|) (-13 (-845) (-1033 |#1|) (-10 -8 (-15 -2585 ((-112) $)) (-15 -1588 ($ $)) (-15 -1602 ($ $)) (-15 -3641 ((-916) $)) (-15 -3496 ((-112) $ $)) (-15 -4054 ((-814 |#1|) $)) (-15 -4054 ((-671 |#1|) $)) (-15 -1635 ((-639 $) (-814 |#1|))) (-15 -2810 ((-112) (-814 |#1|))) (-15 -2138 ($ (-814 |#1|))) (-15 -4042 ((-3 $ "failed") (-814 |#1|))) (-15 -2852 ((-639 |#1|) $)) (-15 -2351 ((-59 (-639 $)) (-639 |#1|) (-916))) (-15 -2577 ((-639 $) (-639 |#1|) (-916))))) (-845)) (T -666))
-((-2585 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-666 *3)) (-4 *3 (-845)))) (-1588 (*1 *1 *1) (-12 (-5 *1 (-666 *2)) (-4 *2 (-845)))) (-1602 (*1 *1 *1) (-12 (-5 *1 (-666 *2)) (-4 *2 (-845)))) (-3641 (*1 *2 *1) (-12 (-5 *2 (-916)) (-5 *1 (-666 *3)) (-4 *3 (-845)))) (-3496 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-666 *3)) (-4 *3 (-845)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-814 *3)) (-5 *1 (-666 *3)) (-4 *3 (-845)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-671 *3)) (-5 *1 (-666 *3)) (-4 *3 (-845)))) (-1635 (*1 *2 *3) (-12 (-5 *3 (-814 *4)) (-4 *4 (-845)) (-5 *2 (-639 (-666 *4))) (-5 *1 (-666 *4)))) (-2810 (*1 *2 *3) (-12 (-5 *3 (-814 *4)) (-4 *4 (-845)) (-5 *2 (-112)) (-5 *1 (-666 *4)))) (-2138 (*1 *1 *2) (-12 (-5 *2 (-814 *3)) (-4 *3 (-845)) (-5 *1 (-666 *3)))) (-4042 (*1 *1 *2) (|partial| -12 (-5 *2 (-814 *3)) (-4 *3 (-845)) (-5 *1 (-666 *3)))) (-2852 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-666 *3)) (-4 *3 (-845)))) (-2351 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *5)) (-5 *4 (-916)) (-4 *5 (-845)) (-5 *2 (-59 (-639 (-666 *5)))) (-5 *1 (-666 *5)))) (-2577 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *5)) (-5 *4 (-916)) (-4 *5 (-845)) (-5 *2 (-639 (-666 *5))) (-5 *1 (-666 *5)))))
-(-13 (-845) (-1033 |#1|) (-10 -8 (-15 -2585 ((-112) $)) (-15 -1588 ($ $)) (-15 -1602 ($ $)) (-15 -3641 ((-916) $)) (-15 -3496 ((-112) $ $)) (-15 -4054 ((-814 |#1|) $)) (-15 -4054 ((-671 |#1|) $)) (-15 -1635 ((-639 $) (-814 |#1|))) (-15 -2810 ((-112) (-814 |#1|))) (-15 -2138 ($ (-814 |#1|))) (-15 -4042 ((-3 $ "failed") (-814 |#1|))) (-15 -2852 ((-639 |#1|) $)) (-15 -2351 ((-59 (-639 $)) (-639 |#1|) (-916))) (-15 -2577 ((-639 $) (-639 |#1|) (-916)))))
-((-2534 ((|#2| $) 76)) (-3121 (($ $) 96)) (-4336 (((-112) $ (-766)) 26)) (-1434 (($ $) 85) (($ $ (-766)) 88)) (-3266 (((-112) $) 97)) (-2720 (((-639 $) $) 72)) (-4379 (((-112) $ $) 71)) (-3292 (((-112) $ (-766)) 24)) (-4197 (((-562) $) 46)) (-3874 (((-562) $) 45)) (-3289 (((-112) $ (-766)) 22)) (-3449 (((-112) $) 74)) (-1504 ((|#2| $) 89) (($ $ (-766)) 92)) (-3297 (($ $ $ (-562)) 62) (($ |#2| $ (-562)) 61)) (-2093 (((-639 (-562)) $) 44)) (-1570 (((-112) (-562) $) 42)) (-1421 ((|#2| $) NIL) (($ $ (-766)) 84)) (-1353 (($ $ (-562)) 99)) (-2017 (((-112) $) 98)) (-1763 (((-112) (-1 (-112) |#2|) $) 32)) (-2411 (((-639 |#2|) $) 33)) (-2343 ((|#2| $ "value") NIL) ((|#2| $ "first") 83) (($ $ "rest") 87) ((|#2| $ "last") 95) (($ $ (-1223 (-562))) 58) ((|#2| $ (-562)) 40) ((|#2| $ (-562) |#2|) 41)) (-2568 (((-562) $ $) 70)) (-2880 (($ $ (-1223 (-562))) 57) (($ $ (-562)) 51)) (-2424 (((-112) $) 66)) (-2613 (($ $) 81)) (-2296 (((-766) $) 80)) (-3913 (($ $) 79)) (-4066 (($ (-639 |#2|)) 37)) (-2256 (($ $) 100)) (-2906 (((-639 $) $) 69)) (-4055 (((-112) $ $) 68)) (-1744 (((-112) (-1 (-112) |#2|) $) 31)) (-1731 (((-112) $ $) 18)) (-3492 (((-766) $) 29)))
-(((-667 |#1| |#2|) (-10 -8 (-15 -2256 (|#1| |#1|)) (-15 -1353 (|#1| |#1| (-562))) (-15 -3266 ((-112) |#1|)) (-15 -2017 ((-112) |#1|)) (-15 -2343 (|#2| |#1| (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562))) (-15 -2411 ((-639 |#2|) |#1|)) (-15 -1570 ((-112) (-562) |#1|)) (-15 -2093 ((-639 (-562)) |#1|)) (-15 -3874 ((-562) |#1|)) (-15 -4197 ((-562) |#1|)) (-15 -4066 (|#1| (-639 |#2|))) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -2880 (|#1| |#1| (-562))) (-15 -2880 (|#1| |#1| (-1223 (-562)))) (-15 -3297 (|#1| |#2| |#1| (-562))) (-15 -3297 (|#1| |#1| |#1| (-562))) (-15 -2613 (|#1| |#1|)) (-15 -2296 ((-766) |#1|)) (-15 -3913 (|#1| |#1|)) (-15 -3121 (|#1| |#1|)) (-15 -1504 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "last")) (-15 -1504 (|#2| |#1|)) (-15 -1434 (|#1| |#1| (-766))) (-15 -2343 (|#1| |#1| "rest")) (-15 -1434 (|#1| |#1|)) (-15 -1421 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "first")) (-15 -1421 (|#2| |#1|)) (-15 -4379 ((-112) |#1| |#1|)) (-15 -4055 ((-112) |#1| |#1|)) (-15 -2568 ((-562) |#1| |#1|)) (-15 -2424 ((-112) |#1|)) (-15 -2343 (|#2| |#1| "value")) (-15 -2534 (|#2| |#1|)) (-15 -3449 ((-112) |#1|)) (-15 -2720 ((-639 |#1|) |#1|)) (-15 -2906 ((-639 |#1|) |#1|)) (-15 -1731 ((-112) |#1| |#1|)) (-15 -1763 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1744 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -4336 ((-112) |#1| (-766))) (-15 -3292 ((-112) |#1| (-766))) (-15 -3289 ((-112) |#1| (-766)))) (-668 |#2|) (-1207)) (T -667))
-NIL
-(-10 -8 (-15 -2256 (|#1| |#1|)) (-15 -1353 (|#1| |#1| (-562))) (-15 -3266 ((-112) |#1|)) (-15 -2017 ((-112) |#1|)) (-15 -2343 (|#2| |#1| (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562))) (-15 -2411 ((-639 |#2|) |#1|)) (-15 -1570 ((-112) (-562) |#1|)) (-15 -2093 ((-639 (-562)) |#1|)) (-15 -3874 ((-562) |#1|)) (-15 -4197 ((-562) |#1|)) (-15 -4066 (|#1| (-639 |#2|))) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -2880 (|#1| |#1| (-562))) (-15 -2880 (|#1| |#1| (-1223 (-562)))) (-15 -3297 (|#1| |#2| |#1| (-562))) (-15 -3297 (|#1| |#1| |#1| (-562))) (-15 -2613 (|#1| |#1|)) (-15 -2296 ((-766) |#1|)) (-15 -3913 (|#1| |#1|)) (-15 -3121 (|#1| |#1|)) (-15 -1504 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "last")) (-15 -1504 (|#2| |#1|)) (-15 -1434 (|#1| |#1| (-766))) (-15 -2343 (|#1| |#1| "rest")) (-15 -1434 (|#1| |#1|)) (-15 -1421 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "first")) (-15 -1421 (|#2| |#1|)) (-15 -4379 ((-112) |#1| |#1|)) (-15 -4055 ((-112) |#1| |#1|)) (-15 -2568 ((-562) |#1| |#1|)) (-15 -2424 ((-112) |#1|)) (-15 -2343 (|#2| |#1| "value")) (-15 -2534 (|#2| |#1|)) (-15 -3449 ((-112) |#1|)) (-15 -2720 ((-639 |#1|) |#1|)) (-15 -2906 ((-639 |#1|) |#1|)) (-15 -1731 ((-112) |#1| |#1|)) (-15 -1763 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1744 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -4336 ((-112) |#1| (-766))) (-15 -3292 ((-112) |#1| (-766))) (-15 -3289 ((-112) |#1| (-766))))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2534 ((|#1| $) 48)) (-2359 ((|#1| $) 65)) (-3121 (($ $) 67)) (-3052 (((-1261) $ (-562) (-562)) 97 (|has| $ (-6 -4403)))) (-2254 (($ $ (-562)) 52 (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) 8)) (-1512 ((|#1| $ |#1|) 39 (|has| $ (-6 -4403)))) (-3012 (($ $ $) 56 (|has| $ (-6 -4403)))) (-3950 ((|#1| $ |#1|) 54 (|has| $ (-6 -4403)))) (-2687 ((|#1| $ |#1|) 58 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4403))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4403))) (($ $ "rest" $) 55 (|has| $ (-6 -4403))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) 117 (|has| $ (-6 -4403))) ((|#1| $ (-562) |#1|) 86 (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) 41 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 102)) (-2350 ((|#1| $) 66)) (-1800 (($) 7 T CONST)) (-4293 (($ $) 124)) (-1434 (($ $) 73) (($ $ (-766)) 71)) (-1459 (($ $) 99 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#1| $) 100 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 103)) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1505 ((|#1| $ (-562) |#1|) 85 (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) 87)) (-3266 (((-112) $) 83)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-2505 (((-766) $) 123)) (-2720 (((-639 $) $) 50)) (-4379 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-1458 (($ (-766) |#1|) 108)) (-3292 (((-112) $ (-766)) 9)) (-4197 (((-562) $) 95 (|has| (-562) (-845)))) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 94 (|has| (-562) (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3289 (((-112) $ (-766)) 10)) (-4007 (((-639 |#1|) $) 45)) (-3449 (((-112) $) 49)) (-1892 (($ $) 126)) (-3718 (((-112) $) 127)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1504 ((|#1| $) 70) (($ $ (-766)) 68)) (-3297 (($ $ $ (-562)) 116) (($ |#1| $ (-562)) 115)) (-2093 (((-639 (-562)) $) 92)) (-1570 (((-112) (-562) $) 91)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3038 ((|#1| $) 125)) (-1421 ((|#1| $) 76) (($ $ (-766)) 74)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-2716 (($ $ |#1|) 96 (|has| $ (-6 -4403)))) (-1353 (($ $ (-562)) 122)) (-2017 (((-112) $) 84)) (-3663 (((-112) $) 128)) (-3431 (((-112) $) 129)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) 90)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1223 (-562))) 112) ((|#1| $ (-562)) 89) ((|#1| $ (-562) |#1|) 88)) (-2568 (((-562) $ $) 44)) (-2880 (($ $ (-1223 (-562))) 114) (($ $ (-562)) 113)) (-2424 (((-112) $) 46)) (-2613 (($ $) 62)) (-4327 (($ $) 59 (|has| $ (-6 -4403)))) (-2296 (((-766) $) 63)) (-3913 (($ $) 64)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 98 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 107)) (-4142 (($ $ $) 61 (|has| $ (-6 -4403))) (($ $ |#1|) 60 (|has| $ (-6 -4403)))) (-2767 (($ $ $) 78) (($ |#1| $) 77) (($ (-639 $)) 110) (($ $ |#1|) 109)) (-2256 (($ $) 121)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) 51)) (-4055 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2048 (((-639 (-1127)) $) 10)) (-4053 (((-857) $) 18) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-665) (-13 (-1075) (-10 -8 (-15 -2048 ((-639 (-1127)) $))))) (T -665))
+((-2048 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-665)))))
+(-13 (-1075) (-10 -8 (-15 -2048 ((-639 (-1127)) $))))
+((-4041 (((-112) $ $) NIL)) (-2850 (((-639 |#1|) $) NIL)) (-1603 (($ $) 51)) (-1638 (((-112) $) NIL)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3960 ((|#1| $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4117 (((-3 $ "failed") (-814 |#1|)) 23)) (-2112 (((-112) (-814 |#1|)) 15)) (-2658 (($ (-814 |#1|)) 24)) (-2483 (((-112) $ $) 29)) (-3641 (((-916) $) 36)) (-1589 (($ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1635 (((-639 $) (-814 |#1|)) 17)) (-4053 (((-857) $) 42) (($ |#1|) 33) (((-814 |#1|) $) 38) (((-671 |#1|) $) 43)) (-2915 (((-59 (-639 $)) (-639 |#1|) (-916)) 56)) (-1543 (((-639 $) (-639 |#1|) (-916)) 59)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 52)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 37)))
+(((-666 |#1|) (-13 (-845) (-1033 |#1|) (-10 -8 (-15 -1638 ((-112) $)) (-15 -1589 ($ $)) (-15 -1603 ($ $)) (-15 -3641 ((-916) $)) (-15 -2483 ((-112) $ $)) (-15 -4053 ((-814 |#1|) $)) (-15 -4053 ((-671 |#1|) $)) (-15 -1635 ((-639 $) (-814 |#1|))) (-15 -2112 ((-112) (-814 |#1|))) (-15 -2658 ($ (-814 |#1|))) (-15 -4117 ((-3 $ "failed") (-814 |#1|))) (-15 -2850 ((-639 |#1|) $)) (-15 -2915 ((-59 (-639 $)) (-639 |#1|) (-916))) (-15 -1543 ((-639 $) (-639 |#1|) (-916))))) (-845)) (T -666))
+((-1638 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-666 *3)) (-4 *3 (-845)))) (-1589 (*1 *1 *1) (-12 (-5 *1 (-666 *2)) (-4 *2 (-845)))) (-1603 (*1 *1 *1) (-12 (-5 *1 (-666 *2)) (-4 *2 (-845)))) (-3641 (*1 *2 *1) (-12 (-5 *2 (-916)) (-5 *1 (-666 *3)) (-4 *3 (-845)))) (-2483 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-666 *3)) (-4 *3 (-845)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-814 *3)) (-5 *1 (-666 *3)) (-4 *3 (-845)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-671 *3)) (-5 *1 (-666 *3)) (-4 *3 (-845)))) (-1635 (*1 *2 *3) (-12 (-5 *3 (-814 *4)) (-4 *4 (-845)) (-5 *2 (-639 (-666 *4))) (-5 *1 (-666 *4)))) (-2112 (*1 *2 *3) (-12 (-5 *3 (-814 *4)) (-4 *4 (-845)) (-5 *2 (-112)) (-5 *1 (-666 *4)))) (-2658 (*1 *1 *2) (-12 (-5 *2 (-814 *3)) (-4 *3 (-845)) (-5 *1 (-666 *3)))) (-4117 (*1 *1 *2) (|partial| -12 (-5 *2 (-814 *3)) (-4 *3 (-845)) (-5 *1 (-666 *3)))) (-2850 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-666 *3)) (-4 *3 (-845)))) (-2915 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *5)) (-5 *4 (-916)) (-4 *5 (-845)) (-5 *2 (-59 (-639 (-666 *5)))) (-5 *1 (-666 *5)))) (-1543 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *5)) (-5 *4 (-916)) (-4 *5 (-845)) (-5 *2 (-639 (-666 *5))) (-5 *1 (-666 *5)))))
+(-13 (-845) (-1033 |#1|) (-10 -8 (-15 -1638 ((-112) $)) (-15 -1589 ($ $)) (-15 -1603 ($ $)) (-15 -3641 ((-916) $)) (-15 -2483 ((-112) $ $)) (-15 -4053 ((-814 |#1|) $)) (-15 -4053 ((-671 |#1|) $)) (-15 -1635 ((-639 $) (-814 |#1|))) (-15 -2112 ((-112) (-814 |#1|))) (-15 -2658 ($ (-814 |#1|))) (-15 -4117 ((-3 $ "failed") (-814 |#1|))) (-15 -2850 ((-639 |#1|) $)) (-15 -2915 ((-59 (-639 $)) (-639 |#1|) (-916))) (-15 -1543 ((-639 $) (-639 |#1|) (-916)))))
+((-2533 ((|#2| $) 76)) (-3120 (($ $) 96)) (-3735 (((-112) $ (-766)) 26)) (-1434 (($ $) 85) (($ $ (-766)) 88)) (-2101 (((-112) $) 97)) (-2409 (((-639 $) $) 72)) (-4188 (((-112) $ $) 71)) (-4172 (((-112) $ (-766)) 24)) (-1849 (((-562) $) 46)) (-1929 (((-562) $) 45)) (-4147 (((-112) $ (-766)) 22)) (-3179 (((-112) $) 74)) (-1504 ((|#2| $) 89) (($ $ (-766)) 92)) (-3295 (($ $ $ (-562)) 62) (($ |#2| $ (-562)) 61)) (-3336 (((-639 (-562)) $) 44)) (-1987 (((-112) (-562) $) 42)) (-1421 ((|#2| $) NIL) (($ $ (-766)) 84)) (-4316 (($ $ (-562)) 99)) (-3745 (((-112) $) 98)) (-3008 (((-112) (-1 (-112) |#2|) $) 32)) (-2366 (((-639 |#2|) $) 33)) (-2343 ((|#2| $ "value") NIL) ((|#2| $ "first") 83) (($ $ "rest") 87) ((|#2| $ "last") 95) (($ $ (-1223 (-562))) 58) ((|#2| $ (-562)) 40) ((|#2| $ (-562) |#2|) 41)) (-1423 (((-562) $ $) 70)) (-2880 (($ $ (-1223 (-562))) 57) (($ $ (-562)) 51)) (-2473 (((-112) $) 66)) (-3734 (($ $) 81)) (-3595 (((-766) $) 80)) (-2333 (($ $) 79)) (-4064 (($ (-639 |#2|)) 37)) (-1345 (($ $) 100)) (-3643 (((-639 $) $) 69)) (-2985 (((-112) $ $) 68)) (-2879 (((-112) (-1 (-112) |#2|) $) 31)) (-1733 (((-112) $ $) 18)) (-3492 (((-766) $) 29)))
+(((-667 |#1| |#2|) (-10 -8 (-15 -1345 (|#1| |#1|)) (-15 -4316 (|#1| |#1| (-562))) (-15 -2101 ((-112) |#1|)) (-15 -3745 ((-112) |#1|)) (-15 -2343 (|#2| |#1| (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562))) (-15 -2366 ((-639 |#2|) |#1|)) (-15 -1987 ((-112) (-562) |#1|)) (-15 -3336 ((-639 (-562)) |#1|)) (-15 -1929 ((-562) |#1|)) (-15 -1849 ((-562) |#1|)) (-15 -4064 (|#1| (-639 |#2|))) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -2880 (|#1| |#1| (-562))) (-15 -2880 (|#1| |#1| (-1223 (-562)))) (-15 -3295 (|#1| |#2| |#1| (-562))) (-15 -3295 (|#1| |#1| |#1| (-562))) (-15 -3734 (|#1| |#1|)) (-15 -3595 ((-766) |#1|)) (-15 -2333 (|#1| |#1|)) (-15 -3120 (|#1| |#1|)) (-15 -1504 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "last")) (-15 -1504 (|#2| |#1|)) (-15 -1434 (|#1| |#1| (-766))) (-15 -2343 (|#1| |#1| "rest")) (-15 -1434 (|#1| |#1|)) (-15 -1421 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "first")) (-15 -1421 (|#2| |#1|)) (-15 -4188 ((-112) |#1| |#1|)) (-15 -2985 ((-112) |#1| |#1|)) (-15 -1423 ((-562) |#1| |#1|)) (-15 -2473 ((-112) |#1|)) (-15 -2343 (|#2| |#1| "value")) (-15 -2533 (|#2| |#1|)) (-15 -3179 ((-112) |#1|)) (-15 -2409 ((-639 |#1|) |#1|)) (-15 -3643 ((-639 |#1|) |#1|)) (-15 -1733 ((-112) |#1| |#1|)) (-15 -3008 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2879 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -3735 ((-112) |#1| (-766))) (-15 -4172 ((-112) |#1| (-766))) (-15 -4147 ((-112) |#1| (-766)))) (-668 |#2|) (-1207)) (T -667))
+NIL
+(-10 -8 (-15 -1345 (|#1| |#1|)) (-15 -4316 (|#1| |#1| (-562))) (-15 -2101 ((-112) |#1|)) (-15 -3745 ((-112) |#1|)) (-15 -2343 (|#2| |#1| (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562))) (-15 -2366 ((-639 |#2|) |#1|)) (-15 -1987 ((-112) (-562) |#1|)) (-15 -3336 ((-639 (-562)) |#1|)) (-15 -1929 ((-562) |#1|)) (-15 -1849 ((-562) |#1|)) (-15 -4064 (|#1| (-639 |#2|))) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -2880 (|#1| |#1| (-562))) (-15 -2880 (|#1| |#1| (-1223 (-562)))) (-15 -3295 (|#1| |#2| |#1| (-562))) (-15 -3295 (|#1| |#1| |#1| (-562))) (-15 -3734 (|#1| |#1|)) (-15 -3595 ((-766) |#1|)) (-15 -2333 (|#1| |#1|)) (-15 -3120 (|#1| |#1|)) (-15 -1504 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "last")) (-15 -1504 (|#2| |#1|)) (-15 -1434 (|#1| |#1| (-766))) (-15 -2343 (|#1| |#1| "rest")) (-15 -1434 (|#1| |#1|)) (-15 -1421 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "first")) (-15 -1421 (|#2| |#1|)) (-15 -4188 ((-112) |#1| |#1|)) (-15 -2985 ((-112) |#1| |#1|)) (-15 -1423 ((-562) |#1| |#1|)) (-15 -2473 ((-112) |#1|)) (-15 -2343 (|#2| |#1| "value")) (-15 -2533 (|#2| |#1|)) (-15 -3179 ((-112) |#1|)) (-15 -2409 ((-639 |#1|) |#1|)) (-15 -3643 ((-639 |#1|) |#1|)) (-15 -1733 ((-112) |#1| |#1|)) (-15 -3008 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2879 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -3735 ((-112) |#1| (-766))) (-15 -4172 ((-112) |#1| (-766))) (-15 -4147 ((-112) |#1| (-766))))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2533 ((|#1| $) 48)) (-2358 ((|#1| $) 65)) (-3120 (($ $) 67)) (-3655 (((-1261) $ (-562) (-562)) 97 (|has| $ (-6 -4404)))) (-1335 (($ $ (-562)) 52 (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) 8)) (-2677 ((|#1| $ |#1|) 39 (|has| $ (-6 -4404)))) (-3400 (($ $ $) 56 (|has| $ (-6 -4404)))) (-1393 ((|#1| $ |#1|) 54 (|has| $ (-6 -4404)))) (-3239 ((|#1| $ |#1|) 58 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4404))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4404))) (($ $ "rest" $) 55 (|has| $ (-6 -4404))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) 117 (|has| $ (-6 -4404))) ((|#1| $ (-562) |#1|) 86 (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) 41 (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) 102)) (-2349 ((|#1| $) 66)) (-3329 (($) 7 T CONST)) (-1494 (($ $) 124)) (-1434 (($ $) 73) (($ $ (-766)) 71)) (-1459 (($ $) 99 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#1| $) 100 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 103)) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1507 ((|#1| $ (-562) |#1|) 85 (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) 87)) (-2101 (((-112) $) 83)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-2062 (((-766) $) 123)) (-2409 (((-639 $) $) 50)) (-4188 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-1458 (($ (-766) |#1|) 108)) (-4172 (((-112) $ (-766)) 9)) (-1849 (((-562) $) 95 (|has| (-562) (-845)))) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 94 (|has| (-562) (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-4147 (((-112) $ (-766)) 10)) (-4008 (((-639 |#1|) $) 45)) (-3179 (((-112) $) 49)) (-1906 (($ $) 126)) (-4040 (((-112) $) 127)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1504 ((|#1| $) 70) (($ $ (-766)) 68)) (-3295 (($ $ $ (-562)) 116) (($ |#1| $ (-562)) 115)) (-3336 (((-639 (-562)) $) 92)) (-1987 (((-112) (-562) $) 91)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3529 ((|#1| $) 125)) (-1421 ((|#1| $) 76) (($ $ (-766)) 74)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-3510 (($ $ |#1|) 96 (|has| $ (-6 -4404)))) (-4316 (($ $ (-562)) 122)) (-3745 (((-112) $) 84)) (-1637 (((-112) $) 128)) (-2998 (((-112) $) 129)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) 90)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1223 (-562))) 112) ((|#1| $ (-562)) 89) ((|#1| $ (-562) |#1|) 88)) (-1423 (((-562) $ $) 44)) (-2880 (($ $ (-1223 (-562))) 114) (($ $ (-562)) 113)) (-2473 (((-112) $) 46)) (-3734 (($ $) 62)) (-3659 (($ $) 59 (|has| $ (-6 -4404)))) (-3595 (((-766) $) 63)) (-2333 (($ $) 64)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 98 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 107)) (-2587 (($ $ $) 61 (|has| $ (-6 -4404))) (($ $ |#1|) 60 (|has| $ (-6 -4404)))) (-2767 (($ $ $) 78) (($ |#1| $) 77) (($ (-639 $)) 110) (($ $ |#1|) 109)) (-1345 (($ $) 121)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) 51)) (-2985 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-668 |#1|) (-139) (-1207)) (T -668))
-((-1475 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-668 *3)) (-4 *3 (-1207)))) (-3556 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-668 *3)) (-4 *3 (-1207)))) (-3431 (*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))) (-3663 (*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))) (-3718 (*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))) (-1892 (*1 *1 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))) (-3038 (*1 *2 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))) (-4293 (*1 *1 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))) (-2505 (*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))) (-1353 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-668 *3)) (-4 *3 (-1207)))) (-2256 (*1 *1 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))))
-(-13 (-1141 |t#1|) (-10 -8 (-15 -1475 ($ (-1 (-112) |t#1|) $)) (-15 -3556 ($ (-1 (-112) |t#1|) $)) (-15 -3431 ((-112) $)) (-15 -3663 ((-112) $)) (-15 -3718 ((-112) $)) (-15 -1892 ($ $)) (-15 -3038 (|t#1| $)) (-15 -4293 ($ $)) (-15 -2505 ((-766) $)) (-15 -1353 ($ $ (-562))) (-15 -2256 ($ $))))
+((-1475 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-668 *3)) (-4 *3 (-1207)))) (-3556 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-668 *3)) (-4 *3 (-1207)))) (-2998 (*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))) (-1637 (*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))) (-4040 (*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))) (-1906 (*1 *1 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))) (-3529 (*1 *2 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))) (-1494 (*1 *1 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))) (-2062 (*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))) (-4316 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-668 *3)) (-4 *3 (-1207)))) (-1345 (*1 *1 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))))
+(-13 (-1141 |t#1|) (-10 -8 (-15 -1475 ($ (-1 (-112) |t#1|) $)) (-15 -3556 ($ (-1 (-112) |t#1|) $)) (-15 -2998 ((-112) $)) (-15 -1637 ((-112) $)) (-15 -4040 ((-112) $)) (-15 -1906 ($ $)) (-15 -3529 (|t#1| $)) (-15 -1494 ($ $)) (-15 -2062 ((-766) $)) (-15 -4316 ($ $ (-562))) (-15 -1345 ($ $))))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-285 #0=(-562) |#1|) . T) ((-287 #0# |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-600 #0# |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-645 |#1|) . T) ((-1005 |#1|) . T) ((-1092) |has| |#1| (-1092)) ((-1141 |#1|) . T) ((-1207) . T) ((-1244 |#1|) . T))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2496 (($ (-766) (-766) (-766)) 33 (|has| |#1| (-1044)))) (-4336 (((-112) $ (-766)) NIL)) (-3629 ((|#1| $ (-766) (-766) (-766) |#1|) 27)) (-1800 (($) NIL T CONST)) (-2960 (($ $ $) 37 (|has| |#1| (-1044)))) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3161 (((-1256 (-766)) $) 9)) (-1951 (($ (-1168) $ $) 22)) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-4057 (($ (-766)) 35 (|has| |#1| (-1044)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ (-766) (-766) (-766)) 25)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4066 (($ (-639 (-639 (-639 |#1|)))) 44)) (-4054 (($ (-953 (-953 (-953 |#1|)))) 15) (((-953 (-953 (-953 |#1|))) $) 12) (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-669 |#1|) (-13 (-488 |#1|) (-10 -8 (IF (|has| |#1| (-1044)) (PROGN (-15 -2496 ($ (-766) (-766) (-766))) (-15 -4057 ($ (-766))) (-15 -2960 ($ $ $))) |%noBranch|) (-15 -4066 ($ (-639 (-639 (-639 |#1|))))) (-15 -2343 (|#1| $ (-766) (-766) (-766))) (-15 -3629 (|#1| $ (-766) (-766) (-766) |#1|)) (-15 -4054 ($ (-953 (-953 (-953 |#1|))))) (-15 -4054 ((-953 (-953 (-953 |#1|))) $)) (-15 -1951 ($ (-1168) $ $)) (-15 -3161 ((-1256 (-766)) $)))) (-1092)) (T -669))
-((-2496 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-766)) (-5 *1 (-669 *3)) (-4 *3 (-1044)) (-4 *3 (-1092)))) (-4057 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-669 *3)) (-4 *3 (-1044)) (-4 *3 (-1092)))) (-2960 (*1 *1 *1 *1) (-12 (-5 *1 (-669 *2)) (-4 *2 (-1044)) (-4 *2 (-1092)))) (-4066 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 (-639 *3)))) (-4 *3 (-1092)) (-5 *1 (-669 *3)))) (-2343 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-766)) (-5 *1 (-669 *2)) (-4 *2 (-1092)))) (-3629 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-669 *2)) (-4 *2 (-1092)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-953 (-953 (-953 *3)))) (-4 *3 (-1092)) (-5 *1 (-669 *3)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-953 (-953 (-953 *3)))) (-5 *1 (-669 *3)) (-4 *3 (-1092)))) (-1951 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-669 *3)) (-4 *3 (-1092)))) (-3161 (*1 *2 *1) (-12 (-5 *2 (-1256 (-766))) (-5 *1 (-669 *3)) (-4 *3 (-1092)))))
-(-13 (-488 |#1|) (-10 -8 (IF (|has| |#1| (-1044)) (PROGN (-15 -2496 ($ (-766) (-766) (-766))) (-15 -4057 ($ (-766))) (-15 -2960 ($ $ $))) |%noBranch|) (-15 -4066 ($ (-639 (-639 (-639 |#1|))))) (-15 -2343 (|#1| $ (-766) (-766) (-766))) (-15 -3629 (|#1| $ (-766) (-766) (-766) |#1|)) (-15 -4054 ($ (-953 (-953 (-953 |#1|))))) (-15 -4054 ((-953 (-953 (-953 |#1|))) $)) (-15 -1951 ($ (-1168) $ $)) (-15 -3161 ((-1256 (-766)) $))))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-3063 (((-482) $) 10)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 21) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-1127) $) 12)) (-1731 (((-112) $ $) NIL)))
-(((-670) (-13 (-1075) (-10 -8 (-15 -3063 ((-482) $)) (-15 -3265 ((-1127) $))))) (T -670))
-((-3063 (*1 *2 *1) (-12 (-5 *2 (-482)) (-5 *1 (-670)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-670)))))
-(-13 (-1075) (-10 -8 (-15 -3063 ((-482) $)) (-15 -3265 ((-1127) $))))
-((-4041 (((-112) $ $) NIL)) (-2852 (((-639 |#1|) $) 14)) (-1602 (($ $) 18)) (-2585 (((-112) $) 19)) (-4048 (((-3 |#1| "failed") $) 22)) (-3961 ((|#1| $) 20)) (-1434 (($ $) 36)) (-3818 (($ $) 24)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3496 (((-112) $ $) 41)) (-3641 (((-916) $) 38)) (-1588 (($ $) 17)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 ((|#1| $) 35)) (-4054 (((-857) $) 31) (($ |#1|) 23) (((-814 |#1|) $) 27)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 12)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 40)) (* (($ $ $) 34)))
-(((-671 |#1|) (-13 (-845) (-1033 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -4054 ((-814 |#1|) $)) (-15 -1421 (|#1| $)) (-15 -1588 ($ $)) (-15 -3641 ((-916) $)) (-15 -3496 ((-112) $ $)) (-15 -3818 ($ $)) (-15 -1434 ($ $)) (-15 -2585 ((-112) $)) (-15 -1602 ($ $)) (-15 -2852 ((-639 |#1|) $)))) (-845)) (T -671))
-((* (*1 *1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-814 *3)) (-5 *1 (-671 *3)) (-4 *3 (-845)))) (-1421 (*1 *2 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845)))) (-1588 (*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845)))) (-3641 (*1 *2 *1) (-12 (-5 *2 (-916)) (-5 *1 (-671 *3)) (-4 *3 (-845)))) (-3496 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-671 *3)) (-4 *3 (-845)))) (-3818 (*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845)))) (-1434 (*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845)))) (-2585 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-671 *3)) (-4 *3 (-845)))) (-1602 (*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845)))) (-2852 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-671 *3)) (-4 *3 (-845)))))
-(-13 (-845) (-1033 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -4054 ((-814 |#1|) $)) (-15 -1421 (|#1| $)) (-15 -1588 ($ $)) (-15 -3641 ((-916) $)) (-15 -3496 ((-112) $ $)) (-15 -3818 ($ $)) (-15 -1434 ($ $)) (-15 -2585 ((-112) $)) (-15 -1602 ($ $)) (-15 -2852 ((-639 |#1|) $))))
-((-2132 ((|#1| (-1 |#1| (-766) |#1|) (-766) |#1|) 11)) (-3354 ((|#1| (-1 |#1| |#1|) (-766) |#1|) 9)))
-(((-672 |#1|) (-10 -7 (-15 -3354 (|#1| (-1 |#1| |#1|) (-766) |#1|)) (-15 -2132 (|#1| (-1 |#1| (-766) |#1|) (-766) |#1|))) (-1092)) (T -672))
-((-2132 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-766) *2)) (-5 *4 (-766)) (-4 *2 (-1092)) (-5 *1 (-672 *2)))) (-3354 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-766)) (-4 *2 (-1092)) (-5 *1 (-672 *2)))))
-(-10 -7 (-15 -3354 (|#1| (-1 |#1| |#1|) (-766) |#1|)) (-15 -2132 (|#1| (-1 |#1| (-766) |#1|) (-766) |#1|)))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1970 (($ (-766) (-766) (-766)) 33 (|has| |#1| (-1044)))) (-3735 (((-112) $ (-766)) NIL)) (-4358 ((|#1| $ (-766) (-766) (-766) |#1|) 27)) (-3329 (($) NIL T CONST)) (-2959 (($ $ $) 37 (|has| |#1| (-1044)))) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3453 (((-1256 (-766)) $) 9)) (-4313 (($ (-1168) $ $) 22)) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-2999 (($ (-766)) 35 (|has| |#1| (-1044)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ (-766) (-766) (-766)) 25)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4064 (($ (-639 (-639 (-639 |#1|)))) 44)) (-4053 (($ (-953 (-953 (-953 |#1|)))) 15) (((-953 (-953 (-953 |#1|))) $) 12) (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-669 |#1|) (-13 (-488 |#1|) (-10 -8 (IF (|has| |#1| (-1044)) (PROGN (-15 -1970 ($ (-766) (-766) (-766))) (-15 -2999 ($ (-766))) (-15 -2959 ($ $ $))) |%noBranch|) (-15 -4064 ($ (-639 (-639 (-639 |#1|))))) (-15 -2343 (|#1| $ (-766) (-766) (-766))) (-15 -4358 (|#1| $ (-766) (-766) (-766) |#1|)) (-15 -4053 ($ (-953 (-953 (-953 |#1|))))) (-15 -4053 ((-953 (-953 (-953 |#1|))) $)) (-15 -4313 ($ (-1168) $ $)) (-15 -3453 ((-1256 (-766)) $)))) (-1092)) (T -669))
+((-1970 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-766)) (-5 *1 (-669 *3)) (-4 *3 (-1044)) (-4 *3 (-1092)))) (-2999 (*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-669 *3)) (-4 *3 (-1044)) (-4 *3 (-1092)))) (-2959 (*1 *1 *1 *1) (-12 (-5 *1 (-669 *2)) (-4 *2 (-1044)) (-4 *2 (-1092)))) (-4064 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 (-639 *3)))) (-4 *3 (-1092)) (-5 *1 (-669 *3)))) (-2343 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-766)) (-5 *1 (-669 *2)) (-4 *2 (-1092)))) (-4358 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-669 *2)) (-4 *2 (-1092)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-953 (-953 (-953 *3)))) (-4 *3 (-1092)) (-5 *1 (-669 *3)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-953 (-953 (-953 *3)))) (-5 *1 (-669 *3)) (-4 *3 (-1092)))) (-4313 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-669 *3)) (-4 *3 (-1092)))) (-3453 (*1 *2 *1) (-12 (-5 *2 (-1256 (-766))) (-5 *1 (-669 *3)) (-4 *3 (-1092)))))
+(-13 (-488 |#1|) (-10 -8 (IF (|has| |#1| (-1044)) (PROGN (-15 -1970 ($ (-766) (-766) (-766))) (-15 -2999 ($ (-766))) (-15 -2959 ($ $ $))) |%noBranch|) (-15 -4064 ($ (-639 (-639 (-639 |#1|))))) (-15 -2343 (|#1| $ (-766) (-766) (-766))) (-15 -4358 (|#1| $ (-766) (-766) (-766) |#1|)) (-15 -4053 ($ (-953 (-953 (-953 |#1|))))) (-15 -4053 ((-953 (-953 (-953 |#1|))) $)) (-15 -4313 ($ (-1168) $ $)) (-15 -3453 ((-1256 (-766)) $))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-3757 (((-482) $) 10)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 21) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-1127) $) 12)) (-1733 (((-112) $ $) NIL)))
+(((-670) (-13 (-1075) (-10 -8 (-15 -3757 ((-482) $)) (-15 -3265 ((-1127) $))))) (T -670))
+((-3757 (*1 *2 *1) (-12 (-5 *2 (-482)) (-5 *1 (-670)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-670)))))
+(-13 (-1075) (-10 -8 (-15 -3757 ((-482) $)) (-15 -3265 ((-1127) $))))
+((-4041 (((-112) $ $) NIL)) (-2850 (((-639 |#1|) $) 14)) (-1603 (($ $) 18)) (-1638 (((-112) $) 19)) (-4048 (((-3 |#1| "failed") $) 22)) (-3960 ((|#1| $) 20)) (-1434 (($ $) 36)) (-2572 (($ $) 24)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2483 (((-112) $ $) 41)) (-3641 (((-916) $) 38)) (-1589 (($ $) 17)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 ((|#1| $) 35)) (-4053 (((-857) $) 31) (($ |#1|) 23) (((-814 |#1|) $) 27)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 12)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 40)) (* (($ $ $) 34)))
+(((-671 |#1|) (-13 (-845) (-1033 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -4053 ((-814 |#1|) $)) (-15 -1421 (|#1| $)) (-15 -1589 ($ $)) (-15 -3641 ((-916) $)) (-15 -2483 ((-112) $ $)) (-15 -2572 ($ $)) (-15 -1434 ($ $)) (-15 -1638 ((-112) $)) (-15 -1603 ($ $)) (-15 -2850 ((-639 |#1|) $)))) (-845)) (T -671))
+((* (*1 *1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-814 *3)) (-5 *1 (-671 *3)) (-4 *3 (-845)))) (-1421 (*1 *2 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845)))) (-1589 (*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845)))) (-3641 (*1 *2 *1) (-12 (-5 *2 (-916)) (-5 *1 (-671 *3)) (-4 *3 (-845)))) (-2483 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-671 *3)) (-4 *3 (-845)))) (-2572 (*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845)))) (-1434 (*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845)))) (-1638 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-671 *3)) (-4 *3 (-845)))) (-1603 (*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845)))) (-2850 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-671 *3)) (-4 *3 (-845)))))
+(-13 (-845) (-1033 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -4053 ((-814 |#1|) $)) (-15 -1421 (|#1| $)) (-15 -1589 ($ $)) (-15 -3641 ((-916) $)) (-15 -2483 ((-112) $ $)) (-15 -2572 ($ $)) (-15 -1434 ($ $)) (-15 -1638 ((-112) $)) (-15 -1603 ($ $)) (-15 -2850 ((-639 |#1|) $))))
+((-2598 ((|#1| (-1 |#1| (-766) |#1|) (-766) |#1|) 11)) (-3351 ((|#1| (-1 |#1| |#1|) (-766) |#1|) 9)))
+(((-672 |#1|) (-10 -7 (-15 -3351 (|#1| (-1 |#1| |#1|) (-766) |#1|)) (-15 -2598 (|#1| (-1 |#1| (-766) |#1|) (-766) |#1|))) (-1092)) (T -672))
+((-2598 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-766) *2)) (-5 *4 (-766)) (-4 *2 (-1092)) (-5 *1 (-672 *2)))) (-3351 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-766)) (-4 *2 (-1092)) (-5 *1 (-672 *2)))))
+(-10 -7 (-15 -3351 (|#1| (-1 |#1| |#1|) (-766) |#1|)) (-15 -2598 (|#1| (-1 |#1| (-766) |#1|) (-766) |#1|)))
((-3755 ((|#2| |#1| |#2|) 9)) (-3743 ((|#1| |#1| |#2|) 8)))
(((-673 |#1| |#2|) (-10 -7 (-15 -3743 (|#1| |#1| |#2|)) (-15 -3755 (|#2| |#1| |#2|))) (-1092) (-1092)) (T -673))
((-3755 (*1 *2 *3 *2) (-12 (-5 *1 (-673 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))) (-3743 (*1 *2 *2 *3) (-12 (-5 *1 (-673 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))))
(-10 -7 (-15 -3743 (|#1| |#1| |#2|)) (-15 -3755 (|#2| |#1| |#2|)))
-((-4310 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
-(((-674 |#1| |#2| |#3|) (-10 -7 (-15 -4310 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1092) (-1092) (-1092)) (T -674))
-((-4310 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)) (-5 *1 (-674 *5 *6 *2)))))
-(-10 -7 (-15 -4310 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-4084 (((-1206) $) 20)) (-4020 (((-639 (-1206)) $) 18)) (-2216 (($ (-639 (-1206)) (-1206)) 13)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 29) (($ (-1173)) NIL) (((-1173) $) NIL) (((-1206) $) 21) (($ (-1110)) 10)) (-1731 (((-112) $ $) NIL)))
-(((-675) (-13 (-1075) (-609 (-1206)) (-10 -8 (-15 -4054 ($ (-1110))) (-15 -2216 ($ (-639 (-1206)) (-1206))) (-15 -4020 ((-639 (-1206)) $)) (-15 -4084 ((-1206) $))))) (T -675))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1110)) (-5 *1 (-675)))) (-2216 (*1 *1 *2 *3) (-12 (-5 *2 (-639 (-1206))) (-5 *3 (-1206)) (-5 *1 (-675)))) (-4020 (*1 *2 *1) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-675)))) (-4084 (*1 *2 *1) (-12 (-5 *2 (-1206)) (-5 *1 (-675)))))
-(-13 (-1075) (-609 (-1206)) (-10 -8 (-15 -4054 ($ (-1110))) (-15 -2216 ($ (-639 (-1206)) (-1206))) (-15 -4020 ((-639 (-1206)) $)) (-15 -4084 ((-1206) $))))
-((-2132 (((-1 |#1| (-766) |#1|) (-1 |#1| (-766) |#1|)) 23)) (-3815 (((-1 |#1|) |#1|) 8)) (-1416 ((|#1| |#1|) 16)) (-2429 (((-639 |#1|) (-1 (-639 |#1|) (-639 |#1|)) (-562)) 15) ((|#1| (-1 |#1| |#1|)) 11)) (-4054 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-766)) 20)))
-(((-676 |#1|) (-10 -7 (-15 -3815 ((-1 |#1|) |#1|)) (-15 -4054 ((-1 |#1|) |#1|)) (-15 -2429 (|#1| (-1 |#1| |#1|))) (-15 -2429 ((-639 |#1|) (-1 (-639 |#1|) (-639 |#1|)) (-562))) (-15 -1416 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-766))) (-15 -2132 ((-1 |#1| (-766) |#1|) (-1 |#1| (-766) |#1|)))) (-1092)) (T -676))
-((-2132 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-766) *3)) (-4 *3 (-1092)) (-5 *1 (-676 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-766)) (-4 *4 (-1092)) (-5 *1 (-676 *4)))) (-1416 (*1 *2 *2) (-12 (-5 *1 (-676 *2)) (-4 *2 (-1092)))) (-2429 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-639 *5) (-639 *5))) (-5 *4 (-562)) (-5 *2 (-639 *5)) (-5 *1 (-676 *5)) (-4 *5 (-1092)))) (-2429 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-676 *2)) (-4 *2 (-1092)))) (-4054 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-676 *3)) (-4 *3 (-1092)))) (-3815 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-676 *3)) (-4 *3 (-1092)))))
-(-10 -7 (-15 -3815 ((-1 |#1|) |#1|)) (-15 -4054 ((-1 |#1|) |#1|)) (-15 -2429 (|#1| (-1 |#1| |#1|))) (-15 -2429 ((-639 |#1|) (-1 (-639 |#1|) (-639 |#1|)) (-562))) (-15 -1416 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-766))) (-15 -2132 ((-1 |#1| (-766) |#1|) (-1 |#1| (-766) |#1|))))
-((-2278 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-2357 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-1497 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-3670 (((-1 |#2| |#1|) |#2|) 11)))
-(((-677 |#1| |#2|) (-10 -7 (-15 -3670 ((-1 |#2| |#1|) |#2|)) (-15 -2357 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -1497 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -2278 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1092) (-1092)) (T -677))
-((-2278 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-5 *2 (-1 *5 *4)) (-5 *1 (-677 *4 *5)))) (-1497 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1092)) (-5 *2 (-1 *5 *4)) (-5 *1 (-677 *4 *5)) (-4 *4 (-1092)))) (-2357 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-5 *2 (-1 *5)) (-5 *1 (-677 *4 *5)))) (-3670 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-677 *4 *3)) (-4 *4 (-1092)) (-4 *3 (-1092)))))
-(-10 -7 (-15 -3670 ((-1 |#2| |#1|) |#2|)) (-15 -2357 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -1497 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -2278 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
-((-1424 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-3954 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-2691 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-4352 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-2869 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
-(((-678 |#1| |#2| |#3|) (-10 -7 (-15 -3954 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2691 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -4352 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -2869 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -1424 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1092) (-1092) (-1092)) (T -678))
-((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-1 *7 *5)) (-5 *1 (-678 *5 *6 *7)))) (-1424 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-678 *4 *5 *6)))) (-2869 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-678 *4 *5 *6)) (-4 *4 (-1092)))) (-4352 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1092)) (-4 *6 (-1092)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-678 *4 *5 *6)) (-4 *5 (-1092)))) (-2691 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-5 *2 (-1 *6 *5)) (-5 *1 (-678 *4 *5 *6)))) (-3954 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1092)) (-4 *4 (-1092)) (-4 *6 (-1092)) (-5 *2 (-1 *6 *5)) (-5 *1 (-678 *5 *4 *6)))))
-(-10 -7 (-15 -3954 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2691 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -4352 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -2869 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -1424 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
-((-1955 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-4152 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
-(((-679 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -4152 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -4152 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -1955 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-1044) (-372 |#1|) (-372 |#1|) (-681 |#1| |#2| |#3|) (-1044) (-372 |#5|) (-372 |#5|) (-681 |#5| |#6| |#7|)) (T -679))
-((-1955 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1044)) (-4 *2 (-1044)) (-4 *6 (-372 *5)) (-4 *7 (-372 *5)) (-4 *8 (-372 *2)) (-4 *9 (-372 *2)) (-5 *1 (-679 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-681 *5 *6 *7)) (-4 *10 (-681 *2 *8 *9)))) (-4152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-1044)) (-4 *8 (-1044)) (-4 *6 (-372 *5)) (-4 *7 (-372 *5)) (-4 *2 (-681 *8 *9 *10)) (-5 *1 (-679 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-681 *5 *6 *7)) (-4 *9 (-372 *8)) (-4 *10 (-372 *8)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1044)) (-4 *8 (-1044)) (-4 *6 (-372 *5)) (-4 *7 (-372 *5)) (-4 *2 (-681 *8 *9 *10)) (-5 *1 (-679 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-681 *5 *6 *7)) (-4 *9 (-372 *8)) (-4 *10 (-372 *8)))))
-(-10 -7 (-15 -4152 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -4152 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -1955 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
-((-2911 (($ (-766) (-766)) 33)) (-2654 (($ $ $) 56)) (-2529 (($ |#3|) 52) (($ $) 53)) (-2952 (((-112) $) 28)) (-2188 (($ $ (-562) (-562)) 58)) (-2467 (($ $ (-562) (-562)) 59)) (-1593 (($ $ (-562) (-562) (-562) (-562)) 63)) (-3886 (($ $) 54)) (-3220 (((-112) $) 14)) (-4212 (($ $ (-562) (-562) $) 64)) (-4200 ((|#2| $ (-562) (-562) |#2|) NIL) (($ $ (-639 (-562)) (-639 (-562)) $) 62)) (-2554 (($ (-766) |#2|) 39)) (-2885 (($ (-639 (-639 |#2|))) 37)) (-2824 (((-639 (-639 |#2|)) $) 57)) (-2309 (($ $ $) 55)) (-1762 (((-3 $ "failed") $ |#2|) 91)) (-2343 ((|#2| $ (-562) (-562)) NIL) ((|#2| $ (-562) (-562) |#2|) NIL) (($ $ (-639 (-562)) (-639 (-562))) 61)) (-3448 (($ (-639 |#2|)) 40) (($ (-639 $)) 42)) (-1544 (((-112) $) 24)) (-4054 (($ |#4|) 47) (((-857) $) NIL)) (-1335 (((-112) $) 30)) (-1859 (($ $ |#2|) 93)) (-1848 (($ $ $) 68) (($ $) 71)) (-1835 (($ $ $) 66)) (** (($ $ (-766)) 80) (($ $ (-562)) 96)) (* (($ $ $) 77) (($ |#2| $) 73) (($ $ |#2|) 74) (($ (-562) $) 76) ((|#4| $ |#4|) 84) ((|#3| |#3| $) 88)))
-(((-680 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4054 ((-857) |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 -1859 (|#1| |#1| |#2|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-766))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1835 (|#1| |#1| |#1|)) (-15 -4212 (|#1| |#1| (-562) (-562) |#1|)) (-15 -1593 (|#1| |#1| (-562) (-562) (-562) (-562))) (-15 -2467 (|#1| |#1| (-562) (-562))) (-15 -2188 (|#1| |#1| (-562) (-562))) (-15 -4200 (|#1| |#1| (-639 (-562)) (-639 (-562)) |#1|)) (-15 -2343 (|#1| |#1| (-639 (-562)) (-639 (-562)))) (-15 -2824 ((-639 (-639 |#2|)) |#1|)) (-15 -2654 (|#1| |#1| |#1|)) (-15 -2309 (|#1| |#1| |#1|)) (-15 -3886 (|#1| |#1|)) (-15 -2529 (|#1| |#1|)) (-15 -2529 (|#1| |#3|)) (-15 -4054 (|#1| |#4|)) (-15 -3448 (|#1| (-639 |#1|))) (-15 -3448 (|#1| (-639 |#2|))) (-15 -2554 (|#1| (-766) |#2|)) (-15 -2885 (|#1| (-639 (-639 |#2|)))) (-15 -2911 (|#1| (-766) (-766))) (-15 -1335 ((-112) |#1|)) (-15 -2952 ((-112) |#1|)) (-15 -1544 ((-112) |#1|)) (-15 -3220 ((-112) |#1|)) (-15 -4200 (|#2| |#1| (-562) (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) (-562)))) (-681 |#2| |#3| |#4|) (-1044) (-372 |#2|) (-372 |#2|)) (T -680))
-NIL
-(-10 -8 (-15 -4054 ((-857) |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 -1859 (|#1| |#1| |#2|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-766))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1835 (|#1| |#1| |#1|)) (-15 -4212 (|#1| |#1| (-562) (-562) |#1|)) (-15 -1593 (|#1| |#1| (-562) (-562) (-562) (-562))) (-15 -2467 (|#1| |#1| (-562) (-562))) (-15 -2188 (|#1| |#1| (-562) (-562))) (-15 -4200 (|#1| |#1| (-639 (-562)) (-639 (-562)) |#1|)) (-15 -2343 (|#1| |#1| (-639 (-562)) (-639 (-562)))) (-15 -2824 ((-639 (-639 |#2|)) |#1|)) (-15 -2654 (|#1| |#1| |#1|)) (-15 -2309 (|#1| |#1| |#1|)) (-15 -3886 (|#1| |#1|)) (-15 -2529 (|#1| |#1|)) (-15 -2529 (|#1| |#3|)) (-15 -4054 (|#1| |#4|)) (-15 -3448 (|#1| (-639 |#1|))) (-15 -3448 (|#1| (-639 |#2|))) (-15 -2554 (|#1| (-766) |#2|)) (-15 -2885 (|#1| (-639 (-639 |#2|)))) (-15 -2911 (|#1| (-766) (-766))) (-15 -1335 ((-112) |#1|)) (-15 -2952 ((-112) |#1|)) (-15 -1544 ((-112) |#1|)) (-15 -3220 ((-112) |#1|)) (-15 -4200 (|#2| |#1| (-562) (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) (-562))))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2911 (($ (-766) (-766)) 97)) (-2654 (($ $ $) 87)) (-2529 (($ |#2|) 91) (($ $) 90)) (-2952 (((-112) $) 99)) (-2188 (($ $ (-562) (-562)) 83)) (-2467 (($ $ (-562) (-562)) 82)) (-1593 (($ $ (-562) (-562) (-562) (-562)) 81)) (-3886 (($ $) 89)) (-3220 (((-112) $) 101)) (-4336 (((-112) $ (-766)) 8)) (-4212 (($ $ (-562) (-562) $) 80)) (-4200 ((|#1| $ (-562) (-562) |#1|) 44) (($ $ (-639 (-562)) (-639 (-562)) $) 84)) (-1928 (($ $ (-562) |#2|) 42)) (-3003 (($ $ (-562) |#3|) 41)) (-2554 (($ (-766) |#1|) 95)) (-1800 (($) 7 T CONST)) (-2522 (($ $) 67 (|has| |#1| (-306)))) (-3796 ((|#2| $ (-562)) 46)) (-2173 (((-766) $) 66 (|has| |#1| (-554)))) (-1505 ((|#1| $ (-562) (-562) |#1|) 43)) (-1420 ((|#1| $ (-562) (-562)) 48)) (-1720 (((-639 |#1|) $) 30)) (-3922 (((-766) $) 65 (|has| |#1| (-554)))) (-2318 (((-639 |#3|) $) 64 (|has| |#1| (-554)))) (-2699 (((-766) $) 51)) (-1458 (($ (-766) (-766) |#1|) 57)) (-2709 (((-766) $) 50)) (-3292 (((-112) $ (-766)) 9)) (-2280 ((|#1| $) 62 (|has| |#1| (-6 (-4404 "*"))))) (-2783 (((-562) $) 55)) (-4217 (((-562) $) 53)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4088 (((-562) $) 54)) (-2453 (((-562) $) 52)) (-2885 (($ (-639 (-639 |#1|))) 96)) (-1490 (($ (-1 |#1| |#1|) $) 34)) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-2824 (((-639 (-639 |#1|)) $) 86)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3494 (((-3 $ "failed") $) 61 (|has| |#1| (-362)))) (-2309 (($ $ $) 88)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-2716 (($ $ |#1|) 56)) (-1762 (((-3 $ "failed") $ |#1|) 69 (|has| |#1| (-554)))) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ (-562) (-562)) 49) ((|#1| $ (-562) (-562) |#1|) 47) (($ $ (-639 (-562)) (-639 (-562))) 85)) (-3448 (($ (-639 |#1|)) 94) (($ (-639 $)) 93)) (-1544 (((-112) $) 100)) (-3770 ((|#1| $) 63 (|has| |#1| (-6 (-4404 "*"))))) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-2211 ((|#3| $ (-562)) 45)) (-4054 (($ |#3|) 92) (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1335 (((-112) $) 98)) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-1859 (($ $ |#1|) 68 (|has| |#1| (-362)))) (-1848 (($ $ $) 78) (($ $) 77)) (-1835 (($ $ $) 79)) (** (($ $ (-766)) 70) (($ $ (-562)) 60 (|has| |#1| (-362)))) (* (($ $ $) 76) (($ |#1| $) 75) (($ $ |#1|) 74) (($ (-562) $) 73) ((|#3| $ |#3|) 72) ((|#2| |#2| $) 71)) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4312 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
+(((-674 |#1| |#2| |#3|) (-10 -7 (-15 -4312 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1092) (-1092) (-1092)) (T -674))
+((-4312 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)) (-5 *1 (-674 *5 *6 *2)))))
+(-10 -7 (-15 -4312 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
+((-4041 (((-112) $ $) NIL)) (-4084 (((-1206) $) 20)) (-4017 (((-639 (-1206)) $) 18)) (-2262 (($ (-639 (-1206)) (-1206)) 13)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 29) (($ (-1173)) NIL) (((-1173) $) NIL) (((-1206) $) 21) (($ (-1110)) 10)) (-1733 (((-112) $ $) NIL)))
+(((-675) (-13 (-1075) (-609 (-1206)) (-10 -8 (-15 -4053 ($ (-1110))) (-15 -2262 ($ (-639 (-1206)) (-1206))) (-15 -4017 ((-639 (-1206)) $)) (-15 -4084 ((-1206) $))))) (T -675))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1110)) (-5 *1 (-675)))) (-2262 (*1 *1 *2 *3) (-12 (-5 *2 (-639 (-1206))) (-5 *3 (-1206)) (-5 *1 (-675)))) (-4017 (*1 *2 *1) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-675)))) (-4084 (*1 *2 *1) (-12 (-5 *2 (-1206)) (-5 *1 (-675)))))
+(-13 (-1075) (-609 (-1206)) (-10 -8 (-15 -4053 ($ (-1110))) (-15 -2262 ($ (-639 (-1206)) (-1206))) (-15 -4017 ((-639 (-1206)) $)) (-15 -4084 ((-1206) $))))
+((-2598 (((-1 |#1| (-766) |#1|) (-1 |#1| (-766) |#1|)) 23)) (-2551 (((-1 |#1|) |#1|) 8)) (-1416 ((|#1| |#1|) 16)) (-2524 (((-639 |#1|) (-1 (-639 |#1|) (-639 |#1|)) (-562)) 15) ((|#1| (-1 |#1| |#1|)) 11)) (-4053 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-766)) 20)))
+(((-676 |#1|) (-10 -7 (-15 -2551 ((-1 |#1|) |#1|)) (-15 -4053 ((-1 |#1|) |#1|)) (-15 -2524 (|#1| (-1 |#1| |#1|))) (-15 -2524 ((-639 |#1|) (-1 (-639 |#1|) (-639 |#1|)) (-562))) (-15 -1416 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-766))) (-15 -2598 ((-1 |#1| (-766) |#1|) (-1 |#1| (-766) |#1|)))) (-1092)) (T -676))
+((-2598 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-766) *3)) (-4 *3 (-1092)) (-5 *1 (-676 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-766)) (-4 *4 (-1092)) (-5 *1 (-676 *4)))) (-1416 (*1 *2 *2) (-12 (-5 *1 (-676 *2)) (-4 *2 (-1092)))) (-2524 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-639 *5) (-639 *5))) (-5 *4 (-562)) (-5 *2 (-639 *5)) (-5 *1 (-676 *5)) (-4 *5 (-1092)))) (-2524 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-676 *2)) (-4 *2 (-1092)))) (-4053 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-676 *3)) (-4 *3 (-1092)))) (-2551 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-676 *3)) (-4 *3 (-1092)))))
+(-10 -7 (-15 -2551 ((-1 |#1|) |#1|)) (-15 -4053 ((-1 |#1|) |#1|)) (-15 -2524 (|#1| (-1 |#1| |#1|))) (-15 -2524 ((-639 |#1|) (-1 (-639 |#1|) (-639 |#1|)) (-562))) (-15 -1416 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-766))) (-15 -2598 ((-1 |#1| (-766) |#1|) (-1 |#1| (-766) |#1|))))
+((-1596 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-2966 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-1497 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-3542 (((-1 |#2| |#1|) |#2|) 11)))
+(((-677 |#1| |#2|) (-10 -7 (-15 -3542 ((-1 |#2| |#1|) |#2|)) (-15 -2966 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -1497 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -1596 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1092) (-1092)) (T -677))
+((-1596 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-5 *2 (-1 *5 *4)) (-5 *1 (-677 *4 *5)))) (-1497 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1092)) (-5 *2 (-1 *5 *4)) (-5 *1 (-677 *4 *5)) (-4 *4 (-1092)))) (-2966 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-5 *2 (-1 *5)) (-5 *1 (-677 *4 *5)))) (-3542 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-677 *4 *3)) (-4 *4 (-1092)) (-4 *3 (-1092)))))
+(-10 -7 (-15 -3542 ((-1 |#2| |#1|) |#2|)) (-15 -2966 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -1497 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -1596 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
+((-1935 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-1442 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-3281 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-3900 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-1405 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
+(((-678 |#1| |#2| |#3|) (-10 -7 (-15 -1442 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3281 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -3900 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -1405 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -1935 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1092) (-1092) (-1092)) (T -678))
+((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-1 *7 *5)) (-5 *1 (-678 *5 *6 *7)))) (-1935 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-678 *4 *5 *6)))) (-1405 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-678 *4 *5 *6)) (-4 *4 (-1092)))) (-3900 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1092)) (-4 *6 (-1092)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-678 *4 *5 *6)) (-4 *5 (-1092)))) (-3281 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-5 *2 (-1 *6 *5)) (-5 *1 (-678 *4 *5 *6)))) (-1442 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1092)) (-4 *4 (-1092)) (-4 *6 (-1092)) (-5 *2 (-1 *6 *5)) (-5 *1 (-678 *5 *4 *6)))))
+(-10 -7 (-15 -1442 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3281 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -3900 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -1405 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -1935 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
+((-1954 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-4152 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
+(((-679 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -4152 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -4152 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -1954 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-1044) (-372 |#1|) (-372 |#1|) (-681 |#1| |#2| |#3|) (-1044) (-372 |#5|) (-372 |#5|) (-681 |#5| |#6| |#7|)) (T -679))
+((-1954 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1044)) (-4 *2 (-1044)) (-4 *6 (-372 *5)) (-4 *7 (-372 *5)) (-4 *8 (-372 *2)) (-4 *9 (-372 *2)) (-5 *1 (-679 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-681 *5 *6 *7)) (-4 *10 (-681 *2 *8 *9)))) (-4152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-1044)) (-4 *8 (-1044)) (-4 *6 (-372 *5)) (-4 *7 (-372 *5)) (-4 *2 (-681 *8 *9 *10)) (-5 *1 (-679 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-681 *5 *6 *7)) (-4 *9 (-372 *8)) (-4 *10 (-372 *8)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1044)) (-4 *8 (-1044)) (-4 *6 (-372 *5)) (-4 *7 (-372 *5)) (-4 *2 (-681 *8 *9 *10)) (-5 *1 (-679 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-681 *5 *6 *7)) (-4 *9 (-372 *8)) (-4 *10 (-372 *8)))))
+(-10 -7 (-15 -4152 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -4152 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -1954 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
+((-2910 (($ (-766) (-766)) 33)) (-2955 (($ $ $) 56)) (-2309 (($ |#3|) 52) (($ $) 53)) (-4097 (((-112) $) 28)) (-1975 (($ $ (-562) (-562)) 58)) (-2842 (($ $ (-562) (-562)) 59)) (-2167 (($ $ (-562) (-562) (-562) (-562)) 63)) (-2058 (($ $) 54)) (-2819 (((-112) $) 14)) (-1980 (($ $ (-562) (-562) $) 64)) (-4200 ((|#2| $ (-562) (-562) |#2|) NIL) (($ $ (-639 (-562)) (-639 (-562)) $) 62)) (-4369 (($ (-766) |#2|) 39)) (-2884 (($ (-639 (-639 |#2|))) 37)) (-2247 (((-639 (-639 |#2|)) $) 57)) (-3713 (($ $ $) 55)) (-1762 (((-3 $ "failed") $ |#2|) 91)) (-2343 ((|#2| $ (-562) (-562)) NIL) ((|#2| $ (-562) (-562) |#2|) NIL) (($ $ (-639 (-562)) (-639 (-562))) 61)) (-3168 (($ (-639 |#2|)) 40) (($ (-639 $)) 42)) (-1752 (((-112) $) 24)) (-4053 (($ |#4|) 47) (((-857) $) NIL)) (-1996 (((-112) $) 30)) (-1859 (($ $ |#2|) 93)) (-1847 (($ $ $) 68) (($ $) 71)) (-1836 (($ $ $) 66)) (** (($ $ (-766)) 80) (($ $ (-562)) 96)) (* (($ $ $) 77) (($ |#2| $) 73) (($ $ |#2|) 74) (($ (-562) $) 76) ((|#4| $ |#4|) 84) ((|#3| |#3| $) 88)))
+(((-680 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4053 ((-857) |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 -1859 (|#1| |#1| |#2|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-766))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1836 (|#1| |#1| |#1|)) (-15 -1980 (|#1| |#1| (-562) (-562) |#1|)) (-15 -2167 (|#1| |#1| (-562) (-562) (-562) (-562))) (-15 -2842 (|#1| |#1| (-562) (-562))) (-15 -1975 (|#1| |#1| (-562) (-562))) (-15 -4200 (|#1| |#1| (-639 (-562)) (-639 (-562)) |#1|)) (-15 -2343 (|#1| |#1| (-639 (-562)) (-639 (-562)))) (-15 -2247 ((-639 (-639 |#2|)) |#1|)) (-15 -2955 (|#1| |#1| |#1|)) (-15 -3713 (|#1| |#1| |#1|)) (-15 -2058 (|#1| |#1|)) (-15 -2309 (|#1| |#1|)) (-15 -2309 (|#1| |#3|)) (-15 -4053 (|#1| |#4|)) (-15 -3168 (|#1| (-639 |#1|))) (-15 -3168 (|#1| (-639 |#2|))) (-15 -4369 (|#1| (-766) |#2|)) (-15 -2884 (|#1| (-639 (-639 |#2|)))) (-15 -2910 (|#1| (-766) (-766))) (-15 -1996 ((-112) |#1|)) (-15 -4097 ((-112) |#1|)) (-15 -1752 ((-112) |#1|)) (-15 -2819 ((-112) |#1|)) (-15 -4200 (|#2| |#1| (-562) (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) (-562)))) (-681 |#2| |#3| |#4|) (-1044) (-372 |#2|) (-372 |#2|)) (T -680))
+NIL
+(-10 -8 (-15 -4053 ((-857) |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 -1859 (|#1| |#1| |#2|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-766))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1836 (|#1| |#1| |#1|)) (-15 -1980 (|#1| |#1| (-562) (-562) |#1|)) (-15 -2167 (|#1| |#1| (-562) (-562) (-562) (-562))) (-15 -2842 (|#1| |#1| (-562) (-562))) (-15 -1975 (|#1| |#1| (-562) (-562))) (-15 -4200 (|#1| |#1| (-639 (-562)) (-639 (-562)) |#1|)) (-15 -2343 (|#1| |#1| (-639 (-562)) (-639 (-562)))) (-15 -2247 ((-639 (-639 |#2|)) |#1|)) (-15 -2955 (|#1| |#1| |#1|)) (-15 -3713 (|#1| |#1| |#1|)) (-15 -2058 (|#1| |#1|)) (-15 -2309 (|#1| |#1|)) (-15 -2309 (|#1| |#3|)) (-15 -4053 (|#1| |#4|)) (-15 -3168 (|#1| (-639 |#1|))) (-15 -3168 (|#1| (-639 |#2|))) (-15 -4369 (|#1| (-766) |#2|)) (-15 -2884 (|#1| (-639 (-639 |#2|)))) (-15 -2910 (|#1| (-766) (-766))) (-15 -1996 ((-112) |#1|)) (-15 -4097 ((-112) |#1|)) (-15 -1752 ((-112) |#1|)) (-15 -2819 ((-112) |#1|)) (-15 -4200 (|#2| |#1| (-562) (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) (-562))))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2910 (($ (-766) (-766)) 97)) (-2955 (($ $ $) 87)) (-2309 (($ |#2|) 91) (($ $) 90)) (-4097 (((-112) $) 99)) (-1975 (($ $ (-562) (-562)) 83)) (-2842 (($ $ (-562) (-562)) 82)) (-2167 (($ $ (-562) (-562) (-562) (-562)) 81)) (-2058 (($ $) 89)) (-2819 (((-112) $) 101)) (-3735 (((-112) $ (-766)) 8)) (-1980 (($ $ (-562) (-562) $) 80)) (-4200 ((|#1| $ (-562) (-562) |#1|) 44) (($ $ (-639 (-562)) (-639 (-562)) $) 84)) (-2267 (($ $ (-562) |#2|) 42)) (-3320 (($ $ (-562) |#3|) 41)) (-4369 (($ (-766) |#1|) 95)) (-3329 (($) 7 T CONST)) (-2239 (($ $) 67 (|has| |#1| (-306)))) (-3511 ((|#2| $ (-562)) 46)) (-2172 (((-766) $) 66 (|has| |#1| (-554)))) (-1507 ((|#1| $ (-562) (-562) |#1|) 43)) (-1420 ((|#1| $ (-562) (-562)) 48)) (-1720 (((-639 |#1|) $) 30)) (-4244 (((-766) $) 65 (|has| |#1| (-554)))) (-3821 (((-639 |#3|) $) 64 (|has| |#1| (-554)))) (-2698 (((-766) $) 51)) (-1458 (($ (-766) (-766) |#1|) 57)) (-2708 (((-766) $) 50)) (-4172 (((-112) $ (-766)) 9)) (-1622 ((|#1| $) 62 (|has| |#1| (-6 (-4405 "*"))))) (-1808 (((-562) $) 55)) (-2028 (((-562) $) 53)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-3269 (((-562) $) 54)) (-2727 (((-562) $) 52)) (-2884 (($ (-639 (-639 |#1|))) 96)) (-1491 (($ (-1 |#1| |#1|) $) 34)) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 40) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 39)) (-2247 (((-639 (-639 |#1|)) $) 86)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-2463 (((-3 $ "failed") $) 61 (|has| |#1| (-362)))) (-3713 (($ $ $) 88)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3510 (($ $ |#1|) 56)) (-1762 (((-3 $ "failed") $ |#1|) 69 (|has| |#1| (-554)))) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ (-562) (-562)) 49) ((|#1| $ (-562) (-562) |#1|) 47) (($ $ (-639 (-562)) (-639 (-562))) 85)) (-3168 (($ (-639 |#1|)) 94) (($ (-639 $)) 93)) (-1752 (((-112) $) 100)) (-3282 ((|#1| $) 63 (|has| |#1| (-6 (-4405 "*"))))) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-2208 ((|#3| $ (-562)) 45)) (-4053 (($ |#3|) 92) (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1996 (((-112) $) 98)) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-1859 (($ $ |#1|) 68 (|has| |#1| (-362)))) (-1847 (($ $ $) 78) (($ $) 77)) (-1836 (($ $ $) 79)) (** (($ $ (-766)) 70) (($ $ (-562)) 60 (|has| |#1| (-362)))) (* (($ $ $) 76) (($ |#1| $) 75) (($ $ |#1|) 74) (($ (-562) $) 73) ((|#3| $ |#3|) 72) ((|#2| |#2| $) 71)) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-681 |#1| |#2| |#3|) (-139) (-1044) (-372 |t#1|) (-372 |t#1|)) (T -681))
-((-3220 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-112)))) (-1544 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-112)))) (-2952 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-112)))) (-1335 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-112)))) (-2911 (*1 *1 *2 *2) (-12 (-5 *2 (-766)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-2885 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-2554 (*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-3448 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-3448 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-4054 (*1 *1 *2) (-12 (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *2)) (-4 *4 (-372 *3)) (-4 *2 (-372 *3)))) (-2529 (*1 *1 *2) (-12 (-4 *3 (-1044)) (-4 *1 (-681 *3 *2 *4)) (-4 *2 (-372 *3)) (-4 *4 (-372 *3)))) (-2529 (*1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-3886 (*1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-2309 (*1 *1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-2654 (*1 *1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-2824 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-639 (-639 *3))))) (-2343 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-639 (-562))) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-4200 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-639 (-562))) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-2188 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-2467 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-1593 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-4212 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-1835 (*1 *1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-1848 (*1 *1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-1848 (*1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-681 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *2 (-372 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-681 *3 *2 *4)) (-4 *3 (-1044)) (-4 *2 (-372 *3)) (-4 *4 (-372 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-1762 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (-4 *2 (-554)))) (-1859 (*1 *1 *1 *2) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (-4 *2 (-362)))) (-2522 (*1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (-4 *2 (-306)))) (-2173 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-4 *3 (-554)) (-5 *2 (-766)))) (-3922 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-4 *3 (-554)) (-5 *2 (-766)))) (-2318 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-4 *3 (-554)) (-5 *2 (-639 *5)))) (-3770 (*1 *2 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (|has| *2 (-6 (-4404 "*"))) (-4 *2 (-1044)))) (-2280 (*1 *2 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (|has| *2 (-6 (-4404 "*"))) (-4 *2 (-1044)))) (-3494 (*1 *1 *1) (|partial| -12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (-4 *2 (-362)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-4 *3 (-362)))))
-(-13 (-57 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4403) (-6 -4402) (-15 -3220 ((-112) $)) (-15 -1544 ((-112) $)) (-15 -2952 ((-112) $)) (-15 -1335 ((-112) $)) (-15 -2911 ($ (-766) (-766))) (-15 -2885 ($ (-639 (-639 |t#1|)))) (-15 -2554 ($ (-766) |t#1|)) (-15 -3448 ($ (-639 |t#1|))) (-15 -3448 ($ (-639 $))) (-15 -4054 ($ |t#3|)) (-15 -2529 ($ |t#2|)) (-15 -2529 ($ $)) (-15 -3886 ($ $)) (-15 -2309 ($ $ $)) (-15 -2654 ($ $ $)) (-15 -2824 ((-639 (-639 |t#1|)) $)) (-15 -2343 ($ $ (-639 (-562)) (-639 (-562)))) (-15 -4200 ($ $ (-639 (-562)) (-639 (-562)) $)) (-15 -2188 ($ $ (-562) (-562))) (-15 -2467 ($ $ (-562) (-562))) (-15 -1593 ($ $ (-562) (-562) (-562) (-562))) (-15 -4212 ($ $ (-562) (-562) $)) (-15 -1835 ($ $ $)) (-15 -1848 ($ $ $)) (-15 -1848 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-562) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-766))) (IF (|has| |t#1| (-554)) (-15 -1762 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-362)) (-15 -1859 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-306)) (-15 -2522 ($ $)) |%noBranch|) (IF (|has| |t#1| (-554)) (PROGN (-15 -2173 ((-766) $)) (-15 -3922 ((-766) $)) (-15 -2318 ((-639 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4404 "*"))) (PROGN (-15 -3770 (|t#1| $)) (-15 -2280 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-362)) (PROGN (-15 -3494 ((-3 $ "failed") $)) (-15 ** ($ $ (-562)))) |%noBranch|)))
+((-2819 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-112)))) (-1752 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-112)))) (-4097 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-112)))) (-1996 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-112)))) (-2910 (*1 *1 *2 *2) (-12 (-5 *2 (-766)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-2884 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-4369 (*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-3168 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-3168 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-4053 (*1 *1 *2) (-12 (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *2)) (-4 *4 (-372 *3)) (-4 *2 (-372 *3)))) (-2309 (*1 *1 *2) (-12 (-4 *3 (-1044)) (-4 *1 (-681 *3 *2 *4)) (-4 *2 (-372 *3)) (-4 *4 (-372 *3)))) (-2309 (*1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-2058 (*1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-3713 (*1 *1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-2955 (*1 *1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-2247 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-639 (-639 *3))))) (-2343 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-639 (-562))) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-4200 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-639 (-562))) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-1975 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-2842 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-2167 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-1980 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-1836 (*1 *1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-1847 (*1 *1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (-1847 (*1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-681 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *2 (-372 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-681 *3 *2 *4)) (-4 *3 (-1044)) (-4 *2 (-372 *3)) (-4 *4 (-372 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))) (-1762 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (-4 *2 (-554)))) (-1859 (*1 *1 *1 *2) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (-4 *2 (-362)))) (-2239 (*1 *1 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (-4 *2 (-306)))) (-2172 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-4 *3 (-554)) (-5 *2 (-766)))) (-4244 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-4 *3 (-554)) (-5 *2 (-766)))) (-3821 (*1 *2 *1) (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-4 *3 (-554)) (-5 *2 (-639 *5)))) (-3282 (*1 *2 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (|has| *2 (-6 (-4405 "*"))) (-4 *2 (-1044)))) (-1622 (*1 *2 *1) (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (|has| *2 (-6 (-4405 "*"))) (-4 *2 (-1044)))) (-2463 (*1 *1 *1) (|partial| -12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (-4 *2 (-362)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-4 *3 (-362)))))
+(-13 (-57 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4404) (-6 -4403) (-15 -2819 ((-112) $)) (-15 -1752 ((-112) $)) (-15 -4097 ((-112) $)) (-15 -1996 ((-112) $)) (-15 -2910 ($ (-766) (-766))) (-15 -2884 ($ (-639 (-639 |t#1|)))) (-15 -4369 ($ (-766) |t#1|)) (-15 -3168 ($ (-639 |t#1|))) (-15 -3168 ($ (-639 $))) (-15 -4053 ($ |t#3|)) (-15 -2309 ($ |t#2|)) (-15 -2309 ($ $)) (-15 -2058 ($ $)) (-15 -3713 ($ $ $)) (-15 -2955 ($ $ $)) (-15 -2247 ((-639 (-639 |t#1|)) $)) (-15 -2343 ($ $ (-639 (-562)) (-639 (-562)))) (-15 -4200 ($ $ (-639 (-562)) (-639 (-562)) $)) (-15 -1975 ($ $ (-562) (-562))) (-15 -2842 ($ $ (-562) (-562))) (-15 -2167 ($ $ (-562) (-562) (-562) (-562))) (-15 -1980 ($ $ (-562) (-562) $)) (-15 -1836 ($ $ $)) (-15 -1847 ($ $ $)) (-15 -1847 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-562) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-766))) (IF (|has| |t#1| (-554)) (-15 -1762 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-362)) (-15 -1859 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-306)) (-15 -2239 ($ $)) |%noBranch|) (IF (|has| |t#1| (-554)) (PROGN (-15 -2172 ((-766) $)) (-15 -4244 ((-766) $)) (-15 -3821 ((-639 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4405 "*"))) (PROGN (-15 -3282 (|t#1| $)) (-15 -1622 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-362)) (PROGN (-15 -2463 ((-3 $ "failed") $)) (-15 ** ($ $ (-562)))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-57 |#1| |#2| |#3|) . T) ((-1207) . T))
-((-2522 ((|#4| |#4|) 71 (|has| |#1| (-306)))) (-2173 (((-766) |#4|) 98 (|has| |#1| (-554)))) (-3922 (((-766) |#4|) 75 (|has| |#1| (-554)))) (-2318 (((-639 |#3|) |#4|) 82 (|has| |#1| (-554)))) (-3106 (((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|) 110 (|has| |#1| (-306)))) (-2280 ((|#1| |#4|) 34)) (-3585 (((-3 |#4| "failed") |#4|) 63 (|has| |#1| (-554)))) (-3494 (((-3 |#4| "failed") |#4|) 79 (|has| |#1| (-362)))) (-3432 ((|#4| |#4|) 67 (|has| |#1| (-554)))) (-2123 ((|#4| |#4| |#1| (-562) (-562)) 42)) (-2490 ((|#4| |#4| (-562) (-562)) 37)) (-3673 ((|#4| |#4| |#1| (-562) (-562)) 47)) (-3770 ((|#1| |#4|) 77)) (-1563 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 68 (|has| |#1| (-554)))))
-(((-682 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3770 (|#1| |#4|)) (-15 -2280 (|#1| |#4|)) (-15 -2490 (|#4| |#4| (-562) (-562))) (-15 -2123 (|#4| |#4| |#1| (-562) (-562))) (-15 -3673 (|#4| |#4| |#1| (-562) (-562))) (IF (|has| |#1| (-554)) (PROGN (-15 -2173 ((-766) |#4|)) (-15 -3922 ((-766) |#4|)) (-15 -2318 ((-639 |#3|) |#4|)) (-15 -3432 (|#4| |#4|)) (-15 -3585 ((-3 |#4| "failed") |#4|)) (-15 -1563 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-306)) (PROGN (-15 -2522 (|#4| |#4|)) (-15 -3106 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -3494 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-171) (-372 |#1|) (-372 |#1|) (-681 |#1| |#2| |#3|)) (T -682))
-((-3494 (*1 *2 *2) (|partial| -12 (-4 *3 (-362)) (-4 *3 (-171)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-3106 (*1 *2 *3 *3) (-12 (-4 *3 (-306)) (-4 *3 (-171)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-682 *3 *4 *5 *6)) (-4 *6 (-681 *3 *4 *5)))) (-2522 (*1 *2 *2) (-12 (-4 *3 (-306)) (-4 *3 (-171)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-1563 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-3585 (*1 *2 *2) (|partial| -12 (-4 *3 (-554)) (-4 *3 (-171)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-3432 (*1 *2 *2) (-12 (-4 *3 (-554)) (-4 *3 (-171)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-2318 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-639 *6)) (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-3922 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-766)) (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-2173 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-766)) (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-3673 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-562)) (-4 *3 (-171)) (-4 *5 (-372 *3)) (-4 *6 (-372 *3)) (-5 *1 (-682 *3 *5 *6 *2)) (-4 *2 (-681 *3 *5 *6)))) (-2123 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-562)) (-4 *3 (-171)) (-4 *5 (-372 *3)) (-4 *6 (-372 *3)) (-5 *1 (-682 *3 *5 *6 *2)) (-4 *2 (-681 *3 *5 *6)))) (-2490 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-562)) (-4 *4 (-171)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *1 (-682 *4 *5 *6 *2)) (-4 *2 (-681 *4 *5 *6)))) (-2280 (*1 *2 *3) (-12 (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-171)) (-5 *1 (-682 *2 *4 *5 *3)) (-4 *3 (-681 *2 *4 *5)))) (-3770 (*1 *2 *3) (-12 (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-171)) (-5 *1 (-682 *2 *4 *5 *3)) (-4 *3 (-681 *2 *4 *5)))))
-(-10 -7 (-15 -3770 (|#1| |#4|)) (-15 -2280 (|#1| |#4|)) (-15 -2490 (|#4| |#4| (-562) (-562))) (-15 -2123 (|#4| |#4| |#1| (-562) (-562))) (-15 -3673 (|#4| |#4| |#1| (-562) (-562))) (IF (|has| |#1| (-554)) (PROGN (-15 -2173 ((-766) |#4|)) (-15 -3922 ((-766) |#4|)) (-15 -2318 ((-639 |#3|) |#4|)) (-15 -3432 (|#4| |#4|)) (-15 -3585 ((-3 |#4| "failed") |#4|)) (-15 -1563 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-306)) (PROGN (-15 -2522 (|#4| |#4|)) (-15 -3106 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -3494 ((-3 |#4| "failed") |#4|)) |%noBranch|))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2911 (($ (-766) (-766)) 47)) (-2654 (($ $ $) NIL)) (-2529 (($ (-1256 |#1|)) NIL) (($ $) NIL)) (-2952 (((-112) $) NIL)) (-2188 (($ $ (-562) (-562)) 12)) (-2467 (($ $ (-562) (-562)) NIL)) (-1593 (($ $ (-562) (-562) (-562) (-562)) NIL)) (-3886 (($ $) NIL)) (-3220 (((-112) $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-4212 (($ $ (-562) (-562) $) NIL)) (-4200 ((|#1| $ (-562) (-562) |#1|) NIL) (($ $ (-639 (-562)) (-639 (-562)) $) NIL)) (-1928 (($ $ (-562) (-1256 |#1|)) NIL)) (-3003 (($ $ (-562) (-1256 |#1|)) NIL)) (-2554 (($ (-766) |#1|) 22)) (-1800 (($) NIL T CONST)) (-2522 (($ $) 31 (|has| |#1| (-306)))) (-3796 (((-1256 |#1|) $ (-562)) NIL)) (-2173 (((-766) $) 33 (|has| |#1| (-554)))) (-1505 ((|#1| $ (-562) (-562) |#1|) 51)) (-1420 ((|#1| $ (-562) (-562)) NIL)) (-1720 (((-639 |#1|) $) NIL)) (-3922 (((-766) $) 35 (|has| |#1| (-554)))) (-2318 (((-639 (-1256 |#1|)) $) 38 (|has| |#1| (-554)))) (-2699 (((-766) $) 20)) (-1458 (($ (-766) (-766) |#1|) 16)) (-2709 (((-766) $) 21)) (-3292 (((-112) $ (-766)) NIL)) (-2280 ((|#1| $) 29 (|has| |#1| (-6 (-4404 "*"))))) (-2783 (((-562) $) 9)) (-4217 (((-562) $) 10)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4088 (((-562) $) 11)) (-2453 (((-562) $) 48)) (-2885 (($ (-639 (-639 |#1|))) NIL)) (-1490 (($ (-1 |#1| |#1|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2824 (((-639 (-639 |#1|)) $) 60)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3494 (((-3 $ "failed") $) 45 (|has| |#1| (-362)))) (-2309 (($ $ $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2716 (($ $ |#1|) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ (-562) (-562)) NIL) ((|#1| $ (-562) (-562) |#1|) NIL) (($ $ (-639 (-562)) (-639 (-562))) NIL)) (-3448 (($ (-639 |#1|)) NIL) (($ (-639 $)) NIL) (($ (-1256 |#1|)) 52)) (-1544 (((-112) $) NIL)) (-3770 ((|#1| $) 27 (|has| |#1| (-6 (-4404 "*"))))) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4208 (((-535) $) 64 (|has| |#1| (-610 (-535))))) (-2211 (((-1256 |#1|) $ (-562)) NIL)) (-4054 (($ (-1256 |#1|)) NIL) (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1335 (((-112) $) NIL)) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $ $) NIL) (($ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-766)) 23) (($ $ (-562)) 46 (|has| |#1| (-362)))) (* (($ $ $) 13) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-562) $) NIL) (((-1256 |#1|) $ (-1256 |#1|)) NIL) (((-1256 |#1|) (-1256 |#1|) $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-683 |#1|) (-13 (-681 |#1| (-1256 |#1|) (-1256 |#1|)) (-10 -8 (-15 -3448 ($ (-1256 |#1|))) (IF (|has| |#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -3494 ((-3 $ "failed") $)) |%noBranch|))) (-1044)) (T -683))
-((-3494 (*1 *1 *1) (|partial| -12 (-5 *1 (-683 *2)) (-4 *2 (-362)) (-4 *2 (-1044)))) (-3448 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1044)) (-5 *1 (-683 *3)))))
-(-13 (-681 |#1| (-1256 |#1|) (-1256 |#1|)) (-10 -8 (-15 -3448 ($ (-1256 |#1|))) (IF (|has| |#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -3494 ((-3 $ "failed") $)) |%noBranch|)))
-((-1524 (((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|)) 25)) (-1965 (((-683 |#1|) (-683 |#1|) (-683 |#1|) |#1|) 21)) (-2915 (((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|) (-766)) 26)) (-4283 (((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|)) 14)) (-3779 (((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|)) 18) (((-683 |#1|) (-683 |#1|) (-683 |#1|)) 16)) (-2373 (((-683 |#1|) (-683 |#1|) |#1| (-683 |#1|)) 20)) (-2544 (((-683 |#1|) (-683 |#1|) (-683 |#1|)) 12)) (** (((-683 |#1|) (-683 |#1|) (-766)) 30)))
-(((-684 |#1|) (-10 -7 (-15 -2544 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -4283 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3779 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3779 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -2373 ((-683 |#1|) (-683 |#1|) |#1| (-683 |#1|))) (-15 -1965 ((-683 |#1|) (-683 |#1|) (-683 |#1|) |#1|)) (-15 -1524 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -2915 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|) (-766))) (-15 ** ((-683 |#1|) (-683 |#1|) (-766)))) (-1044)) (T -684))
-((** (*1 *2 *2 *3) (-12 (-5 *2 (-683 *4)) (-5 *3 (-766)) (-4 *4 (-1044)) (-5 *1 (-684 *4)))) (-2915 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-683 *4)) (-5 *3 (-766)) (-4 *4 (-1044)) (-5 *1 (-684 *4)))) (-1524 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))) (-1965 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))) (-2373 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))) (-3779 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))) (-3779 (*1 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))) (-4283 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))) (-2544 (*1 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
-(-10 -7 (-15 -2544 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -4283 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3779 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3779 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -2373 ((-683 |#1|) (-683 |#1|) |#1| (-683 |#1|))) (-15 -1965 ((-683 |#1|) (-683 |#1|) (-683 |#1|) |#1|)) (-15 -1524 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -2915 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|) (-766))) (-15 ** ((-683 |#1|) (-683 |#1|) (-766))))
-((-4048 (((-3 |#1| "failed") $) 17)) (-3961 ((|#1| $) NIL)) (-1918 (($) 7 T CONST)) (-4295 (($ |#1|) 8)) (-4054 (($ |#1|) 15) (((-857) $) 22)) (-2276 (((-112) $ (|[\|\|]| |#1|)) 13) (((-112) $ (|[\|\|]| -1918)) 11)) (-4247 ((|#1| $) 14)))
-(((-685 |#1|) (-13 (-1251) (-1033 |#1|) (-609 (-857)) (-10 -8 (-15 -4295 ($ |#1|)) (-15 -2276 ((-112) $ (|[\|\|]| |#1|))) (-15 -2276 ((-112) $ (|[\|\|]| -1918))) (-15 -4247 (|#1| $)) (-15 -1918 ($) -1497))) (-609 (-857))) (T -685))
-((-4295 (*1 *1 *2) (-12 (-5 *1 (-685 *2)) (-4 *2 (-609 (-857))))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-609 (-857))) (-5 *2 (-112)) (-5 *1 (-685 *4)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1918)) (-5 *2 (-112)) (-5 *1 (-685 *4)) (-4 *4 (-609 (-857))))) (-4247 (*1 *2 *1) (-12 (-5 *1 (-685 *2)) (-4 *2 (-609 (-857))))) (-1918 (*1 *1) (-12 (-5 *1 (-685 *2)) (-4 *2 (-609 (-857))))))
-(-13 (-1251) (-1033 |#1|) (-609 (-857)) (-10 -8 (-15 -4295 ($ |#1|)) (-15 -2276 ((-112) $ (|[\|\|]| |#1|))) (-15 -2276 ((-112) $ (|[\|\|]| -1918))) (-15 -4247 (|#1| $)) (-15 -1918 ($) -1497)))
-((-2371 ((|#2| |#2| |#4|) 25)) (-4326 (((-683 |#2|) |#3| |#4|) 31)) (-2078 (((-683 |#2|) |#2| |#4|) 30)) (-3969 (((-1256 |#2|) |#2| |#4|) 16)) (-3365 ((|#2| |#3| |#4|) 24)) (-4099 (((-683 |#2|) |#3| |#4| (-766) (-766)) 38)) (-3649 (((-683 |#2|) |#2| |#4| (-766)) 37)))
-(((-686 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3969 ((-1256 |#2|) |#2| |#4|)) (-15 -3365 (|#2| |#3| |#4|)) (-15 -2371 (|#2| |#2| |#4|)) (-15 -2078 ((-683 |#2|) |#2| |#4|)) (-15 -3649 ((-683 |#2|) |#2| |#4| (-766))) (-15 -4326 ((-683 |#2|) |#3| |#4|)) (-15 -4099 ((-683 |#2|) |#3| |#4| (-766) (-766)))) (-1092) (-895 |#1|) (-372 |#2|) (-13 (-372 |#1|) (-10 -7 (-6 -4402)))) (T -686))
-((-4099 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-766)) (-4 *6 (-1092)) (-4 *7 (-895 *6)) (-5 *2 (-683 *7)) (-5 *1 (-686 *6 *7 *3 *4)) (-4 *3 (-372 *7)) (-4 *4 (-13 (-372 *6) (-10 -7 (-6 -4402)))))) (-4326 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-4 *6 (-895 *5)) (-5 *2 (-683 *6)) (-5 *1 (-686 *5 *6 *3 *4)) (-4 *3 (-372 *6)) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4402)))))) (-3649 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-766)) (-4 *6 (-1092)) (-4 *3 (-895 *6)) (-5 *2 (-683 *3)) (-5 *1 (-686 *6 *3 *7 *4)) (-4 *7 (-372 *3)) (-4 *4 (-13 (-372 *6) (-10 -7 (-6 -4402)))))) (-2078 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-4 *3 (-895 *5)) (-5 *2 (-683 *3)) (-5 *1 (-686 *5 *3 *6 *4)) (-4 *6 (-372 *3)) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4402)))))) (-2371 (*1 *2 *2 *3) (-12 (-4 *4 (-1092)) (-4 *2 (-895 *4)) (-5 *1 (-686 *4 *2 *5 *3)) (-4 *5 (-372 *2)) (-4 *3 (-13 (-372 *4) (-10 -7 (-6 -4402)))))) (-3365 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-4 *2 (-895 *5)) (-5 *1 (-686 *5 *2 *3 *4)) (-4 *3 (-372 *2)) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4402)))))) (-3969 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-4 *3 (-895 *5)) (-5 *2 (-1256 *3)) (-5 *1 (-686 *5 *3 *6 *4)) (-4 *6 (-372 *3)) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4402)))))))
-(-10 -7 (-15 -3969 ((-1256 |#2|) |#2| |#4|)) (-15 -3365 (|#2| |#3| |#4|)) (-15 -2371 (|#2| |#2| |#4|)) (-15 -2078 ((-683 |#2|) |#2| |#4|)) (-15 -3649 ((-683 |#2|) |#2| |#4| (-766))) (-15 -4326 ((-683 |#2|) |#3| |#4|)) (-15 -4099 ((-683 |#2|) |#3| |#4| (-766) (-766))))
-((-4096 (((-2 (|:| |num| (-683 |#1|)) (|:| |den| |#1|)) (-683 |#2|)) 20)) (-1917 ((|#1| (-683 |#2|)) 9)) (-1471 (((-683 |#1|) (-683 |#2|)) 18)))
-(((-687 |#1| |#2|) (-10 -7 (-15 -1917 (|#1| (-683 |#2|))) (-15 -1471 ((-683 |#1|) (-683 |#2|))) (-15 -4096 ((-2 (|:| |num| (-683 |#1|)) (|:| |den| |#1|)) (-683 |#2|)))) (-554) (-987 |#1|)) (T -687))
-((-4096 (*1 *2 *3) (-12 (-5 *3 (-683 *5)) (-4 *5 (-987 *4)) (-4 *4 (-554)) (-5 *2 (-2 (|:| |num| (-683 *4)) (|:| |den| *4))) (-5 *1 (-687 *4 *5)))) (-1471 (*1 *2 *3) (-12 (-5 *3 (-683 *5)) (-4 *5 (-987 *4)) (-4 *4 (-554)) (-5 *2 (-683 *4)) (-5 *1 (-687 *4 *5)))) (-1917 (*1 *2 *3) (-12 (-5 *3 (-683 *4)) (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-687 *2 *4)))))
-(-10 -7 (-15 -1917 (|#1| (-683 |#2|))) (-15 -1471 ((-683 |#1|) (-683 |#2|))) (-15 -4096 ((-2 (|:| |num| (-683 |#1|)) (|:| |den| |#1|)) (-683 |#2|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-1636 (((-683 (-693))) NIL) (((-683 (-693)) (-1256 $)) NIL)) (-1748 (((-693) $) NIL)) (-2988 (($ $) NIL (|has| (-693) (-1192)))) (-4097 (($ $) NIL (|has| (-693) (-1192)))) (-3984 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-693) (-348)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-693) (-306)) (|has| (-693) (-904))))) (-2798 (($ $) NIL (-4037 (-12 (|has| (-693) (-306)) (|has| (-693) (-904))) (|has| (-693) (-362))))) (-2921 (((-417 $) $) NIL (-4037 (-12 (|has| (-693) (-306)) (|has| (-693) (-904))) (|has| (-693) (-362))))) (-1643 (($ $) NIL (-12 (|has| (-693) (-997)) (|has| (-693) (-1192))))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-693) (-306)) (|has| (-693) (-904))))) (-2569 (((-112) $ $) NIL (|has| (-693) (-306)))) (-1382 (((-766)) NIL (|has| (-693) (-367)))) (-4207 (($ $) NIL (|has| (-693) (-1192)))) (-4074 (($ $) NIL (|has| (-693) (-1192)))) (-3014 (($ $) NIL (|has| (-693) (-1192)))) (-4119 (($ $) NIL (|has| (-693) (-1192)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-693) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-693) (-1033 (-406 (-562)))))) (-3961 (((-562) $) NIL) (((-693) $) NIL) (((-406 (-562)) $) NIL (|has| (-693) (-1033 (-406 (-562)))))) (-4018 (($ (-1256 (-693))) NIL) (($ (-1256 (-693)) (-1256 $)) NIL)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-693) (-348)))) (-1811 (($ $ $) NIL (|has| (-693) (-306)))) (-1958 (((-683 (-693)) $) NIL) (((-683 (-693)) $ (-1256 $)) NIL)) (-2406 (((-683 (-693)) (-683 $)) NIL) (((-2 (|:| -1545 (-683 (-693))) (|:| |vec| (-1256 (-693)))) (-683 $) (-1256 $)) NIL) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-693) (-635 (-562)))) (((-683 (-562)) (-683 $)) NIL (|has| (-693) (-635 (-562))))) (-1955 (((-3 $ "failed") (-406 (-1164 (-693)))) NIL (|has| (-693) (-362))) (($ (-1164 (-693))) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1657 (((-693) $) 29)) (-1726 (((-3 (-406 (-562)) "failed") $) NIL (|has| (-693) (-544)))) (-3035 (((-112) $) NIL (|has| (-693) (-544)))) (-1291 (((-406 (-562)) $) NIL (|has| (-693) (-544)))) (-2173 (((-916)) NIL)) (-1448 (($) NIL (|has| (-693) (-367)))) (-1787 (($ $ $) NIL (|has| (-693) (-306)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| (-693) (-306)))) (-3529 (($) NIL (|has| (-693) (-348)))) (-1322 (((-112) $) NIL (|has| (-693) (-348)))) (-3589 (($ $) NIL (|has| (-693) (-348))) (($ $ (-766)) NIL (|has| (-693) (-348)))) (-2717 (((-112) $) NIL (-4037 (-12 (|has| (-693) (-306)) (|has| (-693) (-904))) (|has| (-693) (-362))))) (-2362 (((-2 (|:| |r| (-693)) (|:| |phi| (-693))) $) NIL (-12 (|has| (-693) (-1053)) (|has| (-693) (-1192))))) (-4100 (($) NIL (|has| (-693) (-1192)))) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-693) (-881 (-378)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-693) (-881 (-562))))) (-1900 (((-828 (-916)) $) NIL (|has| (-693) (-348))) (((-916) $) NIL (|has| (-693) (-348)))) (-1957 (((-112) $) NIL)) (-1891 (($ $ (-562)) NIL (-12 (|has| (-693) (-997)) (|has| (-693) (-1192))))) (-2247 (((-693) $) NIL)) (-3699 (((-3 $ "failed") $) NIL (|has| (-693) (-348)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| (-693) (-306)))) (-1565 (((-1164 (-693)) $) NIL (|has| (-693) (-362)))) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 (-693) (-693)) $) NIL)) (-1999 (((-916) $) NIL (|has| (-693) (-367)))) (-4365 (($ $) NIL (|has| (-693) (-1192)))) (-1943 (((-1164 (-693)) $) NIL)) (-1564 (($ (-639 $)) NIL (|has| (-693) (-306))) (($ $ $) NIL (|has| (-693) (-306)))) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| (-693) (-362)))) (-3729 (($) NIL (|has| (-693) (-348)) CONST)) (-2466 (($ (-916)) NIL (|has| (-693) (-367)))) (-2112 (($) NIL)) (-1670 (((-693) $) 31)) (-1709 (((-1112) $) NIL)) (-3148 (($) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| (-693) (-306)))) (-1606 (($ (-639 $)) NIL (|has| (-693) (-306))) (($ $ $) NIL (|has| (-693) (-306)))) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL (|has| (-693) (-348)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-693) (-306)) (|has| (-693) (-904))))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-693) (-306)) (|has| (-693) (-904))))) (-1635 (((-417 $) $) NIL (-4037 (-12 (|has| (-693) (-306)) (|has| (-693) (-904))) (|has| (-693) (-362))))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-693) (-306))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| (-693) (-306)))) (-1762 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-693)) NIL (|has| (-693) (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| (-693) (-306)))) (-3430 (($ $) NIL (|has| (-693) (-1192)))) (-1433 (($ $ (-1168) (-693)) NIL (|has| (-693) (-513 (-1168) (-693)))) (($ $ (-639 (-1168)) (-639 (-693))) NIL (|has| (-693) (-513 (-1168) (-693)))) (($ $ (-639 (-293 (-693)))) NIL (|has| (-693) (-308 (-693)))) (($ $ (-293 (-693))) NIL (|has| (-693) (-308 (-693)))) (($ $ (-693) (-693)) NIL (|has| (-693) (-308 (-693)))) (($ $ (-639 (-693)) (-639 (-693))) NIL (|has| (-693) (-308 (-693))))) (-1577 (((-766) $) NIL (|has| (-693) (-306)))) (-2343 (($ $ (-693)) NIL (|has| (-693) (-285 (-693) (-693))))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| (-693) (-306)))) (-2455 (((-693)) NIL) (((-693) (-1256 $)) NIL)) (-3362 (((-3 (-766) "failed") $ $) NIL (|has| (-693) (-348))) (((-766) $) NIL (|has| (-693) (-348)))) (-4029 (($ $ (-1 (-693) (-693))) NIL) (($ $ (-1 (-693) (-693)) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-1168)) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-766)) NIL (|has| (-693) (-232))) (($ $) NIL (|has| (-693) (-232)))) (-3187 (((-683 (-693)) (-1256 $) (-1 (-693) (-693))) NIL (|has| (-693) (-362)))) (-2096 (((-1164 (-693))) NIL)) (-3023 (($ $) NIL (|has| (-693) (-1192)))) (-4130 (($ $) NIL (|has| (-693) (-1192)))) (-2283 (($) NIL (|has| (-693) (-348)))) (-3001 (($ $) NIL (|has| (-693) (-1192)))) (-4108 (($ $) NIL (|has| (-693) (-1192)))) (-2978 (($ $) NIL (|has| (-693) (-1192)))) (-4087 (($ $) NIL (|has| (-693) (-1192)))) (-3593 (((-683 (-693)) (-1256 $)) NIL) (((-1256 (-693)) $) NIL) (((-683 (-693)) (-1256 $) (-1256 $)) NIL) (((-1256 (-693)) $ (-1256 $)) NIL)) (-4208 (((-535) $) NIL (|has| (-693) (-610 (-535)))) (((-168 (-224)) $) NIL (|has| (-693) (-1017))) (((-168 (-378)) $) NIL (|has| (-693) (-1017))) (((-887 (-378)) $) NIL (|has| (-693) (-610 (-887 (-378))))) (((-887 (-562)) $) NIL (|has| (-693) (-610 (-887 (-562))))) (($ (-1164 (-693))) NIL) (((-1164 (-693)) $) NIL) (($ (-1256 (-693))) NIL) (((-1256 (-693)) $) NIL)) (-3665 (($ $) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-4037 (-12 (|has| (-693) (-306)) (|has| $ (-144)) (|has| (-693) (-904))) (|has| (-693) (-348))))) (-1418 (($ (-693) (-693)) 12)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-562)) NIL) (($ (-693)) NIL) (($ (-168 (-378))) 13) (($ (-168 (-562))) 19) (($ (-168 (-693))) 28) (($ (-168 (-695))) 25) (((-168 (-378)) $) 33) (($ (-406 (-562))) NIL (-4037 (|has| (-693) (-1033 (-406 (-562)))) (|has| (-693) (-362))))) (-2805 (($ $) NIL (|has| (-693) (-348))) (((-3 $ "failed") $) NIL (-4037 (-12 (|has| (-693) (-306)) (|has| $ (-144)) (|has| (-693) (-904))) (|has| (-693) (-144))))) (-3376 (((-1164 (-693)) $) NIL)) (-2579 (((-766)) NIL)) (-3928 (((-1256 $)) NIL)) (-3055 (($ $) NIL (|has| (-693) (-1192)))) (-4165 (($ $) NIL (|has| (-693) (-1192)))) (-2922 (((-112) $ $) NIL)) (-3033 (($ $) NIL (|has| (-693) (-1192)))) (-4138 (($ $) NIL (|has| (-693) (-1192)))) (-3078 (($ $) NIL (|has| (-693) (-1192)))) (-4182 (($ $) NIL (|has| (-693) (-1192)))) (-2828 (((-693) $) NIL (|has| (-693) (-1192)))) (-1566 (($ $) NIL (|has| (-693) (-1192)))) (-4195 (($ $) NIL (|has| (-693) (-1192)))) (-3066 (($ $) NIL (|has| (-693) (-1192)))) (-4174 (($ $) NIL (|has| (-693) (-1192)))) (-3044 (($ $) NIL (|has| (-693) (-1192)))) (-4151 (($ $) NIL (|has| (-693) (-1192)))) (-3526 (($ $) NIL (|has| (-693) (-1053)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-1 (-693) (-693))) NIL) (($ $ (-1 (-693) (-693)) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-1168)) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-766)) NIL (|has| (-693) (-232))) (($ $) NIL (|has| (-693) (-232)))) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL (|has| (-693) (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ $) NIL (|has| (-693) (-1192))) (($ $ (-406 (-562))) NIL (-12 (|has| (-693) (-997)) (|has| (-693) (-1192)))) (($ $ (-562)) NIL (|has| (-693) (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ (-693) $) NIL) (($ $ (-693)) NIL) (($ (-406 (-562)) $) NIL (|has| (-693) (-362))) (($ $ (-406 (-562))) NIL (|has| (-693) (-362)))))
-(((-688) (-13 (-386) (-165 (-693)) (-10 -8 (-15 -4054 ($ (-168 (-378)))) (-15 -4054 ($ (-168 (-562)))) (-15 -4054 ($ (-168 (-693)))) (-15 -4054 ($ (-168 (-695)))) (-15 -4054 ((-168 (-378)) $))))) (T -688))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-168 (-378))) (-5 *1 (-688)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-168 (-562))) (-5 *1 (-688)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-168 (-693))) (-5 *1 (-688)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-168 (-695))) (-5 *1 (-688)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-168 (-378))) (-5 *1 (-688)))))
-(-13 (-386) (-165 (-693)) (-10 -8 (-15 -4054 ($ (-168 (-378)))) (-15 -4054 ($ (-168 (-562)))) (-15 -4054 ($ (-168 (-693)))) (-15 -4054 ($ (-168 (-695)))) (-15 -4054 ((-168 (-378)) $))))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) 8)) (-3111 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-4354 (($ $) 62)) (-1459 (($ $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4000 (($ |#1| $) 47 (|has| $ (-6 -4402))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4402)))) (-1475 (($ |#1| $) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4402)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3262 ((|#1| $) 39)) (-4300 (($ |#1| $) 40) (($ |#1| $ (-766)) 63)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-1904 ((|#1| $) 41)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2671 (((-639 (-2 (|:| -2694 |#1|) (|:| -1723 (-766)))) $) 61)) (-3564 (($) 49) (($ (-639 |#1|)) 48)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 50)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1932 (($ (-639 |#1|)) 42)) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-2239 ((|#4| |#4|) 71 (|has| |#1| (-306)))) (-2172 (((-766) |#4|) 98 (|has| |#1| (-554)))) (-4244 (((-766) |#4|) 75 (|has| |#1| (-554)))) (-3821 (((-639 |#3|) |#4|) 82 (|has| |#1| (-554)))) (-2925 (((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|) 110 (|has| |#1| (-306)))) (-1622 ((|#1| |#4|) 34)) (-2144 (((-3 |#4| "failed") |#4|) 63 (|has| |#1| (-554)))) (-2463 (((-3 |#4| "failed") |#4|) 79 (|has| |#1| (-362)))) (-3010 ((|#4| |#4|) 67 (|has| |#1| (-554)))) (-2510 ((|#4| |#4| |#1| (-562) (-562)) 42)) (-1907 ((|#4| |#4| (-562) (-562)) 37)) (-3570 ((|#4| |#4| |#1| (-562) (-562)) 47)) (-3282 ((|#1| |#4|) 77)) (-1926 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 68 (|has| |#1| (-554)))))
+(((-682 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3282 (|#1| |#4|)) (-15 -1622 (|#1| |#4|)) (-15 -1907 (|#4| |#4| (-562) (-562))) (-15 -2510 (|#4| |#4| |#1| (-562) (-562))) (-15 -3570 (|#4| |#4| |#1| (-562) (-562))) (IF (|has| |#1| (-554)) (PROGN (-15 -2172 ((-766) |#4|)) (-15 -4244 ((-766) |#4|)) (-15 -3821 ((-639 |#3|) |#4|)) (-15 -3010 (|#4| |#4|)) (-15 -2144 ((-3 |#4| "failed") |#4|)) (-15 -1926 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-306)) (PROGN (-15 -2239 (|#4| |#4|)) (-15 -2925 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -2463 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-171) (-372 |#1|) (-372 |#1|) (-681 |#1| |#2| |#3|)) (T -682))
+((-2463 (*1 *2 *2) (|partial| -12 (-4 *3 (-362)) (-4 *3 (-171)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-2925 (*1 *2 *3 *3) (-12 (-4 *3 (-306)) (-4 *3 (-171)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-682 *3 *4 *5 *6)) (-4 *6 (-681 *3 *4 *5)))) (-2239 (*1 *2 *2) (-12 (-4 *3 (-306)) (-4 *3 (-171)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-1926 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-2144 (*1 *2 *2) (|partial| -12 (-4 *3 (-554)) (-4 *3 (-171)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-3010 (*1 *2 *2) (-12 (-4 *3 (-554)) (-4 *3 (-171)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-3821 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-639 *6)) (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-4244 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-766)) (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-2172 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-766)) (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-3570 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-562)) (-4 *3 (-171)) (-4 *5 (-372 *3)) (-4 *6 (-372 *3)) (-5 *1 (-682 *3 *5 *6 *2)) (-4 *2 (-681 *3 *5 *6)))) (-2510 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-562)) (-4 *3 (-171)) (-4 *5 (-372 *3)) (-4 *6 (-372 *3)) (-5 *1 (-682 *3 *5 *6 *2)) (-4 *2 (-681 *3 *5 *6)))) (-1907 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-562)) (-4 *4 (-171)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *1 (-682 *4 *5 *6 *2)) (-4 *2 (-681 *4 *5 *6)))) (-1622 (*1 *2 *3) (-12 (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-171)) (-5 *1 (-682 *2 *4 *5 *3)) (-4 *3 (-681 *2 *4 *5)))) (-3282 (*1 *2 *3) (-12 (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-171)) (-5 *1 (-682 *2 *4 *5 *3)) (-4 *3 (-681 *2 *4 *5)))))
+(-10 -7 (-15 -3282 (|#1| |#4|)) (-15 -1622 (|#1| |#4|)) (-15 -1907 (|#4| |#4| (-562) (-562))) (-15 -2510 (|#4| |#4| |#1| (-562) (-562))) (-15 -3570 (|#4| |#4| |#1| (-562) (-562))) (IF (|has| |#1| (-554)) (PROGN (-15 -2172 ((-766) |#4|)) (-15 -4244 ((-766) |#4|)) (-15 -3821 ((-639 |#3|) |#4|)) (-15 -3010 (|#4| |#4|)) (-15 -2144 ((-3 |#4| "failed") |#4|)) (-15 -1926 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-306)) (PROGN (-15 -2239 (|#4| |#4|)) (-15 -2925 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -2463 ((-3 |#4| "failed") |#4|)) |%noBranch|))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2910 (($ (-766) (-766)) 47)) (-2955 (($ $ $) NIL)) (-2309 (($ (-1256 |#1|)) NIL) (($ $) NIL)) (-4097 (((-112) $) NIL)) (-1975 (($ $ (-562) (-562)) 12)) (-2842 (($ $ (-562) (-562)) NIL)) (-2167 (($ $ (-562) (-562) (-562) (-562)) NIL)) (-2058 (($ $) NIL)) (-2819 (((-112) $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-1980 (($ $ (-562) (-562) $) NIL)) (-4200 ((|#1| $ (-562) (-562) |#1|) NIL) (($ $ (-639 (-562)) (-639 (-562)) $) NIL)) (-2267 (($ $ (-562) (-1256 |#1|)) NIL)) (-3320 (($ $ (-562) (-1256 |#1|)) NIL)) (-4369 (($ (-766) |#1|) 22)) (-3329 (($) NIL T CONST)) (-2239 (($ $) 31 (|has| |#1| (-306)))) (-3511 (((-1256 |#1|) $ (-562)) NIL)) (-2172 (((-766) $) 33 (|has| |#1| (-554)))) (-1507 ((|#1| $ (-562) (-562) |#1|) 51)) (-1420 ((|#1| $ (-562) (-562)) NIL)) (-1720 (((-639 |#1|) $) NIL)) (-4244 (((-766) $) 35 (|has| |#1| (-554)))) (-3821 (((-639 (-1256 |#1|)) $) 38 (|has| |#1| (-554)))) (-2698 (((-766) $) 20)) (-1458 (($ (-766) (-766) |#1|) 16)) (-2708 (((-766) $) 21)) (-4172 (((-112) $ (-766)) NIL)) (-1622 ((|#1| $) 29 (|has| |#1| (-6 (-4405 "*"))))) (-1808 (((-562) $) 9)) (-2028 (((-562) $) 10)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3269 (((-562) $) 11)) (-2727 (((-562) $) 48)) (-2884 (($ (-639 (-639 |#1|))) NIL)) (-1491 (($ (-1 |#1| |#1|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2247 (((-639 (-639 |#1|)) $) 60)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-2463 (((-3 $ "failed") $) 45 (|has| |#1| (-362)))) (-3713 (($ $ $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3510 (($ $ |#1|) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ (-562) (-562)) NIL) ((|#1| $ (-562) (-562) |#1|) NIL) (($ $ (-639 (-562)) (-639 (-562))) NIL)) (-3168 (($ (-639 |#1|)) NIL) (($ (-639 $)) NIL) (($ (-1256 |#1|)) 52)) (-1752 (((-112) $) NIL)) (-3282 ((|#1| $) 27 (|has| |#1| (-6 (-4405 "*"))))) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4208 (((-535) $) 64 (|has| |#1| (-610 (-535))))) (-2208 (((-1256 |#1|) $ (-562)) NIL)) (-4053 (($ (-1256 |#1|)) NIL) (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1996 (((-112) $) NIL)) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $ $) NIL) (($ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-766)) 23) (($ $ (-562)) 46 (|has| |#1| (-362)))) (* (($ $ $) 13) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-562) $) NIL) (((-1256 |#1|) $ (-1256 |#1|)) NIL) (((-1256 |#1|) (-1256 |#1|) $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-683 |#1|) (-13 (-681 |#1| (-1256 |#1|) (-1256 |#1|)) (-10 -8 (-15 -3168 ($ (-1256 |#1|))) (IF (|has| |#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -2463 ((-3 $ "failed") $)) |%noBranch|))) (-1044)) (T -683))
+((-2463 (*1 *1 *1) (|partial| -12 (-5 *1 (-683 *2)) (-4 *2 (-362)) (-4 *2 (-1044)))) (-3168 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1044)) (-5 *1 (-683 *3)))))
+(-13 (-681 |#1| (-1256 |#1|) (-1256 |#1|)) (-10 -8 (-15 -3168 ($ (-1256 |#1|))) (IF (|has| |#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -2463 ((-3 $ "failed") $)) |%noBranch|)))
+((-2769 (((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|)) 25)) (-1350 (((-683 |#1|) (-683 |#1|) (-683 |#1|) |#1|) 21)) (-3717 (((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|) (-766)) 26)) (-1363 (((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|)) 14)) (-3363 (((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|)) 18) (((-683 |#1|) (-683 |#1|) (-683 |#1|)) 16)) (-3106 (((-683 |#1|) (-683 |#1|) |#1| (-683 |#1|)) 20)) (-4267 (((-683 |#1|) (-683 |#1|) (-683 |#1|)) 12)) (** (((-683 |#1|) (-683 |#1|) (-766)) 30)))
+(((-684 |#1|) (-10 -7 (-15 -4267 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -1363 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3363 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3363 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3106 ((-683 |#1|) (-683 |#1|) |#1| (-683 |#1|))) (-15 -1350 ((-683 |#1|) (-683 |#1|) (-683 |#1|) |#1|)) (-15 -2769 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3717 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|) (-766))) (-15 ** ((-683 |#1|) (-683 |#1|) (-766)))) (-1044)) (T -684))
+((** (*1 *2 *2 *3) (-12 (-5 *2 (-683 *4)) (-5 *3 (-766)) (-4 *4 (-1044)) (-5 *1 (-684 *4)))) (-3717 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-683 *4)) (-5 *3 (-766)) (-4 *4 (-1044)) (-5 *1 (-684 *4)))) (-2769 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))) (-1350 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))) (-3106 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))) (-3363 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))) (-3363 (*1 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))) (-1363 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))) (-4267 (*1 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
+(-10 -7 (-15 -4267 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -1363 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3363 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3363 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3106 ((-683 |#1|) (-683 |#1|) |#1| (-683 |#1|))) (-15 -1350 ((-683 |#1|) (-683 |#1|) (-683 |#1|) |#1|)) (-15 -2769 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -3717 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|) (-683 |#1|) (-766))) (-15 ** ((-683 |#1|) (-683 |#1|) (-766))))
+((-4048 (((-3 |#1| "failed") $) 17)) (-3960 ((|#1| $) NIL)) (-1918 (($) 7 T CONST)) (-1520 (($ |#1|) 8)) (-4053 (($ |#1|) 15) (((-857) $) 22)) (-2276 (((-112) $ (|[\|\|]| |#1|)) 13) (((-112) $ (|[\|\|]| -1918)) 11)) (-4248 ((|#1| $) 14)))
+(((-685 |#1|) (-13 (-1251) (-1033 |#1|) (-609 (-857)) (-10 -8 (-15 -1520 ($ |#1|)) (-15 -2276 ((-112) $ (|[\|\|]| |#1|))) (-15 -2276 ((-112) $ (|[\|\|]| -1918))) (-15 -4248 (|#1| $)) (-15 -1918 ($) -1497))) (-609 (-857))) (T -685))
+((-1520 (*1 *1 *2) (-12 (-5 *1 (-685 *2)) (-4 *2 (-609 (-857))))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-609 (-857))) (-5 *2 (-112)) (-5 *1 (-685 *4)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1918)) (-5 *2 (-112)) (-5 *1 (-685 *4)) (-4 *4 (-609 (-857))))) (-4248 (*1 *2 *1) (-12 (-5 *1 (-685 *2)) (-4 *2 (-609 (-857))))) (-1918 (*1 *1) (-12 (-5 *1 (-685 *2)) (-4 *2 (-609 (-857))))))
+(-13 (-1251) (-1033 |#1|) (-609 (-857)) (-10 -8 (-15 -1520 ($ |#1|)) (-15 -2276 ((-112) $ (|[\|\|]| |#1|))) (-15 -2276 ((-112) $ (|[\|\|]| -1918))) (-15 -4248 (|#1| $)) (-15 -1918 ($) -1497)))
+((-3096 ((|#2| |#2| |#4|) 25)) (-3648 (((-683 |#2|) |#3| |#4|) 31)) (-3183 (((-683 |#2|) |#2| |#4|) 30)) (-1613 (((-1256 |#2|) |#2| |#4|) 16)) (-3566 ((|#2| |#3| |#4|) 24)) (-3378 (((-683 |#2|) |#3| |#4| (-766) (-766)) 38)) (-1476 (((-683 |#2|) |#2| |#4| (-766)) 37)))
+(((-686 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1613 ((-1256 |#2|) |#2| |#4|)) (-15 -3566 (|#2| |#3| |#4|)) (-15 -3096 (|#2| |#2| |#4|)) (-15 -3183 ((-683 |#2|) |#2| |#4|)) (-15 -1476 ((-683 |#2|) |#2| |#4| (-766))) (-15 -3648 ((-683 |#2|) |#3| |#4|)) (-15 -3378 ((-683 |#2|) |#3| |#4| (-766) (-766)))) (-1092) (-895 |#1|) (-372 |#2|) (-13 (-372 |#1|) (-10 -7 (-6 -4403)))) (T -686))
+((-3378 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-766)) (-4 *6 (-1092)) (-4 *7 (-895 *6)) (-5 *2 (-683 *7)) (-5 *1 (-686 *6 *7 *3 *4)) (-4 *3 (-372 *7)) (-4 *4 (-13 (-372 *6) (-10 -7 (-6 -4403)))))) (-3648 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-4 *6 (-895 *5)) (-5 *2 (-683 *6)) (-5 *1 (-686 *5 *6 *3 *4)) (-4 *3 (-372 *6)) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))))) (-1476 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-766)) (-4 *6 (-1092)) (-4 *3 (-895 *6)) (-5 *2 (-683 *3)) (-5 *1 (-686 *6 *3 *7 *4)) (-4 *7 (-372 *3)) (-4 *4 (-13 (-372 *6) (-10 -7 (-6 -4403)))))) (-3183 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-4 *3 (-895 *5)) (-5 *2 (-683 *3)) (-5 *1 (-686 *5 *3 *6 *4)) (-4 *6 (-372 *3)) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))))) (-3096 (*1 *2 *2 *3) (-12 (-4 *4 (-1092)) (-4 *2 (-895 *4)) (-5 *1 (-686 *4 *2 *5 *3)) (-4 *5 (-372 *2)) (-4 *3 (-13 (-372 *4) (-10 -7 (-6 -4403)))))) (-3566 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-4 *2 (-895 *5)) (-5 *1 (-686 *5 *2 *3 *4)) (-4 *3 (-372 *2)) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))))) (-1613 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-4 *3 (-895 *5)) (-5 *2 (-1256 *3)) (-5 *1 (-686 *5 *3 *6 *4)) (-4 *6 (-372 *3)) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))))))
+(-10 -7 (-15 -1613 ((-1256 |#2|) |#2| |#4|)) (-15 -3566 (|#2| |#3| |#4|)) (-15 -3096 (|#2| |#2| |#4|)) (-15 -3183 ((-683 |#2|) |#2| |#4|)) (-15 -1476 ((-683 |#2|) |#2| |#4| (-766))) (-15 -3648 ((-683 |#2|) |#3| |#4|)) (-15 -3378 ((-683 |#2|) |#3| |#4| (-766) (-766))))
+((-3358 (((-2 (|:| |num| (-683 |#1|)) (|:| |den| |#1|)) (-683 |#2|)) 20)) (-2162 ((|#1| (-683 |#2|)) 9)) (-2414 (((-683 |#1|) (-683 |#2|)) 18)))
+(((-687 |#1| |#2|) (-10 -7 (-15 -2162 (|#1| (-683 |#2|))) (-15 -2414 ((-683 |#1|) (-683 |#2|))) (-15 -3358 ((-2 (|:| |num| (-683 |#1|)) (|:| |den| |#1|)) (-683 |#2|)))) (-554) (-987 |#1|)) (T -687))
+((-3358 (*1 *2 *3) (-12 (-5 *3 (-683 *5)) (-4 *5 (-987 *4)) (-4 *4 (-554)) (-5 *2 (-2 (|:| |num| (-683 *4)) (|:| |den| *4))) (-5 *1 (-687 *4 *5)))) (-2414 (*1 *2 *3) (-12 (-5 *3 (-683 *5)) (-4 *5 (-987 *4)) (-4 *4 (-554)) (-5 *2 (-683 *4)) (-5 *1 (-687 *4 *5)))) (-2162 (*1 *2 *3) (-12 (-5 *3 (-683 *4)) (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-687 *2 *4)))))
+(-10 -7 (-15 -2162 (|#1| (-683 |#2|))) (-15 -2414 ((-683 |#1|) (-683 |#2|))) (-15 -3358 ((-2 (|:| |num| (-683 |#1|)) (|:| |den| |#1|)) (-683 |#2|))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-4342 (((-683 (-693))) NIL) (((-683 (-693)) (-1256 $)) NIL)) (-1748 (((-693) $) NIL)) (-2987 (($ $) NIL (|has| (-693) (-1192)))) (-4098 (($ $) NIL (|has| (-693) (-1192)))) (-1755 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-693) (-348)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-693) (-306)) (|has| (-693) (-904))))) (-1977 (($ $) NIL (-4037 (-12 (|has| (-693) (-306)) (|has| (-693) (-904))) (|has| (-693) (-362))))) (-3788 (((-417 $) $) NIL (-4037 (-12 (|has| (-693) (-306)) (|has| (-693) (-904))) (|has| (-693) (-362))))) (-1644 (($ $) NIL (-12 (|has| (-693) (-997)) (|has| (-693) (-1192))))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-693) (-306)) (|has| (-693) (-904))))) (-1436 (((-112) $ $) NIL (|has| (-693) (-306)))) (-1382 (((-766)) NIL (|has| (-693) (-367)))) (-4206 (($ $) NIL (|has| (-693) (-1192)))) (-4074 (($ $) NIL (|has| (-693) (-1192)))) (-3013 (($ $) NIL (|has| (-693) (-1192)))) (-4120 (($ $) NIL (|has| (-693) (-1192)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-693) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-693) (-1033 (-406 (-562)))))) (-3960 (((-562) $) NIL) (((-693) $) NIL) (((-406 (-562)) $) NIL (|has| (-693) (-1033 (-406 (-562)))))) (-3916 (($ (-1256 (-693))) NIL) (($ (-1256 (-693)) (-1256 $)) NIL)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-693) (-348)))) (-1810 (($ $ $) NIL (|has| (-693) (-306)))) (-4376 (((-683 (-693)) $) NIL) (((-683 (-693)) $ (-1256 $)) NIL)) (-3449 (((-683 (-693)) (-683 $)) NIL) (((-2 (|:| -1767 (-683 (-693))) (|:| |vec| (-1256 (-693)))) (-683 $) (-1256 $)) NIL) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-693) (-635 (-562)))) (((-683 (-562)) (-683 $)) NIL (|has| (-693) (-635 (-562))))) (-1954 (((-3 $ "failed") (-406 (-1164 (-693)))) NIL (|has| (-693) (-362))) (($ (-1164 (-693))) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1657 (((-693) $) 29)) (-3913 (((-3 (-406 (-562)) "failed") $) NIL (|has| (-693) (-544)))) (-3498 (((-112) $) NIL (|has| (-693) (-544)))) (-3854 (((-406 (-562)) $) NIL (|has| (-693) (-544)))) (-2172 (((-916)) NIL)) (-1447 (($) NIL (|has| (-693) (-367)))) (-1787 (($ $ $) NIL (|has| (-693) (-306)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| (-693) (-306)))) (-2787 (($) NIL (|has| (-693) (-348)))) (-1844 (((-112) $) NIL (|has| (-693) (-348)))) (-2184 (($ $) NIL (|has| (-693) (-348))) (($ $ (-766)) NIL (|has| (-693) (-348)))) (-3521 (((-112) $) NIL (-4037 (-12 (|has| (-693) (-306)) (|has| (-693) (-904))) (|has| (-693) (-362))))) (-2994 (((-2 (|:| |r| (-693)) (|:| |phi| (-693))) $) NIL (-12 (|has| (-693) (-1053)) (|has| (-693) (-1192))))) (-4100 (($) NIL (|has| (-693) (-1192)))) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-693) (-881 (-378)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-693) (-881 (-562))))) (-1993 (((-828 (-916)) $) NIL (|has| (-693) (-348))) (((-916) $) NIL (|has| (-693) (-348)))) (-4367 (((-112) $) NIL)) (-1895 (($ $ (-562)) NIL (-12 (|has| (-693) (-997)) (|has| (-693) (-1192))))) (-4363 (((-693) $) NIL)) (-3828 (((-3 $ "failed") $) NIL (|has| (-693) (-348)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| (-693) (-306)))) (-1937 (((-1164 (-693)) $) NIL (|has| (-693) (-362)))) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-4152 (($ (-1 (-693) (-693)) $) NIL)) (-3549 (((-916) $) NIL (|has| (-693) (-367)))) (-4366 (($ $) NIL (|has| (-693) (-1192)))) (-1942 (((-1164 (-693)) $) NIL)) (-1564 (($ (-639 $)) NIL (|has| (-693) (-306))) (($ $ $) NIL (|has| (-693) (-306)))) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| (-693) (-362)))) (-3730 (($) NIL (|has| (-693) (-348)) CONST)) (-2464 (($ (-916)) NIL (|has| (-693) (-367)))) (-2396 (($) NIL)) (-1670 (((-693) $) 31)) (-1709 (((-1112) $) NIL)) (-3147 (($) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| (-693) (-306)))) (-1606 (($ (-639 $)) NIL (|has| (-693) (-306))) (($ $ $) NIL (|has| (-693) (-306)))) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL (|has| (-693) (-348)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-693) (-306)) (|has| (-693) (-904))))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-693) (-306)) (|has| (-693) (-904))))) (-1635 (((-417 $) $) NIL (-4037 (-12 (|has| (-693) (-306)) (|has| (-693) (-904))) (|has| (-693) (-362))))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-693) (-306))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| (-693) (-306)))) (-1762 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-693)) NIL (|has| (-693) (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| (-693) (-306)))) (-3430 (($ $) NIL (|has| (-693) (-1192)))) (-1433 (($ $ (-1168) (-693)) NIL (|has| (-693) (-513 (-1168) (-693)))) (($ $ (-639 (-1168)) (-639 (-693))) NIL (|has| (-693) (-513 (-1168) (-693)))) (($ $ (-639 (-293 (-693)))) NIL (|has| (-693) (-308 (-693)))) (($ $ (-293 (-693))) NIL (|has| (-693) (-308 (-693)))) (($ $ (-693) (-693)) NIL (|has| (-693) (-308 (-693)))) (($ $ (-639 (-693)) (-639 (-693))) NIL (|has| (-693) (-308 (-693))))) (-2044 (((-766) $) NIL (|has| (-693) (-306)))) (-2343 (($ $ (-693)) NIL (|has| (-693) (-285 (-693) (-693))))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| (-693) (-306)))) (-2736 (((-693)) NIL) (((-693) (-1256 $)) NIL)) (-3543 (((-3 (-766) "failed") $ $) NIL (|has| (-693) (-348))) (((-766) $) NIL (|has| (-693) (-348)))) (-4029 (($ $ (-1 (-693) (-693))) NIL) (($ $ (-1 (-693) (-693)) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-1168)) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-766)) NIL (|has| (-693) (-232))) (($ $) NIL (|has| (-693) (-232)))) (-2539 (((-683 (-693)) (-1256 $) (-1 (-693) (-693))) NIL (|has| (-693) (-362)))) (-3371 (((-1164 (-693))) NIL)) (-3022 (($ $) NIL (|has| (-693) (-1192)))) (-4130 (($ $) NIL (|has| (-693) (-1192)))) (-1653 (($) NIL (|has| (-693) (-348)))) (-3000 (($ $) NIL (|has| (-693) (-1192)))) (-4108 (($ $) NIL (|has| (-693) (-1192)))) (-2977 (($ $) NIL (|has| (-693) (-1192)))) (-4087 (($ $) NIL (|has| (-693) (-1192)))) (-2205 (((-683 (-693)) (-1256 $)) NIL) (((-1256 (-693)) $) NIL) (((-683 (-693)) (-1256 $) (-1256 $)) NIL) (((-1256 (-693)) $ (-1256 $)) NIL)) (-4208 (((-535) $) NIL (|has| (-693) (-610 (-535)))) (((-168 (-224)) $) NIL (|has| (-693) (-1017))) (((-168 (-378)) $) NIL (|has| (-693) (-1017))) (((-887 (-378)) $) NIL (|has| (-693) (-610 (-887 (-378))))) (((-887 (-562)) $) NIL (|has| (-693) (-610 (-887 (-562))))) (($ (-1164 (-693))) NIL) (((-1164 (-693)) $) NIL) (($ (-1256 (-693))) NIL) (((-1256 (-693)) $) NIL)) (-1660 (($ $) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-4037 (-12 (|has| (-693) (-306)) (|has| $ (-144)) (|has| (-693) (-904))) (|has| (-693) (-348))))) (-1418 (($ (-693) (-693)) 12)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-562)) NIL) (($ (-693)) NIL) (($ (-168 (-378))) 13) (($ (-168 (-562))) 19) (($ (-168 (-693))) 28) (($ (-168 (-695))) 25) (((-168 (-378)) $) 33) (($ (-406 (-562))) NIL (-4037 (|has| (-693) (-1033 (-406 (-562)))) (|has| (-693) (-362))))) (-2059 (($ $) NIL (|has| (-693) (-348))) (((-3 $ "failed") $) NIL (-4037 (-12 (|has| (-693) (-306)) (|has| $ (-144)) (|has| (-693) (-904))) (|has| (-693) (-144))))) (-3683 (((-1164 (-693)) $) NIL)) (-1568 (((-766)) NIL)) (-4291 (((-1256 $)) NIL)) (-3054 (($ $) NIL (|has| (-693) (-1192)))) (-4165 (($ $) NIL (|has| (-693) (-1192)))) (-3799 (((-112) $ $) NIL)) (-3033 (($ $) NIL (|has| (-693) (-1192)))) (-4139 (($ $) NIL (|has| (-693) (-1192)))) (-3077 (($ $) NIL (|has| (-693) (-1192)))) (-4183 (($ $) NIL (|has| (-693) (-1192)))) (-2282 (((-693) $) NIL (|has| (-693) (-1192)))) (-1567 (($ $) NIL (|has| (-693) (-1192)))) (-4195 (($ $) NIL (|has| (-693) (-1192)))) (-3065 (($ $) NIL (|has| (-693) (-1192)))) (-4175 (($ $) NIL (|has| (-693) (-1192)))) (-3040 (($ $) NIL (|has| (-693) (-1192)))) (-4151 (($ $) NIL (|has| (-693) (-1192)))) (-2757 (($ $) NIL (|has| (-693) (-1053)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-1 (-693) (-693))) NIL) (($ $ (-1 (-693) (-693)) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-1168)) NIL (|has| (-693) (-895 (-1168)))) (($ $ (-766)) NIL (|has| (-693) (-232))) (($ $) NIL (|has| (-693) (-232)))) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL (|has| (-693) (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ $) NIL (|has| (-693) (-1192))) (($ $ (-406 (-562))) NIL (-12 (|has| (-693) (-997)) (|has| (-693) (-1192)))) (($ $ (-562)) NIL (|has| (-693) (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ (-693) $) NIL) (($ $ (-693)) NIL) (($ (-406 (-562)) $) NIL (|has| (-693) (-362))) (($ $ (-406 (-562))) NIL (|has| (-693) (-362)))))
+(((-688) (-13 (-386) (-165 (-693)) (-10 -8 (-15 -4053 ($ (-168 (-378)))) (-15 -4053 ($ (-168 (-562)))) (-15 -4053 ($ (-168 (-693)))) (-15 -4053 ($ (-168 (-695)))) (-15 -4053 ((-168 (-378)) $))))) (T -688))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-168 (-378))) (-5 *1 (-688)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-168 (-562))) (-5 *1 (-688)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-168 (-693))) (-5 *1 (-688)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-168 (-695))) (-5 *1 (-688)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-168 (-378))) (-5 *1 (-688)))))
+(-13 (-386) (-165 (-693)) (-10 -8 (-15 -4053 ($ (-168 (-378)))) (-15 -4053 ($ (-168 (-562)))) (-15 -4053 ($ (-168 (-693)))) (-15 -4053 ($ (-168 (-695)))) (-15 -4053 ((-168 (-378)) $))))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) 8)) (-2968 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-3923 (($ $) 62)) (-1459 (($ $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-3729 (($ |#1| $) 47 (|has| $ (-6 -4403))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4403)))) (-1475 (($ |#1| $) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4403)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-2078 ((|#1| $) 39)) (-1581 (($ |#1| $) 40) (($ |#1| $ (-766)) 63)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-2038 ((|#1| $) 41)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-3110 (((-639 (-2 (|:| -2693 |#1|) (|:| -1723 (-766)))) $) 61)) (-1932 (($) 49) (($ (-639 |#1|)) 48)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 50)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-4131 (($ (-639 |#1|)) 42)) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-689 |#1|) (-139) (-1092)) (T -689))
-((-4300 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-689 *2)) (-4 *2 (-1092)))) (-4354 (*1 *1 *1) (-12 (-4 *1 (-689 *2)) (-4 *2 (-1092)))) (-2671 (*1 *2 *1) (-12 (-4 *1 (-689 *3)) (-4 *3 (-1092)) (-5 *2 (-639 (-2 (|:| -2694 *3) (|:| -1723 (-766))))))))
-(-13 (-234 |t#1|) (-10 -8 (-15 -4300 ($ |t#1| $ (-766))) (-15 -4354 ($ $)) (-15 -2671 ((-639 (-2 (|:| -2694 |t#1|) (|:| -1723 (-766)))) $))))
+((-1581 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-689 *2)) (-4 *2 (-1092)))) (-3923 (*1 *1 *1) (-12 (-4 *1 (-689 *2)) (-4 *2 (-1092)))) (-3110 (*1 *2 *1) (-12 (-4 *1 (-689 *3)) (-4 *3 (-1092)) (-5 *2 (-639 (-2 (|:| -2693 *3) (|:| -1723 (-766))))))))
+(-13 (-234 |t#1|) (-10 -8 (-15 -1581 ($ |t#1| $ (-766))) (-15 -3923 ($ $)) (-15 -3110 ((-639 (-2 (|:| -2693 |t#1|) (|:| -1723 (-766)))) $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-234 |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-1797 (((-639 |#1|) (-639 (-2 (|:| -1635 |#1|) (|:| -3598 (-562)))) (-562)) 47)) (-4118 ((|#1| |#1| (-562)) 46)) (-1606 ((|#1| |#1| |#1| (-562)) 36)) (-1635 (((-639 |#1|) |#1| (-562)) 39)) (-1293 ((|#1| |#1| (-562) |#1| (-562)) 32)) (-2608 (((-639 (-2 (|:| -1635 |#1|) (|:| -3598 (-562)))) |#1| (-562)) 45)))
-(((-690 |#1|) (-10 -7 (-15 -1606 (|#1| |#1| |#1| (-562))) (-15 -4118 (|#1| |#1| (-562))) (-15 -1635 ((-639 |#1|) |#1| (-562))) (-15 -2608 ((-639 (-2 (|:| -1635 |#1|) (|:| -3598 (-562)))) |#1| (-562))) (-15 -1797 ((-639 |#1|) (-639 (-2 (|:| -1635 |#1|) (|:| -3598 (-562)))) (-562))) (-15 -1293 (|#1| |#1| (-562) |#1| (-562)))) (-1232 (-562))) (T -690))
-((-1293 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-690 *2)) (-4 *2 (-1232 *3)))) (-1797 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-2 (|:| -1635 *5) (|:| -3598 (-562))))) (-5 *4 (-562)) (-4 *5 (-1232 *4)) (-5 *2 (-639 *5)) (-5 *1 (-690 *5)))) (-2608 (*1 *2 *3 *4) (-12 (-5 *4 (-562)) (-5 *2 (-639 (-2 (|:| -1635 *3) (|:| -3598 *4)))) (-5 *1 (-690 *3)) (-4 *3 (-1232 *4)))) (-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-562)) (-5 *2 (-639 *3)) (-5 *1 (-690 *3)) (-4 *3 (-1232 *4)))) (-4118 (*1 *2 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-690 *2)) (-4 *2 (-1232 *3)))) (-1606 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-690 *2)) (-4 *2 (-1232 *3)))))
-(-10 -7 (-15 -1606 (|#1| |#1| |#1| (-562))) (-15 -4118 (|#1| |#1| (-562))) (-15 -1635 ((-639 |#1|) |#1| (-562))) (-15 -2608 ((-639 (-2 (|:| -1635 |#1|) (|:| -3598 (-562)))) |#1| (-562))) (-15 -1797 ((-639 |#1|) (-639 (-2 (|:| -1635 |#1|) (|:| -3598 (-562)))) (-562))) (-15 -1293 (|#1| |#1| (-562) |#1| (-562))))
-((-3907 (((-1 (-938 (-224)) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224) (-224))) 17)) (-3438 (((-1125 (-224)) (-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-639 (-262))) 40) (((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-639 (-262))) 42) (((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-3 (-1 (-224) (-224) (-224) (-224)) "undefined") (-1086 (-224)) (-1086 (-224)) (-639 (-262))) 44)) (-2073 (((-1125 (-224)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-639 (-262))) NIL)) (-3208 (((-1125 (-224)) (-1 (-224) (-224) (-224)) (-3 (-1 (-224) (-224) (-224) (-224)) "undefined") (-1086 (-224)) (-1086 (-224)) (-639 (-262))) 45)))
-(((-691) (-10 -7 (-15 -3438 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-3 (-1 (-224) (-224) (-224) (-224)) "undefined") (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3438 ((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3438 ((-1125 (-224)) (-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3208 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-3 (-1 (-224) (-224) (-224) (-224)) "undefined") (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -2073 ((-1125 (-224)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3907 ((-1 (-938 (-224)) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224) (-224)))))) (T -691))
-((-3907 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-1 (-224) (-224) (-224) (-224))) (-5 *2 (-1 (-938 (-224)) (-224) (-224))) (-5 *1 (-691)))) (-2073 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224))) (-5 *5 (-1086 (-224))) (-5 *6 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-691)))) (-3208 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-3 (-1 (-224) (-224) (-224) (-224)) "undefined")) (-5 *5 (-1086 (-224))) (-5 *6 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-691)))) (-3438 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1125 (-224))) (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-224))) (-5 *5 (-639 (-262))) (-5 *1 (-691)))) (-3438 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-224))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-691)))) (-3438 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-3 (-1 (-224) (-224) (-224) (-224)) "undefined")) (-5 *5 (-1086 (-224))) (-5 *6 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-691)))))
-(-10 -7 (-15 -3438 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-3 (-1 (-224) (-224) (-224) (-224)) "undefined") (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3438 ((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3438 ((-1125 (-224)) (-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3208 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-3 (-1 (-224) (-224) (-224) (-224)) "undefined") (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -2073 ((-1125 (-224)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3907 ((-1 (-938 (-224)) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224) (-224)))))
+((-3317 (((-639 |#1|) (-639 (-2 (|:| -1635 |#1|) (|:| -2250 (-562)))) (-562)) 47)) (-3527 ((|#1| |#1| (-562)) 46)) (-1606 ((|#1| |#1| |#1| (-562)) 36)) (-1635 (((-639 |#1|) |#1| (-562)) 39)) (-3880 ((|#1| |#1| (-562) |#1| (-562)) 32)) (-3678 (((-639 (-2 (|:| -1635 |#1|) (|:| -2250 (-562)))) |#1| (-562)) 45)))
+(((-690 |#1|) (-10 -7 (-15 -1606 (|#1| |#1| |#1| (-562))) (-15 -3527 (|#1| |#1| (-562))) (-15 -1635 ((-639 |#1|) |#1| (-562))) (-15 -3678 ((-639 (-2 (|:| -1635 |#1|) (|:| -2250 (-562)))) |#1| (-562))) (-15 -3317 ((-639 |#1|) (-639 (-2 (|:| -1635 |#1|) (|:| -2250 (-562)))) (-562))) (-15 -3880 (|#1| |#1| (-562) |#1| (-562)))) (-1232 (-562))) (T -690))
+((-3880 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-690 *2)) (-4 *2 (-1232 *3)))) (-3317 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-2 (|:| -1635 *5) (|:| -2250 (-562))))) (-5 *4 (-562)) (-4 *5 (-1232 *4)) (-5 *2 (-639 *5)) (-5 *1 (-690 *5)))) (-3678 (*1 *2 *3 *4) (-12 (-5 *4 (-562)) (-5 *2 (-639 (-2 (|:| -1635 *3) (|:| -2250 *4)))) (-5 *1 (-690 *3)) (-4 *3 (-1232 *4)))) (-1635 (*1 *2 *3 *4) (-12 (-5 *4 (-562)) (-5 *2 (-639 *3)) (-5 *1 (-690 *3)) (-4 *3 (-1232 *4)))) (-3527 (*1 *2 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-690 *2)) (-4 *2 (-1232 *3)))) (-1606 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-690 *2)) (-4 *2 (-1232 *3)))))
+(-10 -7 (-15 -1606 (|#1| |#1| |#1| (-562))) (-15 -3527 (|#1| |#1| (-562))) (-15 -1635 ((-639 |#1|) |#1| (-562))) (-15 -3678 ((-639 (-2 (|:| -1635 |#1|) (|:| -2250 (-562)))) |#1| (-562))) (-15 -3317 ((-639 |#1|) (-639 (-2 (|:| -1635 |#1|) (|:| -2250 (-562)))) (-562))) (-15 -3880 (|#1| |#1| (-562) |#1| (-562))))
+((-2275 (((-1 (-938 (-224)) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224) (-224))) 17)) (-3062 (((-1125 (-224)) (-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-639 (-262))) 40) (((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-639 (-262))) 42) (((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-3 (-1 (-224) (-224) (-224) (-224)) "undefined") (-1086 (-224)) (-1086 (-224)) (-639 (-262))) 44)) (-3130 (((-1125 (-224)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-639 (-262))) NIL)) (-2721 (((-1125 (-224)) (-1 (-224) (-224) (-224)) (-3 (-1 (-224) (-224) (-224) (-224)) "undefined") (-1086 (-224)) (-1086 (-224)) (-639 (-262))) 45)))
+(((-691) (-10 -7 (-15 -3062 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-3 (-1 (-224) (-224) (-224) (-224)) "undefined") (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3062 ((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3062 ((-1125 (-224)) (-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -2721 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-3 (-1 (-224) (-224) (-224) (-224)) "undefined") (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3130 ((-1125 (-224)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -2275 ((-1 (-938 (-224)) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224) (-224)))))) (T -691))
+((-2275 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-1 (-224) (-224) (-224) (-224))) (-5 *2 (-1 (-938 (-224)) (-224) (-224))) (-5 *1 (-691)))) (-3130 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224))) (-5 *5 (-1086 (-224))) (-5 *6 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-691)))) (-2721 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-3 (-1 (-224) (-224) (-224) (-224)) "undefined")) (-5 *5 (-1086 (-224))) (-5 *6 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-691)))) (-3062 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1125 (-224))) (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-224))) (-5 *5 (-639 (-262))) (-5 *1 (-691)))) (-3062 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-224))) (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-691)))) (-3062 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-224) (-224) (-224))) (-5 *4 (-3 (-1 (-224) (-224) (-224) (-224)) "undefined")) (-5 *5 (-1086 (-224))) (-5 *6 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-691)))))
+(-10 -7 (-15 -3062 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-3 (-1 (-224) (-224) (-224) (-224)) "undefined") (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3062 ((-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3062 ((-1125 (-224)) (-1125 (-224)) (-1 (-938 (-224)) (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -2721 ((-1125 (-224)) (-1 (-224) (-224) (-224)) (-3 (-1 (-224) (-224) (-224) (-224)) "undefined") (-1086 (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -3130 ((-1125 (-224)) (-315 (-562)) (-315 (-562)) (-315 (-562)) (-1 (-224) (-224)) (-1086 (-224)) (-639 (-262)))) (-15 -2275 ((-1 (-938 (-224)) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224)) (-1 (-224) (-224) (-224) (-224)))))
((-1635 (((-417 (-1164 |#4|)) (-1164 |#4|)) 73) (((-417 |#4|) |#4|) 220)))
(((-692 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1635 ((-417 |#4|) |#4|)) (-15 -1635 ((-417 (-1164 |#4|)) (-1164 |#4|)))) (-845) (-788) (-348) (-944 |#3| |#2| |#1|)) (T -692))
((-1635 (*1 *2 *3) (-12 (-4 *4 (-845)) (-4 *5 (-788)) (-4 *6 (-348)) (-4 *7 (-944 *6 *5 *4)) (-5 *2 (-417 (-1164 *7))) (-5 *1 (-692 *4 *5 *6 *7)) (-5 *3 (-1164 *7)))) (-1635 (*1 *2 *3) (-12 (-4 *4 (-845)) (-4 *5 (-788)) (-4 *6 (-348)) (-5 *2 (-417 *3)) (-5 *1 (-692 *4 *5 *6 *3)) (-4 *3 (-944 *6 *5 *4)))))
(-10 -7 (-15 -1635 ((-417 |#4|) |#4|)) (-15 -1635 ((-417 (-1164 |#4|)) (-1164 |#4|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 84)) (-4246 (((-562) $) 30)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2557 (($ $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-1643 (($ $) NIL)) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL)) (-1800 (($) NIL T CONST)) (-4103 (($ $) NIL)) (-4048 (((-3 (-562) "failed") $) 73) (((-3 (-406 (-562)) "failed") $) 26) (((-3 (-378) "failed") $) 70)) (-3961 (((-562) $) 75) (((-406 (-562)) $) 67) (((-378) $) 68)) (-1811 (($ $ $) 96)) (-3668 (((-3 $ "failed") $) 87)) (-1787 (($ $ $) 95)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3327 (((-916)) 77) (((-916) (-916)) 76)) (-3519 (((-112) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL)) (-1900 (((-562) $) NIL)) (-1957 (((-112) $) NIL)) (-1891 (($ $ (-562)) NIL)) (-2247 (($ $) NIL)) (-3392 (((-112) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2131 (((-562) (-562)) 81) (((-562)) 82)) (-1551 (($ $ $) NIL) (($) NIL (-12 (-2236 (|has| $ (-6 -4385))) (-2236 (|has| $ (-6 -4393)))))) (-1571 (((-562) (-562)) 79) (((-562)) 80)) (-2993 (($ $ $) NIL) (($) NIL (-12 (-2236 (|has| $ (-6 -4385))) (-2236 (|has| $ (-6 -4393)))))) (-3946 (((-562) $) 16)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 91)) (-3544 (((-916) (-562)) NIL (|has| $ (-6 -4393)))) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2736 (($ $) NIL)) (-4014 (($ $) NIL)) (-4235 (($ (-562) (-562)) NIL) (($ (-562) (-562) (-916)) NIL)) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) 92)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1960 (((-562) $) 22)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 94)) (-3280 (((-916)) NIL) (((-916) (-916)) NIL (|has| $ (-6 -4393)))) (-2015 (((-916) (-562)) NIL (|has| $ (-6 -4393)))) (-4208 (((-378) $) NIL) (((-224) $) NIL) (((-887 (-378)) $) NIL)) (-4054 (((-857) $) 52) (($ (-562)) 63) (($ $) NIL) (($ (-406 (-562))) 66) (($ (-562)) 63) (($ (-406 (-562))) 66) (($ (-378)) 60) (((-378) $) 50) (($ (-695)) 55)) (-2579 (((-766)) 103)) (-3011 (($ (-562) (-562) (-916)) 44)) (-2604 (($ $) NIL)) (-3366 (((-916)) NIL) (((-916) (-916)) NIL (|has| $ (-6 -4393)))) (-3241 (((-916)) 35) (((-916) (-916)) 78)) (-2922 (((-112) $ $) NIL)) (-3526 (($ $) NIL)) (-2286 (($) 32 T CONST)) (-2294 (($) 17 T CONST)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 83)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 101)) (-1859 (($ $ $) 65)) (-1848 (($ $) 99) (($ $ $) 100)) (-1835 (($ $ $) 98)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL) (($ $ (-406 (-562))) 90)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 97) (($ $ $) 88) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
-(((-693) (-13 (-403) (-386) (-362) (-1033 (-378)) (-1033 (-406 (-562))) (-146) (-10 -8 (-15 -3327 ((-916) (-916))) (-15 -3327 ((-916))) (-15 -3241 ((-916) (-916))) (-15 -1571 ((-562) (-562))) (-15 -1571 ((-562))) (-15 -2131 ((-562) (-562))) (-15 -2131 ((-562))) (-15 -4054 ((-378) $)) (-15 -4054 ($ (-695))) (-15 -3946 ((-562) $)) (-15 -1960 ((-562) $)) (-15 -3011 ($ (-562) (-562) (-916)))))) (T -693))
-((-1960 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-693)))) (-3946 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-693)))) (-3327 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-693)))) (-3327 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-693)))) (-3241 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-693)))) (-1571 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693)))) (-1571 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693)))) (-2131 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693)))) (-2131 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-378)) (-5 *1 (-693)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-695)) (-5 *1 (-693)))) (-3011 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-562)) (-5 *3 (-916)) (-5 *1 (-693)))))
-(-13 (-403) (-386) (-362) (-1033 (-378)) (-1033 (-406 (-562))) (-146) (-10 -8 (-15 -3327 ((-916) (-916))) (-15 -3327 ((-916))) (-15 -3241 ((-916) (-916))) (-15 -1571 ((-562) (-562))) (-15 -1571 ((-562))) (-15 -2131 ((-562) (-562))) (-15 -2131 ((-562))) (-15 -4054 ((-378) $)) (-15 -4054 ($ (-695))) (-15 -3946 ((-562) $)) (-15 -1960 ((-562) $)) (-15 -3011 ($ (-562) (-562) (-916)))))
-((-1953 (((-683 |#1|) (-683 |#1|) |#1| |#1|) 65)) (-2522 (((-683 |#1|) (-683 |#1|) |#1|) 48)) (-2659 (((-683 |#1|) (-683 |#1|) |#1|) 66)) (-2098 (((-683 |#1|) (-683 |#1|)) 49)) (-3106 (((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|) 64)))
-(((-694 |#1|) (-10 -7 (-15 -2098 ((-683 |#1|) (-683 |#1|))) (-15 -2522 ((-683 |#1|) (-683 |#1|) |#1|)) (-15 -2659 ((-683 |#1|) (-683 |#1|) |#1|)) (-15 -1953 ((-683 |#1|) (-683 |#1|) |#1| |#1|)) (-15 -3106 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|))) (-306)) (T -694))
-((-3106 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-694 *3)) (-4 *3 (-306)))) (-1953 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))) (-2659 (*1 *2 *2 *3) (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))) (-2522 (*1 *2 *2 *3) (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))) (-2098 (*1 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))))
-(-10 -7 (-15 -2098 ((-683 |#1|) (-683 |#1|))) (-15 -2522 ((-683 |#1|) (-683 |#1|) |#1|)) (-15 -2659 ((-683 |#1|) (-683 |#1|) |#1|)) (-15 -1953 ((-683 |#1|) (-683 |#1|) |#1| |#1|)) (-15 -3106 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-1685 (($ $ $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-4375 (($ $ $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL)) (-3358 (($ $ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) 27)) (-3961 (((-562) $) 25)) (-1811 (($ $ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1726 (((-3 (-406 (-562)) "failed") $) NIL)) (-3035 (((-112) $) NIL)) (-1291 (((-406 (-562)) $) NIL)) (-1448 (($ $) NIL) (($) NIL)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3854 (($ $ $ $) NIL)) (-1292 (($ $ $) NIL)) (-3519 (((-112) $) NIL)) (-2794 (($ $ $) NIL)) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL)) (-1957 (((-112) $) NIL)) (-3130 (((-112) $) NIL)) (-3699 (((-3 $ "failed") $) NIL)) (-3392 (((-112) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2504 (($ $ $ $) NIL)) (-1551 (($ $ $) NIL)) (-1857 (((-916) (-916)) 10) (((-916)) 9)) (-2993 (($ $ $) NIL)) (-3930 (($ $) NIL)) (-3641 (($ $) NIL)) (-1564 (($ (-639 $)) NIL) (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1809 (($ $ $) NIL)) (-3729 (($) NIL T CONST)) (-4137 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ (-639 $)) NIL) (($ $ $) NIL)) (-1351 (($ $) NIL)) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3803 (((-112) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4029 (($ $) NIL) (($ $ (-766)) NIL)) (-2372 (($ $) NIL)) (-4220 (($ $) NIL)) (-4208 (((-224) $) NIL) (((-378) $) NIL) (((-887 (-562)) $) NIL) (((-535) $) NIL) (((-562) $) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) 24) (($ $) NIL) (($ (-562)) 24) (((-315 $) (-315 (-562))) 18)) (-2579 (((-766)) NIL)) (-2929 (((-112) $ $) NIL)) (-3261 (($ $ $) NIL)) (-3241 (($) NIL)) (-2922 (((-112) $ $) NIL)) (-3131 (($ $ $ $) NIL)) (-3526 (($ $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $) NIL) (($ $ (-766)) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL)))
-(((-695) (-13 (-386) (-544) (-10 -8 (-15 -1857 ((-916) (-916))) (-15 -1857 ((-916))) (-15 -4054 ((-315 $) (-315 (-562))))))) (T -695))
-((-1857 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-695)))) (-1857 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-695)))) (-4054 (*1 *2 *3) (-12 (-5 *3 (-315 (-562))) (-5 *2 (-315 (-695))) (-5 *1 (-695)))))
-(-13 (-386) (-544) (-10 -8 (-15 -1857 ((-916) (-916))) (-15 -1857 ((-916))) (-15 -4054 ((-315 $) (-315 (-562))))))
-((-2484 (((-1 |#4| |#2| |#3|) |#1| (-1168) (-1168)) 19)) (-3507 (((-1 |#4| |#2| |#3|) (-1168)) 12)))
-(((-696 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3507 ((-1 |#4| |#2| |#3|) (-1168))) (-15 -2484 ((-1 |#4| |#2| |#3|) |#1| (-1168) (-1168)))) (-610 (-535)) (-1207) (-1207) (-1207)) (T -696))
-((-2484 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1168)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-696 *3 *5 *6 *7)) (-4 *3 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207)) (-4 *7 (-1207)))) (-3507 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-696 *4 *5 *6 *7)) (-4 *4 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207)) (-4 *7 (-1207)))))
-(-10 -7 (-15 -3507 ((-1 |#4| |#2| |#3|) (-1168))) (-15 -2484 ((-1 |#4| |#2| |#3|) |#1| (-1168) (-1168))))
-((-4041 (((-112) $ $) NIL)) (-2111 (((-1261) $ (-766)) 14)) (-4264 (((-766) $) 12)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 18) (($ |#1|) 23) ((|#1| $) 15)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 25)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 24)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 84)) (-2300 (((-562) $) 30)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-1302 (($ $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1644 (($ $) NIL)) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL)) (-3329 (($) NIL T CONST)) (-3410 (($ $) NIL)) (-4048 (((-3 (-562) "failed") $) 73) (((-3 (-406 (-562)) "failed") $) 26) (((-3 (-378) "failed") $) 70)) (-3960 (((-562) $) 75) (((-406 (-562)) $) 67) (((-378) $) 68)) (-1810 (($ $ $) 96)) (-1694 (((-3 $ "failed") $) 87)) (-1787 (($ $ $) 95)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-3326 (((-916)) 77) (((-916) (-916)) 76)) (-2696 (((-112) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL)) (-1993 (((-562) $) NIL)) (-4367 (((-112) $) NIL)) (-1895 (($ $ (-562)) NIL)) (-4363 (($ $) NIL)) (-3855 (((-112) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2590 (((-562) (-562)) 81) (((-562)) 82)) (-1551 (($ $ $) NIL) (($) NIL (-12 (-2234 (|has| $ (-6 -4386))) (-2234 (|has| $ (-6 -4394)))))) (-1999 (((-562) (-562)) 79) (((-562)) 80)) (-2993 (($ $ $) NIL) (($) NIL (-12 (-2234 (|has| $ (-6 -4386))) (-2234 (|has| $ (-6 -4394)))))) (-3946 (((-562) $) 16)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 91)) (-2898 (((-916) (-562)) NIL (|has| $ (-6 -4394)))) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2561 (($ $) NIL)) (-3870 (($ $) NIL)) (-4237 (($ (-562) (-562)) NIL) (($ (-562) (-562) (-916)) NIL)) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) 92)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1300 (((-562) $) 22)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 94)) (-2244 (((-916)) NIL) (((-916) (-916)) NIL (|has| $ (-6 -4394)))) (-3719 (((-916) (-562)) NIL (|has| $ (-6 -4394)))) (-4208 (((-378) $) NIL) (((-224) $) NIL) (((-887 (-378)) $) NIL)) (-4053 (((-857) $) 52) (($ (-562)) 63) (($ $) NIL) (($ (-406 (-562))) 66) (($ (-562)) 63) (($ (-406 (-562))) 66) (($ (-378)) 60) (((-378) $) 50) (($ (-695)) 55)) (-1568 (((-766)) 103)) (-3388 (($ (-562) (-562) (-916)) 44)) (-3636 (($ $) NIL)) (-3573 (((-916)) NIL) (((-916) (-916)) NIL (|has| $ (-6 -4394)))) (-3240 (((-916)) 35) (((-916) (-916)) 78)) (-3799 (((-112) $ $) NIL)) (-2757 (($ $) NIL)) (-2285 (($) 32 T CONST)) (-2294 (($) 17 T CONST)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 83)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 101)) (-1859 (($ $ $) 65)) (-1847 (($ $) 99) (($ $ $) 100)) (-1836 (($ $ $) 98)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL) (($ $ (-406 (-562))) 90)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 97) (($ $ $) 88) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
+(((-693) (-13 (-403) (-386) (-362) (-1033 (-378)) (-1033 (-406 (-562))) (-146) (-10 -8 (-15 -3326 ((-916) (-916))) (-15 -3326 ((-916))) (-15 -3240 ((-916) (-916))) (-15 -1999 ((-562) (-562))) (-15 -1999 ((-562))) (-15 -2590 ((-562) (-562))) (-15 -2590 ((-562))) (-15 -4053 ((-378) $)) (-15 -4053 ($ (-695))) (-15 -3946 ((-562) $)) (-15 -1300 ((-562) $)) (-15 -3388 ($ (-562) (-562) (-916)))))) (T -693))
+((-1300 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-693)))) (-3946 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-693)))) (-3326 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-693)))) (-3326 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-693)))) (-3240 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-693)))) (-1999 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693)))) (-1999 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693)))) (-2590 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693)))) (-2590 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-378)) (-5 *1 (-693)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-695)) (-5 *1 (-693)))) (-3388 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-562)) (-5 *3 (-916)) (-5 *1 (-693)))))
+(-13 (-403) (-386) (-362) (-1033 (-378)) (-1033 (-406 (-562))) (-146) (-10 -8 (-15 -3326 ((-916) (-916))) (-15 -3326 ((-916))) (-15 -3240 ((-916) (-916))) (-15 -1999 ((-562) (-562))) (-15 -1999 ((-562))) (-15 -2590 ((-562) (-562))) (-15 -2590 ((-562))) (-15 -4053 ((-378) $)) (-15 -4053 ($ (-695))) (-15 -3946 ((-562) $)) (-15 -1300 ((-562) $)) (-15 -3388 ($ (-562) (-562) (-916)))))
+((-4337 (((-683 |#1|) (-683 |#1|) |#1| |#1|) 65)) (-2239 (((-683 |#1|) (-683 |#1|) |#1|) 48)) (-2989 (((-683 |#1|) (-683 |#1|) |#1|) 66)) (-3390 (((-683 |#1|) (-683 |#1|)) 49)) (-2925 (((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|) 64)))
+(((-694 |#1|) (-10 -7 (-15 -3390 ((-683 |#1|) (-683 |#1|))) (-15 -2239 ((-683 |#1|) (-683 |#1|) |#1|)) (-15 -2989 ((-683 |#1|) (-683 |#1|) |#1|)) (-15 -4337 ((-683 |#1|) (-683 |#1|) |#1| |#1|)) (-15 -2925 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|))) (-306)) (T -694))
+((-2925 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-694 *3)) (-4 *3 (-306)))) (-4337 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))) (-2989 (*1 *2 *2 *3) (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))) (-2239 (*1 *2 *2 *3) (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))) (-3390 (*1 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))))
+(-10 -7 (-15 -3390 ((-683 |#1|) (-683 |#1|))) (-15 -2239 ((-683 |#1|) (-683 |#1|) |#1|)) (-15 -2989 ((-683 |#1|) (-683 |#1|) |#1|)) (-15 -4337 ((-683 |#1|) (-683 |#1|) |#1| |#1|)) (-15 -2925 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3544 (($ $ $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-4158 (($ $ $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL)) (-3355 (($ $ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) 27)) (-3960 (((-562) $) 25)) (-1810 (($ $ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-3913 (((-3 (-406 (-562)) "failed") $) NIL)) (-3498 (((-112) $) NIL)) (-3854 (((-406 (-562)) $) NIL)) (-1447 (($ $) NIL) (($) NIL)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2877 (($ $ $ $) NIL)) (-3867 (($ $ $) NIL)) (-2696 (((-112) $) NIL)) (-1940 (($ $ $) NIL)) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL)) (-4367 (((-112) $) NIL)) (-3152 (((-112) $) NIL)) (-3828 (((-3 $ "failed") $) NIL)) (-3855 (((-112) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2051 (($ $ $ $) NIL)) (-1551 (($ $ $) NIL)) (-2734 (((-916) (-916)) 10) (((-916)) 9)) (-2993 (($ $ $) NIL)) (-3930 (($ $) NIL)) (-3641 (($ $) NIL)) (-1564 (($ (-639 $)) NIL) (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-2296 (($ $ $) NIL)) (-3730 (($) NIL T CONST)) (-4137 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ (-639 $)) NIL) (($ $ $) NIL)) (-3350 (($ $) NIL)) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2438 (((-112) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4029 (($ $) NIL) (($ $ (-766)) NIL)) (-2369 (($ $) NIL)) (-4220 (($ $) NIL)) (-4208 (((-224) $) NIL) (((-378) $) NIL) (((-887 (-562)) $) NIL) (((-535) $) NIL) (((-562) $) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) 24) (($ $) NIL) (($ (-562)) 24) (((-315 $) (-315 (-562))) 18)) (-1568 (((-766)) NIL)) (-3869 (((-112) $ $) NIL)) (-2068 (($ $ $) NIL)) (-3240 (($) NIL)) (-3799 (((-112) $ $) NIL)) (-3160 (($ $ $ $) NIL)) (-2757 (($ $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $) NIL) (($ $ (-766)) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL)))
+(((-695) (-13 (-386) (-544) (-10 -8 (-15 -2734 ((-916) (-916))) (-15 -2734 ((-916))) (-15 -4053 ((-315 $) (-315 (-562))))))) (T -695))
+((-2734 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-695)))) (-2734 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-695)))) (-4053 (*1 *2 *3) (-12 (-5 *3 (-315 (-562))) (-5 *2 (-315 (-695))) (-5 *1 (-695)))))
+(-13 (-386) (-544) (-10 -8 (-15 -2734 ((-916) (-916))) (-15 -2734 ((-916))) (-15 -4053 ((-315 $) (-315 (-562))))))
+((-1845 (((-1 |#4| |#2| |#3|) |#1| (-1168) (-1168)) 19)) (-2596 (((-1 |#4| |#2| |#3|) (-1168)) 12)))
+(((-696 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2596 ((-1 |#4| |#2| |#3|) (-1168))) (-15 -1845 ((-1 |#4| |#2| |#3|) |#1| (-1168) (-1168)))) (-610 (-535)) (-1207) (-1207) (-1207)) (T -696))
+((-1845 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1168)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-696 *3 *5 *6 *7)) (-4 *3 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207)) (-4 *7 (-1207)))) (-2596 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-696 *4 *5 *6 *7)) (-4 *4 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207)) (-4 *7 (-1207)))))
+(-10 -7 (-15 -2596 ((-1 |#4| |#2| |#3|) (-1168))) (-15 -1845 ((-1 |#4| |#2| |#3|) |#1| (-1168) (-1168))))
+((-4041 (((-112) $ $) NIL)) (-2389 (((-1261) $ (-766)) 14)) (-4265 (((-766) $) 12)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 18) (($ |#1|) 23) ((|#1| $) 15)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 25)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 24)))
(((-697 |#1|) (-13 (-131) (-489 |#1|)) (-1092)) (T -697))
NIL
(-13 (-131) (-489 |#1|))
-((-3401 (((-1 (-224) (-224) (-224)) |#1| (-1168) (-1168)) 34) (((-1 (-224) (-224)) |#1| (-1168)) 39)))
-(((-698 |#1|) (-10 -7 (-15 -3401 ((-1 (-224) (-224)) |#1| (-1168))) (-15 -3401 ((-1 (-224) (-224) (-224)) |#1| (-1168) (-1168)))) (-610 (-535))) (T -698))
-((-3401 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1168)) (-5 *2 (-1 (-224) (-224) (-224))) (-5 *1 (-698 *3)) (-4 *3 (-610 (-535))))) (-3401 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-5 *2 (-1 (-224) (-224))) (-5 *1 (-698 *3)) (-4 *3 (-610 (-535))))))
-(-10 -7 (-15 -3401 ((-1 (-224) (-224)) |#1| (-1168))) (-15 -3401 ((-1 (-224) (-224) (-224)) |#1| (-1168) (-1168))))
+((-3937 (((-1 (-224) (-224) (-224)) |#1| (-1168) (-1168)) 34) (((-1 (-224) (-224)) |#1| (-1168)) 39)))
+(((-698 |#1|) (-10 -7 (-15 -3937 ((-1 (-224) (-224)) |#1| (-1168))) (-15 -3937 ((-1 (-224) (-224) (-224)) |#1| (-1168) (-1168)))) (-610 (-535))) (T -698))
+((-3937 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1168)) (-5 *2 (-1 (-224) (-224) (-224))) (-5 *1 (-698 *3)) (-4 *3 (-610 (-535))))) (-3937 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-5 *2 (-1 (-224) (-224))) (-5 *1 (-698 *3)) (-4 *3 (-610 (-535))))))
+(-10 -7 (-15 -3937 ((-1 (-224) (-224)) |#1| (-1168))) (-15 -3937 ((-1 (-224) (-224) (-224)) |#1| (-1168) (-1168))))
((-1407 (((-1168) |#1| (-1168) (-639 (-1168))) 9) (((-1168) |#1| (-1168) (-1168) (-1168)) 12) (((-1168) |#1| (-1168) (-1168)) 11) (((-1168) |#1| (-1168)) 10)))
(((-699 |#1|) (-10 -7 (-15 -1407 ((-1168) |#1| (-1168))) (-15 -1407 ((-1168) |#1| (-1168) (-1168))) (-15 -1407 ((-1168) |#1| (-1168) (-1168) (-1168))) (-15 -1407 ((-1168) |#1| (-1168) (-639 (-1168))))) (-610 (-535))) (T -699))
((-1407 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-639 (-1168))) (-5 *2 (-1168)) (-5 *1 (-699 *3)) (-4 *3 (-610 (-535))))) (-1407 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-699 *3)) (-4 *3 (-610 (-535))))) (-1407 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-699 *3)) (-4 *3 (-610 (-535))))) (-1407 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-699 *3)) (-4 *3 (-610 (-535))))))
@@ -2836,120 +2836,120 @@ NIL
(((-700 |#1| |#2|) (-10 -7 (-15 -3617 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1207) (-1207)) (T -700))
((-3617 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-700 *3 *4)) (-4 *3 (-1207)) (-4 *4 (-1207)))))
(-10 -7 (-15 -3617 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
-((-4045 (((-1 |#3| |#2|) (-1168)) 11)) (-2484 (((-1 |#3| |#2|) |#1| (-1168)) 21)))
-(((-701 |#1| |#2| |#3|) (-10 -7 (-15 -4045 ((-1 |#3| |#2|) (-1168))) (-15 -2484 ((-1 |#3| |#2|) |#1| (-1168)))) (-610 (-535)) (-1207) (-1207)) (T -701))
-((-2484 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-5 *2 (-1 *6 *5)) (-5 *1 (-701 *3 *5 *6)) (-4 *3 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207)))) (-4045 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1 *6 *5)) (-5 *1 (-701 *4 *5 *6)) (-4 *4 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207)))))
-(-10 -7 (-15 -4045 ((-1 |#3| |#2|) (-1168))) (-15 -2484 ((-1 |#3| |#2|) |#1| (-1168))))
-((-3454 (((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 (-1164 |#4|)) (-639 |#3|) (-639 |#4|) (-639 (-639 (-2 (|:| -2734 (-766)) (|:| |pcoef| |#4|)))) (-639 (-766)) (-1256 (-639 (-1164 |#3|))) |#3|) 61)) (-3689 (((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 (-1164 |#3|)) (-639 |#3|) (-639 |#4|) (-639 (-766)) |#3|) 74)) (-2206 (((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 |#3|) (-639 (-766)) (-639 (-1164 |#4|)) (-1256 (-639 (-1164 |#3|))) |#3|) 34)))
-(((-702 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2206 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 |#3|) (-639 (-766)) (-639 (-1164 |#4|)) (-1256 (-639 (-1164 |#3|))) |#3|)) (-15 -3689 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 (-1164 |#3|)) (-639 |#3|) (-639 |#4|) (-639 (-766)) |#3|)) (-15 -3454 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 (-1164 |#4|)) (-639 |#3|) (-639 |#4|) (-639 (-639 (-2 (|:| -2734 (-766)) (|:| |pcoef| |#4|)))) (-639 (-766)) (-1256 (-639 (-1164 |#3|))) |#3|))) (-788) (-845) (-306) (-944 |#3| |#1| |#2|)) (T -702))
-((-3454 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-639 (-1164 *13))) (-5 *3 (-1164 *13)) (-5 *4 (-639 *12)) (-5 *5 (-639 *10)) (-5 *6 (-639 *13)) (-5 *7 (-639 (-639 (-2 (|:| -2734 (-766)) (|:| |pcoef| *13))))) (-5 *8 (-639 (-766))) (-5 *9 (-1256 (-639 (-1164 *10)))) (-4 *12 (-845)) (-4 *10 (-306)) (-4 *13 (-944 *10 *11 *12)) (-4 *11 (-788)) (-5 *1 (-702 *11 *12 *10 *13)))) (-3689 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-639 *11)) (-5 *5 (-639 (-1164 *9))) (-5 *6 (-639 *9)) (-5 *7 (-639 *12)) (-5 *8 (-639 (-766))) (-4 *11 (-845)) (-4 *9 (-306)) (-4 *12 (-944 *9 *10 *11)) (-4 *10 (-788)) (-5 *2 (-639 (-1164 *12))) (-5 *1 (-702 *10 *11 *9 *12)) (-5 *3 (-1164 *12)))) (-2206 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-639 (-1164 *11))) (-5 *3 (-1164 *11)) (-5 *4 (-639 *10)) (-5 *5 (-639 *8)) (-5 *6 (-639 (-766))) (-5 *7 (-1256 (-639 (-1164 *8)))) (-4 *10 (-845)) (-4 *8 (-306)) (-4 *11 (-944 *8 *9 *10)) (-4 *9 (-788)) (-5 *1 (-702 *9 *10 *8 *11)))))
-(-10 -7 (-15 -2206 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 |#3|) (-639 (-766)) (-639 (-1164 |#4|)) (-1256 (-639 (-1164 |#3|))) |#3|)) (-15 -3689 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 (-1164 |#3|)) (-639 |#3|) (-639 |#4|) (-639 (-766)) |#3|)) (-15 -3454 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 (-1164 |#4|)) (-639 |#3|) (-639 |#4|) (-639 (-639 (-2 (|:| -2734 (-766)) (|:| |pcoef| |#4|)))) (-639 (-766)) (-1256 (-639 (-1164 |#3|))) |#3|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-1601 (($ $) 42)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-1378 (($ |#1| (-766)) 40)) (-2076 (((-766) $) 44)) (-1573 ((|#1| $) 43)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-3598 (((-766) $) 45)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 39 (|has| |#1| (-171)))) (-3906 ((|#1| $ (-766)) 41)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 47) (($ |#1| $) 46)))
+((-4149 (((-1 |#3| |#2|) (-1168)) 11)) (-1845 (((-1 |#3| |#2|) |#1| (-1168)) 21)))
+(((-701 |#1| |#2| |#3|) (-10 -7 (-15 -4149 ((-1 |#3| |#2|) (-1168))) (-15 -1845 ((-1 |#3| |#2|) |#1| (-1168)))) (-610 (-535)) (-1207) (-1207)) (T -701))
+((-1845 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-5 *2 (-1 *6 *5)) (-5 *1 (-701 *3 *5 *6)) (-4 *3 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207)))) (-4149 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1 *6 *5)) (-5 *1 (-701 *4 *5 *6)) (-4 *4 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207)))))
+(-10 -7 (-15 -4149 ((-1 |#3| |#2|) (-1168))) (-15 -1845 ((-1 |#3| |#2|) |#1| (-1168))))
+((-3233 (((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 (-1164 |#4|)) (-639 |#3|) (-639 |#4|) (-639 (-639 (-2 (|:| -2542 (-766)) (|:| |pcoef| |#4|)))) (-639 (-766)) (-1256 (-639 (-1164 |#3|))) |#3|) 61)) (-3722 (((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 (-1164 |#3|)) (-639 |#3|) (-639 |#4|) (-639 (-766)) |#3|) 74)) (-2158 (((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 |#3|) (-639 (-766)) (-639 (-1164 |#4|)) (-1256 (-639 (-1164 |#3|))) |#3|) 34)))
+(((-702 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2158 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 |#3|) (-639 (-766)) (-639 (-1164 |#4|)) (-1256 (-639 (-1164 |#3|))) |#3|)) (-15 -3722 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 (-1164 |#3|)) (-639 |#3|) (-639 |#4|) (-639 (-766)) |#3|)) (-15 -3233 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 (-1164 |#4|)) (-639 |#3|) (-639 |#4|) (-639 (-639 (-2 (|:| -2542 (-766)) (|:| |pcoef| |#4|)))) (-639 (-766)) (-1256 (-639 (-1164 |#3|))) |#3|))) (-788) (-845) (-306) (-944 |#3| |#1| |#2|)) (T -702))
+((-3233 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-639 (-1164 *13))) (-5 *3 (-1164 *13)) (-5 *4 (-639 *12)) (-5 *5 (-639 *10)) (-5 *6 (-639 *13)) (-5 *7 (-639 (-639 (-2 (|:| -2542 (-766)) (|:| |pcoef| *13))))) (-5 *8 (-639 (-766))) (-5 *9 (-1256 (-639 (-1164 *10)))) (-4 *12 (-845)) (-4 *10 (-306)) (-4 *13 (-944 *10 *11 *12)) (-4 *11 (-788)) (-5 *1 (-702 *11 *12 *10 *13)))) (-3722 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-639 *11)) (-5 *5 (-639 (-1164 *9))) (-5 *6 (-639 *9)) (-5 *7 (-639 *12)) (-5 *8 (-639 (-766))) (-4 *11 (-845)) (-4 *9 (-306)) (-4 *12 (-944 *9 *10 *11)) (-4 *10 (-788)) (-5 *2 (-639 (-1164 *12))) (-5 *1 (-702 *10 *11 *9 *12)) (-5 *3 (-1164 *12)))) (-2158 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-639 (-1164 *11))) (-5 *3 (-1164 *11)) (-5 *4 (-639 *10)) (-5 *5 (-639 *8)) (-5 *6 (-639 (-766))) (-5 *7 (-1256 (-639 (-1164 *8)))) (-4 *10 (-845)) (-4 *8 (-306)) (-4 *11 (-944 *8 *9 *10)) (-4 *9 (-788)) (-5 *1 (-702 *9 *10 *8 *11)))))
+(-10 -7 (-15 -2158 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 |#3|) (-639 (-766)) (-639 (-1164 |#4|)) (-1256 (-639 (-1164 |#3|))) |#3|)) (-15 -3722 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 (-1164 |#3|)) (-639 |#3|) (-639 |#4|) (-639 (-766)) |#3|)) (-15 -3233 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-639 |#2|) (-639 (-1164 |#4|)) (-639 |#3|) (-639 |#4|) (-639 (-639 (-2 (|:| -2542 (-766)) (|:| |pcoef| |#4|)))) (-639 (-766)) (-1256 (-639 (-1164 |#3|))) |#3|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1600 (($ $) 42)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-1377 (($ |#1| (-766)) 40)) (-3161 (((-766) $) 44)) (-1573 ((|#1| $) 43)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2250 (((-766) $) 45)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 39 (|has| |#1| (-171)))) (-2266 ((|#1| $ (-766)) 41)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 47) (($ |#1| $) 46)))
(((-703 |#1|) (-139) (-1044)) (T -703))
-((-3598 (*1 *2 *1) (-12 (-4 *1 (-703 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))) (-2076 (*1 *2 *1) (-12 (-4 *1 (-703 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))) (-1573 (*1 *2 *1) (-12 (-4 *1 (-703 *2)) (-4 *2 (-1044)))) (-1601 (*1 *1 *1) (-12 (-4 *1 (-703 *2)) (-4 *2 (-1044)))) (-3906 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-703 *2)) (-4 *2 (-1044)))) (-1378 (*1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-703 *2)) (-4 *2 (-1044)))))
-(-13 (-1044) (-111 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-171)) (-6 (-38 |t#1|)) |%noBranch|) (-15 -3598 ((-766) $)) (-15 -2076 ((-766) $)) (-15 -1573 (|t#1| $)) (-15 -1601 ($ $)) (-15 -3906 (|t#1| $ (-766))) (-15 -1378 ($ |t#1| (-766)))))
+((-2250 (*1 *2 *1) (-12 (-4 *1 (-703 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))) (-3161 (*1 *2 *1) (-12 (-4 *1 (-703 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))) (-1573 (*1 *2 *1) (-12 (-4 *1 (-703 *2)) (-4 *2 (-1044)))) (-1600 (*1 *1 *1) (-12 (-4 *1 (-703 *2)) (-4 *2 (-1044)))) (-2266 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-703 *2)) (-4 *2 (-1044)))) (-1377 (*1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-703 *2)) (-4 *2 (-1044)))))
+(-13 (-1044) (-111 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-171)) (-6 (-38 |t#1|)) |%noBranch|) (-15 -2250 ((-766) $)) (-15 -3161 ((-766) $)) (-15 -1573 (|t#1| $)) (-15 -1600 ($ $)) (-15 -2266 (|t#1| $ (-766))) (-15 -1377 ($ |t#1| (-766)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-171)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 |#1|) |has| |#1| (-171)) ((-609 (-857)) . T) ((-642 |#1|) . T) ((-642 $) . T) ((-712 |#1|) |has| |#1| (-171)) ((-721) . T) ((-1050 |#1|) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
((-4152 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
(((-704 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -4152 (|#6| (-1 |#4| |#1|) |#3|))) (-554) (-1232 |#1|) (-1232 (-406 |#2|)) (-554) (-1232 |#4|) (-1232 (-406 |#5|))) (T -704))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-554)) (-4 *7 (-554)) (-4 *6 (-1232 *5)) (-4 *2 (-1232 (-406 *8))) (-5 *1 (-704 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1232 (-406 *6))) (-4 *8 (-1232 *7)))))
(-10 -7 (-15 -4152 (|#6| (-1 |#4| |#1|) |#3|)))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2114 (((-1150) (-857)) 31)) (-1479 (((-1261) (-1150)) 28)) (-2346 (((-1150) (-857)) 24)) (-3660 (((-1150) (-857)) 25)) (-4054 (((-857) $) NIL) (((-1150) (-857)) 23)) (-1731 (((-112) $ $) NIL)))
-(((-705) (-13 (-1092) (-10 -7 (-15 -4054 ((-1150) (-857))) (-15 -2346 ((-1150) (-857))) (-15 -3660 ((-1150) (-857))) (-15 -2114 ((-1150) (-857))) (-15 -1479 ((-1261) (-1150)))))) (T -705))
-((-4054 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))) (-2346 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))) (-3660 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))) (-2114 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))) (-1479 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-705)))))
-(-13 (-1092) (-10 -7 (-15 -4054 ((-1150) (-857))) (-15 -2346 ((-1150) (-857))) (-15 -3660 ((-1150) (-857))) (-15 -2114 ((-1150) (-857))) (-15 -1479 ((-1261) (-1150)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-1811 (($ $ $) NIL)) (-1955 (($ |#1| |#2|) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-1957 (((-112) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3518 ((|#2| $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2302 (((-3 $ "failed") $ $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) ((|#1| $) NIL)) (-2579 (((-766)) NIL)) (-2922 (((-112) $ $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
-(((-706 |#1| |#2| |#3| |#4| |#5|) (-13 (-362) (-10 -8 (-15 -3518 (|#2| $)) (-15 -4054 (|#1| $)) (-15 -1955 ($ |#1| |#2|)) (-15 -2302 ((-3 $ "failed") $ $)))) (-171) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -706))
-((-3518 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-706 *3 *2 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-4054 (*1 *2 *1) (-12 (-4 *2 (-171)) (-5 *1 (-706 *2 *3 *4 *5 *6)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1955 (*1 *1 *2 *3) (-12 (-5 *1 (-706 *2 *3 *4 *5 *6)) (-4 *2 (-171)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-2302 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-706 *2 *3 *4 *5 *6)) (-4 *2 (-171)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
-(-13 (-362) (-10 -8 (-15 -3518 (|#2| $)) (-15 -4054 (|#1| $)) (-15 -1955 ($ |#1| |#2|)) (-15 -2302 ((-3 $ "failed") $ $))))
-((-4041 (((-112) $ $) 77)) (-1952 (((-112) $) 30)) (-2844 (((-1256 |#1|) $ (-766)) NIL)) (-1402 (((-639 (-1074)) $) NIL)) (-2427 (($ (-1164 |#1|)) NIL)) (-1599 (((-1164 $) $ (-1074)) NIL) (((-1164 |#1|) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 (-1074))) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3258 (($ $ $) NIL (|has| |#1| (-554)))) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-2798 (($ $) NIL (|has| |#1| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-1382 (((-766)) 46 (|has| |#1| (-367)))) (-2897 (($ $ (-766)) NIL)) (-3028 (($ $ (-766)) NIL)) (-3669 ((|#2| |#2|) 43)) (-4157 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-451)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-1074) "failed") $) NIL)) (-3961 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-1074) $) NIL)) (-2835 (($ $ $ (-1074)) NIL (|has| |#1| (-171))) ((|#1| $ $) NIL (|has| |#1| (-171)))) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1601 (($ $) 33)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1955 (($ |#2|) 41)) (-3668 (((-3 $ "failed") $) 85)) (-1448 (($) 50 (|has| |#1| (-367)))) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-4267 (($ $ $) NIL)) (-2375 (($ $ $) NIL (|has| |#1| (-554)))) (-2622 (((-2 (|:| -4221 |#1|) (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-554)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-1498 (($ $) NIL (|has| |#1| (-451))) (($ $ (-1074)) NIL (|has| |#1| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#1| (-904)))) (-2762 (((-953 $)) 79)) (-3122 (($ $ |#1| (-766) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1074) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1074) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1900 (((-766) $ $) NIL (|has| |#1| (-554)))) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-3699 (((-3 $ "failed") $) NIL (|has| |#1| (-1143)))) (-1390 (($ (-1164 |#1|) (-1074)) NIL) (($ (-1164 $) (-1074)) NIL)) (-3374 (($ $ (-766)) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-766)) 76) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ (-1074)) NIL) (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3518 ((|#2|) 44)) (-2076 (((-766) $) NIL) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2836 (($ (-1 (-766) (-766)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4298 (((-1164 |#1|) $) NIL)) (-3372 (((-3 (-1074) "failed") $) NIL)) (-1999 (((-916) $) NIL (|has| |#1| (-367)))) (-1943 ((|#2| $) 40)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) 28)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-2913 (((-1150) $) NIL)) (-3594 (((-2 (|:| -2097 $) (|:| -2264 $)) $ (-766)) NIL)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| (-1074)) (|:| -1960 (-766))) "failed") $) NIL)) (-2667 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3729 (($) NIL (|has| |#1| (-1143)) CONST)) (-2466 (($ (-916)) NIL (|has| |#1| (-367)))) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#1| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-2258 (($ $) 78 (|has| |#1| (-348)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1074) |#1|) NIL) (($ $ (-639 (-1074)) (-639 |#1|)) NIL) (($ $ (-1074) $) NIL) (($ $ (-639 (-1074)) (-639 $)) NIL)) (-1577 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-406 $) (-406 $) (-406 $)) NIL (|has| |#1| (-554))) ((|#1| (-406 $) |#1|) NIL (|has| |#1| (-362))) (((-406 $) $ (-406 $)) NIL (|has| |#1| (-554)))) (-1530 (((-3 $ "failed") $ (-766)) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 86 (|has| |#1| (-362)))) (-2455 (($ $ (-1074)) NIL (|has| |#1| (-171))) ((|#1| $) NIL (|has| |#1| (-171)))) (-4029 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3598 (((-766) $) 31) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-1074) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-3900 ((|#1| $) NIL (|has| |#1| (-451))) (($ $ (-1074)) NIL (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4064 (((-953 $)) 35)) (-3586 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554))) (((-3 (-406 $) "failed") (-406 $) $) NIL (|has| |#1| (-554)))) (-4054 (((-857) $) 60) (($ (-562)) NIL) (($ |#1|) 57) (($ (-1074)) NIL) (($ |#2|) 67) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-766)) 62) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2286 (($) 20 T CONST)) (-2218 (((-1256 |#1|) $) 74)) (-2617 (($ (-1256 |#1|)) 49)) (-2294 (($) 8 T CONST)) (-3114 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4251 (((-1256 |#1|) $) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) 68)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $) 71) (($ $ $) NIL)) (-1835 (($ $ $) 32)) (** (($ $ (-916)) NIL) (($ $ (-766)) 80)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 56) (($ $ $) 73) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 54) (($ $ |#1|) NIL)))
-(((-707 |#1| |#2|) (-13 (-1232 |#1|) (-612 |#2|) (-10 -8 (-15 -3669 (|#2| |#2|)) (-15 -3518 (|#2|)) (-15 -1955 ($ |#2|)) (-15 -1943 (|#2| $)) (-15 -2218 ((-1256 |#1|) $)) (-15 -2617 ($ (-1256 |#1|))) (-15 -4251 ((-1256 |#1|) $)) (-15 -2762 ((-953 $))) (-15 -4064 ((-953 $))) (IF (|has| |#1| (-348)) (-15 -2258 ($ $)) |%noBranch|) (IF (|has| |#1| (-367)) (-6 (-367)) |%noBranch|))) (-1044) (-1232 |#1|)) (T -707))
-((-3669 (*1 *2 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-707 *3 *2)) (-4 *2 (-1232 *3)))) (-3518 (*1 *2) (-12 (-4 *2 (-1232 *3)) (-5 *1 (-707 *3 *2)) (-4 *3 (-1044)))) (-1955 (*1 *1 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-707 *3 *2)) (-4 *2 (-1232 *3)))) (-1943 (*1 *2 *1) (-12 (-4 *2 (-1232 *3)) (-5 *1 (-707 *3 *2)) (-4 *3 (-1044)))) (-2218 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-5 *2 (-1256 *3)) (-5 *1 (-707 *3 *4)) (-4 *4 (-1232 *3)))) (-2617 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1044)) (-5 *1 (-707 *3 *4)) (-4 *4 (-1232 *3)))) (-4251 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-5 *2 (-1256 *3)) (-5 *1 (-707 *3 *4)) (-4 *4 (-1232 *3)))) (-2762 (*1 *2) (-12 (-4 *3 (-1044)) (-5 *2 (-953 (-707 *3 *4))) (-5 *1 (-707 *3 *4)) (-4 *4 (-1232 *3)))) (-4064 (*1 *2) (-12 (-4 *3 (-1044)) (-5 *2 (-953 (-707 *3 *4))) (-5 *1 (-707 *3 *4)) (-4 *4 (-1232 *3)))) (-2258 (*1 *1 *1) (-12 (-4 *2 (-348)) (-4 *2 (-1044)) (-5 *1 (-707 *2 *3)) (-4 *3 (-1232 *2)))))
-(-13 (-1232 |#1|) (-612 |#2|) (-10 -8 (-15 -3669 (|#2| |#2|)) (-15 -3518 (|#2|)) (-15 -1955 ($ |#2|)) (-15 -1943 (|#2| $)) (-15 -2218 ((-1256 |#1|) $)) (-15 -2617 ($ (-1256 |#1|))) (-15 -4251 ((-1256 |#1|) $)) (-15 -2762 ((-953 $))) (-15 -4064 ((-953 $))) (IF (|has| |#1| (-348)) (-15 -2258 ($ $)) |%noBranch|) (IF (|has| |#1| (-367)) (-6 (-367)) |%noBranch|)))
-((-4041 (((-112) $ $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-2466 ((|#1| $) 13)) (-1709 (((-1112) $) NIL)) (-1960 ((|#2| $) 12)) (-4066 (($ |#1| |#2|) 16)) (-4054 (((-857) $) NIL) (($ (-2 (|:| -2466 |#1|) (|:| -1960 |#2|))) 15) (((-2 (|:| -2466 |#1|) (|:| -1960 |#2|)) $) 14)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 11)))
-(((-708 |#1| |#2| |#3|) (-13 (-845) (-489 (-2 (|:| -2466 |#1|) (|:| -1960 |#2|))) (-10 -8 (-15 -1960 (|#2| $)) (-15 -2466 (|#1| $)) (-15 -4066 ($ |#1| |#2|)))) (-845) (-1092) (-1 (-112) (-2 (|:| -2466 |#1|) (|:| -1960 |#2|)) (-2 (|:| -2466 |#1|) (|:| -1960 |#2|)))) (T -708))
-((-1960 (*1 *2 *1) (-12 (-4 *2 (-1092)) (-5 *1 (-708 *3 *2 *4)) (-4 *3 (-845)) (-14 *4 (-1 (-112) (-2 (|:| -2466 *3) (|:| -1960 *2)) (-2 (|:| -2466 *3) (|:| -1960 *2)))))) (-2466 (*1 *2 *1) (-12 (-4 *2 (-845)) (-5 *1 (-708 *2 *3 *4)) (-4 *3 (-1092)) (-14 *4 (-1 (-112) (-2 (|:| -2466 *2) (|:| -1960 *3)) (-2 (|:| -2466 *2) (|:| -1960 *3)))))) (-4066 (*1 *1 *2 *3) (-12 (-5 *1 (-708 *2 *3 *4)) (-4 *2 (-845)) (-4 *3 (-1092)) (-14 *4 (-1 (-112) (-2 (|:| -2466 *2) (|:| -1960 *3)) (-2 (|:| -2466 *2) (|:| -1960 *3)))))))
-(-13 (-845) (-489 (-2 (|:| -2466 |#1|) (|:| -1960 |#2|))) (-10 -8 (-15 -1960 (|#2| $)) (-15 -2466 (|#1| $)) (-15 -4066 ($ |#1| |#2|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 59)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 89) (((-3 (-114) "failed") $) 95)) (-3961 ((|#1| $) NIL) (((-114) $) 39)) (-3668 (((-3 $ "failed") $) 90)) (-1786 ((|#2| (-114) |#2|) 82)) (-1957 (((-112) $) NIL)) (-1860 (($ |#1| (-360 (-114))) 14)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1422 (($ $ (-1 |#2| |#2|)) 58)) (-3048 (($ $ (-1 |#2| |#2|)) 44)) (-2343 ((|#2| $ |#2|) 33)) (-2838 ((|#1| |#1|) 105 (|has| |#1| (-171)))) (-4054 (((-857) $) 66) (($ (-562)) 18) (($ |#1|) 17) (($ (-114)) 23)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) 37)) (-1563 (($ $) 99 (|has| |#1| (-171))) (($ $ $) 103 (|has| |#1| (-171)))) (-2286 (($) 21 T CONST)) (-2294 (($) 9 T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) 48) (($ $ $) NIL)) (-1835 (($ $ $) 73)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ (-114) (-562)) NIL) (($ $ (-562)) 57)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 98) (($ $ $) 50) (($ |#1| $) 96 (|has| |#1| (-171))) (($ $ |#1|) 97 (|has| |#1| (-171)))))
-(((-709 |#1| |#2|) (-13 (-1044) (-1033 |#1|) (-1033 (-114)) (-285 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-171)) (PROGN (-6 (-38 |#1|)) (-15 -1563 ($ $)) (-15 -1563 ($ $ $)) (-15 -2838 (|#1| |#1|))) |%noBranch|) (-15 -3048 ($ $ (-1 |#2| |#2|))) (-15 -1422 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-562))) (-15 ** ($ $ (-562))) (-15 -1786 (|#2| (-114) |#2|)) (-15 -1860 ($ |#1| (-360 (-114)))))) (-1044) (-642 |#1|)) (T -709))
-((-1563 (*1 *1 *1) (-12 (-4 *2 (-171)) (-4 *2 (-1044)) (-5 *1 (-709 *2 *3)) (-4 *3 (-642 *2)))) (-1563 (*1 *1 *1 *1) (-12 (-4 *2 (-171)) (-4 *2 (-1044)) (-5 *1 (-709 *2 *3)) (-4 *3 (-642 *2)))) (-2838 (*1 *2 *2) (-12 (-4 *2 (-171)) (-4 *2 (-1044)) (-5 *1 (-709 *2 *3)) (-4 *3 (-642 *2)))) (-3048 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-642 *3)) (-4 *3 (-1044)) (-5 *1 (-709 *3 *4)))) (-1422 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-642 *3)) (-4 *3 (-1044)) (-5 *1 (-709 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-562)) (-4 *4 (-1044)) (-5 *1 (-709 *4 *5)) (-4 *5 (-642 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *3 (-1044)) (-5 *1 (-709 *3 *4)) (-4 *4 (-642 *3)))) (-1786 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-4 *4 (-1044)) (-5 *1 (-709 *4 *2)) (-4 *2 (-642 *4)))) (-1860 (*1 *1 *2 *3) (-12 (-5 *3 (-360 (-114))) (-4 *2 (-1044)) (-5 *1 (-709 *2 *4)) (-4 *4 (-642 *2)))))
-(-13 (-1044) (-1033 |#1|) (-1033 (-114)) (-285 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-171)) (PROGN (-6 (-38 |#1|)) (-15 -1563 ($ $)) (-15 -1563 ($ $ $)) (-15 -2838 (|#1| |#1|))) |%noBranch|) (-15 -3048 ($ $ (-1 |#2| |#2|))) (-15 -1422 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-562))) (-15 ** ($ $ (-562))) (-15 -1786 (|#2| (-114) |#2|)) (-15 -1860 ($ |#1| (-360 (-114))))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 33)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1955 (($ |#1| |#2|) 25)) (-3668 (((-3 $ "failed") $) 48)) (-1957 (((-112) $) 35)) (-3518 ((|#2| $) 12)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 49)) (-1709 (((-1112) $) NIL)) (-2302 (((-3 $ "failed") $ $) 47)) (-4054 (((-857) $) 24) (($ (-562)) 19) ((|#1| $) 13)) (-2579 (((-766)) 28)) (-2286 (($) 16 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 38)) (-1848 (($ $) 43) (($ $ $) 37)) (-1835 (($ $ $) 40)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 21) (($ $ $) 20)))
-(((-710 |#1| |#2| |#3| |#4| |#5|) (-13 (-1044) (-10 -8 (-15 -3518 (|#2| $)) (-15 -4054 (|#1| $)) (-15 -1955 ($ |#1| |#2|)) (-15 -2302 ((-3 $ "failed") $ $)) (-15 -3668 ((-3 $ "failed") $)) (-15 -1525 ($ $)))) (-171) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -710))
-((-3668 (*1 *1 *1) (|partial| -12 (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *2 (-171)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3518 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-710 *3 *2 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-4054 (*1 *2 *1) (-12 (-4 *2 (-171)) (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1955 (*1 *1 *2 *3) (-12 (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *2 (-171)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-2302 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *2 (-171)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1525 (*1 *1 *1) (-12 (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *2 (-171)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
-(-13 (-1044) (-10 -8 (-15 -3518 (|#2| $)) (-15 -4054 (|#1| $)) (-15 -1955 ($ |#1| |#2|)) (-15 -2302 ((-3 $ "failed") $ $)) (-15 -3668 ((-3 $ "failed") $)) (-15 -1525 ($ $))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2415 (((-1150) (-857)) 31)) (-1479 (((-1261) (-1150)) 28)) (-4106 (((-1150) (-857)) 24)) (-1605 (((-1150) (-857)) 25)) (-4053 (((-857) $) NIL) (((-1150) (-857)) 23)) (-1733 (((-112) $ $) NIL)))
+(((-705) (-13 (-1092) (-10 -7 (-15 -4053 ((-1150) (-857))) (-15 -4106 ((-1150) (-857))) (-15 -1605 ((-1150) (-857))) (-15 -2415 ((-1150) (-857))) (-15 -1479 ((-1261) (-1150)))))) (T -705))
+((-4053 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))) (-4106 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))) (-1605 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))) (-2415 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))) (-1479 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-705)))))
+(-13 (-1092) (-10 -7 (-15 -4053 ((-1150) (-857))) (-15 -4106 ((-1150) (-857))) (-15 -1605 ((-1150) (-857))) (-15 -2415 ((-1150) (-857))) (-15 -1479 ((-1261) (-1150)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-1810 (($ $ $) NIL)) (-1954 (($ |#1| |#2|) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-4367 (((-112) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2685 ((|#2| $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3649 (((-3 $ "failed") $ $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) ((|#1| $) NIL)) (-1568 (((-766)) NIL)) (-3799 (((-112) $ $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
+(((-706 |#1| |#2| |#3| |#4| |#5|) (-13 (-362) (-10 -8 (-15 -2685 (|#2| $)) (-15 -4053 (|#1| $)) (-15 -1954 ($ |#1| |#2|)) (-15 -3649 ((-3 $ "failed") $ $)))) (-171) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -706))
+((-2685 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-706 *3 *2 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-4053 (*1 *2 *1) (-12 (-4 *2 (-171)) (-5 *1 (-706 *2 *3 *4 *5 *6)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1954 (*1 *1 *2 *3) (-12 (-5 *1 (-706 *2 *3 *4 *5 *6)) (-4 *2 (-171)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3649 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-706 *2 *3 *4 *5 *6)) (-4 *2 (-171)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
+(-13 (-362) (-10 -8 (-15 -2685 (|#2| $)) (-15 -4053 (|#1| $)) (-15 -1954 ($ |#1| |#2|)) (-15 -3649 ((-3 $ "failed") $ $))))
+((-4041 (((-112) $ $) 77)) (-4325 (((-112) $) 30)) (-4263 (((-1256 |#1|) $ (-766)) NIL)) (-1401 (((-639 (-1074)) $) NIL)) (-2505 (($ (-1164 |#1|)) NIL)) (-1602 (((-1164 $) $ (-1074)) NIL) (((-1164 |#1|) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 (-1074))) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-2035 (($ $ $) NIL (|has| |#1| (-554)))) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1977 (($ $) NIL (|has| |#1| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-1382 (((-766)) 46 (|has| |#1| (-367)))) (-1730 (($ $ (-766)) NIL)) (-3538 (($ $ (-766)) NIL)) (-1707 ((|#2| |#2|) 43)) (-2687 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-451)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-1074) "failed") $) NIL)) (-3960 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-1074) $) NIL)) (-2355 (($ $ $ (-1074)) NIL (|has| |#1| (-171))) ((|#1| $ $) NIL (|has| |#1| (-171)))) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-1600 (($ $) 33)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1954 (($ |#2|) 41)) (-1694 (((-3 $ "failed") $) 85)) (-1447 (($) 50 (|has| |#1| (-367)))) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-4296 (($ $ $) NIL)) (-3127 (($ $ $) NIL (|has| |#1| (-554)))) (-3840 (((-2 (|:| -4221 |#1|) (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-554)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-2578 (($ $) NIL (|has| |#1| (-451))) (($ $ (-1074)) NIL (|has| |#1| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#1| (-904)))) (-2794 (((-953 $)) 79)) (-3066 (($ $ |#1| (-766) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1074) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1074) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1993 (((-766) $ $) NIL (|has| |#1| (-554)))) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-3828 (((-3 $ "failed") $) NIL (|has| |#1| (-1143)))) (-1389 (($ (-1164 |#1|) (-1074)) NIL) (($ (-1164 $) (-1074)) NIL)) (-3662 (($ $ (-766)) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-766)) 76) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ (-1074)) NIL) (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-2685 ((|#2|) 44)) (-3161 (((-766) $) NIL) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2363 (($ (-1 (-766) (-766)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1556 (((-1164 |#1|) $) NIL)) (-3640 (((-3 (-1074) "failed") $) NIL)) (-3549 (((-916) $) NIL (|has| |#1| (-367)))) (-1942 ((|#2| $) 40)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) 28)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3696 (((-1150) $) NIL)) (-2215 (((-2 (|:| -3380 $) (|:| -1441 $)) $ (-766)) NIL)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| (-1074)) (|:| -1300 (-766))) "failed") $) NIL)) (-3081 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3730 (($) NIL (|has| |#1| (-1143)) CONST)) (-2464 (($ (-916)) NIL (|has| |#1| (-367)))) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#1| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-1366 (($ $) 78 (|has| |#1| (-348)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) 84 (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1074) |#1|) NIL) (($ $ (-639 (-1074)) (-639 |#1|)) NIL) (($ $ (-1074) $) NIL) (($ $ (-639 (-1074)) (-639 $)) NIL)) (-2044 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-406 $) (-406 $) (-406 $)) NIL (|has| |#1| (-554))) ((|#1| (-406 $) |#1|) NIL (|has| |#1| (-362))) (((-406 $) $ (-406 $)) NIL (|has| |#1| (-554)))) (-1610 (((-3 $ "failed") $ (-766)) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 86 (|has| |#1| (-362)))) (-2736 (($ $ (-1074)) NIL (|has| |#1| (-171))) ((|#1| $) NIL (|has| |#1| (-171)))) (-4029 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-2250 (((-766) $) 31) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-1074) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-2201 ((|#1| $) NIL (|has| |#1| (-451))) (($ $ (-1074)) NIL (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-3076 (((-953 $)) 35)) (-2155 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554))) (((-3 (-406 $) "failed") (-406 $) $) NIL (|has| |#1| (-554)))) (-4053 (((-857) $) 60) (($ (-562)) NIL) (($ |#1|) 57) (($ (-1074)) NIL) (($ |#2|) 67) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-766)) 62) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2285 (($) 20 T CONST)) (-2283 (((-1256 |#1|) $) 74)) (-3781 (($ (-1256 |#1|)) 49)) (-2294 (($) 8 T CONST)) (-3113 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2338 (((-1256 |#1|) $) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) 68)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $) 71) (($ $ $) NIL)) (-1836 (($ $ $) 32)) (** (($ $ (-916)) NIL) (($ $ (-766)) 80)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 56) (($ $ $) 73) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 54) (($ $ |#1|) NIL)))
+(((-707 |#1| |#2|) (-13 (-1232 |#1|) (-612 |#2|) (-10 -8 (-15 -1707 (|#2| |#2|)) (-15 -2685 (|#2|)) (-15 -1954 ($ |#2|)) (-15 -1942 (|#2| $)) (-15 -2283 ((-1256 |#1|) $)) (-15 -3781 ($ (-1256 |#1|))) (-15 -2338 ((-1256 |#1|) $)) (-15 -2794 ((-953 $))) (-15 -3076 ((-953 $))) (IF (|has| |#1| (-348)) (-15 -1366 ($ $)) |%noBranch|) (IF (|has| |#1| (-367)) (-6 (-367)) |%noBranch|))) (-1044) (-1232 |#1|)) (T -707))
+((-1707 (*1 *2 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-707 *3 *2)) (-4 *2 (-1232 *3)))) (-2685 (*1 *2) (-12 (-4 *2 (-1232 *3)) (-5 *1 (-707 *3 *2)) (-4 *3 (-1044)))) (-1954 (*1 *1 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-707 *3 *2)) (-4 *2 (-1232 *3)))) (-1942 (*1 *2 *1) (-12 (-4 *2 (-1232 *3)) (-5 *1 (-707 *3 *2)) (-4 *3 (-1044)))) (-2283 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-5 *2 (-1256 *3)) (-5 *1 (-707 *3 *4)) (-4 *4 (-1232 *3)))) (-3781 (*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1044)) (-5 *1 (-707 *3 *4)) (-4 *4 (-1232 *3)))) (-2338 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-5 *2 (-1256 *3)) (-5 *1 (-707 *3 *4)) (-4 *4 (-1232 *3)))) (-2794 (*1 *2) (-12 (-4 *3 (-1044)) (-5 *2 (-953 (-707 *3 *4))) (-5 *1 (-707 *3 *4)) (-4 *4 (-1232 *3)))) (-3076 (*1 *2) (-12 (-4 *3 (-1044)) (-5 *2 (-953 (-707 *3 *4))) (-5 *1 (-707 *3 *4)) (-4 *4 (-1232 *3)))) (-1366 (*1 *1 *1) (-12 (-4 *2 (-348)) (-4 *2 (-1044)) (-5 *1 (-707 *2 *3)) (-4 *3 (-1232 *2)))))
+(-13 (-1232 |#1|) (-612 |#2|) (-10 -8 (-15 -1707 (|#2| |#2|)) (-15 -2685 (|#2|)) (-15 -1954 ($ |#2|)) (-15 -1942 (|#2| $)) (-15 -2283 ((-1256 |#1|) $)) (-15 -3781 ($ (-1256 |#1|))) (-15 -2338 ((-1256 |#1|) $)) (-15 -2794 ((-953 $))) (-15 -3076 ((-953 $))) (IF (|has| |#1| (-348)) (-15 -1366 ($ $)) |%noBranch|) (IF (|has| |#1| (-367)) (-6 (-367)) |%noBranch|)))
+((-4041 (((-112) $ $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-2464 ((|#1| $) 13)) (-1709 (((-1112) $) NIL)) (-1300 ((|#2| $) 12)) (-4064 (($ |#1| |#2|) 16)) (-4053 (((-857) $) NIL) (($ (-2 (|:| -2464 |#1|) (|:| -1300 |#2|))) 15) (((-2 (|:| -2464 |#1|) (|:| -1300 |#2|)) $) 14)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 11)))
+(((-708 |#1| |#2| |#3|) (-13 (-845) (-489 (-2 (|:| -2464 |#1|) (|:| -1300 |#2|))) (-10 -8 (-15 -1300 (|#2| $)) (-15 -2464 (|#1| $)) (-15 -4064 ($ |#1| |#2|)))) (-845) (-1092) (-1 (-112) (-2 (|:| -2464 |#1|) (|:| -1300 |#2|)) (-2 (|:| -2464 |#1|) (|:| -1300 |#2|)))) (T -708))
+((-1300 (*1 *2 *1) (-12 (-4 *2 (-1092)) (-5 *1 (-708 *3 *2 *4)) (-4 *3 (-845)) (-14 *4 (-1 (-112) (-2 (|:| -2464 *3) (|:| -1300 *2)) (-2 (|:| -2464 *3) (|:| -1300 *2)))))) (-2464 (*1 *2 *1) (-12 (-4 *2 (-845)) (-5 *1 (-708 *2 *3 *4)) (-4 *3 (-1092)) (-14 *4 (-1 (-112) (-2 (|:| -2464 *2) (|:| -1300 *3)) (-2 (|:| -2464 *2) (|:| -1300 *3)))))) (-4064 (*1 *1 *2 *3) (-12 (-5 *1 (-708 *2 *3 *4)) (-4 *2 (-845)) (-4 *3 (-1092)) (-14 *4 (-1 (-112) (-2 (|:| -2464 *2) (|:| -1300 *3)) (-2 (|:| -2464 *2) (|:| -1300 *3)))))))
+(-13 (-845) (-489 (-2 (|:| -2464 |#1|) (|:| -1300 |#2|))) (-10 -8 (-15 -1300 (|#2| $)) (-15 -2464 (|#1| $)) (-15 -4064 ($ |#1| |#2|))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 59)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 89) (((-3 (-114) "failed") $) 95)) (-3960 ((|#1| $) NIL) (((-114) $) 39)) (-1694 (((-3 $ "failed") $) 90)) (-3208 ((|#2| (-114) |#2|) 82)) (-4367 (((-112) $) NIL)) (-2755 (($ |#1| (-360 (-114))) 14)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1910 (($ $ (-1 |#2| |#2|)) 58)) (-3610 (($ $ (-1 |#2| |#2|)) 44)) (-2343 ((|#2| $ |#2|) 33)) (-2383 ((|#1| |#1|) 105 (|has| |#1| (-171)))) (-4053 (((-857) $) 66) (($ (-562)) 18) (($ |#1|) 17) (($ (-114)) 23)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) 37)) (-1926 (($ $) 99 (|has| |#1| (-171))) (($ $ $) 103 (|has| |#1| (-171)))) (-2285 (($) 21 T CONST)) (-2294 (($) 9 T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) 48) (($ $ $) NIL)) (-1836 (($ $ $) 73)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ (-114) (-562)) NIL) (($ $ (-562)) 57)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 98) (($ $ $) 50) (($ |#1| $) 96 (|has| |#1| (-171))) (($ $ |#1|) 97 (|has| |#1| (-171)))))
+(((-709 |#1| |#2|) (-13 (-1044) (-1033 |#1|) (-1033 (-114)) (-285 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-171)) (PROGN (-6 (-38 |#1|)) (-15 -1926 ($ $)) (-15 -1926 ($ $ $)) (-15 -2383 (|#1| |#1|))) |%noBranch|) (-15 -3610 ($ $ (-1 |#2| |#2|))) (-15 -1910 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-562))) (-15 ** ($ $ (-562))) (-15 -3208 (|#2| (-114) |#2|)) (-15 -2755 ($ |#1| (-360 (-114)))))) (-1044) (-642 |#1|)) (T -709))
+((-1926 (*1 *1 *1) (-12 (-4 *2 (-171)) (-4 *2 (-1044)) (-5 *1 (-709 *2 *3)) (-4 *3 (-642 *2)))) (-1926 (*1 *1 *1 *1) (-12 (-4 *2 (-171)) (-4 *2 (-1044)) (-5 *1 (-709 *2 *3)) (-4 *3 (-642 *2)))) (-2383 (*1 *2 *2) (-12 (-4 *2 (-171)) (-4 *2 (-1044)) (-5 *1 (-709 *2 *3)) (-4 *3 (-642 *2)))) (-3610 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-642 *3)) (-4 *3 (-1044)) (-5 *1 (-709 *3 *4)))) (-1910 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-642 *3)) (-4 *3 (-1044)) (-5 *1 (-709 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-562)) (-4 *4 (-1044)) (-5 *1 (-709 *4 *5)) (-4 *5 (-642 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *3 (-1044)) (-5 *1 (-709 *3 *4)) (-4 *4 (-642 *3)))) (-3208 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-4 *4 (-1044)) (-5 *1 (-709 *4 *2)) (-4 *2 (-642 *4)))) (-2755 (*1 *1 *2 *3) (-12 (-5 *3 (-360 (-114))) (-4 *2 (-1044)) (-5 *1 (-709 *2 *4)) (-4 *4 (-642 *2)))))
+(-13 (-1044) (-1033 |#1|) (-1033 (-114)) (-285 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-171)) (PROGN (-6 (-38 |#1|)) (-15 -1926 ($ $)) (-15 -1926 ($ $ $)) (-15 -2383 (|#1| |#1|))) |%noBranch|) (-15 -3610 ($ $ (-1 |#2| |#2|))) (-15 -1910 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-562))) (-15 ** ($ $ (-562))) (-15 -3208 (|#2| (-114) |#2|)) (-15 -2755 ($ |#1| (-360 (-114))))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 33)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1954 (($ |#1| |#2|) 25)) (-1694 (((-3 $ "failed") $) 48)) (-4367 (((-112) $) 35)) (-2685 ((|#2| $) 12)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 49)) (-1709 (((-1112) $) NIL)) (-3649 (((-3 $ "failed") $ $) 47)) (-4053 (((-857) $) 24) (($ (-562)) 19) ((|#1| $) 13)) (-1568 (((-766)) 28)) (-2285 (($) 16 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 38)) (-1847 (($ $) 43) (($ $ $) 37)) (-1836 (($ $ $) 40)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 21) (($ $ $) 20)))
+(((-710 |#1| |#2| |#3| |#4| |#5|) (-13 (-1044) (-10 -8 (-15 -2685 (|#2| $)) (-15 -4053 (|#1| $)) (-15 -1954 ($ |#1| |#2|)) (-15 -3649 ((-3 $ "failed") $ $)) (-15 -1694 ((-3 $ "failed") $)) (-15 -1525 ($ $)))) (-171) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -710))
+((-1694 (*1 *1 *1) (|partial| -12 (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *2 (-171)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-2685 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-710 *3 *2 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-4053 (*1 *2 *1) (-12 (-4 *2 (-171)) (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1954 (*1 *1 *2 *3) (-12 (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *2 (-171)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-3649 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *2 (-171)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))) (-1525 (*1 *1 *1) (-12 (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *2 (-171)) (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3)) (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
+(-13 (-1044) (-10 -8 (-15 -2685 (|#2| $)) (-15 -4053 (|#1| $)) (-15 -1954 ($ |#1| |#2|)) (-15 -3649 ((-3 $ "failed") $ $)) (-15 -1694 ((-3 $ "failed") $)) (-15 -1525 ($ $))))
((* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#2| $) NIL) (($ $ |#2|) 9)))
(((-711 |#1| |#2|) (-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|))) (-712 |#2|) (-171)) (T -711))
NIL
(-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
(((-712 |#1|) (-139) (-171)) (T -712))
NIL
(-13 (-111 |t#1| |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-609 (-857)) . T) ((-642 |#1|) . T) ((-1050 |#1|) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-3358 (($ |#1|) 17) (($ $ |#1|) 20)) (-3878 (($ |#1|) 18) (($ $ |#1|) 21)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-1957 (((-112) $) NIL)) (-2110 (($ |#1| |#1| |#1| |#1|) 8)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 16)) (-1709 (((-1112) $) NIL)) (-1433 ((|#1| $ |#1|) 24) (((-828 |#1|) $ (-828 |#1|)) 32)) (-3665 (($ $ $) NIL)) (-1911 (($ $ $) NIL)) (-4054 (((-857) $) 39)) (-2294 (($) 9 T CONST)) (-1731 (((-112) $ $) 44)) (-1859 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ $ $) 14)))
-(((-713 |#1|) (-13 (-472) (-10 -8 (-15 -2110 ($ |#1| |#1| |#1| |#1|)) (-15 -3358 ($ |#1|)) (-15 -3878 ($ |#1|)) (-15 -3668 ($)) (-15 -3358 ($ $ |#1|)) (-15 -3878 ($ $ |#1|)) (-15 -3668 ($ $)) (-15 -1433 (|#1| $ |#1|)) (-15 -1433 ((-828 |#1|) $ (-828 |#1|))))) (-362)) (T -713))
-((-2110 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-3358 (*1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-3878 (*1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-3668 (*1 *1) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-3358 (*1 *1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-3878 (*1 *1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-3668 (*1 *1 *1) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-1433 (*1 *2 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-1433 (*1 *2 *1 *2) (-12 (-5 *2 (-828 *3)) (-4 *3 (-362)) (-5 *1 (-713 *3)))))
-(-13 (-472) (-10 -8 (-15 -2110 ($ |#1| |#1| |#1| |#1|)) (-15 -3358 ($ |#1|)) (-15 -3878 ($ |#1|)) (-15 -3668 ($)) (-15 -3358 ($ $ |#1|)) (-15 -3878 ($ $ |#1|)) (-15 -3668 ($ $)) (-15 -1433 (|#1| $ |#1|)) (-15 -1433 ((-828 |#1|) $ (-828 |#1|)))))
-((-1379 (($ $ (-916)) 12)) (-2991 (($ $ (-916)) 13)) (** (($ $ (-916)) 10)))
-(((-714 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-916))) (-15 -2991 (|#1| |#1| (-916))) (-15 -1379 (|#1| |#1| (-916)))) (-715)) (T -714))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-916))) (-15 -2991 (|#1| |#1| (-916))) (-15 -1379 (|#1| |#1| (-916))))
-((-4041 (((-112) $ $) 7)) (-1379 (($ $ (-916)) 15)) (-2991 (($ $ (-916)) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1731 (((-112) $ $) 6)) (** (($ $ (-916)) 13)) (* (($ $ $) 16)))
+((-4041 (((-112) $ $) NIL)) (-3355 (($ |#1|) 17) (($ $ |#1|) 20)) (-1978 (($ |#1|) 18) (($ $ |#1|) 21)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-4367 (((-112) $) NIL)) (-2381 (($ |#1| |#1| |#1| |#1|) 8)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 16)) (-1709 (((-1112) $) NIL)) (-1433 ((|#1| $ |#1|) 24) (((-828 |#1|) $ (-828 |#1|)) 32)) (-1660 (($ $ $) NIL)) (-2114 (($ $ $) NIL)) (-4053 (((-857) $) 39)) (-2294 (($) 9 T CONST)) (-1733 (((-112) $ $) 44)) (-1859 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ $ $) 14)))
+(((-713 |#1|) (-13 (-472) (-10 -8 (-15 -2381 ($ |#1| |#1| |#1| |#1|)) (-15 -3355 ($ |#1|)) (-15 -1978 ($ |#1|)) (-15 -1694 ($)) (-15 -3355 ($ $ |#1|)) (-15 -1978 ($ $ |#1|)) (-15 -1694 ($ $)) (-15 -1433 (|#1| $ |#1|)) (-15 -1433 ((-828 |#1|) $ (-828 |#1|))))) (-362)) (T -713))
+((-2381 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-3355 (*1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-1978 (*1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-1694 (*1 *1) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-3355 (*1 *1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-1978 (*1 *1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-1694 (*1 *1 *1) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-1433 (*1 *2 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))) (-1433 (*1 *2 *1 *2) (-12 (-5 *2 (-828 *3)) (-4 *3 (-362)) (-5 *1 (-713 *3)))))
+(-13 (-472) (-10 -8 (-15 -2381 ($ |#1| |#1| |#1| |#1|)) (-15 -3355 ($ |#1|)) (-15 -1978 ($ |#1|)) (-15 -1694 ($)) (-15 -3355 ($ $ |#1|)) (-15 -1978 ($ $ |#1|)) (-15 -1694 ($ $)) (-15 -1433 (|#1| $ |#1|)) (-15 -1433 ((-828 |#1|) $ (-828 |#1|)))))
+((-2127 (($ $ (-916)) 12)) (-3235 (($ $ (-916)) 13)) (** (($ $ (-916)) 10)))
+(((-714 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-916))) (-15 -3235 (|#1| |#1| (-916))) (-15 -2127 (|#1| |#1| (-916)))) (-715)) (T -714))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-916))) (-15 -3235 (|#1| |#1| (-916))) (-15 -2127 (|#1| |#1| (-916))))
+((-4041 (((-112) $ $) 7)) (-2127 (($ $ (-916)) 15)) (-3235 (($ $ (-916)) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1733 (((-112) $ $) 6)) (** (($ $ (-916)) 13)) (* (($ $ $) 16)))
(((-715) (-139)) (T -715))
-((* (*1 *1 *1 *1) (-4 *1 (-715))) (-1379 (*1 *1 *1 *2) (-12 (-4 *1 (-715)) (-5 *2 (-916)))) (-2991 (*1 *1 *1 *2) (-12 (-4 *1 (-715)) (-5 *2 (-916)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-715)) (-5 *2 (-916)))))
-(-13 (-1092) (-10 -8 (-15 * ($ $ $)) (-15 -1379 ($ $ (-916))) (-15 -2991 ($ $ (-916))) (-15 ** ($ $ (-916)))))
+((* (*1 *1 *1 *1) (-4 *1 (-715))) (-2127 (*1 *1 *1 *2) (-12 (-4 *1 (-715)) (-5 *2 (-916)))) (-3235 (*1 *1 *1 *2) (-12 (-4 *1 (-715)) (-5 *2 (-916)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-715)) (-5 *2 (-916)))))
+(-13 (-1092) (-10 -8 (-15 * ($ $ $)) (-15 -2127 ($ $ (-916))) (-15 -3235 ($ $ (-916))) (-15 ** ($ $ (-916)))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-1379 (($ $ (-916)) NIL) (($ $ (-766)) 17)) (-1957 (((-112) $) 10)) (-2991 (($ $ (-916)) NIL) (($ $ (-766)) 18)) (** (($ $ (-916)) NIL) (($ $ (-766)) 15)))
-(((-716 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-766))) (-15 -2991 (|#1| |#1| (-766))) (-15 -1379 (|#1| |#1| (-766))) (-15 -1957 ((-112) |#1|)) (-15 ** (|#1| |#1| (-916))) (-15 -2991 (|#1| |#1| (-916))) (-15 -1379 (|#1| |#1| (-916)))) (-717)) (T -716))
+((-2127 (($ $ (-916)) NIL) (($ $ (-766)) 17)) (-4367 (((-112) $) 10)) (-3235 (($ $ (-916)) NIL) (($ $ (-766)) 18)) (** (($ $ (-916)) NIL) (($ $ (-766)) 15)))
+(((-716 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-766))) (-15 -3235 (|#1| |#1| (-766))) (-15 -2127 (|#1| |#1| (-766))) (-15 -4367 ((-112) |#1|)) (-15 ** (|#1| |#1| (-916))) (-15 -3235 (|#1| |#1| (-916))) (-15 -2127 (|#1| |#1| (-916)))) (-717)) (T -716))
NIL
-(-10 -8 (-15 ** (|#1| |#1| (-766))) (-15 -2991 (|#1| |#1| (-766))) (-15 -1379 (|#1| |#1| (-766))) (-15 -1957 ((-112) |#1|)) (-15 ** (|#1| |#1| (-916))) (-15 -2991 (|#1| |#1| (-916))) (-15 -1379 (|#1| |#1| (-916))))
-((-4041 (((-112) $ $) 7)) (-2545 (((-3 $ "failed") $) 17)) (-1379 (($ $ (-916)) 15) (($ $ (-766)) 22)) (-3668 (((-3 $ "failed") $) 19)) (-1957 (((-112) $) 23)) (-4238 (((-3 $ "failed") $) 18)) (-2991 (($ $ (-916)) 14) (($ $ (-766)) 21)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2294 (($) 24 T CONST)) (-1731 (((-112) $ $) 6)) (** (($ $ (-916)) 13) (($ $ (-766)) 20)) (* (($ $ $) 16)))
+(-10 -8 (-15 ** (|#1| |#1| (-766))) (-15 -3235 (|#1| |#1| (-766))) (-15 -2127 (|#1| |#1| (-766))) (-15 -4367 ((-112) |#1|)) (-15 ** (|#1| |#1| (-916))) (-15 -3235 (|#1| |#1| (-916))) (-15 -2127 (|#1| |#1| (-916))))
+((-4041 (((-112) $ $) 7)) (-4276 (((-3 $ "failed") $) 17)) (-2127 (($ $ (-916)) 15) (($ $ (-766)) 22)) (-1694 (((-3 $ "failed") $) 19)) (-4367 (((-112) $) 23)) (-2217 (((-3 $ "failed") $) 18)) (-3235 (($ $ (-916)) 14) (($ $ (-766)) 21)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2294 (($) 24 T CONST)) (-1733 (((-112) $ $) 6)) (** (($ $ (-916)) 13) (($ $ (-766)) 20)) (* (($ $ $) 16)))
(((-717) (-139)) (T -717))
-((-2294 (*1 *1) (-4 *1 (-717))) (-1957 (*1 *2 *1) (-12 (-4 *1 (-717)) (-5 *2 (-112)))) (-1379 (*1 *1 *1 *2) (-12 (-4 *1 (-717)) (-5 *2 (-766)))) (-2991 (*1 *1 *1 *2) (-12 (-4 *1 (-717)) (-5 *2 (-766)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-717)) (-5 *2 (-766)))) (-3668 (*1 *1 *1) (|partial| -4 *1 (-717))) (-4238 (*1 *1 *1) (|partial| -4 *1 (-717))) (-2545 (*1 *1 *1) (|partial| -4 *1 (-717))))
-(-13 (-715) (-10 -8 (-15 (-2294) ($) -1497) (-15 -1957 ((-112) $)) (-15 -1379 ($ $ (-766))) (-15 -2991 ($ $ (-766))) (-15 ** ($ $ (-766))) (-15 -3668 ((-3 $ "failed") $)) (-15 -4238 ((-3 $ "failed") $)) (-15 -2545 ((-3 $ "failed") $))))
+((-2294 (*1 *1) (-4 *1 (-717))) (-4367 (*1 *2 *1) (-12 (-4 *1 (-717)) (-5 *2 (-112)))) (-2127 (*1 *1 *1 *2) (-12 (-4 *1 (-717)) (-5 *2 (-766)))) (-3235 (*1 *1 *1 *2) (-12 (-4 *1 (-717)) (-5 *2 (-766)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-717)) (-5 *2 (-766)))) (-1694 (*1 *1 *1) (|partial| -4 *1 (-717))) (-2217 (*1 *1 *1) (|partial| -4 *1 (-717))) (-4276 (*1 *1 *1) (|partial| -4 *1 (-717))))
+(-13 (-715) (-10 -8 (-15 (-2294) ($) -1497) (-15 -4367 ((-112) $)) (-15 -2127 ($ $ (-766))) (-15 -3235 ($ $ (-766))) (-15 ** ($ $ (-766))) (-15 -1694 ((-3 $ "failed") $)) (-15 -2217 ((-3 $ "failed") $)) (-15 -4276 ((-3 $ "failed") $))))
(((-102) . T) ((-609 (-857)) . T) ((-715) . T) ((-1092) . T))
-((-1382 (((-766)) 35)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-3961 (((-562) $) NIL) (((-406 (-562)) $) NIL) ((|#2| $) 22)) (-1955 (($ |#3|) NIL) (((-3 $ "failed") (-406 |#3|)) 45)) (-3668 (((-3 $ "failed") $) 65)) (-1448 (($) 39)) (-2247 ((|#2| $) 20)) (-3148 (($) 17)) (-4029 (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) 53) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL) (($ $ (-766)) NIL) (($ $) NIL)) (-3187 (((-683 |#2|) (-1256 $) (-1 |#2| |#2|)) 60)) (-4208 (((-1256 |#2|) $) NIL) (($ (-1256 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-3376 ((|#3| $) 32)) (-3928 (((-1256 $)) 29)))
-(((-718 |#1| |#2| |#3|) (-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -1448 (|#1|)) (-15 -1382 ((-766))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -3187 ((-683 |#2|) (-1256 |#1|) (-1 |#2| |#2|))) (-15 -1955 ((-3 |#1| "failed") (-406 |#3|))) (-15 -4208 (|#1| |#3|)) (-15 -1955 (|#1| |#3|)) (-15 -3148 (|#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4208 (|#3| |#1|)) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -3928 ((-1256 |#1|))) (-15 -3376 (|#3| |#1|)) (-15 -2247 (|#2| |#1|)) (-15 -3668 ((-3 |#1| "failed") |#1|))) (-719 |#2| |#3|) (-171) (-1232 |#2|)) (T -718))
+((-1382 (((-766)) 35)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-3960 (((-562) $) NIL) (((-406 (-562)) $) NIL) ((|#2| $) 22)) (-1954 (($ |#3|) NIL) (((-3 $ "failed") (-406 |#3|)) 45)) (-1694 (((-3 $ "failed") $) 65)) (-1447 (($) 39)) (-4363 ((|#2| $) 20)) (-3147 (($) 17)) (-4029 (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) 53) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL) (($ $ (-766)) NIL) (($ $) NIL)) (-2539 (((-683 |#2|) (-1256 $) (-1 |#2| |#2|)) 60)) (-4208 (((-1256 |#2|) $) NIL) (($ (-1256 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-3683 ((|#3| $) 32)) (-4291 (((-1256 $)) 29)))
+(((-718 |#1| |#2| |#3|) (-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -1447 (|#1|)) (-15 -1382 ((-766))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -2539 ((-683 |#2|) (-1256 |#1|) (-1 |#2| |#2|))) (-15 -1954 ((-3 |#1| "failed") (-406 |#3|))) (-15 -4208 (|#1| |#3|)) (-15 -1954 (|#1| |#3|)) (-15 -3147 (|#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4208 (|#3| |#1|)) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -4291 ((-1256 |#1|))) (-15 -3683 (|#3| |#1|)) (-15 -4363 (|#2| |#1|)) (-15 -1694 ((-3 |#1| "failed") |#1|))) (-719 |#2| |#3|) (-171) (-1232 |#2|)) (T -718))
((-1382 (*1 *2) (-12 (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-766)) (-5 *1 (-718 *3 *4 *5)) (-4 *3 (-719 *4 *5)))))
-(-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -1448 (|#1|)) (-15 -1382 ((-766))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -3187 ((-683 |#2|) (-1256 |#1|) (-1 |#2| |#2|))) (-15 -1955 ((-3 |#1| "failed") (-406 |#3|))) (-15 -4208 (|#1| |#3|)) (-15 -1955 (|#1| |#3|)) (-15 -3148 (|#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4208 (|#3| |#1|)) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -3928 ((-1256 |#1|))) (-15 -3376 (|#3| |#1|)) (-15 -2247 (|#2| |#1|)) (-15 -3668 ((-3 |#1| "failed") |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 93 (|has| |#1| (-362)))) (-2796 (($ $) 94 (|has| |#1| (-362)))) (-4370 (((-112) $) 96 (|has| |#1| (-362)))) (-1636 (((-683 |#1|) (-1256 $)) 47) (((-683 |#1|)) 62)) (-1748 ((|#1| $) 53)) (-3984 (((-1180 (-916) (-766)) (-562)) 146 (|has| |#1| (-348)))) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 113 (|has| |#1| (-362)))) (-2921 (((-417 $) $) 114 (|has| |#1| (-362)))) (-2569 (((-112) $ $) 104 (|has| |#1| (-362)))) (-1382 (((-766)) 87 (|has| |#1| (-367)))) (-1800 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 169 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 167 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 164)) (-3961 (((-562) $) 168 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 166 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 165)) (-4018 (($ (-1256 |#1|) (-1256 $)) 49) (($ (-1256 |#1|)) 65)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) 152 (|has| |#1| (-348)))) (-1811 (($ $ $) 108 (|has| |#1| (-362)))) (-1958 (((-683 |#1|) $ (-1256 $)) 54) (((-683 |#1|) $) 60)) (-2406 (((-683 (-562)) (-683 $)) 163 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 162 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 161) (((-683 |#1|) (-683 $)) 160)) (-1955 (($ |#2|) 157) (((-3 $ "failed") (-406 |#2|)) 154 (|has| |#1| (-362)))) (-3668 (((-3 $ "failed") $) 33)) (-2173 (((-916)) 55)) (-1448 (($) 90 (|has| |#1| (-367)))) (-1787 (($ $ $) 107 (|has| |#1| (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 102 (|has| |#1| (-362)))) (-3529 (($) 148 (|has| |#1| (-348)))) (-1322 (((-112) $) 149 (|has| |#1| (-348)))) (-3589 (($ $ (-766)) 140 (|has| |#1| (-348))) (($ $) 139 (|has| |#1| (-348)))) (-2717 (((-112) $) 115 (|has| |#1| (-362)))) (-1900 (((-916) $) 151 (|has| |#1| (-348))) (((-828 (-916)) $) 137 (|has| |#1| (-348)))) (-1957 (((-112) $) 31)) (-2247 ((|#1| $) 52)) (-3699 (((-3 $ "failed") $) 141 (|has| |#1| (-348)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 111 (|has| |#1| (-362)))) (-1565 ((|#2| $) 45 (|has| |#1| (-362)))) (-1999 (((-916) $) 89 (|has| |#1| (-367)))) (-1943 ((|#2| $) 155)) (-1564 (($ (-639 $)) 100 (|has| |#1| (-362))) (($ $ $) 99 (|has| |#1| (-362)))) (-2913 (((-1150) $) 9)) (-1525 (($ $) 116 (|has| |#1| (-362)))) (-3729 (($) 142 (|has| |#1| (-348)) CONST)) (-2466 (($ (-916)) 88 (|has| |#1| (-367)))) (-1709 (((-1112) $) 10)) (-3148 (($) 159)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 101 (|has| |#1| (-362)))) (-1606 (($ (-639 $)) 98 (|has| |#1| (-362))) (($ $ $) 97 (|has| |#1| (-362)))) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) 145 (|has| |#1| (-348)))) (-1635 (((-417 $) $) 112 (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 109 (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ $) 92 (|has| |#1| (-362)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 103 (|has| |#1| (-362)))) (-1577 (((-766) $) 105 (|has| |#1| (-362)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 106 (|has| |#1| (-362)))) (-2455 ((|#1| (-1256 $)) 48) ((|#1|) 61)) (-3362 (((-766) $) 150 (|has| |#1| (-348))) (((-3 (-766) "failed") $ $) 138 (|has| |#1| (-348)))) (-4029 (($ $) 136 (-4037 (-2246 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-766)) 134 (-4037 (-2246 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-1168)) 132 (-2246 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-639 (-1168))) 131 (-2246 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-1168) (-766)) 130 (-2246 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-639 (-1168)) (-639 (-766))) 129 (-2246 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-1 |#1| |#1|) (-766)) 122 (|has| |#1| (-362))) (($ $ (-1 |#1| |#1|)) 121 (|has| |#1| (-362)))) (-3187 (((-683 |#1|) (-1256 $) (-1 |#1| |#1|)) 153 (|has| |#1| (-362)))) (-2096 ((|#2|) 158)) (-2283 (($) 147 (|has| |#1| (-348)))) (-3593 (((-1256 |#1|) $ (-1256 $)) 51) (((-683 |#1|) (-1256 $) (-1256 $)) 50) (((-1256 |#1|) $) 67) (((-683 |#1|) (-1256 $)) 66)) (-4208 (((-1256 |#1|) $) 64) (($ (-1256 |#1|)) 63) ((|#2| $) 170) (($ |#2|) 156)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 144 (|has| |#1| (-348)))) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38) (($ $) 91 (|has| |#1| (-362))) (($ (-406 (-562))) 86 (-4037 (|has| |#1| (-362)) (|has| |#1| (-1033 (-406 (-562))))))) (-2805 (($ $) 143 (|has| |#1| (-348))) (((-3 $ "failed") $) 44 (|has| |#1| (-144)))) (-3376 ((|#2| $) 46)) (-2579 (((-766)) 28)) (-3928 (((-1256 $)) 68)) (-2922 (((-112) $ $) 95 (|has| |#1| (-362)))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $) 135 (-4037 (-2246 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-766)) 133 (-4037 (-2246 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-1168)) 128 (-2246 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-639 (-1168))) 127 (-2246 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-1168) (-766)) 126 (-2246 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-639 (-1168)) (-639 (-766))) 125 (-2246 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-1 |#1| |#1|) (-766)) 124 (|has| |#1| (-362))) (($ $ (-1 |#1| |#1|)) 123 (|has| |#1| (-362)))) (-1731 (((-112) $ $) 6)) (-1859 (($ $ $) 120 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 117 (|has| |#1| (-362)))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39) (($ (-406 (-562)) $) 119 (|has| |#1| (-362))) (($ $ (-406 (-562))) 118 (|has| |#1| (-362)))))
+(-10 -8 (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -1447 (|#1|)) (-15 -1382 ((-766))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -2539 ((-683 |#2|) (-1256 |#1|) (-1 |#2| |#2|))) (-15 -1954 ((-3 |#1| "failed") (-406 |#3|))) (-15 -4208 (|#1| |#3|)) (-15 -1954 (|#1| |#3|)) (-15 -3147 (|#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4208 (|#3| |#1|)) (-15 -4208 (|#1| (-1256 |#2|))) (-15 -4208 ((-1256 |#2|) |#1|)) (-15 -4291 ((-1256 |#1|))) (-15 -3683 (|#3| |#1|)) (-15 -4363 (|#2| |#1|)) (-15 -1694 ((-3 |#1| "failed") |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 93 (|has| |#1| (-362)))) (-1965 (($ $) 94 (|has| |#1| (-362)))) (-4102 (((-112) $) 96 (|has| |#1| (-362)))) (-4342 (((-683 |#1|) (-1256 $)) 47) (((-683 |#1|)) 62)) (-1748 ((|#1| $) 53)) (-1755 (((-1180 (-916) (-766)) (-562)) 146 (|has| |#1| (-348)))) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 113 (|has| |#1| (-362)))) (-3788 (((-417 $) $) 114 (|has| |#1| (-362)))) (-1436 (((-112) $ $) 104 (|has| |#1| (-362)))) (-1382 (((-766)) 87 (|has| |#1| (-367)))) (-3329 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 169 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 167 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 164)) (-3960 (((-562) $) 168 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 166 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 165)) (-3916 (($ (-1256 |#1|) (-1256 $)) 49) (($ (-1256 |#1|)) 65)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) 152 (|has| |#1| (-348)))) (-1810 (($ $ $) 108 (|has| |#1| (-362)))) (-4376 (((-683 |#1|) $ (-1256 $)) 54) (((-683 |#1|) $) 60)) (-3449 (((-683 (-562)) (-683 $)) 163 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 162 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 161) (((-683 |#1|) (-683 $)) 160)) (-1954 (($ |#2|) 157) (((-3 $ "failed") (-406 |#2|)) 154 (|has| |#1| (-362)))) (-1694 (((-3 $ "failed") $) 33)) (-2172 (((-916)) 55)) (-1447 (($) 90 (|has| |#1| (-367)))) (-1787 (($ $ $) 107 (|has| |#1| (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 102 (|has| |#1| (-362)))) (-2787 (($) 148 (|has| |#1| (-348)))) (-1844 (((-112) $) 149 (|has| |#1| (-348)))) (-2184 (($ $ (-766)) 140 (|has| |#1| (-348))) (($ $) 139 (|has| |#1| (-348)))) (-3521 (((-112) $) 115 (|has| |#1| (-362)))) (-1993 (((-916) $) 151 (|has| |#1| (-348))) (((-828 (-916)) $) 137 (|has| |#1| (-348)))) (-4367 (((-112) $) 31)) (-4363 ((|#1| $) 52)) (-3828 (((-3 $ "failed") $) 141 (|has| |#1| (-348)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 111 (|has| |#1| (-362)))) (-1937 ((|#2| $) 45 (|has| |#1| (-362)))) (-3549 (((-916) $) 89 (|has| |#1| (-367)))) (-1942 ((|#2| $) 155)) (-1564 (($ (-639 $)) 100 (|has| |#1| (-362))) (($ $ $) 99 (|has| |#1| (-362)))) (-3696 (((-1150) $) 9)) (-1525 (($ $) 116 (|has| |#1| (-362)))) (-3730 (($) 142 (|has| |#1| (-348)) CONST)) (-2464 (($ (-916)) 88 (|has| |#1| (-367)))) (-1709 (((-1112) $) 10)) (-3147 (($) 159)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 101 (|has| |#1| (-362)))) (-1606 (($ (-639 $)) 98 (|has| |#1| (-362))) (($ $ $) 97 (|has| |#1| (-362)))) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) 145 (|has| |#1| (-348)))) (-1635 (((-417 $) $) 112 (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 110 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 109 (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ $) 92 (|has| |#1| (-362)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 103 (|has| |#1| (-362)))) (-2044 (((-766) $) 105 (|has| |#1| (-362)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 106 (|has| |#1| (-362)))) (-2736 ((|#1| (-1256 $)) 48) ((|#1|) 61)) (-3543 (((-766) $) 150 (|has| |#1| (-348))) (((-3 (-766) "failed") $ $) 138 (|has| |#1| (-348)))) (-4029 (($ $) 136 (-4037 (-2245 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-766)) 134 (-4037 (-2245 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-1168)) 132 (-2245 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-639 (-1168))) 131 (-2245 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-1168) (-766)) 130 (-2245 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-639 (-1168)) (-639 (-766))) 129 (-2245 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-1 |#1| |#1|) (-766)) 122 (|has| |#1| (-362))) (($ $ (-1 |#1| |#1|)) 121 (|has| |#1| (-362)))) (-2539 (((-683 |#1|) (-1256 $) (-1 |#1| |#1|)) 153 (|has| |#1| (-362)))) (-3371 ((|#2|) 158)) (-1653 (($) 147 (|has| |#1| (-348)))) (-2205 (((-1256 |#1|) $ (-1256 $)) 51) (((-683 |#1|) (-1256 $) (-1256 $)) 50) (((-1256 |#1|) $) 67) (((-683 |#1|) (-1256 $)) 66)) (-4208 (((-1256 |#1|) $) 64) (($ (-1256 |#1|)) 63) ((|#2| $) 170) (($ |#2|) 156)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 144 (|has| |#1| (-348)))) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38) (($ $) 91 (|has| |#1| (-362))) (($ (-406 (-562))) 86 (-4037 (|has| |#1| (-362)) (|has| |#1| (-1033 (-406 (-562))))))) (-2059 (($ $) 143 (|has| |#1| (-348))) (((-3 $ "failed") $) 44 (|has| |#1| (-144)))) (-3683 ((|#2| $) 46)) (-1568 (((-766)) 28)) (-4291 (((-1256 $)) 68)) (-3799 (((-112) $ $) 95 (|has| |#1| (-362)))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $) 135 (-4037 (-2245 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-766)) 133 (-4037 (-2245 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-1168)) 128 (-2245 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-639 (-1168))) 127 (-2245 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-1168) (-766)) 126 (-2245 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-639 (-1168)) (-639 (-766))) 125 (-2245 (|has| |#1| (-895 (-1168))) (|has| |#1| (-362)))) (($ $ (-1 |#1| |#1|) (-766)) 124 (|has| |#1| (-362))) (($ $ (-1 |#1| |#1|)) 123 (|has| |#1| (-362)))) (-1733 (((-112) $ $) 6)) (-1859 (($ $ $) 120 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 117 (|has| |#1| (-362)))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39) (($ (-406 (-562)) $) 119 (|has| |#1| (-362))) (($ $ (-406 (-562))) 118 (|has| |#1| (-362)))))
(((-719 |#1| |#2|) (-139) (-171) (-1232 |t#1|)) (T -719))
-((-3148 (*1 *1) (-12 (-4 *2 (-171)) (-4 *1 (-719 *2 *3)) (-4 *3 (-1232 *2)))) (-2096 (*1 *2) (-12 (-4 *1 (-719 *3 *2)) (-4 *3 (-171)) (-4 *2 (-1232 *3)))) (-1955 (*1 *1 *2) (-12 (-4 *3 (-171)) (-4 *1 (-719 *3 *2)) (-4 *2 (-1232 *3)))) (-4208 (*1 *1 *2) (-12 (-4 *3 (-171)) (-4 *1 (-719 *3 *2)) (-4 *2 (-1232 *3)))) (-1943 (*1 *2 *1) (-12 (-4 *1 (-719 *3 *2)) (-4 *3 (-171)) (-4 *2 (-1232 *3)))) (-1955 (*1 *1 *2) (|partial| -12 (-5 *2 (-406 *4)) (-4 *4 (-1232 *3)) (-4 *3 (-362)) (-4 *3 (-171)) (-4 *1 (-719 *3 *4)))) (-3187 (*1 *2 *3 *4) (-12 (-5 *3 (-1256 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-362)) (-4 *1 (-719 *5 *6)) (-4 *5 (-171)) (-4 *6 (-1232 *5)) (-5 *2 (-683 *5)))))
-(-13 (-408 |t#1| |t#2|) (-171) (-610 |t#2|) (-410 |t#1|) (-376 |t#1|) (-10 -8 (-15 -3148 ($)) (-15 -2096 (|t#2|)) (-15 -1955 ($ |t#2|)) (-15 -4208 ($ |t#2|)) (-15 -1943 (|t#2| $)) (IF (|has| |t#1| (-367)) (-6 (-367)) |%noBranch|) (IF (|has| |t#1| (-362)) (PROGN (-6 (-362)) (-6 (-230 |t#1|)) (-15 -1955 ((-3 $ "failed") (-406 |t#2|))) (-15 -3187 ((-683 |t#1|) (-1256 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-348)) (-6 (-348)) |%noBranch|)))
+((-3147 (*1 *1) (-12 (-4 *2 (-171)) (-4 *1 (-719 *2 *3)) (-4 *3 (-1232 *2)))) (-3371 (*1 *2) (-12 (-4 *1 (-719 *3 *2)) (-4 *3 (-171)) (-4 *2 (-1232 *3)))) (-1954 (*1 *1 *2) (-12 (-4 *3 (-171)) (-4 *1 (-719 *3 *2)) (-4 *2 (-1232 *3)))) (-4208 (*1 *1 *2) (-12 (-4 *3 (-171)) (-4 *1 (-719 *3 *2)) (-4 *2 (-1232 *3)))) (-1942 (*1 *2 *1) (-12 (-4 *1 (-719 *3 *2)) (-4 *3 (-171)) (-4 *2 (-1232 *3)))) (-1954 (*1 *1 *2) (|partial| -12 (-5 *2 (-406 *4)) (-4 *4 (-1232 *3)) (-4 *3 (-362)) (-4 *3 (-171)) (-4 *1 (-719 *3 *4)))) (-2539 (*1 *2 *3 *4) (-12 (-5 *3 (-1256 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-362)) (-4 *1 (-719 *5 *6)) (-4 *5 (-171)) (-4 *6 (-1232 *5)) (-5 *2 (-683 *5)))))
+(-13 (-408 |t#1| |t#2|) (-171) (-610 |t#2|) (-410 |t#1|) (-376 |t#1|) (-10 -8 (-15 -3147 ($)) (-15 -3371 (|t#2|)) (-15 -1954 ($ |t#2|)) (-15 -4208 ($ |t#2|)) (-15 -1942 (|t#2| $)) (IF (|has| |t#1| (-367)) (-6 (-367)) |%noBranch|) (IF (|has| |t#1| (-362)) (PROGN (-6 (-362)) (-6 (-230 |t#1|)) (-15 -1954 ((-3 $ "failed") (-406 |t#2|))) (-15 -2539 ((-683 |t#1|) (-1256 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-348)) (-6 (-348)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-38 |#1|) . T) ((-38 $) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-102) . T) ((-111 #0# #0#) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-144) -4037 (|has| |#1| (-348)) (|has| |#1| (-144))) ((-146) |has| |#1| (-146)) ((-612 #0#) -4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-348)) (|has| |#1| (-362))) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-612 $) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-609 (-857)) . T) ((-171) . T) ((-610 |#2|) . T) ((-230 |#1|) |has| |#1| (-362)) ((-232) -4037 (|has| |#1| (-348)) (-12 (|has| |#1| (-232)) (|has| |#1| (-362)))) ((-242) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-289) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-306) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-362) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-401) |has| |#1| (-348)) ((-367) -4037 (|has| |#1| (-367)) (|has| |#1| (-348))) ((-348) |has| |#1| (-348)) ((-369 |#1| |#2|) . T) ((-408 |#1| |#2|) . T) ((-376 |#1|) . T) ((-410 |#1|) . T) ((-451) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-554) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-642 #0#) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-642 |#1|) . T) ((-642 $) . T) ((-635 (-562)) |has| |#1| (-635 (-562))) ((-635 |#1|) . T) ((-712 #0#) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-712 |#1|) . T) ((-712 $) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-721) . T) ((-895 (-1168)) -12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168)))) ((-915) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-1033 (-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 |#1|) . T) ((-1050 #0#) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))) ((-1050 |#1|) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1143) |has| |#1| (-348)) ((-1211) -4037 (|has| |#1| (-348)) (|has| |#1| (-362))))
-((-1800 (($) 11)) (-3668 (((-3 $ "failed") $) 13)) (-1957 (((-112) $) 10)) (** (($ $ (-916)) NIL) (($ $ (-766)) 18)))
-(((-720 |#1|) (-10 -8 (-15 -3668 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-766))) (-15 -1957 ((-112) |#1|)) (-15 -1800 (|#1|)) (-15 ** (|#1| |#1| (-916)))) (-721)) (T -720))
+((-3329 (($) 11)) (-1694 (((-3 $ "failed") $) 13)) (-4367 (((-112) $) 10)) (** (($ $ (-916)) NIL) (($ $ (-766)) 18)))
+(((-720 |#1|) (-10 -8 (-15 -1694 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-766))) (-15 -4367 ((-112) |#1|)) (-15 -3329 (|#1|)) (-15 ** (|#1| |#1| (-916)))) (-721)) (T -720))
NIL
-(-10 -8 (-15 -3668 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-766))) (-15 -1957 ((-112) |#1|)) (-15 -1800 (|#1|)) (-15 ** (|#1| |#1| (-916))))
-((-4041 (((-112) $ $) 7)) (-1800 (($) 18 T CONST)) (-3668 (((-3 $ "failed") $) 15)) (-1957 (((-112) $) 17)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2294 (($) 19 T CONST)) (-1731 (((-112) $ $) 6)) (** (($ $ (-916)) 13) (($ $ (-766)) 16)) (* (($ $ $) 14)))
+(-10 -8 (-15 -1694 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-766))) (-15 -4367 ((-112) |#1|)) (-15 -3329 (|#1|)) (-15 ** (|#1| |#1| (-916))))
+((-4041 (((-112) $ $) 7)) (-3329 (($) 18 T CONST)) (-1694 (((-3 $ "failed") $) 15)) (-4367 (((-112) $) 17)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2294 (($) 19 T CONST)) (-1733 (((-112) $ $) 6)) (** (($ $ (-916)) 13) (($ $ (-766)) 16)) (* (($ $ $) 14)))
(((-721) (-139)) (T -721))
-((-2294 (*1 *1) (-4 *1 (-721))) (-1800 (*1 *1) (-4 *1 (-721))) (-1957 (*1 *2 *1) (-12 (-4 *1 (-721)) (-5 *2 (-112)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-721)) (-5 *2 (-766)))) (-3668 (*1 *1 *1) (|partial| -4 *1 (-721))))
-(-13 (-1104) (-10 -8 (-15 (-2294) ($) -1497) (-15 -1800 ($) -1497) (-15 -1957 ((-112) $)) (-15 ** ($ $ (-766))) (-15 -3668 ((-3 $ "failed") $))))
+((-2294 (*1 *1) (-4 *1 (-721))) (-3329 (*1 *1) (-4 *1 (-721))) (-4367 (*1 *2 *1) (-12 (-4 *1 (-721)) (-5 *2 (-112)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-721)) (-5 *2 (-766)))) (-1694 (*1 *1 *1) (|partial| -4 *1 (-721))))
+(-13 (-1104) (-10 -8 (-15 (-2294) ($) -1497) (-15 -3329 ($) -1497) (-15 -4367 ((-112) $)) (-15 ** ($ $ (-766))) (-15 -1694 ((-3 $ "failed") $))))
(((-102) . T) ((-609 (-857)) . T) ((-1104) . T) ((-1092) . T))
-((-1553 (((-2 (|:| -2451 (-417 |#2|)) (|:| |special| (-417 |#2|))) |#2| (-1 |#2| |#2|)) 38)) (-2176 (((-2 (|:| -2451 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-3271 ((|#2| (-406 |#2|) (-1 |#2| |#2|)) 13)) (-2018 (((-2 (|:| |poly| |#2|) (|:| -2451 (-406 |#2|)) (|:| |special| (-406 |#2|))) (-406 |#2|) (-1 |#2| |#2|)) 47)))
-(((-722 |#1| |#2|) (-10 -7 (-15 -2176 ((-2 (|:| -2451 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1553 ((-2 (|:| -2451 (-417 |#2|)) (|:| |special| (-417 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3271 (|#2| (-406 |#2|) (-1 |#2| |#2|))) (-15 -2018 ((-2 (|:| |poly| |#2|) (|:| -2451 (-406 |#2|)) (|:| |special| (-406 |#2|))) (-406 |#2|) (-1 |#2| |#2|)))) (-362) (-1232 |#1|)) (T -722))
-((-2018 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| |poly| *6) (|:| -2451 (-406 *6)) (|:| |special| (-406 *6)))) (-5 *1 (-722 *5 *6)) (-5 *3 (-406 *6)))) (-3271 (*1 *2 *3 *4) (-12 (-5 *3 (-406 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1232 *5)) (-5 *1 (-722 *5 *2)) (-4 *5 (-362)))) (-1553 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| -2451 (-417 *3)) (|:| |special| (-417 *3)))) (-5 *1 (-722 *5 *3)))) (-2176 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| -2451 *3) (|:| |special| *3))) (-5 *1 (-722 *5 *3)))))
-(-10 -7 (-15 -2176 ((-2 (|:| -2451 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1553 ((-2 (|:| -2451 (-417 |#2|)) (|:| |special| (-417 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3271 (|#2| (-406 |#2|) (-1 |#2| |#2|))) (-15 -2018 ((-2 (|:| |poly| |#2|) (|:| -2451 (-406 |#2|)) (|:| |special| (-406 |#2|))) (-406 |#2|) (-1 |#2| |#2|))))
-((-4164 ((|#7| (-639 |#5|) |#6|) NIL)) (-4152 ((|#7| (-1 |#5| |#4|) |#6|) 26)))
-(((-723 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -4152 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -4164 (|#7| (-639 |#5|) |#6|))) (-845) (-788) (-788) (-1044) (-1044) (-944 |#4| |#2| |#1|) (-944 |#5| |#3| |#1|)) (T -723))
-((-4164 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *9)) (-4 *9 (-1044)) (-4 *5 (-845)) (-4 *6 (-788)) (-4 *8 (-1044)) (-4 *2 (-944 *9 *7 *5)) (-5 *1 (-723 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-788)) (-4 *4 (-944 *8 *6 *5)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-1044)) (-4 *9 (-1044)) (-4 *5 (-845)) (-4 *6 (-788)) (-4 *2 (-944 *9 *7 *5)) (-5 *1 (-723 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-788)) (-4 *4 (-944 *8 *6 *5)))))
-(-10 -7 (-15 -4152 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -4164 (|#7| (-639 |#5|) |#6|)))
+((-1839 (((-2 (|:| -2450 (-417 |#2|)) (|:| |special| (-417 |#2|))) |#2| (-1 |#2| |#2|)) 38)) (-1841 (((-2 (|:| -2450 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-2149 ((|#2| (-406 |#2|) (-1 |#2| |#2|)) 13)) (-3758 (((-2 (|:| |poly| |#2|) (|:| -2450 (-406 |#2|)) (|:| |special| (-406 |#2|))) (-406 |#2|) (-1 |#2| |#2|)) 47)))
+(((-722 |#1| |#2|) (-10 -7 (-15 -1841 ((-2 (|:| -2450 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1839 ((-2 (|:| -2450 (-417 |#2|)) (|:| |special| (-417 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -2149 (|#2| (-406 |#2|) (-1 |#2| |#2|))) (-15 -3758 ((-2 (|:| |poly| |#2|) (|:| -2450 (-406 |#2|)) (|:| |special| (-406 |#2|))) (-406 |#2|) (-1 |#2| |#2|)))) (-362) (-1232 |#1|)) (T -722))
+((-3758 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| |poly| *6) (|:| -2450 (-406 *6)) (|:| |special| (-406 *6)))) (-5 *1 (-722 *5 *6)) (-5 *3 (-406 *6)))) (-2149 (*1 *2 *3 *4) (-12 (-5 *3 (-406 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1232 *5)) (-5 *1 (-722 *5 *2)) (-4 *5 (-362)))) (-1839 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| -2450 (-417 *3)) (|:| |special| (-417 *3)))) (-5 *1 (-722 *5 *3)))) (-1841 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-362)) (-5 *2 (-2 (|:| -2450 *3) (|:| |special| *3))) (-5 *1 (-722 *5 *3)))))
+(-10 -7 (-15 -1841 ((-2 (|:| -2450 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1839 ((-2 (|:| -2450 (-417 |#2|)) (|:| |special| (-417 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -2149 (|#2| (-406 |#2|) (-1 |#2| |#2|))) (-15 -3758 ((-2 (|:| |poly| |#2|) (|:| -2450 (-406 |#2|)) (|:| |special| (-406 |#2|))) (-406 |#2|) (-1 |#2| |#2|))))
+((-4162 ((|#7| (-639 |#5|) |#6|) NIL)) (-4152 ((|#7| (-1 |#5| |#4|) |#6|) 26)))
+(((-723 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -4152 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -4162 (|#7| (-639 |#5|) |#6|))) (-845) (-788) (-788) (-1044) (-1044) (-944 |#4| |#2| |#1|) (-944 |#5| |#3| |#1|)) (T -723))
+((-4162 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *9)) (-4 *9 (-1044)) (-4 *5 (-845)) (-4 *6 (-788)) (-4 *8 (-1044)) (-4 *2 (-944 *9 *7 *5)) (-5 *1 (-723 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-788)) (-4 *4 (-944 *8 *6 *5)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-1044)) (-4 *9 (-1044)) (-4 *5 (-845)) (-4 *6 (-788)) (-4 *2 (-944 *9 *7 *5)) (-5 *1 (-723 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-788)) (-4 *4 (-944 *8 *6 *5)))))
+(-10 -7 (-15 -4152 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -4162 (|#7| (-639 |#5|) |#6|)))
((-4152 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
(((-724 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -4152 (|#7| (-1 |#2| |#1|) |#6|))) (-845) (-845) (-788) (-788) (-1044) (-944 |#5| |#3| |#1|) (-944 |#5| |#4| |#2|)) (T -724))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-845)) (-4 *6 (-845)) (-4 *7 (-788)) (-4 *9 (-1044)) (-4 *2 (-944 *9 *8 *6)) (-5 *1 (-724 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-788)) (-4 *4 (-944 *9 *7 *5)))))
(-10 -7 (-15 -4152 (|#7| (-1 |#2| |#1|) |#6|)))
((-1635 (((-417 |#4|) |#4|) 41)))
-(((-725 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1635 ((-417 |#4|) |#4|))) (-788) (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2444 ((-3 $ "failed") (-1168))))) (-306) (-944 (-947 |#3|) |#1| |#2|)) (T -725))
-((-1635 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2444 ((-3 $ "failed") (-1168)))))) (-4 *6 (-306)) (-5 *2 (-417 *3)) (-5 *1 (-725 *4 *5 *6 *3)) (-4 *3 (-944 (-947 *6) *4 *5)))))
+(((-725 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1635 ((-417 |#4|) |#4|))) (-788) (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2443 ((-3 $ "failed") (-1168))))) (-306) (-944 (-947 |#3|) |#1| |#2|)) (T -725))
+((-1635 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2443 ((-3 $ "failed") (-1168)))))) (-4 *6 (-306)) (-5 *2 (-417 *3)) (-5 *1 (-725 *4 *5 *6 *3)) (-4 *3 (-944 (-947 *6) *4 *5)))))
(-10 -7 (-15 -1635 ((-417 |#4|) |#4|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1402 (((-639 (-859 |#1|)) $) NIL)) (-1599 (((-1164 $) $ (-859 |#1|)) NIL) (((-1164 |#2|) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#2| (-554)))) (-2796 (($ $) NIL (|has| |#2| (-554)))) (-4370 (((-112) $) NIL (|has| |#2| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 (-859 |#1|))) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-2798 (($ $) NIL (|has| |#2| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#2| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-859 |#1|) "failed") $) NIL)) (-3961 ((|#2| $) NIL) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-859 |#1|) $) NIL)) (-2835 (($ $ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-1601 (($ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#2| (-904)))) (-3122 (($ $ |#2| (-530 (-859 |#1|)) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-1390 (($ (-1164 |#2|) (-859 |#1|)) NIL) (($ (-1164 $) (-859 |#1|)) NIL)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#2| (-530 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ (-859 |#1|)) NIL)) (-2076 (((-530 (-859 |#1|)) $) NIL) (((-766) $ (-859 |#1|)) NIL) (((-639 (-766)) $ (-639 (-859 |#1|))) NIL)) (-1551 (($ $ $) NIL (|has| |#2| (-845)))) (-2993 (($ $ $) NIL (|has| |#2| (-845)))) (-2836 (($ (-1 (-530 (-859 |#1|)) (-530 (-859 |#1|))) $) NIL)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-3372 (((-3 (-859 |#1|) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#2| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-2913 (((-1150) $) NIL)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| (-859 |#1|)) (|:| -1960 (-766))) "failed") $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#2| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#2| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#2| (-904)))) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-859 |#1|) |#2|) NIL) (($ $ (-639 (-859 |#1|)) (-639 |#2|)) NIL) (($ $ (-859 |#1|) $) NIL) (($ $ (-639 (-859 |#1|)) (-639 $)) NIL)) (-2455 (($ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-4029 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-3598 (((-530 (-859 |#1|)) $) NIL) (((-766) $ (-859 |#1|)) NIL) (((-639 (-766)) $ (-639 (-859 |#1|))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-859 |#1|) (-610 (-535))) (|has| |#2| (-610 (-535)))))) (-3900 ((|#2| $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) NIL) (($ (-859 |#1|)) NIL) (($ $) NIL (|has| |#2| (-554))) (($ (-406 (-562))) NIL (-4037 (|has| |#2| (-38 (-406 (-562)))) (|has| |#2| (-1033 (-406 (-562))))))) (-4358 (((-639 |#2|) $) NIL)) (-3906 ((|#2| $ (-530 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#2| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#2| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#2| (-554)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#2| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#2| (-38 (-406 (-562))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1401 (((-639 (-859 |#1|)) $) NIL)) (-1602 (((-1164 $) $ (-859 |#1|)) NIL) (((-1164 |#2|) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#2| (-554)))) (-1965 (($ $) NIL (|has| |#2| (-554)))) (-4102 (((-112) $) NIL (|has| |#2| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 (-859 |#1|))) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1977 (($ $) NIL (|has| |#2| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#2| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-859 |#1|) "failed") $) NIL)) (-3960 ((|#2| $) NIL) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-859 |#1|) $) NIL)) (-2355 (($ $ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-1600 (($ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#2| (-904)))) (-3066 (($ $ |#2| (-530 (-859 |#1|)) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-859 |#1|) (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-1389 (($ (-1164 |#2|) (-859 |#1|)) NIL) (($ (-1164 $) (-859 |#1|)) NIL)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#2| (-530 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ (-859 |#1|)) NIL)) (-3161 (((-530 (-859 |#1|)) $) NIL) (((-766) $ (-859 |#1|)) NIL) (((-639 (-766)) $ (-639 (-859 |#1|))) NIL)) (-1551 (($ $ $) NIL (|has| |#2| (-845)))) (-2993 (($ $ $) NIL (|has| |#2| (-845)))) (-2363 (($ (-1 (-530 (-859 |#1|)) (-530 (-859 |#1|))) $) NIL)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-3640 (((-3 (-859 |#1|) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#2| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-3696 (((-1150) $) NIL)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| (-859 |#1|)) (|:| -1300 (-766))) "failed") $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#2| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#2| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#2| (-904)))) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-859 |#1|) |#2|) NIL) (($ $ (-639 (-859 |#1|)) (-639 |#2|)) NIL) (($ $ (-859 |#1|) $) NIL) (($ $ (-639 (-859 |#1|)) (-639 $)) NIL)) (-2736 (($ $ (-859 |#1|)) NIL (|has| |#2| (-171)))) (-4029 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2250 (((-530 (-859 |#1|)) $) NIL) (((-766) $ (-859 |#1|)) NIL) (((-639 (-766)) $ (-639 (-859 |#1|))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-859 |#1|) (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-859 |#1|) (-610 (-535))) (|has| |#2| (-610 (-535)))))) (-2201 ((|#2| $) NIL (|has| |#2| (-451))) (($ $ (-859 |#1|)) NIL (|has| |#2| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) NIL) (($ (-859 |#1|)) NIL) (($ $) NIL (|has| |#2| (-554))) (($ (-406 (-562))) NIL (-4037 (|has| |#2| (-38 (-406 (-562)))) (|has| |#2| (-1033 (-406 (-562))))))) (-3969 (((-639 |#2|) $) NIL)) (-2266 ((|#2| $ (-530 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#2| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#2| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#2| (-554)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-859 |#1|)) NIL) (($ $ (-639 (-859 |#1|))) NIL) (($ $ (-859 |#1|) (-766)) NIL) (($ $ (-639 (-859 |#1|)) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#2| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#2| (-38 (-406 (-562))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
(((-726 |#1| |#2|) (-944 |#2| (-530 (-859 |#1|)) (-859 |#1|)) (-639 (-1168)) (-1044)) (T -726))
NIL
(-944 |#2| (-530 (-859 |#1|)) (-859 |#1|))
-((-1829 (((-2 (|:| -3659 (-947 |#3|)) (|:| -1310 (-947 |#3|))) |#4|) 14)) (-3584 ((|#4| |#4| |#2|) 33)) (-1494 ((|#4| (-406 (-947 |#3|)) |#2|) 64)) (-2908 ((|#4| (-1164 (-947 |#3|)) |#2|) 77)) (-1496 ((|#4| (-1164 |#4|) |#2|) 51)) (-2103 ((|#4| |#4| |#2|) 54)) (-1635 (((-417 |#4|) |#4|) 40)))
-(((-727 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1829 ((-2 (|:| -3659 (-947 |#3|)) (|:| -1310 (-947 |#3|))) |#4|)) (-15 -2103 (|#4| |#4| |#2|)) (-15 -1496 (|#4| (-1164 |#4|) |#2|)) (-15 -3584 (|#4| |#4| |#2|)) (-15 -2908 (|#4| (-1164 (-947 |#3|)) |#2|)) (-15 -1494 (|#4| (-406 (-947 |#3|)) |#2|)) (-15 -1635 ((-417 |#4|) |#4|))) (-788) (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)))) (-554) (-944 (-406 (-947 |#3|)) |#1| |#2|)) (T -727))
-((-1635 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *6 (-554)) (-5 *2 (-417 *3)) (-5 *1 (-727 *4 *5 *6 *3)) (-4 *3 (-944 (-406 (-947 *6)) *4 *5)))) (-1494 (*1 *2 *3 *4) (-12 (-4 *6 (-554)) (-4 *2 (-944 *3 *5 *4)) (-5 *1 (-727 *5 *4 *6 *2)) (-5 *3 (-406 (-947 *6))) (-4 *5 (-788)) (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))))) (-2908 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 (-947 *6))) (-4 *6 (-554)) (-4 *2 (-944 (-406 (-947 *6)) *5 *4)) (-5 *1 (-727 *5 *4 *6 *2)) (-4 *5 (-788)) (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))))) (-3584 (*1 *2 *2 *3) (-12 (-4 *4 (-788)) (-4 *3 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *5 (-554)) (-5 *1 (-727 *4 *3 *5 *2)) (-4 *2 (-944 (-406 (-947 *5)) *4 *3)))) (-1496 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *2)) (-4 *2 (-944 (-406 (-947 *6)) *5 *4)) (-5 *1 (-727 *5 *4 *6 *2)) (-4 *5 (-788)) (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *6 (-554)))) (-2103 (*1 *2 *2 *3) (-12 (-4 *4 (-788)) (-4 *3 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *5 (-554)) (-5 *1 (-727 *4 *3 *5 *2)) (-4 *2 (-944 (-406 (-947 *5)) *4 *3)))) (-1829 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *6 (-554)) (-5 *2 (-2 (|:| -3659 (-947 *6)) (|:| -1310 (-947 *6)))) (-5 *1 (-727 *4 *5 *6 *3)) (-4 *3 (-944 (-406 (-947 *6)) *4 *5)))))
-(-10 -7 (-15 -1829 ((-2 (|:| -3659 (-947 |#3|)) (|:| -1310 (-947 |#3|))) |#4|)) (-15 -2103 (|#4| |#4| |#2|)) (-15 -1496 (|#4| (-1164 |#4|) |#2|)) (-15 -3584 (|#4| |#4| |#2|)) (-15 -2908 (|#4| (-1164 (-947 |#3|)) |#2|)) (-15 -1494 (|#4| (-406 (-947 |#3|)) |#2|)) (-15 -1635 ((-417 |#4|) |#4|)))
+((-2471 (((-2 (|:| -1593 (-947 |#3|)) (|:| -1693 (-947 |#3|))) |#4|) 14)) (-2135 ((|#4| |#4| |#2|) 33)) (-2557 ((|#4| (-406 (-947 |#3|)) |#2|) 64)) (-3653 ((|#4| (-1164 (-947 |#3|)) |#2|) 77)) (-2568 ((|#4| (-1164 |#4|) |#2|) 51)) (-3444 ((|#4| |#4| |#2|) 54)) (-1635 (((-417 |#4|) |#4|) 40)))
+(((-727 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2471 ((-2 (|:| -1593 (-947 |#3|)) (|:| -1693 (-947 |#3|))) |#4|)) (-15 -3444 (|#4| |#4| |#2|)) (-15 -2568 (|#4| (-1164 |#4|) |#2|)) (-15 -2135 (|#4| |#4| |#2|)) (-15 -3653 (|#4| (-1164 (-947 |#3|)) |#2|)) (-15 -2557 (|#4| (-406 (-947 |#3|)) |#2|)) (-15 -1635 ((-417 |#4|) |#4|))) (-788) (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)))) (-554) (-944 (-406 (-947 |#3|)) |#1| |#2|)) (T -727))
+((-1635 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *6 (-554)) (-5 *2 (-417 *3)) (-5 *1 (-727 *4 *5 *6 *3)) (-4 *3 (-944 (-406 (-947 *6)) *4 *5)))) (-2557 (*1 *2 *3 *4) (-12 (-4 *6 (-554)) (-4 *2 (-944 *3 *5 *4)) (-5 *1 (-727 *5 *4 *6 *2)) (-5 *3 (-406 (-947 *6))) (-4 *5 (-788)) (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))))) (-3653 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 (-947 *6))) (-4 *6 (-554)) (-4 *2 (-944 (-406 (-947 *6)) *5 *4)) (-5 *1 (-727 *5 *4 *6 *2)) (-4 *5 (-788)) (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))))) (-2135 (*1 *2 *2 *3) (-12 (-4 *4 (-788)) (-4 *3 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *5 (-554)) (-5 *1 (-727 *4 *3 *5 *2)) (-4 *2 (-944 (-406 (-947 *5)) *4 *3)))) (-2568 (*1 *2 *3 *4) (-12 (-5 *3 (-1164 *2)) (-4 *2 (-944 (-406 (-947 *6)) *5 *4)) (-5 *1 (-727 *5 *4 *6 *2)) (-4 *5 (-788)) (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *6 (-554)))) (-3444 (*1 *2 *2 *3) (-12 (-4 *4 (-788)) (-4 *3 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *5 (-554)) (-5 *1 (-727 *4 *3 *5 *2)) (-4 *2 (-944 (-406 (-947 *5)) *4 *3)))) (-2471 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *6 (-554)) (-5 *2 (-2 (|:| -1593 (-947 *6)) (|:| -1693 (-947 *6)))) (-5 *1 (-727 *4 *5 *6 *3)) (-4 *3 (-944 (-406 (-947 *6)) *4 *5)))))
+(-10 -7 (-15 -2471 ((-2 (|:| -1593 (-947 |#3|)) (|:| -1693 (-947 |#3|))) |#4|)) (-15 -3444 (|#4| |#4| |#2|)) (-15 -2568 (|#4| (-1164 |#4|) |#2|)) (-15 -2135 (|#4| |#4| |#2|)) (-15 -3653 (|#4| (-1164 (-947 |#3|)) |#2|)) (-15 -2557 (|#4| (-406 (-947 |#3|)) |#2|)) (-15 -1635 ((-417 |#4|) |#4|)))
((-1635 (((-417 |#4|) |#4|) 52)))
(((-728 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1635 ((-417 |#4|) |#4|))) (-788) (-845) (-13 (-306) (-146)) (-944 (-406 |#3|) |#1| |#2|)) (T -728))
((-1635 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-13 (-306) (-146))) (-5 *2 (-417 *3)) (-5 *1 (-728 *4 *5 *6 *3)) (-4 *3 (-944 (-406 *6) *4 *5)))))
@@ -2958,194 +2958,194 @@ NIL
(((-729 |#1| |#2| |#3|) (-10 -7 (-15 -4152 ((-730 |#2| |#3|) (-1 |#2| |#1|) (-730 |#1| |#3|)))) (-1044) (-1044) (-721)) (T -729))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-730 *5 *7)) (-4 *5 (-1044)) (-4 *6 (-1044)) (-4 *7 (-721)) (-5 *2 (-730 *6 *7)) (-5 *1 (-729 *5 *6 *7)))))
(-10 -7 (-15 -4152 ((-730 |#2| |#3|) (-1 |#2| |#1|) (-730 |#1| |#3|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 28)) (-1938 (((-639 (-2 (|:| -4221 |#1|) (|:| -3045 |#2|))) $) 29)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1382 (((-766)) 20 (-12 (|has| |#2| (-367)) (|has| |#1| (-367))))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) 57) (((-3 |#1| "failed") $) 60)) (-3961 ((|#2| $) NIL) ((|#1| $) NIL)) (-1601 (($ $) 79 (|has| |#2| (-845)))) (-3668 (((-3 $ "failed") $) 65)) (-1448 (($) 35 (-12 (|has| |#2| (-367)) (|has| |#1| (-367))))) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) 55)) (-1889 (((-639 $) $) 39)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| |#2|) 16)) (-4152 (($ (-1 |#1| |#1|) $) 54)) (-1999 (((-916) $) 32 (-12 (|has| |#2| (-367)) (|has| |#1| (-367))))) (-1560 ((|#2| $) 78 (|has| |#2| (-845)))) (-1573 ((|#1| $) 77 (|has| |#2| (-845)))) (-2913 (((-1150) $) NIL)) (-2466 (($ (-916)) 27 (-12 (|has| |#2| (-367)) (|has| |#1| (-367))))) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 76) (($ (-562)) 45) (($ |#2|) 42) (($ |#1|) 43) (($ (-639 (-2 (|:| -4221 |#1|) (|:| -3045 |#2|)))) 11)) (-4358 (((-639 |#1|) $) 41)) (-3906 ((|#1| $ |#2|) 87)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-2286 (($) 12 T CONST)) (-2294 (($) 33 T CONST)) (-1731 (((-112) $ $) 80)) (-1848 (($ $) 47) (($ $ $) NIL)) (-1835 (($ $ $) 26)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 52) (($ $ $) 89) (($ |#1| $) 49 (|has| |#1| (-171))) (($ $ |#1|) NIL (|has| |#1| (-171)))))
-(((-730 |#1| |#2|) (-13 (-1044) (-1033 |#2|) (-1033 |#1|) (-10 -8 (-15 -1378 ($ |#1| |#2|)) (-15 -3906 (|#1| $ |#2|)) (-15 -4054 ($ (-639 (-2 (|:| -4221 |#1|) (|:| -3045 |#2|))))) (-15 -1938 ((-639 (-2 (|:| -4221 |#1|) (|:| -3045 |#2|))) $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (-15 -3536 ((-112) $)) (-15 -4358 ((-639 |#1|) $)) (-15 -1889 ((-639 $) $)) (-15 -1694 ((-766) $)) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-171)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-367)) (IF (|has| |#2| (-367)) (-6 (-367)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-845)) (PROGN (-15 -1560 (|#2| $)) (-15 -1573 (|#1| $)) (-15 -1601 ($ $))) |%noBranch|))) (-1044) (-721)) (T -730))
-((-1378 (*1 *1 *2 *3) (-12 (-5 *1 (-730 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-721)))) (-3906 (*1 *2 *1 *3) (-12 (-4 *2 (-1044)) (-5 *1 (-730 *2 *3)) (-4 *3 (-721)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -4221 *3) (|:| -3045 *4)))) (-4 *3 (-1044)) (-4 *4 (-721)) (-5 *1 (-730 *3 *4)))) (-1938 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| -4221 *3) (|:| -3045 *4)))) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-721)))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-730 *3 *4)) (-4 *4 (-721)))) (-3536 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-721)))) (-4358 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-721)))) (-1889 (*1 *2 *1) (-12 (-5 *2 (-639 (-730 *3 *4))) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-721)))) (-1694 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-721)))) (-1560 (*1 *2 *1) (-12 (-4 *2 (-721)) (-4 *2 (-845)) (-5 *1 (-730 *3 *2)) (-4 *3 (-1044)))) (-1573 (*1 *2 *1) (-12 (-4 *2 (-1044)) (-5 *1 (-730 *2 *3)) (-4 *3 (-845)) (-4 *3 (-721)))) (-1601 (*1 *1 *1) (-12 (-5 *1 (-730 *2 *3)) (-4 *3 (-845)) (-4 *2 (-1044)) (-4 *3 (-721)))))
-(-13 (-1044) (-1033 |#2|) (-1033 |#1|) (-10 -8 (-15 -1378 ($ |#1| |#2|)) (-15 -3906 (|#1| $ |#2|)) (-15 -4054 ($ (-639 (-2 (|:| -4221 |#1|) (|:| -3045 |#2|))))) (-15 -1938 ((-639 (-2 (|:| -4221 |#1|) (|:| -3045 |#2|))) $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (-15 -3536 ((-112) $)) (-15 -4358 ((-639 |#1|) $)) (-15 -1889 ((-639 $) $)) (-15 -1694 ((-766) $)) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-171)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-367)) (IF (|has| |#2| (-367)) (-6 (-367)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-845)) (PROGN (-15 -1560 (|#2| $)) (-15 -1573 (|#1| $)) (-15 -1601 ($ $))) |%noBranch|)))
-((-4041 (((-112) $ $) 19)) (-2494 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-2129 (($ $ $) 72)) (-2330 (((-112) $ $) 73)) (-4336 (((-112) $ (-766)) 8)) (-1608 (($ (-639 |#1|)) 68) (($) 67)) (-3111 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-4354 (($ $) 62)) (-1459 (($ $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4000 (($ |#1| $) 47 (|has| $ (-6 -4402))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4402)))) (-1475 (($ |#1| $) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4402)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3027 (((-112) $ $) 64)) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22)) (-4376 (($ $ $) 69)) (-3262 ((|#1| $) 39)) (-4300 (($ |#1| $) 40) (($ |#1| $ (-766)) 63)) (-1709 (((-1112) $) 21)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-1904 ((|#1| $) 41)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2671 (((-639 (-2 (|:| -2694 |#1|) (|:| -1723 (-766)))) $) 61)) (-3703 (($ $ |#1|) 71) (($ $ $) 70)) (-3564 (($) 49) (($ (-639 |#1|)) 48)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 50)) (-4054 (((-857) $) 18)) (-1703 (($ (-639 |#1|)) 66) (($) 65)) (-1932 (($ (-639 |#1|)) 42)) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20)) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 28)) (-4196 (((-639 (-2 (|:| -4221 |#1|) (|:| -3044 |#2|))) $) 29)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1382 (((-766)) 20 (-12 (|has| |#2| (-367)) (|has| |#1| (-367))))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) 57) (((-3 |#1| "failed") $) 60)) (-3960 ((|#2| $) NIL) ((|#1| $) NIL)) (-1600 (($ $) 79 (|has| |#2| (-845)))) (-1694 (((-3 $ "failed") $) 65)) (-1447 (($) 35 (-12 (|has| |#2| (-367)) (|has| |#1| (-367))))) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) 55)) (-1869 (((-639 $) $) 39)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| |#2|) 16)) (-4152 (($ (-1 |#1| |#1|) $) 54)) (-3549 (((-916) $) 32 (-12 (|has| |#2| (-367)) (|has| |#1| (-367))))) (-1560 ((|#2| $) 78 (|has| |#2| (-845)))) (-1573 ((|#1| $) 77 (|has| |#2| (-845)))) (-3696 (((-1150) $) NIL)) (-2464 (($ (-916)) 27 (-12 (|has| |#2| (-367)) (|has| |#1| (-367))))) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 76) (($ (-562)) 45) (($ |#2|) 42) (($ |#1|) 43) (($ (-639 (-2 (|:| -4221 |#1|) (|:| -3044 |#2|)))) 11)) (-3969 (((-639 |#1|) $) 41)) (-2266 ((|#1| $ |#2|) 87)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-2285 (($) 12 T CONST)) (-2294 (($) 33 T CONST)) (-1733 (((-112) $ $) 80)) (-1847 (($ $) 47) (($ $ $) NIL)) (-1836 (($ $ $) 26)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 52) (($ $ $) 89) (($ |#1| $) 49 (|has| |#1| (-171))) (($ $ |#1|) NIL (|has| |#1| (-171)))))
+(((-730 |#1| |#2|) (-13 (-1044) (-1033 |#2|) (-1033 |#1|) (-10 -8 (-15 -1377 ($ |#1| |#2|)) (-15 -2266 (|#1| $ |#2|)) (-15 -4053 ($ (-639 (-2 (|:| -4221 |#1|) (|:| -3044 |#2|))))) (-15 -4196 ((-639 (-2 (|:| -4221 |#1|) (|:| -3044 |#2|))) $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (-15 -2833 ((-112) $)) (-15 -3969 ((-639 |#1|) $)) (-15 -1869 ((-639 $) $)) (-15 -3627 ((-766) $)) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-171)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-367)) (IF (|has| |#2| (-367)) (-6 (-367)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-845)) (PROGN (-15 -1560 (|#2| $)) (-15 -1573 (|#1| $)) (-15 -1600 ($ $))) |%noBranch|))) (-1044) (-721)) (T -730))
+((-1377 (*1 *1 *2 *3) (-12 (-5 *1 (-730 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-721)))) (-2266 (*1 *2 *1 *3) (-12 (-4 *2 (-1044)) (-5 *1 (-730 *2 *3)) (-4 *3 (-721)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -4221 *3) (|:| -3044 *4)))) (-4 *3 (-1044)) (-4 *4 (-721)) (-5 *1 (-730 *3 *4)))) (-4196 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| -4221 *3) (|:| -3044 *4)))) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-721)))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-730 *3 *4)) (-4 *4 (-721)))) (-2833 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-721)))) (-3969 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-721)))) (-1869 (*1 *2 *1) (-12 (-5 *2 (-639 (-730 *3 *4))) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-721)))) (-3627 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-721)))) (-1560 (*1 *2 *1) (-12 (-4 *2 (-721)) (-4 *2 (-845)) (-5 *1 (-730 *3 *2)) (-4 *3 (-1044)))) (-1573 (*1 *2 *1) (-12 (-4 *2 (-1044)) (-5 *1 (-730 *2 *3)) (-4 *3 (-845)) (-4 *3 (-721)))) (-1600 (*1 *1 *1) (-12 (-5 *1 (-730 *2 *3)) (-4 *3 (-845)) (-4 *2 (-1044)) (-4 *3 (-721)))))
+(-13 (-1044) (-1033 |#2|) (-1033 |#1|) (-10 -8 (-15 -1377 ($ |#1| |#2|)) (-15 -2266 (|#1| $ |#2|)) (-15 -4053 ($ (-639 (-2 (|:| -4221 |#1|) (|:| -3044 |#2|))))) (-15 -4196 ((-639 (-2 (|:| -4221 |#1|) (|:| -3044 |#2|))) $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (-15 -2833 ((-112) $)) (-15 -3969 ((-639 |#1|) $)) (-15 -1869 ((-639 $) $)) (-15 -3627 ((-766) $)) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-171)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-367)) (IF (|has| |#2| (-367)) (-6 (-367)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-845)) (PROGN (-15 -1560 (|#2| $)) (-15 -1573 (|#1| $)) (-15 -1600 ($ $))) |%noBranch|)))
+((-4041 (((-112) $ $) 19)) (-2492 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-2570 (($ $ $) 72)) (-3938 (((-112) $ $) 73)) (-3735 (((-112) $ (-766)) 8)) (-1607 (($ (-639 |#1|)) 68) (($) 67)) (-2968 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-3923 (($ $) 62)) (-1459 (($ $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-3729 (($ |#1| $) 47 (|has| $ (-6 -4403))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4403)))) (-1475 (($ |#1| $) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4403)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-3528 (((-112) $ $) 64)) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22)) (-4169 (($ $ $) 69)) (-2078 ((|#1| $) 39)) (-1581 (($ |#1| $) 40) (($ |#1| $ (-766)) 63)) (-1709 (((-1112) $) 21)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-2038 ((|#1| $) 41)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-3110 (((-639 (-2 (|:| -2693 |#1|) (|:| -1723 (-766)))) $) 61)) (-3874 (($ $ |#1|) 71) (($ $ $) 70)) (-1932 (($) 49) (($ (-639 |#1|)) 48)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 50)) (-4053 (((-857) $) 18)) (-1702 (($ (-639 |#1|)) 66) (($) 65)) (-4131 (($ (-639 |#1|)) 42)) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20)) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-731 |#1|) (-139) (-1092)) (T -731))
NIL
(-13 (-689 |t#1|) (-1090 |t#1|))
(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-609 (-857)) . T) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-234 |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-689 |#1|) . T) ((-1090 |#1|) . T) ((-1092) . T) ((-1207) . T))
-((-4041 (((-112) $ $) NIL)) (-2494 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 76)) (-2129 (($ $ $) 79)) (-2330 (((-112) $ $) 83)) (-4336 (((-112) $ (-766)) NIL)) (-1608 (($ (-639 |#1|)) 24) (($) 16)) (-3111 (($ (-1 (-112) |#1|) $) 70 (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-4354 (($ $) 71)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4000 (($ |#1| $) 61 (|has| $ (-6 -4402))) (($ (-1 (-112) |#1|) $) 65 (|has| $ (-6 -4402))) (($ |#1| $ (-562)) 63) (($ (-1 (-112) |#1|) $ (-562)) 66)) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (($ |#1| $ (-562)) 68) (($ (-1 (-112) |#1|) $ (-562)) 69)) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402)))) (-1720 (((-639 |#1|) $) 32 (|has| $ (-6 -4402)))) (-3027 (((-112) $ $) 82)) (-1839 (($) 14) (($ |#1|) 26) (($ (-639 |#1|)) 21)) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#1|) $) 38)) (-1669 (((-112) |#1| $) 58 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1490 (($ (-1 |#1| |#1|) $) 74 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 75)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-4376 (($ $ $) 77)) (-3262 ((|#1| $) 55)) (-4300 (($ |#1| $) 56) (($ |#1| $ (-766)) 72)) (-1709 (((-1112) $) NIL)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1904 ((|#1| $) 54)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 50)) (-4307 (($) 13)) (-2671 (((-639 (-2 (|:| -2694 |#1|) (|:| -1723 (-766)))) $) 48)) (-3703 (($ $ |#1|) NIL) (($ $ $) 78)) (-3564 (($) 15) (($ (-639 |#1|)) 23)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) 60 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) 67)) (-4208 (((-535) $) 36 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 20)) (-4054 (((-857) $) 44)) (-1703 (($ (-639 |#1|)) 25) (($) 17)) (-1932 (($ (-639 |#1|)) 22)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 81)) (-3492 (((-766) $) 59 (|has| $ (-6 -4402)))))
-(((-732 |#1|) (-13 (-731 |#1|) (-10 -8 (-6 -4402) (-6 -4403) (-15 -1839 ($)) (-15 -1839 ($ |#1|)) (-15 -1839 ($ (-639 |#1|))) (-15 -1912 ((-639 |#1|) $)) (-15 -1475 ($ |#1| $ (-562))) (-15 -1475 ($ (-1 (-112) |#1|) $ (-562))) (-15 -4000 ($ |#1| $ (-562))) (-15 -4000 ($ (-1 (-112) |#1|) $ (-562))))) (-1092)) (T -732))
-((-1839 (*1 *1) (-12 (-5 *1 (-732 *2)) (-4 *2 (-1092)))) (-1839 (*1 *1 *2) (-12 (-5 *1 (-732 *2)) (-4 *2 (-1092)))) (-1839 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-732 *3)))) (-1912 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-732 *3)) (-4 *3 (-1092)))) (-1475 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-732 *2)) (-4 *2 (-1092)))) (-1475 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-562)) (-4 *4 (-1092)) (-5 *1 (-732 *4)))) (-4000 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-732 *2)) (-4 *2 (-1092)))) (-4000 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-562)) (-4 *4 (-1092)) (-5 *1 (-732 *4)))))
-(-13 (-731 |#1|) (-10 -8 (-6 -4402) (-6 -4403) (-15 -1839 ($)) (-15 -1839 ($ |#1|)) (-15 -1839 ($ (-639 |#1|))) (-15 -1912 ((-639 |#1|) $)) (-15 -1475 ($ |#1| $ (-562))) (-15 -1475 ($ (-1 (-112) |#1|) $ (-562))) (-15 -4000 ($ |#1| $ (-562))) (-15 -4000 ($ (-1 (-112) |#1|) $ (-562)))))
-((-2420 (((-1261) (-1150)) 8)))
-(((-733) (-10 -7 (-15 -2420 ((-1261) (-1150))))) (T -733))
-((-2420 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-733)))))
-(-10 -7 (-15 -2420 ((-1261) (-1150))))
-((-3447 (((-639 |#1|) (-639 |#1|) (-639 |#1|)) 10)))
-(((-734 |#1|) (-10 -7 (-15 -3447 ((-639 |#1|) (-639 |#1|) (-639 |#1|)))) (-845)) (T -734))
-((-3447 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-734 *3)))))
-(-10 -7 (-15 -3447 ((-639 |#1|) (-639 |#1|) (-639 |#1|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1402 (((-639 |#2|) $) 139)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 132 (|has| |#1| (-554)))) (-2796 (($ $) 131 (|has| |#1| (-554)))) (-4370 (((-112) $) 129 (|has| |#1| (-554)))) (-2988 (($ $) 88 (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) 71 (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) 19)) (-1643 (($ $) 70 (|has| |#1| (-38 (-406 (-562)))))) (-4207 (($ $) 87 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 72 (|has| |#1| (-38 (-406 (-562)))))) (-3014 (($ $) 86 (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) 73 (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) 17 T CONST)) (-1601 (($ $) 123)) (-3668 (((-3 $ "failed") $) 33)) (-1454 (((-947 |#1|) $ (-766)) 101) (((-947 |#1|) $ (-766) (-766)) 100)) (-1756 (((-112) $) 140)) (-4100 (($) 98 (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-766) $ |#2|) 103) (((-766) $ |#2| (-766)) 102)) (-1957 (((-112) $) 31)) (-1891 (($ $ (-562)) 69 (|has| |#1| (-38 (-406 (-562)))))) (-3536 (((-112) $) 121)) (-1378 (($ $ (-639 |#2|) (-639 (-530 |#2|))) 138) (($ $ |#2| (-530 |#2|)) 137) (($ |#1| (-530 |#2|)) 122) (($ $ |#2| (-766)) 105) (($ $ (-639 |#2|) (-639 (-766))) 104)) (-4152 (($ (-1 |#1| |#1|) $) 120)) (-4365 (($ $) 95 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) 118)) (-1573 ((|#1| $) 117)) (-2913 (((-1150) $) 9)) (-2667 (($ $ |#2|) 99 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) 10)) (-1353 (($ $ (-766)) 106)) (-1762 (((-3 $ "failed") $ $) 133 (|has| |#1| (-554)))) (-3430 (($ $) 96 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (($ $ |#2| $) 114) (($ $ (-639 |#2|) (-639 $)) 113) (($ $ (-639 (-293 $))) 112) (($ $ (-293 $)) 111) (($ $ $ $) 110) (($ $ (-639 $) (-639 $)) 109)) (-4029 (($ $ |#2|) 42) (($ $ (-639 |#2|)) 41) (($ $ |#2| (-766)) 40) (($ $ (-639 |#2|) (-639 (-766))) 39)) (-3598 (((-530 |#2|) $) 119)) (-3023 (($ $) 85 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 74 (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) 84 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 75 (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) 83 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 76 (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) 141)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 136 (|has| |#1| (-171))) (($ $) 134 (|has| |#1| (-554))) (($ (-406 (-562))) 126 (|has| |#1| (-38 (-406 (-562)))))) (-3906 ((|#1| $ (-530 |#2|)) 124) (($ $ |#2| (-766)) 108) (($ $ (-639 |#2|) (-639 (-766))) 107)) (-2805 (((-3 $ "failed") $) 135 (|has| |#1| (-144)))) (-2579 (((-766)) 28)) (-3055 (($ $) 94 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 82 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) 130 (|has| |#1| (-554)))) (-3033 (($ $) 93 (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) 81 (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) 92 (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) 80 (|has| |#1| (-38 (-406 (-562)))))) (-1566 (($ $) 91 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 79 (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) 90 (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) 78 (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) 89 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 77 (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ |#2|) 38) (($ $ (-639 |#2|)) 37) (($ $ |#2| (-766)) 36) (($ $ (-639 |#2|) (-639 (-766))) 35)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 125 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ $) 97 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 68 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 128 (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) 127 (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 116) (($ $ |#1|) 115)))
+((-4041 (((-112) $ $) NIL)) (-2492 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 76)) (-2570 (($ $ $) 79)) (-3938 (((-112) $ $) 83)) (-3735 (((-112) $ (-766)) NIL)) (-1607 (($ (-639 |#1|)) 24) (($) 16)) (-2968 (($ (-1 (-112) |#1|) $) 70 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-3923 (($ $) 71)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3729 (($ |#1| $) 61 (|has| $ (-6 -4403))) (($ (-1 (-112) |#1|) $) 65 (|has| $ (-6 -4403))) (($ |#1| $ (-562)) 63) (($ (-1 (-112) |#1|) $ (-562)) 66)) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (($ |#1| $ (-562)) 68) (($ (-1 (-112) |#1|) $ (-562)) 69)) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-1720 (((-639 |#1|) $) 32 (|has| $ (-6 -4403)))) (-3528 (((-112) $ $) 82)) (-2562 (($) 14) (($ |#1|) 26) (($ (-639 |#1|)) 21)) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#1|) $) 38)) (-1572 (((-112) |#1| $) 58 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1491 (($ (-1 |#1| |#1|) $) 74 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 75)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-4169 (($ $ $) 77)) (-2078 ((|#1| $) 55)) (-1581 (($ |#1| $) 56) (($ |#1| $ (-766)) 72)) (-1709 (((-1112) $) NIL)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2038 ((|#1| $) 54)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 50)) (-1663 (($) 13)) (-3110 (((-639 (-2 (|:| -2693 |#1|) (|:| -1723 (-766)))) $) 48)) (-3874 (($ $ |#1|) NIL) (($ $ $) 78)) (-1932 (($) 15) (($ (-639 |#1|)) 23)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) 60 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) 67)) (-4208 (((-535) $) 36 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 20)) (-4053 (((-857) $) 44)) (-1702 (($ (-639 |#1|)) 25) (($) 17)) (-4131 (($ (-639 |#1|)) 22)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 81)) (-3492 (((-766) $) 59 (|has| $ (-6 -4403)))))
+(((-732 |#1|) (-13 (-731 |#1|) (-10 -8 (-6 -4403) (-6 -4404) (-15 -2562 ($)) (-15 -2562 ($ |#1|)) (-15 -2562 ($ (-639 |#1|))) (-15 -2123 ((-639 |#1|) $)) (-15 -1475 ($ |#1| $ (-562))) (-15 -1475 ($ (-1 (-112) |#1|) $ (-562))) (-15 -3729 ($ |#1| $ (-562))) (-15 -3729 ($ (-1 (-112) |#1|) $ (-562))))) (-1092)) (T -732))
+((-2562 (*1 *1) (-12 (-5 *1 (-732 *2)) (-4 *2 (-1092)))) (-2562 (*1 *1 *2) (-12 (-5 *1 (-732 *2)) (-4 *2 (-1092)))) (-2562 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-732 *3)))) (-2123 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-732 *3)) (-4 *3 (-1092)))) (-1475 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-732 *2)) (-4 *2 (-1092)))) (-1475 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-562)) (-4 *4 (-1092)) (-5 *1 (-732 *4)))) (-3729 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-732 *2)) (-4 *2 (-1092)))) (-3729 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-562)) (-4 *4 (-1092)) (-5 *1 (-732 *4)))))
+(-13 (-731 |#1|) (-10 -8 (-6 -4403) (-6 -4404) (-15 -2562 ($)) (-15 -2562 ($ |#1|)) (-15 -2562 ($ (-639 |#1|))) (-15 -2123 ((-639 |#1|) $)) (-15 -1475 ($ |#1| $ (-562))) (-15 -1475 ($ (-1 (-112) |#1|) $ (-562))) (-15 -3729 ($ |#1| $ (-562))) (-15 -3729 ($ (-1 (-112) |#1|) $ (-562)))))
+((-2419 (((-1261) (-1150)) 8)))
+(((-733) (-10 -7 (-15 -2419 ((-1261) (-1150))))) (T -733))
+((-2419 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-733)))))
+(-10 -7 (-15 -2419 ((-1261) (-1150))))
+((-3156 (((-639 |#1|) (-639 |#1|) (-639 |#1|)) 10)))
+(((-734 |#1|) (-10 -7 (-15 -3156 ((-639 |#1|) (-639 |#1|) (-639 |#1|)))) (-845)) (T -734))
+((-3156 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-734 *3)))))
+(-10 -7 (-15 -3156 ((-639 |#1|) (-639 |#1|) (-639 |#1|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-1401 (((-639 |#2|) $) 139)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 132 (|has| |#1| (-554)))) (-1965 (($ $) 131 (|has| |#1| (-554)))) (-4102 (((-112) $) 129 (|has| |#1| (-554)))) (-2987 (($ $) 88 (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) 71 (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) 19)) (-1644 (($ $) 70 (|has| |#1| (-38 (-406 (-562)))))) (-4206 (($ $) 87 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 72 (|has| |#1| (-38 (-406 (-562)))))) (-3013 (($ $) 86 (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) 73 (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) 17 T CONST)) (-1600 (($ $) 123)) (-1694 (((-3 $ "failed") $) 33)) (-1455 (((-947 |#1|) $ (-766)) 101) (((-947 |#1|) $ (-766) (-766)) 100)) (-2965 (((-112) $) 140)) (-4100 (($) 98 (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-766) $ |#2|) 103) (((-766) $ |#2| (-766)) 102)) (-4367 (((-112) $) 31)) (-1895 (($ $ (-562)) 69 (|has| |#1| (-38 (-406 (-562)))))) (-2833 (((-112) $) 121)) (-1377 (($ $ (-639 |#2|) (-639 (-530 |#2|))) 138) (($ $ |#2| (-530 |#2|)) 137) (($ |#1| (-530 |#2|)) 122) (($ $ |#2| (-766)) 105) (($ $ (-639 |#2|) (-639 (-766))) 104)) (-4152 (($ (-1 |#1| |#1|) $) 120)) (-4366 (($ $) 95 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) 118)) (-1573 ((|#1| $) 117)) (-3696 (((-1150) $) 9)) (-3081 (($ $ |#2|) 99 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) 10)) (-4316 (($ $ (-766)) 106)) (-1762 (((-3 $ "failed") $ $) 133 (|has| |#1| (-554)))) (-3430 (($ $) 96 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (($ $ |#2| $) 114) (($ $ (-639 |#2|) (-639 $)) 113) (($ $ (-639 (-293 $))) 112) (($ $ (-293 $)) 111) (($ $ $ $) 110) (($ $ (-639 $) (-639 $)) 109)) (-4029 (($ $ |#2|) 42) (($ $ (-639 |#2|)) 41) (($ $ |#2| (-766)) 40) (($ $ (-639 |#2|) (-639 (-766))) 39)) (-2250 (((-530 |#2|) $) 119)) (-3022 (($ $) 85 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 74 (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) 84 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 75 (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) 83 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 76 (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) 141)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 136 (|has| |#1| (-171))) (($ $) 134 (|has| |#1| (-554))) (($ (-406 (-562))) 126 (|has| |#1| (-38 (-406 (-562)))))) (-2266 ((|#1| $ (-530 |#2|)) 124) (($ $ |#2| (-766)) 108) (($ $ (-639 |#2|) (-639 (-766))) 107)) (-2059 (((-3 $ "failed") $) 135 (|has| |#1| (-144)))) (-1568 (((-766)) 28)) (-3054 (($ $) 94 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 82 (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) 130 (|has| |#1| (-554)))) (-3033 (($ $) 93 (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) 81 (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) 92 (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) 80 (|has| |#1| (-38 (-406 (-562)))))) (-1567 (($ $) 91 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 79 (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) 90 (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) 78 (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) 89 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 77 (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ |#2|) 38) (($ $ (-639 |#2|)) 37) (($ $ |#2| (-766)) 36) (($ $ (-639 |#2|) (-639 (-766))) 35)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 125 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ $) 97 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 68 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 128 (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) 127 (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 116) (($ $ |#1|) 115)))
(((-735 |#1| |#2|) (-139) (-1044) (-845)) (T -735))
-((-3906 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-735 *4 *2)) (-4 *4 (-1044)) (-4 *2 (-845)))) (-3906 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *5)) (-5 *3 (-639 (-766))) (-4 *1 (-735 *4 *5)) (-4 *4 (-1044)) (-4 *5 (-845)))) (-1353 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-735 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-845)))) (-1378 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-735 *4 *2)) (-4 *4 (-1044)) (-4 *2 (-845)))) (-1378 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *5)) (-5 *3 (-639 (-766))) (-4 *1 (-735 *4 *5)) (-4 *4 (-1044)) (-4 *5 (-845)))) (-1900 (*1 *2 *1 *3) (-12 (-4 *1 (-735 *4 *3)) (-4 *4 (-1044)) (-4 *3 (-845)) (-5 *2 (-766)))) (-1900 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-766)) (-4 *1 (-735 *4 *3)) (-4 *4 (-1044)) (-4 *3 (-845)))) (-1454 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-735 *4 *5)) (-4 *4 (-1044)) (-4 *5 (-845)) (-5 *2 (-947 *4)))) (-1454 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-766)) (-4 *1 (-735 *4 *5)) (-4 *4 (-1044)) (-4 *5 (-845)) (-5 *2 (-947 *4)))) (-2667 (*1 *1 *1 *2) (-12 (-4 *1 (-735 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-845)) (-4 *3 (-38 (-406 (-562)))))))
-(-13 (-895 |t#2|) (-968 |t#1| (-530 |t#2|) |t#2|) (-513 |t#2| $) (-308 $) (-10 -8 (-15 -3906 ($ $ |t#2| (-766))) (-15 -3906 ($ $ (-639 |t#2|) (-639 (-766)))) (-15 -1353 ($ $ (-766))) (-15 -1378 ($ $ |t#2| (-766))) (-15 -1378 ($ $ (-639 |t#2|) (-639 (-766)))) (-15 -1900 ((-766) $ |t#2|)) (-15 -1900 ((-766) $ |t#2| (-766))) (-15 -1454 ((-947 |t#1|) $ (-766))) (-15 -1454 ((-947 |t#1|) $ (-766) (-766))) (IF (|has| |t#1| (-38 (-406 (-562)))) (PROGN (-15 -2667 ($ $ |t#2|)) (-6 (-997)) (-6 (-1192))) |%noBranch|)))
+((-2266 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-735 *4 *2)) (-4 *4 (-1044)) (-4 *2 (-845)))) (-2266 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *5)) (-5 *3 (-639 (-766))) (-4 *1 (-735 *4 *5)) (-4 *4 (-1044)) (-4 *5 (-845)))) (-4316 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-735 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-845)))) (-1377 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-735 *4 *2)) (-4 *4 (-1044)) (-4 *2 (-845)))) (-1377 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *5)) (-5 *3 (-639 (-766))) (-4 *1 (-735 *4 *5)) (-4 *4 (-1044)) (-4 *5 (-845)))) (-1993 (*1 *2 *1 *3) (-12 (-4 *1 (-735 *4 *3)) (-4 *4 (-1044)) (-4 *3 (-845)) (-5 *2 (-766)))) (-1993 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-766)) (-4 *1 (-735 *4 *3)) (-4 *4 (-1044)) (-4 *3 (-845)))) (-1455 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-735 *4 *5)) (-4 *4 (-1044)) (-4 *5 (-845)) (-5 *2 (-947 *4)))) (-1455 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-766)) (-4 *1 (-735 *4 *5)) (-4 *4 (-1044)) (-4 *5 (-845)) (-5 *2 (-947 *4)))) (-3081 (*1 *1 *1 *2) (-12 (-4 *1 (-735 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-845)) (-4 *3 (-38 (-406 (-562)))))))
+(-13 (-895 |t#2|) (-968 |t#1| (-530 |t#2|) |t#2|) (-513 |t#2| $) (-308 $) (-10 -8 (-15 -2266 ($ $ |t#2| (-766))) (-15 -2266 ($ $ (-639 |t#2|) (-639 (-766)))) (-15 -4316 ($ $ (-766))) (-15 -1377 ($ $ |t#2| (-766))) (-15 -1377 ($ $ (-639 |t#2|) (-639 (-766)))) (-15 -1993 ((-766) $ |t#2|)) (-15 -1993 ((-766) $ |t#2| (-766))) (-15 -1455 ((-947 |t#1|) $ (-766))) (-15 -1455 ((-947 |t#1|) $ (-766) (-766))) (IF (|has| |t#1| (-38 (-406 (-562)))) (PROGN (-15 -3081 ($ $ |t#2|)) (-6 (-997)) (-6 (-1192))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-530 |#2|)) . T) ((-25) . T) ((-38 #1=(-406 (-562))) |has| |#1| (-38 (-406 (-562)))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) |has| |#1| (-554)) ((-35) |has| |#1| (-38 (-406 (-562)))) ((-95) |has| |#1| (-38 (-406 (-562)))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-406 (-562)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #1#) |has| |#1| (-38 (-406 (-562)))) ((-612 (-562)) . T) ((-612 |#1|) |has| |#1| (-171)) ((-612 $) |has| |#1| (-554)) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-283) |has| |#1| (-38 (-406 (-562)))) ((-289) |has| |#1| (-554)) ((-308 $) . T) ((-492) |has| |#1| (-38 (-406 (-562)))) ((-513 |#2| $) . T) ((-513 $ $) . T) ((-554) |has| |#1| (-554)) ((-642 #1#) |has| |#1| (-38 (-406 (-562)))) ((-642 |#1|) . T) ((-642 $) . T) ((-712 #1#) |has| |#1| (-38 (-406 (-562)))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) |has| |#1| (-554)) ((-721) . T) ((-895 |#2|) . T) ((-968 |#1| #0# |#2|) . T) ((-997) |has| |#1| (-38 (-406 (-562)))) ((-1050 #1#) |has| |#1| (-38 (-406 (-562)))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1192) |has| |#1| (-38 (-406 (-562)))) ((-1195) |has| |#1| (-38 (-406 (-562)))))
((-1635 (((-417 (-1164 |#4|)) (-1164 |#4|)) 30) (((-417 |#4|) |#4|) 26)))
(((-736 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1635 ((-417 |#4|) |#4|)) (-15 -1635 ((-417 (-1164 |#4|)) (-1164 |#4|)))) (-845) (-788) (-13 (-306) (-146)) (-944 |#3| |#2| |#1|)) (T -736))
((-1635 (*1 *2 *3) (-12 (-4 *4 (-845)) (-4 *5 (-788)) (-4 *6 (-13 (-306) (-146))) (-4 *7 (-944 *6 *5 *4)) (-5 *2 (-417 (-1164 *7))) (-5 *1 (-736 *4 *5 *6 *7)) (-5 *3 (-1164 *7)))) (-1635 (*1 *2 *3) (-12 (-4 *4 (-845)) (-4 *5 (-788)) (-4 *6 (-13 (-306) (-146))) (-5 *2 (-417 *3)) (-5 *1 (-736 *4 *5 *6 *3)) (-4 *3 (-944 *6 *5 *4)))))
(-10 -7 (-15 -1635 ((-417 |#4|) |#4|)) (-15 -1635 ((-417 (-1164 |#4|)) (-1164 |#4|))))
-((-2649 (((-417 |#4|) |#4| |#2|) 118)) (-2279 (((-417 |#4|) |#4|) NIL)) (-2921 (((-417 (-1164 |#4|)) (-1164 |#4|)) 109) (((-417 |#4|) |#4|) 40)) (-3077 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-639 (-2 (|:| -1635 (-1164 |#4|)) (|:| -1960 (-562)))))) (-1164 |#4|) (-639 |#2|) (-639 (-639 |#3|))) 68)) (-2091 (((-1164 |#3|) (-1164 |#3|) (-562)) 136)) (-3390 (((-639 (-766)) (-1164 |#4|) (-639 |#2|) (-766)) 60)) (-1943 (((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-1164 |#3|) (-1164 |#3|) |#4| (-639 |#2|) (-639 (-766)) (-639 |#3|)) 64)) (-4034 (((-2 (|:| |upol| (-1164 |#3|)) (|:| |Lval| (-639 |#3|)) (|:| |Lfact| (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1960 (-562))))) (|:| |ctpol| |#3|)) (-1164 |#4|) (-639 |#2|) (-639 (-639 |#3|))) 25)) (-1348 (((-2 (|:| -4380 (-1164 |#4|)) (|:| |polval| (-1164 |#3|))) (-1164 |#4|) (-1164 |#3|) (-562)) 56)) (-3956 (((-562) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1960 (-562))))) 133)) (-3610 ((|#4| (-562) (-417 |#4|)) 57)) (-2588 (((-112) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1960 (-562)))) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1960 (-562))))) NIL)))
-(((-737 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2921 ((-417 |#4|) |#4|)) (-15 -2921 ((-417 (-1164 |#4|)) (-1164 |#4|))) (-15 -2279 ((-417 |#4|) |#4|)) (-15 -3956 ((-562) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1960 (-562)))))) (-15 -2649 ((-417 |#4|) |#4| |#2|)) (-15 -1348 ((-2 (|:| -4380 (-1164 |#4|)) (|:| |polval| (-1164 |#3|))) (-1164 |#4|) (-1164 |#3|) (-562))) (-15 -3077 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-639 (-2 (|:| -1635 (-1164 |#4|)) (|:| -1960 (-562)))))) (-1164 |#4|) (-639 |#2|) (-639 (-639 |#3|)))) (-15 -4034 ((-2 (|:| |upol| (-1164 |#3|)) (|:| |Lval| (-639 |#3|)) (|:| |Lfact| (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1960 (-562))))) (|:| |ctpol| |#3|)) (-1164 |#4|) (-639 |#2|) (-639 (-639 |#3|)))) (-15 -3610 (|#4| (-562) (-417 |#4|))) (-15 -2588 ((-112) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1960 (-562)))) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1960 (-562)))))) (-15 -1943 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-1164 |#3|) (-1164 |#3|) |#4| (-639 |#2|) (-639 (-766)) (-639 |#3|))) (-15 -3390 ((-639 (-766)) (-1164 |#4|) (-639 |#2|) (-766))) (-15 -2091 ((-1164 |#3|) (-1164 |#3|) (-562)))) (-788) (-845) (-306) (-944 |#3| |#1| |#2|)) (T -737))
-((-2091 (*1 *2 *2 *3) (-12 (-5 *2 (-1164 *6)) (-5 *3 (-562)) (-4 *6 (-306)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-737 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))) (-3390 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1164 *9)) (-5 *4 (-639 *7)) (-4 *7 (-845)) (-4 *9 (-944 *8 *6 *7)) (-4 *6 (-788)) (-4 *8 (-306)) (-5 *2 (-639 (-766))) (-5 *1 (-737 *6 *7 *8 *9)) (-5 *5 (-766)))) (-1943 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1164 *11)) (-5 *6 (-639 *10)) (-5 *7 (-639 (-766))) (-5 *8 (-639 *11)) (-4 *10 (-845)) (-4 *11 (-306)) (-4 *9 (-788)) (-4 *5 (-944 *11 *9 *10)) (-5 *2 (-639 (-1164 *5))) (-5 *1 (-737 *9 *10 *11 *5)) (-5 *3 (-1164 *5)))) (-2588 (*1 *2 *3 *3) (-12 (-5 *3 (-639 (-2 (|:| -1635 (-1164 *6)) (|:| -1960 (-562))))) (-4 *6 (-306)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-737 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))) (-3610 (*1 *2 *3 *4) (-12 (-5 *3 (-562)) (-5 *4 (-417 *2)) (-4 *2 (-944 *7 *5 *6)) (-5 *1 (-737 *5 *6 *7 *2)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-306)))) (-4034 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1164 *9)) (-5 *4 (-639 *7)) (-5 *5 (-639 (-639 *8))) (-4 *7 (-845)) (-4 *8 (-306)) (-4 *9 (-944 *8 *6 *7)) (-4 *6 (-788)) (-5 *2 (-2 (|:| |upol| (-1164 *8)) (|:| |Lval| (-639 *8)) (|:| |Lfact| (-639 (-2 (|:| -1635 (-1164 *8)) (|:| -1960 (-562))))) (|:| |ctpol| *8))) (-5 *1 (-737 *6 *7 *8 *9)))) (-3077 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-639 *7)) (-5 *5 (-639 (-639 *8))) (-4 *7 (-845)) (-4 *8 (-306)) (-4 *6 (-788)) (-4 *9 (-944 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-639 (-2 (|:| -1635 (-1164 *9)) (|:| -1960 (-562))))))) (-5 *1 (-737 *6 *7 *8 *9)) (-5 *3 (-1164 *9)))) (-1348 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-562)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-306)) (-4 *9 (-944 *8 *6 *7)) (-5 *2 (-2 (|:| -4380 (-1164 *9)) (|:| |polval| (-1164 *8)))) (-5 *1 (-737 *6 *7 *8 *9)) (-5 *3 (-1164 *9)) (-5 *4 (-1164 *8)))) (-2649 (*1 *2 *3 *4) (-12 (-4 *5 (-788)) (-4 *4 (-845)) (-4 *6 (-306)) (-5 *2 (-417 *3)) (-5 *1 (-737 *5 *4 *6 *3)) (-4 *3 (-944 *6 *5 *4)))) (-3956 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -1635 (-1164 *6)) (|:| -1960 (-562))))) (-4 *6 (-306)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-562)) (-5 *1 (-737 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))) (-2279 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-5 *2 (-417 *3)) (-5 *1 (-737 *4 *5 *6 *3)) (-4 *3 (-944 *6 *4 *5)))) (-2921 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-417 (-1164 *7))) (-5 *1 (-737 *4 *5 *6 *7)) (-5 *3 (-1164 *7)))) (-2921 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-5 *2 (-417 *3)) (-5 *1 (-737 *4 *5 *6 *3)) (-4 *3 (-944 *6 *4 *5)))))
-(-10 -7 (-15 -2921 ((-417 |#4|) |#4|)) (-15 -2921 ((-417 (-1164 |#4|)) (-1164 |#4|))) (-15 -2279 ((-417 |#4|) |#4|)) (-15 -3956 ((-562) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1960 (-562)))))) (-15 -2649 ((-417 |#4|) |#4| |#2|)) (-15 -1348 ((-2 (|:| -4380 (-1164 |#4|)) (|:| |polval| (-1164 |#3|))) (-1164 |#4|) (-1164 |#3|) (-562))) (-15 -3077 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-639 (-2 (|:| -1635 (-1164 |#4|)) (|:| -1960 (-562)))))) (-1164 |#4|) (-639 |#2|) (-639 (-639 |#3|)))) (-15 -4034 ((-2 (|:| |upol| (-1164 |#3|)) (|:| |Lval| (-639 |#3|)) (|:| |Lfact| (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1960 (-562))))) (|:| |ctpol| |#3|)) (-1164 |#4|) (-639 |#2|) (-639 (-639 |#3|)))) (-15 -3610 (|#4| (-562) (-417 |#4|))) (-15 -2588 ((-112) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1960 (-562)))) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1960 (-562)))))) (-15 -1943 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-1164 |#3|) (-1164 |#3|) |#4| (-639 |#2|) (-639 (-766)) (-639 |#3|))) (-15 -3390 ((-639 (-766)) (-1164 |#4|) (-639 |#2|) (-766))) (-15 -2091 ((-1164 |#3|) (-1164 |#3|) (-562))))
-((-3650 (($ $ (-916)) 12)))
-(((-738 |#1| |#2|) (-10 -8 (-15 -3650 (|#1| |#1| (-916)))) (-739 |#2|) (-171)) (T -738))
-NIL
-(-10 -8 (-15 -3650 (|#1| |#1| (-916))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-1379 (($ $ (-916)) 28)) (-3650 (($ $ (-916)) 33)) (-2991 (($ $ (-916)) 29)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1911 (($ $ $) 25)) (-4054 (((-857) $) 11)) (-2436 (($ $ $ $) 26)) (-3626 (($ $ $) 24)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 30)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
+((-4156 (((-417 |#4|) |#4| |#2|) 118)) (-1612 (((-417 |#4|) |#4|) NIL)) (-3788 (((-417 (-1164 |#4|)) (-1164 |#4|)) 109) (((-417 |#4|) |#4|) 40)) (-3884 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-639 (-2 (|:| -1635 (-1164 |#4|)) (|:| -1300 (-562)))))) (-1164 |#4|) (-639 |#2|) (-639 (-639 |#3|))) 68)) (-3311 (((-1164 |#3|) (-1164 |#3|) (-562)) 136)) (-3831 (((-639 (-766)) (-1164 |#4|) (-639 |#2|) (-766)) 60)) (-1942 (((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-1164 |#3|) (-1164 |#3|) |#4| (-639 |#2|) (-639 (-766)) (-639 |#3|)) 64)) (-4060 (((-2 (|:| |upol| (-1164 |#3|)) (|:| |Lval| (-639 |#3|)) (|:| |Lfact| (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1300 (-562))))) (|:| |ctpol| |#3|)) (-1164 |#4|) (-639 |#2|) (-639 (-639 |#3|))) 25)) (-2202 (((-2 (|:| -4201 (-1164 |#4|)) (|:| |polval| (-1164 |#3|))) (-1164 |#4|) (-1164 |#3|) (-562)) 56)) (-1473 (((-562) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1300 (-562))))) 133)) (-4187 ((|#4| (-562) (-417 |#4|)) 57)) (-1661 (((-112) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1300 (-562)))) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1300 (-562))))) NIL)))
+(((-737 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3788 ((-417 |#4|) |#4|)) (-15 -3788 ((-417 (-1164 |#4|)) (-1164 |#4|))) (-15 -1612 ((-417 |#4|) |#4|)) (-15 -1473 ((-562) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1300 (-562)))))) (-15 -4156 ((-417 |#4|) |#4| |#2|)) (-15 -2202 ((-2 (|:| -4201 (-1164 |#4|)) (|:| |polval| (-1164 |#3|))) (-1164 |#4|) (-1164 |#3|) (-562))) (-15 -3884 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-639 (-2 (|:| -1635 (-1164 |#4|)) (|:| -1300 (-562)))))) (-1164 |#4|) (-639 |#2|) (-639 (-639 |#3|)))) (-15 -4060 ((-2 (|:| |upol| (-1164 |#3|)) (|:| |Lval| (-639 |#3|)) (|:| |Lfact| (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1300 (-562))))) (|:| |ctpol| |#3|)) (-1164 |#4|) (-639 |#2|) (-639 (-639 |#3|)))) (-15 -4187 (|#4| (-562) (-417 |#4|))) (-15 -1661 ((-112) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1300 (-562)))) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1300 (-562)))))) (-15 -1942 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-1164 |#3|) (-1164 |#3|) |#4| (-639 |#2|) (-639 (-766)) (-639 |#3|))) (-15 -3831 ((-639 (-766)) (-1164 |#4|) (-639 |#2|) (-766))) (-15 -3311 ((-1164 |#3|) (-1164 |#3|) (-562)))) (-788) (-845) (-306) (-944 |#3| |#1| |#2|)) (T -737))
+((-3311 (*1 *2 *2 *3) (-12 (-5 *2 (-1164 *6)) (-5 *3 (-562)) (-4 *6 (-306)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-737 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))) (-3831 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1164 *9)) (-5 *4 (-639 *7)) (-4 *7 (-845)) (-4 *9 (-944 *8 *6 *7)) (-4 *6 (-788)) (-4 *8 (-306)) (-5 *2 (-639 (-766))) (-5 *1 (-737 *6 *7 *8 *9)) (-5 *5 (-766)))) (-1942 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1164 *11)) (-5 *6 (-639 *10)) (-5 *7 (-639 (-766))) (-5 *8 (-639 *11)) (-4 *10 (-845)) (-4 *11 (-306)) (-4 *9 (-788)) (-4 *5 (-944 *11 *9 *10)) (-5 *2 (-639 (-1164 *5))) (-5 *1 (-737 *9 *10 *11 *5)) (-5 *3 (-1164 *5)))) (-1661 (*1 *2 *3 *3) (-12 (-5 *3 (-639 (-2 (|:| -1635 (-1164 *6)) (|:| -1300 (-562))))) (-4 *6 (-306)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)) (-5 *1 (-737 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))) (-4187 (*1 *2 *3 *4) (-12 (-5 *3 (-562)) (-5 *4 (-417 *2)) (-4 *2 (-944 *7 *5 *6)) (-5 *1 (-737 *5 *6 *7 *2)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-306)))) (-4060 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1164 *9)) (-5 *4 (-639 *7)) (-5 *5 (-639 (-639 *8))) (-4 *7 (-845)) (-4 *8 (-306)) (-4 *9 (-944 *8 *6 *7)) (-4 *6 (-788)) (-5 *2 (-2 (|:| |upol| (-1164 *8)) (|:| |Lval| (-639 *8)) (|:| |Lfact| (-639 (-2 (|:| -1635 (-1164 *8)) (|:| -1300 (-562))))) (|:| |ctpol| *8))) (-5 *1 (-737 *6 *7 *8 *9)))) (-3884 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-639 *7)) (-5 *5 (-639 (-639 *8))) (-4 *7 (-845)) (-4 *8 (-306)) (-4 *6 (-788)) (-4 *9 (-944 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-639 (-2 (|:| -1635 (-1164 *9)) (|:| -1300 (-562))))))) (-5 *1 (-737 *6 *7 *8 *9)) (-5 *3 (-1164 *9)))) (-2202 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-562)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-306)) (-4 *9 (-944 *8 *6 *7)) (-5 *2 (-2 (|:| -4201 (-1164 *9)) (|:| |polval| (-1164 *8)))) (-5 *1 (-737 *6 *7 *8 *9)) (-5 *3 (-1164 *9)) (-5 *4 (-1164 *8)))) (-4156 (*1 *2 *3 *4) (-12 (-4 *5 (-788)) (-4 *4 (-845)) (-4 *6 (-306)) (-5 *2 (-417 *3)) (-5 *1 (-737 *5 *4 *6 *3)) (-4 *3 (-944 *6 *5 *4)))) (-1473 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -1635 (-1164 *6)) (|:| -1300 (-562))))) (-4 *6 (-306)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-562)) (-5 *1 (-737 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))) (-1612 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-5 *2 (-417 *3)) (-5 *1 (-737 *4 *5 *6 *3)) (-4 *3 (-944 *6 *4 *5)))) (-3788 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-417 (-1164 *7))) (-5 *1 (-737 *4 *5 *6 *7)) (-5 *3 (-1164 *7)))) (-3788 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-5 *2 (-417 *3)) (-5 *1 (-737 *4 *5 *6 *3)) (-4 *3 (-944 *6 *4 *5)))))
+(-10 -7 (-15 -3788 ((-417 |#4|) |#4|)) (-15 -3788 ((-417 (-1164 |#4|)) (-1164 |#4|))) (-15 -1612 ((-417 |#4|) |#4|)) (-15 -1473 ((-562) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1300 (-562)))))) (-15 -4156 ((-417 |#4|) |#4| |#2|)) (-15 -2202 ((-2 (|:| -4201 (-1164 |#4|)) (|:| |polval| (-1164 |#3|))) (-1164 |#4|) (-1164 |#3|) (-562))) (-15 -3884 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-639 (-2 (|:| -1635 (-1164 |#4|)) (|:| -1300 (-562)))))) (-1164 |#4|) (-639 |#2|) (-639 (-639 |#3|)))) (-15 -4060 ((-2 (|:| |upol| (-1164 |#3|)) (|:| |Lval| (-639 |#3|)) (|:| |Lfact| (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1300 (-562))))) (|:| |ctpol| |#3|)) (-1164 |#4|) (-639 |#2|) (-639 (-639 |#3|)))) (-15 -4187 (|#4| (-562) (-417 |#4|))) (-15 -1661 ((-112) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1300 (-562)))) (-639 (-2 (|:| -1635 (-1164 |#3|)) (|:| -1300 (-562)))))) (-15 -1942 ((-3 (-639 (-1164 |#4|)) "failed") (-1164 |#4|) (-1164 |#3|) (-1164 |#3|) |#4| (-639 |#2|) (-639 (-766)) (-639 |#3|))) (-15 -3831 ((-639 (-766)) (-1164 |#4|) (-639 |#2|) (-766))) (-15 -3311 ((-1164 |#3|) (-1164 |#3|) (-562))))
+((-1492 (($ $ (-916)) 12)))
+(((-738 |#1| |#2|) (-10 -8 (-15 -1492 (|#1| |#1| (-916)))) (-739 |#2|) (-171)) (T -738))
+NIL
+(-10 -8 (-15 -1492 (|#1| |#1| (-916))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-2127 (($ $ (-916)) 28)) (-1492 (($ $ (-916)) 33)) (-3235 (($ $ (-916)) 29)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2114 (($ $ $) 25)) (-4053 (((-857) $) 11)) (-2584 (($ $ $ $) 26)) (-4324 (($ $ $) 24)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 30)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 27) (($ $ |#1|) 35) (($ |#1| $) 34)))
(((-739 |#1|) (-139) (-171)) (T -739))
-((-3650 (*1 *1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-739 *3)) (-4 *3 (-171)))))
-(-13 (-756) (-712 |t#1|) (-10 -8 (-15 -3650 ($ $ (-916)))))
+((-1492 (*1 *1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-739 *3)) (-4 *3 (-171)))))
+(-13 (-756) (-712 |t#1|) (-10 -8 (-15 -1492 ($ $ (-916)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-609 (-857)) . T) ((-642 |#1|) . T) ((-712 |#1|) . T) ((-715) . T) ((-756) . T) ((-1050 |#1|) . T) ((-1092) . T))
-((-2596 (((-1030) (-683 (-224)) (-562) (-112) (-562)) 25)) (-3308 (((-1030) (-683 (-224)) (-562) (-112) (-562)) 24)))
-(((-740) (-10 -7 (-15 -3308 ((-1030) (-683 (-224)) (-562) (-112) (-562))) (-15 -2596 ((-1030) (-683 (-224)) (-562) (-112) (-562))))) (T -740))
-((-2596 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-112)) (-5 *2 (-1030)) (-5 *1 (-740)))) (-3308 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-112)) (-5 *2 (-1030)) (-5 *1 (-740)))))
-(-10 -7 (-15 -3308 ((-1030) (-683 (-224)) (-562) (-112) (-562))) (-15 -2596 ((-1030) (-683 (-224)) (-562) (-112) (-562))))
-((-2621 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-74 FCN)))) 43)) (-4053 (((-1030) (-562) (-562) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-81 FCN)))) 39)) (-4255 (((-1030) (-224) (-224) (-224) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197)))) 32)))
-(((-741) (-10 -7 (-15 -4255 ((-1030) (-224) (-224) (-224) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))) (-15 -4053 ((-1030) (-562) (-562) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-81 FCN))))) (-15 -2621 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-74 FCN))))))) (T -741))
-((-2621 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1030)) (-5 *1 (-741)))) (-4053 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1030)) (-5 *1 (-741)))) (-4255 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197)))) (-5 *2 (-1030)) (-5 *1 (-741)))))
-(-10 -7 (-15 -4255 ((-1030) (-224) (-224) (-224) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))) (-15 -4053 ((-1030) (-562) (-562) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-81 FCN))))) (-15 -2621 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-74 FCN))))))
-((-3572 (((-1030) (-562) (-562) (-683 (-224)) (-562)) 34)) (-2000 (((-1030) (-562) (-562) (-683 (-224)) (-562)) 33)) (-2066 (((-1030) (-562) (-683 (-224)) (-562)) 32)) (-1869 (((-1030) (-562) (-683 (-224)) (-562)) 31)) (-1790 (((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 30)) (-2099 (((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 29)) (-3503 (((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-562)) 28)) (-1792 (((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-562)) 27)) (-2886 (((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 24)) (-2051 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562)) 23)) (-3881 (((-1030) (-562) (-683 (-224)) (-562)) 22)) (-2384 (((-1030) (-562) (-683 (-224)) (-562)) 21)))
-(((-742) (-10 -7 (-15 -2384 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -3881 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -2051 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2886 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1792 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3503 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2099 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1790 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1869 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -2066 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -2000 ((-1030) (-562) (-562) (-683 (-224)) (-562))) (-15 -3572 ((-1030) (-562) (-562) (-683 (-224)) (-562))))) (T -742))
-((-3572 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-2000 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-2066 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-1869 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-1790 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-2099 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-3503 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-1792 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-2886 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-2051 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-3881 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-2384 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))))
-(-10 -7 (-15 -2384 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -3881 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -2051 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2886 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1792 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3503 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2099 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1790 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1869 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -2066 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -2000 ((-1030) (-562) (-562) (-683 (-224)) (-562))) (-15 -3572 ((-1030) (-562) (-562) (-683 (-224)) (-562))))
-((-1758 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-224) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN)))) 52)) (-3298 (((-1030) (-683 (-224)) (-683 (-224)) (-562) (-562)) 51)) (-3618 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN)))) 50)) (-2222 (((-1030) (-224) (-224) (-562) (-562) (-562) (-562)) 46)) (-3443 (((-1030) (-224) (-224) (-562) (-224) (-562) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) 45)) (-3656 (((-1030) (-224) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) 44)) (-2893 (((-1030) (-224) (-224) (-224) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) 43)) (-3119 (((-1030) (-224) (-224) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) 42)) (-1550 (((-1030) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197)))) 38)) (-2813 (((-1030) (-224) (-224) (-562) (-683 (-224)) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197)))) 37)) (-4122 (((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197)))) 33)) (-4256 (((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197)))) 32)))
-(((-743) (-10 -7 (-15 -4256 ((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))) (-15 -4122 ((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))) (-15 -2813 ((-1030) (-224) (-224) (-562) (-683 (-224)) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))) (-15 -1550 ((-1030) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))) (-15 -3119 ((-1030) (-224) (-224) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -2893 ((-1030) (-224) (-224) (-224) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -3656 ((-1030) (-224) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -3443 ((-1030) (-224) (-224) (-562) (-224) (-562) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -2222 ((-1030) (-224) (-224) (-562) (-562) (-562) (-562))) (-15 -3618 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN))))) (-15 -3298 ((-1030) (-683 (-224)) (-683 (-224)) (-562) (-562))) (-15 -1758 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-224) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN))))))) (T -743))
-((-1758 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-3298 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-743)))) (-3618 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-2222 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-743)))) (-3443 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-3656 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-2893 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-3119 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-1550 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-2813 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197)))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-743)))) (-4122 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-4256 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197)))) (-5 *2 (-1030)) (-5 *1 (-743)))))
-(-10 -7 (-15 -4256 ((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))) (-15 -4122 ((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))) (-15 -2813 ((-1030) (-224) (-224) (-562) (-683 (-224)) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))) (-15 -1550 ((-1030) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))) (-15 -3119 ((-1030) (-224) (-224) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -2893 ((-1030) (-224) (-224) (-224) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -3656 ((-1030) (-224) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -3443 ((-1030) (-224) (-224) (-562) (-224) (-562) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -2222 ((-1030) (-224) (-224) (-562) (-562) (-562) (-562))) (-15 -3618 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN))))) (-15 -3298 ((-1030) (-683 (-224)) (-683 (-224)) (-562) (-562))) (-15 -1758 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-224) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN))))))
-((-3568 (((-1030) (-562) (-562) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-387)) (|:| |fp| (-76 G JACOBG JACGEP)))) 76)) (-1921 (((-1030) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))) (-387) (-387)) 69) (((-1030) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL)))) 68)) (-3538 (((-1030) (-224) (-224) (-562) (-224) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-387)) (|:| |fp| (-85 FCNG)))) 57)) (-3929 (((-1030) (-683 (-224)) (-683 (-224)) (-562) (-224) (-224) (-224) (-562) (-562) (-562) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) 50)) (-2763 (((-1030) (-224) (-562) (-562) (-1150) (-562) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT)))) 49)) (-3059 (((-1030) (-224) (-562) (-562) (-224) (-1150) (-224) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT)))) 45)) (-1542 (((-1030) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) 42)) (-2085 (((-1030) (-224) (-562) (-562) (-562) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT)))) 38)))
-(((-744) (-10 -7 (-15 -2085 ((-1030) (-224) (-562) (-562) (-562) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))) (-15 -1542 ((-1030) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))))) (-15 -3059 ((-1030) (-224) (-562) (-562) (-224) (-1150) (-224) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))) (-15 -2763 ((-1030) (-224) (-562) (-562) (-1150) (-562) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))) (-15 -3929 ((-1030) (-683 (-224)) (-683 (-224)) (-562) (-224) (-224) (-224) (-562) (-562) (-562) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))))) (-15 -3538 ((-1030) (-224) (-224) (-562) (-224) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-387)) (|:| |fp| (-85 FCNG))))) (-15 -1921 ((-1030) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))))) (-15 -1921 ((-1030) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))) (-387) (-387))) (-15 -3568 ((-1030) (-562) (-562) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-387)) (|:| |fp| (-76 G JACOBG JACGEP))))))) (T -744))
-((-3568 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-75 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-76 G JACOBG JACGEP)))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))) (-1921 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL)))) (-5 *8 (-387)) (-5 *2 (-1030)) (-5 *1 (-744)))) (-1921 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL)))) (-5 *2 (-1030)) (-5 *1 (-744)))) (-3538 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-84 FCNF)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))) (-3929 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1030)) (-5 *1 (-744)))) (-2763 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-562)) (-5 *5 (-1150)) (-5 *6 (-683 (-224))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-387)) (|:| |fp| (-71 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))) (-3059 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-562)) (-5 *5 (-1150)) (-5 *6 (-683 (-224))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))) (-1542 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))) (-2085 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))))
-(-10 -7 (-15 -2085 ((-1030) (-224) (-562) (-562) (-562) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))) (-15 -1542 ((-1030) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))))) (-15 -3059 ((-1030) (-224) (-562) (-562) (-224) (-1150) (-224) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))) (-15 -2763 ((-1030) (-224) (-562) (-562) (-1150) (-562) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))) (-15 -3929 ((-1030) (-683 (-224)) (-683 (-224)) (-562) (-224) (-224) (-224) (-562) (-562) (-562) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))))) (-15 -3538 ((-1030) (-224) (-224) (-562) (-224) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-387)) (|:| |fp| (-85 FCNG))))) (-15 -1921 ((-1030) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))))) (-15 -1921 ((-1030) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))) (-387) (-387))) (-15 -3568 ((-1030) (-562) (-562) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-387)) (|:| |fp| (-76 G JACOBG JACGEP))))))
-((-1414 (((-1030) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-669 (-224)) (-562)) 45)) (-2854 (((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-1150) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-387)) (|:| |fp| (-83 BNDY)))) 41)) (-3227 (((-1030) (-562) (-562) (-562) (-562) (-224) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 23)))
-(((-745) (-10 -7 (-15 -3227 ((-1030) (-562) (-562) (-562) (-562) (-224) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2854 ((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-1150) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-387)) (|:| |fp| (-83 BNDY))))) (-15 -1414 ((-1030) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-669 (-224)) (-562))))) (T -745))
-((-1414 (*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4 *4 *6 *4) (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-669 (-224))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-745)))) (-2854 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-1150)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-82 PDEF)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1030)) (-5 *1 (-745)))) (-3227 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-745)))))
-(-10 -7 (-15 -3227 ((-1030) (-562) (-562) (-562) (-562) (-224) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2854 ((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-1150) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-387)) (|:| |fp| (-83 BNDY))))) (-15 -1414 ((-1030) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-669 (-224)) (-562))))
-((-3029 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-683 (-224)) (-224) (-224) (-562)) 35)) (-1702 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-224) (-224) (-562)) 34)) (-3834 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-683 (-224)) (-224) (-224) (-562)) 33)) (-2274 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 29)) (-2439 (((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 28)) (-3816 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562)) 27)) (-2270 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-562)) 24)) (-2597 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-562)) 23)) (-2663 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562)) 22)) (-3000 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562)) 21)))
-(((-746) (-10 -7 (-15 -3000 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562))) (-15 -2663 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2597 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -2270 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -3816 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562))) (-15 -2439 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2274 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3834 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-683 (-224)) (-224) (-224) (-562))) (-15 -1702 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-224) (-224) (-562))) (-15 -3029 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-683 (-224)) (-224) (-224) (-562))))) (T -746))
-((-3029 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *2 (-1030)) (-5 *1 (-746)))) (-1702 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *2 (-1030)) (-5 *1 (-746)))) (-3834 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *6 (-224)) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-746)))) (-2274 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-746)))) (-2439 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-746)))) (-3816 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *2 (-1030)) (-5 *1 (-746)))) (-2270 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-746)))) (-2597 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-746)))) (-2663 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-746)))) (-3000 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-746)))))
-(-10 -7 (-15 -3000 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562))) (-15 -2663 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2597 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -2270 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -3816 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562))) (-15 -2439 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2274 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3834 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-683 (-224)) (-224) (-224) (-562))) (-15 -1702 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-224) (-224) (-562))) (-15 -3029 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-683 (-224)) (-224) (-224) (-562))))
-((-2405 (((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562)) 45)) (-2818 (((-1030) (-562) (-562) (-562) (-224) (-683 (-224)) (-683 (-224)) (-562)) 44)) (-1323 (((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562)) 43)) (-2855 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 42)) (-3090 (((-1030) (-1150) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562)) 41)) (-4311 (((-1030) (-1150) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562)) 40)) (-2366 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562) (-562) (-562) (-224) (-683 (-224)) (-562)) 39)) (-3682 (((-1030) (-1150) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-562))) 38)) (-1919 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562)) 35)) (-3175 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562)) 34)) (-3602 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562)) 33)) (-2125 (((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 32)) (-2423 (((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-224) (-562)) 31)) (-3960 (((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-562)) 30)) (-3640 (((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-562) (-562) (-562)) 29)) (-2160 (((-1030) (-562) (-562) (-562) (-224) (-224) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562) (-683 (-562)) (-562) (-562) (-562)) 28)) (-2417 (((-1030) (-562) (-683 (-224)) (-224) (-562)) 24)) (-3896 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 21)))
-(((-747) (-10 -7 (-15 -3896 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2417 ((-1030) (-562) (-683 (-224)) (-224) (-562))) (-15 -2160 ((-1030) (-562) (-562) (-562) (-224) (-224) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562) (-683 (-562)) (-562) (-562) (-562))) (-15 -3640 ((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-562) (-562) (-562))) (-15 -3960 ((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-562))) (-15 -2423 ((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-224) (-562))) (-15 -2125 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3602 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562))) (-15 -3175 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562))) (-15 -1919 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3682 ((-1030) (-1150) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-562)))) (-15 -2366 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562) (-562) (-562) (-224) (-683 (-224)) (-562))) (-15 -4311 ((-1030) (-1150) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562))) (-15 -3090 ((-1030) (-1150) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2855 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1323 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562))) (-15 -2818 ((-1030) (-562) (-562) (-562) (-224) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2405 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562))))) (T -747))
-((-2405 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2818 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-1323 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2855 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-747)))) (-3090 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-4311 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1150)) (-5 *5 (-683 (-224))) (-5 *6 (-224)) (-5 *7 (-683 (-562))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2366 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *6 (-224)) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-3682 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1150)) (-5 *5 (-683 (-224))) (-5 *6 (-224)) (-5 *7 (-683 (-562))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-1919 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-747)))) (-3175 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-3602 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2125 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2423 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-3960 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-3640 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2160 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-683 (-224))) (-5 *6 (-683 (-562))) (-5 *3 (-562)) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2417 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-3896 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-747)))))
-(-10 -7 (-15 -3896 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2417 ((-1030) (-562) (-683 (-224)) (-224) (-562))) (-15 -2160 ((-1030) (-562) (-562) (-562) (-224) (-224) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562) (-683 (-562)) (-562) (-562) (-562))) (-15 -3640 ((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-562) (-562) (-562))) (-15 -3960 ((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-562))) (-15 -2423 ((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-224) (-562))) (-15 -2125 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3602 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562))) (-15 -3175 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562))) (-15 -1919 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3682 ((-1030) (-1150) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-562)))) (-15 -2366 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562) (-562) (-562) (-224) (-683 (-224)) (-562))) (-15 -4311 ((-1030) (-1150) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562))) (-15 -3090 ((-1030) (-1150) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2855 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1323 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562))) (-15 -2818 ((-1030) (-562) (-562) (-562) (-224) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2405 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562))))
-((-2693 (((-1030) (-562) (-562) (-562) (-224) (-683 (-224)) (-562) (-683 (-224)) (-562)) 63)) (-3005 (((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-112) (-224) (-562) (-224) (-224) (-112) (-224) (-224) (-224) (-224) (-112) (-562) (-562) (-562) (-562) (-562) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-562)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN)))) 62)) (-1373 (((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-224) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-112) (-112) (-112) (-562) (-562) (-683 (-224)) (-683 (-562)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-65 QPHESS)))) 58)) (-2825 (((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-112) (-562) (-562) (-683 (-224)) (-562)) 51)) (-2198 (((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-66 FUNCT1)))) 50)) (-2396 (((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-63 LSFUN2)))) 46)) (-2087 (((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-79 LSFUN1)))) 42)) (-3888 (((-1030) (-562) (-224) (-224) (-562) (-224) (-112) (-224) (-224) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN)))) 38)))
-(((-748) (-10 -7 (-15 -3888 ((-1030) (-562) (-224) (-224) (-562) (-224) (-112) (-224) (-224) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN))))) (-15 -2087 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-79 LSFUN1))))) (-15 -2396 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-63 LSFUN2))))) (-15 -2198 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-66 FUNCT1))))) (-15 -2825 ((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-112) (-562) (-562) (-683 (-224)) (-562))) (-15 -1373 ((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-224) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-112) (-112) (-112) (-562) (-562) (-683 (-224)) (-683 (-562)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-65 QPHESS))))) (-15 -3005 ((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-112) (-224) (-562) (-224) (-224) (-112) (-224) (-224) (-224) (-224) (-112) (-562) (-562) (-562) (-562) (-562) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-562)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN))))) (-15 -2693 ((-1030) (-562) (-562) (-562) (-224) (-683 (-224)) (-562) (-683 (-224)) (-562))))) (T -748))
-((-2693 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-748)))) (-3005 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6 *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8 *9) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-112)) (-5 *6 (-224)) (-5 *7 (-683 (-562))) (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-80 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN)))) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-748)))) (-1373 (*1 *2 *3 *3 *3 *3 *3 *3 *3 *3 *4 *5 *5 *5 *5 *5 *5 *6 *6 *6 *3 *3 *5 *7 *3 *8) (-12 (-5 *5 (-683 (-224))) (-5 *6 (-112)) (-5 *7 (-683 (-562))) (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-65 QPHESS)))) (-5 *3 (-562)) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-748)))) (-2825 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-112)) (-5 *2 (-1030)) (-5 *1 (-748)))) (-2198 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-66 FUNCT1)))) (-5 *2 (-1030)) (-5 *1 (-748)))) (-2396 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-63 LSFUN2)))) (-5 *2 (-1030)) (-5 *1 (-748)))) (-2087 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-79 LSFUN1)))) (-5 *2 (-1030)) (-5 *1 (-748)))) (-3888 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-562)) (-5 *5 (-112)) (-5 *6 (-683 (-224))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN)))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-748)))))
-(-10 -7 (-15 -3888 ((-1030) (-562) (-224) (-224) (-562) (-224) (-112) (-224) (-224) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN))))) (-15 -2087 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-79 LSFUN1))))) (-15 -2396 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-63 LSFUN2))))) (-15 -2198 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-66 FUNCT1))))) (-15 -2825 ((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-112) (-562) (-562) (-683 (-224)) (-562))) (-15 -1373 ((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-224) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-112) (-112) (-112) (-562) (-562) (-683 (-224)) (-683 (-562)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-65 QPHESS))))) (-15 -3005 ((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-112) (-224) (-562) (-224) (-224) (-112) (-224) (-224) (-224) (-224) (-112) (-562) (-562) (-562) (-562) (-562) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-562)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN))))) (-15 -2693 ((-1030) (-562) (-562) (-562) (-224) (-683 (-224)) (-562) (-683 (-224)) (-562))))
-((-2642 (((-1030) (-1150) (-562) (-562) (-562) (-562) (-683 (-168 (-224))) (-683 (-168 (-224))) (-562)) 47)) (-2403 (((-1030) (-1150) (-1150) (-562) (-562) (-683 (-168 (-224))) (-562) (-683 (-168 (-224))) (-562) (-562) (-683 (-168 (-224))) (-562)) 46)) (-3903 (((-1030) (-562) (-562) (-562) (-683 (-168 (-224))) (-562)) 45)) (-4223 (((-1030) (-1150) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 40)) (-2846 (((-1030) (-1150) (-1150) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-683 (-224)) (-562)) 39)) (-3132 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-562)) 36)) (-3471 (((-1030) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562)) 35)) (-3905 (((-1030) (-562) (-562) (-562) (-562) (-639 (-112)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-224) (-224) (-562)) 34)) (-3013 (((-1030) (-562) (-562) (-562) (-683 (-562)) (-683 (-562)) (-683 (-562)) (-683 (-562)) (-112) (-224) (-112) (-683 (-562)) (-683 (-224)) (-562)) 33)) (-1380 (((-1030) (-562) (-562) (-562) (-562) (-224) (-112) (-112) (-639 (-112)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-562)) 32)))
-(((-749) (-10 -7 (-15 -1380 ((-1030) (-562) (-562) (-562) (-562) (-224) (-112) (-112) (-639 (-112)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-562))) (-15 -3013 ((-1030) (-562) (-562) (-562) (-683 (-562)) (-683 (-562)) (-683 (-562)) (-683 (-562)) (-112) (-224) (-112) (-683 (-562)) (-683 (-224)) (-562))) (-15 -3905 ((-1030) (-562) (-562) (-562) (-562) (-639 (-112)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-224) (-224) (-562))) (-15 -3471 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562))) (-15 -3132 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-562))) (-15 -2846 ((-1030) (-1150) (-1150) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-683 (-224)) (-562))) (-15 -4223 ((-1030) (-1150) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3903 ((-1030) (-562) (-562) (-562) (-683 (-168 (-224))) (-562))) (-15 -2403 ((-1030) (-1150) (-1150) (-562) (-562) (-683 (-168 (-224))) (-562) (-683 (-168 (-224))) (-562) (-562) (-683 (-168 (-224))) (-562))) (-15 -2642 ((-1030) (-1150) (-562) (-562) (-562) (-562) (-683 (-168 (-224))) (-683 (-168 (-224))) (-562))))) (T -749))
-((-2642 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-168 (-224)))) (-5 *2 (-1030)) (-5 *1 (-749)))) (-2403 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-168 (-224)))) (-5 *2 (-1030)) (-5 *1 (-749)))) (-3903 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-168 (-224)))) (-5 *2 (-1030)) (-5 *1 (-749)))) (-4223 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-749)))) (-2846 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-749)))) (-3132 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-749)))) (-3471 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-749)))) (-3905 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-639 (-112))) (-5 *5 (-683 (-224))) (-5 *6 (-683 (-562))) (-5 *7 (-224)) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-749)))) (-3013 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-683 (-562))) (-5 *5 (-112)) (-5 *7 (-683 (-224))) (-5 *3 (-562)) (-5 *6 (-224)) (-5 *2 (-1030)) (-5 *1 (-749)))) (-1380 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-639 (-112))) (-5 *7 (-683 (-224))) (-5 *8 (-683 (-562))) (-5 *3 (-562)) (-5 *4 (-224)) (-5 *5 (-112)) (-5 *2 (-1030)) (-5 *1 (-749)))))
-(-10 -7 (-15 -1380 ((-1030) (-562) (-562) (-562) (-562) (-224) (-112) (-112) (-639 (-112)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-562))) (-15 -3013 ((-1030) (-562) (-562) (-562) (-683 (-562)) (-683 (-562)) (-683 (-562)) (-683 (-562)) (-112) (-224) (-112) (-683 (-562)) (-683 (-224)) (-562))) (-15 -3905 ((-1030) (-562) (-562) (-562) (-562) (-639 (-112)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-224) (-224) (-562))) (-15 -3471 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562))) (-15 -3132 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-562))) (-15 -2846 ((-1030) (-1150) (-1150) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-683 (-224)) (-562))) (-15 -4223 ((-1030) (-1150) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3903 ((-1030) (-562) (-562) (-562) (-683 (-168 (-224))) (-562))) (-15 -2403 ((-1030) (-1150) (-1150) (-562) (-562) (-683 (-168 (-224))) (-562) (-683 (-168 (-224))) (-562) (-562) (-683 (-168 (-224))) (-562))) (-15 -2642 ((-1030) (-1150) (-562) (-562) (-562) (-562) (-683 (-168 (-224))) (-683 (-168 (-224))) (-562))))
-((-2528 (((-1030) (-562) (-562) (-562) (-562) (-562) (-112) (-562) (-112) (-562) (-683 (-168 (-224))) (-683 (-168 (-224))) (-562)) 66)) (-3767 (((-1030) (-562) (-562) (-562) (-562) (-562) (-112) (-562) (-112) (-562) (-683 (-224)) (-683 (-224)) (-562)) 61)) (-1969 (((-1030) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE))) (-387)) 56) (((-1030) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE)))) 55)) (-3074 (((-1030) (-562) (-562) (-562) (-224) (-112) (-562) (-683 (-224)) (-683 (-224)) (-562)) 37)) (-1299 (((-1030) (-562) (-562) (-224) (-224) (-562) (-562) (-683 (-224)) (-562)) 33)) (-2912 (((-1030) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-562) (-562) (-562)) 30)) (-3230 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 29)) (-1648 (((-1030) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 28)) (-2063 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 27)) (-2474 (((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562)) 26)) (-3356 (((-1030) (-562) (-562) (-683 (-224)) (-562)) 25)) (-3693 (((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 24)) (-3325 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 23)) (-3657 (((-1030) (-683 (-224)) (-562) (-562) (-562) (-562)) 22)) (-2164 (((-1030) (-562) (-562) (-683 (-224)) (-562)) 21)))
-(((-750) (-10 -7 (-15 -2164 ((-1030) (-562) (-562) (-683 (-224)) (-562))) (-15 -3657 ((-1030) (-683 (-224)) (-562) (-562) (-562) (-562))) (-15 -3325 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3693 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3356 ((-1030) (-562) (-562) (-683 (-224)) (-562))) (-15 -2474 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562))) (-15 -2063 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1648 ((-1030) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3230 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2912 ((-1030) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-562) (-562) (-562))) (-15 -1299 ((-1030) (-562) (-562) (-224) (-224) (-562) (-562) (-683 (-224)) (-562))) (-15 -3074 ((-1030) (-562) (-562) (-562) (-224) (-112) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1969 ((-1030) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE))))) (-15 -1969 ((-1030) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE))) (-387))) (-15 -3767 ((-1030) (-562) (-562) (-562) (-562) (-562) (-112) (-562) (-112) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2528 ((-1030) (-562) (-562) (-562) (-562) (-562) (-112) (-562) (-112) (-562) (-683 (-168 (-224))) (-683 (-168 (-224))) (-562))))) (T -750))
-((-2528 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-112)) (-5 *5 (-683 (-168 (-224)))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-3767 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-112)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-1969 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-387)) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-750)))) (-1969 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-750)))) (-3074 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-562)) (-5 *5 (-112)) (-5 *6 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-750)))) (-1299 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-750)))) (-2912 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-750)))) (-3230 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-1648 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-2063 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-2474 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-3356 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-3693 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-3325 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-3657 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-750)))) (-2164 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))))
-(-10 -7 (-15 -2164 ((-1030) (-562) (-562) (-683 (-224)) (-562))) (-15 -3657 ((-1030) (-683 (-224)) (-562) (-562) (-562) (-562))) (-15 -3325 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3693 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3356 ((-1030) (-562) (-562) (-683 (-224)) (-562))) (-15 -2474 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562))) (-15 -2063 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1648 ((-1030) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3230 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2912 ((-1030) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-562) (-562) (-562))) (-15 -1299 ((-1030) (-562) (-562) (-224) (-224) (-562) (-562) (-683 (-224)) (-562))) (-15 -3074 ((-1030) (-562) (-562) (-562) (-224) (-112) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1969 ((-1030) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE))))) (-15 -1969 ((-1030) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE))) (-387))) (-15 -3767 ((-1030) (-562) (-562) (-562) (-562) (-562) (-112) (-562) (-112) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2528 ((-1030) (-562) (-562) (-562) (-562) (-562) (-112) (-562) (-112) (-562) (-683 (-168 (-224))) (-683 (-168 (-224))) (-562))))
-((-2552 (((-1030) (-562) (-562) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-70 APROD)))) 61)) (-3968 (((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-562)) (-562) (-683 (-224)) (-562) (-562) (-562) (-562)) 57)) (-4198 (((-1030) (-562) (-683 (-224)) (-112) (-224) (-562) (-562) (-562) (-562) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-387)) (|:| |fp| (-73 MSOLVE)))) 56)) (-3615 (((-1030) (-562) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562) (-683 (-562)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562)) 37)) (-2158 (((-1030) (-562) (-562) (-562) (-224) (-562) (-683 (-224)) (-683 (-224)) (-562)) 36)) (-2361 (((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 33)) (-1925 (((-1030) (-562) (-683 (-224)) (-562) (-683 (-562)) (-683 (-562)) (-562) (-683 (-562)) (-683 (-224))) 32)) (-3637 (((-1030) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-562)) 28)) (-2197 (((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562)) 27)) (-3820 (((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562)) 26)) (-4189 (((-1030) (-562) (-683 (-168 (-224))) (-562) (-562) (-562) (-562) (-683 (-168 (-224))) (-562)) 22)))
-(((-751) (-10 -7 (-15 -4189 ((-1030) (-562) (-683 (-168 (-224))) (-562) (-562) (-562) (-562) (-683 (-168 (-224))) (-562))) (-15 -3820 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -2197 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -3637 ((-1030) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-562))) (-15 -1925 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-562)) (-683 (-562)) (-562) (-683 (-562)) (-683 (-224)))) (-15 -2361 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2158 ((-1030) (-562) (-562) (-562) (-224) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3615 ((-1030) (-562) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562) (-683 (-562)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562))) (-15 -4198 ((-1030) (-562) (-683 (-224)) (-112) (-224) (-562) (-562) (-562) (-562) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-387)) (|:| |fp| (-73 MSOLVE))))) (-15 -3968 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-562)) (-562) (-683 (-224)) (-562) (-562) (-562) (-562))) (-15 -2552 ((-1030) (-562) (-562) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-70 APROD))))))) (T -751))
-((-2552 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-70 APROD)))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-751)))) (-3968 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-751)))) (-4198 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-112)) (-5 *6 (-224)) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-68 APROD)))) (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-73 MSOLVE)))) (-5 *2 (-1030)) (-5 *1 (-751)))) (-3615 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-751)))) (-2158 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-751)))) (-2361 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-751)))) (-1925 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-751)))) (-3637 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-751)))) (-2197 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-751)))) (-3820 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-751)))) (-4189 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-168 (-224)))) (-5 *2 (-1030)) (-5 *1 (-751)))))
-(-10 -7 (-15 -4189 ((-1030) (-562) (-683 (-168 (-224))) (-562) (-562) (-562) (-562) (-683 (-168 (-224))) (-562))) (-15 -3820 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -2197 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -3637 ((-1030) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-562))) (-15 -1925 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-562)) (-683 (-562)) (-562) (-683 (-562)) (-683 (-224)))) (-15 -2361 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2158 ((-1030) (-562) (-562) (-562) (-224) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3615 ((-1030) (-562) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562) (-683 (-562)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562))) (-15 -4198 ((-1030) (-562) (-683 (-224)) (-112) (-224) (-562) (-562) (-562) (-562) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-387)) (|:| |fp| (-73 MSOLVE))))) (-15 -3968 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-562)) (-562) (-683 (-224)) (-562) (-562) (-562) (-562))) (-15 -2552 ((-1030) (-562) (-562) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-70 APROD))))))
-((-3235 (((-1030) (-1150) (-562) (-562) (-683 (-224)) (-562) (-562) (-683 (-224))) 29)) (-3558 (((-1030) (-1150) (-562) (-562) (-683 (-224))) 28)) (-3973 (((-1030) (-1150) (-562) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562) (-683 (-224))) 27)) (-4243 (((-1030) (-562) (-562) (-562) (-683 (-224))) 21)))
-(((-752) (-10 -7 (-15 -4243 ((-1030) (-562) (-562) (-562) (-683 (-224)))) (-15 -3973 ((-1030) (-1150) (-562) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562) (-683 (-224)))) (-15 -3558 ((-1030) (-1150) (-562) (-562) (-683 (-224)))) (-15 -3235 ((-1030) (-1150) (-562) (-562) (-683 (-224)) (-562) (-562) (-683 (-224)))))) (T -752))
-((-3235 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-752)))) (-3558 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-752)))) (-3973 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1150)) (-5 *5 (-683 (-224))) (-5 *6 (-683 (-562))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-752)))) (-4243 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-752)))))
-(-10 -7 (-15 -4243 ((-1030) (-562) (-562) (-562) (-683 (-224)))) (-15 -3973 ((-1030) (-1150) (-562) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562) (-683 (-224)))) (-15 -3558 ((-1030) (-1150) (-562) (-562) (-683 (-224)))) (-15 -3235 ((-1030) (-1150) (-562) (-562) (-683 (-224)) (-562) (-562) (-683 (-224)))))
-((-2881 (((-1030) (-224) (-224) (-224) (-224) (-562)) 62)) (-2162 (((-1030) (-224) (-224) (-224) (-562)) 61)) (-3415 (((-1030) (-224) (-224) (-224) (-562)) 60)) (-1627 (((-1030) (-224) (-224) (-562)) 59)) (-2808 (((-1030) (-224) (-562)) 58)) (-4106 (((-1030) (-224) (-562)) 57)) (-3773 (((-1030) (-224) (-562)) 56)) (-2102 (((-1030) (-224) (-562)) 55)) (-3313 (((-1030) (-224) (-562)) 54)) (-2905 (((-1030) (-224) (-562)) 53)) (-3239 (((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562)) 52)) (-3570 (((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562)) 51)) (-2326 (((-1030) (-224) (-562)) 50)) (-3692 (((-1030) (-224) (-562)) 49)) (-4135 (((-1030) (-224) (-562)) 48)) (-2678 (((-1030) (-224) (-562)) 47)) (-1970 (((-1030) (-562) (-224) (-168 (-224)) (-562) (-1150) (-562)) 46)) (-1997 (((-1030) (-1150) (-168 (-224)) (-1150) (-562)) 45)) (-3923 (((-1030) (-1150) (-168 (-224)) (-1150) (-562)) 44)) (-1331 (((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562)) 43)) (-3127 (((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562)) 42)) (-3574 (((-1030) (-224) (-562)) 39)) (-2223 (((-1030) (-224) (-562)) 38)) (-2599 (((-1030) (-224) (-562)) 37)) (-3965 (((-1030) (-224) (-562)) 36)) (-4110 (((-1030) (-224) (-562)) 35)) (-3406 (((-1030) (-224) (-562)) 34)) (-1457 (((-1030) (-224) (-562)) 33)) (-1942 (((-1030) (-224) (-562)) 32)) (-3391 (((-1030) (-224) (-562)) 31)) (-3722 (((-1030) (-224) (-562)) 30)) (-2250 (((-1030) (-224) (-224) (-224) (-562)) 29)) (-2515 (((-1030) (-224) (-562)) 28)) (-3408 (((-1030) (-224) (-562)) 27)) (-3751 (((-1030) (-224) (-562)) 26)) (-2263 (((-1030) (-224) (-562)) 25)) (-2530 (((-1030) (-224) (-562)) 24)) (-4039 (((-1030) (-168 (-224)) (-562)) 21)))
-(((-753) (-10 -7 (-15 -4039 ((-1030) (-168 (-224)) (-562))) (-15 -2530 ((-1030) (-224) (-562))) (-15 -2263 ((-1030) (-224) (-562))) (-15 -3751 ((-1030) (-224) (-562))) (-15 -3408 ((-1030) (-224) (-562))) (-15 -2515 ((-1030) (-224) (-562))) (-15 -2250 ((-1030) (-224) (-224) (-224) (-562))) (-15 -3722 ((-1030) (-224) (-562))) (-15 -3391 ((-1030) (-224) (-562))) (-15 -1942 ((-1030) (-224) (-562))) (-15 -1457 ((-1030) (-224) (-562))) (-15 -3406 ((-1030) (-224) (-562))) (-15 -4110 ((-1030) (-224) (-562))) (-15 -3965 ((-1030) (-224) (-562))) (-15 -2599 ((-1030) (-224) (-562))) (-15 -2223 ((-1030) (-224) (-562))) (-15 -3574 ((-1030) (-224) (-562))) (-15 -3127 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -1331 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -3923 ((-1030) (-1150) (-168 (-224)) (-1150) (-562))) (-15 -1997 ((-1030) (-1150) (-168 (-224)) (-1150) (-562))) (-15 -1970 ((-1030) (-562) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -2678 ((-1030) (-224) (-562))) (-15 -4135 ((-1030) (-224) (-562))) (-15 -3692 ((-1030) (-224) (-562))) (-15 -2326 ((-1030) (-224) (-562))) (-15 -3570 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -3239 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -2905 ((-1030) (-224) (-562))) (-15 -3313 ((-1030) (-224) (-562))) (-15 -2102 ((-1030) (-224) (-562))) (-15 -3773 ((-1030) (-224) (-562))) (-15 -4106 ((-1030) (-224) (-562))) (-15 -2808 ((-1030) (-224) (-562))) (-15 -1627 ((-1030) (-224) (-224) (-562))) (-15 -3415 ((-1030) (-224) (-224) (-224) (-562))) (-15 -2162 ((-1030) (-224) (-224) (-224) (-562))) (-15 -2881 ((-1030) (-224) (-224) (-224) (-224) (-562))))) (T -753))
-((-2881 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2162 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3415 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1627 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2808 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4106 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3773 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2102 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3313 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2905 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3239 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150)) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3570 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150)) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2326 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3692 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4135 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2678 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1970 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-562)) (-5 *5 (-168 (-224))) (-5 *6 (-1150)) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1997 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1150)) (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3923 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1150)) (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1331 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150)) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3127 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150)) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3574 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2223 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2599 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3965 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4110 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3406 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1457 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1942 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3391 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3722 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2250 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2515 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3408 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3751 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2263 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2530 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4039 (*1 *2 *3 *4) (-12 (-5 *3 (-168 (-224))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(-10 -7 (-15 -4039 ((-1030) (-168 (-224)) (-562))) (-15 -2530 ((-1030) (-224) (-562))) (-15 -2263 ((-1030) (-224) (-562))) (-15 -3751 ((-1030) (-224) (-562))) (-15 -3408 ((-1030) (-224) (-562))) (-15 -2515 ((-1030) (-224) (-562))) (-15 -2250 ((-1030) (-224) (-224) (-224) (-562))) (-15 -3722 ((-1030) (-224) (-562))) (-15 -3391 ((-1030) (-224) (-562))) (-15 -1942 ((-1030) (-224) (-562))) (-15 -1457 ((-1030) (-224) (-562))) (-15 -3406 ((-1030) (-224) (-562))) (-15 -4110 ((-1030) (-224) (-562))) (-15 -3965 ((-1030) (-224) (-562))) (-15 -2599 ((-1030) (-224) (-562))) (-15 -2223 ((-1030) (-224) (-562))) (-15 -3574 ((-1030) (-224) (-562))) (-15 -3127 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -1331 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -3923 ((-1030) (-1150) (-168 (-224)) (-1150) (-562))) (-15 -1997 ((-1030) (-1150) (-168 (-224)) (-1150) (-562))) (-15 -1970 ((-1030) (-562) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -2678 ((-1030) (-224) (-562))) (-15 -4135 ((-1030) (-224) (-562))) (-15 -3692 ((-1030) (-224) (-562))) (-15 -2326 ((-1030) (-224) (-562))) (-15 -3570 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -3239 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -2905 ((-1030) (-224) (-562))) (-15 -3313 ((-1030) (-224) (-562))) (-15 -2102 ((-1030) (-224) (-562))) (-15 -3773 ((-1030) (-224) (-562))) (-15 -4106 ((-1030) (-224) (-562))) (-15 -2808 ((-1030) (-224) (-562))) (-15 -1627 ((-1030) (-224) (-224) (-562))) (-15 -3415 ((-1030) (-224) (-224) (-224) (-562))) (-15 -2162 ((-1030) (-224) (-224) (-224) (-562))) (-15 -2881 ((-1030) (-224) (-224) (-224) (-224) (-562))))
-((-2020 (((-1261)) 18)) (-3871 (((-1150)) 22)) (-1945 (((-1150)) 21)) (-1598 (((-1096) (-1168) (-683 (-562))) 37) (((-1096) (-1168) (-683 (-224))) 32)) (-2725 (((-112)) 16)) (-2811 (((-1150) (-1150)) 25)))
-(((-754) (-10 -7 (-15 -1945 ((-1150))) (-15 -3871 ((-1150))) (-15 -2811 ((-1150) (-1150))) (-15 -1598 ((-1096) (-1168) (-683 (-224)))) (-15 -1598 ((-1096) (-1168) (-683 (-562)))) (-15 -2725 ((-112))) (-15 -2020 ((-1261))))) (T -754))
-((-2020 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-754)))) (-2725 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-754)))) (-1598 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-683 (-562))) (-5 *2 (-1096)) (-5 *1 (-754)))) (-1598 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-683 (-224))) (-5 *2 (-1096)) (-5 *1 (-754)))) (-2811 (*1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-754)))) (-3871 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-754)))) (-1945 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-754)))))
-(-10 -7 (-15 -1945 ((-1150))) (-15 -3871 ((-1150))) (-15 -2811 ((-1150) (-1150))) (-15 -1598 ((-1096) (-1168) (-683 (-224)))) (-15 -1598 ((-1096) (-1168) (-683 (-562)))) (-15 -2725 ((-112))) (-15 -2020 ((-1261))))
-((-1911 (($ $ $) 10)) (-2436 (($ $ $ $) 9)) (-3626 (($ $ $) 12)))
-(((-755 |#1|) (-10 -8 (-15 -3626 (|#1| |#1| |#1|)) (-15 -1911 (|#1| |#1| |#1|)) (-15 -2436 (|#1| |#1| |#1| |#1|))) (-756)) (T -755))
-NIL
-(-10 -8 (-15 -3626 (|#1| |#1| |#1|)) (-15 -1911 (|#1| |#1| |#1|)) (-15 -2436 (|#1| |#1| |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-1379 (($ $ (-916)) 28)) (-2991 (($ $ (-916)) 29)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1911 (($ $ $) 25)) (-4054 (((-857) $) 11)) (-2436 (($ $ $ $) 26)) (-3626 (($ $ $) 24)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 30)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 27)))
+((-3561 (((-1030) (-683 (-224)) (-562) (-112) (-562)) 25)) (-4308 (((-1030) (-683 (-224)) (-562) (-112) (-562)) 24)))
+(((-740) (-10 -7 (-15 -4308 ((-1030) (-683 (-224)) (-562) (-112) (-562))) (-15 -3561 ((-1030) (-683 (-224)) (-562) (-112) (-562))))) (T -740))
+((-3561 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-112)) (-5 *2 (-1030)) (-5 *1 (-740)))) (-4308 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-112)) (-5 *2 (-1030)) (-5 *1 (-740)))))
+(-10 -7 (-15 -4308 ((-1030) (-683 (-224)) (-562) (-112) (-562))) (-15 -3561 ((-1030) (-683 (-224)) (-562) (-112) (-562))))
+((-3827 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-74 FCN)))) 43)) (-2976 (((-1030) (-562) (-562) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-81 FCN)))) 39)) (-2368 (((-1030) (-224) (-224) (-224) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196)))) 32)))
+(((-741) (-10 -7 (-15 -2368 ((-1030) (-224) (-224) (-224) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))) (-15 -2976 ((-1030) (-562) (-562) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-81 FCN))))) (-15 -3827 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-74 FCN))))))) (T -741))
+((-3827 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1030)) (-5 *1 (-741)))) (-2976 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1030)) (-5 *1 (-741)))) (-2368 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196)))) (-5 *2 (-1030)) (-5 *1 (-741)))))
+(-10 -7 (-15 -2368 ((-1030) (-224) (-224) (-224) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))) (-15 -2976 ((-1030) (-562) (-562) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-81 FCN))))) (-15 -3827 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-74 FCN))))))
+((-2017 (((-1030) (-562) (-562) (-683 (-224)) (-562)) 34)) (-3559 (((-1030) (-562) (-562) (-683 (-224)) (-562)) 33)) (-3055 (((-1030) (-562) (-683 (-224)) (-562)) 32)) (-2839 (((-1030) (-562) (-683 (-224)) (-562)) 31)) (-3242 (((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 30)) (-3402 (((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 29)) (-2554 (((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-562)) 28)) (-3264 (((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-562)) 27)) (-1597 (((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 24)) (-2908 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562)) 23)) (-2014 (((-1030) (-562) (-683 (-224)) (-562)) 22)) (-3221 (((-1030) (-562) (-683 (-224)) (-562)) 21)))
+(((-742) (-10 -7 (-15 -3221 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -2014 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -2908 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1597 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3264 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2554 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3402 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3242 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2839 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -3055 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -3559 ((-1030) (-562) (-562) (-683 (-224)) (-562))) (-15 -2017 ((-1030) (-562) (-562) (-683 (-224)) (-562))))) (T -742))
+((-2017 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-3559 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-3055 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-2839 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-3242 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-3402 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-2554 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-3264 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-1597 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-2908 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-2014 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))) (-3221 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-742)))))
+(-10 -7 (-15 -3221 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -2014 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -2908 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1597 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3264 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2554 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3402 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3242 ((-1030) (-562) (-562) (-1150) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2839 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -3055 ((-1030) (-562) (-683 (-224)) (-562))) (-15 -3559 ((-1030) (-562) (-562) (-683 (-224)) (-562))) (-15 -2017 ((-1030) (-562) (-562) (-683 (-224)) (-562))))
+((-2973 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-224) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN)))) 52)) (-4215 (((-1030) (-683 (-224)) (-683 (-224)) (-562) (-562)) 51)) (-4246 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN)))) 50)) (-2313 (((-1030) (-224) (-224) (-562) (-562) (-562) (-562)) 46)) (-3116 (((-1030) (-224) (-224) (-562) (-224) (-562) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) 45)) (-1554 (((-1030) (-224) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) 44)) (-1679 (((-1030) (-224) (-224) (-224) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) 43)) (-3046 (((-1030) (-224) (-224) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) 42)) (-1816 (((-1030) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196)))) 38)) (-2142 (((-1030) (-224) (-224) (-562) (-683 (-224)) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196)))) 37)) (-3557 (((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196)))) 33)) (-2378 (((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196)))) 32)))
+(((-743) (-10 -7 (-15 -2378 ((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))) (-15 -3557 ((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))) (-15 -2142 ((-1030) (-224) (-224) (-562) (-683 (-224)) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))) (-15 -1816 ((-1030) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))) (-15 -3046 ((-1030) (-224) (-224) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -1679 ((-1030) (-224) (-224) (-224) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -1554 ((-1030) (-224) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -3116 ((-1030) (-224) (-224) (-562) (-224) (-562) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -2313 ((-1030) (-224) (-224) (-562) (-562) (-562) (-562))) (-15 -4246 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN))))) (-15 -4215 ((-1030) (-683 (-224)) (-683 (-224)) (-562) (-562))) (-15 -2973 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-224) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN))))))) (T -743))
+((-2973 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-4215 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-743)))) (-4246 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-2313 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-743)))) (-3116 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-1554 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-1679 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-3046 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-1816 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-2142 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196)))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-743)))) (-3557 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196)))) (-5 *2 (-1030)) (-5 *1 (-743)))) (-2378 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196)))) (-5 *2 (-1030)) (-5 *1 (-743)))))
+(-10 -7 (-15 -2378 ((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))) (-15 -3557 ((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))) (-15 -2142 ((-1030) (-224) (-224) (-562) (-683 (-224)) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))) (-15 -1816 ((-1030) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))) (-15 -3046 ((-1030) (-224) (-224) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -1679 ((-1030) (-224) (-224) (-224) (-224) (-562) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -1554 ((-1030) (-224) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -3116 ((-1030) (-224) (-224) (-562) (-224) (-562) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G))))) (-15 -2313 ((-1030) (-224) (-224) (-562) (-562) (-562) (-562))) (-15 -4246 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-224) (-562) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN))))) (-15 -4215 ((-1030) (-683 (-224)) (-683 (-224)) (-562) (-562))) (-15 -2973 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-224) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN))))))
+((-1971 (((-1030) (-562) (-562) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-387)) (|:| |fp| (-76 G JACOBG JACGEP)))) 76)) (-2193 (((-1030) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))) (-387) (-387)) 69) (((-1030) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL)))) 68)) (-2849 (((-1030) (-224) (-224) (-562) (-224) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-387)) (|:| |fp| (-85 FCNG)))) 57)) (-4300 (((-1030) (-683 (-224)) (-683 (-224)) (-562) (-224) (-224) (-224) (-562) (-562) (-562) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) 50)) (-2803 (((-1030) (-224) (-562) (-562) (-1150) (-562) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT)))) 49)) (-3720 (((-1030) (-224) (-562) (-562) (-224) (-1150) (-224) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT)))) 45)) (-1725 (((-1030) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) 42)) (-3259 (((-1030) (-224) (-562) (-562) (-562) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT)))) 38)))
+(((-744) (-10 -7 (-15 -3259 ((-1030) (-224) (-562) (-562) (-562) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))) (-15 -1725 ((-1030) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))))) (-15 -3720 ((-1030) (-224) (-562) (-562) (-224) (-1150) (-224) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))) (-15 -2803 ((-1030) (-224) (-562) (-562) (-1150) (-562) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))) (-15 -4300 ((-1030) (-683 (-224)) (-683 (-224)) (-562) (-224) (-224) (-224) (-562) (-562) (-562) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))))) (-15 -2849 ((-1030) (-224) (-224) (-562) (-224) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-387)) (|:| |fp| (-85 FCNG))))) (-15 -2193 ((-1030) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))))) (-15 -2193 ((-1030) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))) (-387) (-387))) (-15 -1971 ((-1030) (-562) (-562) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-387)) (|:| |fp| (-76 G JACOBG JACGEP))))))) (T -744))
+((-1971 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-75 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-76 G JACOBG JACGEP)))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))) (-2193 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL)))) (-5 *8 (-387)) (-5 *2 (-1030)) (-5 *1 (-744)))) (-2193 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL)))) (-5 *2 (-1030)) (-5 *1 (-744)))) (-2849 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-84 FCNF)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))) (-4300 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-224)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1030)) (-5 *1 (-744)))) (-2803 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-562)) (-5 *5 (-1150)) (-5 *6 (-683 (-224))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-387)) (|:| |fp| (-71 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))) (-3720 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-562)) (-5 *5 (-1150)) (-5 *6 (-683 (-224))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))) (-1725 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))) (-3259 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))))
+(-10 -7 (-15 -3259 ((-1030) (-224) (-562) (-562) (-562) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))) (-15 -1725 ((-1030) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))))) (-15 -3720 ((-1030) (-224) (-562) (-562) (-224) (-1150) (-224) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))) (-15 -2803 ((-1030) (-224) (-562) (-562) (-1150) (-562) (-224) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))) (-15 -4300 ((-1030) (-683 (-224)) (-683 (-224)) (-562) (-224) (-224) (-224) (-562) (-562) (-562) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))))) (-15 -2849 ((-1030) (-224) (-224) (-562) (-224) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-387)) (|:| |fp| (-85 FCNG))))) (-15 -2193 ((-1030) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))))) (-15 -2193 ((-1030) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))) (-387) (-387))) (-15 -1971 ((-1030) (-562) (-562) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-387)) (|:| |fp| (-76 G JACOBG JACGEP))))))
+((-1857 (((-1030) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-669 (-224)) (-562)) 45)) (-4345 (((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-1150) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-387)) (|:| |fp| (-83 BNDY)))) 41)) (-1688 (((-1030) (-562) (-562) (-562) (-562) (-224) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 23)))
+(((-745) (-10 -7 (-15 -1688 ((-1030) (-562) (-562) (-562) (-562) (-224) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -4345 ((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-1150) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-387)) (|:| |fp| (-83 BNDY))))) (-15 -1857 ((-1030) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-669 (-224)) (-562))))) (T -745))
+((-1857 (*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4 *4 *6 *4) (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-669 (-224))) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-745)))) (-4345 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-1150)) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-82 PDEF)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1030)) (-5 *1 (-745)))) (-1688 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-745)))))
+(-10 -7 (-15 -1688 ((-1030) (-562) (-562) (-562) (-562) (-224) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -4345 ((-1030) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-1150) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-387)) (|:| |fp| (-83 BNDY))))) (-15 -1857 ((-1030) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-669 (-224)) (-562))))
+((-3547 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-683 (-224)) (-224) (-224) (-562)) 35)) (-3714 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-224) (-224) (-562)) 34)) (-2722 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-683 (-224)) (-224) (-224) (-562)) 33)) (-1558 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 29)) (-2615 (((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 28)) (-2560 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562)) 27)) (-1512 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-562)) 24)) (-3571 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-562)) 23)) (-3037 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562)) 22)) (-3309 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562)) 21)))
+(((-746) (-10 -7 (-15 -3309 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562))) (-15 -3037 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3571 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -1512 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -2560 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562))) (-15 -2615 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1558 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2722 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-683 (-224)) (-224) (-224) (-562))) (-15 -3714 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-224) (-224) (-562))) (-15 -3547 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-683 (-224)) (-224) (-224) (-562))))) (T -746))
+((-3547 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *2 (-1030)) (-5 *1 (-746)))) (-3714 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *2 (-1030)) (-5 *1 (-746)))) (-2722 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *6 (-224)) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-746)))) (-1558 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-746)))) (-2615 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-746)))) (-2560 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *2 (-1030)) (-5 *1 (-746)))) (-1512 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-746)))) (-3571 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-746)))) (-3037 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-746)))) (-3309 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-746)))))
+(-10 -7 (-15 -3309 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562))) (-15 -3037 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3571 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -1512 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -2560 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-224) (-562))) (-15 -2615 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1558 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2722 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-683 (-224)) (-224) (-224) (-562))) (-15 -3714 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-224) (-224) (-562))) (-15 -3547 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-683 (-224)) (-224) (-224) (-562))))
+((-3440 (((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562)) 45)) (-2189 (((-1030) (-562) (-562) (-562) (-224) (-683 (-224)) (-683 (-224)) (-562)) 44)) (-1861 (((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562)) 43)) (-4356 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 42)) (-4011 (((-1030) (-1150) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562)) 41)) (-1697 (((-1030) (-1150) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562)) 40)) (-3038 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562) (-562) (-562) (-224) (-683 (-224)) (-562)) 39)) (-3646 (((-1030) (-1150) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-562))) 38)) (-2173 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562)) 35)) (-2425 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562)) 34)) (-2287 (((-1030) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562)) 33)) (-2528 (((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 32)) (-2462 (((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-224) (-562)) 31)) (-1528 (((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-562)) 30)) (-1372 (((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-562) (-562) (-562)) 29)) (-2862 (((-1030) (-562) (-562) (-562) (-224) (-224) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562) (-683 (-562)) (-562) (-562) (-562)) 28)) (-2422 (((-1030) (-562) (-683 (-224)) (-224) (-562)) 24)) (-2161 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 21)))
+(((-747) (-10 -7 (-15 -2161 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2422 ((-1030) (-562) (-683 (-224)) (-224) (-562))) (-15 -2862 ((-1030) (-562) (-562) (-562) (-224) (-224) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562) (-683 (-562)) (-562) (-562) (-562))) (-15 -1372 ((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-562) (-562) (-562))) (-15 -1528 ((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-562))) (-15 -2462 ((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-224) (-562))) (-15 -2528 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2287 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562))) (-15 -2425 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562))) (-15 -2173 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3646 ((-1030) (-1150) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-562)))) (-15 -3038 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562) (-562) (-562) (-224) (-683 (-224)) (-562))) (-15 -1697 ((-1030) (-1150) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562))) (-15 -4011 ((-1030) (-1150) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -4356 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1861 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562))) (-15 -2189 ((-1030) (-562) (-562) (-562) (-224) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3440 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562))))) (T -747))
+((-3440 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2189 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-1861 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-747)))) (-4356 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-747)))) (-4011 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-1697 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1150)) (-5 *5 (-683 (-224))) (-5 *6 (-224)) (-5 *7 (-683 (-562))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-3038 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *6 (-224)) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-3646 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1150)) (-5 *5 (-683 (-224))) (-5 *6 (-224)) (-5 *7 (-683 (-562))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2173 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2425 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2287 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2528 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2462 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-1528 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-1372 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2862 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-683 (-224))) (-5 *6 (-683 (-562))) (-5 *3 (-562)) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2422 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))) (-2161 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-747)))))
+(-10 -7 (-15 -2161 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2422 ((-1030) (-562) (-683 (-224)) (-224) (-562))) (-15 -2862 ((-1030) (-562) (-562) (-562) (-224) (-224) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562) (-683 (-562)) (-562) (-562) (-562))) (-15 -1372 ((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-562) (-562) (-562))) (-15 -1528 ((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-224) (-562) (-562) (-562))) (-15 -2462 ((-1030) (-562) (-224) (-224) (-683 (-224)) (-562) (-562) (-224) (-562))) (-15 -2528 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2287 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562))) (-15 -2425 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562))) (-15 -2173 ((-1030) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3646 ((-1030) (-1150) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-562)))) (-15 -3038 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562) (-562) (-562) (-224) (-683 (-224)) (-562))) (-15 -1697 ((-1030) (-1150) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562))) (-15 -4011 ((-1030) (-1150) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -4356 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1861 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562))) (-15 -2189 ((-1030) (-562) (-562) (-562) (-224) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3440 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562) (-683 (-224)) (-683 (-224)) (-562) (-562) (-562))))
+((-3303 (((-1030) (-562) (-562) (-562) (-224) (-683 (-224)) (-562) (-683 (-224)) (-562)) 63)) (-3343 (((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-112) (-224) (-562) (-224) (-224) (-112) (-224) (-224) (-224) (-224) (-112) (-562) (-562) (-562) (-562) (-562) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-562)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN)))) 62)) (-2577 (((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-224) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-112) (-112) (-112) (-562) (-562) (-683 (-224)) (-683 (-562)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-65 QPHESS)))) 58)) (-2253 (((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-112) (-562) (-562) (-683 (-224)) (-562)) 51)) (-2079 (((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-66 FUNCT1)))) 50)) (-3352 (((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-63 LSFUN2)))) 46)) (-3279 (((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-79 LSFUN1)))) 42)) (-2081 (((-1030) (-562) (-224) (-224) (-562) (-224) (-112) (-224) (-224) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN)))) 38)))
+(((-748) (-10 -7 (-15 -2081 ((-1030) (-562) (-224) (-224) (-562) (-224) (-112) (-224) (-224) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN))))) (-15 -3279 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-79 LSFUN1))))) (-15 -3352 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-63 LSFUN2))))) (-15 -2079 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-66 FUNCT1))))) (-15 -2253 ((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-112) (-562) (-562) (-683 (-224)) (-562))) (-15 -2577 ((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-224) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-112) (-112) (-112) (-562) (-562) (-683 (-224)) (-683 (-562)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-65 QPHESS))))) (-15 -3343 ((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-112) (-224) (-562) (-224) (-224) (-112) (-224) (-224) (-224) (-224) (-112) (-562) (-562) (-562) (-562) (-562) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-562)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN))))) (-15 -3303 ((-1030) (-562) (-562) (-562) (-224) (-683 (-224)) (-562) (-683 (-224)) (-562))))) (T -748))
+((-3303 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-748)))) (-3343 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6 *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8 *9) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-112)) (-5 *6 (-224)) (-5 *7 (-683 (-562))) (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-80 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN)))) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-748)))) (-2577 (*1 *2 *3 *3 *3 *3 *3 *3 *3 *3 *4 *5 *5 *5 *5 *5 *5 *6 *6 *6 *3 *3 *5 *7 *3 *8) (-12 (-5 *5 (-683 (-224))) (-5 *6 (-112)) (-5 *7 (-683 (-562))) (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-65 QPHESS)))) (-5 *3 (-562)) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-748)))) (-2253 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-112)) (-5 *2 (-1030)) (-5 *1 (-748)))) (-2079 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-66 FUNCT1)))) (-5 *2 (-1030)) (-5 *1 (-748)))) (-3352 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-63 LSFUN2)))) (-5 *2 (-1030)) (-5 *1 (-748)))) (-3279 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-79 LSFUN1)))) (-5 *2 (-1030)) (-5 *1 (-748)))) (-2081 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-562)) (-5 *5 (-112)) (-5 *6 (-683 (-224))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN)))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-748)))))
+(-10 -7 (-15 -2081 ((-1030) (-562) (-224) (-224) (-562) (-224) (-112) (-224) (-224) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN))))) (-15 -3279 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-79 LSFUN1))))) (-15 -3352 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-63 LSFUN2))))) (-15 -2079 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-66 FUNCT1))))) (-15 -2253 ((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-112) (-562) (-562) (-683 (-224)) (-562))) (-15 -2577 ((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-224) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-112) (-112) (-112) (-562) (-562) (-683 (-224)) (-683 (-562)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-65 QPHESS))))) (-15 -3343 ((-1030) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-562) (-112) (-224) (-562) (-224) (-224) (-112) (-224) (-224) (-224) (-224) (-112) (-562) (-562) (-562) (-562) (-562) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-562) (-683 (-562)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN))))) (-15 -3303 ((-1030) (-562) (-562) (-562) (-224) (-683 (-224)) (-562) (-683 (-224)) (-562))))
+((-4078 (((-1030) (-1150) (-562) (-562) (-562) (-562) (-683 (-168 (-224))) (-683 (-168 (-224))) (-562)) 47)) (-3429 (((-1030) (-1150) (-1150) (-562) (-562) (-683 (-168 (-224))) (-562) (-683 (-168 (-224))) (-562) (-562) (-683 (-168 (-224))) (-562)) 46)) (-2231 (((-1030) (-562) (-562) (-562) (-683 (-168 (-224))) (-562)) 45)) (-2075 (((-1030) (-1150) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 40)) (-4273 (((-1030) (-1150) (-1150) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-683 (-224)) (-562)) 39)) (-3172 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-562)) 36)) (-3386 (((-1030) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562)) 35)) (-2255 (((-1030) (-562) (-562) (-562) (-562) (-639 (-112)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-224) (-224) (-562)) 34)) (-3409 (((-1030) (-562) (-562) (-562) (-683 (-562)) (-683 (-562)) (-683 (-562)) (-683 (-562)) (-112) (-224) (-112) (-683 (-562)) (-683 (-224)) (-562)) 33)) (-2137 (((-1030) (-562) (-562) (-562) (-562) (-224) (-112) (-112) (-639 (-112)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-562)) 32)))
+(((-749) (-10 -7 (-15 -2137 ((-1030) (-562) (-562) (-562) (-562) (-224) (-112) (-112) (-639 (-112)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-562))) (-15 -3409 ((-1030) (-562) (-562) (-562) (-683 (-562)) (-683 (-562)) (-683 (-562)) (-683 (-562)) (-112) (-224) (-112) (-683 (-562)) (-683 (-224)) (-562))) (-15 -2255 ((-1030) (-562) (-562) (-562) (-562) (-639 (-112)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-224) (-224) (-562))) (-15 -3386 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562))) (-15 -3172 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-562))) (-15 -4273 ((-1030) (-1150) (-1150) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-683 (-224)) (-562))) (-15 -2075 ((-1030) (-1150) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2231 ((-1030) (-562) (-562) (-562) (-683 (-168 (-224))) (-562))) (-15 -3429 ((-1030) (-1150) (-1150) (-562) (-562) (-683 (-168 (-224))) (-562) (-683 (-168 (-224))) (-562) (-562) (-683 (-168 (-224))) (-562))) (-15 -4078 ((-1030) (-1150) (-562) (-562) (-562) (-562) (-683 (-168 (-224))) (-683 (-168 (-224))) (-562))))) (T -749))
+((-4078 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-168 (-224)))) (-5 *2 (-1030)) (-5 *1 (-749)))) (-3429 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-168 (-224)))) (-5 *2 (-1030)) (-5 *1 (-749)))) (-2231 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-168 (-224)))) (-5 *2 (-1030)) (-5 *1 (-749)))) (-2075 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-749)))) (-4273 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-749)))) (-3172 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-749)))) (-3386 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-749)))) (-2255 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-639 (-112))) (-5 *5 (-683 (-224))) (-5 *6 (-683 (-562))) (-5 *7 (-224)) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-749)))) (-3409 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-683 (-562))) (-5 *5 (-112)) (-5 *7 (-683 (-224))) (-5 *3 (-562)) (-5 *6 (-224)) (-5 *2 (-1030)) (-5 *1 (-749)))) (-2137 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-639 (-112))) (-5 *7 (-683 (-224))) (-5 *8 (-683 (-562))) (-5 *3 (-562)) (-5 *4 (-224)) (-5 *5 (-112)) (-5 *2 (-1030)) (-5 *1 (-749)))))
+(-10 -7 (-15 -2137 ((-1030) (-562) (-562) (-562) (-562) (-224) (-112) (-112) (-639 (-112)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-562))) (-15 -3409 ((-1030) (-562) (-562) (-562) (-683 (-562)) (-683 (-562)) (-683 (-562)) (-683 (-562)) (-112) (-224) (-112) (-683 (-562)) (-683 (-224)) (-562))) (-15 -2255 ((-1030) (-562) (-562) (-562) (-562) (-639 (-112)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-224) (-224) (-562))) (-15 -3386 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562))) (-15 -3172 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-562))) (-15 -4273 ((-1030) (-1150) (-1150) (-562) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-683 (-224)) (-562))) (-15 -2075 ((-1030) (-1150) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2231 ((-1030) (-562) (-562) (-562) (-683 (-168 (-224))) (-562))) (-15 -3429 ((-1030) (-1150) (-1150) (-562) (-562) (-683 (-168 (-224))) (-562) (-683 (-168 (-224))) (-562) (-562) (-683 (-168 (-224))) (-562))) (-15 -4078 ((-1030) (-1150) (-562) (-562) (-562) (-562) (-683 (-168 (-224))) (-683 (-168 (-224))) (-562))))
+((-2299 (((-1030) (-562) (-562) (-562) (-562) (-562) (-112) (-562) (-112) (-562) (-683 (-168 (-224))) (-683 (-168 (-224))) (-562)) 66)) (-3251 (((-1030) (-562) (-562) (-562) (-562) (-562) (-112) (-562) (-112) (-562) (-683 (-224)) (-683 (-224)) (-562)) 61)) (-1371 (((-1030) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE))) (-387)) 56) (((-1030) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE)))) 55)) (-3860 (((-1030) (-562) (-562) (-562) (-224) (-112) (-562) (-683 (-224)) (-683 (-224)) (-562)) 37)) (-2556 (((-1030) (-562) (-562) (-224) (-224) (-562) (-562) (-683 (-224)) (-562)) 33)) (-3686 (((-1030) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-562) (-562) (-562)) 30)) (-1726 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 29)) (-1354 (((-1030) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 28)) (-3025 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 27)) (-2899 (((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562)) 26)) (-1668 (((-1030) (-562) (-562) (-683 (-224)) (-562)) 25)) (-3769 (((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 24)) (-1355 (((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562)) 23)) (-1565 (((-1030) (-683 (-224)) (-562) (-562) (-562) (-562)) 22)) (-1714 (((-1030) (-562) (-562) (-683 (-224)) (-562)) 21)))
+(((-750) (-10 -7 (-15 -1714 ((-1030) (-562) (-562) (-683 (-224)) (-562))) (-15 -1565 ((-1030) (-683 (-224)) (-562) (-562) (-562) (-562))) (-15 -1355 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3769 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1668 ((-1030) (-562) (-562) (-683 (-224)) (-562))) (-15 -2899 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562))) (-15 -3025 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1354 ((-1030) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1726 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3686 ((-1030) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-562) (-562) (-562))) (-15 -2556 ((-1030) (-562) (-562) (-224) (-224) (-562) (-562) (-683 (-224)) (-562))) (-15 -3860 ((-1030) (-562) (-562) (-562) (-224) (-112) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1371 ((-1030) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE))))) (-15 -1371 ((-1030) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE))) (-387))) (-15 -3251 ((-1030) (-562) (-562) (-562) (-562) (-562) (-112) (-562) (-112) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2299 ((-1030) (-562) (-562) (-562) (-562) (-562) (-112) (-562) (-112) (-562) (-683 (-168 (-224))) (-683 (-168 (-224))) (-562))))) (T -750))
+((-2299 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-112)) (-5 *5 (-683 (-168 (-224)))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-3251 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *4 (-112)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-1371 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-387)) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-750)))) (-1371 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-750)))) (-3860 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-562)) (-5 *5 (-112)) (-5 *6 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-750)))) (-2556 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-750)))) (-3686 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-750)))) (-1726 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-1354 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-3025 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-2899 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-1668 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-3769 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-1355 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))) (-1565 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-750)))) (-1714 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-750)))))
+(-10 -7 (-15 -1714 ((-1030) (-562) (-562) (-683 (-224)) (-562))) (-15 -1565 ((-1030) (-683 (-224)) (-562) (-562) (-562) (-562))) (-15 -1355 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3769 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1668 ((-1030) (-562) (-562) (-683 (-224)) (-562))) (-15 -2899 ((-1030) (-562) (-562) (-562) (-562) (-683 (-224)) (-562))) (-15 -3025 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1354 ((-1030) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1726 ((-1030) (-562) (-562) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -3686 ((-1030) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-562) (-562) (-562))) (-15 -2556 ((-1030) (-562) (-562) (-224) (-224) (-562) (-562) (-683 (-224)) (-562))) (-15 -3860 ((-1030) (-562) (-562) (-562) (-224) (-112) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -1371 ((-1030) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE))))) (-15 -1371 ((-1030) (-562) (-562) (-224) (-562) (-562) (-562) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE))) (-387))) (-15 -3251 ((-1030) (-562) (-562) (-562) (-562) (-562) (-112) (-562) (-112) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2299 ((-1030) (-562) (-562) (-562) (-562) (-562) (-112) (-562) (-112) (-562) (-683 (-168 (-224))) (-683 (-168 (-224))) (-562))))
+((-4350 (((-1030) (-562) (-562) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-70 APROD)))) 61)) (-1598 (((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-562)) (-562) (-683 (-224)) (-562) (-562) (-562) (-562)) 57)) (-1862 (((-1030) (-562) (-683 (-224)) (-112) (-224) (-562) (-562) (-562) (-562) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-387)) (|:| |fp| (-73 MSOLVE)))) 56)) (-4238 (((-1030) (-562) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562) (-683 (-562)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562)) 37)) (-2845 (((-1030) (-562) (-562) (-562) (-224) (-562) (-683 (-224)) (-683 (-224)) (-562)) 36)) (-2983 (((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562)) 33)) (-2238 (((-1030) (-562) (-683 (-224)) (-562) (-683 (-562)) (-683 (-562)) (-562) (-683 (-562)) (-683 (-224))) 32)) (-1342 (((-1030) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-562)) 28)) (-2067 (((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562)) 27)) (-2592 (((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562)) 26)) (-2933 (((-1030) (-562) (-683 (-168 (-224))) (-562) (-562) (-562) (-562) (-683 (-168 (-224))) (-562)) 22)))
+(((-751) (-10 -7 (-15 -2933 ((-1030) (-562) (-683 (-168 (-224))) (-562) (-562) (-562) (-562) (-683 (-168 (-224))) (-562))) (-15 -2592 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -2067 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -1342 ((-1030) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-562))) (-15 -2238 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-562)) (-683 (-562)) (-562) (-683 (-562)) (-683 (-224)))) (-15 -2983 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2845 ((-1030) (-562) (-562) (-562) (-224) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -4238 ((-1030) (-562) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562) (-683 (-562)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562))) (-15 -1862 ((-1030) (-562) (-683 (-224)) (-112) (-224) (-562) (-562) (-562) (-562) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-387)) (|:| |fp| (-73 MSOLVE))))) (-15 -1598 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-562)) (-562) (-683 (-224)) (-562) (-562) (-562) (-562))) (-15 -4350 ((-1030) (-562) (-562) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-70 APROD))))))) (T -751))
+((-4350 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-70 APROD)))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-751)))) (-1598 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-751)))) (-1862 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-112)) (-5 *6 (-224)) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-68 APROD)))) (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-73 MSOLVE)))) (-5 *2 (-1030)) (-5 *1 (-751)))) (-4238 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-751)))) (-2845 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-751)))) (-2983 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-751)))) (-2238 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-751)))) (-1342 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-751)))) (-2067 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-751)))) (-2592 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-751)))) (-2933 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-168 (-224)))) (-5 *2 (-1030)) (-5 *1 (-751)))))
+(-10 -7 (-15 -2933 ((-1030) (-562) (-683 (-168 (-224))) (-562) (-562) (-562) (-562) (-683 (-168 (-224))) (-562))) (-15 -2592 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -2067 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-562))) (-15 -1342 ((-1030) (-683 (-224)) (-562) (-683 (-224)) (-562) (-562) (-562))) (-15 -2238 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-562)) (-683 (-562)) (-562) (-683 (-562)) (-683 (-224)))) (-15 -2983 ((-1030) (-562) (-562) (-683 (-224)) (-683 (-224)) (-683 (-224)) (-562))) (-15 -2845 ((-1030) (-562) (-562) (-562) (-224) (-562) (-683 (-224)) (-683 (-224)) (-562))) (-15 -4238 ((-1030) (-562) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562) (-683 (-562)) (-683 (-224)) (-683 (-562)) (-683 (-562)) (-683 (-224)) (-683 (-224)) (-683 (-562)) (-562))) (-15 -1862 ((-1030) (-562) (-683 (-224)) (-112) (-224) (-562) (-562) (-562) (-562) (-224) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-387)) (|:| |fp| (-73 MSOLVE))))) (-15 -1598 ((-1030) (-562) (-683 (-224)) (-562) (-683 (-224)) (-683 (-562)) (-562) (-683 (-224)) (-562) (-562) (-562) (-562))) (-15 -4350 ((-1030) (-562) (-562) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-683 (-224)) (-562) (-3 (|:| |fn| (-387)) (|:| |fp| (-70 APROD))))))
+((-1779 (((-1030) (-1150) (-562) (-562) (-683 (-224)) (-562) (-562) (-683 (-224))) 29)) (-1871 (((-1030) (-1150) (-562) (-562) (-683 (-224))) 28)) (-1656 (((-1030) (-1150) (-562) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562) (-683 (-224))) 27)) (-2270 (((-1030) (-562) (-562) (-562) (-683 (-224))) 21)))
+(((-752) (-10 -7 (-15 -2270 ((-1030) (-562) (-562) (-562) (-683 (-224)))) (-15 -1656 ((-1030) (-1150) (-562) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562) (-683 (-224)))) (-15 -1871 ((-1030) (-1150) (-562) (-562) (-683 (-224)))) (-15 -1779 ((-1030) (-1150) (-562) (-562) (-683 (-224)) (-562) (-562) (-683 (-224)))))) (T -752))
+((-1779 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-752)))) (-1871 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-752)))) (-1656 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1150)) (-5 *5 (-683 (-224))) (-5 *6 (-683 (-562))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-752)))) (-2270 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030)) (-5 *1 (-752)))))
+(-10 -7 (-15 -2270 ((-1030) (-562) (-562) (-562) (-683 (-224)))) (-15 -1656 ((-1030) (-1150) (-562) (-562) (-683 (-224)) (-562) (-683 (-562)) (-562) (-683 (-224)))) (-15 -1871 ((-1030) (-1150) (-562) (-562) (-683 (-224)))) (-15 -1779 ((-1030) (-1150) (-562) (-562) (-683 (-224)) (-562) (-562) (-683 (-224)))))
+((-1549 (((-1030) (-224) (-224) (-224) (-224) (-562)) 62)) (-1689 (((-1030) (-224) (-224) (-224) (-562)) 61)) (-4083 (((-1030) (-224) (-224) (-224) (-562)) 60)) (-4260 (((-1030) (-224) (-224) (-562)) 59)) (-2093 (((-1030) (-224) (-562)) 58)) (-3442 (((-1030) (-224) (-562)) 57)) (-3314 (((-1030) (-224) (-562)) 56)) (-3434 (((-1030) (-224) (-562)) 55)) (-4353 (((-1030) (-224) (-562)) 54)) (-3631 (((-1030) (-224) (-562)) 53)) (-1828 (((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562)) 52)) (-1995 (((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562)) 51)) (-3903 (((-1030) (-224) (-562)) 50)) (-3760 (((-1030) (-224) (-562)) 49)) (-2546 (((-1030) (-224) (-562)) 48)) (-3163 (((-1030) (-224) (-562)) 47)) (-1381 (((-1030) (-562) (-224) (-168 (-224)) (-562) (-1150) (-562)) 46)) (-3530 (((-1030) (-1150) (-168 (-224)) (-1150) (-562)) 45)) (-4253 (((-1030) (-1150) (-168 (-224)) (-1150) (-562)) 44)) (-1959 (((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562)) 43)) (-3122 (((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562)) 42)) (-2040 (((-1030) (-224) (-562)) 39)) (-4146 (((-1030) (-224) (-562)) 38)) (-3589 (((-1030) (-224) (-562)) 37)) (-1562 (((-1030) (-224) (-562)) 36)) (-3459 (((-1030) (-224) (-562)) 35)) (-3984 (((-1030) (-224) (-562)) 34)) (-2339 (((-1030) (-224) (-562)) 33)) (-4236 (((-1030) (-224) (-562)) 32)) (-3843 (((-1030) (-224) (-562)) 31)) (-4090 (((-1030) (-224) (-562)) 30)) (-1297 (((-1030) (-224) (-224) (-224) (-562)) 29)) (-2163 (((-1030) (-224) (-562)) 28)) (-4005 (((-1030) (-224) (-562)) 27)) (-3102 (((-1030) (-224) (-562)) 26)) (-1427 (((-1030) (-224) (-562)) 25)) (-2317 (((-1030) (-224) (-562)) 24)) (-4094 (((-1030) (-168 (-224)) (-562)) 21)))
+(((-753) (-10 -7 (-15 -4094 ((-1030) (-168 (-224)) (-562))) (-15 -2317 ((-1030) (-224) (-562))) (-15 -1427 ((-1030) (-224) (-562))) (-15 -3102 ((-1030) (-224) (-562))) (-15 -4005 ((-1030) (-224) (-562))) (-15 -2163 ((-1030) (-224) (-562))) (-15 -1297 ((-1030) (-224) (-224) (-224) (-562))) (-15 -4090 ((-1030) (-224) (-562))) (-15 -3843 ((-1030) (-224) (-562))) (-15 -4236 ((-1030) (-224) (-562))) (-15 -2339 ((-1030) (-224) (-562))) (-15 -3984 ((-1030) (-224) (-562))) (-15 -3459 ((-1030) (-224) (-562))) (-15 -1562 ((-1030) (-224) (-562))) (-15 -3589 ((-1030) (-224) (-562))) (-15 -4146 ((-1030) (-224) (-562))) (-15 -2040 ((-1030) (-224) (-562))) (-15 -3122 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -1959 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -4253 ((-1030) (-1150) (-168 (-224)) (-1150) (-562))) (-15 -3530 ((-1030) (-1150) (-168 (-224)) (-1150) (-562))) (-15 -1381 ((-1030) (-562) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -3163 ((-1030) (-224) (-562))) (-15 -2546 ((-1030) (-224) (-562))) (-15 -3760 ((-1030) (-224) (-562))) (-15 -3903 ((-1030) (-224) (-562))) (-15 -1995 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -1828 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -3631 ((-1030) (-224) (-562))) (-15 -4353 ((-1030) (-224) (-562))) (-15 -3434 ((-1030) (-224) (-562))) (-15 -3314 ((-1030) (-224) (-562))) (-15 -3442 ((-1030) (-224) (-562))) (-15 -2093 ((-1030) (-224) (-562))) (-15 -4260 ((-1030) (-224) (-224) (-562))) (-15 -4083 ((-1030) (-224) (-224) (-224) (-562))) (-15 -1689 ((-1030) (-224) (-224) (-224) (-562))) (-15 -1549 ((-1030) (-224) (-224) (-224) (-224) (-562))))) (T -753))
+((-1549 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1689 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4083 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4260 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2093 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3442 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3314 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3434 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4353 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3631 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1828 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150)) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1995 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150)) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3903 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3760 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2546 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3163 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1381 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-562)) (-5 *5 (-168 (-224))) (-5 *6 (-1150)) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3530 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1150)) (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4253 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1150)) (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1959 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150)) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3122 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150)) (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2040 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4146 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3589 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1562 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3459 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3984 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2339 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4236 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3843 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4090 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1297 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2163 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4005 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-3102 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-1427 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-2317 (*1 *2 *3 *4) (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))) (-4094 (*1 *2 *3 *4) (-12 (-5 *3 (-168 (-224))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(-10 -7 (-15 -4094 ((-1030) (-168 (-224)) (-562))) (-15 -2317 ((-1030) (-224) (-562))) (-15 -1427 ((-1030) (-224) (-562))) (-15 -3102 ((-1030) (-224) (-562))) (-15 -4005 ((-1030) (-224) (-562))) (-15 -2163 ((-1030) (-224) (-562))) (-15 -1297 ((-1030) (-224) (-224) (-224) (-562))) (-15 -4090 ((-1030) (-224) (-562))) (-15 -3843 ((-1030) (-224) (-562))) (-15 -4236 ((-1030) (-224) (-562))) (-15 -2339 ((-1030) (-224) (-562))) (-15 -3984 ((-1030) (-224) (-562))) (-15 -3459 ((-1030) (-224) (-562))) (-15 -1562 ((-1030) (-224) (-562))) (-15 -3589 ((-1030) (-224) (-562))) (-15 -4146 ((-1030) (-224) (-562))) (-15 -2040 ((-1030) (-224) (-562))) (-15 -3122 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -1959 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -4253 ((-1030) (-1150) (-168 (-224)) (-1150) (-562))) (-15 -3530 ((-1030) (-1150) (-168 (-224)) (-1150) (-562))) (-15 -1381 ((-1030) (-562) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -3163 ((-1030) (-224) (-562))) (-15 -2546 ((-1030) (-224) (-562))) (-15 -3760 ((-1030) (-224) (-562))) (-15 -3903 ((-1030) (-224) (-562))) (-15 -1995 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -1828 ((-1030) (-224) (-168 (-224)) (-562) (-1150) (-562))) (-15 -3631 ((-1030) (-224) (-562))) (-15 -4353 ((-1030) (-224) (-562))) (-15 -3434 ((-1030) (-224) (-562))) (-15 -3314 ((-1030) (-224) (-562))) (-15 -3442 ((-1030) (-224) (-562))) (-15 -2093 ((-1030) (-224) (-562))) (-15 -4260 ((-1030) (-224) (-224) (-562))) (-15 -4083 ((-1030) (-224) (-224) (-224) (-562))) (-15 -1689 ((-1030) (-224) (-224) (-224) (-562))) (-15 -1549 ((-1030) (-224) (-224) (-224) (-224) (-562))))
+((-3780 (((-1261)) 18)) (-1892 (((-1150)) 22)) (-4255 (((-1150)) 21)) (-2220 (((-1096) (-1168) (-683 (-562))) 37) (((-1096) (-1168) (-683 (-224))) 32)) (-2724 (((-112)) 16)) (-2122 (((-1150) (-1150)) 25)))
+(((-754) (-10 -7 (-15 -4255 ((-1150))) (-15 -1892 ((-1150))) (-15 -2122 ((-1150) (-1150))) (-15 -2220 ((-1096) (-1168) (-683 (-224)))) (-15 -2220 ((-1096) (-1168) (-683 (-562)))) (-15 -2724 ((-112))) (-15 -3780 ((-1261))))) (T -754))
+((-3780 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-754)))) (-2724 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-754)))) (-2220 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-683 (-562))) (-5 *2 (-1096)) (-5 *1 (-754)))) (-2220 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-683 (-224))) (-5 *2 (-1096)) (-5 *1 (-754)))) (-2122 (*1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-754)))) (-1892 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-754)))) (-4255 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-754)))))
+(-10 -7 (-15 -4255 ((-1150))) (-15 -1892 ((-1150))) (-15 -2122 ((-1150) (-1150))) (-15 -2220 ((-1096) (-1168) (-683 (-224)))) (-15 -2220 ((-1096) (-1168) (-683 (-562)))) (-15 -2724 ((-112))) (-15 -3780 ((-1261))))
+((-2114 (($ $ $) 10)) (-2584 (($ $ $ $) 9)) (-4324 (($ $ $) 12)))
+(((-755 |#1|) (-10 -8 (-15 -4324 (|#1| |#1| |#1|)) (-15 -2114 (|#1| |#1| |#1|)) (-15 -2584 (|#1| |#1| |#1| |#1|))) (-756)) (T -755))
+NIL
+(-10 -8 (-15 -4324 (|#1| |#1| |#1|)) (-15 -2114 (|#1| |#1| |#1|)) (-15 -2584 (|#1| |#1| |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-2127 (($ $ (-916)) 28)) (-3235 (($ $ (-916)) 29)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2114 (($ $ $) 25)) (-4053 (((-857) $) 11)) (-2584 (($ $ $ $) 26)) (-4324 (($ $ $) 24)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 30)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 27)))
(((-756) (-139)) (T -756))
-((-2436 (*1 *1 *1 *1 *1) (-4 *1 (-756))) (-1911 (*1 *1 *1 *1) (-4 *1 (-756))) (-3626 (*1 *1 *1 *1) (-4 *1 (-756))))
-(-13 (-21) (-715) (-10 -8 (-15 -2436 ($ $ $ $)) (-15 -1911 ($ $ $)) (-15 -3626 ($ $ $))))
+((-2584 (*1 *1 *1 *1 *1) (-4 *1 (-756))) (-2114 (*1 *1 *1 *1) (-4 *1 (-756))) (-4324 (*1 *1 *1 *1) (-4 *1 (-756))))
+(-13 (-21) (-715) (-10 -8 (-15 -2584 ($ $ $ $)) (-15 -2114 ($ $ $)) (-15 -4324 ($ $ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-609 (-857)) . T) ((-715) . T) ((-1092) . T))
-((-4054 (((-857) $) NIL) (($ (-562)) 10)))
-(((-757 |#1|) (-10 -8 (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|))) (-758)) (T -757))
+((-4053 (((-857) $) NIL) (($ (-562)) 10)))
+(((-757 |#1|) (-10 -8 (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|))) (-758)) (T -757))
NIL
-(-10 -8 (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2545 (((-3 $ "failed") $) 40)) (-1379 (($ $ (-916)) 28) (($ $ (-766)) 35)) (-3668 (((-3 $ "failed") $) 38)) (-1957 (((-112) $) 34)) (-4238 (((-3 $ "failed") $) 39)) (-2991 (($ $ (-916)) 29) (($ $ (-766)) 36)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1911 (($ $ $) 25)) (-4054 (((-857) $) 11) (($ (-562)) 31)) (-2579 (((-766)) 32)) (-2436 (($ $ $ $) 26)) (-3626 (($ $ $) 24)) (-2286 (($) 18 T CONST)) (-2294 (($) 33 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 30) (($ $ (-766)) 37)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 27)))
+(-10 -8 (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-4276 (((-3 $ "failed") $) 40)) (-2127 (($ $ (-916)) 28) (($ $ (-766)) 35)) (-1694 (((-3 $ "failed") $) 38)) (-4367 (((-112) $) 34)) (-2217 (((-3 $ "failed") $) 39)) (-3235 (($ $ (-916)) 29) (($ $ (-766)) 36)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2114 (($ $ $) 25)) (-4053 (((-857) $) 11) (($ (-562)) 31)) (-1568 (((-766)) 32)) (-2584 (($ $ $ $) 26)) (-4324 (($ $ $) 24)) (-2285 (($) 18 T CONST)) (-2294 (($) 33 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 30) (($ $ (-766)) 37)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 27)))
(((-758) (-139)) (T -758))
-((-2579 (*1 *2) (-12 (-4 *1 (-758)) (-5 *2 (-766)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-758)))))
-(-13 (-756) (-717) (-10 -8 (-15 -2579 ((-766))) (-15 -4054 ($ (-562)))))
+((-1568 (*1 *2) (-12 (-4 *1 (-758)) (-5 *2 (-766)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-758)))))
+(-13 (-756) (-717) (-10 -8 (-15 -1568 ((-766))) (-15 -4053 ($ (-562)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-609 (-857)) . T) ((-715) . T) ((-717) . T) ((-756) . T) ((-1092) . T))
-((-2086 (((-639 (-2 (|:| |outval| (-168 |#1|)) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 (-168 |#1|)))))) (-683 (-168 (-406 (-562)))) |#1|) 33)) (-4239 (((-639 (-168 |#1|)) (-683 (-168 (-406 (-562)))) |#1|) 23)) (-3376 (((-947 (-168 (-406 (-562)))) (-683 (-168 (-406 (-562)))) (-1168)) 20) (((-947 (-168 (-406 (-562)))) (-683 (-168 (-406 (-562))))) 19)))
-(((-759 |#1|) (-10 -7 (-15 -3376 ((-947 (-168 (-406 (-562)))) (-683 (-168 (-406 (-562)))))) (-15 -3376 ((-947 (-168 (-406 (-562)))) (-683 (-168 (-406 (-562)))) (-1168))) (-15 -4239 ((-639 (-168 |#1|)) (-683 (-168 (-406 (-562)))) |#1|)) (-15 -2086 ((-639 (-2 (|:| |outval| (-168 |#1|)) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 (-168 |#1|)))))) (-683 (-168 (-406 (-562)))) |#1|))) (-13 (-362) (-843))) (T -759))
-((-2086 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-168 (-406 (-562))))) (-5 *2 (-639 (-2 (|:| |outval| (-168 *4)) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 (-168 *4))))))) (-5 *1 (-759 *4)) (-4 *4 (-13 (-362) (-843))))) (-4239 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-168 (-406 (-562))))) (-5 *2 (-639 (-168 *4))) (-5 *1 (-759 *4)) (-4 *4 (-13 (-362) (-843))))) (-3376 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-168 (-406 (-562))))) (-5 *4 (-1168)) (-5 *2 (-947 (-168 (-406 (-562))))) (-5 *1 (-759 *5)) (-4 *5 (-13 (-362) (-843))))) (-3376 (*1 *2 *3) (-12 (-5 *3 (-683 (-168 (-406 (-562))))) (-5 *2 (-947 (-168 (-406 (-562))))) (-5 *1 (-759 *4)) (-4 *4 (-13 (-362) (-843))))))
-(-10 -7 (-15 -3376 ((-947 (-168 (-406 (-562)))) (-683 (-168 (-406 (-562)))))) (-15 -3376 ((-947 (-168 (-406 (-562)))) (-683 (-168 (-406 (-562)))) (-1168))) (-15 -4239 ((-639 (-168 |#1|)) (-683 (-168 (-406 (-562)))) |#1|)) (-15 -2086 ((-639 (-2 (|:| |outval| (-168 |#1|)) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 (-168 |#1|)))))) (-683 (-168 (-406 (-562)))) |#1|)))
-((-1977 (((-173 (-562)) |#1|) 25)))
-(((-760 |#1|) (-10 -7 (-15 -1977 ((-173 (-562)) |#1|))) (-403)) (T -760))
-((-1977 (*1 *2 *3) (-12 (-5 *2 (-173 (-562))) (-5 *1 (-760 *3)) (-4 *3 (-403)))))
-(-10 -7 (-15 -1977 ((-173 (-562)) |#1|)))
-((-1639 ((|#1| |#1| |#1|) 24)) (-2492 ((|#1| |#1| |#1|) 23)) (-4132 ((|#1| |#1| |#1|) 32)) (-3671 ((|#1| |#1| |#1|) 28)) (-2075 (((-3 |#1| "failed") |#1| |#1|) 27)) (-1535 (((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|) 22)))
-(((-761 |#1| |#2|) (-10 -7 (-15 -1535 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -2492 (|#1| |#1| |#1|)) (-15 -1639 (|#1| |#1| |#1|)) (-15 -2075 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3671 (|#1| |#1| |#1|)) (-15 -4132 (|#1| |#1| |#1|))) (-703 |#2|) (-362)) (T -761))
-((-4132 (*1 *2 *2 *2) (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3)))) (-3671 (*1 *2 *2 *2) (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3)))) (-2075 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3)))) (-1639 (*1 *2 *2 *2) (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3)))) (-2492 (*1 *2 *2 *2) (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3)))) (-1535 (*1 *2 *3 *3) (-12 (-4 *4 (-362)) (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-761 *3 *4)) (-4 *3 (-703 *4)))))
-(-10 -7 (-15 -1535 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -2492 (|#1| |#1| |#1|)) (-15 -1639 (|#1| |#1| |#1|)) (-15 -2075 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3671 (|#1| |#1| |#1|)) (-15 -4132 (|#1| |#1| |#1|)))
-((-2475 (((-685 (-1214)) $ (-1214)) 26)) (-3202 (((-685 (-547)) $ (-547)) 25)) (-3787 (((-766) $ (-128)) 27)) (-3966 (((-685 (-129)) $ (-129)) 24)) (-3691 (((-685 (-1214)) $) 12)) (-3192 (((-685 (-1213)) $) 8)) (-3661 (((-685 (-1212)) $) 10)) (-1735 (((-685 (-547)) $) 13)) (-1890 (((-685 (-546)) $) 9)) (-2242 (((-685 (-545)) $) 11)) (-1477 (((-766) $ (-128)) 7)) (-1850 (((-685 (-129)) $) 14)) (-3828 (((-112) $) 31)) (-2640 (((-685 $) |#1| (-949)) 32)) (-3948 (($ $) 6)))
+((-3270 (((-639 (-2 (|:| |outval| (-168 |#1|)) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 (-168 |#1|)))))) (-683 (-168 (-406 (-562)))) |#1|) 33)) (-2228 (((-639 (-168 |#1|)) (-683 (-168 (-406 (-562)))) |#1|) 23)) (-3683 (((-947 (-168 (-406 (-562)))) (-683 (-168 (-406 (-562)))) (-1168)) 20) (((-947 (-168 (-406 (-562)))) (-683 (-168 (-406 (-562))))) 19)))
+(((-759 |#1|) (-10 -7 (-15 -3683 ((-947 (-168 (-406 (-562)))) (-683 (-168 (-406 (-562)))))) (-15 -3683 ((-947 (-168 (-406 (-562)))) (-683 (-168 (-406 (-562)))) (-1168))) (-15 -2228 ((-639 (-168 |#1|)) (-683 (-168 (-406 (-562)))) |#1|)) (-15 -3270 ((-639 (-2 (|:| |outval| (-168 |#1|)) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 (-168 |#1|)))))) (-683 (-168 (-406 (-562)))) |#1|))) (-13 (-362) (-843))) (T -759))
+((-3270 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-168 (-406 (-562))))) (-5 *2 (-639 (-2 (|:| |outval| (-168 *4)) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 (-168 *4))))))) (-5 *1 (-759 *4)) (-4 *4 (-13 (-362) (-843))))) (-2228 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-168 (-406 (-562))))) (-5 *2 (-639 (-168 *4))) (-5 *1 (-759 *4)) (-4 *4 (-13 (-362) (-843))))) (-3683 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-168 (-406 (-562))))) (-5 *4 (-1168)) (-5 *2 (-947 (-168 (-406 (-562))))) (-5 *1 (-759 *5)) (-4 *5 (-13 (-362) (-843))))) (-3683 (*1 *2 *3) (-12 (-5 *3 (-683 (-168 (-406 (-562))))) (-5 *2 (-947 (-168 (-406 (-562))))) (-5 *1 (-759 *4)) (-4 *4 (-13 (-362) (-843))))))
+(-10 -7 (-15 -3683 ((-947 (-168 (-406 (-562)))) (-683 (-168 (-406 (-562)))))) (-15 -3683 ((-947 (-168 (-406 (-562)))) (-683 (-168 (-406 (-562)))) (-1168))) (-15 -2228 ((-639 (-168 |#1|)) (-683 (-168 (-406 (-562)))) |#1|)) (-15 -3270 ((-639 (-2 (|:| |outval| (-168 |#1|)) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 (-168 |#1|)))))) (-683 (-168 (-406 (-562)))) |#1|)))
+((-1477 (((-173 (-562)) |#1|) 25)))
+(((-760 |#1|) (-10 -7 (-15 -1477 ((-173 (-562)) |#1|))) (-403)) (T -760))
+((-1477 (*1 *2 *3) (-12 (-5 *2 (-173 (-562))) (-5 *1 (-760 *3)) (-4 *3 (-403)))))
+(-10 -7 (-15 -1477 ((-173 (-562)) |#1|)))
+((-4371 ((|#1| |#1| |#1|) 24)) (-1934 ((|#1| |#1| |#1|) 23)) (-2516 ((|#1| |#1| |#1|) 32)) (-3552 ((|#1| |#1| |#1|) 28)) (-3151 (((-3 |#1| "failed") |#1| |#1|) 27)) (-1651 (((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|) 22)))
+(((-761 |#1| |#2|) (-10 -7 (-15 -1651 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -1934 (|#1| |#1| |#1|)) (-15 -4371 (|#1| |#1| |#1|)) (-15 -3151 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3552 (|#1| |#1| |#1|)) (-15 -2516 (|#1| |#1| |#1|))) (-703 |#2|) (-362)) (T -761))
+((-2516 (*1 *2 *2 *2) (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3)))) (-3552 (*1 *2 *2 *2) (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3)))) (-3151 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3)))) (-4371 (*1 *2 *2 *2) (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3)))) (-1934 (*1 *2 *2 *2) (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3)))) (-1651 (*1 *2 *3 *3) (-12 (-4 *4 (-362)) (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-761 *3 *4)) (-4 *3 (-703 *4)))))
+(-10 -7 (-15 -1651 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -1934 (|#1| |#1| |#1|)) (-15 -4371 (|#1| |#1| |#1|)) (-15 -3151 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3552 (|#1| |#1| |#1|)) (-15 -2516 (|#1| |#1| |#1|)))
+((-1734 (((-685 (-1214)) $ (-1214)) 26)) (-2667 (((-685 (-547)) $ (-547)) 25)) (-3445 (((-766) $ (-128)) 27)) (-1571 (((-685 (-129)) $ (-129)) 24)) (-3746 (((-685 (-1214)) $) 12)) (-2589 (((-685 (-1213)) $) 8)) (-1617 (((-685 (-1212)) $) 10)) (-3994 (((-685 (-547)) $) 13)) (-1882 (((-685 (-546)) $) 9)) (-4320 (((-685 (-545)) $) 11)) (-2456 (((-766) $ (-128)) 7)) (-2661 (((-685 (-129)) $) 14)) (-2659 (((-112) $) 31)) (-4052 (((-685 $) |#1| (-949)) 32)) (-1380 (($ $) 6)))
(((-762 |#1|) (-139) (-1092)) (T -762))
-((-2640 (*1 *2 *3 *4) (-12 (-5 *4 (-949)) (-4 *3 (-1092)) (-5 *2 (-685 *1)) (-4 *1 (-762 *3)))) (-3828 (*1 *2 *1) (-12 (-4 *1 (-762 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))))
-(-13 (-574) (-10 -8 (-15 -2640 ((-685 $) |t#1| (-949))) (-15 -3828 ((-112) $))))
+((-4052 (*1 *2 *3 *4) (-12 (-5 *4 (-949)) (-4 *3 (-1092)) (-5 *2 (-685 *1)) (-4 *1 (-762 *3)))) (-2659 (*1 *2 *1) (-12 (-4 *1 (-762 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))))
+(-13 (-574) (-10 -8 (-15 -4052 ((-685 $) |t#1| (-949))) (-15 -2659 ((-112) $))))
(((-172) . T) ((-526) . T) ((-574) . T) ((-855) . T))
-((-2438 (((-2 (|:| -3928 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562)))) (-562)) 59)) (-3826 (((-2 (|:| -3928 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562))))) 57)) (-2455 (((-562)) 70)))
-(((-763 |#1| |#2|) (-10 -7 (-15 -2455 ((-562))) (-15 -3826 ((-2 (|:| -3928 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562)))))) (-15 -2438 ((-2 (|:| -3928 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562)))) (-562)))) (-1232 (-562)) (-408 (-562) |#1|)) (T -763))
-((-2438 (*1 *2 *3) (-12 (-5 *3 (-562)) (-4 *4 (-1232 *3)) (-5 *2 (-2 (|:| -3928 (-683 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-683 *3)))) (-5 *1 (-763 *4 *5)) (-4 *5 (-408 *3 *4)))) (-3826 (*1 *2) (-12 (-4 *3 (-1232 (-562))) (-5 *2 (-2 (|:| -3928 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562))))) (-5 *1 (-763 *3 *4)) (-4 *4 (-408 (-562) *3)))) (-2455 (*1 *2) (-12 (-4 *3 (-1232 *2)) (-5 *2 (-562)) (-5 *1 (-763 *3 *4)) (-4 *4 (-408 *2 *3)))))
-(-10 -7 (-15 -2455 ((-562))) (-15 -3826 ((-2 (|:| -3928 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562)))))) (-15 -2438 ((-2 (|:| -3928 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562)))) (-562))))
-((-4041 (((-112) $ $) NIL)) (-3961 (((-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) $) 21)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 20) (($ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 13) (($ (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))))) 18)) (-1731 (((-112) $ $) NIL)))
-(((-764) (-13 (-1092) (-10 -8 (-15 -4054 ($ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4054 ($ (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4054 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))) (-15 -3961 ((-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) $))))) (T -764))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *1 (-764)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *1 (-764)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))))) (-5 *1 (-764)))) (-3961 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))))) (-5 *1 (-764)))))
-(-13 (-1092) (-10 -8 (-15 -4054 ($ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4054 ($ (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4054 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))) (-15 -3961 ((-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) $))))
-((-1567 (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|))) 18) (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)) (-639 (-1168))) 17)) (-4351 (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|))) 20) (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)) (-639 (-1168))) 19)))
-(((-765 |#1|) (-10 -7 (-15 -1567 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -1567 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)))) (-15 -4351 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -4351 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|))))) (-554)) (T -765))
-((-4351 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-765 *4)))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-639 (-1168))) (-4 *5 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-765 *5)))) (-1567 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-765 *4)))) (-1567 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-639 (-1168))) (-4 *5 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-765 *5)))))
-(-10 -7 (-15 -1567 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -1567 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)))) (-15 -4351 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -4351 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3659 (($ $ $) 6)) (-3214 (((-3 $ "failed") $ $) 9)) (-3358 (($ $ (-562)) 7)) (-1800 (($) NIL T CONST)) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($ $) NIL)) (-1787 (($ $ $) NIL)) (-1957 (((-112) $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1606 (($ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4054 (((-857) $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-766)) NIL) (($ $ (-916)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ $ $) NIL)))
-(((-766) (-13 (-788) (-721) (-10 -8 (-15 -1787 ($ $ $)) (-15 -1811 ($ $ $)) (-15 -1606 ($ $ $)) (-15 -2080 ((-2 (|:| -2097 $) (|:| -2264 $)) $ $)) (-15 -1762 ((-3 $ "failed") $ $)) (-15 -3358 ($ $ (-562))) (-15 -1448 ($ $)) (-6 (-4404 "*"))))) (T -766))
-((-1787 (*1 *1 *1 *1) (-5 *1 (-766))) (-1811 (*1 *1 *1 *1) (-5 *1 (-766))) (-1606 (*1 *1 *1 *1) (-5 *1 (-766))) (-2080 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2097 (-766)) (|:| -2264 (-766)))) (-5 *1 (-766)))) (-1762 (*1 *1 *1 *1) (|partial| -5 *1 (-766))) (-3358 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-766)))) (-1448 (*1 *1 *1) (-5 *1 (-766))))
-(-13 (-788) (-721) (-10 -8 (-15 -1787 ($ $ $)) (-15 -1811 ($ $ $)) (-15 -1606 ($ $ $)) (-15 -2080 ((-2 (|:| -2097 $) (|:| -2264 $)) $ $)) (-15 -1762 ((-3 $ "failed") $ $)) (-15 -3358 ($ $ (-562))) (-15 -1448 ($ $)) (-6 (-4404 "*"))))
+((-2606 (((-2 (|:| -4291 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562)))) (-562)) 59)) (-2639 (((-2 (|:| -4291 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562))))) 57)) (-2736 (((-562)) 70)))
+(((-763 |#1| |#2|) (-10 -7 (-15 -2736 ((-562))) (-15 -2639 ((-2 (|:| -4291 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562)))))) (-15 -2606 ((-2 (|:| -4291 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562)))) (-562)))) (-1232 (-562)) (-408 (-562) |#1|)) (T -763))
+((-2606 (*1 *2 *3) (-12 (-5 *3 (-562)) (-4 *4 (-1232 *3)) (-5 *2 (-2 (|:| -4291 (-683 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-683 *3)))) (-5 *1 (-763 *4 *5)) (-4 *5 (-408 *3 *4)))) (-2639 (*1 *2) (-12 (-4 *3 (-1232 (-562))) (-5 *2 (-2 (|:| -4291 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562))))) (-5 *1 (-763 *3 *4)) (-4 *4 (-408 (-562) *3)))) (-2736 (*1 *2) (-12 (-4 *3 (-1232 *2)) (-5 *2 (-562)) (-5 *1 (-763 *3 *4)) (-4 *4 (-408 *2 *3)))))
+(-10 -7 (-15 -2736 ((-562))) (-15 -2639 ((-2 (|:| -4291 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562)))))) (-15 -2606 ((-2 (|:| -4291 (-683 (-562))) (|:| |basisDen| (-562)) (|:| |basisInv| (-683 (-562)))) (-562))))
+((-4041 (((-112) $ $) NIL)) (-3960 (((-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) $) 21)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 20) (($ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 13) (($ (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))))) 18)) (-1733 (((-112) $ $) NIL)))
+(((-764) (-13 (-1092) (-10 -8 (-15 -4053 ($ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4053 ($ (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4053 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))) (-15 -3960 ((-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) $))))) (T -764))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *1 (-764)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *1 (-764)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))))) (-5 *1 (-764)))) (-3960 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))))) (-5 *1 (-764)))))
+(-13 (-1092) (-10 -8 (-15 -4053 ($ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4053 ($ (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -4053 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))) (-15 -3960 ((-3 (|:| |nia| (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| |mdnia| (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) $))))
+((-1949 (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|))) 18) (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)) (-639 (-1168))) 17)) (-3888 (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|))) 20) (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)) (-639 (-1168))) 19)))
+(((-765 |#1|) (-10 -7 (-15 -1949 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -1949 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)))) (-15 -3888 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -3888 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|))))) (-554)) (T -765))
+((-3888 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-765 *4)))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-639 (-1168))) (-4 *5 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-765 *5)))) (-1949 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-765 *4)))) (-1949 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-639 (-1168))) (-4 *5 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-765 *5)))))
+(-10 -7 (-15 -1949 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -1949 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)))) (-15 -3888 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -3888 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-947 |#1|)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1593 (($ $ $) 6)) (-2781 (((-3 $ "failed") $ $) 9)) (-3355 (($ $ (-562)) 7)) (-3329 (($) NIL T CONST)) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($ $) NIL)) (-1787 (($ $ $) NIL)) (-4367 (((-112) $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1606 (($ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4053 (((-857) $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-766)) NIL) (($ $ (-916)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ $ $) NIL)))
+(((-766) (-13 (-788) (-721) (-10 -8 (-15 -1787 ($ $ $)) (-15 -1810 ($ $ $)) (-15 -1606 ($ $ $)) (-15 -3204 ((-2 (|:| -3380 $) (|:| -1441 $)) $ $)) (-15 -1762 ((-3 $ "failed") $ $)) (-15 -3355 ($ $ (-562))) (-15 -1447 ($ $)) (-6 (-4405 "*"))))) (T -766))
+((-1787 (*1 *1 *1 *1) (-5 *1 (-766))) (-1810 (*1 *1 *1 *1) (-5 *1 (-766))) (-1606 (*1 *1 *1 *1) (-5 *1 (-766))) (-3204 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3380 (-766)) (|:| -1441 (-766)))) (-5 *1 (-766)))) (-1762 (*1 *1 *1 *1) (|partial| -5 *1 (-766))) (-3355 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-766)))) (-1447 (*1 *1 *1) (-5 *1 (-766))))
+(-13 (-788) (-721) (-10 -8 (-15 -1787 ($ $ $)) (-15 -1810 ($ $ $)) (-15 -1606 ($ $ $)) (-15 -3204 ((-2 (|:| -3380 $) (|:| -1441 $)) $ $)) (-15 -1762 ((-3 $ "failed") $ $)) (-15 -3355 ($ $ (-562))) (-15 -1447 ($ $)) (-6 (-4405 "*"))))
((|Integer|) (COND ((< |#1| 0) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-4351 (((-3 |#2| "failed") |#2| |#2| (-114) (-1168)) 35)))
-(((-767 |#1| |#2|) (-10 -7 (-15 -4351 ((-3 |#2| "failed") |#2| |#2| (-114) (-1168)))) (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)) (-13 (-29 |#1|) (-1192) (-954))) (T -767))
-((-4351 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1168)) (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *1 (-767 *5 *2)) (-4 *2 (-13 (-29 *5) (-1192) (-954))))))
-(-10 -7 (-15 -4351 ((-3 |#2| "failed") |#2| |#2| (-114) (-1168))))
-((-4054 (((-769) |#1|) 8)))
-(((-768 |#1|) (-10 -7 (-15 -4054 ((-769) |#1|))) (-1207)) (T -768))
-((-4054 (*1 *2 *3) (-12 (-5 *2 (-769)) (-5 *1 (-768 *3)) (-4 *3 (-1207)))))
-(-10 -7 (-15 -4054 ((-769) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 7)) (-1731 (((-112) $ $) 9)))
+((-3888 (((-3 |#2| "failed") |#2| |#2| (-114) (-1168)) 35)))
+(((-767 |#1| |#2|) (-10 -7 (-15 -3888 ((-3 |#2| "failed") |#2| |#2| (-114) (-1168)))) (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)) (-13 (-29 |#1|) (-1192) (-954))) (T -767))
+((-3888 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1168)) (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *1 (-767 *5 *2)) (-4 *2 (-13 (-29 *5) (-1192) (-954))))))
+(-10 -7 (-15 -3888 ((-3 |#2| "failed") |#2| |#2| (-114) (-1168))))
+((-4053 (((-769) |#1|) 8)))
+(((-768 |#1|) (-10 -7 (-15 -4053 ((-769) |#1|))) (-1207)) (T -768))
+((-4053 (*1 *2 *3) (-12 (-5 *2 (-769)) (-5 *1 (-768 *3)) (-4 *3 (-1207)))))
+(-10 -7 (-15 -4053 ((-769) |#1|)))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 7)) (-1733 (((-112) $ $) 9)))
(((-769) (-1092)) (T -769))
NIL
(-1092)
-((-2247 ((|#2| |#4|) 35)))
-(((-770 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2247 (|#2| |#4|))) (-451) (-1232 |#1|) (-719 |#1| |#2|) (-1232 |#3|)) (T -770))
-((-2247 (*1 *2 *3) (-12 (-4 *4 (-451)) (-4 *5 (-719 *4 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-770 *4 *2 *5 *3)) (-4 *3 (-1232 *5)))))
-(-10 -7 (-15 -2247 (|#2| |#4|)))
-((-3668 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 56)) (-3040 (((-1261) (-1150) (-1150) |#4| |#5|) 33)) (-1429 ((|#4| |#4| |#5|) 72)) (-3270 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#5|) 76)) (-3999 (((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|) 16)))
-(((-771 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3668 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1429 (|#4| |#4| |#5|)) (-15 -3270 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#5|)) (-15 -3040 ((-1261) (-1150) (-1150) |#4| |#5|)) (-15 -3999 ((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|)) (T -771))
-((-3999 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1495 *4)))) (-5 *1 (-771 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3040 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1150)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *4 (-1058 *6 *7 *8)) (-5 *2 (-1261)) (-5 *1 (-771 *6 *7 *8 *4 *5)) (-4 *5 (-1064 *6 *7 *8 *4)))) (-3270 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4)))) (-5 *1 (-771 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-1429 (*1 *2 *2 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *2 (-1058 *4 *5 *6)) (-5 *1 (-771 *4 *5 *6 *2 *3)) (-4 *3 (-1064 *4 *5 *6 *2)))) (-3668 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-771 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
-(-10 -7 (-15 -3668 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1429 (|#4| |#4| |#5|)) (-15 -3270 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#5|)) (-15 -3040 ((-1261) (-1150) (-1150) |#4| |#5|)) (-15 -3999 ((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|)))
-((-4048 (((-3 (-1164 (-1164 |#1|)) "failed") |#4|) 43)) (-2701 (((-639 |#4|) |#4|) 15)) (-4374 ((|#4| |#4|) 11)))
-(((-772 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2701 ((-639 |#4|) |#4|)) (-15 -4048 ((-3 (-1164 (-1164 |#1|)) "failed") |#4|)) (-15 -4374 (|#4| |#4|))) (-348) (-328 |#1|) (-1232 |#2|) (-1232 |#3|) (-916)) (T -772))
-((-4374 (*1 *2 *2) (-12 (-4 *3 (-348)) (-4 *4 (-328 *3)) (-4 *5 (-1232 *4)) (-5 *1 (-772 *3 *4 *5 *2 *6)) (-4 *2 (-1232 *5)) (-14 *6 (-916)))) (-4048 (*1 *2 *3) (|partial| -12 (-4 *4 (-348)) (-4 *5 (-328 *4)) (-4 *6 (-1232 *5)) (-5 *2 (-1164 (-1164 *4))) (-5 *1 (-772 *4 *5 *6 *3 *7)) (-4 *3 (-1232 *6)) (-14 *7 (-916)))) (-2701 (*1 *2 *3) (-12 (-4 *4 (-348)) (-4 *5 (-328 *4)) (-4 *6 (-1232 *5)) (-5 *2 (-639 *3)) (-5 *1 (-772 *4 *5 *6 *3 *7)) (-4 *3 (-1232 *6)) (-14 *7 (-916)))))
-(-10 -7 (-15 -2701 ((-639 |#4|) |#4|)) (-15 -4048 ((-3 (-1164 (-1164 |#1|)) "failed") |#4|)) (-15 -4374 (|#4| |#4|)))
-((-1334 (((-2 (|:| |deter| (-639 (-1164 |#5|))) (|:| |dterm| (-639 (-639 (-2 (|:| -2734 (-766)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-639 |#1|)) (|:| |nlead| (-639 |#5|))) (-1164 |#5|) (-639 |#1|) (-639 |#5|)) 53)) (-3128 (((-639 (-766)) |#1|) 13)))
-(((-773 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1334 ((-2 (|:| |deter| (-639 (-1164 |#5|))) (|:| |dterm| (-639 (-639 (-2 (|:| -2734 (-766)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-639 |#1|)) (|:| |nlead| (-639 |#5|))) (-1164 |#5|) (-639 |#1|) (-639 |#5|))) (-15 -3128 ((-639 (-766)) |#1|))) (-1232 |#4|) (-788) (-845) (-306) (-944 |#4| |#2| |#3|)) (T -773))
-((-3128 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-5 *2 (-639 (-766))) (-5 *1 (-773 *3 *4 *5 *6 *7)) (-4 *3 (-1232 *6)) (-4 *7 (-944 *6 *4 *5)))) (-1334 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1232 *9)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *9 (-306)) (-4 *10 (-944 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-639 (-1164 *10))) (|:| |dterm| (-639 (-639 (-2 (|:| -2734 (-766)) (|:| |pcoef| *10))))) (|:| |nfacts| (-639 *6)) (|:| |nlead| (-639 *10)))) (-5 *1 (-773 *6 *7 *8 *9 *10)) (-5 *3 (-1164 *10)) (-5 *4 (-639 *6)) (-5 *5 (-639 *10)))))
-(-10 -7 (-15 -1334 ((-2 (|:| |deter| (-639 (-1164 |#5|))) (|:| |dterm| (-639 (-639 (-2 (|:| -2734 (-766)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-639 |#1|)) (|:| |nlead| (-639 |#5|))) (-1164 |#5|) (-639 |#1|) (-639 |#5|))) (-15 -3128 ((-639 (-766)) |#1|)))
-((-1683 (((-639 (-2 (|:| |outval| |#1|) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 |#1|))))) (-683 (-406 (-562))) |#1|) 31)) (-1897 (((-639 |#1|) (-683 (-406 (-562))) |#1|) 21)) (-3376 (((-947 (-406 (-562))) (-683 (-406 (-562))) (-1168)) 18) (((-947 (-406 (-562))) (-683 (-406 (-562)))) 17)))
-(((-774 |#1|) (-10 -7 (-15 -3376 ((-947 (-406 (-562))) (-683 (-406 (-562))))) (-15 -3376 ((-947 (-406 (-562))) (-683 (-406 (-562))) (-1168))) (-15 -1897 ((-639 |#1|) (-683 (-406 (-562))) |#1|)) (-15 -1683 ((-639 (-2 (|:| |outval| |#1|) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 |#1|))))) (-683 (-406 (-562))) |#1|))) (-13 (-362) (-843))) (T -774))
-((-1683 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *2 (-639 (-2 (|:| |outval| *4) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 *4)))))) (-5 *1 (-774 *4)) (-4 *4 (-13 (-362) (-843))))) (-1897 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *2 (-639 *4)) (-5 *1 (-774 *4)) (-4 *4 (-13 (-362) (-843))))) (-3376 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *4 (-1168)) (-5 *2 (-947 (-406 (-562)))) (-5 *1 (-774 *5)) (-4 *5 (-13 (-362) (-843))))) (-3376 (*1 *2 *3) (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *2 (-947 (-406 (-562)))) (-5 *1 (-774 *4)) (-4 *4 (-13 (-362) (-843))))))
-(-10 -7 (-15 -3376 ((-947 (-406 (-562))) (-683 (-406 (-562))))) (-15 -3376 ((-947 (-406 (-562))) (-683 (-406 (-562))) (-1168))) (-15 -1897 ((-639 |#1|) (-683 (-406 (-562))) |#1|)) (-15 -1683 ((-639 (-2 (|:| |outval| |#1|) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 |#1|))))) (-683 (-406 (-562))) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 34)) (-1402 (((-639 |#2|) $) NIL)) (-1599 (((-1164 $) $ |#2|) NIL) (((-1164 |#1|) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 |#2|)) NIL)) (-3121 (($ $) 28)) (-3784 (((-112) $ $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3258 (($ $ $) 92 (|has| |#1| (-554)))) (-4052 (((-639 $) $ $) 105 (|has| |#1| (-554)))) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-2798 (($ $) NIL (|has| |#1| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-947 (-406 (-562)))) NIL (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168))))) (((-3 $ "failed") (-947 (-562))) NIL (-4037 (-12 (|has| |#1| (-38 (-562))) (|has| |#2| (-610 (-1168))) (-2236 (|has| |#1| (-38 (-406 (-562)))))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168)))))) (((-3 $ "failed") (-947 |#1|)) NIL (-4037 (-12 (|has| |#2| (-610 (-1168))) (-2236 (|has| |#1| (-38 (-406 (-562))))) (-2236 (|has| |#1| (-38 (-562))))) (-12 (|has| |#1| (-38 (-562))) (|has| |#2| (-610 (-1168))) (-2236 (|has| |#1| (-38 (-406 (-562))))) (-2236 (|has| |#1| (-544)))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168))) (-2236 (|has| |#1| (-987 (-562))))))) (((-3 (-1117 |#1| |#2|) "failed") $) 18)) (-3961 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) ((|#2| $) NIL) (($ (-947 (-406 (-562)))) NIL (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168))))) (($ (-947 (-562))) NIL (-4037 (-12 (|has| |#1| (-38 (-562))) (|has| |#2| (-610 (-1168))) (-2236 (|has| |#1| (-38 (-406 (-562)))))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168)))))) (($ (-947 |#1|)) NIL (-4037 (-12 (|has| |#2| (-610 (-1168))) (-2236 (|has| |#1| (-38 (-406 (-562))))) (-2236 (|has| |#1| (-38 (-562))))) (-12 (|has| |#1| (-38 (-562))) (|has| |#2| (-610 (-1168))) (-2236 (|has| |#1| (-38 (-406 (-562))))) (-2236 (|has| |#1| (-544)))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168))) (-2236 (|has| |#1| (-987 (-562))))))) (((-1117 |#1| |#2|) $) NIL)) (-2835 (($ $ $ |#2|) NIL (|has| |#1| (-171))) (($ $ $) 103 (|has| |#1| (-554)))) (-1601 (($ $) NIL) (($ $ |#2|) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-4091 (((-112) $ $) NIL) (((-112) $ (-639 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-2708 (((-112) $) NIL)) (-2622 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 69)) (-1410 (($ $) 118 (|has| |#1| (-451)))) (-1498 (($ $) NIL (|has| |#1| (-451))) (($ $ |#2|) NIL (|has| |#1| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#1| (-904)))) (-3221 (($ $) NIL (|has| |#1| (-554)))) (-1994 (($ $) NIL (|has| |#1| (-554)))) (-4093 (($ $ $) 64) (($ $ $ |#2|) NIL)) (-2410 (($ $ $) 67) (($ $ $ |#2|) NIL)) (-3122 (($ $ |#1| (-530 |#2|) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| |#1| (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| |#1| (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-2573 (((-112) $ $) NIL) (((-112) $ (-639 $)) NIL)) (-3524 (($ $ $ $ $) 89 (|has| |#1| (-554)))) (-4339 ((|#2| $) 19)) (-1390 (($ (-1164 |#1|) |#2|) NIL) (($ (-1164 $) |#2|) NIL)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-530 |#2|)) NIL) (($ $ |#2| (-766)) 36) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-1415 (($ $ $) 60)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ |#2|) NIL)) (-2311 (((-112) $) NIL)) (-2076 (((-530 |#2|) $) NIL) (((-766) $ |#2|) NIL) (((-639 (-766)) $ (-639 |#2|)) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2643 (((-766) $) 20)) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2836 (($ (-1 (-530 |#2|) (-530 |#2|)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3372 (((-3 |#2| "failed") $) NIL)) (-2985 (($ $) NIL (|has| |#1| (-451)))) (-2698 (($ $) NIL (|has| |#1| (-451)))) (-4196 (((-639 $) $) NIL)) (-4343 (($ $) 37)) (-2889 (($ $) NIL (|has| |#1| (-451)))) (-2954 (((-639 $) $) 41)) (-2847 (($ $) 39)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL) (($ $ |#2|) 45)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3666 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3761 (-766))) $ $) 81)) (-2924 (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2097 $) (|:| -2264 $)) $ $) 66) (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2097 $) (|:| -2264 $)) $ $ |#2|) NIL)) (-2586 (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2264 $)) $ $) NIL) (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2264 $)) $ $ |#2|) NIL)) (-3793 (($ $ $) 71) (($ $ $ |#2|) NIL)) (-2310 (($ $ $) 74) (($ $ $ |#2|) NIL)) (-2913 (((-1150) $) NIL)) (-1851 (($ $ $) 107 (|has| |#1| (-554)))) (-2077 (((-639 $) $) 30)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| |#2|) (|:| -1960 (-766))) "failed") $) NIL)) (-2890 (((-112) $ $) NIL) (((-112) $ (-639 $)) NIL)) (-1849 (($ $ $) NIL)) (-3729 (($ $) 21)) (-1408 (((-112) $ $) NIL)) (-2766 (((-112) $ $) NIL) (((-112) $ (-639 $)) NIL)) (-1532 (($ $ $) NIL)) (-3063 (($ $) 23)) (-1709 (((-1112) $) NIL)) (-2235 (((-2 (|:| -1606 $) (|:| |coef2| $)) $ $) 98 (|has| |#1| (-554)))) (-2062 (((-2 (|:| -1606 $) (|:| |coef1| $)) $ $) 95 (|has| |#1| (-554)))) (-1534 (((-112) $) 52)) (-1547 ((|#1| $) 55)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 ((|#1| |#1| $) 115 (|has| |#1| (-451))) (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-2196 (((-2 (|:| -1606 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 101 (|has| |#1| (-554)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) 83 (|has| |#1| (-554)))) (-2285 (($ $ |#1|) 111 (|has| |#1| (-554))) (($ $ $) NIL (|has| |#1| (-554)))) (-2094 (($ $ |#1|) 110 (|has| |#1| (-554))) (($ $ $) NIL (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-639 |#2|) (-639 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-639 |#2|) (-639 $)) NIL)) (-2455 (($ $ |#2|) NIL (|has| |#1| (-171)))) (-4029 (($ $ |#2|) NIL) (($ $ (-639 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-3598 (((-530 |#2|) $) NIL) (((-766) $ |#2|) 43) (((-639 (-766)) $ (-639 |#2|)) NIL)) (-2389 (($ $) NIL)) (-3771 (($ $) 33)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| |#1| (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| |#1| (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| |#1| (-610 (-535))) (|has| |#2| (-610 (-535))))) (($ (-947 (-406 (-562)))) NIL (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168))))) (($ (-947 (-562))) NIL (-4037 (-12 (|has| |#1| (-38 (-562))) (|has| |#2| (-610 (-1168))) (-2236 (|has| |#1| (-38 (-406 (-562)))))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168)))))) (($ (-947 |#1|)) NIL (|has| |#2| (-610 (-1168)))) (((-1150) $) NIL (-12 (|has| |#1| (-1033 (-562))) (|has| |#2| (-610 (-1168))))) (((-947 |#1|) $) NIL (|has| |#2| (-610 (-1168))))) (-3900 ((|#1| $) 114 (|has| |#1| (-451))) (($ $ |#2|) NIL (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-947 |#1|) $) NIL (|has| |#2| (-610 (-1168)))) (((-1117 |#1| |#2|) $) 15) (($ (-1117 |#1| |#2|)) 16) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-530 |#2|)) NIL) (($ $ |#2| (-766)) 44) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2286 (($) 13 T CONST)) (-2442 (((-3 (-112) "failed") $ $) NIL)) (-2294 (($) 35 T CONST)) (-3330 (($ $ $ $ (-766)) 87 (|has| |#1| (-554)))) (-2249 (($ $ $ (-766)) 86 (|has| |#1| (-554)))) (-3114 (($ $ |#2|) NIL) (($ $ (-639 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) 54)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) 63)) (-1835 (($ $ $) 73)) (** (($ $ (-916)) NIL) (($ $ (-766)) 61)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 59) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 58) (($ $ |#1|) NIL)))
+((-4363 ((|#2| |#4|) 35)))
+(((-770 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4363 (|#2| |#4|))) (-451) (-1232 |#1|) (-719 |#1| |#2|) (-1232 |#3|)) (T -770))
+((-4363 (*1 *2 *3) (-12 (-4 *4 (-451)) (-4 *5 (-719 *4 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-770 *4 *2 *5 *3)) (-4 *3 (-1232 *5)))))
+(-10 -7 (-15 -4363 (|#2| |#4|)))
+((-1694 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 56)) (-3550 (((-1261) (-1150) (-1150) |#4| |#5|) 33)) (-1984 ((|#4| |#4| |#5|) 72)) (-2140 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#5|) 76)) (-3718 (((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|) 16)))
+(((-771 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1694 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1984 (|#4| |#4| |#5|)) (-15 -2140 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#5|)) (-15 -3550 ((-1261) (-1150) (-1150) |#4| |#5|)) (-15 -3718 ((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|)) (T -771))
+((-3718 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1501 *4)))) (-5 *1 (-771 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3550 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1150)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *4 (-1058 *6 *7 *8)) (-5 *2 (-1261)) (-5 *1 (-771 *6 *7 *8 *4 *5)) (-4 *5 (-1064 *6 *7 *8 *4)))) (-2140 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4)))) (-5 *1 (-771 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-1984 (*1 *2 *2 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *2 (-1058 *4 *5 *6)) (-5 *1 (-771 *4 *5 *6 *2 *3)) (-4 *3 (-1064 *4 *5 *6 *2)))) (-1694 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-771 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(-10 -7 (-15 -1694 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1984 (|#4| |#4| |#5|)) (-15 -2140 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#5|)) (-15 -3550 ((-1261) (-1150) (-1150) |#4| |#5|)) (-15 -3718 ((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|)))
+((-4048 (((-3 (-1164 (-1164 |#1|)) "failed") |#4|) 43)) (-3373 (((-639 |#4|) |#4|) 15)) (-4144 ((|#4| |#4|) 11)))
+(((-772 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3373 ((-639 |#4|) |#4|)) (-15 -4048 ((-3 (-1164 (-1164 |#1|)) "failed") |#4|)) (-15 -4144 (|#4| |#4|))) (-348) (-328 |#1|) (-1232 |#2|) (-1232 |#3|) (-916)) (T -772))
+((-4144 (*1 *2 *2) (-12 (-4 *3 (-348)) (-4 *4 (-328 *3)) (-4 *5 (-1232 *4)) (-5 *1 (-772 *3 *4 *5 *2 *6)) (-4 *2 (-1232 *5)) (-14 *6 (-916)))) (-4048 (*1 *2 *3) (|partial| -12 (-4 *4 (-348)) (-4 *5 (-328 *4)) (-4 *6 (-1232 *5)) (-5 *2 (-1164 (-1164 *4))) (-5 *1 (-772 *4 *5 *6 *3 *7)) (-4 *3 (-1232 *6)) (-14 *7 (-916)))) (-3373 (*1 *2 *3) (-12 (-4 *4 (-348)) (-4 *5 (-328 *4)) (-4 *6 (-1232 *5)) (-5 *2 (-639 *3)) (-5 *1 (-772 *4 *5 *6 *3 *7)) (-4 *3 (-1232 *6)) (-14 *7 (-916)))))
+(-10 -7 (-15 -3373 ((-639 |#4|) |#4|)) (-15 -4048 ((-3 (-1164 (-1164 |#1|)) "failed") |#4|)) (-15 -4144 (|#4| |#4|)))
+((-1985 (((-2 (|:| |deter| (-639 (-1164 |#5|))) (|:| |dterm| (-639 (-639 (-2 (|:| -2542 (-766)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-639 |#1|)) (|:| |nlead| (-639 |#5|))) (-1164 |#5|) (-639 |#1|) (-639 |#5|)) 53)) (-3131 (((-639 (-766)) |#1|) 13)))
+(((-773 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1985 ((-2 (|:| |deter| (-639 (-1164 |#5|))) (|:| |dterm| (-639 (-639 (-2 (|:| -2542 (-766)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-639 |#1|)) (|:| |nlead| (-639 |#5|))) (-1164 |#5|) (-639 |#1|) (-639 |#5|))) (-15 -3131 ((-639 (-766)) |#1|))) (-1232 |#4|) (-788) (-845) (-306) (-944 |#4| |#2| |#3|)) (T -773))
+((-3131 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-5 *2 (-639 (-766))) (-5 *1 (-773 *3 *4 *5 *6 *7)) (-4 *3 (-1232 *6)) (-4 *7 (-944 *6 *4 *5)))) (-1985 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1232 *9)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *9 (-306)) (-4 *10 (-944 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-639 (-1164 *10))) (|:| |dterm| (-639 (-639 (-2 (|:| -2542 (-766)) (|:| |pcoef| *10))))) (|:| |nfacts| (-639 *6)) (|:| |nlead| (-639 *10)))) (-5 *1 (-773 *6 *7 *8 *9 *10)) (-5 *3 (-1164 *10)) (-5 *4 (-639 *6)) (-5 *5 (-639 *10)))))
+(-10 -7 (-15 -1985 ((-2 (|:| |deter| (-639 (-1164 |#5|))) (|:| |dterm| (-639 (-639 (-2 (|:| -2542 (-766)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-639 |#1|)) (|:| |nlead| (-639 |#5|))) (-1164 |#5|) (-639 |#1|) (-639 |#5|))) (-15 -3131 ((-639 (-766)) |#1|)))
+((-3523 (((-639 (-2 (|:| |outval| |#1|) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 |#1|))))) (-683 (-406 (-562))) |#1|) 31)) (-1956 (((-639 |#1|) (-683 (-406 (-562))) |#1|) 21)) (-3683 (((-947 (-406 (-562))) (-683 (-406 (-562))) (-1168)) 18) (((-947 (-406 (-562))) (-683 (-406 (-562)))) 17)))
+(((-774 |#1|) (-10 -7 (-15 -3683 ((-947 (-406 (-562))) (-683 (-406 (-562))))) (-15 -3683 ((-947 (-406 (-562))) (-683 (-406 (-562))) (-1168))) (-15 -1956 ((-639 |#1|) (-683 (-406 (-562))) |#1|)) (-15 -3523 ((-639 (-2 (|:| |outval| |#1|) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 |#1|))))) (-683 (-406 (-562))) |#1|))) (-13 (-362) (-843))) (T -774))
+((-3523 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *2 (-639 (-2 (|:| |outval| *4) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 *4)))))) (-5 *1 (-774 *4)) (-4 *4 (-13 (-362) (-843))))) (-1956 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *2 (-639 *4)) (-5 *1 (-774 *4)) (-4 *4 (-13 (-362) (-843))))) (-3683 (*1 *2 *3 *4) (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *4 (-1168)) (-5 *2 (-947 (-406 (-562)))) (-5 *1 (-774 *5)) (-4 *5 (-13 (-362) (-843))))) (-3683 (*1 *2 *3) (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *2 (-947 (-406 (-562)))) (-5 *1 (-774 *4)) (-4 *4 (-13 (-362) (-843))))))
+(-10 -7 (-15 -3683 ((-947 (-406 (-562))) (-683 (-406 (-562))))) (-15 -3683 ((-947 (-406 (-562))) (-683 (-406 (-562))) (-1168))) (-15 -1956 ((-639 |#1|) (-683 (-406 (-562))) |#1|)) (-15 -3523 ((-639 (-2 (|:| |outval| |#1|) (|:| |outmult| (-562)) (|:| |outvect| (-639 (-683 |#1|))))) (-683 (-406 (-562))) |#1|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 34)) (-1401 (((-639 |#2|) $) NIL)) (-1602 (((-1164 $) $ |#2|) NIL) (((-1164 |#1|) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 |#2|)) NIL)) (-3120 (($ $) 28)) (-3415 (((-112) $ $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-2035 (($ $ $) 92 (|has| |#1| (-554)))) (-4205 (((-639 $) $ $) 105 (|has| |#1| (-554)))) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1977 (($ $) NIL (|has| |#1| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-947 (-406 (-562)))) NIL (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168))))) (((-3 $ "failed") (-947 (-562))) NIL (-4037 (-12 (|has| |#1| (-38 (-562))) (|has| |#2| (-610 (-1168))) (-2234 (|has| |#1| (-38 (-406 (-562)))))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168)))))) (((-3 $ "failed") (-947 |#1|)) NIL (-4037 (-12 (|has| |#2| (-610 (-1168))) (-2234 (|has| |#1| (-38 (-406 (-562))))) (-2234 (|has| |#1| (-38 (-562))))) (-12 (|has| |#1| (-38 (-562))) (|has| |#2| (-610 (-1168))) (-2234 (|has| |#1| (-38 (-406 (-562))))) (-2234 (|has| |#1| (-544)))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168))) (-2234 (|has| |#1| (-987 (-562))))))) (((-3 (-1117 |#1| |#2|) "failed") $) 18)) (-3960 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) ((|#2| $) NIL) (($ (-947 (-406 (-562)))) NIL (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168))))) (($ (-947 (-562))) NIL (-4037 (-12 (|has| |#1| (-38 (-562))) (|has| |#2| (-610 (-1168))) (-2234 (|has| |#1| (-38 (-406 (-562)))))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168)))))) (($ (-947 |#1|)) NIL (-4037 (-12 (|has| |#2| (-610 (-1168))) (-2234 (|has| |#1| (-38 (-406 (-562))))) (-2234 (|has| |#1| (-38 (-562))))) (-12 (|has| |#1| (-38 (-562))) (|has| |#2| (-610 (-1168))) (-2234 (|has| |#1| (-38 (-406 (-562))))) (-2234 (|has| |#1| (-544)))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168))) (-2234 (|has| |#1| (-987 (-562))))))) (((-1117 |#1| |#2|) $) NIL)) (-2355 (($ $ $ |#2|) NIL (|has| |#1| (-171))) (($ $ $) 103 (|has| |#1| (-554)))) (-1600 (($ $) NIL) (($ $ |#2|) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-3300 (((-112) $ $) NIL) (((-112) $ (-639 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-3446 (((-112) $) NIL)) (-3840 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 69)) (-1814 (($ $) 118 (|has| |#1| (-451)))) (-2578 (($ $) NIL (|has| |#1| (-451))) (($ $ |#2|) NIL (|has| |#1| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#1| (-904)))) (-2827 (($ $) NIL (|has| |#1| (-554)))) (-3499 (($ $) NIL (|has| |#1| (-554)))) (-3321 (($ $ $) 64) (($ $ $ |#2|) NIL)) (-3486 (($ $ $) 67) (($ $ $ |#2|) NIL)) (-3066 (($ $ |#1| (-530 |#2|) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| |#1| (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| |#1| (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-1493 (((-112) $ $) NIL) (((-112) $ (-639 $)) NIL)) (-2746 (($ $ $ $ $) 89 (|has| |#1| (-554)))) (-3761 ((|#2| $) 19)) (-1389 (($ (-1164 |#1|) |#2|) NIL) (($ (-1164 $) |#2|) NIL)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-530 |#2|)) NIL) (($ $ |#2| (-766)) 36) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-1874 (($ $ $) 60)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ |#2|) NIL)) (-3739 (((-112) $) NIL)) (-3161 (((-530 |#2|) $) NIL) (((-766) $ |#2|) NIL) (((-639 (-766)) $ (-639 |#2|)) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-4091 (((-766) $) 20)) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2363 (($ (-1 (-530 |#2|) (-530 |#2|)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3640 (((-3 |#2| "failed") $) NIL)) (-3181 (($ $) NIL (|has| |#1| (-451)))) (-3349 (($ $) NIL (|has| |#1| (-451)))) (-1838 (((-639 $) $) NIL)) (-3807 (($ $) 37)) (-1634 (($ $) NIL (|has| |#1| (-451)))) (-4119 (((-639 $) $) 41)) (-4282 (($ $) 39)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL) (($ $ |#2|) 45)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-1674 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3185 (-766))) $ $) 81)) (-3823 (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -3380 $) (|:| -1441 $)) $ $) 66) (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -3380 $) (|:| -1441 $)) $ $ |#2|) NIL)) (-1648 (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -1441 $)) $ $) NIL) (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -1441 $)) $ $ |#2|) NIL)) (-3493 (($ $ $) 71) (($ $ $ |#2|) NIL)) (-3725 (($ $ $) 74) (($ $ $ |#2|) NIL)) (-3696 (((-1150) $) NIL)) (-2672 (($ $ $) 107 (|has| |#1| (-554)))) (-3173 (((-639 $) $) 30)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| |#2|) (|:| -1300 (-766))) "failed") $) NIL)) (-1645 (((-112) $ $) NIL) (((-112) $ (-639 $)) NIL)) (-2651 (($ $ $) NIL)) (-3730 (($ $) 21)) (-1789 (((-112) $ $) NIL)) (-2830 (((-112) $ $) NIL) (((-112) $ (-639 $)) NIL)) (-1630 (($ $ $) NIL)) (-3757 (($ $) 23)) (-1709 (((-1112) $) NIL)) (-4272 (((-2 (|:| -1606 $) (|:| |coef2| $)) $ $) 98 (|has| |#1| (-554)))) (-3015 (((-2 (|:| -1606 $) (|:| |coef1| $)) $ $) 95 (|has| |#1| (-554)))) (-1534 (((-112) $) 52)) (-1547 ((|#1| $) 55)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 ((|#1| |#1| $) 115 (|has| |#1| (-451))) (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-2057 (((-2 (|:| -1606 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 101 (|has| |#1| (-554)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) 83 (|has| |#1| (-554)))) (-3504 (($ $ |#1|) 111 (|has| |#1| (-554))) (($ $ $) NIL (|has| |#1| (-554)))) (-3347 (($ $ |#1|) 110 (|has| |#1| (-554))) (($ $ $) NIL (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-639 |#2|) (-639 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-639 |#2|) (-639 $)) NIL)) (-2736 (($ $ |#2|) NIL (|has| |#1| (-171)))) (-4029 (($ $ |#2|) NIL) (($ $ (-639 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-2250 (((-530 |#2|) $) NIL) (((-766) $ |#2|) 43) (((-639 (-766)) $ (-639 |#2|)) NIL)) (-3276 (($ $) NIL)) (-3293 (($ $) 33)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| |#1| (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| |#1| (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| |#1| (-610 (-535))) (|has| |#2| (-610 (-535))))) (($ (-947 (-406 (-562)))) NIL (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168))))) (($ (-947 (-562))) NIL (-4037 (-12 (|has| |#1| (-38 (-562))) (|has| |#2| (-610 (-1168))) (-2234 (|has| |#1| (-38 (-406 (-562)))))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#2| (-610 (-1168)))))) (($ (-947 |#1|)) NIL (|has| |#2| (-610 (-1168)))) (((-1150) $) NIL (-12 (|has| |#1| (-1033 (-562))) (|has| |#2| (-610 (-1168))))) (((-947 |#1|) $) NIL (|has| |#2| (-610 (-1168))))) (-2201 ((|#1| $) 114 (|has| |#1| (-451))) (($ $ |#2|) NIL (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-947 |#1|) $) NIL (|has| |#2| (-610 (-1168)))) (((-1117 |#1| |#2|) $) 15) (($ (-1117 |#1| |#2|)) 16) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-530 |#2|)) NIL) (($ $ |#2| (-766)) 44) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2285 (($) 13 T CONST)) (-2632 (((-3 (-112) "failed") $ $) NIL)) (-2294 (($) 35 T CONST)) (-1378 (($ $ $ $ (-766)) 87 (|has| |#1| (-554)))) (-4382 (($ $ $ (-766)) 86 (|has| |#1| (-554)))) (-3113 (($ $ |#2|) NIL) (($ $ (-639 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) 54)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) 63)) (-1836 (($ $ $) 73)) (** (($ $ (-916)) NIL) (($ $ (-766)) 61)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 59) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 58) (($ $ |#1|) NIL)))
(((-775 |#1| |#2|) (-13 (-1058 |#1| (-530 |#2|) |#2|) (-609 (-1117 |#1| |#2|)) (-1033 (-1117 |#1| |#2|))) (-1044) (-845)) (T -775))
NIL
(-13 (-1058 |#1| (-530 |#2|) |#2|) (-609 (-1117 |#1| |#2|)) (-1033 (-1117 |#1| |#2|)))
@@ -3153,1241 +3153,1241 @@ NIL
(((-776 |#1| |#2|) (-10 -7 (-15 -4152 ((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|)))) (-1044) (-1044)) (T -776))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-777 *5)) (-4 *5 (-1044)) (-4 *6 (-1044)) (-5 *2 (-777 *6)) (-5 *1 (-776 *5 *6)))))
(-10 -7 (-15 -4152 ((-777 |#2|) (-1 |#2| |#1|) (-777 |#1|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 12)) (-2844 (((-1256 |#1|) $ (-766)) NIL)) (-1402 (((-639 (-1074)) $) NIL)) (-2427 (($ (-1164 |#1|)) NIL)) (-1599 (((-1164 $) $ (-1074)) NIL) (((-1164 |#1|) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 (-1074))) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3137 (((-639 $) $ $) 39 (|has| |#1| (-554)))) (-3258 (($ $ $) 35 (|has| |#1| (-554)))) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-2798 (($ $) NIL (|has| |#1| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-2897 (($ $ (-766)) NIL)) (-3028 (($ $ (-766)) NIL)) (-4157 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-451)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-1074) "failed") $) NIL) (((-3 (-1164 |#1|) "failed") $) 10)) (-3961 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-1074) $) NIL) (((-1164 |#1|) $) NIL)) (-2835 (($ $ $ (-1074)) NIL (|has| |#1| (-171))) ((|#1| $ $) 43 (|has| |#1| (-171)))) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1601 (($ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-4267 (($ $ $) NIL)) (-2375 (($ $ $) 71 (|has| |#1| (-554)))) (-2622 (((-2 (|:| -4221 |#1|) (|:| -2097 $) (|:| -2264 $)) $ $) 70 (|has| |#1| (-554)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-1498 (($ $) NIL (|has| |#1| (-451))) (($ $ (-1074)) NIL (|has| |#1| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#1| (-904)))) (-3122 (($ $ |#1| (-766) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1074) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1074) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1900 (((-766) $ $) NIL (|has| |#1| (-554)))) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-3699 (((-3 $ "failed") $) NIL (|has| |#1| (-1143)))) (-1390 (($ (-1164 |#1|) (-1074)) NIL) (($ (-1164 $) (-1074)) NIL)) (-3374 (($ $ (-766)) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-766)) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-1415 (($ $ $) 20)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ (-1074)) NIL) (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-2076 (((-766) $) NIL) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2836 (($ (-1 (-766) (-766)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4298 (((-1164 |#1|) $) NIL)) (-3372 (((-3 (-1074) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3666 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3761 (-766))) $ $) 26)) (-1616 (($ $ $) 29)) (-1884 (($ $ $) 32)) (-2924 (((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -2097 $) (|:| -2264 $)) $ $) 31)) (-2913 (((-1150) $) NIL)) (-1851 (($ $ $) 41 (|has| |#1| (-554)))) (-3594 (((-2 (|:| -2097 $) (|:| -2264 $)) $ (-766)) NIL)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| (-1074)) (|:| -1960 (-766))) "failed") $) NIL)) (-2667 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3729 (($) NIL (|has| |#1| (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2235 (((-2 (|:| -1606 $) (|:| |coef2| $)) $ $) 67 (|has| |#1| (-554)))) (-2062 (((-2 (|:| -1606 $) (|:| |coef1| $)) $ $) 63 (|has| |#1| (-554)))) (-3273 (((-2 (|:| -2835 |#1|) (|:| |coef2| $)) $ $) 55 (|has| |#1| (-554)))) (-1794 (((-2 (|:| -2835 |#1|) (|:| |coef1| $)) $ $) 51 (|has| |#1| (-554)))) (-1534 (((-112) $) 13)) (-1547 ((|#1| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3348 (($ $ (-766) |#1| $) 19)) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-2196 (((-2 (|:| -1606 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 59 (|has| |#1| (-554)))) (-1337 (((-2 (|:| -2835 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 47 (|has| |#1| (-554)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1074) |#1|) NIL) (($ $ (-639 (-1074)) (-639 |#1|)) NIL) (($ $ (-1074) $) NIL) (($ $ (-639 (-1074)) (-639 $)) NIL)) (-1577 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-406 $) (-406 $) (-406 $)) NIL (|has| |#1| (-554))) ((|#1| (-406 $) |#1|) NIL (|has| |#1| (-362))) (((-406 $) $ (-406 $)) NIL (|has| |#1| (-554)))) (-1530 (((-3 $ "failed") $ (-766)) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-2455 (($ $ (-1074)) NIL (|has| |#1| (-171))) ((|#1| $) NIL (|has| |#1| (-171)))) (-4029 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3598 (((-766) $) NIL) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-1074) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-3900 ((|#1| $) NIL (|has| |#1| (-451))) (($ $ (-1074)) NIL (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-3586 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554))) (((-3 (-406 $) "failed") (-406 $) $) NIL (|has| |#1| (-554)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-1074)) NIL) (((-1164 |#1|) $) 7) (($ (-1164 |#1|)) 8) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-766)) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2286 (($) 21 T CONST)) (-2294 (($) 24 T CONST)) (-3114 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $) 28) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 23) (($ $ |#1|) NIL)))
-(((-777 |#1|) (-13 (-1232 |#1|) (-609 (-1164 |#1|)) (-1033 (-1164 |#1|)) (-10 -8 (-15 -3348 ($ $ (-766) |#1| $)) (-15 -1415 ($ $ $)) (-15 -3666 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3761 (-766))) $ $)) (-15 -1616 ($ $ $)) (-15 -2924 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -2097 $) (|:| -2264 $)) $ $)) (-15 -1884 ($ $ $)) (IF (|has| |#1| (-554)) (PROGN (-15 -3137 ((-639 $) $ $)) (-15 -1851 ($ $ $)) (-15 -2196 ((-2 (|:| -1606 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2062 ((-2 (|:| -1606 $) (|:| |coef1| $)) $ $)) (-15 -2235 ((-2 (|:| -1606 $) (|:| |coef2| $)) $ $)) (-15 -1337 ((-2 (|:| -2835 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1794 ((-2 (|:| -2835 |#1|) (|:| |coef1| $)) $ $)) (-15 -3273 ((-2 (|:| -2835 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-1044)) (T -777))
-((-3348 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-766)) (-5 *1 (-777 *3)) (-4 *3 (-1044)))) (-1415 (*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1044)))) (-3666 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-777 *3)) (|:| |polden| *3) (|:| -3761 (-766)))) (-5 *1 (-777 *3)) (-4 *3 (-1044)))) (-1616 (*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1044)))) (-2924 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -4221 *3) (|:| |gap| (-766)) (|:| -2097 (-777 *3)) (|:| -2264 (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-1044)))) (-1884 (*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1044)))) (-3137 (*1 *2 *1 *1) (-12 (-5 *2 (-639 (-777 *3))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))) (-1851 (*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-554)) (-4 *2 (-1044)))) (-2196 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1606 (-777 *3)) (|:| |coef1| (-777 *3)) (|:| |coef2| (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))) (-2062 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1606 (-777 *3)) (|:| |coef1| (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))) (-2235 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1606 (-777 *3)) (|:| |coef2| (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))) (-1337 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2835 *3) (|:| |coef1| (-777 *3)) (|:| |coef2| (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))) (-1794 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2835 *3) (|:| |coef1| (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))) (-3273 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2835 *3) (|:| |coef2| (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))))
-(-13 (-1232 |#1|) (-609 (-1164 |#1|)) (-1033 (-1164 |#1|)) (-10 -8 (-15 -3348 ($ $ (-766) |#1| $)) (-15 -1415 ($ $ $)) (-15 -3666 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3761 (-766))) $ $)) (-15 -1616 ($ $ $)) (-15 -2924 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -2097 $) (|:| -2264 $)) $ $)) (-15 -1884 ($ $ $)) (IF (|has| |#1| (-554)) (PROGN (-15 -3137 ((-639 $) $ $)) (-15 -1851 ($ $ $)) (-15 -2196 ((-2 (|:| -1606 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2062 ((-2 (|:| -1606 $) (|:| |coef1| $)) $ $)) (-15 -2235 ((-2 (|:| -1606 $) (|:| |coef2| $)) $ $)) (-15 -1337 ((-2 (|:| -2835 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1794 ((-2 (|:| -2835 |#1|) (|:| |coef1| $)) $ $)) (-15 -3273 ((-2 (|:| -2835 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
-((-2092 ((|#1| (-766) |#1|) 32 (|has| |#1| (-38 (-406 (-562)))))) (-2601 ((|#1| (-766) |#1|) 22)) (-3444 ((|#1| (-766) |#1|) 34 (|has| |#1| (-38 (-406 (-562)))))))
-(((-778 |#1|) (-10 -7 (-15 -2601 (|#1| (-766) |#1|)) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -3444 (|#1| (-766) |#1|)) (-15 -2092 (|#1| (-766) |#1|))) |%noBranch|)) (-171)) (T -778))
-((-2092 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-778 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-171)))) (-3444 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-778 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-171)))) (-2601 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-778 *2)) (-4 *2 (-171)))))
-(-10 -7 (-15 -2601 (|#1| (-766) |#1|)) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -3444 (|#1| (-766) |#1|)) (-15 -2092 (|#1| (-766) |#1|))) |%noBranch|))
-((-4041 (((-112) $ $) 7)) (-2560 (((-639 (-2 (|:| -1450 $) (|:| -3316 (-639 |#4|)))) (-639 |#4|)) 85)) (-2304 (((-639 $) (-639 |#4|)) 86) (((-639 $) (-639 |#4|) (-112)) 111)) (-1402 (((-639 |#3|) $) 33)) (-4170 (((-112) $) 26)) (-4274 (((-112) $) 17 (|has| |#1| (-554)))) (-4377 (((-112) |#4| $) 101) (((-112) $) 97)) (-3049 ((|#4| |#4| $) 92)) (-2798 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 $))) |#4| $) 126)) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |#3|) 27)) (-4336 (((-112) $ (-766)) 44)) (-3556 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4402))) (((-3 |#4| "failed") $ |#3|) 79)) (-1800 (($) 45 T CONST)) (-2207 (((-112) $) 22 (|has| |#1| (-554)))) (-1920 (((-112) $ $) 24 (|has| |#1| (-554)))) (-3852 (((-112) $ $) 23 (|has| |#1| (-554)))) (-2539 (((-112) $) 25 (|has| |#1| (-554)))) (-2839 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3884 (((-639 |#4|) (-639 |#4|) $) 18 (|has| |#1| (-554)))) (-2540 (((-639 |#4|) (-639 |#4|) $) 19 (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 36)) (-3961 (($ (-639 |#4|)) 35)) (-1434 (((-3 $ "failed") $) 82)) (-2387 ((|#4| |#4| $) 89)) (-1459 (($ $) 68 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#4| $) 67 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4402)))) (-2264 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-554)))) (-4091 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3595 ((|#4| |#4| $) 87)) (-1955 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4402))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4402))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2267 (((-2 (|:| -1450 (-639 |#4|)) (|:| -3316 (-639 |#4|))) $) 105)) (-4079 (((-112) |#4| $) 136)) (-3513 (((-112) |#4| $) 133)) (-2764 (((-112) |#4| $) 137) (((-112) $) 134)) (-1720 (((-639 |#4|) $) 52 (|has| $ (-6 -4402)))) (-2573 (((-112) |#4| $) 104) (((-112) $) 103)) (-4339 ((|#3| $) 34)) (-3292 (((-112) $ (-766)) 43)) (-1912 (((-639 |#4|) $) 53 (|has| $ (-6 -4402)))) (-1669 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#4| |#4|) $) 47)) (-3754 (((-639 |#3|) $) 32)) (-2071 (((-112) |#3| $) 31)) (-3289 (((-112) $ (-766)) 42)) (-2913 (((-1150) $) 9)) (-1609 (((-3 |#4| (-639 $)) |#4| |#4| $) 128)) (-1851 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 $))) |#4| |#4| $) 127)) (-1504 (((-3 |#4| "failed") $) 83)) (-1814 (((-639 $) |#4| $) 129)) (-1950 (((-3 (-112) (-639 $)) |#4| $) 132)) (-2021 (((-639 (-2 (|:| |val| (-112)) (|:| -1495 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-4376 (((-639 $) |#4| $) 125) (((-639 $) (-639 |#4|) $) 124) (((-639 $) (-639 |#4|) (-639 $)) 123) (((-639 $) |#4| (-639 $)) 122)) (-1430 (($ |#4| $) 117) (($ (-639 |#4|) $) 116)) (-3576 (((-639 |#4|) $) 107)) (-2890 (((-112) |#4| $) 99) (((-112) $) 95)) (-1849 ((|#4| |#4| $) 90)) (-1408 (((-112) $ $) 110)) (-3725 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-554)))) (-2766 (((-112) |#4| $) 100) (((-112) $) 96)) (-1532 ((|#4| |#4| $) 91)) (-1709 (((-1112) $) 10)) (-1421 (((-3 |#4| "failed") $) 84)) (-3251 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3310 (((-3 $ "failed") $ |#4|) 78)) (-1353 (($ $ |#4|) 77) (((-639 $) |#4| $) 115) (((-639 $) |#4| (-639 $)) 114) (((-639 $) (-639 |#4|) $) 113) (((-639 $) (-639 |#4|) (-639 $)) 112)) (-1763 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) 59 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) 57 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) 56 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-3336 (((-112) $ $) 38)) (-2974 (((-112) $) 41)) (-4307 (($) 40)) (-3598 (((-766) $) 106)) (-1723 (((-766) |#4| $) 54 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) (((-766) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4402)))) (-4220 (($ $) 39)) (-4208 (((-535) $) 69 (|has| |#4| (-610 (-535))))) (-4066 (($ (-639 |#4|)) 60)) (-1812 (($ $ |#3|) 28)) (-3274 (($ $ |#3|) 30)) (-3277 (($ $) 88)) (-1568 (($ $ |#3|) 29)) (-4054 (((-857) $) 11) (((-639 |#4|) $) 37)) (-3730 (((-766) $) 76 (|has| |#3| (-367)))) (-2652 (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-4252 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) 98)) (-1612 (((-639 $) |#4| $) 121) (((-639 $) |#4| (-639 $)) 120) (((-639 $) (-639 |#4|) $) 119) (((-639 $) (-639 |#4|) (-639 $)) 118)) (-1744 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4402)))) (-4089 (((-639 |#3|) $) 81)) (-4211 (((-112) |#4| $) 135)) (-3694 (((-112) |#3| $) 80)) (-1731 (((-112) $ $) 6)) (-3492 (((-766) $) 46 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 12)) (-4263 (((-1256 |#1|) $ (-766)) NIL)) (-1401 (((-639 (-1074)) $) NIL)) (-2505 (($ (-1164 |#1|)) NIL)) (-1602 (((-1164 $) $ (-1074)) NIL) (((-1164 |#1|) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 (-1074))) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3215 (((-639 $) $ $) 39 (|has| |#1| (-554)))) (-2035 (($ $ $) 35 (|has| |#1| (-554)))) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1977 (($ $) NIL (|has| |#1| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-1730 (($ $ (-766)) NIL)) (-3538 (($ $ (-766)) NIL)) (-2687 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-451)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-1074) "failed") $) NIL) (((-3 (-1164 |#1|) "failed") $) 10)) (-3960 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-1074) $) NIL) (((-1164 |#1|) $) NIL)) (-2355 (($ $ $ (-1074)) NIL (|has| |#1| (-171))) ((|#1| $ $) 43 (|has| |#1| (-171)))) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-1600 (($ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-4296 (($ $ $) NIL)) (-3127 (($ $ $) 71 (|has| |#1| (-554)))) (-3840 (((-2 (|:| -4221 |#1|) (|:| -3380 $) (|:| -1441 $)) $ $) 70 (|has| |#1| (-554)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-2578 (($ $) NIL (|has| |#1| (-451))) (($ $ (-1074)) NIL (|has| |#1| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#1| (-904)))) (-3066 (($ $ |#1| (-766) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1074) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1074) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1993 (((-766) $ $) NIL (|has| |#1| (-554)))) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-3828 (((-3 $ "failed") $) NIL (|has| |#1| (-1143)))) (-1389 (($ (-1164 |#1|) (-1074)) NIL) (($ (-1164 $) (-1074)) NIL)) (-3662 (($ $ (-766)) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-766)) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-1874 (($ $ $) 20)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ (-1074)) NIL) (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3161 (((-766) $) NIL) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2363 (($ (-1 (-766) (-766)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1556 (((-1164 |#1|) $) NIL)) (-3640 (((-3 (-1074) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-1674 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3185 (-766))) $ $) 26)) (-4159 (($ $ $) 29)) (-1809 (($ $ $) 32)) (-3823 (((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -3380 $) (|:| -1441 $)) $ $) 31)) (-3696 (((-1150) $) NIL)) (-2672 (($ $ $) 41 (|has| |#1| (-554)))) (-2215 (((-2 (|:| -3380 $) (|:| -1441 $)) $ (-766)) NIL)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| (-1074)) (|:| -1300 (-766))) "failed") $) NIL)) (-3081 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3730 (($) NIL (|has| |#1| (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-4272 (((-2 (|:| -1606 $) (|:| |coef2| $)) $ $) 67 (|has| |#1| (-554)))) (-3015 (((-2 (|:| -1606 $) (|:| |coef1| $)) $ $) 63 (|has| |#1| (-554)))) (-2168 (((-2 (|:| -2355 |#1|) (|:| |coef2| $)) $ $) 55 (|has| |#1| (-554)))) (-3284 (((-2 (|:| -2355 |#1|) (|:| |coef1| $)) $ $) 51 (|has| |#1| (-554)))) (-1534 (((-112) $) 13)) (-1547 ((|#1| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-1601 (($ $ (-766) |#1| $) 19)) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-2057 (((-2 (|:| -1606 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 59 (|has| |#1| (-554)))) (-2019 (((-2 (|:| -2355 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 47 (|has| |#1| (-554)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1074) |#1|) NIL) (($ $ (-639 (-1074)) (-639 |#1|)) NIL) (($ $ (-1074) $) NIL) (($ $ (-639 (-1074)) (-639 $)) NIL)) (-2044 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-406 $) (-406 $) (-406 $)) NIL (|has| |#1| (-554))) ((|#1| (-406 $) |#1|) NIL (|has| |#1| (-362))) (((-406 $) $ (-406 $)) NIL (|has| |#1| (-554)))) (-1610 (((-3 $ "failed") $ (-766)) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-2736 (($ $ (-1074)) NIL (|has| |#1| (-171))) ((|#1| $) NIL (|has| |#1| (-171)))) (-4029 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-2250 (((-766) $) NIL) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-1074) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-2201 ((|#1| $) NIL (|has| |#1| (-451))) (($ $ (-1074)) NIL (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-2155 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554))) (((-3 (-406 $) "failed") (-406 $) $) NIL (|has| |#1| (-554)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-1074)) NIL) (((-1164 |#1|) $) 7) (($ (-1164 |#1|)) 8) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-766)) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2285 (($) 21 T CONST)) (-2294 (($) 24 T CONST)) (-3113 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $) 28) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 23) (($ $ |#1|) NIL)))
+(((-777 |#1|) (-13 (-1232 |#1|) (-609 (-1164 |#1|)) (-1033 (-1164 |#1|)) (-10 -8 (-15 -1601 ($ $ (-766) |#1| $)) (-15 -1874 ($ $ $)) (-15 -1674 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3185 (-766))) $ $)) (-15 -4159 ($ $ $)) (-15 -3823 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -3380 $) (|:| -1441 $)) $ $)) (-15 -1809 ($ $ $)) (IF (|has| |#1| (-554)) (PROGN (-15 -3215 ((-639 $) $ $)) (-15 -2672 ($ $ $)) (-15 -2057 ((-2 (|:| -1606 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3015 ((-2 (|:| -1606 $) (|:| |coef1| $)) $ $)) (-15 -4272 ((-2 (|:| -1606 $) (|:| |coef2| $)) $ $)) (-15 -2019 ((-2 (|:| -2355 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3284 ((-2 (|:| -2355 |#1|) (|:| |coef1| $)) $ $)) (-15 -2168 ((-2 (|:| -2355 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-1044)) (T -777))
+((-1601 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-766)) (-5 *1 (-777 *3)) (-4 *3 (-1044)))) (-1874 (*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1044)))) (-1674 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-777 *3)) (|:| |polden| *3) (|:| -3185 (-766)))) (-5 *1 (-777 *3)) (-4 *3 (-1044)))) (-4159 (*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1044)))) (-3823 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -4221 *3) (|:| |gap| (-766)) (|:| -3380 (-777 *3)) (|:| -1441 (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-1044)))) (-1809 (*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1044)))) (-3215 (*1 *2 *1 *1) (-12 (-5 *2 (-639 (-777 *3))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))) (-2672 (*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-554)) (-4 *2 (-1044)))) (-2057 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1606 (-777 *3)) (|:| |coef1| (-777 *3)) (|:| |coef2| (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))) (-3015 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1606 (-777 *3)) (|:| |coef1| (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))) (-4272 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1606 (-777 *3)) (|:| |coef2| (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))) (-2019 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2355 *3) (|:| |coef1| (-777 *3)) (|:| |coef2| (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))) (-3284 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2355 *3) (|:| |coef1| (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))) (-2168 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2355 *3) (|:| |coef2| (-777 *3)))) (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))))
+(-13 (-1232 |#1|) (-609 (-1164 |#1|)) (-1033 (-1164 |#1|)) (-10 -8 (-15 -1601 ($ $ (-766) |#1| $)) (-15 -1874 ($ $ $)) (-15 -1674 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3185 (-766))) $ $)) (-15 -4159 ($ $ $)) (-15 -3823 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -3380 $) (|:| -1441 $)) $ $)) (-15 -1809 ($ $ $)) (IF (|has| |#1| (-554)) (PROGN (-15 -3215 ((-639 $) $ $)) (-15 -2672 ($ $ $)) (-15 -2057 ((-2 (|:| -1606 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3015 ((-2 (|:| -1606 $) (|:| |coef1| $)) $ $)) (-15 -4272 ((-2 (|:| -1606 $) (|:| |coef2| $)) $ $)) (-15 -2019 ((-2 (|:| -2355 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3284 ((-2 (|:| -2355 |#1|) (|:| |coef1| $)) $ $)) (-15 -2168 ((-2 (|:| -2355 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
+((-3322 ((|#1| (-766) |#1|) 32 (|has| |#1| (-38 (-406 (-562)))))) (-3612 ((|#1| (-766) |#1|) 22)) (-3126 ((|#1| (-766) |#1|) 34 (|has| |#1| (-38 (-406 (-562)))))))
+(((-778 |#1|) (-10 -7 (-15 -3612 (|#1| (-766) |#1|)) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -3126 (|#1| (-766) |#1|)) (-15 -3322 (|#1| (-766) |#1|))) |%noBranch|)) (-171)) (T -778))
+((-3322 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-778 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-171)))) (-3126 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-778 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-171)))) (-3612 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-778 *2)) (-4 *2 (-171)))))
+(-10 -7 (-15 -3612 (|#1| (-766) |#1|)) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -3126 (|#1| (-766) |#1|)) (-15 -3322 (|#1| (-766) |#1|))) |%noBranch|))
+((-4041 (((-112) $ $) 7)) (-1330 (((-639 (-2 (|:| -1449 $) (|:| -3315 (-639 |#4|)))) (-639 |#4|)) 85)) (-3672 (((-639 $) (-639 |#4|)) 86) (((-639 $) (-639 |#4|) (-112)) 111)) (-1401 (((-639 |#3|) $) 33)) (-2799 (((-112) $) 26)) (-4370 (((-112) $) 17 (|has| |#1| (-554)))) (-4177 (((-112) |#4| $) 101) (((-112) $) 97)) (-3623 ((|#4| |#4| $) 92)) (-1977 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 $))) |#4| $) 126)) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |#3|) 27)) (-3735 (((-112) $ (-766)) 44)) (-3556 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4403))) (((-3 |#4| "failed") $ |#3|) 79)) (-3329 (($) 45 T CONST)) (-2169 (((-112) $) 22 (|has| |#1| (-554)))) (-2183 (((-112) $ $) 24 (|has| |#1| (-554)))) (-2864 (((-112) $ $) 23 (|has| |#1| (-554)))) (-4219 (((-112) $) 25 (|has| |#1| (-554)))) (-4227 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-2037 (((-639 |#4|) (-639 |#4|) $) 18 (|has| |#1| (-554)))) (-4230 (((-639 |#4|) (-639 |#4|) $) 19 (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 36)) (-3960 (($ (-639 |#4|)) 35)) (-1434 (((-3 $ "failed") $) 82)) (-3255 ((|#4| |#4| $) 89)) (-1459 (($ $) 68 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#4| $) 67 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4403)))) (-1441 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-554)))) (-3300 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-2227 ((|#4| |#4| $) 87)) (-1954 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4403))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4403))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-1471 (((-2 (|:| -1449 (-639 |#4|)) (|:| -3315 (-639 |#4|))) $) 105)) (-3189 (((-112) |#4| $) 136)) (-2633 (((-112) |#4| $) 133)) (-2813 (((-112) |#4| $) 137) (((-112) $) 134)) (-1720 (((-639 |#4|) $) 52 (|has| $ (-6 -4403)))) (-1493 (((-112) |#4| $) 104) (((-112) $) 103)) (-3761 ((|#3| $) 34)) (-4172 (((-112) $ (-766)) 43)) (-2123 (((-639 |#4|) $) 53 (|has| $ (-6 -4403)))) (-1572 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#4| |#4|) $) 47)) (-3133 (((-639 |#3|) $) 32)) (-3112 (((-112) |#3| $) 31)) (-4147 (((-112) $ (-766)) 42)) (-3696 (((-1150) $) 9)) (-4093 (((-3 |#4| (-639 $)) |#4| |#4| $) 128)) (-2672 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 $))) |#4| |#4| $) 127)) (-1504 (((-3 |#4| "failed") $) 83)) (-2334 (((-639 $) |#4| $) 129)) (-4302 (((-3 (-112) (-639 $)) |#4| $) 132)) (-3792 (((-639 (-2 (|:| |val| (-112)) (|:| -1501 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-4169 (((-639 $) |#4| $) 125) (((-639 $) (-639 |#4|) $) 124) (((-639 $) (-639 |#4|) (-639 $)) 123) (((-639 $) |#4| (-639 $)) 122)) (-1997 (($ |#4| $) 117) (($ (-639 |#4|) $) 116)) (-2063 (((-639 |#4|) $) 107)) (-1645 (((-112) |#4| $) 99) (((-112) $) 95)) (-2651 ((|#4| |#4| $) 90)) (-1789 (((-112) $ $) 110)) (-4123 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-554)))) (-2830 (((-112) |#4| $) 100) (((-112) $) 96)) (-1630 ((|#4| |#4| $) 91)) (-1709 (((-1112) $) 10)) (-1421 (((-3 |#4| "failed") $) 84)) (-1963 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-4333 (((-3 $ "failed") $ |#4|) 78)) (-4316 (($ $ |#4|) 77) (((-639 $) |#4| $) 115) (((-639 $) |#4| (-639 $)) 114) (((-639 $) (-639 |#4|) $) 113) (((-639 $) (-639 |#4|) (-639 $)) 112)) (-3008 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) 59 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) 57 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) 56 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-1452 (((-112) $ $) 38)) (-3087 (((-112) $) 41)) (-1663 (($) 40)) (-2250 (((-766) $) 106)) (-1723 (((-766) |#4| $) 54 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) (((-766) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4403)))) (-4220 (($ $) 39)) (-4208 (((-535) $) 69 (|has| |#4| (-610 (-535))))) (-4064 (($ (-639 |#4|)) 60)) (-2316 (($ $ |#3|) 28)) (-2180 (($ $ |#3|) 30)) (-2209 (($ $) 88)) (-1962 (($ $ |#3|) 29)) (-4053 (((-857) $) 11) (((-639 |#4|) $) 37)) (-4157 (((-766) $) 76 (|has| |#3| (-367)))) (-4168 (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2350 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) 98)) (-4125 (((-639 $) |#4| $) 121) (((-639 $) |#4| (-639 $)) 120) (((-639 $) (-639 |#4|) $) 119) (((-639 $) (-639 |#4|) (-639 $)) 118)) (-2879 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4403)))) (-3278 (((-639 |#3|) $) 81)) (-1972 (((-112) |#4| $) 135)) (-3782 (((-112) |#3| $) 80)) (-1733 (((-112) $ $) 6)) (-3492 (((-766) $) 46 (|has| $ (-6 -4403)))))
(((-779 |#1| |#2| |#3| |#4|) (-139) (-451) (-788) (-845) (-1058 |t#1| |t#2| |t#3|)) (T -779))
NIL
(-13 (-1064 |t#1| |t#2| |t#3| |t#4|))
(((-34) . T) ((-102) . T) ((-609 (-639 |#4|)) . T) ((-609 (-857)) . T) ((-150 |#4|) . T) ((-610 (-535)) |has| |#4| (-610 (-535))) ((-308 |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))) ((-488 |#4|) . T) ((-513 |#4| |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))) ((-971 |#1| |#2| |#3| |#4|) . T) ((-1064 |#1| |#2| |#3| |#4|) . T) ((-1092) . T) ((-1200 |#1| |#2| |#3| |#4|) . T) ((-1207) . T))
-((-2635 (((-3 (-378) "failed") (-315 |#1|) (-916)) 62 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-3 (-378) "failed") (-315 |#1|)) 54 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-3 (-378) "failed") (-406 (-947 |#1|)) (-916)) 41 (|has| |#1| (-554))) (((-3 (-378) "failed") (-406 (-947 |#1|))) 40 (|has| |#1| (-554))) (((-3 (-378) "failed") (-947 |#1|) (-916)) 31 (|has| |#1| (-1044))) (((-3 (-378) "failed") (-947 |#1|)) 30 (|has| |#1| (-1044)))) (-1655 (((-378) (-315 |#1|) (-916)) 99 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-378) (-315 |#1|)) 94 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-378) (-406 (-947 |#1|)) (-916)) 91 (|has| |#1| (-554))) (((-378) (-406 (-947 |#1|))) 90 (|has| |#1| (-554))) (((-378) (-947 |#1|) (-916)) 86 (|has| |#1| (-1044))) (((-378) (-947 |#1|)) 85 (|has| |#1| (-1044))) (((-378) |#1| (-916)) 76) (((-378) |#1|) 22)) (-2321 (((-3 (-168 (-378)) "failed") (-315 (-168 |#1|)) (-916)) 71 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-3 (-168 (-378)) "failed") (-315 (-168 |#1|))) 70 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-3 (-168 (-378)) "failed") (-315 |#1|) (-916)) 63 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-3 (-168 (-378)) "failed") (-315 |#1|)) 61 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-3 (-168 (-378)) "failed") (-406 (-947 (-168 |#1|))) (-916)) 46 (|has| |#1| (-554))) (((-3 (-168 (-378)) "failed") (-406 (-947 (-168 |#1|)))) 45 (|has| |#1| (-554))) (((-3 (-168 (-378)) "failed") (-406 (-947 |#1|)) (-916)) 39 (|has| |#1| (-554))) (((-3 (-168 (-378)) "failed") (-406 (-947 |#1|))) 38 (|has| |#1| (-554))) (((-3 (-168 (-378)) "failed") (-947 |#1|) (-916)) 28 (|has| |#1| (-1044))) (((-3 (-168 (-378)) "failed") (-947 |#1|)) 26 (|has| |#1| (-1044))) (((-3 (-168 (-378)) "failed") (-947 (-168 |#1|)) (-916)) 18 (|has| |#1| (-171))) (((-3 (-168 (-378)) "failed") (-947 (-168 |#1|))) 15 (|has| |#1| (-171)))) (-1562 (((-168 (-378)) (-315 (-168 |#1|)) (-916)) 102 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-168 (-378)) (-315 (-168 |#1|))) 101 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-168 (-378)) (-315 |#1|) (-916)) 100 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-168 (-378)) (-315 |#1|)) 98 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-168 (-378)) (-406 (-947 (-168 |#1|))) (-916)) 93 (|has| |#1| (-554))) (((-168 (-378)) (-406 (-947 (-168 |#1|)))) 92 (|has| |#1| (-554))) (((-168 (-378)) (-406 (-947 |#1|)) (-916)) 89 (|has| |#1| (-554))) (((-168 (-378)) (-406 (-947 |#1|))) 88 (|has| |#1| (-554))) (((-168 (-378)) (-947 |#1|) (-916)) 84 (|has| |#1| (-1044))) (((-168 (-378)) (-947 |#1|)) 83 (|has| |#1| (-1044))) (((-168 (-378)) (-947 (-168 |#1|)) (-916)) 78 (|has| |#1| (-171))) (((-168 (-378)) (-947 (-168 |#1|))) 77 (|has| |#1| (-171))) (((-168 (-378)) (-168 |#1|) (-916)) 80 (|has| |#1| (-171))) (((-168 (-378)) (-168 |#1|)) 79 (|has| |#1| (-171))) (((-168 (-378)) |#1| (-916)) 27) (((-168 (-378)) |#1|) 25)))
-(((-780 |#1|) (-10 -7 (-15 -1655 ((-378) |#1|)) (-15 -1655 ((-378) |#1| (-916))) (-15 -1562 ((-168 (-378)) |#1|)) (-15 -1562 ((-168 (-378)) |#1| (-916))) (IF (|has| |#1| (-171)) (PROGN (-15 -1562 ((-168 (-378)) (-168 |#1|))) (-15 -1562 ((-168 (-378)) (-168 |#1|) (-916))) (-15 -1562 ((-168 (-378)) (-947 (-168 |#1|)))) (-15 -1562 ((-168 (-378)) (-947 (-168 |#1|)) (-916)))) |%noBranch|) (IF (|has| |#1| (-1044)) (PROGN (-15 -1655 ((-378) (-947 |#1|))) (-15 -1655 ((-378) (-947 |#1|) (-916))) (-15 -1562 ((-168 (-378)) (-947 |#1|))) (-15 -1562 ((-168 (-378)) (-947 |#1|) (-916)))) |%noBranch|) (IF (|has| |#1| (-554)) (PROGN (-15 -1655 ((-378) (-406 (-947 |#1|)))) (-15 -1655 ((-378) (-406 (-947 |#1|)) (-916))) (-15 -1562 ((-168 (-378)) (-406 (-947 |#1|)))) (-15 -1562 ((-168 (-378)) (-406 (-947 |#1|)) (-916))) (-15 -1562 ((-168 (-378)) (-406 (-947 (-168 |#1|))))) (-15 -1562 ((-168 (-378)) (-406 (-947 (-168 |#1|))) (-916))) (IF (|has| |#1| (-845)) (PROGN (-15 -1655 ((-378) (-315 |#1|))) (-15 -1655 ((-378) (-315 |#1|) (-916))) (-15 -1562 ((-168 (-378)) (-315 |#1|))) (-15 -1562 ((-168 (-378)) (-315 |#1|) (-916))) (-15 -1562 ((-168 (-378)) (-315 (-168 |#1|)))) (-15 -1562 ((-168 (-378)) (-315 (-168 |#1|)) (-916)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-171)) (PROGN (-15 -2321 ((-3 (-168 (-378)) "failed") (-947 (-168 |#1|)))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-947 (-168 |#1|)) (-916)))) |%noBranch|) (IF (|has| |#1| (-1044)) (PROGN (-15 -2635 ((-3 (-378) "failed") (-947 |#1|))) (-15 -2635 ((-3 (-378) "failed") (-947 |#1|) (-916))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-947 |#1|))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-947 |#1|) (-916)))) |%noBranch|) (IF (|has| |#1| (-554)) (PROGN (-15 -2635 ((-3 (-378) "failed") (-406 (-947 |#1|)))) (-15 -2635 ((-3 (-378) "failed") (-406 (-947 |#1|)) (-916))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-406 (-947 |#1|)))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-406 (-947 |#1|)) (-916))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-406 (-947 (-168 |#1|))))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-406 (-947 (-168 |#1|))) (-916))) (IF (|has| |#1| (-845)) (PROGN (-15 -2635 ((-3 (-378) "failed") (-315 |#1|))) (-15 -2635 ((-3 (-378) "failed") (-315 |#1|) (-916))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-315 |#1|))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-315 |#1|) (-916))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-315 (-168 |#1|)))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-315 (-168 |#1|)) (-916)))) |%noBranch|)) |%noBranch|)) (-610 (-378))) (T -780))
-((-2321 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-315 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-2321 (*1 *2 *3) (|partial| -12 (-5 *3 (-315 (-168 *4))) (-4 *4 (-554)) (-4 *4 (-845)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-2321 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-2321 (*1 *2 *3) (|partial| -12 (-5 *3 (-315 *4)) (-4 *4 (-554)) (-4 *4 (-845)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-2635 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845)) (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))) (-2635 (*1 *2 *3) (|partial| -12 (-5 *3 (-315 *4)) (-4 *4 (-554)) (-4 *4 (-845)) (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4)))) (-2321 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-406 (-947 (-168 *5)))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-2321 (*1 *2 *3) (|partial| -12 (-5 *3 (-406 (-947 (-168 *4)))) (-4 *4 (-554)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-2321 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-2321 (*1 *2 *3) (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-2635 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))) (-2635 (*1 *2 *3) (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4)))) (-2321 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-947 *5)) (-5 *4 (-916)) (-4 *5 (-1044)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-2321 (*1 *2 *3) (|partial| -12 (-5 *3 (-947 *4)) (-4 *4 (-1044)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-2635 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-947 *5)) (-5 *4 (-916)) (-4 *5 (-1044)) (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))) (-2635 (*1 *2 *3) (|partial| -12 (-5 *3 (-947 *4)) (-4 *4 (-1044)) (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4)))) (-2321 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-947 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-171)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-2321 (*1 *2 *3) (|partial| -12 (-5 *3 (-947 (-168 *4))) (-4 *4 (-171)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1562 (*1 *2 *3 *4) (-12 (-5 *3 (-315 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1562 (*1 *2 *3) (-12 (-5 *3 (-315 (-168 *4))) (-4 *4 (-554)) (-4 *4 (-845)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1562 (*1 *2 *3 *4) (-12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1562 (*1 *2 *3) (-12 (-5 *3 (-315 *4)) (-4 *4 (-554)) (-4 *4 (-845)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1655 (*1 *2 *3 *4) (-12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845)) (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))) (-1655 (*1 *2 *3) (-12 (-5 *3 (-315 *4)) (-4 *4 (-554)) (-4 *4 (-845)) (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4)))) (-1562 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 (-168 *5)))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1562 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 (-168 *4)))) (-4 *4 (-554)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1562 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1562 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1655 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))) (-1655 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4)))) (-1562 (*1 *2 *3 *4) (-12 (-5 *3 (-947 *5)) (-5 *4 (-916)) (-4 *5 (-1044)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1562 (*1 *2 *3) (-12 (-5 *3 (-947 *4)) (-4 *4 (-1044)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1655 (*1 *2 *3 *4) (-12 (-5 *3 (-947 *5)) (-5 *4 (-916)) (-4 *5 (-1044)) (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))) (-1655 (*1 *2 *3) (-12 (-5 *3 (-947 *4)) (-4 *4 (-1044)) (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4)))) (-1562 (*1 *2 *3 *4) (-12 (-5 *3 (-947 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-171)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1562 (*1 *2 *3) (-12 (-5 *3 (-947 (-168 *4))) (-4 *4 (-171)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1562 (*1 *2 *3 *4) (-12 (-5 *3 (-168 *5)) (-5 *4 (-916)) (-4 *5 (-171)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1562 (*1 *2 *3) (-12 (-5 *3 (-168 *4)) (-4 *4 (-171)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1562 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-5 *2 (-168 (-378))) (-5 *1 (-780 *3)) (-4 *3 (-610 (-378))))) (-1562 (*1 *2 *3) (-12 (-5 *2 (-168 (-378))) (-5 *1 (-780 *3)) (-4 *3 (-610 (-378))))) (-1655 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-5 *2 (-378)) (-5 *1 (-780 *3)) (-4 *3 (-610 *2)))) (-1655 (*1 *2 *3) (-12 (-5 *2 (-378)) (-5 *1 (-780 *3)) (-4 *3 (-610 *2)))))
-(-10 -7 (-15 -1655 ((-378) |#1|)) (-15 -1655 ((-378) |#1| (-916))) (-15 -1562 ((-168 (-378)) |#1|)) (-15 -1562 ((-168 (-378)) |#1| (-916))) (IF (|has| |#1| (-171)) (PROGN (-15 -1562 ((-168 (-378)) (-168 |#1|))) (-15 -1562 ((-168 (-378)) (-168 |#1|) (-916))) (-15 -1562 ((-168 (-378)) (-947 (-168 |#1|)))) (-15 -1562 ((-168 (-378)) (-947 (-168 |#1|)) (-916)))) |%noBranch|) (IF (|has| |#1| (-1044)) (PROGN (-15 -1655 ((-378) (-947 |#1|))) (-15 -1655 ((-378) (-947 |#1|) (-916))) (-15 -1562 ((-168 (-378)) (-947 |#1|))) (-15 -1562 ((-168 (-378)) (-947 |#1|) (-916)))) |%noBranch|) (IF (|has| |#1| (-554)) (PROGN (-15 -1655 ((-378) (-406 (-947 |#1|)))) (-15 -1655 ((-378) (-406 (-947 |#1|)) (-916))) (-15 -1562 ((-168 (-378)) (-406 (-947 |#1|)))) (-15 -1562 ((-168 (-378)) (-406 (-947 |#1|)) (-916))) (-15 -1562 ((-168 (-378)) (-406 (-947 (-168 |#1|))))) (-15 -1562 ((-168 (-378)) (-406 (-947 (-168 |#1|))) (-916))) (IF (|has| |#1| (-845)) (PROGN (-15 -1655 ((-378) (-315 |#1|))) (-15 -1655 ((-378) (-315 |#1|) (-916))) (-15 -1562 ((-168 (-378)) (-315 |#1|))) (-15 -1562 ((-168 (-378)) (-315 |#1|) (-916))) (-15 -1562 ((-168 (-378)) (-315 (-168 |#1|)))) (-15 -1562 ((-168 (-378)) (-315 (-168 |#1|)) (-916)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-171)) (PROGN (-15 -2321 ((-3 (-168 (-378)) "failed") (-947 (-168 |#1|)))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-947 (-168 |#1|)) (-916)))) |%noBranch|) (IF (|has| |#1| (-1044)) (PROGN (-15 -2635 ((-3 (-378) "failed") (-947 |#1|))) (-15 -2635 ((-3 (-378) "failed") (-947 |#1|) (-916))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-947 |#1|))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-947 |#1|) (-916)))) |%noBranch|) (IF (|has| |#1| (-554)) (PROGN (-15 -2635 ((-3 (-378) "failed") (-406 (-947 |#1|)))) (-15 -2635 ((-3 (-378) "failed") (-406 (-947 |#1|)) (-916))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-406 (-947 |#1|)))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-406 (-947 |#1|)) (-916))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-406 (-947 (-168 |#1|))))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-406 (-947 (-168 |#1|))) (-916))) (IF (|has| |#1| (-845)) (PROGN (-15 -2635 ((-3 (-378) "failed") (-315 |#1|))) (-15 -2635 ((-3 (-378) "failed") (-315 |#1|) (-916))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-315 |#1|))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-315 |#1|) (-916))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-315 (-168 |#1|)))) (-15 -2321 ((-3 (-168 (-378)) "failed") (-315 (-168 |#1|)) (-916)))) |%noBranch|)) |%noBranch|))
-((-1767 (((-916) (-1150)) 64)) (-1959 (((-3 (-378) "failed") (-1150)) 32)) (-1389 (((-378) (-1150)) 30)) (-1858 (((-916) (-1150)) 53)) (-1961 (((-1150) (-916)) 54)) (-3783 (((-1150) (-916)) 52)))
-(((-781) (-10 -7 (-15 -3783 ((-1150) (-916))) (-15 -1858 ((-916) (-1150))) (-15 -1961 ((-1150) (-916))) (-15 -1767 ((-916) (-1150))) (-15 -1389 ((-378) (-1150))) (-15 -1959 ((-3 (-378) "failed") (-1150))))) (T -781))
-((-1959 (*1 *2 *3) (|partial| -12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-781)))) (-1389 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-781)))) (-1767 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-916)) (-5 *1 (-781)))) (-1961 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1150)) (-5 *1 (-781)))) (-1858 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-916)) (-5 *1 (-781)))) (-3783 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1150)) (-5 *1 (-781)))))
-(-10 -7 (-15 -3783 ((-1150) (-916))) (-15 -1858 ((-916) (-1150))) (-15 -1961 ((-1150) (-916))) (-15 -1767 ((-916) (-1150))) (-15 -1389 ((-378) (-1150))) (-15 -1959 ((-3 (-378) "failed") (-1150))))
-((-4041 (((-112) $ $) 7)) (-3561 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 15) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 13)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 16) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1731 (((-112) $ $) 6)))
+((-3991 (((-3 (-378) "failed") (-315 |#1|) (-916)) 62 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-3 (-378) "failed") (-315 |#1|)) 54 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-3 (-378) "failed") (-406 (-947 |#1|)) (-916)) 41 (|has| |#1| (-554))) (((-3 (-378) "failed") (-406 (-947 |#1|))) 40 (|has| |#1| (-554))) (((-3 (-378) "failed") (-947 |#1|) (-916)) 31 (|has| |#1| (-1044))) (((-3 (-378) "failed") (-947 |#1|)) 30 (|has| |#1| (-1044)))) (-1655 (((-378) (-315 |#1|) (-916)) 99 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-378) (-315 |#1|)) 94 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-378) (-406 (-947 |#1|)) (-916)) 91 (|has| |#1| (-554))) (((-378) (-406 (-947 |#1|))) 90 (|has| |#1| (-554))) (((-378) (-947 |#1|) (-916)) 86 (|has| |#1| (-1044))) (((-378) (-947 |#1|)) 85 (|has| |#1| (-1044))) (((-378) |#1| (-916)) 76) (((-378) |#1|) 22)) (-3844 (((-3 (-168 (-378)) "failed") (-315 (-168 |#1|)) (-916)) 71 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-3 (-168 (-378)) "failed") (-315 (-168 |#1|))) 70 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-3 (-168 (-378)) "failed") (-315 |#1|) (-916)) 63 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-3 (-168 (-378)) "failed") (-315 |#1|)) 61 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-3 (-168 (-378)) "failed") (-406 (-947 (-168 |#1|))) (-916)) 46 (|has| |#1| (-554))) (((-3 (-168 (-378)) "failed") (-406 (-947 (-168 |#1|)))) 45 (|has| |#1| (-554))) (((-3 (-168 (-378)) "failed") (-406 (-947 |#1|)) (-916)) 39 (|has| |#1| (-554))) (((-3 (-168 (-378)) "failed") (-406 (-947 |#1|))) 38 (|has| |#1| (-554))) (((-3 (-168 (-378)) "failed") (-947 |#1|) (-916)) 28 (|has| |#1| (-1044))) (((-3 (-168 (-378)) "failed") (-947 |#1|)) 26 (|has| |#1| (-1044))) (((-3 (-168 (-378)) "failed") (-947 (-168 |#1|)) (-916)) 18 (|has| |#1| (-171))) (((-3 (-168 (-378)) "failed") (-947 (-168 |#1|))) 15 (|has| |#1| (-171)))) (-1563 (((-168 (-378)) (-315 (-168 |#1|)) (-916)) 102 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-168 (-378)) (-315 (-168 |#1|))) 101 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-168 (-378)) (-315 |#1|) (-916)) 100 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-168 (-378)) (-315 |#1|)) 98 (-12 (|has| |#1| (-554)) (|has| |#1| (-845)))) (((-168 (-378)) (-406 (-947 (-168 |#1|))) (-916)) 93 (|has| |#1| (-554))) (((-168 (-378)) (-406 (-947 (-168 |#1|)))) 92 (|has| |#1| (-554))) (((-168 (-378)) (-406 (-947 |#1|)) (-916)) 89 (|has| |#1| (-554))) (((-168 (-378)) (-406 (-947 |#1|))) 88 (|has| |#1| (-554))) (((-168 (-378)) (-947 |#1|) (-916)) 84 (|has| |#1| (-1044))) (((-168 (-378)) (-947 |#1|)) 83 (|has| |#1| (-1044))) (((-168 (-378)) (-947 (-168 |#1|)) (-916)) 78 (|has| |#1| (-171))) (((-168 (-378)) (-947 (-168 |#1|))) 77 (|has| |#1| (-171))) (((-168 (-378)) (-168 |#1|) (-916)) 80 (|has| |#1| (-171))) (((-168 (-378)) (-168 |#1|)) 79 (|has| |#1| (-171))) (((-168 (-378)) |#1| (-916)) 27) (((-168 (-378)) |#1|) 25)))
+(((-780 |#1|) (-10 -7 (-15 -1655 ((-378) |#1|)) (-15 -1655 ((-378) |#1| (-916))) (-15 -1563 ((-168 (-378)) |#1|)) (-15 -1563 ((-168 (-378)) |#1| (-916))) (IF (|has| |#1| (-171)) (PROGN (-15 -1563 ((-168 (-378)) (-168 |#1|))) (-15 -1563 ((-168 (-378)) (-168 |#1|) (-916))) (-15 -1563 ((-168 (-378)) (-947 (-168 |#1|)))) (-15 -1563 ((-168 (-378)) (-947 (-168 |#1|)) (-916)))) |%noBranch|) (IF (|has| |#1| (-1044)) (PROGN (-15 -1655 ((-378) (-947 |#1|))) (-15 -1655 ((-378) (-947 |#1|) (-916))) (-15 -1563 ((-168 (-378)) (-947 |#1|))) (-15 -1563 ((-168 (-378)) (-947 |#1|) (-916)))) |%noBranch|) (IF (|has| |#1| (-554)) (PROGN (-15 -1655 ((-378) (-406 (-947 |#1|)))) (-15 -1655 ((-378) (-406 (-947 |#1|)) (-916))) (-15 -1563 ((-168 (-378)) (-406 (-947 |#1|)))) (-15 -1563 ((-168 (-378)) (-406 (-947 |#1|)) (-916))) (-15 -1563 ((-168 (-378)) (-406 (-947 (-168 |#1|))))) (-15 -1563 ((-168 (-378)) (-406 (-947 (-168 |#1|))) (-916))) (IF (|has| |#1| (-845)) (PROGN (-15 -1655 ((-378) (-315 |#1|))) (-15 -1655 ((-378) (-315 |#1|) (-916))) (-15 -1563 ((-168 (-378)) (-315 |#1|))) (-15 -1563 ((-168 (-378)) (-315 |#1|) (-916))) (-15 -1563 ((-168 (-378)) (-315 (-168 |#1|)))) (-15 -1563 ((-168 (-378)) (-315 (-168 |#1|)) (-916)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-171)) (PROGN (-15 -3844 ((-3 (-168 (-378)) "failed") (-947 (-168 |#1|)))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-947 (-168 |#1|)) (-916)))) |%noBranch|) (IF (|has| |#1| (-1044)) (PROGN (-15 -3991 ((-3 (-378) "failed") (-947 |#1|))) (-15 -3991 ((-3 (-378) "failed") (-947 |#1|) (-916))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-947 |#1|))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-947 |#1|) (-916)))) |%noBranch|) (IF (|has| |#1| (-554)) (PROGN (-15 -3991 ((-3 (-378) "failed") (-406 (-947 |#1|)))) (-15 -3991 ((-3 (-378) "failed") (-406 (-947 |#1|)) (-916))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-406 (-947 |#1|)))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-406 (-947 |#1|)) (-916))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-406 (-947 (-168 |#1|))))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-406 (-947 (-168 |#1|))) (-916))) (IF (|has| |#1| (-845)) (PROGN (-15 -3991 ((-3 (-378) "failed") (-315 |#1|))) (-15 -3991 ((-3 (-378) "failed") (-315 |#1|) (-916))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-315 |#1|))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-315 |#1|) (-916))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-315 (-168 |#1|)))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-315 (-168 |#1|)) (-916)))) |%noBranch|)) |%noBranch|)) (-610 (-378))) (T -780))
+((-3844 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-315 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-3844 (*1 *2 *3) (|partial| -12 (-5 *3 (-315 (-168 *4))) (-4 *4 (-554)) (-4 *4 (-845)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-3844 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-3844 (*1 *2 *3) (|partial| -12 (-5 *3 (-315 *4)) (-4 *4 (-554)) (-4 *4 (-845)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-3991 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845)) (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))) (-3991 (*1 *2 *3) (|partial| -12 (-5 *3 (-315 *4)) (-4 *4 (-554)) (-4 *4 (-845)) (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4)))) (-3844 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-406 (-947 (-168 *5)))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-3844 (*1 *2 *3) (|partial| -12 (-5 *3 (-406 (-947 (-168 *4)))) (-4 *4 (-554)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-3844 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-3844 (*1 *2 *3) (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-3991 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))) (-3991 (*1 *2 *3) (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4)))) (-3844 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-947 *5)) (-5 *4 (-916)) (-4 *5 (-1044)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-3844 (*1 *2 *3) (|partial| -12 (-5 *3 (-947 *4)) (-4 *4 (-1044)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-3991 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-947 *5)) (-5 *4 (-916)) (-4 *5 (-1044)) (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))) (-3991 (*1 *2 *3) (|partial| -12 (-5 *3 (-947 *4)) (-4 *4 (-1044)) (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4)))) (-3844 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-947 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-171)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-3844 (*1 *2 *3) (|partial| -12 (-5 *3 (-947 (-168 *4))) (-4 *4 (-171)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1563 (*1 *2 *3 *4) (-12 (-5 *3 (-315 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1563 (*1 *2 *3) (-12 (-5 *3 (-315 (-168 *4))) (-4 *4 (-554)) (-4 *4 (-845)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1563 (*1 *2 *3 *4) (-12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1563 (*1 *2 *3) (-12 (-5 *3 (-315 *4)) (-4 *4 (-554)) (-4 *4 (-845)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1655 (*1 *2 *3 *4) (-12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845)) (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))) (-1655 (*1 *2 *3) (-12 (-5 *3 (-315 *4)) (-4 *4 (-554)) (-4 *4 (-845)) (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4)))) (-1563 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 (-168 *5)))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1563 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 (-168 *4)))) (-4 *4 (-554)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1563 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1563 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1655 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))) (-1655 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4)))) (-1563 (*1 *2 *3 *4) (-12 (-5 *3 (-947 *5)) (-5 *4 (-916)) (-4 *5 (-1044)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1563 (*1 *2 *3) (-12 (-5 *3 (-947 *4)) (-4 *4 (-1044)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1655 (*1 *2 *3 *4) (-12 (-5 *3 (-947 *5)) (-5 *4 (-916)) (-4 *5 (-1044)) (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))) (-1655 (*1 *2 *3) (-12 (-5 *3 (-947 *4)) (-4 *4 (-1044)) (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4)))) (-1563 (*1 *2 *3 *4) (-12 (-5 *3 (-947 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-171)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1563 (*1 *2 *3) (-12 (-5 *3 (-947 (-168 *4))) (-4 *4 (-171)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1563 (*1 *2 *3 *4) (-12 (-5 *3 (-168 *5)) (-5 *4 (-916)) (-4 *5 (-171)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5)))) (-1563 (*1 *2 *3) (-12 (-5 *3 (-168 *4)) (-4 *4 (-171)) (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4)))) (-1563 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-5 *2 (-168 (-378))) (-5 *1 (-780 *3)) (-4 *3 (-610 (-378))))) (-1563 (*1 *2 *3) (-12 (-5 *2 (-168 (-378))) (-5 *1 (-780 *3)) (-4 *3 (-610 (-378))))) (-1655 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-5 *2 (-378)) (-5 *1 (-780 *3)) (-4 *3 (-610 *2)))) (-1655 (*1 *2 *3) (-12 (-5 *2 (-378)) (-5 *1 (-780 *3)) (-4 *3 (-610 *2)))))
+(-10 -7 (-15 -1655 ((-378) |#1|)) (-15 -1655 ((-378) |#1| (-916))) (-15 -1563 ((-168 (-378)) |#1|)) (-15 -1563 ((-168 (-378)) |#1| (-916))) (IF (|has| |#1| (-171)) (PROGN (-15 -1563 ((-168 (-378)) (-168 |#1|))) (-15 -1563 ((-168 (-378)) (-168 |#1|) (-916))) (-15 -1563 ((-168 (-378)) (-947 (-168 |#1|)))) (-15 -1563 ((-168 (-378)) (-947 (-168 |#1|)) (-916)))) |%noBranch|) (IF (|has| |#1| (-1044)) (PROGN (-15 -1655 ((-378) (-947 |#1|))) (-15 -1655 ((-378) (-947 |#1|) (-916))) (-15 -1563 ((-168 (-378)) (-947 |#1|))) (-15 -1563 ((-168 (-378)) (-947 |#1|) (-916)))) |%noBranch|) (IF (|has| |#1| (-554)) (PROGN (-15 -1655 ((-378) (-406 (-947 |#1|)))) (-15 -1655 ((-378) (-406 (-947 |#1|)) (-916))) (-15 -1563 ((-168 (-378)) (-406 (-947 |#1|)))) (-15 -1563 ((-168 (-378)) (-406 (-947 |#1|)) (-916))) (-15 -1563 ((-168 (-378)) (-406 (-947 (-168 |#1|))))) (-15 -1563 ((-168 (-378)) (-406 (-947 (-168 |#1|))) (-916))) (IF (|has| |#1| (-845)) (PROGN (-15 -1655 ((-378) (-315 |#1|))) (-15 -1655 ((-378) (-315 |#1|) (-916))) (-15 -1563 ((-168 (-378)) (-315 |#1|))) (-15 -1563 ((-168 (-378)) (-315 |#1|) (-916))) (-15 -1563 ((-168 (-378)) (-315 (-168 |#1|)))) (-15 -1563 ((-168 (-378)) (-315 (-168 |#1|)) (-916)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-171)) (PROGN (-15 -3844 ((-3 (-168 (-378)) "failed") (-947 (-168 |#1|)))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-947 (-168 |#1|)) (-916)))) |%noBranch|) (IF (|has| |#1| (-1044)) (PROGN (-15 -3991 ((-3 (-378) "failed") (-947 |#1|))) (-15 -3991 ((-3 (-378) "failed") (-947 |#1|) (-916))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-947 |#1|))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-947 |#1|) (-916)))) |%noBranch|) (IF (|has| |#1| (-554)) (PROGN (-15 -3991 ((-3 (-378) "failed") (-406 (-947 |#1|)))) (-15 -3991 ((-3 (-378) "failed") (-406 (-947 |#1|)) (-916))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-406 (-947 |#1|)))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-406 (-947 |#1|)) (-916))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-406 (-947 (-168 |#1|))))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-406 (-947 (-168 |#1|))) (-916))) (IF (|has| |#1| (-845)) (PROGN (-15 -3991 ((-3 (-378) "failed") (-315 |#1|))) (-15 -3991 ((-3 (-378) "failed") (-315 |#1|) (-916))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-315 |#1|))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-315 |#1|) (-916))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-315 (-168 |#1|)))) (-15 -3844 ((-3 (-168 (-378)) "failed") (-315 (-168 |#1|)) (-916)))) |%noBranch|)) |%noBranch|))
+((-3039 (((-916) (-1150)) 64)) (-1291 (((-3 (-378) "failed") (-1150)) 32)) (-2000 (((-378) (-1150)) 30)) (-2744 (((-916) (-1150)) 53)) (-1309 (((-1150) (-916)) 54)) (-3403 (((-1150) (-916)) 52)))
+(((-781) (-10 -7 (-15 -3403 ((-1150) (-916))) (-15 -2744 ((-916) (-1150))) (-15 -1309 ((-1150) (-916))) (-15 -3039 ((-916) (-1150))) (-15 -2000 ((-378) (-1150))) (-15 -1291 ((-3 (-378) "failed") (-1150))))) (T -781))
+((-1291 (*1 *2 *3) (|partial| -12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-781)))) (-2000 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-781)))) (-3039 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-916)) (-5 *1 (-781)))) (-1309 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1150)) (-5 *1 (-781)))) (-2744 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-916)) (-5 *1 (-781)))) (-3403 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1150)) (-5 *1 (-781)))))
+(-10 -7 (-15 -3403 ((-1150) (-916))) (-15 -2744 ((-916) (-1150))) (-15 -1309 ((-1150) (-916))) (-15 -3039 ((-916) (-1150))) (-15 -2000 ((-378) (-1150))) (-15 -1291 ((-3 (-378) "failed") (-1150))))
+((-4041 (((-112) $ $) 7)) (-1908 (((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 15) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)) 13)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 16) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1733 (((-112) $ $) 6)))
(((-782) (-139)) (T -782))
-((-2172 (*1 *2 *3 *4) (-12 (-4 *1 (-782)) (-5 *3 (-1056)) (-5 *4 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030)))))) (-3561 (*1 *2 *3 *2) (-12 (-4 *1 (-782)) (-5 *2 (-1030)) (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))))) (-2172 (*1 *2 *3 *4) (-12 (-4 *1 (-782)) (-5 *3 (-1056)) (-5 *4 (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030)))))) (-3561 (*1 *2 *3 *2) (-12 (-4 *1 (-782)) (-5 *2 (-1030)) (-5 *3 (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))))))
-(-13 (-1092) (-10 -7 (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3561 ((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3561 ((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)))))
+((-1806 (*1 *2 *3 *4) (-12 (-4 *1 (-782)) (-5 *3 (-1056)) (-5 *4 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030)))))) (-1908 (*1 *2 *3 *2) (-12 (-4 *1 (-782)) (-5 *2 (-1030)) (-5 *3 (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))))) (-1806 (*1 *2 *3 *4) (-12 (-4 *1 (-782)) (-5 *3 (-1056)) (-5 *4 (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030)))))) (-1908 (*1 *2 *3 *2) (-12 (-4 *1 (-782)) (-5 *2 (-1030)) (-5 *3 (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))))))
+(-13 (-1092) (-10 -7 (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -1908 ((-1030) (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224))) (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)) (|:| |extra| (-1030))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -1908 ((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) (-1030)))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-1501 (((-1261) (-1256 (-378)) (-562) (-378) (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4335 (-378))) (-378) (-1256 (-378)) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378))) 44) (((-1261) (-1256 (-378)) (-562) (-378) (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4335 (-378))) (-378) (-1256 (-378)) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378))) 43)) (-3129 (((-1261) (-1256 (-378)) (-562) (-378) (-378) (-562) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378))) 50)) (-2879 (((-1261) (-1256 (-378)) (-562) (-378) (-378) (-378) (-378) (-562) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378))) 41)) (-3326 (((-1261) (-1256 (-378)) (-562) (-378) (-378) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378))) 52) (((-1261) (-1256 (-378)) (-562) (-378) (-378) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378))) 51)))
-(((-783) (-10 -7 (-15 -3326 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))) (-15 -3326 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)))) (-15 -2879 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-378) (-378) (-562) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))) (-15 -1501 ((-1261) (-1256 (-378)) (-562) (-378) (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4335 (-378))) (-378) (-1256 (-378)) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))) (-15 -1501 ((-1261) (-1256 (-378)) (-562) (-378) (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4335 (-378))) (-378) (-1256 (-378)) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)))) (-15 -3129 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-562) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))))) (T -783))
-((-3129 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378))) (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261)) (-5 *1 (-783)))) (-1501 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-562)) (-5 *6 (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4335 (-378)))) (-5 *7 (-1 (-1261) (-1256 *5) (-1256 *5) (-378))) (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261)) (-5 *1 (-783)))) (-1501 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-562)) (-5 *6 (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4335 (-378)))) (-5 *7 (-1 (-1261) (-1256 *5) (-1256 *5) (-378))) (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261)) (-5 *1 (-783)))) (-2879 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378))) (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261)) (-5 *1 (-783)))) (-3326 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378))) (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261)) (-5 *1 (-783)))) (-3326 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378))) (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261)) (-5 *1 (-783)))))
-(-10 -7 (-15 -3326 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))) (-15 -3326 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)))) (-15 -2879 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-378) (-378) (-562) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))) (-15 -1501 ((-1261) (-1256 (-378)) (-562) (-378) (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4335 (-378))) (-378) (-1256 (-378)) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))) (-15 -1501 ((-1261) (-1256 (-378)) (-562) (-378) (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4335 (-378))) (-378) (-1256 (-378)) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)))) (-15 -3129 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-562) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))))
-((-3343 (((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562)) 53)) (-2837 (((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562)) 31)) (-3738 (((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562)) 52)) (-3162 (((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562)) 29)) (-4320 (((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562)) 51)) (-2648 (((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562)) 19)) (-2944 (((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562)) 32)) (-3399 (((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562)) 30)) (-3974 (((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562)) 28)))
-(((-784) (-10 -7 (-15 -3974 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562))) (-15 -3399 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562))) (-15 -2944 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562))) (-15 -2648 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -3162 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -2837 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -4320 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -3738 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -3343 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))))) (T -784))
-((-3343 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-3738 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-4320 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-2837 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-3162 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-2648 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-2944 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-3399 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-3974 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))))
-(-10 -7 (-15 -3974 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562))) (-15 -3399 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562))) (-15 -2944 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562))) (-15 -2648 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -3162 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -2837 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -4320 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -3738 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -3343 ((-2 (|:| -2534 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))))
-((-3867 (((-1202 |#1|) |#1| (-224) (-562)) 46)))
-(((-785 |#1|) (-10 -7 (-15 -3867 ((-1202 |#1|) |#1| (-224) (-562)))) (-969)) (T -785))
-((-3867 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-224)) (-5 *5 (-562)) (-5 *2 (-1202 *3)) (-5 *1 (-785 *3)) (-4 *3 (-969)))))
-(-10 -7 (-15 -3867 ((-1202 |#1|) |#1| (-224) (-562))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 24)) (-3214 (((-3 $ "failed") $ $) 26)) (-1800 (($) 23 T CONST)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2286 (($) 22 T CONST)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)) (-1848 (($ $ $) 28) (($ $) 27)) (-1835 (($ $ $) 20)) (* (($ (-916) $) 21) (($ (-766) $) 25) (($ (-562) $) 29)))
+((-2599 (((-1261) (-1256 (-378)) (-562) (-378) (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4336 (-378))) (-378) (-1256 (-378)) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378))) 44) (((-1261) (-1256 (-378)) (-562) (-378) (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4336 (-378))) (-378) (-1256 (-378)) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378))) 43)) (-3141 (((-1261) (-1256 (-378)) (-562) (-378) (-378) (-562) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378))) 50)) (-1538 (((-1261) (-1256 (-378)) (-562) (-378) (-378) (-378) (-378) (-562) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378))) 41)) (-1367 (((-1261) (-1256 (-378)) (-562) (-378) (-378) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378))) 52) (((-1261) (-1256 (-378)) (-562) (-378) (-378) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378))) 51)))
+(((-783) (-10 -7 (-15 -1367 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))) (-15 -1367 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)))) (-15 -1538 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-378) (-378) (-562) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))) (-15 -2599 ((-1261) (-1256 (-378)) (-562) (-378) (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4336 (-378))) (-378) (-1256 (-378)) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))) (-15 -2599 ((-1261) (-1256 (-378)) (-562) (-378) (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4336 (-378))) (-378) (-1256 (-378)) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)))) (-15 -3141 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-562) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))))) (T -783))
+((-3141 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378))) (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261)) (-5 *1 (-783)))) (-2599 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-562)) (-5 *6 (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4336 (-378)))) (-5 *7 (-1 (-1261) (-1256 *5) (-1256 *5) (-378))) (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261)) (-5 *1 (-783)))) (-2599 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-562)) (-5 *6 (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4336 (-378)))) (-5 *7 (-1 (-1261) (-1256 *5) (-1256 *5) (-378))) (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261)) (-5 *1 (-783)))) (-1538 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378))) (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261)) (-5 *1 (-783)))) (-1367 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378))) (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261)) (-5 *1 (-783)))) (-1367 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378))) (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261)) (-5 *1 (-783)))))
+(-10 -7 (-15 -1367 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))) (-15 -1367 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)))) (-15 -1538 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-378) (-378) (-562) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))) (-15 -2599 ((-1261) (-1256 (-378)) (-562) (-378) (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4336 (-378))) (-378) (-1256 (-378)) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))) (-15 -2599 ((-1261) (-1256 (-378)) (-562) (-378) (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4336 (-378))) (-378) (-1256 (-378)) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)) (-1256 (-378)))) (-15 -3141 ((-1261) (-1256 (-378)) (-562) (-378) (-378) (-562) (-1 (-1261) (-1256 (-378)) (-1256 (-378)) (-378)))))
+((-1536 (((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562)) 53)) (-2373 (((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562)) 31)) (-2992 (((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562)) 52)) (-2330 (((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562)) 29)) (-1790 (((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562)) 51)) (-4142 (((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562)) 19)) (-4010 (((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562)) 32)) (-3914 (((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562)) 30)) (-1669 (((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562)) 28)))
+(((-784) (-10 -7 (-15 -1669 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562))) (-15 -3914 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562))) (-15 -4010 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562))) (-15 -4142 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -2330 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -2373 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -1790 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -2992 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -1536 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))))) (T -784))
+((-1536 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-2992 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-1790 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-2373 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-2330 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-4142 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-4010 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-3914 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))) (-1669 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378)) (-5 *2 (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562)) (|:| |success| (-112)))) (-5 *1 (-784)) (-5 *5 (-562)))))
+(-10 -7 (-15 -1669 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562))) (-15 -3914 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562))) (-15 -4010 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562) (-562))) (-15 -4142 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -2330 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -2373 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -1790 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -2992 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))) (-15 -1536 ((-2 (|:| -2533 (-378)) (|:| -3964 (-378)) (|:| |totalpts| (-562)) (|:| |success| (-112))) (-1 (-378) (-378)) (-378) (-378) (-378) (-378) (-562) (-562))))
+((-1843 (((-1202 |#1|) |#1| (-224) (-562)) 46)))
+(((-785 |#1|) (-10 -7 (-15 -1843 ((-1202 |#1|) |#1| (-224) (-562)))) (-969)) (T -785))
+((-1843 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-224)) (-5 *5 (-562)) (-5 *2 (-1202 *3)) (-5 *1 (-785 *3)) (-4 *3 (-969)))))
+(-10 -7 (-15 -1843 ((-1202 |#1|) |#1| (-224) (-562))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 24)) (-2781 (((-3 $ "failed") $ $) 26)) (-3329 (($) 23 T CONST)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2285 (($) 22 T CONST)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)) (-1847 (($ $ $) 28) (($ $) 27)) (-1836 (($ $ $) 20)) (* (($ (-916) $) 21) (($ (-766) $) 25) (($ (-562) $) 29)))
(((-786) (-139)) (T -786))
NIL
(-13 (-790) (-21))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-609 (-857)) . T) ((-787) . T) ((-789) . T) ((-790) . T) ((-845) . T) ((-1092) . T))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 24)) (-1800 (($) 23 T CONST)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2286 (($) 22 T CONST)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)) (-1835 (($ $ $) 20)) (* (($ (-916) $) 21) (($ (-766) $) 25)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 24)) (-3329 (($) 23 T CONST)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2285 (($) 22 T CONST)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)) (-1836 (($ $ $) 20)) (* (($ (-916) $) 21) (($ (-766) $) 25)))
(((-787) (-139)) (T -787))
NIL
(-13 (-789) (-23))
(((-23) . T) ((-25) . T) ((-102) . T) ((-609 (-857)) . T) ((-789) . T) ((-845) . T) ((-1092) . T))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 24)) (-3659 (($ $ $) 27)) (-3214 (((-3 $ "failed") $ $) 26)) (-1800 (($) 23 T CONST)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2286 (($) 22 T CONST)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)) (-1835 (($ $ $) 20)) (* (($ (-916) $) 21) (($ (-766) $) 25)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 24)) (-1593 (($ $ $) 27)) (-2781 (((-3 $ "failed") $ $) 26)) (-3329 (($) 23 T CONST)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2285 (($) 22 T CONST)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)) (-1836 (($ $ $) 20)) (* (($ (-916) $) 21) (($ (-766) $) 25)))
(((-788) (-139)) (T -788))
-((-3659 (*1 *1 *1 *1) (-4 *1 (-788))))
-(-13 (-790) (-10 -8 (-15 -3659 ($ $ $))))
+((-1593 (*1 *1 *1 *1) (-4 *1 (-788))))
+(-13 (-790) (-10 -8 (-15 -1593 ($ $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-609 (-857)) . T) ((-787) . T) ((-789) . T) ((-790) . T) ((-845) . T) ((-1092) . T))
-((-4041 (((-112) $ $) 7)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)) (-1835 (($ $ $) 20)) (* (($ (-916) $) 21)))
+((-4041 (((-112) $ $) 7)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)) (-1836 (($ $ $) 20)) (* (($ (-916) $) 21)))
(((-789) (-139)) (T -789))
NIL
(-13 (-845) (-25))
(((-25) . T) ((-102) . T) ((-609 (-857)) . T) ((-845) . T) ((-1092) . T))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 24)) (-3214 (((-3 $ "failed") $ $) 26)) (-1800 (($) 23 T CONST)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2286 (($) 22 T CONST)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)) (-1835 (($ $ $) 20)) (* (($ (-916) $) 21) (($ (-766) $) 25)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 24)) (-2781 (((-3 $ "failed") $ $) 26)) (-3329 (($) 23 T CONST)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2285 (($) 22 T CONST)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)) (-1836 (($ $ $) 20)) (* (($ (-916) $) 21) (($ (-766) $) 25)))
(((-790) (-139)) (T -790))
NIL
(-13 (-787) (-130))
(((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-609 (-857)) . T) ((-787) . T) ((-789) . T) ((-845) . T) ((-1092) . T))
-((-1952 (((-112) $) 41)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#2| "failed") $) 44)) (-3961 (((-562) $) NIL) (((-406 (-562)) $) NIL) ((|#2| $) 42)) (-1726 (((-3 (-406 (-562)) "failed") $) 78)) (-3035 (((-112) $) 72)) (-1291 (((-406 (-562)) $) 76)) (-2247 ((|#2| $) 26)) (-4152 (($ (-1 |#2| |#2|) $) 23)) (-1525 (($ $) 61)) (-4208 (((-535) $) 67)) (-3665 (($ $) 21)) (-4054 (((-857) $) 56) (($ (-562)) 39) (($ |#2|) 37) (($ (-406 (-562))) NIL)) (-2579 (((-766)) 10)) (-3526 ((|#2| $) 71)) (-1731 (((-112) $ $) 29)) (-1759 (((-112) $ $) 69)) (-1848 (($ $) 31) (($ $ $) NIL)) (-1835 (($ $ $) 30)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 35) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 32)))
-(((-791 |#1| |#2|) (-10 -8 (-15 -1759 ((-112) |#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -1525 (|#1| |#1|)) (-15 -1726 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -1291 ((-406 (-562)) |#1|)) (-15 -3035 ((-112) |#1|)) (-15 -3526 (|#2| |#1|)) (-15 -2247 (|#2| |#1|)) (-15 -3665 (|#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4054 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2579 ((-766))) (-15 -4054 (|#1| (-562))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 -1952 ((-112) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -1835 (|#1| |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -1731 ((-112) |#1| |#1|))) (-792 |#2|) (-171)) (T -791))
-((-2579 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-766)) (-5 *1 (-791 *3 *4)) (-4 *3 (-792 *4)))))
-(-10 -8 (-15 -1759 ((-112) |#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -1525 (|#1| |#1|)) (-15 -1726 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -1291 ((-406 (-562)) |#1|)) (-15 -3035 ((-112) |#1|)) (-15 -3526 (|#2| |#1|)) (-15 -2247 (|#2| |#1|)) (-15 -3665 (|#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4054 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2579 ((-766))) (-15 -4054 (|#1| (-562))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 -1952 ((-112) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -1835 (|#1| |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -1731 ((-112) |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1382 (((-766)) 52 (|has| |#1| (-367)))) (-1800 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 94 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 91 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 88)) (-3961 (((-562) $) 93 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 90 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 89)) (-3668 (((-3 $ "failed") $) 33)) (-1657 ((|#1| $) 78)) (-1726 (((-3 (-406 (-562)) "failed") $) 65 (|has| |#1| (-544)))) (-3035 (((-112) $) 67 (|has| |#1| (-544)))) (-1291 (((-406 (-562)) $) 66 (|has| |#1| (-544)))) (-1448 (($) 55 (|has| |#1| (-367)))) (-1957 (((-112) $) 31)) (-3116 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 69)) (-2247 ((|#1| $) 70)) (-1551 (($ $ $) 61 (|has| |#1| (-845)))) (-2993 (($ $ $) 60 (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) 80)) (-1999 (((-916) $) 54 (|has| |#1| (-367)))) (-2913 (((-1150) $) 9)) (-1525 (($ $) 64 (|has| |#1| (-362)))) (-2466 (($ (-916)) 53 (|has| |#1| (-367)))) (-1926 ((|#1| $) 75)) (-1738 ((|#1| $) 76)) (-1365 ((|#1| $) 77)) (-1536 ((|#1| $) 71)) (-3085 ((|#1| $) 72)) (-3332 ((|#1| $) 73)) (-1826 ((|#1| $) 74)) (-1709 (((-1112) $) 10)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) 86 (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) 85 (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) 84 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) 83 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) 82 (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) 81 (|has| |#1| (-513 (-1168) |#1|)))) (-2343 (($ $ |#1|) 87 (|has| |#1| (-285 |#1| |#1|)))) (-4208 (((-535) $) 62 (|has| |#1| (-610 (-535))))) (-3665 (($ $) 79)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38) (($ (-406 (-562))) 92 (|has| |#1| (-1033 (-406 (-562)))))) (-2805 (((-3 $ "failed") $) 63 (|has| |#1| (-144)))) (-2579 (((-766)) 28)) (-3526 ((|#1| $) 68 (|has| |#1| (-1053)))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 58 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 57 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 59 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 56 (|has| |#1| (-845)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-4325 (((-112) $) 41)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#2| "failed") $) 44)) (-3960 (((-562) $) NIL) (((-406 (-562)) $) NIL) ((|#2| $) 42)) (-3913 (((-3 (-406 (-562)) "failed") $) 78)) (-3498 (((-112) $) 72)) (-3854 (((-406 (-562)) $) 76)) (-4363 ((|#2| $) 26)) (-4152 (($ (-1 |#2| |#2|) $) 23)) (-1525 (($ $) 61)) (-4208 (((-535) $) 67)) (-1660 (($ $) 21)) (-4053 (((-857) $) 56) (($ (-562)) 39) (($ |#2|) 37) (($ (-406 (-562))) NIL)) (-1568 (((-766)) 10)) (-2757 ((|#2| $) 71)) (-1733 (((-112) $ $) 29)) (-1761 (((-112) $ $) 69)) (-1847 (($ $) 31) (($ $ $) NIL)) (-1836 (($ $ $) 30)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 35) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 32)))
+(((-791 |#1| |#2|) (-10 -8 (-15 -1761 ((-112) |#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -1525 (|#1| |#1|)) (-15 -3913 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3854 ((-406 (-562)) |#1|)) (-15 -3498 ((-112) |#1|)) (-15 -2757 (|#2| |#1|)) (-15 -4363 (|#2| |#1|)) (-15 -1660 (|#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4053 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1568 ((-766))) (-15 -4053 (|#1| (-562))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 -4325 ((-112) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -1836 (|#1| |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -1733 ((-112) |#1| |#1|))) (-792 |#2|) (-171)) (T -791))
+((-1568 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-766)) (-5 *1 (-791 *3 *4)) (-4 *3 (-792 *4)))))
+(-10 -8 (-15 -1761 ((-112) |#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -1525 (|#1| |#1|)) (-15 -3913 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3854 ((-406 (-562)) |#1|)) (-15 -3498 ((-112) |#1|)) (-15 -2757 (|#2| |#1|)) (-15 -4363 (|#2| |#1|)) (-15 -1660 (|#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4053 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1568 ((-766))) (-15 -4053 (|#1| (-562))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 -4325 ((-112) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -1836 (|#1| |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -1733 ((-112) |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-1382 (((-766)) 52 (|has| |#1| (-367)))) (-3329 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 94 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 91 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 88)) (-3960 (((-562) $) 93 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 90 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 89)) (-1694 (((-3 $ "failed") $) 33)) (-1657 ((|#1| $) 78)) (-3913 (((-3 (-406 (-562)) "failed") $) 65 (|has| |#1| (-544)))) (-3498 (((-112) $) 67 (|has| |#1| (-544)))) (-3854 (((-406 (-562)) $) 66 (|has| |#1| (-544)))) (-1447 (($) 55 (|has| |#1| (-367)))) (-4367 (((-112) $) 31)) (-3014 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 69)) (-4363 ((|#1| $) 70)) (-1551 (($ $ $) 61 (|has| |#1| (-845)))) (-2993 (($ $ $) 60 (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) 80)) (-3549 (((-916) $) 54 (|has| |#1| (-367)))) (-3696 (((-1150) $) 9)) (-1525 (($ $) 64 (|has| |#1| (-362)))) (-2464 (($ (-916)) 53 (|has| |#1| (-367)))) (-2248 ((|#1| $) 75)) (-4030 ((|#1| $) 76)) (-1592 ((|#1| $) 77)) (-1664 ((|#1| $) 71)) (-3966 ((|#1| $) 72)) (-1402 ((|#1| $) 73)) (-2441 ((|#1| $) 74)) (-1709 (((-1112) $) 10)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) 86 (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) 85 (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) 84 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) 83 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) 82 (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) 81 (|has| |#1| (-513 (-1168) |#1|)))) (-2343 (($ $ |#1|) 87 (|has| |#1| (-285 |#1| |#1|)))) (-4208 (((-535) $) 62 (|has| |#1| (-610 (-535))))) (-1660 (($ $) 79)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38) (($ (-406 (-562))) 92 (|has| |#1| (-1033 (-406 (-562)))))) (-2059 (((-3 $ "failed") $) 63 (|has| |#1| (-144)))) (-1568 (((-766)) 28)) (-2757 ((|#1| $) 68 (|has| |#1| (-1053)))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 58 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 57 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 59 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 56 (|has| |#1| (-845)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-792 |#1|) (-139) (-171)) (T -792))
-((-3665 (*1 *1 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-1657 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-1365 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-1738 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-1926 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-1826 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-3332 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-3085 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-1536 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-2247 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-3116 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-3526 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)) (-4 *2 (-1053)))) (-3035 (*1 *2 *1) (-12 (-4 *1 (-792 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-112)))) (-1291 (*1 *2 *1) (-12 (-4 *1 (-792 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-406 (-562))))) (-1726 (*1 *2 *1) (|partial| -12 (-4 *1 (-792 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-406 (-562))))) (-1525 (*1 *1 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)) (-4 *2 (-362)))))
-(-13 (-38 |t#1|) (-410 |t#1|) (-337 |t#1|) (-10 -8 (-15 -3665 ($ $)) (-15 -1657 (|t#1| $)) (-15 -1365 (|t#1| $)) (-15 -1738 (|t#1| $)) (-15 -1926 (|t#1| $)) (-15 -1826 (|t#1| $)) (-15 -3332 (|t#1| $)) (-15 -3085 (|t#1| $)) (-15 -1536 (|t#1| $)) (-15 -2247 (|t#1| $)) (-15 -3116 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-367)) (-6 (-367)) |%noBranch|) (IF (|has| |t#1| (-845)) (-6 (-845)) |%noBranch|) (IF (|has| |t#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |t#1| (-1053)) (-15 -3526 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-544)) (PROGN (-15 -3035 ((-112) $)) (-15 -1291 ((-406 (-562)) $)) (-15 -1726 ((-3 (-406 (-562)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-362)) (-15 -1525 ($ $)) |%noBranch|)))
+((-1660 (*1 *1 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-1657 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-1592 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-4030 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-2248 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-2441 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-1402 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-3966 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-1664 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-4363 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-3014 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))) (-2757 (*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)) (-4 *2 (-1053)))) (-3498 (*1 *2 *1) (-12 (-4 *1 (-792 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-112)))) (-3854 (*1 *2 *1) (-12 (-4 *1 (-792 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-406 (-562))))) (-3913 (*1 *2 *1) (|partial| -12 (-4 *1 (-792 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-406 (-562))))) (-1525 (*1 *1 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)) (-4 *2 (-362)))))
+(-13 (-38 |t#1|) (-410 |t#1|) (-337 |t#1|) (-10 -8 (-15 -1660 ($ $)) (-15 -1657 (|t#1| $)) (-15 -1592 (|t#1| $)) (-15 -4030 (|t#1| $)) (-15 -2248 (|t#1| $)) (-15 -2441 (|t#1| $)) (-15 -1402 (|t#1| $)) (-15 -3966 (|t#1| $)) (-15 -1664 (|t#1| $)) (-15 -4363 (|t#1| $)) (-15 -3014 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-367)) (-6 (-367)) |%noBranch|) (IF (|has| |t#1| (-845)) (-6 (-845)) |%noBranch|) (IF (|has| |t#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |t#1| (-1053)) (-15 -2757 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-544)) (PROGN (-15 -3498 ((-112) $)) (-15 -3854 ((-406 (-562)) $)) (-15 -3913 ((-3 (-406 (-562)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-362)) (-15 -1525 ($ $)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #0=(-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-609 (-857)) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-285 |#1| $) |has| |#1| (-285 |#1| |#1|)) ((-308 |#1|) |has| |#1| (-308 |#1|)) ((-367) |has| |#1| (-367)) ((-337 |#1|) . T) ((-410 |#1|) . T) ((-513 (-1168) |#1|) |has| |#1| (-513 (-1168) |#1|)) ((-513 |#1| |#1|) |has| |#1| (-308 |#1|)) ((-642 |#1|) . T) ((-642 $) . T) ((-712 |#1|) . T) ((-721) . T) ((-845) |has| |#1| (-845)) ((-1033 #0#) |has| |#1| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 |#1|) . T) ((-1050 |#1|) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
((-4152 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
(((-793 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4152 (|#3| (-1 |#4| |#2|) |#1|))) (-792 |#2|) (-171) (-792 |#4|) (-171)) (T -793))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-171)) (-4 *6 (-171)) (-4 *2 (-792 *6)) (-5 *1 (-793 *4 *5 *2 *6)) (-4 *4 (-792 *5)))))
(-10 -7 (-15 -4152 (|#3| (-1 |#4| |#2|) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-994 |#1|) "failed") $) 35) (((-3 (-562) "failed") $) NIL (-4037 (|has| (-994 |#1|) (-1033 (-562))) (|has| |#1| (-1033 (-562))))) (((-3 (-406 (-562)) "failed") $) NIL (-4037 (|has| (-994 |#1|) (-1033 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-3961 ((|#1| $) NIL) (((-994 |#1|) $) 33) (((-562) $) NIL (-4037 (|has| (-994 |#1|) (-1033 (-562))) (|has| |#1| (-1033 (-562))))) (((-406 (-562)) $) NIL (-4037 (|has| (-994 |#1|) (-1033 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-3668 (((-3 $ "failed") $) NIL)) (-1657 ((|#1| $) 16)) (-1726 (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-544)))) (-3035 (((-112) $) NIL (|has| |#1| (-544)))) (-1291 (((-406 (-562)) $) NIL (|has| |#1| (-544)))) (-1448 (($) NIL (|has| |#1| (-367)))) (-1957 (((-112) $) NIL)) (-3116 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-994 |#1|) (-994 |#1|)) 29)) (-2247 ((|#1| $) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1999 (((-916) $) NIL (|has| |#1| (-367)))) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-2466 (($ (-916)) NIL (|has| |#1| (-367)))) (-1926 ((|#1| $) 22)) (-1738 ((|#1| $) 20)) (-1365 ((|#1| $) 18)) (-1536 ((|#1| $) 26)) (-3085 ((|#1| $) 25)) (-3332 ((|#1| $) 24)) (-1826 ((|#1| $) 23)) (-1709 (((-1112) $) NIL)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) NIL (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-513 (-1168) |#1|)))) (-2343 (($ $ |#1|) NIL (|has| |#1| (-285 |#1| |#1|)))) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-3665 (($ $) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-994 |#1|)) 30) (($ (-406 (-562))) NIL (-4037 (|has| (-994 |#1|) (-1033 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-3526 ((|#1| $) NIL (|has| |#1| (-1053)))) (-2286 (($) 8 T CONST)) (-2294 (($) 12 T CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-794 |#1|) (-13 (-792 |#1|) (-410 (-994 |#1|)) (-10 -8 (-15 -3116 ($ (-994 |#1|) (-994 |#1|))))) (-171)) (T -794))
-((-3116 (*1 *1 *2 *2) (-12 (-5 *2 (-994 *3)) (-4 *3 (-171)) (-5 *1 (-794 *3)))))
-(-13 (-792 |#1|) (-410 (-994 |#1|)) (-10 -8 (-15 -3116 ($ (-994 |#1|) (-994 |#1|)))))
-((-4041 (((-112) $ $) 7)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-3747 (((-1030) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 13)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-994 |#1|) "failed") $) 35) (((-3 (-562) "failed") $) NIL (-4037 (|has| (-994 |#1|) (-1033 (-562))) (|has| |#1| (-1033 (-562))))) (((-3 (-406 (-562)) "failed") $) NIL (-4037 (|has| (-994 |#1|) (-1033 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-3960 ((|#1| $) NIL) (((-994 |#1|) $) 33) (((-562) $) NIL (-4037 (|has| (-994 |#1|) (-1033 (-562))) (|has| |#1| (-1033 (-562))))) (((-406 (-562)) $) NIL (-4037 (|has| (-994 |#1|) (-1033 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-1694 (((-3 $ "failed") $) NIL)) (-1657 ((|#1| $) 16)) (-3913 (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-544)))) (-3498 (((-112) $) NIL (|has| |#1| (-544)))) (-3854 (((-406 (-562)) $) NIL (|has| |#1| (-544)))) (-1447 (($) NIL (|has| |#1| (-367)))) (-4367 (((-112) $) NIL)) (-3014 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-994 |#1|) (-994 |#1|)) 29)) (-4363 ((|#1| $) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3549 (((-916) $) NIL (|has| |#1| (-367)))) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-2464 (($ (-916)) NIL (|has| |#1| (-367)))) (-2248 ((|#1| $) 22)) (-4030 ((|#1| $) 20)) (-1592 ((|#1| $) 18)) (-1664 ((|#1| $) 26)) (-3966 ((|#1| $) 25)) (-1402 ((|#1| $) 24)) (-2441 ((|#1| $) 23)) (-1709 (((-1112) $) NIL)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) NIL (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-513 (-1168) |#1|)))) (-2343 (($ $ |#1|) NIL (|has| |#1| (-285 |#1| |#1|)))) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-1660 (($ $) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-994 |#1|)) 30) (($ (-406 (-562))) NIL (-4037 (|has| (-994 |#1|) (-1033 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-2757 ((|#1| $) NIL (|has| |#1| (-1053)))) (-2285 (($) 8 T CONST)) (-2294 (($) 12 T CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-794 |#1|) (-13 (-792 |#1|) (-410 (-994 |#1|)) (-10 -8 (-15 -3014 ($ (-994 |#1|) (-994 |#1|))))) (-171)) (T -794))
+((-3014 (*1 *1 *2 *2) (-12 (-5 *2 (-994 *3)) (-4 *3 (-171)) (-5 *1 (-794 *3)))))
+(-13 (-792 |#1|) (-410 (-994 |#1|)) (-10 -8 (-15 -3014 ($ (-994 |#1|) (-994 |#1|)))))
+((-4041 (((-112) $ $) 7)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-3069 (((-1030) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 13)) (-1733 (((-112) $ $) 6)))
(((-795) (-139)) (T -795))
-((-2172 (*1 *2 *3 *4) (-12 (-4 *1 (-795)) (-5 *3 (-1056)) (-5 *4 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)))))) (-3747 (*1 *2 *3) (-12 (-4 *1 (-795)) (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-1030)))))
-(-13 (-1092) (-10 -7 (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3747 ((-1030) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))))))
+((-1806 (*1 *2 *3 *4) (-12 (-4 *1 (-795)) (-5 *3 (-1056)) (-5 *4 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)))))) (-3069 (*1 *2 *3) (-12 (-4 *1 (-795)) (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-1030)))))
+(-13 (-1092) (-10 -7 (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3069 ((-1030) (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-3500 (((-2 (|:| |particular| |#2|) (|:| -3928 (-639 |#2|))) |#3| |#2| (-1168)) 19)))
-(((-796 |#1| |#2| |#3|) (-10 -7 (-15 -3500 ((-2 (|:| |particular| |#2|) (|:| -3928 (-639 |#2|))) |#3| |#2| (-1168)))) (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)) (-13 (-29 |#1|) (-1192) (-954)) (-650 |#2|)) (T -796))
-((-3500 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1168)) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-4 *4 (-13 (-29 *6) (-1192) (-954))) (-5 *2 (-2 (|:| |particular| *4) (|:| -3928 (-639 *4)))) (-5 *1 (-796 *6 *4 *3)) (-4 *3 (-650 *4)))))
-(-10 -7 (-15 -3500 ((-2 (|:| |particular| |#2|) (|:| -3928 (-639 |#2|))) |#3| |#2| (-1168))))
-((-4351 (((-3 |#2| "failed") |#2| (-114) (-293 |#2|) (-639 |#2|)) 28) (((-3 |#2| "failed") (-293 |#2|) (-114) (-293 |#2|) (-639 |#2|)) 29) (((-3 (-2 (|:| |particular| |#2|) (|:| -3928 (-639 |#2|))) |#2| "failed") |#2| (-114) (-1168)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -3928 (-639 |#2|))) |#2| "failed") (-293 |#2|) (-114) (-1168)) 18) (((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -3928 (-639 (-1256 |#2|)))) "failed") (-639 |#2|) (-639 (-114)) (-1168)) 24) (((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -3928 (-639 (-1256 |#2|)))) "failed") (-639 (-293 |#2|)) (-639 (-114)) (-1168)) 26) (((-3 (-639 (-1256 |#2|)) "failed") (-683 |#2|) (-1168)) 37) (((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -3928 (-639 (-1256 |#2|)))) "failed") (-683 |#2|) (-1256 |#2|) (-1168)) 35)))
-(((-797 |#1| |#2|) (-10 -7 (-15 -4351 ((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -3928 (-639 (-1256 |#2|)))) "failed") (-683 |#2|) (-1256 |#2|) (-1168))) (-15 -4351 ((-3 (-639 (-1256 |#2|)) "failed") (-683 |#2|) (-1168))) (-15 -4351 ((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -3928 (-639 (-1256 |#2|)))) "failed") (-639 (-293 |#2|)) (-639 (-114)) (-1168))) (-15 -4351 ((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -3928 (-639 (-1256 |#2|)))) "failed") (-639 |#2|) (-639 (-114)) (-1168))) (-15 -4351 ((-3 (-2 (|:| |particular| |#2|) (|:| -3928 (-639 |#2|))) |#2| "failed") (-293 |#2|) (-114) (-1168))) (-15 -4351 ((-3 (-2 (|:| |particular| |#2|) (|:| -3928 (-639 |#2|))) |#2| "failed") |#2| (-114) (-1168))) (-15 -4351 ((-3 |#2| "failed") (-293 |#2|) (-114) (-293 |#2|) (-639 |#2|))) (-15 -4351 ((-3 |#2| "failed") |#2| (-114) (-293 |#2|) (-639 |#2|)))) (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)) (-13 (-29 |#1|) (-1192) (-954))) (T -797))
-((-4351 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-293 *2)) (-5 *5 (-639 *2)) (-4 *2 (-13 (-29 *6) (-1192) (-954))) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *1 (-797 *6 *2)))) (-4351 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-293 *2)) (-5 *4 (-114)) (-5 *5 (-639 *2)) (-4 *2 (-13 (-29 *6) (-1192) (-954))) (-5 *1 (-797 *6 *2)) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))))) (-4351 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-114)) (-5 *5 (-1168)) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -3928 (-639 *3))) *3 "failed")) (-5 *1 (-797 *6 *3)) (-4 *3 (-13 (-29 *6) (-1192) (-954))))) (-4351 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-293 *7)) (-5 *4 (-114)) (-5 *5 (-1168)) (-4 *7 (-13 (-29 *6) (-1192) (-954))) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -3928 (-639 *7))) *7 "failed")) (-5 *1 (-797 *6 *7)))) (-4351 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-639 *7)) (-5 *4 (-639 (-114))) (-5 *5 (-1168)) (-4 *7 (-13 (-29 *6) (-1192) (-954))) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-2 (|:| |particular| (-1256 *7)) (|:| -3928 (-639 (-1256 *7))))) (-5 *1 (-797 *6 *7)))) (-4351 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-639 (-293 *7))) (-5 *4 (-639 (-114))) (-5 *5 (-1168)) (-4 *7 (-13 (-29 *6) (-1192) (-954))) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-2 (|:| |particular| (-1256 *7)) (|:| -3928 (-639 (-1256 *7))))) (-5 *1 (-797 *6 *7)))) (-4351 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-683 *6)) (-5 *4 (-1168)) (-4 *6 (-13 (-29 *5) (-1192) (-954))) (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-639 (-1256 *6))) (-5 *1 (-797 *5 *6)))) (-4351 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-683 *7)) (-5 *5 (-1168)) (-4 *7 (-13 (-29 *6) (-1192) (-954))) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-2 (|:| |particular| (-1256 *7)) (|:| -3928 (-639 (-1256 *7))))) (-5 *1 (-797 *6 *7)) (-5 *4 (-1256 *7)))))
-(-10 -7 (-15 -4351 ((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -3928 (-639 (-1256 |#2|)))) "failed") (-683 |#2|) (-1256 |#2|) (-1168))) (-15 -4351 ((-3 (-639 (-1256 |#2|)) "failed") (-683 |#2|) (-1168))) (-15 -4351 ((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -3928 (-639 (-1256 |#2|)))) "failed") (-639 (-293 |#2|)) (-639 (-114)) (-1168))) (-15 -4351 ((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -3928 (-639 (-1256 |#2|)))) "failed") (-639 |#2|) (-639 (-114)) (-1168))) (-15 -4351 ((-3 (-2 (|:| |particular| |#2|) (|:| -3928 (-639 |#2|))) |#2| "failed") (-293 |#2|) (-114) (-1168))) (-15 -4351 ((-3 (-2 (|:| |particular| |#2|) (|:| -3928 (-639 |#2|))) |#2| "failed") |#2| (-114) (-1168))) (-15 -4351 ((-3 |#2| "failed") (-293 |#2|) (-114) (-293 |#2|) (-639 |#2|))) (-15 -4351 ((-3 |#2| "failed") |#2| (-114) (-293 |#2|) (-639 |#2|))))
-((-2202 (($) 9)) (-2514 (((-3 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))) "failed") (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 31)) (-1520 (((-639 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) $) 28)) (-4300 (($ (-2 (|:| -2320 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))))) 25)) (-3488 (($ (-639 (-2 (|:| -2320 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))))))) 23)) (-3765 (((-1261)) 12)))
-(((-798) (-10 -8 (-15 -2202 ($)) (-15 -3765 ((-1261))) (-15 -1520 ((-639 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) $)) (-15 -3488 ($ (-639 (-2 (|:| -2320 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))))))) (-15 -4300 ($ (-2 (|:| -2320 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))))))) (-15 -2514 ((-3 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))) "failed") (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))) (T -798))
-((-2514 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))) (-5 *1 (-798)))) (-4300 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2320 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))))) (-5 *1 (-798)))) (-3488 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -2320 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))))))) (-5 *1 (-798)))) (-1520 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-5 *1 (-798)))) (-3765 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-798)))) (-2202 (*1 *1) (-5 *1 (-798))))
-(-10 -8 (-15 -2202 ($)) (-15 -3765 ((-1261))) (-15 -1520 ((-639 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) $)) (-15 -3488 ($ (-639 (-2 (|:| -2320 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))))))) (-15 -4300 ($ (-2 (|:| -2320 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2694 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))))))) (-15 -2514 ((-3 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))) "failed") (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))
-((-1645 ((|#2| |#2| (-1168)) 16)) (-2820 ((|#2| |#2| (-1168)) 51)) (-4330 (((-1 |#2| |#2|) (-1168)) 11)))
-(((-799 |#1| |#2|) (-10 -7 (-15 -1645 (|#2| |#2| (-1168))) (-15 -2820 (|#2| |#2| (-1168))) (-15 -4330 ((-1 |#2| |#2|) (-1168)))) (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)) (-13 (-29 |#1|) (-1192) (-954))) (T -799))
-((-4330 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-1 *5 *5)) (-5 *1 (-799 *4 *5)) (-4 *5 (-13 (-29 *4) (-1192) (-954))))) (-2820 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *1 (-799 *4 *2)) (-4 *2 (-13 (-29 *4) (-1192) (-954))))) (-1645 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *1 (-799 *4 *2)) (-4 *2 (-13 (-29 *4) (-1192) (-954))))))
-(-10 -7 (-15 -1645 (|#2| |#2| (-1168))) (-15 -2820 (|#2| |#2| (-1168))) (-15 -4330 ((-1 |#2| |#2|) (-1168))))
-((-4351 (((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-639 (-378)) (-378) (-378)) 116) (((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-639 (-378)) (-378)) 117) (((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-639 (-378)) (-378)) 119) (((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-378)) 120) (((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-378)) 121) (((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378))) 122) (((-1030) (-803) (-1056)) 108) (((-1030) (-803)) 109)) (-2172 (((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-803) (-1056)) 75) (((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-803)) 77)))
-(((-800) (-10 -7 (-15 -4351 ((-1030) (-803))) (-15 -4351 ((-1030) (-803) (-1056))) (-15 -4351 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)))) (-15 -4351 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-378))) (-15 -4351 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-378))) (-15 -4351 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-639 (-378)) (-378))) (-15 -4351 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-639 (-378)) (-378))) (-15 -4351 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-639 (-378)) (-378) (-378))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-803))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-803) (-1056))))) (T -800))
-((-2172 (*1 *2 *3 *4) (-12 (-5 *3 (-803)) (-5 *4 (-1056)) (-5 *2 (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *1 (-800)))) (-2172 (*1 *2 *3) (-12 (-5 *3 (-803)) (-5 *2 (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *1 (-800)))) (-4351 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1256 (-315 *4))) (-5 *5 (-639 (-378))) (-5 *6 (-315 (-378))) (-5 *4 (-378)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-4351 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1256 (-315 *4))) (-5 *5 (-639 (-378))) (-5 *6 (-315 (-378))) (-5 *4 (-378)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-4351 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1256 (-315 (-378)))) (-5 *4 (-378)) (-5 *5 (-639 *4)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-4351 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1256 (-315 *4))) (-5 *5 (-639 (-378))) (-5 *6 (-315 (-378))) (-5 *4 (-378)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-4351 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1256 (-315 (-378)))) (-5 *4 (-378)) (-5 *5 (-639 *4)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-4351 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1256 (-315 (-378)))) (-5 *4 (-378)) (-5 *5 (-639 *4)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-803)) (-5 *4 (-1056)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-4351 (*1 *2 *3) (-12 (-5 *3 (-803)) (-5 *2 (-1030)) (-5 *1 (-800)))))
-(-10 -7 (-15 -4351 ((-1030) (-803))) (-15 -4351 ((-1030) (-803) (-1056))) (-15 -4351 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)))) (-15 -4351 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-378))) (-15 -4351 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-378))) (-15 -4351 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-639 (-378)) (-378))) (-15 -4351 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-639 (-378)) (-378))) (-15 -4351 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-639 (-378)) (-378) (-378))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-803))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-803) (-1056))))
-((-2898 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -3928 (-639 |#4|))) (-647 |#4|) |#4|) 35)))
-(((-801 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2898 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -3928 (-639 |#4|))) (-647 |#4|) |#4|))) (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|)) (T -801))
-((-2898 (*1 *2 *3 *4) (-12 (-5 *3 (-647 *4)) (-4 *4 (-341 *5 *6 *7)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4)))) (-5 *1 (-801 *5 *6 *7 *4)))))
-(-10 -7 (-15 -2898 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -3928 (-639 |#4|))) (-647 |#4|) |#4|)))
-((-4096 (((-2 (|:| -3342 |#3|) (|:| |rh| (-639 (-406 |#2|)))) |#4| (-639 (-406 |#2|))) 52)) (-1578 (((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#4| |#2|) 60) (((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#4|) 59) (((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#3| |#2|) 20) (((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#3|) 21)) (-3413 ((|#2| |#4| |#1|) 61) ((|#2| |#3| |#1|) 27)) (-2776 ((|#2| |#3| (-639 (-406 |#2|))) 94) (((-3 |#2| "failed") |#3| (-406 |#2|)) 91)))
-(((-802 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2776 ((-3 |#2| "failed") |#3| (-406 |#2|))) (-15 -2776 (|#2| |#3| (-639 (-406 |#2|)))) (-15 -1578 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#3|)) (-15 -1578 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#3| |#2|)) (-15 -3413 (|#2| |#3| |#1|)) (-15 -1578 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#4|)) (-15 -1578 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#4| |#2|)) (-15 -3413 (|#2| |#4| |#1|)) (-15 -4096 ((-2 (|:| -3342 |#3|) (|:| |rh| (-639 (-406 |#2|)))) |#4| (-639 (-406 |#2|))))) (-13 (-362) (-146) (-1033 (-406 (-562)))) (-1232 |#1|) (-650 |#2|) (-650 (-406 |#2|))) (T -802))
-((-4096 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-2 (|:| -3342 *7) (|:| |rh| (-639 (-406 *6))))) (-5 *1 (-802 *5 *6 *7 *3)) (-5 *4 (-639 (-406 *6))) (-4 *7 (-650 *6)) (-4 *3 (-650 (-406 *6))))) (-3413 (*1 *2 *3 *4) (-12 (-4 *2 (-1232 *4)) (-5 *1 (-802 *4 *2 *5 *3)) (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-650 *2)) (-4 *3 (-650 (-406 *2))))) (-1578 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *4 (-1232 *5)) (-5 *2 (-639 (-2 (|:| -2328 *4) (|:| -3680 *4)))) (-5 *1 (-802 *5 *4 *6 *3)) (-4 *6 (-650 *4)) (-4 *3 (-650 (-406 *4))))) (-1578 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *2 (-639 (-2 (|:| -2328 *5) (|:| -3680 *5)))) (-5 *1 (-802 *4 *5 *6 *3)) (-4 *6 (-650 *5)) (-4 *3 (-650 (-406 *5))))) (-3413 (*1 *2 *3 *4) (-12 (-4 *2 (-1232 *4)) (-5 *1 (-802 *4 *2 *3 *5)) (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2)) (-4 *5 (-650 (-406 *2))))) (-1578 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *4 (-1232 *5)) (-5 *2 (-639 (-2 (|:| -2328 *4) (|:| -3680 *4)))) (-5 *1 (-802 *5 *4 *3 *6)) (-4 *3 (-650 *4)) (-4 *6 (-650 (-406 *4))))) (-1578 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *2 (-639 (-2 (|:| -2328 *5) (|:| -3680 *5)))) (-5 *1 (-802 *4 *5 *3 *6)) (-4 *3 (-650 *5)) (-4 *6 (-650 (-406 *5))))) (-2776 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-406 *2))) (-4 *2 (-1232 *5)) (-5 *1 (-802 *5 *2 *3 *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2)) (-4 *6 (-650 (-406 *2))))) (-2776 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-406 *2)) (-4 *2 (-1232 *5)) (-5 *1 (-802 *5 *2 *3 *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2)) (-4 *6 (-650 *4)))))
-(-10 -7 (-15 -2776 ((-3 |#2| "failed") |#3| (-406 |#2|))) (-15 -2776 (|#2| |#3| (-639 (-406 |#2|)))) (-15 -1578 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#3|)) (-15 -1578 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#3| |#2|)) (-15 -3413 (|#2| |#3| |#1|)) (-15 -1578 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#4|)) (-15 -1578 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#4| |#2|)) (-15 -3413 (|#2| |#4| |#1|)) (-15 -4096 ((-2 (|:| -3342 |#3|) (|:| |rh| (-639 (-406 |#2|)))) |#4| (-639 (-406 |#2|)))))
-((-4041 (((-112) $ $) NIL)) (-3961 (((-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) $) 13)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 15) (($ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 12)) (-1731 (((-112) $ $) NIL)))
-(((-803) (-13 (-1092) (-10 -8 (-15 -4054 ($ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3961 ((-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) $))))) (T -803))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *1 (-803)))) (-3961 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *1 (-803)))))
-(-13 (-1092) (-10 -8 (-15 -4054 ($ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3961 ((-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) $))))
-((-2936 (((-639 (-2 (|:| |frac| (-406 |#2|)) (|:| -3342 |#3|))) |#3| (-1 (-639 |#2|) |#2| (-1164 |#2|)) (-1 (-417 |#2|) |#2|)) 117)) (-3651 (((-639 (-2 (|:| |poly| |#2|) (|:| -3342 |#3|))) |#3| (-1 (-639 |#1|) |#2|)) 46)) (-2168 (((-639 (-2 (|:| |deg| (-766)) (|:| -3342 |#2|))) |#3|) 94)) (-2710 ((|#2| |#3|) 37)) (-4095 (((-639 (-2 (|:| -1497 |#1|) (|:| -3342 |#3|))) |#3| (-1 (-639 |#1|) |#2|)) 81)) (-3587 ((|#3| |#3| (-406 |#2|)) 62) ((|#3| |#3| |#2|) 78)))
-(((-804 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2710 (|#2| |#3|)) (-15 -2168 ((-639 (-2 (|:| |deg| (-766)) (|:| -3342 |#2|))) |#3|)) (-15 -4095 ((-639 (-2 (|:| -1497 |#1|) (|:| -3342 |#3|))) |#3| (-1 (-639 |#1|) |#2|))) (-15 -3651 ((-639 (-2 (|:| |poly| |#2|) (|:| -3342 |#3|))) |#3| (-1 (-639 |#1|) |#2|))) (-15 -2936 ((-639 (-2 (|:| |frac| (-406 |#2|)) (|:| -3342 |#3|))) |#3| (-1 (-639 |#2|) |#2| (-1164 |#2|)) (-1 (-417 |#2|) |#2|))) (-15 -3587 (|#3| |#3| |#2|)) (-15 -3587 (|#3| |#3| (-406 |#2|)))) (-13 (-362) (-146) (-1033 (-406 (-562)))) (-1232 |#1|) (-650 |#2|) (-650 (-406 |#2|))) (T -804))
-((-3587 (*1 *2 *2 *3) (-12 (-5 *3 (-406 *5)) (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *1 (-804 *4 *5 *2 *6)) (-4 *2 (-650 *5)) (-4 *6 (-650 *3)))) (-3587 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-1232 *4)) (-5 *1 (-804 *4 *3 *2 *5)) (-4 *2 (-650 *3)) (-4 *5 (-650 (-406 *3))))) (-2936 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-639 *7) *7 (-1164 *7))) (-5 *5 (-1 (-417 *7) *7)) (-4 *7 (-1232 *6)) (-4 *6 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-5 *2 (-639 (-2 (|:| |frac| (-406 *7)) (|:| -3342 *3)))) (-5 *1 (-804 *6 *7 *3 *8)) (-4 *3 (-650 *7)) (-4 *8 (-650 (-406 *7))))) (-3651 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-639 *5) *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-2 (|:| |poly| *6) (|:| -3342 *3)))) (-5 *1 (-804 *5 *6 *3 *7)) (-4 *3 (-650 *6)) (-4 *7 (-650 (-406 *6))))) (-4095 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-639 *5) *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-2 (|:| -1497 *5) (|:| -3342 *3)))) (-5 *1 (-804 *5 *6 *3 *7)) (-4 *3 (-650 *6)) (-4 *7 (-650 (-406 *6))))) (-2168 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *2 (-639 (-2 (|:| |deg| (-766)) (|:| -3342 *5)))) (-5 *1 (-804 *4 *5 *3 *6)) (-4 *3 (-650 *5)) (-4 *6 (-650 (-406 *5))))) (-2710 (*1 *2 *3) (-12 (-4 *2 (-1232 *4)) (-5 *1 (-804 *4 *2 *3 *5)) (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2)) (-4 *5 (-650 (-406 *2))))))
-(-10 -7 (-15 -2710 (|#2| |#3|)) (-15 -2168 ((-639 (-2 (|:| |deg| (-766)) (|:| -3342 |#2|))) |#3|)) (-15 -4095 ((-639 (-2 (|:| -1497 |#1|) (|:| -3342 |#3|))) |#3| (-1 (-639 |#1|) |#2|))) (-15 -3651 ((-639 (-2 (|:| |poly| |#2|) (|:| -3342 |#3|))) |#3| (-1 (-639 |#1|) |#2|))) (-15 -2936 ((-639 (-2 (|:| |frac| (-406 |#2|)) (|:| -3342 |#3|))) |#3| (-1 (-639 |#2|) |#2| (-1164 |#2|)) (-1 (-417 |#2|) |#2|))) (-15 -3587 (|#3| |#3| |#2|)) (-15 -3587 (|#3| |#3| (-406 |#2|))))
-((-3982 (((-2 (|:| -3928 (-639 (-406 |#2|))) (|:| -1545 (-683 |#1|))) (-648 |#2| (-406 |#2|)) (-639 (-406 |#2|))) 122) (((-2 (|:| |particular| (-3 (-406 |#2|) "failed")) (|:| -3928 (-639 (-406 |#2|)))) (-648 |#2| (-406 |#2|)) (-406 |#2|)) 121) (((-2 (|:| -3928 (-639 (-406 |#2|))) (|:| -1545 (-683 |#1|))) (-647 (-406 |#2|)) (-639 (-406 |#2|))) 116) (((-2 (|:| |particular| (-3 (-406 |#2|) "failed")) (|:| -3928 (-639 (-406 |#2|)))) (-647 (-406 |#2|)) (-406 |#2|)) 114)) (-2662 ((|#2| (-648 |#2| (-406 |#2|))) 80) ((|#2| (-647 (-406 |#2|))) 83)))
-(((-805 |#1| |#2|) (-10 -7 (-15 -3982 ((-2 (|:| |particular| (-3 (-406 |#2|) "failed")) (|:| -3928 (-639 (-406 |#2|)))) (-647 (-406 |#2|)) (-406 |#2|))) (-15 -3982 ((-2 (|:| -3928 (-639 (-406 |#2|))) (|:| -1545 (-683 |#1|))) (-647 (-406 |#2|)) (-639 (-406 |#2|)))) (-15 -3982 ((-2 (|:| |particular| (-3 (-406 |#2|) "failed")) (|:| -3928 (-639 (-406 |#2|)))) (-648 |#2| (-406 |#2|)) (-406 |#2|))) (-15 -3982 ((-2 (|:| -3928 (-639 (-406 |#2|))) (|:| -1545 (-683 |#1|))) (-648 |#2| (-406 |#2|)) (-639 (-406 |#2|)))) (-15 -2662 (|#2| (-647 (-406 |#2|)))) (-15 -2662 (|#2| (-648 |#2| (-406 |#2|))))) (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))) (-1232 |#1|)) (T -805))
-((-2662 (*1 *2 *3) (-12 (-5 *3 (-648 *2 (-406 *2))) (-4 *2 (-1232 *4)) (-5 *1 (-805 *4 *2)) (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))))) (-2662 (*1 *2 *3) (-12 (-5 *3 (-647 (-406 *2))) (-4 *2 (-1232 *4)) (-5 *1 (-805 *4 *2)) (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))))) (-3982 (*1 *2 *3 *4) (-12 (-5 *3 (-648 *6 (-406 *6))) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-2 (|:| -3928 (-639 (-406 *6))) (|:| -1545 (-683 *5)))) (-5 *1 (-805 *5 *6)) (-5 *4 (-639 (-406 *6))))) (-3982 (*1 *2 *3 *4) (-12 (-5 *3 (-648 *6 (-406 *6))) (-5 *4 (-406 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4)))) (-5 *1 (-805 *5 *6)))) (-3982 (*1 *2 *3 *4) (-12 (-5 *3 (-647 (-406 *6))) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-2 (|:| -3928 (-639 (-406 *6))) (|:| -1545 (-683 *5)))) (-5 *1 (-805 *5 *6)) (-5 *4 (-639 (-406 *6))))) (-3982 (*1 *2 *3 *4) (-12 (-5 *3 (-647 (-406 *6))) (-5 *4 (-406 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4)))) (-5 *1 (-805 *5 *6)))))
-(-10 -7 (-15 -3982 ((-2 (|:| |particular| (-3 (-406 |#2|) "failed")) (|:| -3928 (-639 (-406 |#2|)))) (-647 (-406 |#2|)) (-406 |#2|))) (-15 -3982 ((-2 (|:| -3928 (-639 (-406 |#2|))) (|:| -1545 (-683 |#1|))) (-647 (-406 |#2|)) (-639 (-406 |#2|)))) (-15 -3982 ((-2 (|:| |particular| (-3 (-406 |#2|) "failed")) (|:| -3928 (-639 (-406 |#2|)))) (-648 |#2| (-406 |#2|)) (-406 |#2|))) (-15 -3982 ((-2 (|:| -3928 (-639 (-406 |#2|))) (|:| -1545 (-683 |#1|))) (-648 |#2| (-406 |#2|)) (-639 (-406 |#2|)))) (-15 -2662 (|#2| (-647 (-406 |#2|)))) (-15 -2662 (|#2| (-648 |#2| (-406 |#2|)))))
-((-1309 (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#1|))) |#5| |#4|) 48)))
-(((-806 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1309 ((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#1|))) |#5| |#4|))) (-362) (-650 |#1|) (-1232 |#1|) (-719 |#1| |#3|) (-650 |#4|)) (T -806))
-((-1309 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *7 (-1232 *5)) (-4 *4 (-719 *5 *7)) (-5 *2 (-2 (|:| -1545 (-683 *6)) (|:| |vec| (-1256 *5)))) (-5 *1 (-806 *5 *6 *7 *4 *3)) (-4 *6 (-650 *5)) (-4 *3 (-650 *4)))))
-(-10 -7 (-15 -1309 ((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#1|))) |#5| |#4|)))
-((-2936 (((-639 (-2 (|:| |frac| (-406 |#2|)) (|:| -3342 (-648 |#2| (-406 |#2|))))) (-648 |#2| (-406 |#2|)) (-1 (-417 |#2|) |#2|)) 47)) (-3357 (((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-417 |#2|) |#2|)) 140 (|has| |#1| (-27))) (((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|))) 137 (|has| |#1| (-27))) (((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-417 |#2|) |#2|)) 141 (|has| |#1| (-27))) (((-639 (-406 |#2|)) (-647 (-406 |#2|))) 139 (|has| |#1| (-27))) (((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|) (-1 (-417 |#2|) |#2|)) 38) (((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|)) 39) (((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|) (-1 (-417 |#2|) |#2|)) 36) (((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|)) 37)) (-3651 (((-639 (-2 (|:| |poly| |#2|) (|:| -3342 (-648 |#2| (-406 |#2|))))) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|)) 83)))
-(((-807 |#1| |#2|) (-10 -7 (-15 -3357 ((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (-15 -3357 ((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|) (-1 (-417 |#2|) |#2|))) (-15 -3357 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (-15 -3357 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|) (-1 (-417 |#2|) |#2|))) (-15 -2936 ((-639 (-2 (|:| |frac| (-406 |#2|)) (|:| -3342 (-648 |#2| (-406 |#2|))))) (-648 |#2| (-406 |#2|)) (-1 (-417 |#2|) |#2|))) (-15 -3651 ((-639 (-2 (|:| |poly| |#2|) (|:| -3342 (-648 |#2| (-406 |#2|))))) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3357 ((-639 (-406 |#2|)) (-647 (-406 |#2|)))) (-15 -3357 ((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-417 |#2|) |#2|))) (-15 -3357 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)))) (-15 -3357 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-417 |#2|) |#2|)))) |%noBranch|)) (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))) (-1232 |#1|)) (T -807))
-((-3357 (*1 *2 *3 *4) (-12 (-5 *3 (-648 *6 (-406 *6))) (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6)))) (-3357 (*1 *2 *3) (-12 (-5 *3 (-648 *5 (-406 *5))) (-4 *5 (-1232 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-639 (-406 *5))) (-5 *1 (-807 *4 *5)))) (-3357 (*1 *2 *3 *4) (-12 (-5 *3 (-647 (-406 *6))) (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6)))) (-3357 (*1 *2 *3) (-12 (-5 *3 (-647 (-406 *5))) (-4 *5 (-1232 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-639 (-406 *5))) (-5 *1 (-807 *4 *5)))) (-3651 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-639 *5) *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-2 (|:| |poly| *6) (|:| -3342 (-648 *6 (-406 *6)))))) (-5 *1 (-807 *5 *6)) (-5 *3 (-648 *6 (-406 *6))))) (-2936 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-639 (-2 (|:| |frac| (-406 *6)) (|:| -3342 (-648 *6 (-406 *6)))))) (-5 *1 (-807 *5 *6)) (-5 *3 (-648 *6 (-406 *6))))) (-3357 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-648 *7 (-406 *7))) (-5 *4 (-1 (-639 *6) *7)) (-5 *5 (-1 (-417 *7) *7)) (-4 *6 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *7 (-1232 *6)) (-5 *2 (-639 (-406 *7))) (-5 *1 (-807 *6 *7)))) (-3357 (*1 *2 *3 *4) (-12 (-5 *3 (-648 *6 (-406 *6))) (-5 *4 (-1 (-639 *5) *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6)))) (-3357 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-647 (-406 *7))) (-5 *4 (-1 (-639 *6) *7)) (-5 *5 (-1 (-417 *7) *7)) (-4 *6 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *7 (-1232 *6)) (-5 *2 (-639 (-406 *7))) (-5 *1 (-807 *6 *7)))) (-3357 (*1 *2 *3 *4) (-12 (-5 *3 (-647 (-406 *6))) (-5 *4 (-1 (-639 *5) *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6)))))
-(-10 -7 (-15 -3357 ((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (-15 -3357 ((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|) (-1 (-417 |#2|) |#2|))) (-15 -3357 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (-15 -3357 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|) (-1 (-417 |#2|) |#2|))) (-15 -2936 ((-639 (-2 (|:| |frac| (-406 |#2|)) (|:| -3342 (-648 |#2| (-406 |#2|))))) (-648 |#2| (-406 |#2|)) (-1 (-417 |#2|) |#2|))) (-15 -3651 ((-639 (-2 (|:| |poly| |#2|) (|:| -3342 (-648 |#2| (-406 |#2|))))) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3357 ((-639 (-406 |#2|)) (-647 (-406 |#2|)))) (-15 -3357 ((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-417 |#2|) |#2|))) (-15 -3357 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)))) (-15 -3357 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-417 |#2|) |#2|)))) |%noBranch|))
-((-1872 (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#1|))) (-683 |#2|) (-1256 |#1|)) 85) (((-2 (|:| A (-683 |#1|)) (|:| |eqs| (-639 (-2 (|:| C (-683 |#1|)) (|:| |g| (-1256 |#1|)) (|:| -3342 |#2|) (|:| |rh| |#1|))))) (-683 |#1|) (-1256 |#1|)) 15)) (-1567 (((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|)))) (-683 |#2|) (-1256 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -3928 (-639 |#1|))) |#2| |#1|)) 92)) (-4351 (((-3 (-2 (|:| |particular| (-1256 |#1|)) (|:| -3928 (-683 |#1|))) "failed") (-683 |#1|) (-1256 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -3928 (-639 |#1|))) "failed") |#2| |#1|)) 43)))
-(((-808 |#1| |#2|) (-10 -7 (-15 -1872 ((-2 (|:| A (-683 |#1|)) (|:| |eqs| (-639 (-2 (|:| C (-683 |#1|)) (|:| |g| (-1256 |#1|)) (|:| -3342 |#2|) (|:| |rh| |#1|))))) (-683 |#1|) (-1256 |#1|))) (-15 -1872 ((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#1|))) (-683 |#2|) (-1256 |#1|))) (-15 -4351 ((-3 (-2 (|:| |particular| (-1256 |#1|)) (|:| -3928 (-683 |#1|))) "failed") (-683 |#1|) (-1256 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -3928 (-639 |#1|))) "failed") |#2| |#1|))) (-15 -1567 ((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|)))) (-683 |#2|) (-1256 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -3928 (-639 |#1|))) |#2| |#1|)))) (-362) (-650 |#1|)) (T -808))
-((-1567 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -3928 (-639 *6))) *7 *6)) (-4 *6 (-362)) (-4 *7 (-650 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1256 *6) "failed")) (|:| -3928 (-639 (-1256 *6))))) (-5 *1 (-808 *6 *7)) (-5 *4 (-1256 *6)))) (-4351 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -3928 (-639 *6))) "failed") *7 *6)) (-4 *6 (-362)) (-4 *7 (-650 *6)) (-5 *2 (-2 (|:| |particular| (-1256 *6)) (|:| -3928 (-683 *6)))) (-5 *1 (-808 *6 *7)) (-5 *3 (-683 *6)) (-5 *4 (-1256 *6)))) (-1872 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *6 (-650 *5)) (-5 *2 (-2 (|:| -1545 (-683 *6)) (|:| |vec| (-1256 *5)))) (-5 *1 (-808 *5 *6)) (-5 *3 (-683 *6)) (-5 *4 (-1256 *5)))) (-1872 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-5 *2 (-2 (|:| A (-683 *5)) (|:| |eqs| (-639 (-2 (|:| C (-683 *5)) (|:| |g| (-1256 *5)) (|:| -3342 *6) (|:| |rh| *5)))))) (-5 *1 (-808 *5 *6)) (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)) (-4 *6 (-650 *5)))))
-(-10 -7 (-15 -1872 ((-2 (|:| A (-683 |#1|)) (|:| |eqs| (-639 (-2 (|:| C (-683 |#1|)) (|:| |g| (-1256 |#1|)) (|:| -3342 |#2|) (|:| |rh| |#1|))))) (-683 |#1|) (-1256 |#1|))) (-15 -1872 ((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#1|))) (-683 |#2|) (-1256 |#1|))) (-15 -4351 ((-3 (-2 (|:| |particular| (-1256 |#1|)) (|:| -3928 (-683 |#1|))) "failed") (-683 |#1|) (-1256 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -3928 (-639 |#1|))) "failed") |#2| |#1|))) (-15 -1567 ((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -3928 (-639 (-1256 |#1|)))) (-683 |#2|) (-1256 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -3928 (-639 |#1|))) |#2| |#1|))))
-((-3081 (((-683 |#1|) (-639 |#1|) (-766)) 13) (((-683 |#1|) (-639 |#1|)) 14)) (-2856 (((-3 (-1256 |#1|) "failed") |#2| |#1| (-639 |#1|)) 34)) (-2106 (((-3 |#1| "failed") |#2| |#1| (-639 |#1|) (-1 |#1| |#1|)) 42)))
-(((-809 |#1| |#2|) (-10 -7 (-15 -3081 ((-683 |#1|) (-639 |#1|))) (-15 -3081 ((-683 |#1|) (-639 |#1|) (-766))) (-15 -2856 ((-3 (-1256 |#1|) "failed") |#2| |#1| (-639 |#1|))) (-15 -2106 ((-3 |#1| "failed") |#2| |#1| (-639 |#1|) (-1 |#1| |#1|)))) (-362) (-650 |#1|)) (T -809))
-((-2106 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-639 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-362)) (-5 *1 (-809 *2 *3)) (-4 *3 (-650 *2)))) (-2856 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-639 *4)) (-4 *4 (-362)) (-5 *2 (-1256 *4)) (-5 *1 (-809 *4 *3)) (-4 *3 (-650 *4)))) (-3081 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *5)) (-5 *4 (-766)) (-4 *5 (-362)) (-5 *2 (-683 *5)) (-5 *1 (-809 *5 *6)) (-4 *6 (-650 *5)))) (-3081 (*1 *2 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-362)) (-5 *2 (-683 *4)) (-5 *1 (-809 *4 *5)) (-4 *5 (-650 *4)))))
-(-10 -7 (-15 -3081 ((-683 |#1|) (-639 |#1|))) (-15 -3081 ((-683 |#1|) (-639 |#1|) (-766))) (-15 -2856 ((-3 (-1256 |#1|) "failed") |#2| |#1| (-639 |#1|))) (-15 -2106 ((-3 |#1| "failed") |#2| |#1| (-639 |#1|) (-1 |#1| |#1|))))
-((-4041 (((-112) $ $) NIL (|has| |#2| (-1092)))) (-1952 (((-112) $) NIL (|has| |#2| (-130)))) (-3901 (($ (-916)) NIL (|has| |#2| (-1044)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-3659 (($ $ $) NIL (|has| |#2| (-788)))) (-3214 (((-3 $ "failed") $ $) NIL (|has| |#2| (-130)))) (-4336 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| |#2| (-367)))) (-2277 (((-562) $) NIL (|has| |#2| (-843)))) (-4200 ((|#2| $ (-562) |#2|) NIL (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1092)))) (-3961 (((-562) $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-406 (-562)) $) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) ((|#2| $) NIL (|has| |#2| (-1092)))) (-2406 (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL (|has| |#2| (-1044))) (((-683 |#2|) (-683 $)) NIL (|has| |#2| (-1044)))) (-3668 (((-3 $ "failed") $) NIL (|has| |#2| (-721)))) (-1448 (($) NIL (|has| |#2| (-367)))) (-1505 ((|#2| $ (-562) |#2|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#2| $ (-562)) NIL)) (-3519 (((-112) $) NIL (|has| |#2| (-843)))) (-1720 (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1957 (((-112) $) NIL (|has| |#2| (-721)))) (-3392 (((-112) $) NIL (|has| |#2| (-843)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1912 (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1490 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-1999 (((-916) $) NIL (|has| |#2| (-367)))) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#2| (-1092)))) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-2466 (($ (-916)) NIL (|has| |#2| (-367)))) (-1709 (((-1112) $) NIL (|has| |#2| (-1092)))) (-1421 ((|#2| $) NIL (|has| (-562) (-845)))) (-2716 (($ $ |#2|) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-2411 (((-639 |#2|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#2| $ (-562) |#2|) NIL) ((|#2| $ (-562)) NIL)) (-4177 ((|#2| $ $) NIL (|has| |#2| (-1044)))) (-1679 (($ (-1256 |#2|)) NIL)) (-3627 (((-133)) NIL (|has| |#2| (-362)))) (-4029 (($ $) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1044)))) (-1723 (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-1256 |#2|) $) NIL) (($ (-562)) NIL (-4037 (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092))) (|has| |#2| (-1044)))) (($ (-406 (-562))) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (($ |#2|) NIL (|has| |#2| (-1092))) (((-857) $) NIL (|has| |#2| (-609 (-857))))) (-2579 (((-766)) NIL (|has| |#2| (-1044)))) (-1744 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-3526 (($ $) NIL (|has| |#2| (-843)))) (-2286 (($) NIL (|has| |#2| (-130)) CONST)) (-2294 (($) NIL (|has| |#2| (-721)) CONST)) (-3114 (($ $) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1044)))) (-1798 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1772 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1731 (((-112) $ $) NIL (|has| |#2| (-1092)))) (-1785 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1759 (((-112) $ $) 11 (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1848 (($ $ $) NIL (|has| |#2| (-1044))) (($ $) NIL (|has| |#2| (-1044)))) (-1835 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-766)) NIL (|has| |#2| (-721))) (($ $ (-916)) NIL (|has| |#2| (-721)))) (* (($ (-562) $) NIL (|has| |#2| (-1044))) (($ $ $) NIL (|has| |#2| (-721))) (($ $ |#2|) NIL (|has| |#2| (-721))) (($ |#2| $) NIL (|has| |#2| (-721))) (($ (-766) $) NIL (|has| |#2| (-130))) (($ (-916) $) NIL (|has| |#2| (-25)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-2525 (((-2 (|:| |particular| |#2|) (|:| -4291 (-639 |#2|))) |#3| |#2| (-1168)) 19)))
+(((-796 |#1| |#2| |#3|) (-10 -7 (-15 -2525 ((-2 (|:| |particular| |#2|) (|:| -4291 (-639 |#2|))) |#3| |#2| (-1168)))) (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)) (-13 (-29 |#1|) (-1192) (-954)) (-650 |#2|)) (T -796))
+((-2525 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1168)) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-4 *4 (-13 (-29 *6) (-1192) (-954))) (-5 *2 (-2 (|:| |particular| *4) (|:| -4291 (-639 *4)))) (-5 *1 (-796 *6 *4 *3)) (-4 *3 (-650 *4)))))
+(-10 -7 (-15 -2525 ((-2 (|:| |particular| |#2|) (|:| -4291 (-639 |#2|))) |#3| |#2| (-1168))))
+((-3888 (((-3 |#2| "failed") |#2| (-114) (-293 |#2|) (-639 |#2|)) 28) (((-3 |#2| "failed") (-293 |#2|) (-114) (-293 |#2|) (-639 |#2|)) 29) (((-3 (-2 (|:| |particular| |#2|) (|:| -4291 (-639 |#2|))) |#2| "failed") |#2| (-114) (-1168)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -4291 (-639 |#2|))) |#2| "failed") (-293 |#2|) (-114) (-1168)) 18) (((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -4291 (-639 (-1256 |#2|)))) "failed") (-639 |#2|) (-639 (-114)) (-1168)) 24) (((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -4291 (-639 (-1256 |#2|)))) "failed") (-639 (-293 |#2|)) (-639 (-114)) (-1168)) 26) (((-3 (-639 (-1256 |#2|)) "failed") (-683 |#2|) (-1168)) 37) (((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -4291 (-639 (-1256 |#2|)))) "failed") (-683 |#2|) (-1256 |#2|) (-1168)) 35)))
+(((-797 |#1| |#2|) (-10 -7 (-15 -3888 ((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -4291 (-639 (-1256 |#2|)))) "failed") (-683 |#2|) (-1256 |#2|) (-1168))) (-15 -3888 ((-3 (-639 (-1256 |#2|)) "failed") (-683 |#2|) (-1168))) (-15 -3888 ((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -4291 (-639 (-1256 |#2|)))) "failed") (-639 (-293 |#2|)) (-639 (-114)) (-1168))) (-15 -3888 ((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -4291 (-639 (-1256 |#2|)))) "failed") (-639 |#2|) (-639 (-114)) (-1168))) (-15 -3888 ((-3 (-2 (|:| |particular| |#2|) (|:| -4291 (-639 |#2|))) |#2| "failed") (-293 |#2|) (-114) (-1168))) (-15 -3888 ((-3 (-2 (|:| |particular| |#2|) (|:| -4291 (-639 |#2|))) |#2| "failed") |#2| (-114) (-1168))) (-15 -3888 ((-3 |#2| "failed") (-293 |#2|) (-114) (-293 |#2|) (-639 |#2|))) (-15 -3888 ((-3 |#2| "failed") |#2| (-114) (-293 |#2|) (-639 |#2|)))) (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)) (-13 (-29 |#1|) (-1192) (-954))) (T -797))
+((-3888 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-293 *2)) (-5 *5 (-639 *2)) (-4 *2 (-13 (-29 *6) (-1192) (-954))) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *1 (-797 *6 *2)))) (-3888 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-293 *2)) (-5 *4 (-114)) (-5 *5 (-639 *2)) (-4 *2 (-13 (-29 *6) (-1192) (-954))) (-5 *1 (-797 *6 *2)) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))))) (-3888 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-114)) (-5 *5 (-1168)) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -4291 (-639 *3))) *3 "failed")) (-5 *1 (-797 *6 *3)) (-4 *3 (-13 (-29 *6) (-1192) (-954))))) (-3888 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-293 *7)) (-5 *4 (-114)) (-5 *5 (-1168)) (-4 *7 (-13 (-29 *6) (-1192) (-954))) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -4291 (-639 *7))) *7 "failed")) (-5 *1 (-797 *6 *7)))) (-3888 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-639 *7)) (-5 *4 (-639 (-114))) (-5 *5 (-1168)) (-4 *7 (-13 (-29 *6) (-1192) (-954))) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-2 (|:| |particular| (-1256 *7)) (|:| -4291 (-639 (-1256 *7))))) (-5 *1 (-797 *6 *7)))) (-3888 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-639 (-293 *7))) (-5 *4 (-639 (-114))) (-5 *5 (-1168)) (-4 *7 (-13 (-29 *6) (-1192) (-954))) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-2 (|:| |particular| (-1256 *7)) (|:| -4291 (-639 (-1256 *7))))) (-5 *1 (-797 *6 *7)))) (-3888 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-683 *6)) (-5 *4 (-1168)) (-4 *6 (-13 (-29 *5) (-1192) (-954))) (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-639 (-1256 *6))) (-5 *1 (-797 *5 *6)))) (-3888 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-683 *7)) (-5 *5 (-1168)) (-4 *7 (-13 (-29 *6) (-1192) (-954))) (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-2 (|:| |particular| (-1256 *7)) (|:| -4291 (-639 (-1256 *7))))) (-5 *1 (-797 *6 *7)) (-5 *4 (-1256 *7)))))
+(-10 -7 (-15 -3888 ((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -4291 (-639 (-1256 |#2|)))) "failed") (-683 |#2|) (-1256 |#2|) (-1168))) (-15 -3888 ((-3 (-639 (-1256 |#2|)) "failed") (-683 |#2|) (-1168))) (-15 -3888 ((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -4291 (-639 (-1256 |#2|)))) "failed") (-639 (-293 |#2|)) (-639 (-114)) (-1168))) (-15 -3888 ((-3 (-2 (|:| |particular| (-1256 |#2|)) (|:| -4291 (-639 (-1256 |#2|)))) "failed") (-639 |#2|) (-639 (-114)) (-1168))) (-15 -3888 ((-3 (-2 (|:| |particular| |#2|) (|:| -4291 (-639 |#2|))) |#2| "failed") (-293 |#2|) (-114) (-1168))) (-15 -3888 ((-3 (-2 (|:| |particular| |#2|) (|:| -4291 (-639 |#2|))) |#2| "failed") |#2| (-114) (-1168))) (-15 -3888 ((-3 |#2| "failed") (-293 |#2|) (-114) (-293 |#2|) (-639 |#2|))) (-15 -3888 ((-3 |#2| "failed") |#2| (-114) (-293 |#2|) (-639 |#2|))))
+((-2119 (($) 9)) (-2154 (((-3 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))) "failed") (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 31)) (-1521 (((-639 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) $) 28)) (-1581 (($ (-2 (|:| -2319 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))))) 25)) (-2412 (($ (-639 (-2 (|:| -2319 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))))))) 23)) (-3229 (((-1261)) 12)))
+(((-798) (-10 -8 (-15 -2119 ($)) (-15 -3229 ((-1261))) (-15 -1521 ((-639 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) $)) (-15 -2412 ($ (-639 (-2 (|:| -2319 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))))))) (-15 -1581 ($ (-2 (|:| -2319 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))))))) (-15 -2154 ((-3 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))) "failed") (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))) (T -798))
+((-2154 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *2 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))) (-5 *1 (-798)))) (-1581 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2319 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))))) (-5 *1 (-798)))) (-2412 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -2319 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))))))) (-5 *1 (-798)))) (-1521 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-5 *1 (-798)))) (-3229 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-798)))) (-2119 (*1 *1) (-5 *1 (-798))))
+(-10 -8 (-15 -2119 ($)) (-15 -3229 ((-1261))) (-15 -1521 ((-639 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) $)) (-15 -2412 ($ (-639 (-2 (|:| -2319 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378)))))))) (-15 -1581 ($ (-2 (|:| -2319 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (|:| -2693 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))))))) (-15 -2154 ((-3 (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378)) (|:| |expense| (-378)) (|:| |accuracy| (-378)) (|:| |intermediateResults| (-378))) "failed") (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))))
+((-1322 ((|#2| |#2| (-1168)) 16)) (-2210 ((|#2| |#2| (-1168)) 51)) (-3679 (((-1 |#2| |#2|) (-1168)) 11)))
+(((-799 |#1| |#2|) (-10 -7 (-15 -1322 (|#2| |#2| (-1168))) (-15 -2210 (|#2| |#2| (-1168))) (-15 -3679 ((-1 |#2| |#2|) (-1168)))) (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)) (-13 (-29 |#1|) (-1192) (-954))) (T -799))
+((-3679 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-1 *5 *5)) (-5 *1 (-799 *4 *5)) (-4 *5 (-13 (-29 *4) (-1192) (-954))))) (-2210 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *1 (-799 *4 *2)) (-4 *2 (-13 (-29 *4) (-1192) (-954))))) (-1322 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *1 (-799 *4 *2)) (-4 *2 (-13 (-29 *4) (-1192) (-954))))))
+(-10 -7 (-15 -1322 (|#2| |#2| (-1168))) (-15 -2210 (|#2| |#2| (-1168))) (-15 -3679 ((-1 |#2| |#2|) (-1168))))
+((-3888 (((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-639 (-378)) (-378) (-378)) 116) (((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-639 (-378)) (-378)) 117) (((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-639 (-378)) (-378)) 119) (((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-378)) 120) (((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-378)) 121) (((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378))) 122) (((-1030) (-803) (-1056)) 108) (((-1030) (-803)) 109)) (-1806 (((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-803) (-1056)) 75) (((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-803)) 77)))
+(((-800) (-10 -7 (-15 -3888 ((-1030) (-803))) (-15 -3888 ((-1030) (-803) (-1056))) (-15 -3888 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)))) (-15 -3888 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-378))) (-15 -3888 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-378))) (-15 -3888 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-639 (-378)) (-378))) (-15 -3888 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-639 (-378)) (-378))) (-15 -3888 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-639 (-378)) (-378) (-378))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-803))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-803) (-1056))))) (T -800))
+((-1806 (*1 *2 *3 *4) (-12 (-5 *3 (-803)) (-5 *4 (-1056)) (-5 *2 (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *1 (-800)))) (-1806 (*1 *2 *3) (-12 (-5 *3 (-803)) (-5 *2 (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *1 (-800)))) (-3888 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1256 (-315 *4))) (-5 *5 (-639 (-378))) (-5 *6 (-315 (-378))) (-5 *4 (-378)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-3888 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1256 (-315 *4))) (-5 *5 (-639 (-378))) (-5 *6 (-315 (-378))) (-5 *4 (-378)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-3888 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1256 (-315 (-378)))) (-5 *4 (-378)) (-5 *5 (-639 *4)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-3888 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1256 (-315 *4))) (-5 *5 (-639 (-378))) (-5 *6 (-315 (-378))) (-5 *4 (-378)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-3888 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1256 (-315 (-378)))) (-5 *4 (-378)) (-5 *5 (-639 *4)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-3888 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1256 (-315 (-378)))) (-5 *4 (-378)) (-5 *5 (-639 *4)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-803)) (-5 *4 (-1056)) (-5 *2 (-1030)) (-5 *1 (-800)))) (-3888 (*1 *2 *3) (-12 (-5 *3 (-803)) (-5 *2 (-1030)) (-5 *1 (-800)))))
+(-10 -7 (-15 -3888 ((-1030) (-803))) (-15 -3888 ((-1030) (-803) (-1056))) (-15 -3888 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)))) (-15 -3888 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-378))) (-15 -3888 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-378))) (-15 -3888 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-639 (-378)) (-378))) (-15 -3888 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-639 (-378)) (-378))) (-15 -3888 ((-1030) (-1256 (-315 (-378))) (-378) (-378) (-639 (-378)) (-315 (-378)) (-639 (-378)) (-378) (-378))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-803))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-803) (-1056))))
+((-1741 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -4291 (-639 |#4|))) (-647 |#4|) |#4|) 35)))
+(((-801 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1741 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -4291 (-639 |#4|))) (-647 |#4|) |#4|))) (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|)) (T -801))
+((-1741 (*1 *2 *3 *4) (-12 (-5 *3 (-647 *4)) (-4 *4 (-341 *5 *6 *7)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4)))) (-5 *1 (-801 *5 *6 *7 *4)))))
+(-10 -7 (-15 -1741 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -4291 (-639 |#4|))) (-647 |#4|) |#4|)))
+((-3358 (((-2 (|:| -3339 |#3|) (|:| |rh| (-639 (-406 |#2|)))) |#4| (-639 (-406 |#2|))) 52)) (-2055 (((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#4| |#2|) 60) (((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#4|) 59) (((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#3| |#2|) 20) (((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#3|) 21)) (-4058 ((|#2| |#4| |#1|) 61) ((|#2| |#3| |#1|) 27)) (-2895 ((|#2| |#3| (-639 (-406 |#2|))) 94) (((-3 |#2| "failed") |#3| (-406 |#2|)) 91)))
+(((-802 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2895 ((-3 |#2| "failed") |#3| (-406 |#2|))) (-15 -2895 (|#2| |#3| (-639 (-406 |#2|)))) (-15 -2055 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#3|)) (-15 -2055 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#3| |#2|)) (-15 -4058 (|#2| |#3| |#1|)) (-15 -2055 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#4|)) (-15 -2055 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#4| |#2|)) (-15 -4058 (|#2| |#4| |#1|)) (-15 -3358 ((-2 (|:| -3339 |#3|) (|:| |rh| (-639 (-406 |#2|)))) |#4| (-639 (-406 |#2|))))) (-13 (-362) (-146) (-1033 (-406 (-562)))) (-1232 |#1|) (-650 |#2|) (-650 (-406 |#2|))) (T -802))
+((-3358 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-2 (|:| -3339 *7) (|:| |rh| (-639 (-406 *6))))) (-5 *1 (-802 *5 *6 *7 *3)) (-5 *4 (-639 (-406 *6))) (-4 *7 (-650 *6)) (-4 *3 (-650 (-406 *6))))) (-4058 (*1 *2 *3 *4) (-12 (-4 *2 (-1232 *4)) (-5 *1 (-802 *4 *2 *5 *3)) (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-650 *2)) (-4 *3 (-650 (-406 *2))))) (-2055 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *4 (-1232 *5)) (-5 *2 (-639 (-2 (|:| -2328 *4) (|:| -3680 *4)))) (-5 *1 (-802 *5 *4 *6 *3)) (-4 *6 (-650 *4)) (-4 *3 (-650 (-406 *4))))) (-2055 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *2 (-639 (-2 (|:| -2328 *5) (|:| -3680 *5)))) (-5 *1 (-802 *4 *5 *6 *3)) (-4 *6 (-650 *5)) (-4 *3 (-650 (-406 *5))))) (-4058 (*1 *2 *3 *4) (-12 (-4 *2 (-1232 *4)) (-5 *1 (-802 *4 *2 *3 *5)) (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2)) (-4 *5 (-650 (-406 *2))))) (-2055 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *4 (-1232 *5)) (-5 *2 (-639 (-2 (|:| -2328 *4) (|:| -3680 *4)))) (-5 *1 (-802 *5 *4 *3 *6)) (-4 *3 (-650 *4)) (-4 *6 (-650 (-406 *4))))) (-2055 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *2 (-639 (-2 (|:| -2328 *5) (|:| -3680 *5)))) (-5 *1 (-802 *4 *5 *3 *6)) (-4 *3 (-650 *5)) (-4 *6 (-650 (-406 *5))))) (-2895 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-406 *2))) (-4 *2 (-1232 *5)) (-5 *1 (-802 *5 *2 *3 *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2)) (-4 *6 (-650 (-406 *2))))) (-2895 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-406 *2)) (-4 *2 (-1232 *5)) (-5 *1 (-802 *5 *2 *3 *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2)) (-4 *6 (-650 *4)))))
+(-10 -7 (-15 -2895 ((-3 |#2| "failed") |#3| (-406 |#2|))) (-15 -2895 (|#2| |#3| (-639 (-406 |#2|)))) (-15 -2055 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#3|)) (-15 -2055 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#3| |#2|)) (-15 -4058 (|#2| |#3| |#1|)) (-15 -2055 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#4|)) (-15 -2055 ((-639 (-2 (|:| -2328 |#2|) (|:| -3680 |#2|))) |#4| |#2|)) (-15 -4058 (|#2| |#4| |#1|)) (-15 -3358 ((-2 (|:| -3339 |#3|) (|:| |rh| (-639 (-406 |#2|)))) |#4| (-639 (-406 |#2|)))))
+((-4041 (((-112) $ $) NIL)) (-3960 (((-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) $) 13)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 15) (($ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) 12)) (-1733 (((-112) $ $) NIL)))
+(((-803) (-13 (-1092) (-10 -8 (-15 -4053 ($ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3960 ((-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) $))))) (T -803))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *1 (-803)))) (-3960 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224)))) (-5 *1 (-803)))))
+(-13 (-1092) (-10 -8 (-15 -4053 ($ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))))) (-15 -3960 ((-2 (|:| |xinit| (-224)) (|:| |xend| (-224)) (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224))) (|:| |abserr| (-224)) (|:| |relerr| (-224))) $))))
+((-3952 (((-639 (-2 (|:| |frac| (-406 |#2|)) (|:| -3339 |#3|))) |#3| (-1 (-639 |#2|) |#2| (-1164 |#2|)) (-1 (-417 |#2|) |#2|)) 117)) (-1508 (((-639 (-2 (|:| |poly| |#2|) (|:| -3339 |#3|))) |#3| (-1 (-639 |#1|) |#2|)) 46)) (-1754 (((-639 (-2 (|:| |deg| (-766)) (|:| -3339 |#2|))) |#3|) 94)) (-3454 ((|#2| |#3|) 37)) (-3344 (((-639 (-2 (|:| -1497 |#1|) (|:| -3339 |#3|))) |#3| (-1 (-639 |#1|) |#2|)) 81)) (-2164 ((|#3| |#3| (-406 |#2|)) 62) ((|#3| |#3| |#2|) 78)))
+(((-804 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3454 (|#2| |#3|)) (-15 -1754 ((-639 (-2 (|:| |deg| (-766)) (|:| -3339 |#2|))) |#3|)) (-15 -3344 ((-639 (-2 (|:| -1497 |#1|) (|:| -3339 |#3|))) |#3| (-1 (-639 |#1|) |#2|))) (-15 -1508 ((-639 (-2 (|:| |poly| |#2|) (|:| -3339 |#3|))) |#3| (-1 (-639 |#1|) |#2|))) (-15 -3952 ((-639 (-2 (|:| |frac| (-406 |#2|)) (|:| -3339 |#3|))) |#3| (-1 (-639 |#2|) |#2| (-1164 |#2|)) (-1 (-417 |#2|) |#2|))) (-15 -2164 (|#3| |#3| |#2|)) (-15 -2164 (|#3| |#3| (-406 |#2|)))) (-13 (-362) (-146) (-1033 (-406 (-562)))) (-1232 |#1|) (-650 |#2|) (-650 (-406 |#2|))) (T -804))
+((-2164 (*1 *2 *2 *3) (-12 (-5 *3 (-406 *5)) (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *1 (-804 *4 *5 *2 *6)) (-4 *2 (-650 *5)) (-4 *6 (-650 *3)))) (-2164 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-1232 *4)) (-5 *1 (-804 *4 *3 *2 *5)) (-4 *2 (-650 *3)) (-4 *5 (-650 (-406 *3))))) (-3952 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-639 *7) *7 (-1164 *7))) (-5 *5 (-1 (-417 *7) *7)) (-4 *7 (-1232 *6)) (-4 *6 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-5 *2 (-639 (-2 (|:| |frac| (-406 *7)) (|:| -3339 *3)))) (-5 *1 (-804 *6 *7 *3 *8)) (-4 *3 (-650 *7)) (-4 *8 (-650 (-406 *7))))) (-1508 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-639 *5) *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-2 (|:| |poly| *6) (|:| -3339 *3)))) (-5 *1 (-804 *5 *6 *3 *7)) (-4 *3 (-650 *6)) (-4 *7 (-650 (-406 *6))))) (-3344 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-639 *5) *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-2 (|:| -1497 *5) (|:| -3339 *3)))) (-5 *1 (-804 *5 *6 *3 *7)) (-4 *3 (-650 *6)) (-4 *7 (-650 (-406 *6))))) (-1754 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4)) (-5 *2 (-639 (-2 (|:| |deg| (-766)) (|:| -3339 *5)))) (-5 *1 (-804 *4 *5 *3 *6)) (-4 *3 (-650 *5)) (-4 *6 (-650 (-406 *5))))) (-3454 (*1 *2 *3) (-12 (-4 *2 (-1232 *4)) (-5 *1 (-804 *4 *2 *3 *5)) (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2)) (-4 *5 (-650 (-406 *2))))))
+(-10 -7 (-15 -3454 (|#2| |#3|)) (-15 -1754 ((-639 (-2 (|:| |deg| (-766)) (|:| -3339 |#2|))) |#3|)) (-15 -3344 ((-639 (-2 (|:| -1497 |#1|) (|:| -3339 |#3|))) |#3| (-1 (-639 |#1|) |#2|))) (-15 -1508 ((-639 (-2 (|:| |poly| |#2|) (|:| -3339 |#3|))) |#3| (-1 (-639 |#1|) |#2|))) (-15 -3952 ((-639 (-2 (|:| |frac| (-406 |#2|)) (|:| -3339 |#3|))) |#3| (-1 (-639 |#2|) |#2| (-1164 |#2|)) (-1 (-417 |#2|) |#2|))) (-15 -2164 (|#3| |#3| |#2|)) (-15 -2164 (|#3| |#3| (-406 |#2|))))
+((-1742 (((-2 (|:| -4291 (-639 (-406 |#2|))) (|:| -1767 (-683 |#1|))) (-648 |#2| (-406 |#2|)) (-639 (-406 |#2|))) 122) (((-2 (|:| |particular| (-3 (-406 |#2|) "failed")) (|:| -4291 (-639 (-406 |#2|)))) (-648 |#2| (-406 |#2|)) (-406 |#2|)) 121) (((-2 (|:| -4291 (-639 (-406 |#2|))) (|:| -1767 (-683 |#1|))) (-647 (-406 |#2|)) (-639 (-406 |#2|))) 116) (((-2 (|:| |particular| (-3 (-406 |#2|) "failed")) (|:| -4291 (-639 (-406 |#2|)))) (-647 (-406 |#2|)) (-406 |#2|)) 114)) (-3026 ((|#2| (-648 |#2| (-406 |#2|))) 80) ((|#2| (-647 (-406 |#2|))) 83)))
+(((-805 |#1| |#2|) (-10 -7 (-15 -1742 ((-2 (|:| |particular| (-3 (-406 |#2|) "failed")) (|:| -4291 (-639 (-406 |#2|)))) (-647 (-406 |#2|)) (-406 |#2|))) (-15 -1742 ((-2 (|:| -4291 (-639 (-406 |#2|))) (|:| -1767 (-683 |#1|))) (-647 (-406 |#2|)) (-639 (-406 |#2|)))) (-15 -1742 ((-2 (|:| |particular| (-3 (-406 |#2|) "failed")) (|:| -4291 (-639 (-406 |#2|)))) (-648 |#2| (-406 |#2|)) (-406 |#2|))) (-15 -1742 ((-2 (|:| -4291 (-639 (-406 |#2|))) (|:| -1767 (-683 |#1|))) (-648 |#2| (-406 |#2|)) (-639 (-406 |#2|)))) (-15 -3026 (|#2| (-647 (-406 |#2|)))) (-15 -3026 (|#2| (-648 |#2| (-406 |#2|))))) (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))) (-1232 |#1|)) (T -805))
+((-3026 (*1 *2 *3) (-12 (-5 *3 (-648 *2 (-406 *2))) (-4 *2 (-1232 *4)) (-5 *1 (-805 *4 *2)) (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))))) (-3026 (*1 *2 *3) (-12 (-5 *3 (-647 (-406 *2))) (-4 *2 (-1232 *4)) (-5 *1 (-805 *4 *2)) (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))))) (-1742 (*1 *2 *3 *4) (-12 (-5 *3 (-648 *6 (-406 *6))) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-2 (|:| -4291 (-639 (-406 *6))) (|:| -1767 (-683 *5)))) (-5 *1 (-805 *5 *6)) (-5 *4 (-639 (-406 *6))))) (-1742 (*1 *2 *3 *4) (-12 (-5 *3 (-648 *6 (-406 *6))) (-5 *4 (-406 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4)))) (-5 *1 (-805 *5 *6)))) (-1742 (*1 *2 *3 *4) (-12 (-5 *3 (-647 (-406 *6))) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-2 (|:| -4291 (-639 (-406 *6))) (|:| -1767 (-683 *5)))) (-5 *1 (-805 *5 *6)) (-5 *4 (-639 (-406 *6))))) (-1742 (*1 *2 *3 *4) (-12 (-5 *3 (-647 (-406 *6))) (-5 *4 (-406 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4)))) (-5 *1 (-805 *5 *6)))))
+(-10 -7 (-15 -1742 ((-2 (|:| |particular| (-3 (-406 |#2|) "failed")) (|:| -4291 (-639 (-406 |#2|)))) (-647 (-406 |#2|)) (-406 |#2|))) (-15 -1742 ((-2 (|:| -4291 (-639 (-406 |#2|))) (|:| -1767 (-683 |#1|))) (-647 (-406 |#2|)) (-639 (-406 |#2|)))) (-15 -1742 ((-2 (|:| |particular| (-3 (-406 |#2|) "failed")) (|:| -4291 (-639 (-406 |#2|)))) (-648 |#2| (-406 |#2|)) (-406 |#2|))) (-15 -1742 ((-2 (|:| -4291 (-639 (-406 |#2|))) (|:| -1767 (-683 |#1|))) (-648 |#2| (-406 |#2|)) (-639 (-406 |#2|)))) (-15 -3026 (|#2| (-647 (-406 |#2|)))) (-15 -3026 (|#2| (-648 |#2| (-406 |#2|)))))
+((-1684 (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#1|))) |#5| |#4|) 48)))
+(((-806 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1684 ((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#1|))) |#5| |#4|))) (-362) (-650 |#1|) (-1232 |#1|) (-719 |#1| |#3|) (-650 |#4|)) (T -806))
+((-1684 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *7 (-1232 *5)) (-4 *4 (-719 *5 *7)) (-5 *2 (-2 (|:| -1767 (-683 *6)) (|:| |vec| (-1256 *5)))) (-5 *1 (-806 *5 *6 *7 *4 *3)) (-4 *6 (-650 *5)) (-4 *3 (-650 *4)))))
+(-10 -7 (-15 -1684 ((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#1|))) |#5| |#4|)))
+((-3952 (((-639 (-2 (|:| |frac| (-406 |#2|)) (|:| -3339 (-648 |#2| (-406 |#2|))))) (-648 |#2| (-406 |#2|)) (-1 (-417 |#2|) |#2|)) 47)) (-3503 (((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-417 |#2|) |#2|)) 140 (|has| |#1| (-27))) (((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|))) 137 (|has| |#1| (-27))) (((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-417 |#2|) |#2|)) 141 (|has| |#1| (-27))) (((-639 (-406 |#2|)) (-647 (-406 |#2|))) 139 (|has| |#1| (-27))) (((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|) (-1 (-417 |#2|) |#2|)) 38) (((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|)) 39) (((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|) (-1 (-417 |#2|) |#2|)) 36) (((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|)) 37)) (-1508 (((-639 (-2 (|:| |poly| |#2|) (|:| -3339 (-648 |#2| (-406 |#2|))))) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|)) 83)))
+(((-807 |#1| |#2|) (-10 -7 (-15 -3503 ((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (-15 -3503 ((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|) (-1 (-417 |#2|) |#2|))) (-15 -3503 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (-15 -3503 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|) (-1 (-417 |#2|) |#2|))) (-15 -3952 ((-639 (-2 (|:| |frac| (-406 |#2|)) (|:| -3339 (-648 |#2| (-406 |#2|))))) (-648 |#2| (-406 |#2|)) (-1 (-417 |#2|) |#2|))) (-15 -1508 ((-639 (-2 (|:| |poly| |#2|) (|:| -3339 (-648 |#2| (-406 |#2|))))) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3503 ((-639 (-406 |#2|)) (-647 (-406 |#2|)))) (-15 -3503 ((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-417 |#2|) |#2|))) (-15 -3503 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)))) (-15 -3503 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-417 |#2|) |#2|)))) |%noBranch|)) (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))) (-1232 |#1|)) (T -807))
+((-3503 (*1 *2 *3 *4) (-12 (-5 *3 (-648 *6 (-406 *6))) (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6)))) (-3503 (*1 *2 *3) (-12 (-5 *3 (-648 *5 (-406 *5))) (-4 *5 (-1232 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-639 (-406 *5))) (-5 *1 (-807 *4 *5)))) (-3503 (*1 *2 *3 *4) (-12 (-5 *3 (-647 (-406 *6))) (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6)))) (-3503 (*1 *2 *3) (-12 (-5 *3 (-647 (-406 *5))) (-4 *5 (-1232 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-639 (-406 *5))) (-5 *1 (-807 *4 *5)))) (-1508 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-639 *5) *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-2 (|:| |poly| *6) (|:| -3339 (-648 *6 (-406 *6)))))) (-5 *1 (-807 *5 *6)) (-5 *3 (-648 *6 (-406 *6))))) (-3952 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-5 *2 (-639 (-2 (|:| |frac| (-406 *6)) (|:| -3339 (-648 *6 (-406 *6)))))) (-5 *1 (-807 *5 *6)) (-5 *3 (-648 *6 (-406 *6))))) (-3503 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-648 *7 (-406 *7))) (-5 *4 (-1 (-639 *6) *7)) (-5 *5 (-1 (-417 *7) *7)) (-4 *6 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *7 (-1232 *6)) (-5 *2 (-639 (-406 *7))) (-5 *1 (-807 *6 *7)))) (-3503 (*1 *2 *3 *4) (-12 (-5 *3 (-648 *6 (-406 *6))) (-5 *4 (-1 (-639 *5) *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6)))) (-3503 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-647 (-406 *7))) (-5 *4 (-1 (-639 *6) *7)) (-5 *5 (-1 (-417 *7) *7)) (-4 *6 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *7 (-1232 *6)) (-5 *2 (-639 (-406 *7))) (-5 *1 (-807 *6 *7)))) (-3503 (*1 *2 *3 *4) (-12 (-5 *3 (-647 (-406 *6))) (-5 *4 (-1 (-639 *5) *6)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5)) (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6)))))
+(-10 -7 (-15 -3503 ((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (-15 -3503 ((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-639 |#1|) |#2|) (-1 (-417 |#2|) |#2|))) (-15 -3503 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (-15 -3503 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|) (-1 (-417 |#2|) |#2|))) (-15 -3952 ((-639 (-2 (|:| |frac| (-406 |#2|)) (|:| -3339 (-648 |#2| (-406 |#2|))))) (-648 |#2| (-406 |#2|)) (-1 (-417 |#2|) |#2|))) (-15 -1508 ((-639 (-2 (|:| |poly| |#2|) (|:| -3339 (-648 |#2| (-406 |#2|))))) (-648 |#2| (-406 |#2|)) (-1 (-639 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3503 ((-639 (-406 |#2|)) (-647 (-406 |#2|)))) (-15 -3503 ((-639 (-406 |#2|)) (-647 (-406 |#2|)) (-1 (-417 |#2|) |#2|))) (-15 -3503 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)))) (-15 -3503 ((-639 (-406 |#2|)) (-648 |#2| (-406 |#2|)) (-1 (-417 |#2|) |#2|)))) |%noBranch|))
+((-1671 (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#1|))) (-683 |#2|) (-1256 |#1|)) 85) (((-2 (|:| A (-683 |#1|)) (|:| |eqs| (-639 (-2 (|:| C (-683 |#1|)) (|:| |g| (-1256 |#1|)) (|:| -3339 |#2|) (|:| |rh| |#1|))))) (-683 |#1|) (-1256 |#1|)) 15)) (-1949 (((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|)))) (-683 |#2|) (-1256 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -4291 (-639 |#1|))) |#2| |#1|)) 92)) (-3888 (((-3 (-2 (|:| |particular| (-1256 |#1|)) (|:| -4291 (-683 |#1|))) "failed") (-683 |#1|) (-1256 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -4291 (-639 |#1|))) "failed") |#2| |#1|)) 43)))
+(((-808 |#1| |#2|) (-10 -7 (-15 -1671 ((-2 (|:| A (-683 |#1|)) (|:| |eqs| (-639 (-2 (|:| C (-683 |#1|)) (|:| |g| (-1256 |#1|)) (|:| -3339 |#2|) (|:| |rh| |#1|))))) (-683 |#1|) (-1256 |#1|))) (-15 -1671 ((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#1|))) (-683 |#2|) (-1256 |#1|))) (-15 -3888 ((-3 (-2 (|:| |particular| (-1256 |#1|)) (|:| -4291 (-683 |#1|))) "failed") (-683 |#1|) (-1256 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -4291 (-639 |#1|))) "failed") |#2| |#1|))) (-15 -1949 ((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|)))) (-683 |#2|) (-1256 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -4291 (-639 |#1|))) |#2| |#1|)))) (-362) (-650 |#1|)) (T -808))
+((-1949 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -4291 (-639 *6))) *7 *6)) (-4 *6 (-362)) (-4 *7 (-650 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1256 *6) "failed")) (|:| -4291 (-639 (-1256 *6))))) (-5 *1 (-808 *6 *7)) (-5 *4 (-1256 *6)))) (-3888 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -4291 (-639 *6))) "failed") *7 *6)) (-4 *6 (-362)) (-4 *7 (-650 *6)) (-5 *2 (-2 (|:| |particular| (-1256 *6)) (|:| -4291 (-683 *6)))) (-5 *1 (-808 *6 *7)) (-5 *3 (-683 *6)) (-5 *4 (-1256 *6)))) (-1671 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-4 *6 (-650 *5)) (-5 *2 (-2 (|:| -1767 (-683 *6)) (|:| |vec| (-1256 *5)))) (-5 *1 (-808 *5 *6)) (-5 *3 (-683 *6)) (-5 *4 (-1256 *5)))) (-1671 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-5 *2 (-2 (|:| A (-683 *5)) (|:| |eqs| (-639 (-2 (|:| C (-683 *5)) (|:| |g| (-1256 *5)) (|:| -3339 *6) (|:| |rh| *5)))))) (-5 *1 (-808 *5 *6)) (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)) (-4 *6 (-650 *5)))))
+(-10 -7 (-15 -1671 ((-2 (|:| A (-683 |#1|)) (|:| |eqs| (-639 (-2 (|:| C (-683 |#1|)) (|:| |g| (-1256 |#1|)) (|:| -3339 |#2|) (|:| |rh| |#1|))))) (-683 |#1|) (-1256 |#1|))) (-15 -1671 ((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#1|))) (-683 |#2|) (-1256 |#1|))) (-15 -3888 ((-3 (-2 (|:| |particular| (-1256 |#1|)) (|:| -4291 (-683 |#1|))) "failed") (-683 |#1|) (-1256 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -4291 (-639 |#1|))) "failed") |#2| |#1|))) (-15 -1949 ((-2 (|:| |particular| (-3 (-1256 |#1|) "failed")) (|:| -4291 (-639 (-1256 |#1|)))) (-683 |#2|) (-1256 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -4291 (-639 |#1|))) |#2| |#1|))))
+((-3919 (((-683 |#1|) (-639 |#1|) (-766)) 13) (((-683 |#1|) (-639 |#1|)) 14)) (-4365 (((-3 (-1256 |#1|) "failed") |#2| |#1| (-639 |#1|)) 34)) (-2341 (((-3 |#1| "failed") |#2| |#1| (-639 |#1|) (-1 |#1| |#1|)) 42)))
+(((-809 |#1| |#2|) (-10 -7 (-15 -3919 ((-683 |#1|) (-639 |#1|))) (-15 -3919 ((-683 |#1|) (-639 |#1|) (-766))) (-15 -4365 ((-3 (-1256 |#1|) "failed") |#2| |#1| (-639 |#1|))) (-15 -2341 ((-3 |#1| "failed") |#2| |#1| (-639 |#1|) (-1 |#1| |#1|)))) (-362) (-650 |#1|)) (T -809))
+((-2341 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-639 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-362)) (-5 *1 (-809 *2 *3)) (-4 *3 (-650 *2)))) (-4365 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-639 *4)) (-4 *4 (-362)) (-5 *2 (-1256 *4)) (-5 *1 (-809 *4 *3)) (-4 *3 (-650 *4)))) (-3919 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *5)) (-5 *4 (-766)) (-4 *5 (-362)) (-5 *2 (-683 *5)) (-5 *1 (-809 *5 *6)) (-4 *6 (-650 *5)))) (-3919 (*1 *2 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-362)) (-5 *2 (-683 *4)) (-5 *1 (-809 *4 *5)) (-4 *5 (-650 *4)))))
+(-10 -7 (-15 -3919 ((-683 |#1|) (-639 |#1|))) (-15 -3919 ((-683 |#1|) (-639 |#1|) (-766))) (-15 -4365 ((-3 (-1256 |#1|) "failed") |#2| |#1| (-639 |#1|))) (-15 -2341 ((-3 |#1| "failed") |#2| |#1| (-639 |#1|) (-1 |#1| |#1|))))
+((-4041 (((-112) $ $) NIL (|has| |#2| (-1092)))) (-4325 (((-112) $) NIL (|has| |#2| (-130)))) (-2211 (($ (-916)) NIL (|has| |#2| (-1044)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1593 (($ $ $) NIL (|has| |#2| (-788)))) (-2781 (((-3 $ "failed") $ $) NIL (|has| |#2| (-130)))) (-3735 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| |#2| (-367)))) (-1587 (((-562) $) NIL (|has| |#2| (-843)))) (-4200 ((|#2| $ (-562) |#2|) NIL (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1092)))) (-3960 (((-562) $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092)))) (((-406 (-562)) $) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) ((|#2| $) NIL (|has| |#2| (-1092)))) (-3449 (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#2| (-1044)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL (|has| |#2| (-1044))) (((-683 |#2|) (-683 $)) NIL (|has| |#2| (-1044)))) (-1694 (((-3 $ "failed") $) NIL (|has| |#2| (-721)))) (-1447 (($) NIL (|has| |#2| (-367)))) (-1507 ((|#2| $ (-562) |#2|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#2| $ (-562)) NIL)) (-2696 (((-112) $) NIL (|has| |#2| (-843)))) (-1720 (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-4367 (((-112) $) NIL (|has| |#2| (-721)))) (-3855 (((-112) $) NIL (|has| |#2| (-843)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-2123 (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1491 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-3549 (((-916) $) NIL (|has| |#2| (-367)))) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#2| (-1092)))) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-2464 (($ (-916)) NIL (|has| |#2| (-367)))) (-1709 (((-1112) $) NIL (|has| |#2| (-1092)))) (-1421 ((|#2| $) NIL (|has| (-562) (-845)))) (-3510 (($ $ |#2|) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-2366 (((-639 |#2|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#2| $ (-562) |#2|) NIL) ((|#2| $ (-562)) NIL)) (-2852 ((|#2| $ $) NIL (|has| |#2| (-1044)))) (-1678 (($ (-1256 |#2|)) NIL)) (-4340 (((-133)) NIL (|has| |#2| (-362)))) (-4029 (($ $) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1044)))) (-1723 (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-1256 |#2|) $) NIL) (($ (-562)) NIL (-4037 (-12 (|has| |#2| (-1033 (-562))) (|has| |#2| (-1092))) (|has| |#2| (-1044)))) (($ (-406 (-562))) NIL (-12 (|has| |#2| (-1033 (-406 (-562)))) (|has| |#2| (-1092)))) (($ |#2|) NIL (|has| |#2| (-1092))) (((-857) $) NIL (|has| |#2| (-609 (-857))))) (-1568 (((-766)) NIL (|has| |#2| (-1044)))) (-2879 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-2757 (($ $) NIL (|has| |#2| (-843)))) (-2285 (($) NIL (|has| |#2| (-130)) CONST)) (-2294 (($) NIL (|has| |#2| (-721)) CONST)) (-3113 (($ $) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#2| (-232)) (|has| |#2| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#2| (-895 (-1168))) (|has| |#2| (-1044)))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#2| (-1044))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1044)))) (-1798 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1771 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1733 (((-112) $ $) NIL (|has| |#2| (-1092)))) (-1785 (((-112) $ $) NIL (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1761 (((-112) $ $) 11 (-4037 (|has| |#2| (-788)) (|has| |#2| (-843))))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1847 (($ $ $) NIL (|has| |#2| (-1044))) (($ $) NIL (|has| |#2| (-1044)))) (-1836 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-766)) NIL (|has| |#2| (-721))) (($ $ (-916)) NIL (|has| |#2| (-721)))) (* (($ (-562) $) NIL (|has| |#2| (-1044))) (($ $ $) NIL (|has| |#2| (-721))) (($ $ |#2|) NIL (|has| |#2| (-721))) (($ |#2| $) NIL (|has| |#2| (-721))) (($ (-766) $) NIL (|has| |#2| (-130))) (($ (-916) $) NIL (|has| |#2| (-25)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-810 |#1| |#2| |#3|) (-237 |#1| |#2|) (-766) (-788) (-1 (-112) (-1256 |#2|) (-1256 |#2|))) (T -810))
NIL
(-237 |#1| |#2|)
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1880 (((-639 (-766)) $) NIL) (((-639 (-766)) $ (-1168)) NIL)) (-1929 (((-766) $) NIL) (((-766) $ (-1168)) NIL)) (-1402 (((-639 (-813 (-1168))) $) NIL)) (-1599 (((-1164 $) $ (-813 (-1168))) NIL) (((-1164 |#1|) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 (-813 (-1168)))) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-2798 (($ $) NIL (|has| |#1| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3677 (($ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-813 (-1168)) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL) (((-3 (-1117 |#1| (-1168)) "failed") $) NIL)) (-3961 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-813 (-1168)) $) NIL) (((-1168) $) NIL) (((-1117 |#1| (-1168)) $) NIL)) (-2835 (($ $ $ (-813 (-1168))) NIL (|has| |#1| (-171)))) (-1601 (($ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#1| (-451))) (($ $ (-813 (-1168))) NIL (|has| |#1| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#1| (-904)))) (-3122 (($ $ |#1| (-530 (-813 (-1168))) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-813 (-1168)) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-813 (-1168)) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1900 (((-766) $ (-1168)) NIL) (((-766) $) NIL)) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-1390 (($ (-1164 |#1|) (-813 (-1168))) NIL) (($ (-1164 $) (-813 (-1168))) NIL)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-530 (-813 (-1168)))) NIL) (($ $ (-813 (-1168)) (-766)) NIL) (($ $ (-639 (-813 (-1168))) (-639 (-766))) NIL)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ (-813 (-1168))) NIL)) (-2076 (((-530 (-813 (-1168))) $) NIL) (((-766) $ (-813 (-1168))) NIL) (((-639 (-766)) $ (-639 (-813 (-1168)))) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2836 (($ (-1 (-530 (-813 (-1168))) (-530 (-813 (-1168)))) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3603 (((-1 $ (-766)) (-1168)) NIL) (((-1 $ (-766)) $) NIL (|has| |#1| (-232)))) (-3372 (((-3 (-813 (-1168)) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-3736 (((-813 (-1168)) $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-2913 (((-1150) $) NIL)) (-3349 (((-112) $) NIL)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| (-813 (-1168))) (|:| -1960 (-766))) "failed") $) NIL)) (-3592 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#1| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-813 (-1168)) |#1|) NIL) (($ $ (-639 (-813 (-1168))) (-639 |#1|)) NIL) (($ $ (-813 (-1168)) $) NIL) (($ $ (-639 (-813 (-1168))) (-639 $)) NIL) (($ $ (-1168) $) NIL (|has| |#1| (-232))) (($ $ (-639 (-1168)) (-639 $)) NIL (|has| |#1| (-232))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-232))) (($ $ (-639 (-1168)) (-639 |#1|)) NIL (|has| |#1| (-232)))) (-2455 (($ $ (-813 (-1168))) NIL (|has| |#1| (-171)))) (-4029 (($ $ (-813 (-1168))) NIL) (($ $ (-639 (-813 (-1168)))) NIL) (($ $ (-813 (-1168)) (-766)) NIL) (($ $ (-639 (-813 (-1168))) (-639 (-766))) NIL) (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4333 (((-639 (-1168)) $) NIL)) (-3598 (((-530 (-813 (-1168))) $) NIL) (((-766) $ (-813 (-1168))) NIL) (((-639 (-766)) $ (-639 (-813 (-1168)))) NIL) (((-766) $ (-1168)) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-813 (-1168)) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-813 (-1168)) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-813 (-1168)) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-3900 ((|#1| $) NIL (|has| |#1| (-451))) (($ $ (-813 (-1168))) NIL (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-813 (-1168))) NIL) (($ (-1168)) NIL) (($ (-1117 |#1| (-1168))) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-530 (-813 (-1168)))) NIL) (($ $ (-813 (-1168)) (-766)) NIL) (($ $ (-639 (-813 (-1168))) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-813 (-1168))) NIL) (($ $ (-639 (-813 (-1168)))) NIL) (($ $ (-813 (-1168)) (-766)) NIL) (($ $ (-639 (-813 (-1168))) (-639 (-766))) NIL) (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1759 (((-639 (-766)) $) NIL) (((-639 (-766)) $ (-1168)) NIL)) (-2277 (((-766) $) NIL) (((-766) $ (-1168)) NIL)) (-1401 (((-639 (-813 (-1168))) $) NIL)) (-1602 (((-1164 $) $ (-813 (-1168))) NIL) (((-1164 |#1|) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 (-813 (-1168)))) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1977 (($ $) NIL (|has| |#1| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3611 (($ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-813 (-1168)) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL) (((-3 (-1117 |#1| (-1168)) "failed") $) NIL)) (-3960 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-813 (-1168)) $) NIL) (((-1168) $) NIL) (((-1117 |#1| (-1168)) $) NIL)) (-2355 (($ $ $ (-813 (-1168))) NIL (|has| |#1| (-171)))) (-1600 (($ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#1| (-451))) (($ $ (-813 (-1168))) NIL (|has| |#1| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#1| (-904)))) (-3066 (($ $ |#1| (-530 (-813 (-1168))) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-813 (-1168)) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-813 (-1168)) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1993 (((-766) $ (-1168)) NIL) (((-766) $) NIL)) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-1389 (($ (-1164 |#1|) (-813 (-1168))) NIL) (($ (-1164 $) (-813 (-1168))) NIL)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-530 (-813 (-1168)))) NIL) (($ $ (-813 (-1168)) (-766)) NIL) (($ $ (-639 (-813 (-1168))) (-639 (-766))) NIL)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ (-813 (-1168))) NIL)) (-3161 (((-530 (-813 (-1168))) $) NIL) (((-766) $ (-813 (-1168))) NIL) (((-639 (-766)) $ (-639 (-813 (-1168)))) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2363 (($ (-1 (-530 (-813 (-1168))) (-530 (-813 (-1168)))) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2298 (((-1 $ (-766)) (-1168)) NIL) (((-1 $ (-766)) $) NIL (|has| |#1| (-232)))) (-3640 (((-3 (-813 (-1168)) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-3736 (((-813 (-1168)) $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3696 (((-1150) $) NIL)) (-1611 (((-112) $) NIL)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| (-813 (-1168))) (|:| -1300 (-766))) "failed") $) NIL)) (-3592 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#1| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-813 (-1168)) |#1|) NIL) (($ $ (-639 (-813 (-1168))) (-639 |#1|)) NIL) (($ $ (-813 (-1168)) $) NIL) (($ $ (-639 (-813 (-1168))) (-639 $)) NIL) (($ $ (-1168) $) NIL (|has| |#1| (-232))) (($ $ (-639 (-1168)) (-639 $)) NIL (|has| |#1| (-232))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-232))) (($ $ (-639 (-1168)) (-639 |#1|)) NIL (|has| |#1| (-232)))) (-2736 (($ $ (-813 (-1168))) NIL (|has| |#1| (-171)))) (-4029 (($ $ (-813 (-1168))) NIL) (($ $ (-639 (-813 (-1168)))) NIL) (($ $ (-813 (-1168)) (-766)) NIL) (($ $ (-639 (-813 (-1168))) (-639 (-766))) NIL) (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3712 (((-639 (-1168)) $) NIL)) (-2250 (((-530 (-813 (-1168))) $) NIL) (((-766) $ (-813 (-1168))) NIL) (((-639 (-766)) $ (-639 (-813 (-1168)))) NIL) (((-766) $ (-1168)) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-813 (-1168)) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-813 (-1168)) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-813 (-1168)) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-2201 ((|#1| $) NIL (|has| |#1| (-451))) (($ $ (-813 (-1168))) NIL (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-813 (-1168))) NIL) (($ (-1168)) NIL) (($ (-1117 |#1| (-1168))) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-530 (-813 (-1168)))) NIL) (($ $ (-813 (-1168)) (-766)) NIL) (($ $ (-639 (-813 (-1168))) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-813 (-1168))) NIL) (($ $ (-639 (-813 (-1168)))) NIL) (($ $ (-813 (-1168)) (-766)) NIL) (($ $ (-639 (-813 (-1168))) (-639 (-766))) NIL) (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-811 |#1|) (-13 (-252 |#1| (-1168) (-813 (-1168)) (-530 (-813 (-1168)))) (-1033 (-1117 |#1| (-1168)))) (-1044)) (T -811))
NIL
(-13 (-252 |#1| (-1168) (-813 (-1168)) (-530 (-813 (-1168)))) (-1033 (-1117 |#1| (-1168))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#2| (-362)))) (-2796 (($ $) NIL (|has| |#2| (-362)))) (-4370 (((-112) $) NIL (|has| |#2| (-362)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL (|has| |#2| (-362)))) (-2921 (((-417 $) $) NIL (|has| |#2| (-362)))) (-2569 (((-112) $ $) NIL (|has| |#2| (-362)))) (-1800 (($) NIL T CONST)) (-1811 (($ $ $) NIL (|has| |#2| (-362)))) (-3668 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL (|has| |#2| (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#2| (-362)))) (-2717 (((-112) $) NIL (|has| |#2| (-362)))) (-1957 (((-112) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#2| (-362)))) (-1564 (($ (-639 $)) NIL (|has| |#2| (-362))) (($ $ $) NIL (|has| |#2| (-362)))) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 20 (|has| |#2| (-362)))) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#2| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#2| (-362))) (($ $ $) NIL (|has| |#2| (-362)))) (-1635 (((-417 $) $) NIL (|has| |#2| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#2| (-362)))) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#2| (-362)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#2| (-362)))) (-1577 (((-766) $) NIL (|has| |#2| (-362)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#2| (-362)))) (-4029 (($ $ (-766)) NIL) (($ $) 13)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-406 (-562))) NIL (|has| |#2| (-362))) (($ $) NIL (|has| |#2| (-362)))) (-2579 (((-766)) NIL)) (-2922 (((-112) $ $) NIL (|has| |#2| (-362)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-766)) NIL) (($ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) 15 (|has| |#2| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-766)) NIL) (($ $ (-916)) NIL) (($ $ (-562)) 18 (|has| |#2| (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-406 (-562)) $) NIL (|has| |#2| (-362))) (($ $ (-406 (-562))) NIL (|has| |#2| (-362)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#2| (-362)))) (-1965 (($ $) NIL (|has| |#2| (-362)))) (-4102 (((-112) $) NIL (|has| |#2| (-362)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL (|has| |#2| (-362)))) (-3788 (((-417 $) $) NIL (|has| |#2| (-362)))) (-1436 (((-112) $ $) NIL (|has| |#2| (-362)))) (-3329 (($) NIL T CONST)) (-1810 (($ $ $) NIL (|has| |#2| (-362)))) (-1694 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL (|has| |#2| (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#2| (-362)))) (-3521 (((-112) $) NIL (|has| |#2| (-362)))) (-4367 (((-112) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#2| (-362)))) (-1564 (($ (-639 $)) NIL (|has| |#2| (-362))) (($ $ $) NIL (|has| |#2| (-362)))) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 20 (|has| |#2| (-362)))) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#2| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#2| (-362))) (($ $ $) NIL (|has| |#2| (-362)))) (-1635 (((-417 $) $) NIL (|has| |#2| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#2| (-362)))) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#2| (-362)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#2| (-362)))) (-2044 (((-766) $) NIL (|has| |#2| (-362)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#2| (-362)))) (-4029 (($ $ (-766)) NIL) (($ $) 13)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-406 (-562))) NIL (|has| |#2| (-362))) (($ $) NIL (|has| |#2| (-362)))) (-1568 (((-766)) NIL)) (-3799 (((-112) $ $) NIL (|has| |#2| (-362)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-766)) NIL) (($ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) 15 (|has| |#2| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-766)) NIL) (($ $ (-916)) NIL) (($ $ (-562)) 18 (|has| |#2| (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-406 (-562)) $) NIL (|has| |#2| (-362))) (($ $ (-406 (-562))) NIL (|has| |#2| (-362)))))
(((-812 |#1| |#2| |#3|) (-13 (-111 $ $) (-232) (-489 |#2|) (-10 -7 (IF (|has| |#2| (-362)) (-6 (-362)) |%noBranch|))) (-1092) (-895 |#1|) |#1|) (T -812))
NIL
(-13 (-111 $ $) (-232) (-489 |#2|) (-10 -7 (IF (|has| |#2| (-362)) (-6 (-362)) |%noBranch|)))
-((-4041 (((-112) $ $) NIL)) (-1929 (((-766) $) NIL)) (-2444 ((|#1| $) 10)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3961 ((|#1| $) NIL)) (-1900 (((-766) $) 11)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3603 (($ |#1| (-766)) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4029 (($ $) NIL) (($ $ (-766)) NIL)) (-4054 (((-857) $) NIL) (($ |#1|) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-2277 (((-766) $) NIL)) (-2443 ((|#1| $) 10)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3960 ((|#1| $) NIL)) (-1993 (((-766) $) 11)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2298 (($ |#1| (-766)) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4029 (($ $) NIL) (($ $ (-766)) NIL)) (-4053 (((-857) $) NIL) (($ |#1|) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)))
(((-813 |#1|) (-265 |#1|) (-845)) (T -813))
NIL
(-265 |#1|)
-((-4041 (((-112) $ $) NIL)) (-2852 (((-639 |#1|) $) 29)) (-1382 (((-766) $) NIL)) (-1800 (($) NIL T CONST)) (-2415 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 20)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3961 ((|#1| $) NIL)) (-1434 (($ $) 31)) (-3668 (((-3 $ "failed") $) NIL)) (-1605 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-1957 (((-112) $) NIL)) (-3126 ((|#1| $ (-562)) NIL)) (-1870 (((-766) $ (-562)) NIL)) (-3818 (($ $) 35)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2221 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 17)) (-3496 (((-112) $ $) 33)) (-3641 (((-766) $) 25)) (-2913 (((-1150) $) NIL)) (-3423 (($ $ $) NIL)) (-1989 (($ $ $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 ((|#1| $) 30)) (-1510 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $) NIL)) (-1773 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-4054 (((-857) $) NIL) (($ |#1|) NIL)) (-2294 (($) 15 T CONST)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 34)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ |#1| (-766)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-814 |#1|) (-13 (-841) (-1033 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-766))) (-15 -1421 (|#1| $)) (-15 -1434 ($ $)) (-15 -3818 ($ $)) (-15 -3496 ((-112) $ $)) (-15 -1989 ($ $ $)) (-15 -3423 ($ $ $)) (-15 -2221 ((-3 $ "failed") $ $)) (-15 -2415 ((-3 $ "failed") $ $)) (-15 -2221 ((-3 $ "failed") $ |#1|)) (-15 -2415 ((-3 $ "failed") $ |#1|)) (-15 -1773 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1605 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1382 ((-766) $)) (-15 -1870 ((-766) $ (-562))) (-15 -3126 (|#1| $ (-562))) (-15 -1510 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $)) (-15 -3641 ((-766) $)) (-15 -2852 ((-639 |#1|) $)))) (-845)) (T -814))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-766)) (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-1421 (*1 *2 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-1434 (*1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-3818 (*1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-3496 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-814 *3)) (-4 *3 (-845)))) (-1989 (*1 *1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-3423 (*1 *1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-2221 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-2415 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-2221 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-2415 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-1773 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-814 *3)) (|:| |rm| (-814 *3)))) (-5 *1 (-814 *3)) (-4 *3 (-845)))) (-1605 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-814 *3)) (|:| |mm| (-814 *3)) (|:| |rm| (-814 *3)))) (-5 *1 (-814 *3)) (-4 *3 (-845)))) (-1382 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-814 *3)) (-4 *3 (-845)))) (-1870 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-766)) (-5 *1 (-814 *4)) (-4 *4 (-845)))) (-3126 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-1510 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 (-766))))) (-5 *1 (-814 *3)) (-4 *3 (-845)))) (-3641 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-814 *3)) (-4 *3 (-845)))) (-2852 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-814 *3)) (-4 *3 (-845)))))
-(-13 (-841) (-1033 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-766))) (-15 -1421 (|#1| $)) (-15 -1434 ($ $)) (-15 -3818 ($ $)) (-15 -3496 ((-112) $ $)) (-15 -1989 ($ $ $)) (-15 -3423 ($ $ $)) (-15 -2221 ((-3 $ "failed") $ $)) (-15 -2415 ((-3 $ "failed") $ $)) (-15 -2221 ((-3 $ "failed") $ |#1|)) (-15 -2415 ((-3 $ "failed") $ |#1|)) (-15 -1773 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1605 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1382 ((-766) $)) (-15 -1870 ((-766) $ (-562))) (-15 -3126 (|#1| $ (-562))) (-15 -1510 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $)) (-15 -3641 ((-766) $)) (-15 -2852 ((-639 |#1|) $))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-2277 (((-562) $) 54)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-3519 (((-112) $) 52)) (-1957 (((-112) $) 31)) (-3392 (((-112) $) 53)) (-1551 (($ $ $) 51)) (-2993 (($ $ $) 50)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ $) 43)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-3526 (($ $) 55)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 48)) (-1772 (((-112) $ $) 47)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 49)) (-1759 (((-112) $ $) 46)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-4041 (((-112) $ $) NIL)) (-2850 (((-639 |#1|) $) 29)) (-1382 (((-766) $) NIL)) (-3329 (($) NIL T CONST)) (-2403 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 20)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3960 ((|#1| $) NIL)) (-1434 (($ $) 31)) (-1694 (((-3 $ "failed") $) NIL)) (-4069 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-4367 (((-112) $) NIL)) (-3111 ((|#1| $ (-562)) NIL)) (-1646 (((-766) $ (-562)) NIL)) (-2572 (($ $) 35)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2303 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 17)) (-2483 (((-112) $ $) 33)) (-3641 (((-766) $) 25)) (-3696 (((-1150) $) NIL)) (-2938 (($ $ $) NIL)) (-1616 (($ $ $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 ((|#1| $) 30)) (-2656 (((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $) NIL)) (-1774 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-4053 (((-857) $) NIL) (($ |#1|) NIL)) (-2294 (($) 15 T CONST)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 34)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ |#1| (-766)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-814 |#1|) (-13 (-841) (-1033 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-766))) (-15 -1421 (|#1| $)) (-15 -1434 ($ $)) (-15 -2572 ($ $)) (-15 -2483 ((-112) $ $)) (-15 -1616 ($ $ $)) (-15 -2938 ($ $ $)) (-15 -2303 ((-3 $ "failed") $ $)) (-15 -2403 ((-3 $ "failed") $ $)) (-15 -2303 ((-3 $ "failed") $ |#1|)) (-15 -2403 ((-3 $ "failed") $ |#1|)) (-15 -1774 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -4069 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1382 ((-766) $)) (-15 -1646 ((-766) $ (-562))) (-15 -3111 (|#1| $ (-562))) (-15 -2656 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $)) (-15 -3641 ((-766) $)) (-15 -2850 ((-639 |#1|) $)))) (-845)) (T -814))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-766)) (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-1421 (*1 *2 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-1434 (*1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-2572 (*1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-2483 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-814 *3)) (-4 *3 (-845)))) (-1616 (*1 *1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-2938 (*1 *1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-2303 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-2403 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-2303 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-2403 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-1774 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-814 *3)) (|:| |rm| (-814 *3)))) (-5 *1 (-814 *3)) (-4 *3 (-845)))) (-4069 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-814 *3)) (|:| |mm| (-814 *3)) (|:| |rm| (-814 *3)))) (-5 *1 (-814 *3)) (-4 *3 (-845)))) (-1382 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-814 *3)) (-4 *3 (-845)))) (-1646 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-766)) (-5 *1 (-814 *4)) (-4 *4 (-845)))) (-3111 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-814 *2)) (-4 *2 (-845)))) (-2656 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 (-766))))) (-5 *1 (-814 *3)) (-4 *3 (-845)))) (-3641 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-814 *3)) (-4 *3 (-845)))) (-2850 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-814 *3)) (-4 *3 (-845)))))
+(-13 (-841) (-1033 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-766))) (-15 -1421 (|#1| $)) (-15 -1434 ($ $)) (-15 -2572 ($ $)) (-15 -2483 ((-112) $ $)) (-15 -1616 ($ $ $)) (-15 -2938 ($ $ $)) (-15 -2303 ((-3 $ "failed") $ $)) (-15 -2403 ((-3 $ "failed") $ $)) (-15 -2303 ((-3 $ "failed") $ |#1|)) (-15 -2403 ((-3 $ "failed") $ |#1|)) (-15 -1774 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -4069 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -1382 ((-766) $)) (-15 -1646 ((-766) $ (-562))) (-15 -3111 (|#1| $ (-562))) (-15 -2656 ((-639 (-2 (|:| |gen| |#1|) (|:| -3430 (-766)))) $)) (-15 -3641 ((-766) $)) (-15 -2850 ((-639 |#1|) $))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-1587 (((-562) $) 54)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-2696 (((-112) $) 52)) (-4367 (((-112) $) 31)) (-3855 (((-112) $) 53)) (-1551 (($ $ $) 51)) (-2993 (($ $ $) 50)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ $) 43)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-2757 (($ $) 55)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 48)) (-1771 (((-112) $ $) 47)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 49)) (-1761 (((-112) $ $) 46)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-815) (-139)) (T -815))
NIL
(-13 (-554) (-843))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-289) . T) ((-554) . T) ((-642 $) . T) ((-712 $) . T) ((-721) . T) ((-786) . T) ((-787) . T) ((-789) . T) ((-790) . T) ((-843) . T) ((-845) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-1887 (($ (-1112)) 7)) (-2760 (((-112) $ (-1150) (-1112)) 15)) (-3248 (((-817) $) 12)) (-4188 (((-817) $) 11)) (-1398 (((-1261) $) 9)) (-3331 (((-112) $ (-1112)) 16)))
-(((-816) (-10 -8 (-15 -1887 ($ (-1112))) (-15 -1398 ((-1261) $)) (-15 -4188 ((-817) $)) (-15 -3248 ((-817) $)) (-15 -2760 ((-112) $ (-1150) (-1112))) (-15 -3331 ((-112) $ (-1112))))) (T -816))
-((-3331 (*1 *2 *1 *3) (-12 (-5 *3 (-1112)) (-5 *2 (-112)) (-5 *1 (-816)))) (-2760 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-1112)) (-5 *2 (-112)) (-5 *1 (-816)))) (-3248 (*1 *2 *1) (-12 (-5 *2 (-817)) (-5 *1 (-816)))) (-4188 (*1 *2 *1) (-12 (-5 *2 (-817)) (-5 *1 (-816)))) (-1398 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-816)))) (-1887 (*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-816)))))
-(-10 -8 (-15 -1887 ($ (-1112))) (-15 -1398 ((-1261) $)) (-15 -4188 ((-817) $)) (-15 -3248 ((-817) $)) (-15 -2760 ((-112) $ (-1150) (-1112))) (-15 -3331 ((-112) $ (-1112))))
-((-2334 (((-1261) $ (-818)) 12)) (-2517 (((-1261) $ (-1168)) 32)) (-3004 (((-1261) $ (-1150) (-1150)) 34)) (-3345 (((-1261) $ (-1150)) 33)) (-2281 (((-1261) $) 19)) (-2191 (((-1261) $ (-562)) 28)) (-3858 (((-1261) $ (-224)) 30)) (-3832 (((-1261) $) 18)) (-3393 (((-1261) $) 26)) (-1684 (((-1261) $) 25)) (-4259 (((-1261) $) 23)) (-1910 (((-1261) $) 24)) (-2627 (((-1261) $) 22)) (-2518 (((-1261) $) 21)) (-3957 (((-1261) $) 20)) (-2629 (((-1261) $) 16)) (-4204 (((-1261) $) 17)) (-4025 (((-1261) $) 15)) (-3962 (((-1261) $) 14)) (-4126 (((-1261) $) 13)) (-3647 (($ (-1150) (-818)) 9)) (-1947 (($ (-1150) (-1150) (-818)) 8)) (-4058 (((-1168) $) 51)) (-2053 (((-1168) $) 55)) (-1313 (((-2 (|:| |cd| (-1150)) (|:| -3254 (-1150))) $) 54)) (-2781 (((-1150) $) 52)) (-3403 (((-1261) $) 41)) (-1343 (((-562) $) 49)) (-1871 (((-224) $) 50)) (-3624 (((-1261) $) 40)) (-2958 (((-1261) $) 48)) (-4371 (((-1261) $) 47)) (-3599 (((-1261) $) 45)) (-2611 (((-1261) $) 46)) (-2715 (((-1261) $) 44)) (-1729 (((-1261) $) 43)) (-2048 (((-1261) $) 42)) (-3397 (((-1261) $) 38)) (-2041 (((-1261) $) 39)) (-3042 (((-1261) $) 37)) (-1355 (((-1261) $) 36)) (-2812 (((-1261) $) 35)) (-2479 (((-1261) $) 11)))
-(((-817) (-10 -8 (-15 -1947 ($ (-1150) (-1150) (-818))) (-15 -3647 ($ (-1150) (-818))) (-15 -2479 ((-1261) $)) (-15 -2334 ((-1261) $ (-818))) (-15 -4126 ((-1261) $)) (-15 -3962 ((-1261) $)) (-15 -4025 ((-1261) $)) (-15 -2629 ((-1261) $)) (-15 -4204 ((-1261) $)) (-15 -3832 ((-1261) $)) (-15 -2281 ((-1261) $)) (-15 -3957 ((-1261) $)) (-15 -2518 ((-1261) $)) (-15 -2627 ((-1261) $)) (-15 -4259 ((-1261) $)) (-15 -1910 ((-1261) $)) (-15 -1684 ((-1261) $)) (-15 -3393 ((-1261) $)) (-15 -2191 ((-1261) $ (-562))) (-15 -3858 ((-1261) $ (-224))) (-15 -2517 ((-1261) $ (-1168))) (-15 -3345 ((-1261) $ (-1150))) (-15 -3004 ((-1261) $ (-1150) (-1150))) (-15 -2812 ((-1261) $)) (-15 -1355 ((-1261) $)) (-15 -3042 ((-1261) $)) (-15 -3397 ((-1261) $)) (-15 -2041 ((-1261) $)) (-15 -3624 ((-1261) $)) (-15 -3403 ((-1261) $)) (-15 -2048 ((-1261) $)) (-15 -1729 ((-1261) $)) (-15 -2715 ((-1261) $)) (-15 -3599 ((-1261) $)) (-15 -2611 ((-1261) $)) (-15 -4371 ((-1261) $)) (-15 -2958 ((-1261) $)) (-15 -1343 ((-562) $)) (-15 -1871 ((-224) $)) (-15 -4058 ((-1168) $)) (-15 -2781 ((-1150) $)) (-15 -1313 ((-2 (|:| |cd| (-1150)) (|:| -3254 (-1150))) $)) (-15 -2053 ((-1168) $)))) (T -817))
-((-2053 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-817)))) (-1313 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1150)) (|:| -3254 (-1150)))) (-5 *1 (-817)))) (-2781 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-817)))) (-4058 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-817)))) (-1871 (*1 *2 *1) (-12 (-5 *2 (-224)) (-5 *1 (-817)))) (-1343 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-817)))) (-2958 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-4371 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2611 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3599 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2715 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-1729 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2048 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3403 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3624 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2041 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3397 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3042 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-1355 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2812 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3004 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-817)))) (-3345 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-817)))) (-2517 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-817)))) (-3858 (*1 *2 *1 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1261)) (-5 *1 (-817)))) (-2191 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-817)))) (-3393 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-1684 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-1910 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-4259 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2627 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2518 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3957 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2281 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3832 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-4204 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2629 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-4025 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3962 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-4126 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2334 (*1 *2 *1 *3) (-12 (-5 *3 (-818)) (-5 *2 (-1261)) (-5 *1 (-817)))) (-2479 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3647 (*1 *1 *2 *3) (-12 (-5 *2 (-1150)) (-5 *3 (-818)) (-5 *1 (-817)))) (-1947 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1150)) (-5 *3 (-818)) (-5 *1 (-817)))))
-(-10 -8 (-15 -1947 ($ (-1150) (-1150) (-818))) (-15 -3647 ($ (-1150) (-818))) (-15 -2479 ((-1261) $)) (-15 -2334 ((-1261) $ (-818))) (-15 -4126 ((-1261) $)) (-15 -3962 ((-1261) $)) (-15 -4025 ((-1261) $)) (-15 -2629 ((-1261) $)) (-15 -4204 ((-1261) $)) (-15 -3832 ((-1261) $)) (-15 -2281 ((-1261) $)) (-15 -3957 ((-1261) $)) (-15 -2518 ((-1261) $)) (-15 -2627 ((-1261) $)) (-15 -4259 ((-1261) $)) (-15 -1910 ((-1261) $)) (-15 -1684 ((-1261) $)) (-15 -3393 ((-1261) $)) (-15 -2191 ((-1261) $ (-562))) (-15 -3858 ((-1261) $ (-224))) (-15 -2517 ((-1261) $ (-1168))) (-15 -3345 ((-1261) $ (-1150))) (-15 -3004 ((-1261) $ (-1150) (-1150))) (-15 -2812 ((-1261) $)) (-15 -1355 ((-1261) $)) (-15 -3042 ((-1261) $)) (-15 -3397 ((-1261) $)) (-15 -2041 ((-1261) $)) (-15 -3624 ((-1261) $)) (-15 -3403 ((-1261) $)) (-15 -2048 ((-1261) $)) (-15 -1729 ((-1261) $)) (-15 -2715 ((-1261) $)) (-15 -3599 ((-1261) $)) (-15 -2611 ((-1261) $)) (-15 -4371 ((-1261) $)) (-15 -2958 ((-1261) $)) (-15 -1343 ((-562) $)) (-15 -1871 ((-224) $)) (-15 -4058 ((-1168) $)) (-15 -2781 ((-1150) $)) (-15 -1313 ((-2 (|:| |cd| (-1150)) (|:| -3254 (-1150))) $)) (-15 -2053 ((-1168) $)))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 10)) (-2365 (($) 13)) (-4046 (($) 11)) (-2419 (($) 14)) (-3678 (($) 12)) (-1731 (((-112) $ $) 8)))
-(((-818) (-13 (-1092) (-10 -8 (-15 -4046 ($)) (-15 -2365 ($)) (-15 -2419 ($)) (-15 -3678 ($))))) (T -818))
-((-4046 (*1 *1) (-5 *1 (-818))) (-2365 (*1 *1) (-5 *1 (-818))) (-2419 (*1 *1) (-5 *1 (-818))) (-3678 (*1 *1) (-5 *1 (-818))))
-(-13 (-1092) (-10 -8 (-15 -4046 ($)) (-15 -2365 ($)) (-15 -2419 ($)) (-15 -3678 ($))))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 21) (($ (-1168)) 17)) (-1428 (((-112) $) 10)) (-2916 (((-112) $) 9)) (-2862 (((-112) $) 11)) (-2576 (((-112) $) 8)) (-1731 (((-112) $ $) 19)))
-(((-819) (-13 (-1092) (-10 -8 (-15 -4054 ($ (-1168))) (-15 -2576 ((-112) $)) (-15 -2916 ((-112) $)) (-15 -1428 ((-112) $)) (-15 -2862 ((-112) $))))) (T -819))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-819)))) (-2576 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))) (-2916 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))) (-1428 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))) (-2862 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))))
-(-13 (-1092) (-10 -8 (-15 -4054 ($ (-1168))) (-15 -2576 ((-112) $)) (-15 -2916 ((-112) $)) (-15 -1428 ((-112) $)) (-15 -2862 ((-112) $))))
-((-4041 (((-112) $ $) NIL)) (-2655 (($ (-819) (-639 (-1168))) 24)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3056 (((-819) $) 25)) (-3497 (((-639 (-1168)) $) 26)) (-4054 (((-857) $) 23)) (-1731 (((-112) $ $) NIL)))
-(((-820) (-13 (-1092) (-10 -8 (-15 -3056 ((-819) $)) (-15 -3497 ((-639 (-1168)) $)) (-15 -2655 ($ (-819) (-639 (-1168))))))) (T -820))
-((-3056 (*1 *2 *1) (-12 (-5 *2 (-819)) (-5 *1 (-820)))) (-3497 (*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-820)))) (-2655 (*1 *1 *2 *3) (-12 (-5 *2 (-819)) (-5 *3 (-639 (-1168))) (-5 *1 (-820)))))
-(-13 (-1092) (-10 -8 (-15 -3056 ((-819) $)) (-15 -3497 ((-639 (-1168)) $)) (-15 -2655 ($ (-819) (-639 (-1168))))))
-((-2833 (((-1261) (-817) (-315 |#1|) (-112)) 23) (((-1261) (-817) (-315 |#1|)) 79) (((-1150) (-315 |#1|) (-112)) 78) (((-1150) (-315 |#1|)) 77)))
-(((-821 |#1|) (-10 -7 (-15 -2833 ((-1150) (-315 |#1|))) (-15 -2833 ((-1150) (-315 |#1|) (-112))) (-15 -2833 ((-1261) (-817) (-315 |#1|))) (-15 -2833 ((-1261) (-817) (-315 |#1|) (-112)))) (-13 (-823) (-845) (-1044))) (T -821))
-((-2833 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-817)) (-5 *4 (-315 *6)) (-5 *5 (-112)) (-4 *6 (-13 (-823) (-845) (-1044))) (-5 *2 (-1261)) (-5 *1 (-821 *6)))) (-2833 (*1 *2 *3 *4) (-12 (-5 *3 (-817)) (-5 *4 (-315 *5)) (-4 *5 (-13 (-823) (-845) (-1044))) (-5 *2 (-1261)) (-5 *1 (-821 *5)))) (-2833 (*1 *2 *3 *4) (-12 (-5 *3 (-315 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-823) (-845) (-1044))) (-5 *2 (-1150)) (-5 *1 (-821 *5)))) (-2833 (*1 *2 *3) (-12 (-5 *3 (-315 *4)) (-4 *4 (-13 (-823) (-845) (-1044))) (-5 *2 (-1150)) (-5 *1 (-821 *4)))))
-(-10 -7 (-15 -2833 ((-1150) (-315 |#1|))) (-15 -2833 ((-1150) (-315 |#1|) (-112))) (-15 -2833 ((-1261) (-817) (-315 |#1|))) (-15 -2833 ((-1261) (-817) (-315 |#1|) (-112))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-4294 ((|#1| $) 10)) (-2431 (($ |#1|) 9)) (-1957 (((-112) $) NIL)) (-1378 (($ |#2| (-766)) NIL)) (-2076 (((-766) $) NIL)) (-1573 ((|#2| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4029 (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $) NIL (|has| |#1| (-232)))) (-3598 (((-766) $) NIL)) (-4054 (((-857) $) 17) (($ (-562)) NIL) (($ |#2|) NIL (|has| |#2| (-171)))) (-3906 ((|#2| $ (-766)) NIL)) (-2579 (((-766)) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $) NIL (|has| |#1| (-232)))) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-822 |#1| |#2|) (-13 (-703 |#2|) (-10 -8 (IF (|has| |#1| (-232)) (-6 (-232)) |%noBranch|) (-15 -2431 ($ |#1|)) (-15 -4294 (|#1| $)))) (-703 |#2|) (-1044)) (T -822))
-((-2431 (*1 *1 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-822 *2 *3)) (-4 *2 (-703 *3)))) (-4294 (*1 *2 *1) (-12 (-4 *2 (-703 *3)) (-5 *1 (-822 *2 *3)) (-4 *3 (-1044)))))
-(-13 (-703 |#2|) (-10 -8 (IF (|has| |#1| (-232)) (-6 (-232)) |%noBranch|) (-15 -2431 ($ |#1|)) (-15 -4294 (|#1| $))))
-((-2833 (((-1261) (-817) $ (-112)) 9) (((-1261) (-817) $) 8) (((-1150) $ (-112)) 7) (((-1150) $) 6)))
+((-1846 (($ (-1112)) 7)) (-2773 (((-112) $ (-1150) (-1112)) 15)) (-1927 (((-817) $) 12)) (-2924 (((-817) $) 11)) (-1696 (((-1261) $) 9)) (-1390 (((-112) $ (-1112)) 16)))
+(((-816) (-10 -8 (-15 -1846 ($ (-1112))) (-15 -1696 ((-1261) $)) (-15 -2924 ((-817) $)) (-15 -1927 ((-817) $)) (-15 -2773 ((-112) $ (-1150) (-1112))) (-15 -1390 ((-112) $ (-1112))))) (T -816))
+((-1390 (*1 *2 *1 *3) (-12 (-5 *3 (-1112)) (-5 *2 (-112)) (-5 *1 (-816)))) (-2773 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-1112)) (-5 *2 (-112)) (-5 *1 (-816)))) (-1927 (*1 *2 *1) (-12 (-5 *2 (-817)) (-5 *1 (-816)))) (-2924 (*1 *2 *1) (-12 (-5 *2 (-817)) (-5 *1 (-816)))) (-1696 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-816)))) (-1846 (*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-816)))))
+(-10 -8 (-15 -1846 ($ (-1112))) (-15 -1696 ((-1261) $)) (-15 -2924 ((-817) $)) (-15 -1927 ((-817) $)) (-15 -2773 ((-112) $ (-1150) (-1112))) (-15 -1390 ((-112) $ (-1112))))
+((-3985 (((-1261) $ (-818)) 12)) (-2185 (((-1261) $ (-1168)) 32)) (-3332 (((-1261) $ (-1150) (-1150)) 34)) (-1561 (((-1261) $ (-1150)) 33)) (-1633 (((-1261) $) 19)) (-2011 (((-1261) $ (-562)) 28)) (-2911 (((-1261) $ (-224)) 30)) (-2702 (((-1261) $) 18)) (-3868 (((-1261) $) 26)) (-3534 (((-1261) $) 25)) (-2404 (((-1261) $) 23)) (-2105 (((-1261) $) 24)) (-3898 (((-1261) $) 22)) (-2195 (((-1261) $) 21)) (-1489 (((-1261) $) 20)) (-3922 (((-1261) $) 16)) (-1909 (((-1261) $) 17)) (-3962 (((-1261) $) 15)) (-1539 (((-1261) $) 14)) (-2465 (((-1261) $) 13)) (-1450 (($ (-1150) (-818)) 9)) (-4275 (($ (-1150) (-1150) (-818)) 8)) (-3011 (((-1168) $) 51)) (-2926 (((-1168) $) 55)) (-1735 (((-2 (|:| |cd| (-1150)) (|:| -3253 (-1150))) $) 54)) (-1782 (((-1150) $) 52)) (-3958 (((-1261) $) 41)) (-2076 (((-562) $) 49)) (-1658 (((-224) $) 50)) (-4303 (((-1261) $) 40)) (-4163 (((-1261) $) 48)) (-4114 (((-1261) $) 47)) (-2258 (((-1261) $) 45)) (-3710 (((-1261) $) 46)) (-3500 (((-1261) $) 44)) (-3948 (((-1261) $) 43)) (-2885 (((-1261) $) 42)) (-3892 (((-1261) $) 38)) (-4012 (((-1261) $) 39)) (-3569 (((-1261) $) 37)) (-1518 (((-1261) $) 36)) (-2131 (((-1261) $) 35)) (-1786 (((-1261) $) 11)))
+(((-817) (-10 -8 (-15 -4275 ($ (-1150) (-1150) (-818))) (-15 -1450 ($ (-1150) (-818))) (-15 -1786 ((-1261) $)) (-15 -3985 ((-1261) $ (-818))) (-15 -2465 ((-1261) $)) (-15 -1539 ((-1261) $)) (-15 -3962 ((-1261) $)) (-15 -3922 ((-1261) $)) (-15 -1909 ((-1261) $)) (-15 -2702 ((-1261) $)) (-15 -1633 ((-1261) $)) (-15 -1489 ((-1261) $)) (-15 -2195 ((-1261) $)) (-15 -3898 ((-1261) $)) (-15 -2404 ((-1261) $)) (-15 -2105 ((-1261) $)) (-15 -3534 ((-1261) $)) (-15 -3868 ((-1261) $)) (-15 -2011 ((-1261) $ (-562))) (-15 -2911 ((-1261) $ (-224))) (-15 -2185 ((-1261) $ (-1168))) (-15 -1561 ((-1261) $ (-1150))) (-15 -3332 ((-1261) $ (-1150) (-1150))) (-15 -2131 ((-1261) $)) (-15 -1518 ((-1261) $)) (-15 -3569 ((-1261) $)) (-15 -3892 ((-1261) $)) (-15 -4012 ((-1261) $)) (-15 -4303 ((-1261) $)) (-15 -3958 ((-1261) $)) (-15 -2885 ((-1261) $)) (-15 -3948 ((-1261) $)) (-15 -3500 ((-1261) $)) (-15 -2258 ((-1261) $)) (-15 -3710 ((-1261) $)) (-15 -4114 ((-1261) $)) (-15 -4163 ((-1261) $)) (-15 -2076 ((-562) $)) (-15 -1658 ((-224) $)) (-15 -3011 ((-1168) $)) (-15 -1782 ((-1150) $)) (-15 -1735 ((-2 (|:| |cd| (-1150)) (|:| -3253 (-1150))) $)) (-15 -2926 ((-1168) $)))) (T -817))
+((-2926 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-817)))) (-1735 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1150)) (|:| -3253 (-1150)))) (-5 *1 (-817)))) (-1782 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-817)))) (-3011 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-817)))) (-1658 (*1 *2 *1) (-12 (-5 *2 (-224)) (-5 *1 (-817)))) (-2076 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-817)))) (-4163 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-4114 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3710 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2258 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3500 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3948 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2885 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3958 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-4303 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-4012 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3892 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3569 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-1518 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2131 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3332 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-817)))) (-1561 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-817)))) (-2185 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-817)))) (-2911 (*1 *2 *1 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1261)) (-5 *1 (-817)))) (-2011 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-817)))) (-3868 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3534 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2105 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2404 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3898 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2195 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-1489 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-1633 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2702 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-1909 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3922 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3962 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-1539 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-2465 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-3985 (*1 *2 *1 *3) (-12 (-5 *3 (-818)) (-5 *2 (-1261)) (-5 *1 (-817)))) (-1786 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))) (-1450 (*1 *1 *2 *3) (-12 (-5 *2 (-1150)) (-5 *3 (-818)) (-5 *1 (-817)))) (-4275 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1150)) (-5 *3 (-818)) (-5 *1 (-817)))))
+(-10 -8 (-15 -4275 ($ (-1150) (-1150) (-818))) (-15 -1450 ($ (-1150) (-818))) (-15 -1786 ((-1261) $)) (-15 -3985 ((-1261) $ (-818))) (-15 -2465 ((-1261) $)) (-15 -1539 ((-1261) $)) (-15 -3962 ((-1261) $)) (-15 -3922 ((-1261) $)) (-15 -1909 ((-1261) $)) (-15 -2702 ((-1261) $)) (-15 -1633 ((-1261) $)) (-15 -1489 ((-1261) $)) (-15 -2195 ((-1261) $)) (-15 -3898 ((-1261) $)) (-15 -2404 ((-1261) $)) (-15 -2105 ((-1261) $)) (-15 -3534 ((-1261) $)) (-15 -3868 ((-1261) $)) (-15 -2011 ((-1261) $ (-562))) (-15 -2911 ((-1261) $ (-224))) (-15 -2185 ((-1261) $ (-1168))) (-15 -1561 ((-1261) $ (-1150))) (-15 -3332 ((-1261) $ (-1150) (-1150))) (-15 -2131 ((-1261) $)) (-15 -1518 ((-1261) $)) (-15 -3569 ((-1261) $)) (-15 -3892 ((-1261) $)) (-15 -4012 ((-1261) $)) (-15 -4303 ((-1261) $)) (-15 -3958 ((-1261) $)) (-15 -2885 ((-1261) $)) (-15 -3948 ((-1261) $)) (-15 -3500 ((-1261) $)) (-15 -2258 ((-1261) $)) (-15 -3710 ((-1261) $)) (-15 -4114 ((-1261) $)) (-15 -4163 ((-1261) $)) (-15 -2076 ((-562) $)) (-15 -1658 ((-224) $)) (-15 -3011 ((-1168) $)) (-15 -1782 ((-1150) $)) (-15 -1735 ((-2 (|:| |cd| (-1150)) (|:| -3253 (-1150))) $)) (-15 -2926 ((-1168) $)))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 10)) (-3031 (($) 13)) (-4164 (($) 11)) (-2440 (($) 14)) (-3624 (($) 12)) (-1733 (((-112) $ $) 8)))
+(((-818) (-13 (-1092) (-10 -8 (-15 -4164 ($)) (-15 -3031 ($)) (-15 -2440 ($)) (-15 -3624 ($))))) (T -818))
+((-4164 (*1 *1) (-5 *1 (-818))) (-3031 (*1 *1) (-5 *1 (-818))) (-2440 (*1 *1) (-5 *1 (-818))) (-3624 (*1 *1) (-5 *1 (-818))))
+(-13 (-1092) (-10 -8 (-15 -4164 ($)) (-15 -3031 ($)) (-15 -2440 ($)) (-15 -3624 ($))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 21) (($ (-1168)) 17)) (-1973 (((-112) $) 10)) (-3727 (((-112) $) 9)) (-1326 (((-112) $) 11)) (-1530 (((-112) $) 8)) (-1733 (((-112) $ $) 19)))
+(((-819) (-13 (-1092) (-10 -8 (-15 -4053 ($ (-1168))) (-15 -1530 ((-112) $)) (-15 -3727 ((-112) $)) (-15 -1973 ((-112) $)) (-15 -1326 ((-112) $))))) (T -819))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-819)))) (-1530 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))) (-3727 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))) (-1973 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))) (-1326 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))))
+(-13 (-1092) (-10 -8 (-15 -4053 ($ (-1168))) (-15 -1530 ((-112) $)) (-15 -3727 ((-112) $)) (-15 -1973 ((-112) $)) (-15 -1326 ((-112) $))))
+((-4041 (((-112) $ $) NIL)) (-2963 (($ (-819) (-639 (-1168))) 24)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3687 (((-819) $) 25)) (-2494 (((-639 (-1168)) $) 26)) (-4053 (((-857) $) 23)) (-1733 (((-112) $ $) NIL)))
+(((-820) (-13 (-1092) (-10 -8 (-15 -3687 ((-819) $)) (-15 -2494 ((-639 (-1168)) $)) (-15 -2963 ($ (-819) (-639 (-1168))))))) (T -820))
+((-3687 (*1 *2 *1) (-12 (-5 *2 (-819)) (-5 *1 (-820)))) (-2494 (*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-820)))) (-2963 (*1 *1 *2 *3) (-12 (-5 *2 (-819)) (-5 *3 (-639 (-1168))) (-5 *1 (-820)))))
+(-13 (-1092) (-10 -8 (-15 -3687 ((-819) $)) (-15 -2494 ((-639 (-1168)) $)) (-15 -2963 ($ (-819) (-639 (-1168))))))
+((-2332 (((-1261) (-817) (-315 |#1|) (-112)) 23) (((-1261) (-817) (-315 |#1|)) 79) (((-1150) (-315 |#1|) (-112)) 78) (((-1150) (-315 |#1|)) 77)))
+(((-821 |#1|) (-10 -7 (-15 -2332 ((-1150) (-315 |#1|))) (-15 -2332 ((-1150) (-315 |#1|) (-112))) (-15 -2332 ((-1261) (-817) (-315 |#1|))) (-15 -2332 ((-1261) (-817) (-315 |#1|) (-112)))) (-13 (-823) (-845) (-1044))) (T -821))
+((-2332 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-817)) (-5 *4 (-315 *6)) (-5 *5 (-112)) (-4 *6 (-13 (-823) (-845) (-1044))) (-5 *2 (-1261)) (-5 *1 (-821 *6)))) (-2332 (*1 *2 *3 *4) (-12 (-5 *3 (-817)) (-5 *4 (-315 *5)) (-4 *5 (-13 (-823) (-845) (-1044))) (-5 *2 (-1261)) (-5 *1 (-821 *5)))) (-2332 (*1 *2 *3 *4) (-12 (-5 *3 (-315 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-823) (-845) (-1044))) (-5 *2 (-1150)) (-5 *1 (-821 *5)))) (-2332 (*1 *2 *3) (-12 (-5 *3 (-315 *4)) (-4 *4 (-13 (-823) (-845) (-1044))) (-5 *2 (-1150)) (-5 *1 (-821 *4)))))
+(-10 -7 (-15 -2332 ((-1150) (-315 |#1|))) (-15 -2332 ((-1150) (-315 |#1|) (-112))) (-15 -2332 ((-1261) (-817) (-315 |#1|))) (-15 -2332 ((-1261) (-817) (-315 |#1|) (-112))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1509 ((|#1| $) 10)) (-2429 (($ |#1|) 9)) (-4367 (((-112) $) NIL)) (-1377 (($ |#2| (-766)) NIL)) (-3161 (((-766) $) NIL)) (-1573 ((|#2| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4029 (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $) NIL (|has| |#1| (-232)))) (-2250 (((-766) $) NIL)) (-4053 (((-857) $) 17) (($ (-562)) NIL) (($ |#2|) NIL (|has| |#2| (-171)))) (-2266 ((|#2| $ (-766)) NIL)) (-1568 (((-766)) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $) NIL (|has| |#1| (-232)))) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-822 |#1| |#2|) (-13 (-703 |#2|) (-10 -8 (IF (|has| |#1| (-232)) (-6 (-232)) |%noBranch|) (-15 -2429 ($ |#1|)) (-15 -1509 (|#1| $)))) (-703 |#2|) (-1044)) (T -822))
+((-2429 (*1 *1 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-822 *2 *3)) (-4 *2 (-703 *3)))) (-1509 (*1 *2 *1) (-12 (-4 *2 (-703 *3)) (-5 *1 (-822 *2 *3)) (-4 *3 (-1044)))))
+(-13 (-703 |#2|) (-10 -8 (IF (|has| |#1| (-232)) (-6 (-232)) |%noBranch|) (-15 -2429 ($ |#1|)) (-15 -1509 (|#1| $))))
+((-2332 (((-1261) (-817) $ (-112)) 9) (((-1261) (-817) $) 8) (((-1150) $ (-112)) 7) (((-1150) $) 6)))
(((-823) (-139)) (T -823))
-((-2833 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-823)) (-5 *3 (-817)) (-5 *4 (-112)) (-5 *2 (-1261)))) (-2833 (*1 *2 *3 *1) (-12 (-4 *1 (-823)) (-5 *3 (-817)) (-5 *2 (-1261)))) (-2833 (*1 *2 *1 *3) (-12 (-4 *1 (-823)) (-5 *3 (-112)) (-5 *2 (-1150)))) (-2833 (*1 *2 *1) (-12 (-4 *1 (-823)) (-5 *2 (-1150)))))
-(-13 (-10 -8 (-15 -2833 ((-1150) $)) (-15 -2833 ((-1150) $ (-112))) (-15 -2833 ((-1261) (-817) $)) (-15 -2833 ((-1261) (-817) $ (-112)))))
-((-2478 (((-311) (-1150) (-1150)) 12)) (-3975 (((-112) (-1150) (-1150)) 33)) (-2115 (((-112) (-1150)) 32)) (-2192 (((-52) (-1150)) 25)) (-2491 (((-52) (-1150)) 23)) (-3991 (((-52) (-817)) 17)) (-4094 (((-639 (-1150)) (-1150)) 28)) (-1513 (((-639 (-1150))) 27)))
-(((-824) (-10 -7 (-15 -3991 ((-52) (-817))) (-15 -2491 ((-52) (-1150))) (-15 -2192 ((-52) (-1150))) (-15 -1513 ((-639 (-1150)))) (-15 -4094 ((-639 (-1150)) (-1150))) (-15 -2115 ((-112) (-1150))) (-15 -3975 ((-112) (-1150) (-1150))) (-15 -2478 ((-311) (-1150) (-1150))))) (T -824))
-((-2478 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-311)) (-5 *1 (-824)))) (-3975 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-112)) (-5 *1 (-824)))) (-2115 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-112)) (-5 *1 (-824)))) (-4094 (*1 *2 *3) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-824)) (-5 *3 (-1150)))) (-1513 (*1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-824)))) (-2192 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-52)) (-5 *1 (-824)))) (-2491 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-52)) (-5 *1 (-824)))) (-3991 (*1 *2 *3) (-12 (-5 *3 (-817)) (-5 *2 (-52)) (-5 *1 (-824)))))
-(-10 -7 (-15 -3991 ((-52) (-817))) (-15 -2491 ((-52) (-1150))) (-15 -2192 ((-52) (-1150))) (-15 -1513 ((-639 (-1150)))) (-15 -4094 ((-639 (-1150)) (-1150))) (-15 -2115 ((-112) (-1150))) (-15 -3975 ((-112) (-1150) (-1150))) (-15 -2478 ((-311) (-1150) (-1150))))
-((-4041 (((-112) $ $) 19)) (-2494 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-2129 (($ $ $) 72)) (-2330 (((-112) $ $) 73)) (-4336 (((-112) $ (-766)) 8)) (-1608 (($ (-639 |#1|)) 68) (($) 67)) (-3111 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-4354 (($ $) 62)) (-1459 (($ $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4000 (($ |#1| $) 47 (|has| $ (-6 -4402))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4402)))) (-1475 (($ |#1| $) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4402)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3027 (((-112) $ $) 64)) (-3292 (((-112) $ (-766)) 9)) (-1551 ((|#1| $) 78)) (-2673 (($ $ $) 81)) (-1610 (($ $ $) 80)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-2993 ((|#1| $) 79)) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22)) (-4376 (($ $ $) 69)) (-3262 ((|#1| $) 39)) (-4300 (($ |#1| $) 40) (($ |#1| $ (-766)) 63)) (-1709 (((-1112) $) 21)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-1904 ((|#1| $) 41)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2671 (((-639 (-2 (|:| -2694 |#1|) (|:| -1723 (-766)))) $) 61)) (-3703 (($ $ |#1|) 71) (($ $ $) 70)) (-3564 (($) 49) (($ (-639 |#1|)) 48)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 50)) (-4054 (((-857) $) 18)) (-1703 (($ (-639 |#1|)) 66) (($) 65)) (-1932 (($ (-639 |#1|)) 42)) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20)) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-2332 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-823)) (-5 *3 (-817)) (-5 *4 (-112)) (-5 *2 (-1261)))) (-2332 (*1 *2 *3 *1) (-12 (-4 *1 (-823)) (-5 *3 (-817)) (-5 *2 (-1261)))) (-2332 (*1 *2 *1 *3) (-12 (-4 *1 (-823)) (-5 *3 (-112)) (-5 *2 (-1150)))) (-2332 (*1 *2 *1) (-12 (-4 *1 (-823)) (-5 *2 (-1150)))))
+(-13 (-10 -8 (-15 -2332 ((-1150) $)) (-15 -2332 ((-1150) $ (-112))) (-15 -2332 ((-1261) (-817) $)) (-15 -2332 ((-1261) (-817) $ (-112)))))
+((-1773 (((-311) (-1150) (-1150)) 12)) (-1680 (((-112) (-1150) (-1150)) 33)) (-2426 (((-112) (-1150)) 32)) (-2022 (((-52) (-1150)) 25)) (-1922 (((-52) (-1150)) 23)) (-3642 (((-52) (-817)) 17)) (-3333 (((-639 (-1150)) (-1150)) 28)) (-2688 (((-639 (-1150))) 27)))
+(((-824) (-10 -7 (-15 -3642 ((-52) (-817))) (-15 -1922 ((-52) (-1150))) (-15 -2022 ((-52) (-1150))) (-15 -2688 ((-639 (-1150)))) (-15 -3333 ((-639 (-1150)) (-1150))) (-15 -2426 ((-112) (-1150))) (-15 -1680 ((-112) (-1150) (-1150))) (-15 -1773 ((-311) (-1150) (-1150))))) (T -824))
+((-1773 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-311)) (-5 *1 (-824)))) (-1680 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-112)) (-5 *1 (-824)))) (-2426 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-112)) (-5 *1 (-824)))) (-3333 (*1 *2 *3) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-824)) (-5 *3 (-1150)))) (-2688 (*1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-824)))) (-2022 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-52)) (-5 *1 (-824)))) (-1922 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-52)) (-5 *1 (-824)))) (-3642 (*1 *2 *3) (-12 (-5 *3 (-817)) (-5 *2 (-52)) (-5 *1 (-824)))))
+(-10 -7 (-15 -3642 ((-52) (-817))) (-15 -1922 ((-52) (-1150))) (-15 -2022 ((-52) (-1150))) (-15 -2688 ((-639 (-1150)))) (-15 -3333 ((-639 (-1150)) (-1150))) (-15 -2426 ((-112) (-1150))) (-15 -1680 ((-112) (-1150) (-1150))) (-15 -1773 ((-311) (-1150) (-1150))))
+((-4041 (((-112) $ $) 19)) (-2492 (($ |#1| $) 76) (($ $ |#1|) 75) (($ $ $) 74)) (-2570 (($ $ $) 72)) (-3938 (((-112) $ $) 73)) (-3735 (((-112) $ (-766)) 8)) (-1607 (($ (-639 |#1|)) 68) (($) 67)) (-2968 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-3923 (($ $) 62)) (-1459 (($ $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-3729 (($ |#1| $) 47 (|has| $ (-6 -4403))) (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4403)))) (-1475 (($ |#1| $) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 54 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 56 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 53 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 52 (|has| $ (-6 -4403)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-3528 (((-112) $ $) 64)) (-4172 (((-112) $ (-766)) 9)) (-1551 ((|#1| $) 78)) (-3124 (($ $ $) 81)) (-4103 (($ $ $) 80)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-2993 ((|#1| $) 79)) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22)) (-4169 (($ $ $) 69)) (-2078 ((|#1| $) 39)) (-1581 (($ |#1| $) 40) (($ |#1| $ (-766)) 63)) (-1709 (((-1112) $) 21)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 51)) (-2038 ((|#1| $) 41)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-3110 (((-639 (-2 (|:| -2693 |#1|) (|:| -1723 (-766)))) $) 61)) (-3874 (($ $ |#1|) 71) (($ $ $) 70)) (-1932 (($) 49) (($ (-639 |#1|)) 48)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 50)) (-4053 (((-857) $) 18)) (-1702 (($ (-639 |#1|)) 66) (($) 65)) (-4131 (($ (-639 |#1|)) 42)) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20)) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-825 |#1|) (-139) (-845)) (T -825))
((-1551 (*1 *2 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-845)))))
(-13 (-731 |t#1|) (-963 |t#1|) (-10 -8 (-15 -1551 (|t#1| $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-609 (-857)) . T) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-234 |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-689 |#1|) . T) ((-731 |#1|) . T) ((-963 |#1|) . T) ((-1090 |#1|) . T) ((-1092) . T) ((-1207) . T))
-((-3368 (((-1261) (-1112) (-1112)) 47)) (-3705 (((-1261) (-816) (-52)) 44)) (-2234 (((-52) (-816)) 16)))
-(((-826) (-10 -7 (-15 -2234 ((-52) (-816))) (-15 -3705 ((-1261) (-816) (-52))) (-15 -3368 ((-1261) (-1112) (-1112))))) (T -826))
-((-3368 (*1 *2 *3 *3) (-12 (-5 *3 (-1112)) (-5 *2 (-1261)) (-5 *1 (-826)))) (-3705 (*1 *2 *3 *4) (-12 (-5 *3 (-816)) (-5 *4 (-52)) (-5 *2 (-1261)) (-5 *1 (-826)))) (-2234 (*1 *2 *3) (-12 (-5 *3 (-816)) (-5 *2 (-52)) (-5 *1 (-826)))))
-(-10 -7 (-15 -2234 ((-52) (-816))) (-15 -3705 ((-1261) (-816) (-52))) (-15 -3368 ((-1261) (-1112) (-1112))))
+((-3593 (((-1261) (-1112) (-1112)) 47)) (-3899 (((-1261) (-816) (-52)) 44)) (-4262 (((-52) (-816)) 16)))
+(((-826) (-10 -7 (-15 -4262 ((-52) (-816))) (-15 -3899 ((-1261) (-816) (-52))) (-15 -3593 ((-1261) (-1112) (-1112))))) (T -826))
+((-3593 (*1 *2 *3 *3) (-12 (-5 *3 (-1112)) (-5 *2 (-1261)) (-5 *1 (-826)))) (-3899 (*1 *2 *3 *4) (-12 (-5 *3 (-816)) (-5 *4 (-52)) (-5 *2 (-1261)) (-5 *1 (-826)))) (-4262 (*1 *2 *3) (-12 (-5 *3 (-816)) (-5 *2 (-52)) (-5 *1 (-826)))))
+(-10 -7 (-15 -4262 ((-52) (-816))) (-15 -3899 ((-1261) (-816) (-52))) (-15 -3593 ((-1261) (-1112) (-1112))))
((-4152 (((-828 |#2|) (-1 |#2| |#1|) (-828 |#1|) (-828 |#2|)) 12) (((-828 |#2|) (-1 |#2| |#1|) (-828 |#1|)) 13)))
(((-827 |#1| |#2|) (-10 -7 (-15 -4152 ((-828 |#2|) (-1 |#2| |#1|) (-828 |#1|))) (-15 -4152 ((-828 |#2|) (-1 |#2| |#1|) (-828 |#1|) (-828 |#2|)))) (-1092) (-1092)) (T -827))
((-4152 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-828 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-828 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-5 *1 (-827 *5 *6)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-828 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-5 *2 (-828 *6)) (-5 *1 (-827 *5 *6)))))
(-10 -7 (-15 -4152 ((-828 |#2|) (-1 |#2| |#1|) (-828 |#1|))) (-15 -4152 ((-828 |#2|) (-1 |#2| |#1|) (-828 |#1|) (-828 |#2|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL (|has| |#1| (-21)))) (-3214 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2277 (((-562) $) NIL (|has| |#1| (-843)))) (-1800 (($) NIL (|has| |#1| (-21)) CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 15)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 9)) (-3668 (((-3 $ "failed") $) 40 (|has| |#1| (-843)))) (-1726 (((-3 (-406 (-562)) "failed") $) 49 (|has| |#1| (-544)))) (-3035 (((-112) $) 43 (|has| |#1| (-544)))) (-1291 (((-406 (-562)) $) 46 (|has| |#1| (-544)))) (-3519 (((-112) $) NIL (|has| |#1| (-843)))) (-1957 (((-112) $) NIL (|has| |#1| (-843)))) (-3392 (((-112) $) NIL (|has| |#1| (-843)))) (-1551 (($ $ $) NIL (|has| |#1| (-843)))) (-2993 (($ $ $) NIL (|has| |#1| (-843)))) (-2913 (((-1150) $) NIL)) (-4113 (($) 13)) (-1345 (((-112) $) 12)) (-1709 (((-1112) $) NIL)) (-2939 (((-112) $) 11)) (-4054 (((-857) $) 18) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) 8) (($ (-562)) NIL (-4037 (|has| |#1| (-843)) (|has| |#1| (-1033 (-562)))))) (-2579 (((-766)) 34 (|has| |#1| (-843)))) (-3526 (($ $) NIL (|has| |#1| (-843)))) (-2286 (($) 22 (|has| |#1| (-21)) CONST)) (-2294 (($) 31 (|has| |#1| (-843)) CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1731 (((-112) $ $) 20)) (-1785 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1759 (((-112) $ $) 42 (|has| |#1| (-843)))) (-1848 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 27 (|has| |#1| (-21)))) (-1835 (($ $ $) 29 (|has| |#1| (-21)))) (** (($ $ (-916)) NIL (|has| |#1| (-843))) (($ $ (-766)) NIL (|has| |#1| (-843)))) (* (($ $ $) 37 (|has| |#1| (-843))) (($ (-562) $) 25 (|has| |#1| (-21))) (($ (-766) $) NIL (|has| |#1| (-21))) (($ (-916) $) NIL (|has| |#1| (-21)))))
-(((-828 |#1|) (-13 (-1092) (-410 |#1|) (-10 -8 (-15 -4113 ($)) (-15 -2939 ((-112) $)) (-15 -1345 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-843)) |%noBranch|) (IF (|has| |#1| (-544)) (PROGN (-15 -3035 ((-112) $)) (-15 -1291 ((-406 (-562)) $)) (-15 -1726 ((-3 (-406 (-562)) "failed") $))) |%noBranch|))) (-1092)) (T -828))
-((-4113 (*1 *1) (-12 (-5 *1 (-828 *2)) (-4 *2 (-1092)))) (-2939 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-828 *3)) (-4 *3 (-1092)))) (-1345 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-828 *3)) (-4 *3 (-1092)))) (-3035 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-828 *3)) (-4 *3 (-544)) (-4 *3 (-1092)))) (-1291 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-828 *3)) (-4 *3 (-544)) (-4 *3 (-1092)))) (-1726 (*1 *2 *1) (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-828 *3)) (-4 *3 (-544)) (-4 *3 (-1092)))))
-(-13 (-1092) (-410 |#1|) (-10 -8 (-15 -4113 ($)) (-15 -2939 ((-112) $)) (-15 -1345 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-843)) |%noBranch|) (IF (|has| |#1| (-544)) (PROGN (-15 -3035 ((-112) $)) (-15 -1291 ((-406 (-562)) $)) (-15 -1726 ((-3 (-406 (-562)) "failed") $))) |%noBranch|)))
-((-4054 (((-857) $) 11)))
-(((-829 |#1| |#2|) (-10 -8 (-15 -4054 ((-857) |#1|))) (-830 |#2|) (-1092)) (T -829))
-NIL
-(-10 -8 (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-3254 ((|#1| $) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-3087 (((-55) $) 13)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL (|has| |#1| (-21)))) (-2781 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-1587 (((-562) $) NIL (|has| |#1| (-843)))) (-3329 (($) NIL (|has| |#1| (-21)) CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 15)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 9)) (-1694 (((-3 $ "failed") $) 40 (|has| |#1| (-843)))) (-3913 (((-3 (-406 (-562)) "failed") $) 49 (|has| |#1| (-544)))) (-3498 (((-112) $) 43 (|has| |#1| (-544)))) (-3854 (((-406 (-562)) $) 46 (|has| |#1| (-544)))) (-2696 (((-112) $) NIL (|has| |#1| (-843)))) (-4367 (((-112) $) NIL (|has| |#1| (-843)))) (-3855 (((-112) $) NIL (|has| |#1| (-843)))) (-1551 (($ $ $) NIL (|has| |#1| (-843)))) (-2993 (($ $ $) NIL (|has| |#1| (-843)))) (-3696 (((-1150) $) NIL)) (-4113 (($) 13)) (-2098 (((-112) $) 12)) (-1709 (((-1112) $) NIL)) (-3973 (((-112) $) 11)) (-4053 (((-857) $) 18) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) 8) (($ (-562)) NIL (-4037 (|has| |#1| (-843)) (|has| |#1| (-1033 (-562)))))) (-1568 (((-766)) 34 (|has| |#1| (-843)))) (-2757 (($ $) NIL (|has| |#1| (-843)))) (-2285 (($) 22 (|has| |#1| (-21)) CONST)) (-2294 (($) 31 (|has| |#1| (-843)) CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1733 (((-112) $ $) 20)) (-1785 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1761 (((-112) $ $) 42 (|has| |#1| (-843)))) (-1847 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 27 (|has| |#1| (-21)))) (-1836 (($ $ $) 29 (|has| |#1| (-21)))) (** (($ $ (-916)) NIL (|has| |#1| (-843))) (($ $ (-766)) NIL (|has| |#1| (-843)))) (* (($ $ $) 37 (|has| |#1| (-843))) (($ (-562) $) 25 (|has| |#1| (-21))) (($ (-766) $) NIL (|has| |#1| (-21))) (($ (-916) $) NIL (|has| |#1| (-21)))))
+(((-828 |#1|) (-13 (-1092) (-410 |#1|) (-10 -8 (-15 -4113 ($)) (-15 -3973 ((-112) $)) (-15 -2098 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-843)) |%noBranch|) (IF (|has| |#1| (-544)) (PROGN (-15 -3498 ((-112) $)) (-15 -3854 ((-406 (-562)) $)) (-15 -3913 ((-3 (-406 (-562)) "failed") $))) |%noBranch|))) (-1092)) (T -828))
+((-4113 (*1 *1) (-12 (-5 *1 (-828 *2)) (-4 *2 (-1092)))) (-3973 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-828 *3)) (-4 *3 (-1092)))) (-2098 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-828 *3)) (-4 *3 (-1092)))) (-3498 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-828 *3)) (-4 *3 (-544)) (-4 *3 (-1092)))) (-3854 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-828 *3)) (-4 *3 (-544)) (-4 *3 (-1092)))) (-3913 (*1 *2 *1) (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-828 *3)) (-4 *3 (-544)) (-4 *3 (-1092)))))
+(-13 (-1092) (-410 |#1|) (-10 -8 (-15 -4113 ($)) (-15 -3973 ((-112) $)) (-15 -2098 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-843)) |%noBranch|) (IF (|has| |#1| (-544)) (PROGN (-15 -3498 ((-112) $)) (-15 -3854 ((-406 (-562)) $)) (-15 -3913 ((-3 (-406 (-562)) "failed") $))) |%noBranch|)))
+((-4053 (((-857) $) 11)))
+(((-829 |#1| |#2|) (-10 -8 (-15 -4053 ((-857) |#1|))) (-830 |#2|) (-1092)) (T -829))
+NIL
+(-10 -8 (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-3253 ((|#1| $) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-3975 (((-55) $) 13)) (-1733 (((-112) $ $) 6)))
(((-830 |#1|) (-139) (-1092)) (T -830))
-((-3254 (*1 *2 *1) (-12 (-4 *1 (-830 *2)) (-4 *2 (-1092)))) (-3087 (*1 *2 *1) (-12 (-4 *1 (-830 *3)) (-4 *3 (-1092)) (-5 *2 (-55)))))
-(-13 (-1092) (-10 -8 (-15 -3254 (|t#1| $)) (-15 -3087 ((-55) $))))
+((-3253 (*1 *2 *1) (-12 (-4 *1 (-830 *2)) (-4 *2 (-1092)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-830 *3)) (-4 *3 (-1092)) (-5 *2 (-55)))))
+(-13 (-1092) (-10 -8 (-15 -3253 (|t#1| $)) (-15 -3975 ((-55) $))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-114) "failed") $) NIL)) (-3961 ((|#1| $) NIL) (((-114) $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1786 ((|#1| (-114) |#1|) NIL)) (-1957 (((-112) $) NIL)) (-1860 (($ |#1| (-360 (-114))) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1422 (($ $ (-1 |#1| |#1|)) NIL)) (-3048 (($ $ (-1 |#1| |#1|)) NIL)) (-2343 ((|#1| $ |#1|) NIL)) (-2838 ((|#1| |#1|) NIL (|has| |#1| (-171)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-114)) NIL)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-1563 (($ $) NIL (|has| |#1| (-171))) (($ $ $) NIL (|has| |#1| (-171)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ (-114) (-562)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-171))) (($ $ |#1|) NIL (|has| |#1| (-171)))))
-(((-831 |#1|) (-13 (-1044) (-1033 |#1|) (-1033 (-114)) (-285 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-171)) (PROGN (-6 (-38 |#1|)) (-15 -1563 ($ $)) (-15 -1563 ($ $ $)) (-15 -2838 (|#1| |#1|))) |%noBranch|) (-15 -3048 ($ $ (-1 |#1| |#1|))) (-15 -1422 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-562))) (-15 ** ($ $ (-562))) (-15 -1786 (|#1| (-114) |#1|)) (-15 -1860 ($ |#1| (-360 (-114)))))) (-1044)) (T -831))
-((-1563 (*1 *1 *1) (-12 (-5 *1 (-831 *2)) (-4 *2 (-171)) (-4 *2 (-1044)))) (-1563 (*1 *1 *1 *1) (-12 (-5 *1 (-831 *2)) (-4 *2 (-171)) (-4 *2 (-1044)))) (-2838 (*1 *2 *2) (-12 (-5 *1 (-831 *2)) (-4 *2 (-171)) (-4 *2 (-1044)))) (-3048 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-831 *3)))) (-1422 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-831 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-562)) (-5 *1 (-831 *4)) (-4 *4 (-1044)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-831 *3)) (-4 *3 (-1044)))) (-1786 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-831 *2)) (-4 *2 (-1044)))) (-1860 (*1 *1 *2 *3) (-12 (-5 *3 (-360 (-114))) (-5 *1 (-831 *2)) (-4 *2 (-1044)))))
-(-13 (-1044) (-1033 |#1|) (-1033 (-114)) (-285 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-171)) (PROGN (-6 (-38 |#1|)) (-15 -1563 ($ $)) (-15 -1563 ($ $ $)) (-15 -2838 (|#1| |#1|))) |%noBranch|) (-15 -3048 ($ $ (-1 |#1| |#1|))) (-15 -1422 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-562))) (-15 ** ($ $ (-562))) (-15 -1786 (|#1| (-114) |#1|)) (-15 -1860 ($ |#1| (-360 (-114))))))
-((-4022 (((-213 (-501)) (-1150)) 9)))
-(((-832) (-10 -7 (-15 -4022 ((-213 (-501)) (-1150))))) (T -832))
-((-4022 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-213 (-501))) (-5 *1 (-832)))))
-(-10 -7 (-15 -4022 ((-213 (-501)) (-1150))))
-((-4041 (((-112) $ $) NIL)) (-2845 (((-1110) $) 10)) (-3254 (((-505) $) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4066 (($ (-505) (-1110)) 8)) (-4054 (((-857) $) 26)) (-3087 (((-55) $) 19)) (-1731 (((-112) $ $) 12)))
-(((-833) (-13 (-830 (-505)) (-10 -8 (-15 -2845 ((-1110) $)) (-15 -4066 ($ (-505) (-1110)))))) (T -833))
-((-2845 (*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-833)))) (-4066 (*1 *1 *2 *3) (-12 (-5 *2 (-505)) (-5 *3 (-1110)) (-5 *1 (-833)))))
-(-13 (-830 (-505)) (-10 -8 (-15 -2845 ((-1110) $)) (-15 -4066 ($ (-505) (-1110)))))
-((-4041 (((-112) $ $) 7)) (-3508 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) 14) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 13)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 16) (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) 15)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-114) "failed") $) NIL)) (-3960 ((|#1| $) NIL) (((-114) $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-3208 ((|#1| (-114) |#1|) NIL)) (-4367 (((-112) $) NIL)) (-2755 (($ |#1| (-360 (-114))) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1910 (($ $ (-1 |#1| |#1|)) NIL)) (-3610 (($ $ (-1 |#1| |#1|)) NIL)) (-2343 ((|#1| $ |#1|) NIL)) (-2383 ((|#1| |#1|) NIL (|has| |#1| (-171)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-114)) NIL)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-1926 (($ $) NIL (|has| |#1| (-171))) (($ $ $) NIL (|has| |#1| (-171)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ (-114) (-562)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-171))) (($ $ |#1|) NIL (|has| |#1| (-171)))))
+(((-831 |#1|) (-13 (-1044) (-1033 |#1|) (-1033 (-114)) (-285 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-171)) (PROGN (-6 (-38 |#1|)) (-15 -1926 ($ $)) (-15 -1926 ($ $ $)) (-15 -2383 (|#1| |#1|))) |%noBranch|) (-15 -3610 ($ $ (-1 |#1| |#1|))) (-15 -1910 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-562))) (-15 ** ($ $ (-562))) (-15 -3208 (|#1| (-114) |#1|)) (-15 -2755 ($ |#1| (-360 (-114)))))) (-1044)) (T -831))
+((-1926 (*1 *1 *1) (-12 (-5 *1 (-831 *2)) (-4 *2 (-171)) (-4 *2 (-1044)))) (-1926 (*1 *1 *1 *1) (-12 (-5 *1 (-831 *2)) (-4 *2 (-171)) (-4 *2 (-1044)))) (-2383 (*1 *2 *2) (-12 (-5 *1 (-831 *2)) (-4 *2 (-171)) (-4 *2 (-1044)))) (-3610 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-831 *3)))) (-1910 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-831 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-562)) (-5 *1 (-831 *4)) (-4 *4 (-1044)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-831 *3)) (-4 *3 (-1044)))) (-3208 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-831 *2)) (-4 *2 (-1044)))) (-2755 (*1 *1 *2 *3) (-12 (-5 *3 (-360 (-114))) (-5 *1 (-831 *2)) (-4 *2 (-1044)))))
+(-13 (-1044) (-1033 |#1|) (-1033 (-114)) (-285 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |#1| (-171)) (PROGN (-6 (-38 |#1|)) (-15 -1926 ($ $)) (-15 -1926 ($ $ $)) (-15 -2383 (|#1| |#1|))) |%noBranch|) (-15 -3610 ($ $ (-1 |#1| |#1|))) (-15 -1910 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-562))) (-15 ** ($ $ (-562))) (-15 -3208 (|#1| (-114) |#1|)) (-15 -2755 ($ |#1| (-360 (-114))))))
+((-3940 (((-213 (-501)) (-1150)) 9)))
+(((-832) (-10 -7 (-15 -3940 ((-213 (-501)) (-1150))))) (T -832))
+((-3940 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-213 (-501))) (-5 *1 (-832)))))
+(-10 -7 (-15 -3940 ((-213 (-501)) (-1150))))
+((-4041 (((-112) $ $) NIL)) (-2844 (((-1110) $) 10)) (-3253 (((-505) $) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4064 (($ (-505) (-1110)) 8)) (-4053 (((-857) $) 26)) (-3975 (((-55) $) 19)) (-1733 (((-112) $ $) 12)))
+(((-833) (-13 (-830 (-505)) (-10 -8 (-15 -2844 ((-1110) $)) (-15 -4064 ($ (-505) (-1110)))))) (T -833))
+((-2844 (*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-833)))) (-4064 (*1 *1 *2 *3) (-12 (-5 *2 (-505)) (-5 *3 (-1110)) (-5 *1 (-833)))))
+(-13 (-830 (-505)) (-10 -8 (-15 -2844 ((-1110) $)) (-15 -4064 ($ (-505) (-1110)))))
+((-4041 (((-112) $ $) 7)) (-2605 (((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) 14) (((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 13)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 16) (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) 15)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1733 (((-112) $ $) 6)))
(((-834) (-139)) (T -834))
-((-2172 (*1 *2 *3 *4) (-12 (-4 *1 (-834)) (-5 *3 (-1056)) (-5 *4 (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (-5 *2 (-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)))))) (-2172 (*1 *2 *3 *4) (-12 (-4 *1 (-834)) (-5 *3 (-1056)) (-5 *4 (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) (-5 *2 (-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)))))) (-3508 (*1 *2 *3) (-12 (-4 *1 (-834)) (-5 *3 (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) (-5 *2 (-1030)))) (-3508 (*1 *2 *3) (-12 (-4 *1 (-834)) (-5 *3 (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (-5 *2 (-1030)))))
-(-13 (-1092) (-10 -7 (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))) (-15 -3508 ((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))) (-15 -3508 ((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))))))
+((-1806 (*1 *2 *3 *4) (-12 (-4 *1 (-834)) (-5 *3 (-1056)) (-5 *4 (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (-5 *2 (-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)))))) (-1806 (*1 *2 *3 *4) (-12 (-4 *1 (-834)) (-5 *3 (-1056)) (-5 *4 (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) (-5 *2 (-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)))))) (-2605 (*1 *2 *3) (-12 (-4 *1 (-834)) (-5 *3 (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) (-5 *2 (-1030)))) (-2605 (*1 *2 *3) (-12 (-4 *1 (-834)) (-5 *3 (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (-5 *2 (-1030)))))
+(-13 (-1092) (-10 -7 (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))) (-15 -2605 ((-1030) (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))) (-15 -2605 ((-1030) (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-2907 (((-1030) (-639 (-315 (-378))) (-639 (-378))) 147) (((-1030) (-315 (-378)) (-639 (-378))) 145) (((-1030) (-315 (-378)) (-639 (-378)) (-639 (-838 (-378))) (-639 (-838 (-378)))) 144) (((-1030) (-315 (-378)) (-639 (-378)) (-639 (-838 (-378))) (-639 (-315 (-378))) (-639 (-838 (-378)))) 143) (((-1030) (-836)) 117) (((-1030) (-836) (-1056)) 116)) (-2172 (((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-836) (-1056)) 82) (((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-836)) 84)) (-3173 (((-1030) (-639 (-315 (-378))) (-639 (-378))) 148) (((-1030) (-836)) 133)))
-(((-835) (-10 -7 (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-836))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-836) (-1056))) (-15 -2907 ((-1030) (-836) (-1056))) (-15 -2907 ((-1030) (-836))) (-15 -3173 ((-1030) (-836))) (-15 -2907 ((-1030) (-315 (-378)) (-639 (-378)) (-639 (-838 (-378))) (-639 (-315 (-378))) (-639 (-838 (-378))))) (-15 -2907 ((-1030) (-315 (-378)) (-639 (-378)) (-639 (-838 (-378))) (-639 (-838 (-378))))) (-15 -2907 ((-1030) (-315 (-378)) (-639 (-378)))) (-15 -2907 ((-1030) (-639 (-315 (-378))) (-639 (-378)))) (-15 -3173 ((-1030) (-639 (-315 (-378))) (-639 (-378)))))) (T -835))
-((-3173 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-315 (-378)))) (-5 *4 (-639 (-378))) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2907 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-315 (-378)))) (-5 *4 (-639 (-378))) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2907 (*1 *2 *3 *4) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-378))) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2907 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-378))) (-5 *5 (-639 (-838 (-378)))) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2907 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-639 (-378))) (-5 *5 (-639 (-838 (-378)))) (-5 *6 (-639 (-315 (-378)))) (-5 *3 (-315 (-378))) (-5 *2 (-1030)) (-5 *1 (-835)))) (-3173 (*1 *2 *3) (-12 (-5 *3 (-836)) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2907 (*1 *2 *3) (-12 (-5 *3 (-836)) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2907 (*1 *2 *3 *4) (-12 (-5 *3 (-836)) (-5 *4 (-1056)) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2172 (*1 *2 *3 *4) (-12 (-5 *3 (-836)) (-5 *4 (-1056)) (-5 *2 (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *1 (-835)))) (-2172 (*1 *2 *3) (-12 (-5 *3 (-836)) (-5 *2 (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *1 (-835)))))
-(-10 -7 (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-836))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-836) (-1056))) (-15 -2907 ((-1030) (-836) (-1056))) (-15 -2907 ((-1030) (-836))) (-15 -3173 ((-1030) (-836))) (-15 -2907 ((-1030) (-315 (-378)) (-639 (-378)) (-639 (-838 (-378))) (-639 (-315 (-378))) (-639 (-838 (-378))))) (-15 -2907 ((-1030) (-315 (-378)) (-639 (-378)) (-639 (-838 (-378))) (-639 (-838 (-378))))) (-15 -2907 ((-1030) (-315 (-378)) (-639 (-378)))) (-15 -2907 ((-1030) (-639 (-315 (-378))) (-639 (-378)))) (-15 -3173 ((-1030) (-639 (-315 (-378))) (-639 (-378)))))
-((-4041 (((-112) $ $) NIL)) (-3961 (((-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))) $) 21)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 20) (($ (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 14) (($ (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))))) 18)) (-1731 (((-112) $ $) NIL)))
-(((-836) (-13 (-1092) (-10 -8 (-15 -4054 ($ (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))))) (-15 -4054 ($ (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))) (-15 -4054 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))))) (-15 -3961 ((-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))) $))))) (T -836))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (-5 *1 (-836)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))) (-5 *1 (-836)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))))) (-5 *1 (-836)))) (-3961 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224))))))) (-5 *1 (-836)))))
-(-13 (-1092) (-10 -8 (-15 -4054 ($ (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))))) (-15 -4054 ($ (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))) (-15 -4054 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))))) (-15 -3961 ((-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))) $))))
+((-2906 (((-1030) (-639 (-315 (-378))) (-639 (-378))) 147) (((-1030) (-315 (-378)) (-639 (-378))) 145) (((-1030) (-315 (-378)) (-639 (-378)) (-639 (-838 (-378))) (-639 (-838 (-378)))) 144) (((-1030) (-315 (-378)) (-639 (-378)) (-639 (-838 (-378))) (-639 (-315 (-378))) (-639 (-838 (-378)))) 143) (((-1030) (-836)) 117) (((-1030) (-836) (-1056)) 116)) (-1806 (((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-836) (-1056)) 82) (((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-836)) 84)) (-2407 (((-1030) (-639 (-315 (-378))) (-639 (-378))) 148) (((-1030) (-836)) 133)))
+(((-835) (-10 -7 (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-836))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-836) (-1056))) (-15 -2906 ((-1030) (-836) (-1056))) (-15 -2906 ((-1030) (-836))) (-15 -2407 ((-1030) (-836))) (-15 -2906 ((-1030) (-315 (-378)) (-639 (-378)) (-639 (-838 (-378))) (-639 (-315 (-378))) (-639 (-838 (-378))))) (-15 -2906 ((-1030) (-315 (-378)) (-639 (-378)) (-639 (-838 (-378))) (-639 (-838 (-378))))) (-15 -2906 ((-1030) (-315 (-378)) (-639 (-378)))) (-15 -2906 ((-1030) (-639 (-315 (-378))) (-639 (-378)))) (-15 -2407 ((-1030) (-639 (-315 (-378))) (-639 (-378)))))) (T -835))
+((-2407 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-315 (-378)))) (-5 *4 (-639 (-378))) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2906 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-315 (-378)))) (-5 *4 (-639 (-378))) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2906 (*1 *2 *3 *4) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-378))) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2906 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-378))) (-5 *5 (-639 (-838 (-378)))) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2906 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-639 (-378))) (-5 *5 (-639 (-838 (-378)))) (-5 *6 (-639 (-315 (-378)))) (-5 *3 (-315 (-378))) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2407 (*1 *2 *3) (-12 (-5 *3 (-836)) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2906 (*1 *2 *3) (-12 (-5 *3 (-836)) (-5 *2 (-1030)) (-5 *1 (-835)))) (-2906 (*1 *2 *3 *4) (-12 (-5 *3 (-836)) (-5 *4 (-1056)) (-5 *2 (-1030)) (-5 *1 (-835)))) (-1806 (*1 *2 *3 *4) (-12 (-5 *3 (-836)) (-5 *4 (-1056)) (-5 *2 (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *1 (-835)))) (-1806 (*1 *2 *3) (-12 (-5 *3 (-836)) (-5 *2 (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *1 (-835)))))
+(-10 -7 (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-836))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-836) (-1056))) (-15 -2906 ((-1030) (-836) (-1056))) (-15 -2906 ((-1030) (-836))) (-15 -2407 ((-1030) (-836))) (-15 -2906 ((-1030) (-315 (-378)) (-639 (-378)) (-639 (-838 (-378))) (-639 (-315 (-378))) (-639 (-838 (-378))))) (-15 -2906 ((-1030) (-315 (-378)) (-639 (-378)) (-639 (-838 (-378))) (-639 (-838 (-378))))) (-15 -2906 ((-1030) (-315 (-378)) (-639 (-378)))) (-15 -2906 ((-1030) (-639 (-315 (-378))) (-639 (-378)))) (-15 -2407 ((-1030) (-639 (-315 (-378))) (-639 (-378)))))
+((-4041 (((-112) $ $) NIL)) (-3960 (((-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))) $) 21)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 20) (($ (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) 14) (($ (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))))) 18)) (-1733 (((-112) $ $) NIL)))
+(((-836) (-13 (-1092) (-10 -8 (-15 -4053 ($ (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))))) (-15 -4053 ($ (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))) (-15 -4053 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))))) (-15 -3960 ((-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))) $))))) (T -836))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (-5 *1 (-836)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))) (-5 *1 (-836)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))))) (-5 *1 (-836)))) (-3960 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224))))))) (-5 *1 (-836)))))
+(-13 (-1092) (-10 -8 (-15 -4053 ($ (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224))))))) (-15 -4053 ($ (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))) (-15 -4053 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))))) (-15 -3960 ((-3 (|:| |noa| (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224))) (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224)))) (|:| |ub| (-639 (-838 (-224)))))) (|:| |lsa| (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))) $))))
((-4152 (((-838 |#2|) (-1 |#2| |#1|) (-838 |#1|) (-838 |#2|) (-838 |#2|)) 13) (((-838 |#2|) (-1 |#2| |#1|) (-838 |#1|)) 14)))
(((-837 |#1| |#2|) (-10 -7 (-15 -4152 ((-838 |#2|) (-1 |#2| |#1|) (-838 |#1|))) (-15 -4152 ((-838 |#2|) (-1 |#2| |#1|) (-838 |#1|) (-838 |#2|) (-838 |#2|)))) (-1092) (-1092)) (T -837))
((-4152 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-838 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-838 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-5 *1 (-837 *5 *6)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-838 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-5 *2 (-838 *6)) (-5 *1 (-837 *5 *6)))))
(-10 -7 (-15 -4152 ((-838 |#2|) (-1 |#2| |#1|) (-838 |#1|))) (-15 -4152 ((-838 |#2|) (-1 |#2| |#1|) (-838 |#1|) (-838 |#2|) (-838 |#2|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL (|has| |#1| (-21)))) (-2782 (((-1112) $) 24)) (-3214 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2277 (((-562) $) NIL (|has| |#1| (-843)))) (-1800 (($) NIL (|has| |#1| (-21)) CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 16)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 9)) (-3668 (((-3 $ "failed") $) 47 (|has| |#1| (-843)))) (-1726 (((-3 (-406 (-562)) "failed") $) 54 (|has| |#1| (-544)))) (-3035 (((-112) $) 49 (|has| |#1| (-544)))) (-1291 (((-406 (-562)) $) 52 (|has| |#1| (-544)))) (-3519 (((-112) $) NIL (|has| |#1| (-843)))) (-3604 (($) 13)) (-1957 (((-112) $) NIL (|has| |#1| (-843)))) (-3392 (((-112) $) NIL (|has| |#1| (-843)))) (-3616 (($) 14)) (-1551 (($ $ $) NIL (|has| |#1| (-843)))) (-2993 (($ $ $) NIL (|has| |#1| (-843)))) (-2913 (((-1150) $) NIL)) (-1345 (((-112) $) 12)) (-1709 (((-1112) $) NIL)) (-2939 (((-112) $) 11)) (-4054 (((-857) $) 22) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) 8) (($ (-562)) NIL (-4037 (|has| |#1| (-843)) (|has| |#1| (-1033 (-562)))))) (-2579 (((-766)) 41 (|has| |#1| (-843)))) (-3526 (($ $) NIL (|has| |#1| (-843)))) (-2286 (($) 29 (|has| |#1| (-21)) CONST)) (-2294 (($) 38 (|has| |#1| (-843)) CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1731 (((-112) $ $) 27)) (-1785 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1759 (((-112) $ $) 48 (|has| |#1| (-843)))) (-1848 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 34 (|has| |#1| (-21)))) (-1835 (($ $ $) 36 (|has| |#1| (-21)))) (** (($ $ (-916)) NIL (|has| |#1| (-843))) (($ $ (-766)) NIL (|has| |#1| (-843)))) (* (($ $ $) 44 (|has| |#1| (-843))) (($ (-562) $) 32 (|has| |#1| (-21))) (($ (-766) $) NIL (|has| |#1| (-21))) (($ (-916) $) NIL (|has| |#1| (-21)))))
-(((-838 |#1|) (-13 (-1092) (-410 |#1|) (-10 -8 (-15 -3604 ($)) (-15 -3616 ($)) (-15 -2939 ((-112) $)) (-15 -1345 ((-112) $)) (-15 -2782 ((-1112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-843)) |%noBranch|) (IF (|has| |#1| (-544)) (PROGN (-15 -3035 ((-112) $)) (-15 -1291 ((-406 (-562)) $)) (-15 -1726 ((-3 (-406 (-562)) "failed") $))) |%noBranch|))) (-1092)) (T -838))
-((-3604 (*1 *1) (-12 (-5 *1 (-838 *2)) (-4 *2 (-1092)))) (-3616 (*1 *1) (-12 (-5 *1 (-838 *2)) (-4 *2 (-1092)))) (-2939 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-838 *3)) (-4 *3 (-1092)))) (-1345 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-838 *3)) (-4 *3 (-1092)))) (-2782 (*1 *2 *1) (-12 (-5 *2 (-1112)) (-5 *1 (-838 *3)) (-4 *3 (-1092)))) (-3035 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-838 *3)) (-4 *3 (-544)) (-4 *3 (-1092)))) (-1291 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-838 *3)) (-4 *3 (-544)) (-4 *3 (-1092)))) (-1726 (*1 *2 *1) (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-838 *3)) (-4 *3 (-544)) (-4 *3 (-1092)))))
-(-13 (-1092) (-410 |#1|) (-10 -8 (-15 -3604 ($)) (-15 -3616 ($)) (-15 -2939 ((-112) $)) (-15 -1345 ((-112) $)) (-15 -2782 ((-1112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-843)) |%noBranch|) (IF (|has| |#1| (-544)) (PROGN (-15 -3035 ((-112) $)) (-15 -1291 ((-406 (-562)) $)) (-15 -1726 ((-3 (-406 (-562)) "failed") $))) |%noBranch|)))
-((-4041 (((-112) $ $) 7)) (-1382 (((-766)) 22)) (-1448 (($) 25)) (-1551 (($ $ $) 13) (($) 21 T CONST)) (-2993 (($ $ $) 14) (($) 20 T CONST)) (-1999 (((-916) $) 24)) (-2913 (((-1150) $) 9)) (-2466 (($ (-916)) 23)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL (|has| |#1| (-21)))) (-1794 (((-1112) $) 24)) (-2781 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-1587 (((-562) $) NIL (|has| |#1| (-843)))) (-3329 (($) NIL (|has| |#1| (-21)) CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 16)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 9)) (-1694 (((-3 $ "failed") $) 47 (|has| |#1| (-843)))) (-3913 (((-3 (-406 (-562)) "failed") $) 54 (|has| |#1| (-544)))) (-3498 (((-112) $) 49 (|has| |#1| (-544)))) (-3854 (((-406 (-562)) $) 52 (|has| |#1| (-544)))) (-2696 (((-112) $) NIL (|has| |#1| (-843)))) (-3604 (($) 13)) (-4367 (((-112) $) NIL (|has| |#1| (-843)))) (-3855 (((-112) $) NIL (|has| |#1| (-843)))) (-3616 (($) 14)) (-1551 (($ $ $) NIL (|has| |#1| (-843)))) (-2993 (($ $ $) NIL (|has| |#1| (-843)))) (-3696 (((-1150) $) NIL)) (-2098 (((-112) $) 12)) (-1709 (((-1112) $) NIL)) (-3973 (((-112) $) 11)) (-4053 (((-857) $) 22) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) 8) (($ (-562)) NIL (-4037 (|has| |#1| (-843)) (|has| |#1| (-1033 (-562)))))) (-1568 (((-766)) 41 (|has| |#1| (-843)))) (-2757 (($ $) NIL (|has| |#1| (-843)))) (-2285 (($) 29 (|has| |#1| (-21)) CONST)) (-2294 (($) 38 (|has| |#1| (-843)) CONST)) (-1798 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1733 (((-112) $ $) 27)) (-1785 (((-112) $ $) NIL (|has| |#1| (-843)))) (-1761 (((-112) $ $) 48 (|has| |#1| (-843)))) (-1847 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 34 (|has| |#1| (-21)))) (-1836 (($ $ $) 36 (|has| |#1| (-21)))) (** (($ $ (-916)) NIL (|has| |#1| (-843))) (($ $ (-766)) NIL (|has| |#1| (-843)))) (* (($ $ $) 44 (|has| |#1| (-843))) (($ (-562) $) 32 (|has| |#1| (-21))) (($ (-766) $) NIL (|has| |#1| (-21))) (($ (-916) $) NIL (|has| |#1| (-21)))))
+(((-838 |#1|) (-13 (-1092) (-410 |#1|) (-10 -8 (-15 -3604 ($)) (-15 -3616 ($)) (-15 -3973 ((-112) $)) (-15 -2098 ((-112) $)) (-15 -1794 ((-1112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-843)) |%noBranch|) (IF (|has| |#1| (-544)) (PROGN (-15 -3498 ((-112) $)) (-15 -3854 ((-406 (-562)) $)) (-15 -3913 ((-3 (-406 (-562)) "failed") $))) |%noBranch|))) (-1092)) (T -838))
+((-3604 (*1 *1) (-12 (-5 *1 (-838 *2)) (-4 *2 (-1092)))) (-3616 (*1 *1) (-12 (-5 *1 (-838 *2)) (-4 *2 (-1092)))) (-3973 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-838 *3)) (-4 *3 (-1092)))) (-2098 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-838 *3)) (-4 *3 (-1092)))) (-1794 (*1 *2 *1) (-12 (-5 *2 (-1112)) (-5 *1 (-838 *3)) (-4 *3 (-1092)))) (-3498 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-838 *3)) (-4 *3 (-544)) (-4 *3 (-1092)))) (-3854 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-838 *3)) (-4 *3 (-544)) (-4 *3 (-1092)))) (-3913 (*1 *2 *1) (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-838 *3)) (-4 *3 (-544)) (-4 *3 (-1092)))))
+(-13 (-1092) (-410 |#1|) (-10 -8 (-15 -3604 ($)) (-15 -3616 ($)) (-15 -3973 ((-112) $)) (-15 -2098 ((-112) $)) (-15 -1794 ((-1112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-843)) |%noBranch|) (IF (|has| |#1| (-544)) (PROGN (-15 -3498 ((-112) $)) (-15 -3854 ((-406 (-562)) $)) (-15 -3913 ((-3 (-406 (-562)) "failed") $))) |%noBranch|)))
+((-4041 (((-112) $ $) 7)) (-1382 (((-766)) 22)) (-1447 (($) 25)) (-1551 (($ $ $) 13) (($) 21 T CONST)) (-2993 (($ $ $) 14) (($) 20 T CONST)) (-3549 (((-916) $) 24)) (-3696 (((-1150) $) 9)) (-2464 (($ (-916)) 23)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)))
(((-839) (-139)) (T -839))
((-1551 (*1 *1) (-4 *1 (-839))) (-2993 (*1 *1) (-4 *1 (-839))))
(-13 (-845) (-367) (-10 -8 (-15 -1551 ($) -1497) (-15 -2993 ($) -1497)))
(((-102) . T) ((-609 (-857)) . T) ((-367) . T) ((-845) . T) ((-1092) . T))
-((-2860 (((-112) (-1256 |#2|) (-1256 |#2|)) 17)) (-1330 (((-112) (-1256 |#2|) (-1256 |#2|)) 18)) (-3107 (((-112) (-1256 |#2|) (-1256 |#2|)) 14)))
-(((-840 |#1| |#2|) (-10 -7 (-15 -3107 ((-112) (-1256 |#2|) (-1256 |#2|))) (-15 -2860 ((-112) (-1256 |#2|) (-1256 |#2|))) (-15 -1330 ((-112) (-1256 |#2|) (-1256 |#2|)))) (-766) (-787)) (T -840))
-((-1330 (*1 *2 *3 *3) (-12 (-5 *3 (-1256 *5)) (-4 *5 (-787)) (-5 *2 (-112)) (-5 *1 (-840 *4 *5)) (-14 *4 (-766)))) (-2860 (*1 *2 *3 *3) (-12 (-5 *3 (-1256 *5)) (-4 *5 (-787)) (-5 *2 (-112)) (-5 *1 (-840 *4 *5)) (-14 *4 (-766)))) (-3107 (*1 *2 *3 *3) (-12 (-5 *3 (-1256 *5)) (-4 *5 (-787)) (-5 *2 (-112)) (-5 *1 (-840 *4 *5)) (-14 *4 (-766)))))
-(-10 -7 (-15 -3107 ((-112) (-1256 |#2|) (-1256 |#2|))) (-15 -2860 ((-112) (-1256 |#2|) (-1256 |#2|))) (-15 -1330 ((-112) (-1256 |#2|) (-1256 |#2|))))
-((-4041 (((-112) $ $) 7)) (-1800 (($) 23 T CONST)) (-3668 (((-3 $ "failed") $) 26)) (-1957 (((-112) $) 24)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2294 (($) 22 T CONST)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)) (** (($ $ (-916)) 21) (($ $ (-766)) 25)) (* (($ $ $) 20)))
+((-1307 (((-112) (-1256 |#2|) (-1256 |#2|)) 17)) (-1948 (((-112) (-1256 |#2|) (-1256 |#2|)) 18)) (-2934 (((-112) (-1256 |#2|) (-1256 |#2|)) 14)))
+(((-840 |#1| |#2|) (-10 -7 (-15 -2934 ((-112) (-1256 |#2|) (-1256 |#2|))) (-15 -1307 ((-112) (-1256 |#2|) (-1256 |#2|))) (-15 -1948 ((-112) (-1256 |#2|) (-1256 |#2|)))) (-766) (-787)) (T -840))
+((-1948 (*1 *2 *3 *3) (-12 (-5 *3 (-1256 *5)) (-4 *5 (-787)) (-5 *2 (-112)) (-5 *1 (-840 *4 *5)) (-14 *4 (-766)))) (-1307 (*1 *2 *3 *3) (-12 (-5 *3 (-1256 *5)) (-4 *5 (-787)) (-5 *2 (-112)) (-5 *1 (-840 *4 *5)) (-14 *4 (-766)))) (-2934 (*1 *2 *3 *3) (-12 (-5 *3 (-1256 *5)) (-4 *5 (-787)) (-5 *2 (-112)) (-5 *1 (-840 *4 *5)) (-14 *4 (-766)))))
+(-10 -7 (-15 -2934 ((-112) (-1256 |#2|) (-1256 |#2|))) (-15 -1307 ((-112) (-1256 |#2|) (-1256 |#2|))) (-15 -1948 ((-112) (-1256 |#2|) (-1256 |#2|))))
+((-4041 (((-112) $ $) 7)) (-3329 (($) 23 T CONST)) (-1694 (((-3 $ "failed") $) 26)) (-4367 (((-112) $) 24)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2294 (($) 22 T CONST)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)) (** (($ $ (-916)) 21) (($ $ (-766)) 25)) (* (($ $ $) 20)))
(((-841) (-139)) (T -841))
NIL
(-13 (-852) (-721))
(((-102) . T) ((-609 (-857)) . T) ((-721) . T) ((-852) . T) ((-845) . T) ((-1104) . T) ((-1092) . T))
-((-2277 (((-562) $) 17)) (-3519 (((-112) $) 10)) (-3392 (((-112) $) 11)) (-3526 (($ $) 19)))
-(((-842 |#1|) (-10 -8 (-15 -3526 (|#1| |#1|)) (-15 -2277 ((-562) |#1|)) (-15 -3392 ((-112) |#1|)) (-15 -3519 ((-112) |#1|))) (-843)) (T -842))
+((-1587 (((-562) $) 17)) (-2696 (((-112) $) 10)) (-3855 (((-112) $) 11)) (-2757 (($ $) 19)))
+(((-842 |#1|) (-10 -8 (-15 -2757 (|#1| |#1|)) (-15 -1587 ((-562) |#1|)) (-15 -3855 ((-112) |#1|)) (-15 -2696 ((-112) |#1|))) (-843)) (T -842))
NIL
-(-10 -8 (-15 -3526 (|#1| |#1|)) (-15 -2277 ((-562) |#1|)) (-15 -3392 ((-112) |#1|)) (-15 -3519 ((-112) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 24)) (-3214 (((-3 $ "failed") $ $) 26)) (-2277 (((-562) $) 34)) (-1800 (($) 23 T CONST)) (-3668 (((-3 $ "failed") $) 39)) (-3519 (((-112) $) 36)) (-1957 (((-112) $) 41)) (-3392 (((-112) $) 35)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-562)) 43)) (-2579 (((-766)) 44)) (-3526 (($ $) 33)) (-2286 (($) 22 T CONST)) (-2294 (($) 42 T CONST)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)) (-1848 (($ $ $) 28) (($ $) 27)) (-1835 (($ $ $) 20)) (** (($ $ (-766)) 40) (($ $ (-916)) 37)) (* (($ (-916) $) 21) (($ (-766) $) 25) (($ (-562) $) 29) (($ $ $) 38)))
+(-10 -8 (-15 -2757 (|#1| |#1|)) (-15 -1587 ((-562) |#1|)) (-15 -3855 ((-112) |#1|)) (-15 -2696 ((-112) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 24)) (-2781 (((-3 $ "failed") $ $) 26)) (-1587 (((-562) $) 34)) (-3329 (($) 23 T CONST)) (-1694 (((-3 $ "failed") $) 39)) (-2696 (((-112) $) 36)) (-4367 (((-112) $) 41)) (-3855 (((-112) $) 35)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-562)) 43)) (-1568 (((-766)) 44)) (-2757 (($ $) 33)) (-2285 (($) 22 T CONST)) (-2294 (($) 42 T CONST)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)) (-1847 (($ $ $) 28) (($ $) 27)) (-1836 (($ $ $) 20)) (** (($ $ (-766)) 40) (($ $ (-916)) 37)) (* (($ (-916) $) 21) (($ (-766) $) 25) (($ (-562) $) 29) (($ $ $) 38)))
(((-843) (-139)) (T -843))
-((-3519 (*1 *2 *1) (-12 (-4 *1 (-843)) (-5 *2 (-112)))) (-3392 (*1 *2 *1) (-12 (-4 *1 (-843)) (-5 *2 (-112)))) (-2277 (*1 *2 *1) (-12 (-4 *1 (-843)) (-5 *2 (-562)))) (-3526 (*1 *1 *1) (-4 *1 (-843))))
-(-13 (-786) (-1044) (-721) (-10 -8 (-15 -3519 ((-112) $)) (-15 -3392 ((-112) $)) (-15 -2277 ((-562) $)) (-15 -3526 ($ $))))
+((-2696 (*1 *2 *1) (-12 (-4 *1 (-843)) (-5 *2 (-112)))) (-3855 (*1 *2 *1) (-12 (-4 *1 (-843)) (-5 *2 (-112)))) (-1587 (*1 *2 *1) (-12 (-4 *1 (-843)) (-5 *2 (-562)))) (-2757 (*1 *1 *1) (-4 *1 (-843))))
+(-13 (-786) (-1044) (-721) (-10 -8 (-15 -2696 ((-112) $)) (-15 -3855 ((-112) $)) (-15 -1587 ((-562) $)) (-15 -2757 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-642 $) . T) ((-721) . T) ((-786) . T) ((-787) . T) ((-789) . T) ((-790) . T) ((-845) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-1551 (($ $ $) 10)) (-2993 (($ $ $) 9)) (-1798 (((-112) $ $) 12)) (-1772 (((-112) $ $) 11)) (-1785 (((-112) $ $) 13)))
-(((-844 |#1|) (-10 -8 (-15 -1551 (|#1| |#1| |#1|)) (-15 -2993 (|#1| |#1| |#1|)) (-15 -1785 ((-112) |#1| |#1|)) (-15 -1798 ((-112) |#1| |#1|)) (-15 -1772 ((-112) |#1| |#1|))) (-845)) (T -844))
+((-1551 (($ $ $) 10)) (-2993 (($ $ $) 9)) (-1798 (((-112) $ $) 12)) (-1771 (((-112) $ $) 11)) (-1785 (((-112) $ $) 13)))
+(((-844 |#1|) (-10 -8 (-15 -1551 (|#1| |#1| |#1|)) (-15 -2993 (|#1| |#1| |#1|)) (-15 -1785 ((-112) |#1| |#1|)) (-15 -1798 ((-112) |#1| |#1|)) (-15 -1771 ((-112) |#1| |#1|))) (-845)) (T -844))
NIL
-(-10 -8 (-15 -1551 (|#1| |#1| |#1|)) (-15 -2993 (|#1| |#1| |#1|)) (-15 -1785 ((-112) |#1| |#1|)) (-15 -1798 ((-112) |#1| |#1|)) (-15 -1772 ((-112) |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)))
+(-10 -8 (-15 -1551 (|#1| |#1| |#1|)) (-15 -2993 (|#1| |#1| |#1|)) (-15 -1785 ((-112) |#1| |#1|)) (-15 -1798 ((-112) |#1| |#1|)) (-15 -1771 ((-112) |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)))
(((-845) (-139)) (T -845))
-((-1759 (*1 *2 *1 *1) (-12 (-4 *1 (-845)) (-5 *2 (-112)))) (-1772 (*1 *2 *1 *1) (-12 (-4 *1 (-845)) (-5 *2 (-112)))) (-1798 (*1 *2 *1 *1) (-12 (-4 *1 (-845)) (-5 *2 (-112)))) (-1785 (*1 *2 *1 *1) (-12 (-4 *1 (-845)) (-5 *2 (-112)))) (-2993 (*1 *1 *1 *1) (-4 *1 (-845))) (-1551 (*1 *1 *1 *1) (-4 *1 (-845))))
-(-13 (-1092) (-10 -8 (-15 -1759 ((-112) $ $)) (-15 -1772 ((-112) $ $)) (-15 -1798 ((-112) $ $)) (-15 -1785 ((-112) $ $)) (-15 -2993 ($ $ $)) (-15 -1551 ($ $ $))))
+((-1761 (*1 *2 *1 *1) (-12 (-4 *1 (-845)) (-5 *2 (-112)))) (-1771 (*1 *2 *1 *1) (-12 (-4 *1 (-845)) (-5 *2 (-112)))) (-1798 (*1 *2 *1 *1) (-12 (-4 *1 (-845)) (-5 *2 (-112)))) (-1785 (*1 *2 *1 *1) (-12 (-4 *1 (-845)) (-5 *2 (-112)))) (-2993 (*1 *1 *1 *1) (-4 *1 (-845))) (-1551 (*1 *1 *1 *1) (-4 *1 (-845))))
+(-13 (-1092) (-10 -8 (-15 -1761 ((-112) $ $)) (-15 -1771 ((-112) $ $)) (-15 -1798 ((-112) $ $)) (-15 -1785 ((-112) $ $)) (-15 -2993 ($ $ $)) (-15 -1551 ($ $ $))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-1896 (($ $ $) 45)) (-3688 (($ $ $) 44)) (-2488 (($ $ $) 42)) (-4282 (($ $ $) 51)) (-2703 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 46)) (-3041 (((-3 $ "failed") $ $) 49)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-1498 (($ $) 35)) (-1639 (($ $ $) 39)) (-2492 (($ $ $) 38)) (-4132 (($ $ $) 47)) (-3671 (($ $ $) 53)) (-2189 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 41)) (-2075 (((-3 $ "failed") $ $) 48)) (-1762 (((-3 $ "failed") $ |#2|) 28)) (-3900 ((|#2| $) 32)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL) (($ |#2|) 12)) (-4358 (((-639 |#2|) $) 18)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 22)))
-(((-846 |#1| |#2|) (-10 -8 (-15 -4132 (|#1| |#1| |#1|)) (-15 -2703 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3148 |#1|)) |#1| |#1|)) (-15 -4282 (|#1| |#1| |#1|)) (-15 -3041 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1896 (|#1| |#1| |#1|)) (-15 -3688 (|#1| |#1| |#1|)) (-15 -2488 (|#1| |#1| |#1|)) (-15 -2189 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3148 |#1|)) |#1| |#1|)) (-15 -3671 (|#1| |#1| |#1|)) (-15 -2075 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1639 (|#1| |#1| |#1|)) (-15 -2492 (|#1| |#1| |#1|)) (-15 -1498 (|#1| |#1|)) (-15 -3900 (|#2| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 -4358 ((-639 |#2|) |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -4054 (|#1| (-562))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -4054 ((-857) |#1|))) (-847 |#2|) (-1044)) (T -846))
+((-1944 (($ $ $) 45)) (-3711 (($ $ $) 44)) (-1884 (($ $ $) 42)) (-1353 (($ $ $) 51)) (-3392 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 46)) (-3560 (((-3 $ "failed") $ $) 49)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#2| "failed") $) 25)) (-2578 (($ $) 35)) (-4371 (($ $ $) 39)) (-1934 (($ $ $) 38)) (-2516 (($ $ $) 47)) (-3552 (($ $ $) 53)) (-1989 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 41)) (-3151 (((-3 $ "failed") $ $) 48)) (-1762 (((-3 $ "failed") $ |#2|) 28)) (-2201 ((|#2| $) 32)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL) (($ |#2|) 12)) (-3969 (((-639 |#2|) $) 18)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 22)))
+(((-846 |#1| |#2|) (-10 -8 (-15 -2516 (|#1| |#1| |#1|)) (-15 -3392 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3147 |#1|)) |#1| |#1|)) (-15 -1353 (|#1| |#1| |#1|)) (-15 -3560 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1944 (|#1| |#1| |#1|)) (-15 -3711 (|#1| |#1| |#1|)) (-15 -1884 (|#1| |#1| |#1|)) (-15 -1989 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3147 |#1|)) |#1| |#1|)) (-15 -3552 (|#1| |#1| |#1|)) (-15 -3151 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4371 (|#1| |#1| |#1|)) (-15 -1934 (|#1| |#1| |#1|)) (-15 -2578 (|#1| |#1|)) (-15 -2201 (|#2| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3969 ((-639 |#2|) |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -4053 (|#1| (-562))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -4053 ((-857) |#1|))) (-847 |#2|) (-1044)) (T -846))
NIL
-(-10 -8 (-15 -4132 (|#1| |#1| |#1|)) (-15 -2703 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3148 |#1|)) |#1| |#1|)) (-15 -4282 (|#1| |#1| |#1|)) (-15 -3041 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1896 (|#1| |#1| |#1|)) (-15 -3688 (|#1| |#1| |#1|)) (-15 -2488 (|#1| |#1| |#1|)) (-15 -2189 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3148 |#1|)) |#1| |#1|)) (-15 -3671 (|#1| |#1| |#1|)) (-15 -2075 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1639 (|#1| |#1| |#1|)) (-15 -2492 (|#1| |#1| |#1|)) (-15 -1498 (|#1| |#1|)) (-15 -3900 (|#2| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 -4358 ((-639 |#2|) |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -4054 (|#1| (-562))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-1896 (($ $ $) 44 (|has| |#1| (-362)))) (-3688 (($ $ $) 45 (|has| |#1| (-362)))) (-2488 (($ $ $) 47 (|has| |#1| (-362)))) (-4282 (($ $ $) 42 (|has| |#1| (-362)))) (-2703 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 41 (|has| |#1| (-362)))) (-3041 (((-3 $ "failed") $ $) 43 (|has| |#1| (-362)))) (-2227 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 46 (|has| |#1| (-362)))) (-4048 (((-3 (-562) "failed") $) 74 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 71 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 68)) (-3961 (((-562) $) 73 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 70 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 69)) (-1601 (($ $) 63)) (-3668 (((-3 $ "failed") $) 33)) (-1498 (($ $) 54 (|has| |#1| (-451)))) (-1957 (((-112) $) 31)) (-1378 (($ |#1| (-766)) 61)) (-1664 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 56 (|has| |#1| (-554)))) (-1736 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 57 (|has| |#1| (-554)))) (-2076 (((-766) $) 65)) (-1639 (($ $ $) 51 (|has| |#1| (-362)))) (-2492 (($ $ $) 52 (|has| |#1| (-362)))) (-4132 (($ $ $) 40 (|has| |#1| (-362)))) (-3671 (($ $ $) 49 (|has| |#1| (-362)))) (-2189 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 48 (|has| |#1| (-362)))) (-2075 (((-3 $ "failed") $ $) 50 (|has| |#1| (-362)))) (-1535 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 53 (|has| |#1| (-362)))) (-1573 ((|#1| $) 64)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ |#1|) 58 (|has| |#1| (-554)))) (-3598 (((-766) $) 66)) (-3900 ((|#1| $) 55 (|has| |#1| (-451)))) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 72 (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) 67)) (-4358 (((-639 |#1|) $) 60)) (-3906 ((|#1| $ (-766)) 62)) (-2579 (((-766)) 28)) (-1360 ((|#1| $ |#1| |#1|) 59)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 76) (($ |#1| $) 75)))
+(-10 -8 (-15 -2516 (|#1| |#1| |#1|)) (-15 -3392 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3147 |#1|)) |#1| |#1|)) (-15 -1353 (|#1| |#1| |#1|)) (-15 -3560 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1944 (|#1| |#1| |#1|)) (-15 -3711 (|#1| |#1| |#1|)) (-15 -1884 (|#1| |#1| |#1|)) (-15 -1989 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -3147 |#1|)) |#1| |#1|)) (-15 -3552 (|#1| |#1| |#1|)) (-15 -3151 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4371 (|#1| |#1| |#1|)) (-15 -1934 (|#1| |#1| |#1|)) (-15 -2578 (|#1| |#1|)) (-15 -2201 (|#2| |#1|)) (-15 -1762 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3969 ((-639 |#2|) |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -4053 (|#1| (-562))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1944 (($ $ $) 44 (|has| |#1| (-362)))) (-3711 (($ $ $) 45 (|has| |#1| (-362)))) (-1884 (($ $ $) 47 (|has| |#1| (-362)))) (-1353 (($ $ $) 42 (|has| |#1| (-362)))) (-3392 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 41 (|has| |#1| (-362)))) (-3560 (((-3 $ "failed") $ $) 43 (|has| |#1| (-362)))) (-4190 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 46 (|has| |#1| (-362)))) (-4048 (((-3 (-562) "failed") $) 74 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 71 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 68)) (-3960 (((-562) $) 73 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 70 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 69)) (-1600 (($ $) 63)) (-1694 (((-3 $ "failed") $) 33)) (-2578 (($ $) 54 (|has| |#1| (-451)))) (-4367 (((-112) $) 31)) (-1377 (($ |#1| (-766)) 61)) (-1524 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 56 (|has| |#1| (-554)))) (-4006 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 57 (|has| |#1| (-554)))) (-3161 (((-766) $) 65)) (-4371 (($ $ $) 51 (|has| |#1| (-362)))) (-1934 (($ $ $) 52 (|has| |#1| (-362)))) (-2516 (($ $ $) 40 (|has| |#1| (-362)))) (-3552 (($ $ $) 49 (|has| |#1| (-362)))) (-1989 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 48 (|has| |#1| (-362)))) (-3151 (((-3 $ "failed") $ $) 50 (|has| |#1| (-362)))) (-1651 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 53 (|has| |#1| (-362)))) (-1573 ((|#1| $) 64)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ |#1|) 58 (|has| |#1| (-554)))) (-2250 (((-766) $) 66)) (-2201 ((|#1| $) 55 (|has| |#1| (-451)))) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 72 (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) 67)) (-3969 (((-639 |#1|) $) 60)) (-2266 ((|#1| $ (-766)) 62)) (-1568 (((-766)) 28)) (-1360 ((|#1| $ |#1| |#1|) 59)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 76) (($ |#1| $) 75)))
(((-847 |#1|) (-139) (-1044)) (T -847))
-((-3598 (*1 *2 *1) (-12 (-4 *1 (-847 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))) (-2076 (*1 *2 *1) (-12 (-4 *1 (-847 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))) (-1573 (*1 *2 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)))) (-1601 (*1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)))) (-3906 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-847 *2)) (-4 *2 (-1044)))) (-1378 (*1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-847 *2)) (-4 *2 (-1044)))) (-4358 (*1 *2 *1) (-12 (-4 *1 (-847 *3)) (-4 *3 (-1044)) (-5 *2 (-639 *3)))) (-1360 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)))) (-1762 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))) (-1736 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-847 *3)))) (-1664 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-847 *3)))) (-3900 (*1 *2 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-451)))) (-1498 (*1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-451)))) (-1535 (*1 *2 *1 *1) (-12 (-4 *3 (-362)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-847 *3)))) (-2492 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-1639 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-2075 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-3671 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-2189 (*1 *2 *1 *1) (-12 (-4 *3 (-362)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3148 *1))) (-4 *1 (-847 *3)))) (-2488 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-2227 (*1 *2 *1 *1) (-12 (-4 *3 (-362)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-847 *3)))) (-3688 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-1896 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-3041 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-4282 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-2703 (*1 *2 *1 *1) (-12 (-4 *3 (-362)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3148 *1))) (-4 *1 (-847 *3)))) (-4132 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
-(-13 (-1044) (-111 |t#1| |t#1|) (-410 |t#1|) (-10 -8 (-15 -3598 ((-766) $)) (-15 -2076 ((-766) $)) (-15 -1573 (|t#1| $)) (-15 -1601 ($ $)) (-15 -3906 (|t#1| $ (-766))) (-15 -1378 ($ |t#1| (-766))) (-15 -4358 ((-639 |t#1|) $)) (-15 -1360 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-171)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-554)) (PROGN (-15 -1762 ((-3 $ "failed") $ |t#1|)) (-15 -1736 ((-2 (|:| -2097 $) (|:| -2264 $)) $ $)) (-15 -1664 ((-2 (|:| -2097 $) (|:| -2264 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-451)) (PROGN (-15 -3900 (|t#1| $)) (-15 -1498 ($ $))) |%noBranch|) (IF (|has| |t#1| (-362)) (PROGN (-15 -1535 ((-2 (|:| -2097 $) (|:| -2264 $)) $ $)) (-15 -2492 ($ $ $)) (-15 -1639 ($ $ $)) (-15 -2075 ((-3 $ "failed") $ $)) (-15 -3671 ($ $ $)) (-15 -2189 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $)) (-15 -2488 ($ $ $)) (-15 -2227 ((-2 (|:| -2097 $) (|:| -2264 $)) $ $)) (-15 -3688 ($ $ $)) (-15 -1896 ($ $ $)) (-15 -3041 ((-3 $ "failed") $ $)) (-15 -4282 ($ $ $)) (-15 -2703 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $)) (-15 -4132 ($ $ $))) |%noBranch|)))
+((-2250 (*1 *2 *1) (-12 (-4 *1 (-847 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))) (-3161 (*1 *2 *1) (-12 (-4 *1 (-847 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))) (-1573 (*1 *2 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)))) (-1600 (*1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)))) (-2266 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-847 *2)) (-4 *2 (-1044)))) (-1377 (*1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-847 *2)) (-4 *2 (-1044)))) (-3969 (*1 *2 *1) (-12 (-4 *1 (-847 *3)) (-4 *3 (-1044)) (-5 *2 (-639 *3)))) (-1360 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)))) (-1762 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))) (-4006 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-847 *3)))) (-1524 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-847 *3)))) (-2201 (*1 *2 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-451)))) (-2578 (*1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-451)))) (-1651 (*1 *2 *1 *1) (-12 (-4 *3 (-362)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-847 *3)))) (-1934 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-4371 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-3151 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-3552 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-1989 (*1 *2 *1 *1) (-12 (-4 *3 (-362)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3147 *1))) (-4 *1 (-847 *3)))) (-1884 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-4190 (*1 *2 *1 *1) (-12 (-4 *3 (-362)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-847 *3)))) (-3711 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-1944 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-3560 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-1353 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-3392 (*1 *2 *1 *1) (-12 (-4 *3 (-362)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3147 *1))) (-4 *1 (-847 *3)))) (-2516 (*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(-13 (-1044) (-111 |t#1| |t#1|) (-410 |t#1|) (-10 -8 (-15 -2250 ((-766) $)) (-15 -3161 ((-766) $)) (-15 -1573 (|t#1| $)) (-15 -1600 ($ $)) (-15 -2266 (|t#1| $ (-766))) (-15 -1377 ($ |t#1| (-766))) (-15 -3969 ((-639 |t#1|) $)) (-15 -1360 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-171)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-554)) (PROGN (-15 -1762 ((-3 $ "failed") $ |t#1|)) (-15 -4006 ((-2 (|:| -3380 $) (|:| -1441 $)) $ $)) (-15 -1524 ((-2 (|:| -3380 $) (|:| -1441 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-451)) (PROGN (-15 -2201 (|t#1| $)) (-15 -2578 ($ $))) |%noBranch|) (IF (|has| |t#1| (-362)) (PROGN (-15 -1651 ((-2 (|:| -3380 $) (|:| -1441 $)) $ $)) (-15 -1934 ($ $ $)) (-15 -4371 ($ $ $)) (-15 -3151 ((-3 $ "failed") $ $)) (-15 -3552 ($ $ $)) (-15 -1989 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $)) (-15 -1884 ($ $ $)) (-15 -4190 ((-2 (|:| -3380 $) (|:| -1441 $)) $ $)) (-15 -3711 ($ $ $)) (-15 -1944 ($ $ $)) (-15 -3560 ((-3 $ "failed") $ $)) (-15 -1353 ($ $ $)) (-15 -3392 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $)) (-15 -2516 ($ $ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-171)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-612 #0=(-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-609 (-857)) . T) ((-410 |#1|) . T) ((-642 |#1|) . T) ((-642 $) . T) ((-712 |#1|) |has| |#1| (-171)) ((-721) . T) ((-1033 #0#) |has| |#1| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 |#1|) . T) ((-1050 |#1|) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-3002 ((|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|)) 20)) (-2227 (((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2| (-99 |#1|)) 43 (|has| |#1| (-362)))) (-1664 (((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2| (-99 |#1|)) 40 (|has| |#1| (-554)))) (-1736 (((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2| (-99 |#1|)) 39 (|has| |#1| (-554)))) (-1535 (((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2| (-99 |#1|)) 42 (|has| |#1| (-362)))) (-1360 ((|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|)) 31)))
-(((-848 |#1| |#2|) (-10 -7 (-15 -3002 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -1360 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-554)) (PROGN (-15 -1736 ((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -1664 ((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-15 -1535 ((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2227 ((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|)) (-1044) (-847 |#1|)) (T -848))
-((-2227 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-362)) (-4 *5 (-1044)) (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-848 *5 *3)) (-4 *3 (-847 *5)))) (-1535 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-362)) (-4 *5 (-1044)) (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-848 *5 *3)) (-4 *3 (-847 *5)))) (-1664 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-554)) (-4 *5 (-1044)) (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-848 *5 *3)) (-4 *3 (-847 *5)))) (-1736 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-554)) (-4 *5 (-1044)) (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-848 *5 *3)) (-4 *3 (-847 *5)))) (-1360 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1044)) (-5 *1 (-848 *2 *3)) (-4 *3 (-847 *2)))) (-3002 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1044)) (-5 *1 (-848 *5 *2)) (-4 *2 (-847 *5)))))
-(-10 -7 (-15 -3002 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -1360 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-554)) (PROGN (-15 -1736 ((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -1664 ((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-15 -1535 ((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2227 ((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1896 (($ $ $) NIL (|has| |#1| (-362)))) (-3688 (($ $ $) NIL (|has| |#1| (-362)))) (-2488 (($ $ $) NIL (|has| |#1| (-362)))) (-4282 (($ $ $) NIL (|has| |#1| (-362)))) (-2703 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-3041 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-2227 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 32 (|has| |#1| (-362)))) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#1| (-451)))) (-1995 (((-857) $ (-857)) NIL)) (-1957 (((-112) $) NIL)) (-1378 (($ |#1| (-766)) NIL)) (-1664 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 28 (|has| |#1| (-554)))) (-1736 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 26 (|has| |#1| (-554)))) (-2076 (((-766) $) NIL)) (-1639 (($ $ $) NIL (|has| |#1| (-362)))) (-2492 (($ $ $) NIL (|has| |#1| (-362)))) (-4132 (($ $ $) NIL (|has| |#1| (-362)))) (-3671 (($ $ $) NIL (|has| |#1| (-362)))) (-2189 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-2075 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1535 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 30 (|has| |#1| (-362)))) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-3598 (((-766) $) NIL)) (-3900 ((|#1| $) NIL (|has| |#1| (-451)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) NIL)) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-766)) NIL)) (-2579 (((-766)) NIL)) (-1360 ((|#1| $ |#1| |#1|) 15)) (-2286 (($) NIL T CONST)) (-2294 (($) 20 T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) 19) (($ $ (-766)) 22)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-849 |#1| |#2| |#3|) (-13 (-847 |#1|) (-10 -8 (-15 -1995 ((-857) $ (-857))))) (-1044) (-99 |#1|) (-1 |#1| |#1|)) (T -849))
-((-1995 (*1 *2 *1 *2) (-12 (-5 *2 (-857)) (-5 *1 (-849 *3 *4 *5)) (-4 *3 (-1044)) (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3)))))
-(-13 (-847 |#1|) (-10 -8 (-15 -1995 ((-857) $ (-857)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1896 (($ $ $) NIL (|has| |#2| (-362)))) (-3688 (($ $ $) NIL (|has| |#2| (-362)))) (-2488 (($ $ $) NIL (|has| |#2| (-362)))) (-4282 (($ $ $) NIL (|has| |#2| (-362)))) (-2703 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#2| (-362)))) (-3041 (((-3 $ "failed") $ $) NIL (|has| |#2| (-362)))) (-2227 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#2| (-362)))) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 |#2| "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) ((|#2| $) NIL)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#2| (-451)))) (-1957 (((-112) $) NIL)) (-1378 (($ |#2| (-766)) 16)) (-1664 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#2| (-554)))) (-1736 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#2| (-554)))) (-2076 (((-766) $) NIL)) (-1639 (($ $ $) NIL (|has| |#2| (-362)))) (-2492 (($ $ $) NIL (|has| |#2| (-362)))) (-4132 (($ $ $) NIL (|has| |#2| (-362)))) (-3671 (($ $ $) NIL (|has| |#2| (-362)))) (-2189 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#2| (-362)))) (-2075 (((-3 $ "failed") $ $) NIL (|has| |#2| (-362)))) (-1535 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#2| (-362)))) (-1573 ((|#2| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554)))) (-3598 (((-766) $) NIL)) (-3900 ((|#2| $) NIL (|has| |#2| (-451)))) (-4054 (((-857) $) 23) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#2| (-1033 (-406 (-562))))) (($ |#2|) NIL) (($ (-1252 |#1|)) 18)) (-4358 (((-639 |#2|) $) NIL)) (-3906 ((|#2| $ (-766)) NIL)) (-2579 (((-766)) NIL)) (-1360 ((|#2| $ |#2| |#2|) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) 13 T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+((-3001 ((|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|)) 20)) (-4190 (((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2| (-99 |#1|)) 43 (|has| |#1| (-362)))) (-1524 (((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2| (-99 |#1|)) 40 (|has| |#1| (-554)))) (-4006 (((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2| (-99 |#1|)) 39 (|has| |#1| (-554)))) (-1651 (((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2| (-99 |#1|)) 42 (|has| |#1| (-362)))) (-1360 ((|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|)) 31)))
+(((-848 |#1| |#2|) (-10 -7 (-15 -3001 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -1360 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-554)) (PROGN (-15 -4006 ((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -1524 ((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-15 -1651 ((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -4190 ((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|)) (-1044) (-847 |#1|)) (T -848))
+((-4190 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-362)) (-4 *5 (-1044)) (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-848 *5 *3)) (-4 *3 (-847 *5)))) (-1651 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-362)) (-4 *5 (-1044)) (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-848 *5 *3)) (-4 *3 (-847 *5)))) (-1524 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-554)) (-4 *5 (-1044)) (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-848 *5 *3)) (-4 *3 (-847 *5)))) (-4006 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-554)) (-4 *5 (-1044)) (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-848 *5 *3)) (-4 *3 (-847 *5)))) (-1360 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1044)) (-5 *1 (-848 *2 *3)) (-4 *3 (-847 *2)))) (-3001 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1044)) (-5 *1 (-848 *5 *2)) (-4 *2 (-847 *5)))))
+(-10 -7 (-15 -3001 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -1360 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-554)) (PROGN (-15 -4006 ((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -1524 ((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-15 -1651 ((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -4190 ((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1944 (($ $ $) NIL (|has| |#1| (-362)))) (-3711 (($ $ $) NIL (|has| |#1| (-362)))) (-1884 (($ $ $) NIL (|has| |#1| (-362)))) (-1353 (($ $ $) NIL (|has| |#1| (-362)))) (-3392 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-3560 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-4190 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 32 (|has| |#1| (-362)))) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#1| (-451)))) (-3508 (((-857) $ (-857)) NIL)) (-4367 (((-112) $) NIL)) (-1377 (($ |#1| (-766)) NIL)) (-1524 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 28 (|has| |#1| (-554)))) (-4006 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 26 (|has| |#1| (-554)))) (-3161 (((-766) $) NIL)) (-4371 (($ $ $) NIL (|has| |#1| (-362)))) (-1934 (($ $ $) NIL (|has| |#1| (-362)))) (-2516 (($ $ $) NIL (|has| |#1| (-362)))) (-3552 (($ $ $) NIL (|has| |#1| (-362)))) (-1989 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-3151 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1651 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 30 (|has| |#1| (-362)))) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-2250 (((-766) $) NIL)) (-2201 ((|#1| $) NIL (|has| |#1| (-451)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#1| (-1033 (-406 (-562))))) (($ |#1|) NIL)) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-766)) NIL)) (-1568 (((-766)) NIL)) (-1360 ((|#1| $ |#1| |#1|) 15)) (-2285 (($) NIL T CONST)) (-2294 (($) 20 T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) 19) (($ $ (-766)) 22)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-849 |#1| |#2| |#3|) (-13 (-847 |#1|) (-10 -8 (-15 -3508 ((-857) $ (-857))))) (-1044) (-99 |#1|) (-1 |#1| |#1|)) (T -849))
+((-3508 (*1 *2 *1 *2) (-12 (-5 *2 (-857)) (-5 *1 (-849 *3 *4 *5)) (-4 *3 (-1044)) (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3)))))
+(-13 (-847 |#1|) (-10 -8 (-15 -3508 ((-857) $ (-857)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1944 (($ $ $) NIL (|has| |#2| (-362)))) (-3711 (($ $ $) NIL (|has| |#2| (-362)))) (-1884 (($ $ $) NIL (|has| |#2| (-362)))) (-1353 (($ $ $) NIL (|has| |#2| (-362)))) (-3392 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#2| (-362)))) (-3560 (((-3 $ "failed") $ $) NIL (|has| |#2| (-362)))) (-4190 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#2| (-362)))) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 |#2| "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) ((|#2| $) NIL)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#2| (-451)))) (-4367 (((-112) $) NIL)) (-1377 (($ |#2| (-766)) 16)) (-1524 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#2| (-554)))) (-4006 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#2| (-554)))) (-3161 (((-766) $) NIL)) (-4371 (($ $ $) NIL (|has| |#2| (-362)))) (-1934 (($ $ $) NIL (|has| |#2| (-362)))) (-2516 (($ $ $) NIL (|has| |#2| (-362)))) (-3552 (($ $ $) NIL (|has| |#2| (-362)))) (-1989 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#2| (-362)))) (-3151 (((-3 $ "failed") $ $) NIL (|has| |#2| (-362)))) (-1651 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#2| (-362)))) (-1573 ((|#2| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554)))) (-2250 (((-766) $) NIL)) (-2201 ((|#2| $) NIL (|has| |#2| (-451)))) (-4053 (((-857) $) 23) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#2| (-1033 (-406 (-562))))) (($ |#2|) NIL) (($ (-1252 |#1|)) 18)) (-3969 (((-639 |#2|) $) NIL)) (-2266 ((|#2| $ (-766)) NIL)) (-1568 (((-766)) NIL)) (-1360 ((|#2| $ |#2| |#2|) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) 13 T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
(((-850 |#1| |#2| |#3| |#4|) (-13 (-847 |#2|) (-612 (-1252 |#1|))) (-1168) (-1044) (-99 |#2|) (-1 |#2| |#2|)) (T -850))
NIL
(-13 (-847 |#2|) (-612 (-1252 |#1|)))
-((-2237 ((|#1| (-766) |#1|) 35 (|has| |#1| (-38 (-406 (-562)))))) (-2399 ((|#1| (-766) (-766) |#1|) 27) ((|#1| (-766) |#1|) 20)) (-3782 ((|#1| (-766) |#1|) 31)) (-3908 ((|#1| (-766) |#1|) 29)) (-4206 ((|#1| (-766) |#1|) 28)))
-(((-851 |#1|) (-10 -7 (-15 -4206 (|#1| (-766) |#1|)) (-15 -3908 (|#1| (-766) |#1|)) (-15 -3782 (|#1| (-766) |#1|)) (-15 -2399 (|#1| (-766) |#1|)) (-15 -2399 (|#1| (-766) (-766) |#1|)) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2237 (|#1| (-766) |#1|)) |%noBranch|)) (-171)) (T -851))
-((-2237 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-171)))) (-2399 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))) (-2399 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))) (-3782 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))) (-3908 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))) (-4206 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))))
-(-10 -7 (-15 -4206 (|#1| (-766) |#1|)) (-15 -3908 (|#1| (-766) |#1|)) (-15 -3782 (|#1| (-766) |#1|)) (-15 -2399 (|#1| (-766) |#1|)) (-15 -2399 (|#1| (-766) (-766) |#1|)) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2237 (|#1| (-766) |#1|)) |%noBranch|))
-((-4041 (((-112) $ $) 7)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1798 (((-112) $ $) 16)) (-1772 (((-112) $ $) 17)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1759 (((-112) $ $) 18)) (** (($ $ (-916)) 21)) (* (($ $ $) 20)))
+((-4280 ((|#1| (-766) |#1|) 35 (|has| |#1| (-38 (-406 (-562)))))) (-3387 ((|#1| (-766) (-766) |#1|) 27) ((|#1| (-766) |#1|) 20)) (-3393 ((|#1| (-766) |#1|) 31)) (-2286 ((|#1| (-766) |#1|) 29)) (-1936 ((|#1| (-766) |#1|) 28)))
+(((-851 |#1|) (-10 -7 (-15 -1936 (|#1| (-766) |#1|)) (-15 -2286 (|#1| (-766) |#1|)) (-15 -3393 (|#1| (-766) |#1|)) (-15 -3387 (|#1| (-766) |#1|)) (-15 -3387 (|#1| (-766) (-766) |#1|)) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -4280 (|#1| (-766) |#1|)) |%noBranch|)) (-171)) (T -851))
+((-4280 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-171)))) (-3387 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))) (-3387 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))) (-3393 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))) (-2286 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))) (-1936 (*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))))
+(-10 -7 (-15 -1936 (|#1| (-766) |#1|)) (-15 -2286 (|#1| (-766) |#1|)) (-15 -3393 (|#1| (-766) |#1|)) (-15 -3387 (|#1| (-766) |#1|)) (-15 -3387 (|#1| (-766) (-766) |#1|)) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -4280 (|#1| (-766) |#1|)) |%noBranch|))
+((-4041 (((-112) $ $) 7)) (-1551 (($ $ $) 13)) (-2993 (($ $ $) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1798 (((-112) $ $) 16)) (-1771 (((-112) $ $) 17)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 15)) (-1761 (((-112) $ $) 18)) (** (($ $ (-916)) 21)) (* (($ $ $) 20)))
(((-852) (-139)) (T -852))
NIL
(-13 (-845) (-1104))
(((-102) . T) ((-609 (-857)) . T) ((-845) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-2534 (((-562) $) 12)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 18) (($ (-562)) 11)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 8)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 9)))
-(((-853) (-13 (-845) (-10 -8 (-15 -4054 ($ (-562))) (-15 -2534 ((-562) $))))) (T -853))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-853)))) (-2534 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-853)))))
-(-13 (-845) (-10 -8 (-15 -4054 ($ (-562))) (-15 -2534 ((-562) $))))
-((-2475 (((-685 (-1214)) $ (-1214)) 15)) (-3202 (((-685 (-547)) $ (-547)) 12)) (-3787 (((-766) $ (-128)) 24)))
-(((-854 |#1|) (-10 -8 (-15 -3787 ((-766) |#1| (-128))) (-15 -2475 ((-685 (-1214)) |#1| (-1214))) (-15 -3202 ((-685 (-547)) |#1| (-547)))) (-855)) (T -854))
-NIL
-(-10 -8 (-15 -3787 ((-766) |#1| (-128))) (-15 -2475 ((-685 (-1214)) |#1| (-1214))) (-15 -3202 ((-685 (-547)) |#1| (-547))))
-((-2475 (((-685 (-1214)) $ (-1214)) 8)) (-3202 (((-685 (-547)) $ (-547)) 9)) (-3787 (((-766) $ (-128)) 7)) (-3966 (((-685 (-129)) $ (-129)) 10)) (-3948 (($ $) 6)))
+((-4041 (((-112) $ $) NIL)) (-2533 (((-562) $) 12)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 18) (($ (-562)) 11)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 8)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 9)))
+(((-853) (-13 (-845) (-10 -8 (-15 -4053 ($ (-562))) (-15 -2533 ((-562) $))))) (T -853))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-853)))) (-2533 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-853)))))
+(-13 (-845) (-10 -8 (-15 -4053 ($ (-562))) (-15 -2533 ((-562) $))))
+((-1734 (((-685 (-1214)) $ (-1214)) 15)) (-2667 (((-685 (-547)) $ (-547)) 12)) (-3445 (((-766) $ (-128)) 24)))
+(((-854 |#1|) (-10 -8 (-15 -3445 ((-766) |#1| (-128))) (-15 -1734 ((-685 (-1214)) |#1| (-1214))) (-15 -2667 ((-685 (-547)) |#1| (-547)))) (-855)) (T -854))
+NIL
+(-10 -8 (-15 -3445 ((-766) |#1| (-128))) (-15 -1734 ((-685 (-1214)) |#1| (-1214))) (-15 -2667 ((-685 (-547)) |#1| (-547))))
+((-1734 (((-685 (-1214)) $ (-1214)) 8)) (-2667 (((-685 (-547)) $ (-547)) 9)) (-3445 (((-766) $ (-128)) 7)) (-1571 (((-685 (-129)) $ (-129)) 10)) (-1380 (($ $) 6)))
(((-855) (-139)) (T -855))
-((-3966 (*1 *2 *1 *3) (-12 (-4 *1 (-855)) (-5 *2 (-685 (-129))) (-5 *3 (-129)))) (-3202 (*1 *2 *1 *3) (-12 (-4 *1 (-855)) (-5 *2 (-685 (-547))) (-5 *3 (-547)))) (-2475 (*1 *2 *1 *3) (-12 (-4 *1 (-855)) (-5 *2 (-685 (-1214))) (-5 *3 (-1214)))) (-3787 (*1 *2 *1 *3) (-12 (-4 *1 (-855)) (-5 *3 (-128)) (-5 *2 (-766)))))
-(-13 (-172) (-10 -8 (-15 -3966 ((-685 (-129)) $ (-129))) (-15 -3202 ((-685 (-547)) $ (-547))) (-15 -2475 ((-685 (-1214)) $ (-1214))) (-15 -3787 ((-766) $ (-128)))))
+((-1571 (*1 *2 *1 *3) (-12 (-4 *1 (-855)) (-5 *2 (-685 (-129))) (-5 *3 (-129)))) (-2667 (*1 *2 *1 *3) (-12 (-4 *1 (-855)) (-5 *2 (-685 (-547))) (-5 *3 (-547)))) (-1734 (*1 *2 *1 *3) (-12 (-4 *1 (-855)) (-5 *2 (-685 (-1214))) (-5 *3 (-1214)))) (-3445 (*1 *2 *1 *3) (-12 (-4 *1 (-855)) (-5 *3 (-128)) (-5 *2 (-766)))))
+(-13 (-172) (-10 -8 (-15 -1571 ((-685 (-129)) $ (-129))) (-15 -2667 ((-685 (-547)) $ (-547))) (-15 -1734 ((-685 (-1214)) $ (-1214))) (-15 -3445 ((-766) $ (-128)))))
(((-172) . T))
-((-2475 (((-685 (-1214)) $ (-1214)) NIL)) (-3202 (((-685 (-547)) $ (-547)) NIL)) (-3787 (((-766) $ (-128)) NIL)) (-3966 (((-685 (-129)) $ (-129)) 21)) (-2210 (($ (-387)) 12) (($ (-1150)) 14)) (-2468 (((-112) $) 18)) (-4054 (((-857) $) 25)) (-3948 (($ $) 22)))
-(((-856) (-13 (-855) (-609 (-857)) (-10 -8 (-15 -2210 ($ (-387))) (-15 -2210 ($ (-1150))) (-15 -2468 ((-112) $))))) (T -856))
-((-2210 (*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-856)))) (-2210 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-856)))) (-2468 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-856)))))
-(-13 (-855) (-609 (-857)) (-10 -8 (-15 -2210 ($ (-387))) (-15 -2210 ($ (-1150))) (-15 -2468 ((-112) $))))
-((-4041 (((-112) $ $) NIL) (($ $ $) 77)) (-1822 (($ $ $) 114)) (-3697 (((-562) $) 31) (((-562)) 36)) (-1363 (($ (-562)) 45)) (-1713 (($ $ $) 46) (($ (-639 $)) 76)) (-3439 (($ $ (-639 $)) 74)) (-1801 (((-562) $) 34)) (-1600 (($ $ $) 65)) (-1625 (($ $) 127) (($ $ $) 128) (($ $ $ $) 129)) (-1725 (((-562) $) 33)) (-3562 (($ $ $) 64)) (-3596 (($ $) 104)) (-1307 (($ $ $) 118)) (-3180 (($ (-639 $)) 53)) (-3652 (($ $ (-639 $)) 71)) (-4127 (($ (-562) (-562)) 47)) (-4334 (($ $) 115) (($ $ $) 116)) (-1602 (($ $ (-562)) 41) (($ $) 44)) (-1811 (($ $ $) 89)) (-3240 (($ $ $) 121)) (-3786 (($ $) 105)) (-1787 (($ $ $) 90)) (-2754 (($ $) 130) (($ $ $) 131) (($ $ $ $) 132)) (-3207 (((-1261) $) 10)) (-2641 (($ $) 108) (($ $ (-766)) 111)) (-2546 (($ $ $) 67)) (-2074 (($ $ $) 66)) (-2178 (($ $ (-639 $)) 100)) (-1394 (($ $ $) 103)) (-2900 (($ (-639 $)) 51)) (-1383 (($ $) 62) (($ (-639 $)) 63)) (-2344 (($ $ $) 112)) (-3970 (($ $) 106)) (-3084 (($ $ $) 117)) (-1995 (($ (-562)) 21) (($ (-1168)) 23) (($ (-1150)) 30) (($ (-224)) 25)) (-2255 (($ $ $) 93)) (-2236 (($ $) 94)) (-2195 (((-1261) (-1150)) 15)) (-3883 (($ (-1150)) 14)) (-2885 (($ (-639 (-639 $))) 50)) (-1588 (($ $ (-562)) 40) (($ $) 43)) (-2913 (((-1150) $) NIL)) (-1799 (($ $ $) 120)) (-1645 (($ $) 133) (($ $ $) 134) (($ $ $ $) 135)) (-3918 (((-112) $) 98)) (-3142 (($ $ (-639 $)) 101) (($ $ $ $) 102)) (-2224 (($ (-562)) 37)) (-3060 (((-562) $) 32) (((-562)) 35)) (-1391 (($ $ $) 38) (($ (-639 $)) 75)) (-1709 (((-1112) $) NIL)) (-1762 (($ $ $) 91)) (-4307 (($) 13)) (-2343 (($ $ (-639 $)) 99)) (-1484 (((-1150) (-1150)) 8)) (-4177 (($ $) 107) (($ $ (-766)) 110)) (-1773 (($ $ $) 88)) (-4029 (($ $ (-766)) 126)) (-3428 (($ (-639 $)) 52)) (-4054 (((-857) $) 19)) (-2328 (($ $ (-562)) 39) (($ $) 42)) (-2956 (($ $) 60) (($ (-639 $)) 61)) (-1703 (($ $) 58) (($ (-639 $)) 59)) (-2746 (($ $) 113)) (-3504 (($ (-639 $)) 57)) (-3261 (($ $ $) 97)) (-1855 (($ $ $) 119)) (-2246 (($ $ $) 92)) (-3864 (($ $ $) 95) (($ $) 96)) (-1798 (($ $ $) 81)) (-1772 (($ $ $) 79)) (-1731 (((-112) $ $) 16) (($ $ $) 17)) (-1785 (($ $ $) 80)) (-1759 (($ $ $) 78)) (-1859 (($ $ $) 86)) (-1848 (($ $ $) 83) (($ $) 84)) (-1835 (($ $ $) 82)) (** (($ $ $) 87)) (* (($ $ $) 85)))
-(((-857) (-13 (-1092) (-10 -8 (-15 -3207 ((-1261) $)) (-15 -3883 ($ (-1150))) (-15 -2195 ((-1261) (-1150))) (-15 -1995 ($ (-562))) (-15 -1995 ($ (-1168))) (-15 -1995 ($ (-1150))) (-15 -1995 ($ (-224))) (-15 -4307 ($)) (-15 -1484 ((-1150) (-1150))) (-15 -3697 ((-562) $)) (-15 -3060 ((-562) $)) (-15 -3697 ((-562))) (-15 -3060 ((-562))) (-15 -1725 ((-562) $)) (-15 -1801 ((-562) $)) (-15 -2224 ($ (-562))) (-15 -1363 ($ (-562))) (-15 -4127 ($ (-562) (-562))) (-15 -1588 ($ $ (-562))) (-15 -1602 ($ $ (-562))) (-15 -2328 ($ $ (-562))) (-15 -1588 ($ $)) (-15 -1602 ($ $)) (-15 -2328 ($ $)) (-15 -1391 ($ $ $)) (-15 -1713 ($ $ $)) (-15 -1391 ($ (-639 $))) (-15 -1713 ($ (-639 $))) (-15 -2178 ($ $ (-639 $))) (-15 -3142 ($ $ (-639 $))) (-15 -3142 ($ $ $ $)) (-15 -1394 ($ $ $)) (-15 -3918 ((-112) $)) (-15 -2343 ($ $ (-639 $))) (-15 -3596 ($ $)) (-15 -1799 ($ $ $)) (-15 -2746 ($ $)) (-15 -2885 ($ (-639 (-639 $)))) (-15 -1822 ($ $ $)) (-15 -4334 ($ $)) (-15 -4334 ($ $ $)) (-15 -3084 ($ $ $)) (-15 -1307 ($ $ $)) (-15 -1855 ($ $ $)) (-15 -3240 ($ $ $)) (-15 -4029 ($ $ (-766))) (-15 -3261 ($ $ $)) (-15 -3562 ($ $ $)) (-15 -1600 ($ $ $)) (-15 -2074 ($ $ $)) (-15 -2546 ($ $ $)) (-15 -3652 ($ $ (-639 $))) (-15 -3439 ($ $ (-639 $))) (-15 -3786 ($ $)) (-15 -4177 ($ $)) (-15 -4177 ($ $ (-766))) (-15 -2641 ($ $)) (-15 -2641 ($ $ (-766))) (-15 -3970 ($ $)) (-15 -2344 ($ $ $)) (-15 -1625 ($ $)) (-15 -1625 ($ $ $)) (-15 -1625 ($ $ $ $)) (-15 -2754 ($ $)) (-15 -2754 ($ $ $)) (-15 -2754 ($ $ $ $)) (-15 -1645 ($ $)) (-15 -1645 ($ $ $)) (-15 -1645 ($ $ $ $)) (-15 -1703 ($ $)) (-15 -1703 ($ (-639 $))) (-15 -2956 ($ $)) (-15 -2956 ($ (-639 $))) (-15 -1383 ($ $)) (-15 -1383 ($ (-639 $))) (-15 -2900 ($ (-639 $))) (-15 -3428 ($ (-639 $))) (-15 -3180 ($ (-639 $))) (-15 -3504 ($ (-639 $))) (-15 -1731 ($ $ $)) (-15 -4041 ($ $ $)) (-15 -1759 ($ $ $)) (-15 -1772 ($ $ $)) (-15 -1785 ($ $ $)) (-15 -1798 ($ $ $)) (-15 -1835 ($ $ $)) (-15 -1848 ($ $ $)) (-15 -1848 ($ $)) (-15 * ($ $ $)) (-15 -1859 ($ $ $)) (-15 ** ($ $ $)) (-15 -1773 ($ $ $)) (-15 -1811 ($ $ $)) (-15 -1787 ($ $ $)) (-15 -1762 ($ $ $)) (-15 -2246 ($ $ $)) (-15 -2255 ($ $ $)) (-15 -2236 ($ $)) (-15 -3864 ($ $ $)) (-15 -3864 ($ $))))) (T -857))
-((-3207 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-857)))) (-3883 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-857)))) (-2195 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-857)))) (-1995 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-1995 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-857)))) (-1995 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-857)))) (-1995 (*1 *1 *2) (-12 (-5 *2 (-224)) (-5 *1 (-857)))) (-4307 (*1 *1) (-5 *1 (-857))) (-1484 (*1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-857)))) (-3697 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-3060 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-3697 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-3060 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-1725 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-1801 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-2224 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-1363 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-4127 (*1 *1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-1588 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-1602 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-2328 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-1588 (*1 *1 *1) (-5 *1 (-857))) (-1602 (*1 *1 *1) (-5 *1 (-857))) (-2328 (*1 *1 *1) (-5 *1 (-857))) (-1391 (*1 *1 *1 *1) (-5 *1 (-857))) (-1713 (*1 *1 *1 *1) (-5 *1 (-857))) (-1391 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-1713 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-2178 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3142 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3142 (*1 *1 *1 *1 *1) (-5 *1 (-857))) (-1394 (*1 *1 *1 *1) (-5 *1 (-857))) (-3918 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-857)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3596 (*1 *1 *1) (-5 *1 (-857))) (-1799 (*1 *1 *1 *1) (-5 *1 (-857))) (-2746 (*1 *1 *1) (-5 *1 (-857))) (-2885 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 (-857)))) (-5 *1 (-857)))) (-1822 (*1 *1 *1 *1) (-5 *1 (-857))) (-4334 (*1 *1 *1) (-5 *1 (-857))) (-4334 (*1 *1 *1 *1) (-5 *1 (-857))) (-3084 (*1 *1 *1 *1) (-5 *1 (-857))) (-1307 (*1 *1 *1 *1) (-5 *1 (-857))) (-1855 (*1 *1 *1 *1) (-5 *1 (-857))) (-3240 (*1 *1 *1 *1) (-5 *1 (-857))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-857)))) (-3261 (*1 *1 *1 *1) (-5 *1 (-857))) (-3562 (*1 *1 *1 *1) (-5 *1 (-857))) (-1600 (*1 *1 *1 *1) (-5 *1 (-857))) (-2074 (*1 *1 *1 *1) (-5 *1 (-857))) (-2546 (*1 *1 *1 *1) (-5 *1 (-857))) (-3652 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3439 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3786 (*1 *1 *1) (-5 *1 (-857))) (-4177 (*1 *1 *1) (-5 *1 (-857))) (-4177 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-857)))) (-2641 (*1 *1 *1) (-5 *1 (-857))) (-2641 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-857)))) (-3970 (*1 *1 *1) (-5 *1 (-857))) (-2344 (*1 *1 *1 *1) (-5 *1 (-857))) (-1625 (*1 *1 *1) (-5 *1 (-857))) (-1625 (*1 *1 *1 *1) (-5 *1 (-857))) (-1625 (*1 *1 *1 *1 *1) (-5 *1 (-857))) (-2754 (*1 *1 *1) (-5 *1 (-857))) (-2754 (*1 *1 *1 *1) (-5 *1 (-857))) (-2754 (*1 *1 *1 *1 *1) (-5 *1 (-857))) (-1645 (*1 *1 *1) (-5 *1 (-857))) (-1645 (*1 *1 *1 *1) (-5 *1 (-857))) (-1645 (*1 *1 *1 *1 *1) (-5 *1 (-857))) (-1703 (*1 *1 *1) (-5 *1 (-857))) (-1703 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-2956 (*1 *1 *1) (-5 *1 (-857))) (-2956 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-1383 (*1 *1 *1) (-5 *1 (-857))) (-1383 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-2900 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3428 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3180 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3504 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-1731 (*1 *1 *1 *1) (-5 *1 (-857))) (-4041 (*1 *1 *1 *1) (-5 *1 (-857))) (-1759 (*1 *1 *1 *1) (-5 *1 (-857))) (-1772 (*1 *1 *1 *1) (-5 *1 (-857))) (-1785 (*1 *1 *1 *1) (-5 *1 (-857))) (-1798 (*1 *1 *1 *1) (-5 *1 (-857))) (-1835 (*1 *1 *1 *1) (-5 *1 (-857))) (-1848 (*1 *1 *1 *1) (-5 *1 (-857))) (-1848 (*1 *1 *1) (-5 *1 (-857))) (* (*1 *1 *1 *1) (-5 *1 (-857))) (-1859 (*1 *1 *1 *1) (-5 *1 (-857))) (** (*1 *1 *1 *1) (-5 *1 (-857))) (-1773 (*1 *1 *1 *1) (-5 *1 (-857))) (-1811 (*1 *1 *1 *1) (-5 *1 (-857))) (-1787 (*1 *1 *1 *1) (-5 *1 (-857))) (-1762 (*1 *1 *1 *1) (-5 *1 (-857))) (-2246 (*1 *1 *1 *1) (-5 *1 (-857))) (-2255 (*1 *1 *1 *1) (-5 *1 (-857))) (-2236 (*1 *1 *1) (-5 *1 (-857))) (-3864 (*1 *1 *1 *1) (-5 *1 (-857))) (-3864 (*1 *1 *1) (-5 *1 (-857))))
-(-13 (-1092) (-10 -8 (-15 -3207 ((-1261) $)) (-15 -3883 ($ (-1150))) (-15 -2195 ((-1261) (-1150))) (-15 -1995 ($ (-562))) (-15 -1995 ($ (-1168))) (-15 -1995 ($ (-1150))) (-15 -1995 ($ (-224))) (-15 -4307 ($)) (-15 -1484 ((-1150) (-1150))) (-15 -3697 ((-562) $)) (-15 -3060 ((-562) $)) (-15 -3697 ((-562))) (-15 -3060 ((-562))) (-15 -1725 ((-562) $)) (-15 -1801 ((-562) $)) (-15 -2224 ($ (-562))) (-15 -1363 ($ (-562))) (-15 -4127 ($ (-562) (-562))) (-15 -1588 ($ $ (-562))) (-15 -1602 ($ $ (-562))) (-15 -2328 ($ $ (-562))) (-15 -1588 ($ $)) (-15 -1602 ($ $)) (-15 -2328 ($ $)) (-15 -1391 ($ $ $)) (-15 -1713 ($ $ $)) (-15 -1391 ($ (-639 $))) (-15 -1713 ($ (-639 $))) (-15 -2178 ($ $ (-639 $))) (-15 -3142 ($ $ (-639 $))) (-15 -3142 ($ $ $ $)) (-15 -1394 ($ $ $)) (-15 -3918 ((-112) $)) (-15 -2343 ($ $ (-639 $))) (-15 -3596 ($ $)) (-15 -1799 ($ $ $)) (-15 -2746 ($ $)) (-15 -2885 ($ (-639 (-639 $)))) (-15 -1822 ($ $ $)) (-15 -4334 ($ $)) (-15 -4334 ($ $ $)) (-15 -3084 ($ $ $)) (-15 -1307 ($ $ $)) (-15 -1855 ($ $ $)) (-15 -3240 ($ $ $)) (-15 -4029 ($ $ (-766))) (-15 -3261 ($ $ $)) (-15 -3562 ($ $ $)) (-15 -1600 ($ $ $)) (-15 -2074 ($ $ $)) (-15 -2546 ($ $ $)) (-15 -3652 ($ $ (-639 $))) (-15 -3439 ($ $ (-639 $))) (-15 -3786 ($ $)) (-15 -4177 ($ $)) (-15 -4177 ($ $ (-766))) (-15 -2641 ($ $)) (-15 -2641 ($ $ (-766))) (-15 -3970 ($ $)) (-15 -2344 ($ $ $)) (-15 -1625 ($ $)) (-15 -1625 ($ $ $)) (-15 -1625 ($ $ $ $)) (-15 -2754 ($ $)) (-15 -2754 ($ $ $)) (-15 -2754 ($ $ $ $)) (-15 -1645 ($ $)) (-15 -1645 ($ $ $)) (-15 -1645 ($ $ $ $)) (-15 -1703 ($ $)) (-15 -1703 ($ (-639 $))) (-15 -2956 ($ $)) (-15 -2956 ($ (-639 $))) (-15 -1383 ($ $)) (-15 -1383 ($ (-639 $))) (-15 -2900 ($ (-639 $))) (-15 -3428 ($ (-639 $))) (-15 -3180 ($ (-639 $))) (-15 -3504 ($ (-639 $))) (-15 -1731 ($ $ $)) (-15 -4041 ($ $ $)) (-15 -1759 ($ $ $)) (-15 -1772 ($ $ $)) (-15 -1785 ($ $ $)) (-15 -1798 ($ $ $)) (-15 -1835 ($ $ $)) (-15 -1848 ($ $ $)) (-15 -1848 ($ $)) (-15 * ($ $ $)) (-15 -1859 ($ $ $)) (-15 ** ($ $ $)) (-15 -1773 ($ $ $)) (-15 -1811 ($ $ $)) (-15 -1787 ($ $ $)) (-15 -1762 ($ $ $)) (-15 -2246 ($ $ $)) (-15 -2255 ($ $ $)) (-15 -2236 ($ $)) (-15 -3864 ($ $ $)) (-15 -3864 ($ $))))
-((-1967 (((-1261) (-639 (-52))) 24)) (-3463 (((-1261) (-1150) (-857)) 14) (((-1261) (-857)) 9) (((-1261) (-1150)) 11)))
-(((-858) (-10 -7 (-15 -3463 ((-1261) (-1150))) (-15 -3463 ((-1261) (-857))) (-15 -3463 ((-1261) (-1150) (-857))) (-15 -1967 ((-1261) (-639 (-52)))))) (T -858))
-((-1967 (*1 *2 *3) (-12 (-5 *3 (-639 (-52))) (-5 *2 (-1261)) (-5 *1 (-858)))) (-3463 (*1 *2 *3 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-857)) (-5 *2 (-1261)) (-5 *1 (-858)))) (-3463 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-858)))) (-3463 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-858)))))
-(-10 -7 (-15 -3463 ((-1261) (-1150))) (-15 -3463 ((-1261) (-857))) (-15 -3463 ((-1261) (-1150) (-857))) (-15 -1967 ((-1261) (-639 (-52)))))
-((-4041 (((-112) $ $) NIL)) (-2444 (((-3 $ "failed") (-1168)) 33)) (-1382 (((-766)) 31)) (-1448 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-1999 (((-916) $) 29)) (-2913 (((-1150) $) 39)) (-2466 (($ (-916)) 28)) (-1709 (((-1112) $) NIL)) (-4208 (((-1168) $) 13) (((-535) $) 19) (((-887 (-378)) $) 26) (((-887 (-562)) $) 22)) (-4054 (((-857) $) 16)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 36)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 35)))
-(((-859 |#1|) (-13 (-839) (-610 (-1168)) (-610 (-535)) (-610 (-887 (-378))) (-610 (-887 (-562))) (-10 -8 (-15 -2444 ((-3 $ "failed") (-1168))))) (-639 (-1168))) (T -859))
-((-2444 (*1 *1 *2) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-859 *3)) (-14 *3 (-639 *2)))))
-(-13 (-839) (-610 (-1168)) (-610 (-535)) (-610 (-887 (-378))) (-610 (-887 (-562))) (-10 -8 (-15 -2444 ((-3 $ "failed") (-1168)))))
-((-4041 (((-112) $ $) NIL)) (-3254 (((-505) $) 9)) (-1912 (((-639 (-438)) $) 13)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 21)) (-1731 (((-112) $ $) 16)))
-(((-860) (-13 (-1092) (-10 -8 (-15 -3254 ((-505) $)) (-15 -1912 ((-639 (-438)) $))))) (T -860))
-((-3254 (*1 *2 *1) (-12 (-5 *2 (-505)) (-5 *1 (-860)))) (-1912 (*1 *2 *1) (-12 (-5 *2 (-639 (-438))) (-5 *1 (-860)))))
-(-13 (-1092) (-10 -8 (-15 -3254 ((-505) $)) (-15 -1912 ((-639 (-438)) $))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) NIL)) (-1957 (((-112) $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ (-947 |#1|)) NIL) (((-947 |#1|) $) NIL) (($ |#1|) NIL (|has| |#1| (-171)))) (-2579 (((-766)) NIL)) (-2464 (((-1261) (-766)) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-1731 (((-112) $ $) NIL)) (-1859 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-171))) (($ $ |#1|) NIL (|has| |#1| (-171)))))
-(((-861 |#1| |#2| |#3| |#4|) (-13 (-1044) (-489 (-947 |#1|)) (-10 -8 (IF (|has| |#1| (-171)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -1859 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2464 ((-1261) (-766))))) (-1044) (-639 (-1168)) (-639 (-766)) (-766)) (T -861))
-((-1859 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-861 *2 *3 *4 *5)) (-4 *2 (-362)) (-4 *2 (-1044)) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-766))) (-14 *5 (-766)))) (-2464 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-861 *4 *5 *6 *7)) (-4 *4 (-1044)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 *3)) (-14 *7 *3))))
-(-13 (-1044) (-489 (-947 |#1|)) (-10 -8 (IF (|has| |#1| (-171)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -1859 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2464 ((-1261) (-766)))))
-((-3839 (((-3 (-173 |#3|) "failed") (-766) (-766) |#2| |#2|) 31)) (-2562 (((-3 (-406 |#3|) "failed") (-766) (-766) |#2| |#2|) 24)))
-(((-862 |#1| |#2| |#3|) (-10 -7 (-15 -2562 ((-3 (-406 |#3|) "failed") (-766) (-766) |#2| |#2|)) (-15 -3839 ((-3 (-173 |#3|) "failed") (-766) (-766) |#2| |#2|))) (-362) (-1247 |#1|) (-1232 |#1|)) (T -862))
-((-3839 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-766)) (-4 *5 (-362)) (-5 *2 (-173 *6)) (-5 *1 (-862 *5 *4 *6)) (-4 *4 (-1247 *5)) (-4 *6 (-1232 *5)))) (-2562 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-766)) (-4 *5 (-362)) (-5 *2 (-406 *6)) (-5 *1 (-862 *5 *4 *6)) (-4 *4 (-1247 *5)) (-4 *6 (-1232 *5)))))
-(-10 -7 (-15 -2562 ((-3 (-406 |#3|) "failed") (-766) (-766) |#2| |#2|)) (-15 -3839 ((-3 (-173 |#3|) "failed") (-766) (-766) |#2| |#2|)))
-((-2562 (((-3 (-406 (-1229 |#2| |#1|)) "failed") (-766) (-766) (-1248 |#1| |#2| |#3|)) 28) (((-3 (-406 (-1229 |#2| |#1|)) "failed") (-766) (-766) (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|)) 26)))
-(((-863 |#1| |#2| |#3|) (-10 -7 (-15 -2562 ((-3 (-406 (-1229 |#2| |#1|)) "failed") (-766) (-766) (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|))) (-15 -2562 ((-3 (-406 (-1229 |#2| |#1|)) "failed") (-766) (-766) (-1248 |#1| |#2| |#3|)))) (-362) (-1168) |#1|) (T -863))
-((-2562 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-766)) (-5 *4 (-1248 *5 *6 *7)) (-4 *5 (-362)) (-14 *6 (-1168)) (-14 *7 *5) (-5 *2 (-406 (-1229 *6 *5))) (-5 *1 (-863 *5 *6 *7)))) (-2562 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-766)) (-5 *4 (-1248 *5 *6 *7)) (-4 *5 (-362)) (-14 *6 (-1168)) (-14 *7 *5) (-5 *2 (-406 (-1229 *6 *5))) (-5 *1 (-863 *5 *6 *7)))))
-(-10 -7 (-15 -2562 ((-3 (-406 (-1229 |#2| |#1|)) "failed") (-766) (-766) (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|))) (-15 -2562 ((-3 (-406 (-1229 |#2| |#1|)) "failed") (-766) (-766) (-1248 |#1| |#2| |#3|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-1643 (($ $ (-562)) 63)) (-2569 (((-112) $ $) 60)) (-1800 (($) 17 T CONST)) (-4334 (($ (-1164 (-562)) (-562)) 62)) (-1811 (($ $ $) 56)) (-3668 (((-3 $ "failed") $) 33)) (-2977 (($ $) 65)) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-1900 (((-766) $) 70)) (-1957 (((-112) $) 31)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-3518 (((-562)) 67)) (-2779 (((-562) $) 66)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1353 (($ $ (-562)) 69)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1577 (((-766) $) 59)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 58)) (-3280 (((-1148 (-562)) $) 71)) (-2256 (($ $) 68)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-1406 (((-562) $ (-562)) 64)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-1734 (((-685 (-1214)) $ (-1214)) NIL)) (-2667 (((-685 (-547)) $ (-547)) NIL)) (-3445 (((-766) $ (-128)) NIL)) (-1571 (((-685 (-129)) $ (-129)) 21)) (-2198 (($ (-387)) 12) (($ (-1150)) 14)) (-2851 (((-112) $) 18)) (-4053 (((-857) $) 25)) (-1380 (($ $) 22)))
+(((-856) (-13 (-855) (-609 (-857)) (-10 -8 (-15 -2198 ($ (-387))) (-15 -2198 ($ (-1150))) (-15 -2851 ((-112) $))))) (T -856))
+((-2198 (*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-856)))) (-2198 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-856)))) (-2851 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-856)))))
+(-13 (-855) (-609 (-857)) (-10 -8 (-15 -2198 ($ (-387))) (-15 -2198 ($ (-1150))) (-15 -2851 ((-112) $))))
+((-4041 (((-112) $ $) NIL) (($ $ $) 77)) (-2401 (($ $ $) 114)) (-3697 (((-562) $) 31) (((-562)) 36)) (-3632 (($ (-562)) 45)) (-3808 (($ $ $) 46) (($ (-639 $)) 76)) (-3074 (($ $ (-639 $)) 74)) (-3340 (((-562) $) 34)) (-1599 (($ $ $) 65)) (-1625 (($ $) 127) (($ $ $) 128) (($ $ $ $) 129)) (-3902 (((-562) $) 33)) (-1923 (($ $ $) 64)) (-3596 (($ $) 104)) (-1659 (($ $ $) 118)) (-2467 (($ (-639 $)) 53)) (-3652 (($ $ (-639 $)) 71)) (-2474 (($ (-562) (-562)) 47)) (-3723 (($ $) 115) (($ $ $) 116)) (-1603 (($ $ (-562)) 41) (($ $) 44)) (-1810 (($ $ $) 89)) (-1840 (($ $ $) 121)) (-3436 (($ $) 105)) (-1787 (($ $ $) 90)) (-2723 (($ $) 130) (($ $ $) 131) (($ $ $ $) 132)) (-3206 (((-1261) $) 10)) (-4066 (($ $) 108) (($ $ (-766)) 111)) (-4286 (($ $ $) 67)) (-3142 (($ $ $) 66)) (-2177 (($ $ (-639 $)) 100)) (-3889 (($ $ $) 103)) (-3575 (($ (-639 $)) 51)) (-2229 (($ $) 62) (($ (-639 $)) 63)) (-4085 (($ $ $) 112)) (-1624 (($ $) 106)) (-3954 (($ $ $) 117)) (-3508 (($ (-562)) 21) (($ (-1168)) 23) (($ (-1150)) 30) (($ (-224)) 25)) (-2256 (($ $ $) 93)) (-2234 (($ $) 94)) (-2045 (((-1261) (-1150)) 15)) (-3885 (($ (-1150)) 14)) (-2884 (($ (-639 (-639 $))) 50)) (-1589 (($ $ (-562)) 40) (($ $) 43)) (-3696 (((-1150) $) NIL)) (-1799 (($ $ $) 120)) (-1322 (($ $) 133) (($ $ $) 134) (($ $ $ $) 135)) (-3918 (((-112) $) 98)) (-3260 (($ $ (-639 $)) 101) (($ $ $ $) 102)) (-4160 (($ (-562)) 37)) (-3059 (((-562) $) 32) (((-562)) 35)) (-4059 (($ $ $) 38) (($ (-639 $)) 75)) (-1709 (((-1112) $) NIL)) (-1762 (($ $ $) 91)) (-1663 (($) 13)) (-2343 (($ $ (-639 $)) 99)) (-2475 (((-1150) (-1150)) 8)) (-2852 (($ $) 107) (($ $ (-766)) 110)) (-1774 (($ $ $) 88)) (-4029 (($ $ (-766)) 126)) (-2975 (($ (-639 $)) 52)) (-4053 (((-857) $) 19)) (-2328 (($ $ (-562)) 39) (($ $) 42)) (-4138 (($ $) 60) (($ (-639 $)) 61)) (-1702 (($ $) 58) (($ (-639 $)) 59)) (-2745 (($ $) 113)) (-2563 (($ (-639 $)) 57)) (-2068 (($ $ $) 97)) (-2714 (($ $ $) 119)) (-2245 (($ $ $) 92)) (-3863 (($ $ $) 95) (($ $) 96)) (-1798 (($ $ $) 81)) (-1771 (($ $ $) 79)) (-1733 (((-112) $ $) 16) (($ $ $) 17)) (-1785 (($ $ $) 80)) (-1761 (($ $ $) 78)) (-1859 (($ $ $) 86)) (-1847 (($ $ $) 83) (($ $) 84)) (-1836 (($ $ $) 82)) (** (($ $ $) 87)) (* (($ $ $) 85)))
+(((-857) (-13 (-1092) (-10 -8 (-15 -3206 ((-1261) $)) (-15 -3885 ($ (-1150))) (-15 -2045 ((-1261) (-1150))) (-15 -3508 ($ (-562))) (-15 -3508 ($ (-1168))) (-15 -3508 ($ (-1150))) (-15 -3508 ($ (-224))) (-15 -1663 ($)) (-15 -2475 ((-1150) (-1150))) (-15 -3697 ((-562) $)) (-15 -3059 ((-562) $)) (-15 -3697 ((-562))) (-15 -3059 ((-562))) (-15 -3902 ((-562) $)) (-15 -3340 ((-562) $)) (-15 -4160 ($ (-562))) (-15 -3632 ($ (-562))) (-15 -2474 ($ (-562) (-562))) (-15 -1589 ($ $ (-562))) (-15 -1603 ($ $ (-562))) (-15 -2328 ($ $ (-562))) (-15 -1589 ($ $)) (-15 -1603 ($ $)) (-15 -2328 ($ $)) (-15 -4059 ($ $ $)) (-15 -3808 ($ $ $)) (-15 -4059 ($ (-639 $))) (-15 -3808 ($ (-639 $))) (-15 -2177 ($ $ (-639 $))) (-15 -3260 ($ $ (-639 $))) (-15 -3260 ($ $ $ $)) (-15 -3889 ($ $ $)) (-15 -3918 ((-112) $)) (-15 -2343 ($ $ (-639 $))) (-15 -3596 ($ $)) (-15 -1799 ($ $ $)) (-15 -2745 ($ $)) (-15 -2884 ($ (-639 (-639 $)))) (-15 -2401 ($ $ $)) (-15 -3723 ($ $)) (-15 -3723 ($ $ $)) (-15 -3954 ($ $ $)) (-15 -1659 ($ $ $)) (-15 -2714 ($ $ $)) (-15 -1840 ($ $ $)) (-15 -4029 ($ $ (-766))) (-15 -2068 ($ $ $)) (-15 -1923 ($ $ $)) (-15 -1599 ($ $ $)) (-15 -3142 ($ $ $)) (-15 -4286 ($ $ $)) (-15 -3652 ($ $ (-639 $))) (-15 -3074 ($ $ (-639 $))) (-15 -3436 ($ $)) (-15 -2852 ($ $)) (-15 -2852 ($ $ (-766))) (-15 -4066 ($ $)) (-15 -4066 ($ $ (-766))) (-15 -1624 ($ $)) (-15 -4085 ($ $ $)) (-15 -1625 ($ $)) (-15 -1625 ($ $ $)) (-15 -1625 ($ $ $ $)) (-15 -2723 ($ $)) (-15 -2723 ($ $ $)) (-15 -2723 ($ $ $ $)) (-15 -1322 ($ $)) (-15 -1322 ($ $ $)) (-15 -1322 ($ $ $ $)) (-15 -1702 ($ $)) (-15 -1702 ($ (-639 $))) (-15 -4138 ($ $)) (-15 -4138 ($ (-639 $))) (-15 -2229 ($ $)) (-15 -2229 ($ (-639 $))) (-15 -3575 ($ (-639 $))) (-15 -2975 ($ (-639 $))) (-15 -2467 ($ (-639 $))) (-15 -2563 ($ (-639 $))) (-15 -1733 ($ $ $)) (-15 -4041 ($ $ $)) (-15 -1761 ($ $ $)) (-15 -1771 ($ $ $)) (-15 -1785 ($ $ $)) (-15 -1798 ($ $ $)) (-15 -1836 ($ $ $)) (-15 -1847 ($ $ $)) (-15 -1847 ($ $)) (-15 * ($ $ $)) (-15 -1859 ($ $ $)) (-15 ** ($ $ $)) (-15 -1774 ($ $ $)) (-15 -1810 ($ $ $)) (-15 -1787 ($ $ $)) (-15 -1762 ($ $ $)) (-15 -2245 ($ $ $)) (-15 -2256 ($ $ $)) (-15 -2234 ($ $)) (-15 -3863 ($ $ $)) (-15 -3863 ($ $))))) (T -857))
+((-3206 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-857)))) (-3885 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-857)))) (-2045 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-857)))) (-3508 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-3508 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-857)))) (-3508 (*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-857)))) (-3508 (*1 *1 *2) (-12 (-5 *2 (-224)) (-5 *1 (-857)))) (-1663 (*1 *1) (-5 *1 (-857))) (-2475 (*1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-857)))) (-3697 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-3059 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-3697 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-3059 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-3902 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-3340 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-4160 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-3632 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-2474 (*1 *1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-1589 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-1603 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-2328 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))) (-1589 (*1 *1 *1) (-5 *1 (-857))) (-1603 (*1 *1 *1) (-5 *1 (-857))) (-2328 (*1 *1 *1) (-5 *1 (-857))) (-4059 (*1 *1 *1 *1) (-5 *1 (-857))) (-3808 (*1 *1 *1 *1) (-5 *1 (-857))) (-4059 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3808 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-2177 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3260 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3260 (*1 *1 *1 *1 *1) (-5 *1 (-857))) (-3889 (*1 *1 *1 *1) (-5 *1 (-857))) (-3918 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-857)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3596 (*1 *1 *1) (-5 *1 (-857))) (-1799 (*1 *1 *1 *1) (-5 *1 (-857))) (-2745 (*1 *1 *1) (-5 *1 (-857))) (-2884 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 (-857)))) (-5 *1 (-857)))) (-2401 (*1 *1 *1 *1) (-5 *1 (-857))) (-3723 (*1 *1 *1) (-5 *1 (-857))) (-3723 (*1 *1 *1 *1) (-5 *1 (-857))) (-3954 (*1 *1 *1 *1) (-5 *1 (-857))) (-1659 (*1 *1 *1 *1) (-5 *1 (-857))) (-2714 (*1 *1 *1 *1) (-5 *1 (-857))) (-1840 (*1 *1 *1 *1) (-5 *1 (-857))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-857)))) (-2068 (*1 *1 *1 *1) (-5 *1 (-857))) (-1923 (*1 *1 *1 *1) (-5 *1 (-857))) (-1599 (*1 *1 *1 *1) (-5 *1 (-857))) (-3142 (*1 *1 *1 *1) (-5 *1 (-857))) (-4286 (*1 *1 *1 *1) (-5 *1 (-857))) (-3652 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3074 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3436 (*1 *1 *1) (-5 *1 (-857))) (-2852 (*1 *1 *1) (-5 *1 (-857))) (-2852 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-857)))) (-4066 (*1 *1 *1) (-5 *1 (-857))) (-4066 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-857)))) (-1624 (*1 *1 *1) (-5 *1 (-857))) (-4085 (*1 *1 *1 *1) (-5 *1 (-857))) (-1625 (*1 *1 *1) (-5 *1 (-857))) (-1625 (*1 *1 *1 *1) (-5 *1 (-857))) (-1625 (*1 *1 *1 *1 *1) (-5 *1 (-857))) (-2723 (*1 *1 *1) (-5 *1 (-857))) (-2723 (*1 *1 *1 *1) (-5 *1 (-857))) (-2723 (*1 *1 *1 *1 *1) (-5 *1 (-857))) (-1322 (*1 *1 *1) (-5 *1 (-857))) (-1322 (*1 *1 *1 *1) (-5 *1 (-857))) (-1322 (*1 *1 *1 *1 *1) (-5 *1 (-857))) (-1702 (*1 *1 *1) (-5 *1 (-857))) (-1702 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-4138 (*1 *1 *1) (-5 *1 (-857))) (-4138 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-2229 (*1 *1 *1) (-5 *1 (-857))) (-2229 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-3575 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-2975 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-2467 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-2563 (*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))) (-1733 (*1 *1 *1 *1) (-5 *1 (-857))) (-4041 (*1 *1 *1 *1) (-5 *1 (-857))) (-1761 (*1 *1 *1 *1) (-5 *1 (-857))) (-1771 (*1 *1 *1 *1) (-5 *1 (-857))) (-1785 (*1 *1 *1 *1) (-5 *1 (-857))) (-1798 (*1 *1 *1 *1) (-5 *1 (-857))) (-1836 (*1 *1 *1 *1) (-5 *1 (-857))) (-1847 (*1 *1 *1 *1) (-5 *1 (-857))) (-1847 (*1 *1 *1) (-5 *1 (-857))) (* (*1 *1 *1 *1) (-5 *1 (-857))) (-1859 (*1 *1 *1 *1) (-5 *1 (-857))) (** (*1 *1 *1 *1) (-5 *1 (-857))) (-1774 (*1 *1 *1 *1) (-5 *1 (-857))) (-1810 (*1 *1 *1 *1) (-5 *1 (-857))) (-1787 (*1 *1 *1 *1) (-5 *1 (-857))) (-1762 (*1 *1 *1 *1) (-5 *1 (-857))) (-2245 (*1 *1 *1 *1) (-5 *1 (-857))) (-2256 (*1 *1 *1 *1) (-5 *1 (-857))) (-2234 (*1 *1 *1) (-5 *1 (-857))) (-3863 (*1 *1 *1 *1) (-5 *1 (-857))) (-3863 (*1 *1 *1) (-5 *1 (-857))))
+(-13 (-1092) (-10 -8 (-15 -3206 ((-1261) $)) (-15 -3885 ($ (-1150))) (-15 -2045 ((-1261) (-1150))) (-15 -3508 ($ (-562))) (-15 -3508 ($ (-1168))) (-15 -3508 ($ (-1150))) (-15 -3508 ($ (-224))) (-15 -1663 ($)) (-15 -2475 ((-1150) (-1150))) (-15 -3697 ((-562) $)) (-15 -3059 ((-562) $)) (-15 -3697 ((-562))) (-15 -3059 ((-562))) (-15 -3902 ((-562) $)) (-15 -3340 ((-562) $)) (-15 -4160 ($ (-562))) (-15 -3632 ($ (-562))) (-15 -2474 ($ (-562) (-562))) (-15 -1589 ($ $ (-562))) (-15 -1603 ($ $ (-562))) (-15 -2328 ($ $ (-562))) (-15 -1589 ($ $)) (-15 -1603 ($ $)) (-15 -2328 ($ $)) (-15 -4059 ($ $ $)) (-15 -3808 ($ $ $)) (-15 -4059 ($ (-639 $))) (-15 -3808 ($ (-639 $))) (-15 -2177 ($ $ (-639 $))) (-15 -3260 ($ $ (-639 $))) (-15 -3260 ($ $ $ $)) (-15 -3889 ($ $ $)) (-15 -3918 ((-112) $)) (-15 -2343 ($ $ (-639 $))) (-15 -3596 ($ $)) (-15 -1799 ($ $ $)) (-15 -2745 ($ $)) (-15 -2884 ($ (-639 (-639 $)))) (-15 -2401 ($ $ $)) (-15 -3723 ($ $)) (-15 -3723 ($ $ $)) (-15 -3954 ($ $ $)) (-15 -1659 ($ $ $)) (-15 -2714 ($ $ $)) (-15 -1840 ($ $ $)) (-15 -4029 ($ $ (-766))) (-15 -2068 ($ $ $)) (-15 -1923 ($ $ $)) (-15 -1599 ($ $ $)) (-15 -3142 ($ $ $)) (-15 -4286 ($ $ $)) (-15 -3652 ($ $ (-639 $))) (-15 -3074 ($ $ (-639 $))) (-15 -3436 ($ $)) (-15 -2852 ($ $)) (-15 -2852 ($ $ (-766))) (-15 -4066 ($ $)) (-15 -4066 ($ $ (-766))) (-15 -1624 ($ $)) (-15 -4085 ($ $ $)) (-15 -1625 ($ $)) (-15 -1625 ($ $ $)) (-15 -1625 ($ $ $ $)) (-15 -2723 ($ $)) (-15 -2723 ($ $ $)) (-15 -2723 ($ $ $ $)) (-15 -1322 ($ $)) (-15 -1322 ($ $ $)) (-15 -1322 ($ $ $ $)) (-15 -1702 ($ $)) (-15 -1702 ($ (-639 $))) (-15 -4138 ($ $)) (-15 -4138 ($ (-639 $))) (-15 -2229 ($ $)) (-15 -2229 ($ (-639 $))) (-15 -3575 ($ (-639 $))) (-15 -2975 ($ (-639 $))) (-15 -2467 ($ (-639 $))) (-15 -2563 ($ (-639 $))) (-15 -1733 ($ $ $)) (-15 -4041 ($ $ $)) (-15 -1761 ($ $ $)) (-15 -1771 ($ $ $)) (-15 -1785 ($ $ $)) (-15 -1798 ($ $ $)) (-15 -1836 ($ $ $)) (-15 -1847 ($ $ $)) (-15 -1847 ($ $)) (-15 * ($ $ $)) (-15 -1859 ($ $ $)) (-15 ** ($ $ $)) (-15 -1774 ($ $ $)) (-15 -1810 ($ $ $)) (-15 -1787 ($ $ $)) (-15 -1762 ($ $ $)) (-15 -2245 ($ $ $)) (-15 -2256 ($ $ $)) (-15 -2234 ($ $)) (-15 -3863 ($ $ $)) (-15 -3863 ($ $))))
+((-1966 (((-1261) (-639 (-52))) 24)) (-3462 (((-1261) (-1150) (-857)) 14) (((-1261) (-857)) 9) (((-1261) (-1150)) 11)))
+(((-858) (-10 -7 (-15 -3462 ((-1261) (-1150))) (-15 -3462 ((-1261) (-857))) (-15 -3462 ((-1261) (-1150) (-857))) (-15 -1966 ((-1261) (-639 (-52)))))) (T -858))
+((-1966 (*1 *2 *3) (-12 (-5 *3 (-639 (-52))) (-5 *2 (-1261)) (-5 *1 (-858)))) (-3462 (*1 *2 *3 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-857)) (-5 *2 (-1261)) (-5 *1 (-858)))) (-3462 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-858)))) (-3462 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-858)))))
+(-10 -7 (-15 -3462 ((-1261) (-1150))) (-15 -3462 ((-1261) (-857))) (-15 -3462 ((-1261) (-1150) (-857))) (-15 -1966 ((-1261) (-639 (-52)))))
+((-4041 (((-112) $ $) NIL)) (-2443 (((-3 $ "failed") (-1168)) 33)) (-1382 (((-766)) 31)) (-1447 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-3549 (((-916) $) 29)) (-3696 (((-1150) $) 39)) (-2464 (($ (-916)) 28)) (-1709 (((-1112) $) NIL)) (-4208 (((-1168) $) 13) (((-535) $) 19) (((-887 (-378)) $) 26) (((-887 (-562)) $) 22)) (-4053 (((-857) $) 16)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 36)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 35)))
+(((-859 |#1|) (-13 (-839) (-610 (-1168)) (-610 (-535)) (-610 (-887 (-378))) (-610 (-887 (-562))) (-10 -8 (-15 -2443 ((-3 $ "failed") (-1168))))) (-639 (-1168))) (T -859))
+((-2443 (*1 *1 *2) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-859 *3)) (-14 *3 (-639 *2)))))
+(-13 (-839) (-610 (-1168)) (-610 (-535)) (-610 (-887 (-378))) (-610 (-887 (-562))) (-10 -8 (-15 -2443 ((-3 $ "failed") (-1168)))))
+((-4041 (((-112) $ $) NIL)) (-3253 (((-505) $) 9)) (-2123 (((-639 (-438)) $) 13)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 21)) (-1733 (((-112) $ $) 16)))
+(((-860) (-13 (-1092) (-10 -8 (-15 -3253 ((-505) $)) (-15 -2123 ((-639 (-438)) $))))) (T -860))
+((-3253 (*1 *2 *1) (-12 (-5 *2 (-505)) (-5 *1 (-860)))) (-2123 (*1 *2 *1) (-12 (-5 *2 (-639 (-438))) (-5 *1 (-860)))))
+(-13 (-1092) (-10 -8 (-15 -3253 ((-505) $)) (-15 -2123 ((-639 (-438)) $))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) NIL)) (-4367 (((-112) $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ (-947 |#1|)) NIL) (((-947 |#1|) $) NIL) (($ |#1|) NIL (|has| |#1| (-171)))) (-1568 (((-766)) NIL)) (-2825 (((-1261) (-766)) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-1733 (((-112) $ $) NIL)) (-1859 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-171))) (($ $ |#1|) NIL (|has| |#1| (-171)))))
+(((-861 |#1| |#2| |#3| |#4|) (-13 (-1044) (-489 (-947 |#1|)) (-10 -8 (IF (|has| |#1| (-171)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -1859 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2825 ((-1261) (-766))))) (-1044) (-639 (-1168)) (-639 (-766)) (-766)) (T -861))
+((-1859 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-861 *2 *3 *4 *5)) (-4 *2 (-362)) (-4 *2 (-1044)) (-14 *3 (-639 (-1168))) (-14 *4 (-639 (-766))) (-14 *5 (-766)))) (-2825 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-861 *4 *5 *6 *7)) (-4 *4 (-1044)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 *3)) (-14 *7 *3))))
+(-13 (-1044) (-489 (-947 |#1|)) (-10 -8 (IF (|has| |#1| (-171)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -1859 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2825 ((-1261) (-766)))))
+((-2752 (((-3 (-173 |#3|) "failed") (-766) (-766) |#2| |#2|) 31)) (-1352 (((-3 (-406 |#3|) "failed") (-766) (-766) |#2| |#2|) 24)))
+(((-862 |#1| |#2| |#3|) (-10 -7 (-15 -1352 ((-3 (-406 |#3|) "failed") (-766) (-766) |#2| |#2|)) (-15 -2752 ((-3 (-173 |#3|) "failed") (-766) (-766) |#2| |#2|))) (-362) (-1247 |#1|) (-1232 |#1|)) (T -862))
+((-2752 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-766)) (-4 *5 (-362)) (-5 *2 (-173 *6)) (-5 *1 (-862 *5 *4 *6)) (-4 *4 (-1247 *5)) (-4 *6 (-1232 *5)))) (-1352 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-766)) (-4 *5 (-362)) (-5 *2 (-406 *6)) (-5 *1 (-862 *5 *4 *6)) (-4 *4 (-1247 *5)) (-4 *6 (-1232 *5)))))
+(-10 -7 (-15 -1352 ((-3 (-406 |#3|) "failed") (-766) (-766) |#2| |#2|)) (-15 -2752 ((-3 (-173 |#3|) "failed") (-766) (-766) |#2| |#2|)))
+((-1352 (((-3 (-406 (-1229 |#2| |#1|)) "failed") (-766) (-766) (-1248 |#1| |#2| |#3|)) 28) (((-3 (-406 (-1229 |#2| |#1|)) "failed") (-766) (-766) (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|)) 26)))
+(((-863 |#1| |#2| |#3|) (-10 -7 (-15 -1352 ((-3 (-406 (-1229 |#2| |#1|)) "failed") (-766) (-766) (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|))) (-15 -1352 ((-3 (-406 (-1229 |#2| |#1|)) "failed") (-766) (-766) (-1248 |#1| |#2| |#3|)))) (-362) (-1168) |#1|) (T -863))
+((-1352 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-766)) (-5 *4 (-1248 *5 *6 *7)) (-4 *5 (-362)) (-14 *6 (-1168)) (-14 *7 *5) (-5 *2 (-406 (-1229 *6 *5))) (-5 *1 (-863 *5 *6 *7)))) (-1352 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-766)) (-5 *4 (-1248 *5 *6 *7)) (-4 *5 (-362)) (-14 *6 (-1168)) (-14 *7 *5) (-5 *2 (-406 (-1229 *6 *5))) (-5 *1 (-863 *5 *6 *7)))))
+(-10 -7 (-15 -1352 ((-3 (-406 (-1229 |#2| |#1|)) "failed") (-766) (-766) (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|))) (-15 -1352 ((-3 (-406 (-1229 |#2| |#1|)) "failed") (-766) (-766) (-1248 |#1| |#2| |#3|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-1644 (($ $ (-562)) 63)) (-1436 (((-112) $ $) 60)) (-3329 (($) 17 T CONST)) (-3723 (($ (-1164 (-562)) (-562)) 62)) (-1810 (($ $ $) 56)) (-1694 (((-3 $ "failed") $) 33)) (-3119 (($ $) 65)) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-1993 (((-766) $) 70)) (-4367 (((-112) $) 31)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-2685 (((-562)) 67)) (-2920 (((-562) $) 66)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-4316 (($ $ (-562)) 69)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-2044 (((-766) $) 59)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 58)) (-2244 (((-1148 (-562)) $) 71)) (-1345 (($ $) 68)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-1406 (((-562) $ (-562)) 64)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-864 |#1|) (-139) (-562)) (T -864))
-((-3280 (*1 *2 *1) (-12 (-4 *1 (-864 *3)) (-5 *2 (-1148 (-562))))) (-1900 (*1 *2 *1) (-12 (-4 *1 (-864 *3)) (-5 *2 (-766)))) (-1353 (*1 *1 *1 *2) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))) (-2256 (*1 *1 *1) (-4 *1 (-864 *2))) (-3518 (*1 *2) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))) (-2779 (*1 *2 *1) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))) (-2977 (*1 *1 *1) (-4 *1 (-864 *2))) (-1406 (*1 *2 *1 *2) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))) (-1643 (*1 *1 *1 *2) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))) (-4334 (*1 *1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *3 (-562)) (-4 *1 (-864 *4)))))
-(-13 (-306) (-146) (-10 -8 (-15 -3280 ((-1148 (-562)) $)) (-15 -1900 ((-766) $)) (-15 -1353 ($ $ (-562))) (-15 -2256 ($ $)) (-15 -3518 ((-562))) (-15 -2779 ((-562) $)) (-15 -2977 ($ $)) (-15 -1406 ((-562) $ (-562))) (-15 -1643 ($ $ (-562))) (-15 -4334 ($ (-1164 (-562)) (-562)))))
+((-2244 (*1 *2 *1) (-12 (-4 *1 (-864 *3)) (-5 *2 (-1148 (-562))))) (-1993 (*1 *2 *1) (-12 (-4 *1 (-864 *3)) (-5 *2 (-766)))) (-4316 (*1 *1 *1 *2) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))) (-1345 (*1 *1 *1) (-4 *1 (-864 *2))) (-2685 (*1 *2) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))) (-2920 (*1 *2 *1) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))) (-3119 (*1 *1 *1) (-4 *1 (-864 *2))) (-1406 (*1 *2 *1 *2) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))) (-1644 (*1 *1 *1 *2) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))) (-3723 (*1 *1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *3 (-562)) (-4 *1 (-864 *4)))))
+(-13 (-306) (-146) (-10 -8 (-15 -2244 ((-1148 (-562)) $)) (-15 -1993 ((-766) $)) (-15 -4316 ($ $ (-562))) (-15 -1345 ($ $)) (-15 -2685 ((-562))) (-15 -2920 ((-562) $)) (-15 -3119 ($ $)) (-15 -1406 ((-562) $ (-562))) (-15 -1644 ($ $ (-562))) (-15 -3723 ($ (-1164 (-562)) (-562)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-146) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-289) . T) ((-306) . T) ((-451) . T) ((-554) . T) ((-642 $) . T) ((-712 $) . T) ((-721) . T) ((-915) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1643 (($ $ (-562)) NIL)) (-2569 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-4334 (($ (-1164 (-562)) (-562)) NIL)) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-2977 (($ $) NIL)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-1900 (((-766) $) NIL)) (-1957 (((-112) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3518 (((-562)) NIL)) (-2779 (((-562) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1353 (($ $ (-562)) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3280 (((-1148 (-562)) $) NIL)) (-2256 (($ $) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL)) (-2579 (((-766)) NIL)) (-2922 (((-112) $ $) NIL)) (-1406 (((-562) $ (-562)) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1644 (($ $ (-562)) NIL)) (-1436 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-3723 (($ (-1164 (-562)) (-562)) NIL)) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-3119 (($ $) NIL)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-1993 (((-766) $) NIL)) (-4367 (((-112) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2685 (((-562)) NIL)) (-2920 (((-562) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-4316 (($ $ (-562)) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-2244 (((-1148 (-562)) $) NIL)) (-1345 (($ $) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL)) (-1568 (((-766)) NIL)) (-3799 (((-112) $ $) NIL)) (-1406 (((-562) $ (-562)) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL)))
(((-865 |#1|) (-864 |#1|) (-562)) (T -865))
NIL
(-864 |#1|)
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-4246 (((-865 |#1|) $) NIL (|has| (-865 |#1|) (-306)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-865 |#1|) (-904)))) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-865 |#1|) (-904)))) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL (|has| (-865 |#1|) (-815)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-865 |#1|) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| (-865 |#1|) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-865 |#1|) (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| (-865 |#1|) (-1033 (-562))))) (-3961 (((-865 |#1|) $) NIL) (((-1168) $) NIL (|has| (-865 |#1|) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-865 |#1|) (-1033 (-562)))) (((-562) $) NIL (|has| (-865 |#1|) (-1033 (-562))))) (-2724 (($ $) NIL) (($ (-562) $) NIL)) (-1811 (($ $ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| (-865 |#1|) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-865 |#1|) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-865 |#1|))) (|:| |vec| (-1256 (-865 |#1|)))) (-683 $) (-1256 $)) NIL) (((-683 (-865 |#1|)) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| (-865 |#1|) (-544)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3519 (((-112) $) NIL (|has| (-865 |#1|) (-815)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-865 |#1|) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-865 |#1|) (-881 (-378))))) (-1957 (((-112) $) NIL)) (-3425 (($ $) NIL)) (-4065 (((-865 |#1|) $) NIL)) (-3699 (((-3 $ "failed") $) NIL (|has| (-865 |#1|) (-1143)))) (-3392 (((-112) $) NIL (|has| (-865 |#1|) (-815)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-865 |#1|) (-845)))) (-2993 (($ $ $) NIL (|has| (-865 |#1|) (-845)))) (-4152 (($ (-1 (-865 |#1|) (-865 |#1|)) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| (-865 |#1|) (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2736 (($ $) NIL (|has| (-865 |#1|) (-306)))) (-4014 (((-865 |#1|) $) NIL (|has| (-865 |#1|) (-544)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-865 |#1|) (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-865 |#1|) (-904)))) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-865 |#1|)) (-639 (-865 |#1|))) NIL (|has| (-865 |#1|) (-308 (-865 |#1|)))) (($ $ (-865 |#1|) (-865 |#1|)) NIL (|has| (-865 |#1|) (-308 (-865 |#1|)))) (($ $ (-293 (-865 |#1|))) NIL (|has| (-865 |#1|) (-308 (-865 |#1|)))) (($ $ (-639 (-293 (-865 |#1|)))) NIL (|has| (-865 |#1|) (-308 (-865 |#1|)))) (($ $ (-639 (-1168)) (-639 (-865 |#1|))) NIL (|has| (-865 |#1|) (-513 (-1168) (-865 |#1|)))) (($ $ (-1168) (-865 |#1|)) NIL (|has| (-865 |#1|) (-513 (-1168) (-865 |#1|))))) (-1577 (((-766) $) NIL)) (-2343 (($ $ (-865 |#1|)) NIL (|has| (-865 |#1|) (-285 (-865 |#1|) (-865 |#1|))))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| (-865 |#1|) (-232))) (($ $ (-766)) NIL (|has| (-865 |#1|) (-232))) (($ $ (-1168)) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-1 (-865 |#1|) (-865 |#1|)) (-766)) NIL) (($ $ (-1 (-865 |#1|) (-865 |#1|))) NIL)) (-3658 (($ $) NIL)) (-4076 (((-865 |#1|) $) NIL)) (-4208 (((-887 (-562)) $) NIL (|has| (-865 |#1|) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-865 |#1|) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-865 |#1|) (-610 (-535)))) (((-378) $) NIL (|has| (-865 |#1|) (-1017))) (((-224) $) NIL (|has| (-865 |#1|) (-1017)))) (-1977 (((-173 (-406 (-562))) $) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-865 |#1|) (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-865 |#1|)) NIL) (($ (-1168)) NIL (|has| (-865 |#1|) (-1033 (-1168))))) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-865 |#1|) (-904))) (|has| (-865 |#1|) (-144))))) (-2579 (((-766)) NIL)) (-2604 (((-865 |#1|) $) NIL (|has| (-865 |#1|) (-544)))) (-2922 (((-112) $ $) NIL)) (-1406 (((-406 (-562)) $ (-562)) NIL)) (-3526 (($ $) NIL (|has| (-865 |#1|) (-815)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $) NIL (|has| (-865 |#1|) (-232))) (($ $ (-766)) NIL (|has| (-865 |#1|) (-232))) (($ $ (-1168)) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-1 (-865 |#1|) (-865 |#1|)) (-766)) NIL) (($ $ (-1 (-865 |#1|) (-865 |#1|))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-865 |#1|) (-845)))) (-1772 (((-112) $ $) NIL (|has| (-865 |#1|) (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-865 |#1|) (-845)))) (-1759 (((-112) $ $) NIL (|has| (-865 |#1|) (-845)))) (-1859 (($ $ $) NIL) (($ (-865 |#1|) (-865 |#1|)) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-865 |#1|) $) NIL) (($ $ (-865 |#1|)) NIL)))
-(((-866 |#1|) (-13 (-987 (-865 |#1|)) (-10 -8 (-15 -1406 ((-406 (-562)) $ (-562))) (-15 -1977 ((-173 (-406 (-562))) $)) (-15 -2724 ($ $)) (-15 -2724 ($ (-562) $)))) (-562)) (T -866))
-((-1406 (*1 *2 *1 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-866 *4)) (-14 *4 *3) (-5 *3 (-562)))) (-1977 (*1 *2 *1) (-12 (-5 *2 (-173 (-406 (-562)))) (-5 *1 (-866 *3)) (-14 *3 (-562)))) (-2724 (*1 *1 *1) (-12 (-5 *1 (-866 *2)) (-14 *2 (-562)))) (-2724 (*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-866 *3)) (-14 *3 *2))))
-(-13 (-987 (-865 |#1|)) (-10 -8 (-15 -1406 ((-406 (-562)) $ (-562))) (-15 -1977 ((-173 (-406 (-562))) $)) (-15 -2724 ($ $)) (-15 -2724 ($ (-562) $))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-4246 ((|#2| $) NIL (|has| |#2| (-306)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL (|has| |#2| (-815)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| |#2| (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562))))) (-3961 ((|#2| $) NIL) (((-1168) $) NIL (|has| |#2| (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-562)))) (((-562) $) NIL (|has| |#2| (-1033 (-562))))) (-2724 (($ $) 31) (($ (-562) $) 32)) (-1811 (($ $ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) 53)) (-1448 (($) NIL (|has| |#2| (-544)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3519 (((-112) $) NIL (|has| |#2| (-815)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| |#2| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| |#2| (-881 (-378))))) (-1957 (((-112) $) NIL)) (-3425 (($ $) NIL)) (-4065 ((|#2| $) NIL)) (-3699 (((-3 $ "failed") $) NIL (|has| |#2| (-1143)))) (-3392 (((-112) $) NIL (|has| |#2| (-815)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| |#2| (-845)))) (-2993 (($ $ $) NIL (|has| |#2| (-845)))) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 49)) (-3729 (($) NIL (|has| |#2| (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2736 (($ $) NIL (|has| |#2| (-306)))) (-4014 ((|#2| $) NIL (|has| |#2| (-544)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 |#2|) (-639 |#2|)) NIL (|has| |#2| (-308 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-308 |#2|))) (($ $ (-293 |#2|)) NIL (|has| |#2| (-308 |#2|))) (($ $ (-639 (-293 |#2|))) NIL (|has| |#2| (-308 |#2|))) (($ $ (-639 (-1168)) (-639 |#2|)) NIL (|has| |#2| (-513 (-1168) |#2|))) (($ $ (-1168) |#2|) NIL (|has| |#2| (-513 (-1168) |#2|)))) (-1577 (((-766) $) NIL)) (-2343 (($ $ |#2|) NIL (|has| |#2| (-285 |#2| |#2|)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| |#2| (-232))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-3658 (($ $) NIL)) (-4076 ((|#2| $) NIL)) (-4208 (((-887 (-562)) $) NIL (|has| |#2| (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| |#2| (-610 (-887 (-378))))) (((-535) $) NIL (|has| |#2| (-610 (-535)))) (((-378) $) NIL (|has| |#2| (-1017))) (((-224) $) NIL (|has| |#2| (-1017)))) (-1977 (((-173 (-406 (-562))) $) 68)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904))))) (-4054 (((-857) $) 86) (($ (-562)) 19) (($ $) NIL) (($ (-406 (-562))) 24) (($ |#2|) 18) (($ (-1168)) NIL (|has| |#2| (-1033 (-1168))))) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#2| (-144))))) (-2579 (((-766)) NIL)) (-2604 ((|#2| $) NIL (|has| |#2| (-544)))) (-2922 (((-112) $ $) NIL)) (-1406 (((-406 (-562)) $ (-562)) 60)) (-3526 (($ $) NIL (|has| |#2| (-815)))) (-2286 (($) 14 T CONST)) (-2294 (($) 16 T CONST)) (-3114 (($ $) NIL (|has| |#2| (-232))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1731 (((-112) $ $) 35)) (-1785 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1859 (($ $ $) 23) (($ |#2| |#2|) 54)) (-1848 (($ $) 39) (($ $ $) 41)) (-1835 (($ $ $) 37)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 50)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 42) (($ $ $) 44) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ |#2| $) 55) (($ $ |#2|) NIL)))
-(((-867 |#1| |#2|) (-13 (-987 |#2|) (-10 -8 (-15 -1406 ((-406 (-562)) $ (-562))) (-15 -1977 ((-173 (-406 (-562))) $)) (-15 -2724 ($ $)) (-15 -2724 ($ (-562) $)))) (-562) (-864 |#1|)) (T -867))
-((-1406 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-406 (-562))) (-5 *1 (-867 *4 *5)) (-5 *3 (-562)) (-4 *5 (-864 *4)))) (-1977 (*1 *2 *1) (-12 (-14 *3 (-562)) (-5 *2 (-173 (-406 (-562)))) (-5 *1 (-867 *3 *4)) (-4 *4 (-864 *3)))) (-2724 (*1 *1 *1) (-12 (-14 *2 (-562)) (-5 *1 (-867 *2 *3)) (-4 *3 (-864 *2)))) (-2724 (*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-14 *3 *2) (-5 *1 (-867 *3 *4)) (-4 *4 (-864 *3)))))
-(-13 (-987 |#2|) (-10 -8 (-15 -1406 ((-406 (-562)) $ (-562))) (-15 -1977 ((-173 (-406 (-562))) $)) (-15 -2724 ($ $)) (-15 -2724 ($ (-562) $))))
-((-4041 (((-112) $ $) NIL (-12 (|has| |#1| (-1092)) (|has| |#2| (-1092))))) (-2350 ((|#2| $) 12)) (-2497 (($ |#1| |#2|) 9)) (-2913 (((-1150) $) NIL (-12 (|has| |#1| (-1092)) (|has| |#2| (-1092))))) (-1709 (((-1112) $) NIL (-12 (|has| |#1| (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#1| $) 11)) (-4066 (($ |#1| |#2|) 10)) (-4054 (((-857) $) 18 (-4037 (-12 (|has| |#1| (-609 (-857))) (|has| |#2| (-609 (-857)))) (-12 (|has| |#1| (-1092)) (|has| |#2| (-1092)))))) (-1731 (((-112) $ $) 22 (-12 (|has| |#1| (-1092)) (|has| |#2| (-1092))))))
-(((-868 |#1| |#2|) (-13 (-1207) (-10 -8 (IF (|has| |#1| (-609 (-857))) (IF (|has| |#2| (-609 (-857))) (-6 (-609 (-857))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1092)) (IF (|has| |#2| (-1092)) (-6 (-1092)) |%noBranch|) |%noBranch|) (-15 -2497 ($ |#1| |#2|)) (-15 -4066 ($ |#1| |#2|)) (-15 -1421 (|#1| $)) (-15 -2350 (|#2| $)))) (-1207) (-1207)) (T -868))
-((-2497 (*1 *1 *2 *3) (-12 (-5 *1 (-868 *2 *3)) (-4 *2 (-1207)) (-4 *3 (-1207)))) (-4066 (*1 *1 *2 *3) (-12 (-5 *1 (-868 *2 *3)) (-4 *2 (-1207)) (-4 *3 (-1207)))) (-1421 (*1 *2 *1) (-12 (-4 *2 (-1207)) (-5 *1 (-868 *2 *3)) (-4 *3 (-1207)))) (-2350 (*1 *2 *1) (-12 (-4 *2 (-1207)) (-5 *1 (-868 *3 *2)) (-4 *3 (-1207)))))
-(-13 (-1207) (-10 -8 (IF (|has| |#1| (-609 (-857))) (IF (|has| |#2| (-609 (-857))) (-6 (-609 (-857))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1092)) (IF (|has| |#2| (-1092)) (-6 (-1092)) |%noBranch|) |%noBranch|) (-15 -2497 ($ |#1| |#2|)) (-15 -4066 ($ |#1| |#2|)) (-15 -1421 (|#1| $)) (-15 -2350 (|#2| $))))
-((-4041 (((-112) $ $) NIL)) (-2887 (((-562) $) 15)) (-3418 (($ (-156)) 11)) (-3555 (($ (-156)) 12)) (-2913 (((-1150) $) NIL)) (-3410 (((-156) $) 13)) (-1709 (((-1112) $) NIL)) (-2241 (($ (-156)) 9)) (-2526 (($ (-156)) 8)) (-4054 (((-857) $) 23) (($ (-156)) 16)) (-3983 (($ (-156)) 10)) (-1731 (((-112) $ $) NIL)))
-(((-869) (-13 (-1092) (-10 -8 (-15 -2526 ($ (-156))) (-15 -2241 ($ (-156))) (-15 -3983 ($ (-156))) (-15 -3418 ($ (-156))) (-15 -3555 ($ (-156))) (-15 -3410 ((-156) $)) (-15 -2887 ((-562) $)) (-15 -4054 ($ (-156)))))) (T -869))
-((-2526 (*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))) (-2241 (*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))) (-3983 (*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))) (-3418 (*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))) (-3555 (*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))) (-3410 (*1 *2 *1) (-12 (-5 *2 (-156)) (-5 *1 (-869)))) (-2887 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-869)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))))
-(-13 (-1092) (-10 -8 (-15 -2526 ($ (-156))) (-15 -2241 ($ (-156))) (-15 -3983 ($ (-156))) (-15 -3418 ($ (-156))) (-15 -3555 ($ (-156))) (-15 -3410 ((-156) $)) (-15 -2887 ((-562) $)) (-15 -4054 ($ (-156)))))
-((-4054 (((-315 (-562)) (-406 (-947 (-48)))) 23) (((-315 (-562)) (-947 (-48))) 18)))
-(((-870) (-10 -7 (-15 -4054 ((-315 (-562)) (-947 (-48)))) (-15 -4054 ((-315 (-562)) (-406 (-947 (-48))))))) (T -870))
-((-4054 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 (-48)))) (-5 *2 (-315 (-562))) (-5 *1 (-870)))) (-4054 (*1 *2 *3) (-12 (-5 *3 (-947 (-48))) (-5 *2 (-315 (-562))) (-5 *1 (-870)))))
-(-10 -7 (-15 -4054 ((-315 (-562)) (-947 (-48)))) (-15 -4054 ((-315 (-562)) (-406 (-947 (-48))))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2300 (((-865 |#1|) $) NIL (|has| (-865 |#1|) (-306)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-865 |#1|) (-904)))) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-865 |#1|) (-904)))) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL (|has| (-865 |#1|) (-815)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-865 |#1|) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| (-865 |#1|) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-865 |#1|) (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| (-865 |#1|) (-1033 (-562))))) (-3960 (((-865 |#1|) $) NIL) (((-1168) $) NIL (|has| (-865 |#1|) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-865 |#1|) (-1033 (-562)))) (((-562) $) NIL (|has| (-865 |#1|) (-1033 (-562))))) (-2449 (($ $) NIL) (($ (-562) $) NIL)) (-1810 (($ $ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| (-865 |#1|) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-865 |#1|) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-865 |#1|))) (|:| |vec| (-1256 (-865 |#1|)))) (-683 $) (-1256 $)) NIL) (((-683 (-865 |#1|)) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| (-865 |#1|) (-544)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2696 (((-112) $) NIL (|has| (-865 |#1|) (-815)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-865 |#1|) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-865 |#1|) (-881 (-378))))) (-4367 (((-112) $) NIL)) (-2957 (($ $) NIL)) (-4063 (((-865 |#1|) $) NIL)) (-3828 (((-3 $ "failed") $) NIL (|has| (-865 |#1|) (-1143)))) (-3855 (((-112) $) NIL (|has| (-865 |#1|) (-815)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-865 |#1|) (-845)))) (-2993 (($ $ $) NIL (|has| (-865 |#1|) (-845)))) (-4152 (($ (-1 (-865 |#1|) (-865 |#1|)) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| (-865 |#1|) (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2561 (($ $) NIL (|has| (-865 |#1|) (-306)))) (-3870 (((-865 |#1|) $) NIL (|has| (-865 |#1|) (-544)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-865 |#1|) (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-865 |#1|) (-904)))) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-865 |#1|)) (-639 (-865 |#1|))) NIL (|has| (-865 |#1|) (-308 (-865 |#1|)))) (($ $ (-865 |#1|) (-865 |#1|)) NIL (|has| (-865 |#1|) (-308 (-865 |#1|)))) (($ $ (-293 (-865 |#1|))) NIL (|has| (-865 |#1|) (-308 (-865 |#1|)))) (($ $ (-639 (-293 (-865 |#1|)))) NIL (|has| (-865 |#1|) (-308 (-865 |#1|)))) (($ $ (-639 (-1168)) (-639 (-865 |#1|))) NIL (|has| (-865 |#1|) (-513 (-1168) (-865 |#1|)))) (($ $ (-1168) (-865 |#1|)) NIL (|has| (-865 |#1|) (-513 (-1168) (-865 |#1|))))) (-2044 (((-766) $) NIL)) (-2343 (($ $ (-865 |#1|)) NIL (|has| (-865 |#1|) (-285 (-865 |#1|) (-865 |#1|))))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| (-865 |#1|) (-232))) (($ $ (-766)) NIL (|has| (-865 |#1|) (-232))) (($ $ (-1168)) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-1 (-865 |#1|) (-865 |#1|)) (-766)) NIL) (($ $ (-1 (-865 |#1|) (-865 |#1|))) NIL)) (-1580 (($ $) NIL)) (-4079 (((-865 |#1|) $) NIL)) (-4208 (((-887 (-562)) $) NIL (|has| (-865 |#1|) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-865 |#1|) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-865 |#1|) (-610 (-535)))) (((-378) $) NIL (|has| (-865 |#1|) (-1017))) (((-224) $) NIL (|has| (-865 |#1|) (-1017)))) (-1477 (((-173 (-406 (-562))) $) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-865 |#1|) (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL) (($ (-865 |#1|)) NIL) (($ (-1168)) NIL (|has| (-865 |#1|) (-1033 (-1168))))) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-865 |#1|) (-904))) (|has| (-865 |#1|) (-144))))) (-1568 (((-766)) NIL)) (-3636 (((-865 |#1|) $) NIL (|has| (-865 |#1|) (-544)))) (-3799 (((-112) $ $) NIL)) (-1406 (((-406 (-562)) $ (-562)) NIL)) (-2757 (($ $) NIL (|has| (-865 |#1|) (-815)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $) NIL (|has| (-865 |#1|) (-232))) (($ $ (-766)) NIL (|has| (-865 |#1|) (-232))) (($ $ (-1168)) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-865 |#1|) (-895 (-1168)))) (($ $ (-1 (-865 |#1|) (-865 |#1|)) (-766)) NIL) (($ $ (-1 (-865 |#1|) (-865 |#1|))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-865 |#1|) (-845)))) (-1771 (((-112) $ $) NIL (|has| (-865 |#1|) (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-865 |#1|) (-845)))) (-1761 (((-112) $ $) NIL (|has| (-865 |#1|) (-845)))) (-1859 (($ $ $) NIL) (($ (-865 |#1|) (-865 |#1|)) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-865 |#1|) $) NIL) (($ $ (-865 |#1|)) NIL)))
+(((-866 |#1|) (-13 (-987 (-865 |#1|)) (-10 -8 (-15 -1406 ((-406 (-562)) $ (-562))) (-15 -1477 ((-173 (-406 (-562))) $)) (-15 -2449 ($ $)) (-15 -2449 ($ (-562) $)))) (-562)) (T -866))
+((-1406 (*1 *2 *1 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-866 *4)) (-14 *4 *3) (-5 *3 (-562)))) (-1477 (*1 *2 *1) (-12 (-5 *2 (-173 (-406 (-562)))) (-5 *1 (-866 *3)) (-14 *3 (-562)))) (-2449 (*1 *1 *1) (-12 (-5 *1 (-866 *2)) (-14 *2 (-562)))) (-2449 (*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-866 *3)) (-14 *3 *2))))
+(-13 (-987 (-865 |#1|)) (-10 -8 (-15 -1406 ((-406 (-562)) $ (-562))) (-15 -1477 ((-173 (-406 (-562))) $)) (-15 -2449 ($ $)) (-15 -2449 ($ (-562) $))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2300 ((|#2| $) NIL (|has| |#2| (-306)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL (|has| |#2| (-815)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (|has| |#2| (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562))))) (-3960 ((|#2| $) NIL) (((-1168) $) NIL (|has| |#2| (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-562)))) (((-562) $) NIL (|has| |#2| (-1033 (-562))))) (-2449 (($ $) 31) (($ (-562) $) 32)) (-1810 (($ $ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) 53)) (-1447 (($) NIL (|has| |#2| (-544)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2696 (((-112) $) NIL (|has| |#2| (-815)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| |#2| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| |#2| (-881 (-378))))) (-4367 (((-112) $) NIL)) (-2957 (($ $) NIL)) (-4063 ((|#2| $) NIL)) (-3828 (((-3 $ "failed") $) NIL (|has| |#2| (-1143)))) (-3855 (((-112) $) NIL (|has| |#2| (-815)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| |#2| (-845)))) (-2993 (($ $ $) NIL (|has| |#2| (-845)))) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 49)) (-3730 (($) NIL (|has| |#2| (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2561 (($ $) NIL (|has| |#2| (-306)))) (-3870 ((|#2| $) NIL (|has| |#2| (-544)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 |#2|) (-639 |#2|)) NIL (|has| |#2| (-308 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-308 |#2|))) (($ $ (-293 |#2|)) NIL (|has| |#2| (-308 |#2|))) (($ $ (-639 (-293 |#2|))) NIL (|has| |#2| (-308 |#2|))) (($ $ (-639 (-1168)) (-639 |#2|)) NIL (|has| |#2| (-513 (-1168) |#2|))) (($ $ (-1168) |#2|) NIL (|has| |#2| (-513 (-1168) |#2|)))) (-2044 (((-766) $) NIL)) (-2343 (($ $ |#2|) NIL (|has| |#2| (-285 |#2| |#2|)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4029 (($ $) NIL (|has| |#2| (-232))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1580 (($ $) NIL)) (-4079 ((|#2| $) NIL)) (-4208 (((-887 (-562)) $) NIL (|has| |#2| (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| |#2| (-610 (-887 (-378))))) (((-535) $) NIL (|has| |#2| (-610 (-535)))) (((-378) $) NIL (|has| |#2| (-1017))) (((-224) $) NIL (|has| |#2| (-1017)))) (-1477 (((-173 (-406 (-562))) $) 68)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904))))) (-4053 (((-857) $) 86) (($ (-562)) 19) (($ $) NIL) (($ (-406 (-562))) 24) (($ |#2|) 18) (($ (-1168)) NIL (|has| |#2| (-1033 (-1168))))) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#2| (-144))))) (-1568 (((-766)) NIL)) (-3636 ((|#2| $) NIL (|has| |#2| (-544)))) (-3799 (((-112) $ $) NIL)) (-1406 (((-406 (-562)) $ (-562)) 60)) (-2757 (($ $) NIL (|has| |#2| (-815)))) (-2285 (($) 14 T CONST)) (-2294 (($) 16 T CONST)) (-3113 (($ $) NIL (|has| |#2| (-232))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1733 (((-112) $ $) 35)) (-1785 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1859 (($ $ $) 23) (($ |#2| |#2|) 54)) (-1847 (($ $) 39) (($ $ $) 41)) (-1836 (($ $ $) 37)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) 50)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 42) (($ $ $) 44) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ |#2| $) 55) (($ $ |#2|) NIL)))
+(((-867 |#1| |#2|) (-13 (-987 |#2|) (-10 -8 (-15 -1406 ((-406 (-562)) $ (-562))) (-15 -1477 ((-173 (-406 (-562))) $)) (-15 -2449 ($ $)) (-15 -2449 ($ (-562) $)))) (-562) (-864 |#1|)) (T -867))
+((-1406 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-406 (-562))) (-5 *1 (-867 *4 *5)) (-5 *3 (-562)) (-4 *5 (-864 *4)))) (-1477 (*1 *2 *1) (-12 (-14 *3 (-562)) (-5 *2 (-173 (-406 (-562)))) (-5 *1 (-867 *3 *4)) (-4 *4 (-864 *3)))) (-2449 (*1 *1 *1) (-12 (-14 *2 (-562)) (-5 *1 (-867 *2 *3)) (-4 *3 (-864 *2)))) (-2449 (*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-14 *3 *2) (-5 *1 (-867 *3 *4)) (-4 *4 (-864 *3)))))
+(-13 (-987 |#2|) (-10 -8 (-15 -1406 ((-406 (-562)) $ (-562))) (-15 -1477 ((-173 (-406 (-562))) $)) (-15 -2449 ($ $)) (-15 -2449 ($ (-562) $))))
+((-4041 (((-112) $ $) NIL (-12 (|has| |#1| (-1092)) (|has| |#2| (-1092))))) (-2349 ((|#2| $) 12)) (-2496 (($ |#1| |#2|) 9)) (-3696 (((-1150) $) NIL (-12 (|has| |#1| (-1092)) (|has| |#2| (-1092))))) (-1709 (((-1112) $) NIL (-12 (|has| |#1| (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#1| $) 11)) (-4064 (($ |#1| |#2|) 10)) (-4053 (((-857) $) 18 (-4037 (-12 (|has| |#1| (-609 (-857))) (|has| |#2| (-609 (-857)))) (-12 (|has| |#1| (-1092)) (|has| |#2| (-1092)))))) (-1733 (((-112) $ $) 22 (-12 (|has| |#1| (-1092)) (|has| |#2| (-1092))))))
+(((-868 |#1| |#2|) (-13 (-1207) (-10 -8 (IF (|has| |#1| (-609 (-857))) (IF (|has| |#2| (-609 (-857))) (-6 (-609 (-857))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1092)) (IF (|has| |#2| (-1092)) (-6 (-1092)) |%noBranch|) |%noBranch|) (-15 -2496 ($ |#1| |#2|)) (-15 -4064 ($ |#1| |#2|)) (-15 -1421 (|#1| $)) (-15 -2349 (|#2| $)))) (-1207) (-1207)) (T -868))
+((-2496 (*1 *1 *2 *3) (-12 (-5 *1 (-868 *2 *3)) (-4 *2 (-1207)) (-4 *3 (-1207)))) (-4064 (*1 *1 *2 *3) (-12 (-5 *1 (-868 *2 *3)) (-4 *2 (-1207)) (-4 *3 (-1207)))) (-1421 (*1 *2 *1) (-12 (-4 *2 (-1207)) (-5 *1 (-868 *2 *3)) (-4 *3 (-1207)))) (-2349 (*1 *2 *1) (-12 (-4 *2 (-1207)) (-5 *1 (-868 *3 *2)) (-4 *3 (-1207)))))
+(-13 (-1207) (-10 -8 (IF (|has| |#1| (-609 (-857))) (IF (|has| |#2| (-609 (-857))) (-6 (-609 (-857))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1092)) (IF (|has| |#2| (-1092)) (-6 (-1092)) |%noBranch|) |%noBranch|) (-15 -2496 ($ |#1| |#2|)) (-15 -4064 ($ |#1| |#2|)) (-15 -1421 (|#1| $)) (-15 -2349 (|#2| $))))
+((-4041 (((-112) $ $) NIL)) (-1614 (((-562) $) 15)) (-4118 (($ (-156)) 11)) (-1848 (($ (-156)) 12)) (-3696 (((-1150) $) NIL)) (-4031 (((-156) $) 13)) (-1709 (((-1112) $) NIL)) (-2240 (($ (-156)) 9)) (-2279 (($ (-156)) 8)) (-4053 (((-857) $) 23) (($ (-156)) 16)) (-3982 (($ (-156)) 10)) (-1733 (((-112) $ $) NIL)))
+(((-869) (-13 (-1092) (-10 -8 (-15 -2279 ($ (-156))) (-15 -2240 ($ (-156))) (-15 -3982 ($ (-156))) (-15 -4118 ($ (-156))) (-15 -1848 ($ (-156))) (-15 -4031 ((-156) $)) (-15 -1614 ((-562) $)) (-15 -4053 ($ (-156)))))) (T -869))
+((-2279 (*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))) (-2240 (*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))) (-3982 (*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))) (-4118 (*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))) (-1848 (*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))) (-4031 (*1 *2 *1) (-12 (-5 *2 (-156)) (-5 *1 (-869)))) (-1614 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-869)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))))
+(-13 (-1092) (-10 -8 (-15 -2279 ($ (-156))) (-15 -2240 ($ (-156))) (-15 -3982 ($ (-156))) (-15 -4118 ($ (-156))) (-15 -1848 ($ (-156))) (-15 -4031 ((-156) $)) (-15 -1614 ((-562) $)) (-15 -4053 ($ (-156)))))
+((-4053 (((-315 (-562)) (-406 (-947 (-48)))) 23) (((-315 (-562)) (-947 (-48))) 18)))
+(((-870) (-10 -7 (-15 -4053 ((-315 (-562)) (-947 (-48)))) (-15 -4053 ((-315 (-562)) (-406 (-947 (-48))))))) (T -870))
+((-4053 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 (-48)))) (-5 *2 (-315 (-562))) (-5 *1 (-870)))) (-4053 (*1 *2 *3) (-12 (-5 *3 (-947 (-48))) (-5 *2 (-315 (-562))) (-5 *1 (-870)))))
+(-10 -7 (-15 -4053 ((-315 (-562)) (-947 (-48)))) (-15 -4053 ((-315 (-562)) (-406 (-947 (-48))))))
((-4152 (((-872 |#2|) (-1 |#2| |#1|) (-872 |#1|)) 14)))
(((-871 |#1| |#2|) (-10 -7 (-15 -4152 ((-872 |#2|) (-1 |#2| |#1|) (-872 |#1|)))) (-1207) (-1207)) (T -871))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-872 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-872 *6)) (-5 *1 (-871 *5 *6)))))
(-10 -7 (-15 -4152 ((-872 |#2|) (-1 |#2| |#1|) (-872 |#1|))))
-((-1539 (($ |#1| |#1|) 8)) (-2542 ((|#1| $ (-766)) 10)))
-(((-872 |#1|) (-10 -8 (-15 -1539 ($ |#1| |#1|)) (-15 -2542 (|#1| $ (-766)))) (-1207)) (T -872))
-((-2542 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-872 *2)) (-4 *2 (-1207)))) (-1539 (*1 *1 *2 *2) (-12 (-5 *1 (-872 *2)) (-4 *2 (-1207)))))
-(-10 -8 (-15 -1539 ($ |#1| |#1|)) (-15 -2542 (|#1| $ (-766))))
+((-1698 (($ |#1| |#1|) 8)) (-4247 ((|#1| $ (-766)) 10)))
+(((-872 |#1|) (-10 -8 (-15 -1698 ($ |#1| |#1|)) (-15 -4247 (|#1| $ (-766)))) (-1207)) (T -872))
+((-4247 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-872 *2)) (-4 *2 (-1207)))) (-1698 (*1 *1 *2 *2) (-12 (-5 *1 (-872 *2)) (-4 *2 (-1207)))))
+(-10 -8 (-15 -1698 ($ |#1| |#1|)) (-15 -4247 (|#1| $ (-766))))
((-4152 (((-874 |#2|) (-1 |#2| |#1|) (-874 |#1|)) 14)))
(((-873 |#1| |#2|) (-10 -7 (-15 -4152 ((-874 |#2|) (-1 |#2| |#1|) (-874 |#1|)))) (-1207) (-1207)) (T -873))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-874 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-874 *6)) (-5 *1 (-873 *5 *6)))))
(-10 -7 (-15 -4152 ((-874 |#2|) (-1 |#2| |#1|) (-874 |#1|))))
-((-1539 (($ |#1| |#1| |#1|) 8)) (-2542 ((|#1| $ (-766)) 10)))
-(((-874 |#1|) (-10 -8 (-15 -1539 ($ |#1| |#1| |#1|)) (-15 -2542 (|#1| $ (-766)))) (-1207)) (T -874))
-((-2542 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-874 *2)) (-4 *2 (-1207)))) (-1539 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-874 *2)) (-4 *2 (-1207)))))
-(-10 -8 (-15 -1539 ($ |#1| |#1| |#1|)) (-15 -2542 (|#1| $ (-766))))
-((-2327 (((-639 (-1173)) (-1150)) 9)))
-(((-875) (-10 -7 (-15 -2327 ((-639 (-1173)) (-1150))))) (T -875))
-((-2327 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-639 (-1173))) (-5 *1 (-875)))))
-(-10 -7 (-15 -2327 ((-639 (-1173)) (-1150))))
+((-1698 (($ |#1| |#1| |#1|) 8)) (-4247 ((|#1| $ (-766)) 10)))
+(((-874 |#1|) (-10 -8 (-15 -1698 ($ |#1| |#1| |#1|)) (-15 -4247 (|#1| $ (-766)))) (-1207)) (T -874))
+((-4247 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-874 *2)) (-4 *2 (-1207)))) (-1698 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-874 *2)) (-4 *2 (-1207)))))
+(-10 -8 (-15 -1698 ($ |#1| |#1| |#1|)) (-15 -4247 (|#1| $ (-766))))
+((-3915 (((-639 (-1173)) (-1150)) 9)))
+(((-875) (-10 -7 (-15 -3915 ((-639 (-1173)) (-1150))))) (T -875))
+((-3915 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-639 (-1173))) (-5 *1 (-875)))))
+(-10 -7 (-15 -3915 ((-639 (-1173)) (-1150))))
((-4152 (((-877 |#2|) (-1 |#2| |#1|) (-877 |#1|)) 14)))
(((-876 |#1| |#2|) (-10 -7 (-15 -4152 ((-877 |#2|) (-1 |#2| |#1|) (-877 |#1|)))) (-1207) (-1207)) (T -876))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-877 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-877 *6)) (-5 *1 (-876 *5 *6)))))
(-10 -7 (-15 -4152 ((-877 |#2|) (-1 |#2| |#1|) (-877 |#1|))))
-((-3943 (($ |#1| |#1| |#1|) 8)) (-2542 ((|#1| $ (-766)) 10)))
-(((-877 |#1|) (-10 -8 (-15 -3943 ($ |#1| |#1| |#1|)) (-15 -2542 (|#1| $ (-766)))) (-1207)) (T -877))
-((-2542 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-877 *2)) (-4 *2 (-1207)))) (-3943 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-877 *2)) (-4 *2 (-1207)))))
-(-10 -8 (-15 -3943 ($ |#1| |#1| |#1|)) (-15 -2542 (|#1| $ (-766))))
-((-3976 (((-1148 (-639 (-562))) (-639 (-562)) (-1148 (-639 (-562)))) 30)) (-1922 (((-1148 (-639 (-562))) (-639 (-562)) (-639 (-562))) 26)) (-1689 (((-1148 (-639 (-562))) (-639 (-562))) 39) (((-1148 (-639 (-562))) (-639 (-562)) (-639 (-562))) 38)) (-1587 (((-1148 (-639 (-562))) (-562)) 40)) (-2305 (((-1148 (-639 (-562))) (-562) (-562)) 22) (((-1148 (-639 (-562))) (-562)) 16) (((-1148 (-639 (-562))) (-562) (-562) (-562)) 12)) (-3788 (((-1148 (-639 (-562))) (-1148 (-639 (-562)))) 24)) (-3665 (((-639 (-562)) (-639 (-562))) 23)))
-(((-878) (-10 -7 (-15 -2305 ((-1148 (-639 (-562))) (-562) (-562) (-562))) (-15 -2305 ((-1148 (-639 (-562))) (-562))) (-15 -2305 ((-1148 (-639 (-562))) (-562) (-562))) (-15 -3665 ((-639 (-562)) (-639 (-562)))) (-15 -3788 ((-1148 (-639 (-562))) (-1148 (-639 (-562))))) (-15 -1922 ((-1148 (-639 (-562))) (-639 (-562)) (-639 (-562)))) (-15 -3976 ((-1148 (-639 (-562))) (-639 (-562)) (-1148 (-639 (-562))))) (-15 -1689 ((-1148 (-639 (-562))) (-639 (-562)) (-639 (-562)))) (-15 -1689 ((-1148 (-639 (-562))) (-639 (-562)))) (-15 -1587 ((-1148 (-639 (-562))) (-562))))) (T -878))
-((-1587 (*1 *2 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562)))) (-1689 (*1 *2 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-639 (-562))))) (-1689 (*1 *2 *3 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-639 (-562))))) (-3976 (*1 *2 *3 *2) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *3 (-639 (-562))) (-5 *1 (-878)))) (-1922 (*1 *2 *3 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-639 (-562))))) (-3788 (*1 *2 *2) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)))) (-3665 (*1 *2 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-878)))) (-2305 (*1 *2 *3 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562)))) (-2305 (*1 *2 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562)))) (-2305 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562)))))
-(-10 -7 (-15 -2305 ((-1148 (-639 (-562))) (-562) (-562) (-562))) (-15 -2305 ((-1148 (-639 (-562))) (-562))) (-15 -2305 ((-1148 (-639 (-562))) (-562) (-562))) (-15 -3665 ((-639 (-562)) (-639 (-562)))) (-15 -3788 ((-1148 (-639 (-562))) (-1148 (-639 (-562))))) (-15 -1922 ((-1148 (-639 (-562))) (-639 (-562)) (-639 (-562)))) (-15 -3976 ((-1148 (-639 (-562))) (-639 (-562)) (-1148 (-639 (-562))))) (-15 -1689 ((-1148 (-639 (-562))) (-639 (-562)) (-639 (-562)))) (-15 -1689 ((-1148 (-639 (-562))) (-639 (-562)))) (-15 -1587 ((-1148 (-639 (-562))) (-562))))
+((-1336 (($ |#1| |#1| |#1|) 8)) (-4247 ((|#1| $ (-766)) 10)))
+(((-877 |#1|) (-10 -8 (-15 -1336 ($ |#1| |#1| |#1|)) (-15 -4247 (|#1| $ (-766)))) (-1207)) (T -877))
+((-4247 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-877 *2)) (-4 *2 (-1207)))) (-1336 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-877 *2)) (-4 *2 (-1207)))))
+(-10 -8 (-15 -1336 ($ |#1| |#1| |#1|)) (-15 -4247 (|#1| $ (-766))))
+((-1691 (((-1148 (-639 (-562))) (-639 (-562)) (-1148 (-639 (-562)))) 30)) (-2203 (((-1148 (-639 (-562))) (-639 (-562)) (-639 (-562))) 26)) (-3572 (((-1148 (-639 (-562))) (-639 (-562))) 39) (((-1148 (-639 (-562))) (-639 (-562)) (-639 (-562))) 38)) (-2128 (((-1148 (-639 (-562))) (-562)) 40)) (-3684 (((-1148 (-639 (-562))) (-562) (-562)) 22) (((-1148 (-639 (-562))) (-562)) 16) (((-1148 (-639 (-562))) (-562) (-562) (-562)) 12)) (-3455 (((-1148 (-639 (-562))) (-1148 (-639 (-562)))) 24)) (-1660 (((-639 (-562)) (-639 (-562))) 23)))
+(((-878) (-10 -7 (-15 -3684 ((-1148 (-639 (-562))) (-562) (-562) (-562))) (-15 -3684 ((-1148 (-639 (-562))) (-562))) (-15 -3684 ((-1148 (-639 (-562))) (-562) (-562))) (-15 -1660 ((-639 (-562)) (-639 (-562)))) (-15 -3455 ((-1148 (-639 (-562))) (-1148 (-639 (-562))))) (-15 -2203 ((-1148 (-639 (-562))) (-639 (-562)) (-639 (-562)))) (-15 -1691 ((-1148 (-639 (-562))) (-639 (-562)) (-1148 (-639 (-562))))) (-15 -3572 ((-1148 (-639 (-562))) (-639 (-562)) (-639 (-562)))) (-15 -3572 ((-1148 (-639 (-562))) (-639 (-562)))) (-15 -2128 ((-1148 (-639 (-562))) (-562))))) (T -878))
+((-2128 (*1 *2 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562)))) (-3572 (*1 *2 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-639 (-562))))) (-3572 (*1 *2 *3 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-639 (-562))))) (-1691 (*1 *2 *3 *2) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *3 (-639 (-562))) (-5 *1 (-878)))) (-2203 (*1 *2 *3 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-639 (-562))))) (-3455 (*1 *2 *2) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)))) (-1660 (*1 *2 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-878)))) (-3684 (*1 *2 *3 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562)))) (-3684 (*1 *2 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562)))) (-3684 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562)))))
+(-10 -7 (-15 -3684 ((-1148 (-639 (-562))) (-562) (-562) (-562))) (-15 -3684 ((-1148 (-639 (-562))) (-562))) (-15 -3684 ((-1148 (-639 (-562))) (-562) (-562))) (-15 -1660 ((-639 (-562)) (-639 (-562)))) (-15 -3455 ((-1148 (-639 (-562))) (-1148 (-639 (-562))))) (-15 -2203 ((-1148 (-639 (-562))) (-639 (-562)) (-639 (-562)))) (-15 -1691 ((-1148 (-639 (-562))) (-639 (-562)) (-1148 (-639 (-562))))) (-15 -3572 ((-1148 (-639 (-562))) (-639 (-562)) (-639 (-562)))) (-15 -3572 ((-1148 (-639 (-562))) (-639 (-562)))) (-15 -2128 ((-1148 (-639 (-562))) (-562))))
((-4208 (((-887 (-378)) $) 9 (|has| |#1| (-610 (-887 (-378))))) (((-887 (-562)) $) 8 (|has| |#1| (-610 (-887 (-562)))))))
(((-879 |#1|) (-139) (-1207)) (T -879))
NIL
(-13 (-10 -7 (IF (|has| |t#1| (-610 (-887 (-562)))) (-6 (-610 (-887 (-562)))) |%noBranch|) (IF (|has| |t#1| (-610 (-887 (-378)))) (-6 (-610 (-887 (-378)))) |%noBranch|)))
(((-610 (-887 (-378))) |has| |#1| (-610 (-887 (-378)))) ((-610 (-887 (-562))) |has| |#1| (-610 (-887 (-562)))))
-((-4041 (((-112) $ $) NIL)) (-1458 (($) 14)) (-1662 (($ (-884 |#1| |#2|) (-884 |#1| |#3|)) 27)) (-2823 (((-884 |#1| |#3|) $) 16)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2723 (((-112) $) 22)) (-4253 (($) 19)) (-4054 (((-857) $) 30)) (-3210 (((-884 |#1| |#2|) $) 15)) (-1731 (((-112) $ $) 25)))
-(((-880 |#1| |#2| |#3|) (-13 (-1092) (-10 -8 (-15 -2723 ((-112) $)) (-15 -4253 ($)) (-15 -1458 ($)) (-15 -1662 ($ (-884 |#1| |#2|) (-884 |#1| |#3|))) (-15 -3210 ((-884 |#1| |#2|) $)) (-15 -2823 ((-884 |#1| |#3|) $)))) (-1092) (-1092) (-660 |#2|)) (T -880))
-((-2723 (*1 *2 *1) (-12 (-4 *4 (-1092)) (-5 *2 (-112)) (-5 *1 (-880 *3 *4 *5)) (-4 *3 (-1092)) (-4 *5 (-660 *4)))) (-4253 (*1 *1) (-12 (-4 *3 (-1092)) (-5 *1 (-880 *2 *3 *4)) (-4 *2 (-1092)) (-4 *4 (-660 *3)))) (-1458 (*1 *1) (-12 (-4 *3 (-1092)) (-5 *1 (-880 *2 *3 *4)) (-4 *2 (-1092)) (-4 *4 (-660 *3)))) (-1662 (*1 *1 *2 *3) (-12 (-5 *2 (-884 *4 *5)) (-5 *3 (-884 *4 *6)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-660 *5)) (-5 *1 (-880 *4 *5 *6)))) (-3210 (*1 *2 *1) (-12 (-4 *4 (-1092)) (-5 *2 (-884 *3 *4)) (-5 *1 (-880 *3 *4 *5)) (-4 *3 (-1092)) (-4 *5 (-660 *4)))) (-2823 (*1 *2 *1) (-12 (-4 *4 (-1092)) (-5 *2 (-884 *3 *5)) (-5 *1 (-880 *3 *4 *5)) (-4 *3 (-1092)) (-4 *5 (-660 *4)))))
-(-13 (-1092) (-10 -8 (-15 -2723 ((-112) $)) (-15 -4253 ($)) (-15 -1458 ($)) (-15 -1662 ($ (-884 |#1| |#2|) (-884 |#1| |#3|))) (-15 -3210 ((-884 |#1| |#2|) $)) (-15 -2823 ((-884 |#1| |#3|) $))))
-((-4041 (((-112) $ $) 7)) (-2533 (((-884 |#1| $) $ (-887 |#1|) (-884 |#1| $)) 13)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) NIL)) (-1458 (($) 14)) (-1510 (($ (-884 |#1| |#2|) (-884 |#1| |#3|)) 27)) (-2822 (((-884 |#1| |#3|) $) 16)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2436 (((-112) $) 22)) (-4254 (($) 19)) (-4053 (((-857) $) 30)) (-2740 (((-884 |#1| |#2|) $) 15)) (-1733 (((-112) $ $) 25)))
+(((-880 |#1| |#2| |#3|) (-13 (-1092) (-10 -8 (-15 -2436 ((-112) $)) (-15 -4254 ($)) (-15 -1458 ($)) (-15 -1510 ($ (-884 |#1| |#2|) (-884 |#1| |#3|))) (-15 -2740 ((-884 |#1| |#2|) $)) (-15 -2822 ((-884 |#1| |#3|) $)))) (-1092) (-1092) (-660 |#2|)) (T -880))
+((-2436 (*1 *2 *1) (-12 (-4 *4 (-1092)) (-5 *2 (-112)) (-5 *1 (-880 *3 *4 *5)) (-4 *3 (-1092)) (-4 *5 (-660 *4)))) (-4254 (*1 *1) (-12 (-4 *3 (-1092)) (-5 *1 (-880 *2 *3 *4)) (-4 *2 (-1092)) (-4 *4 (-660 *3)))) (-1458 (*1 *1) (-12 (-4 *3 (-1092)) (-5 *1 (-880 *2 *3 *4)) (-4 *2 (-1092)) (-4 *4 (-660 *3)))) (-1510 (*1 *1 *2 *3) (-12 (-5 *2 (-884 *4 *5)) (-5 *3 (-884 *4 *6)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-660 *5)) (-5 *1 (-880 *4 *5 *6)))) (-2740 (*1 *2 *1) (-12 (-4 *4 (-1092)) (-5 *2 (-884 *3 *4)) (-5 *1 (-880 *3 *4 *5)) (-4 *3 (-1092)) (-4 *5 (-660 *4)))) (-2822 (*1 *2 *1) (-12 (-4 *4 (-1092)) (-5 *2 (-884 *3 *5)) (-5 *1 (-880 *3 *4 *5)) (-4 *3 (-1092)) (-4 *5 (-660 *4)))))
+(-13 (-1092) (-10 -8 (-15 -2436 ((-112) $)) (-15 -4254 ($)) (-15 -1458 ($)) (-15 -1510 ($ (-884 |#1| |#2|) (-884 |#1| |#3|))) (-15 -2740 ((-884 |#1| |#2|) $)) (-15 -2822 ((-884 |#1| |#3|) $))))
+((-4041 (((-112) $ $) 7)) (-2337 (((-884 |#1| $) $ (-887 |#1|) (-884 |#1| $)) 13)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1733 (((-112) $ $) 6)))
(((-881 |#1|) (-139) (-1092)) (T -881))
-((-2533 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-884 *4 *1)) (-5 *3 (-887 *4)) (-4 *1 (-881 *4)) (-4 *4 (-1092)))))
-(-13 (-1092) (-10 -8 (-15 -2533 ((-884 |t#1| $) $ (-887 |t#1|) (-884 |t#1| $)))))
+((-2337 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-884 *4 *1)) (-5 *3 (-887 *4)) (-4 *1 (-881 *4)) (-4 *4 (-1092)))))
+(-13 (-1092) (-10 -8 (-15 -2337 ((-884 |t#1| $) $ (-887 |t#1|) (-884 |t#1| $)))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-1776 (((-112) (-639 |#2|) |#3|) 22) (((-112) |#2| |#3|) 17)) (-1985 (((-884 |#1| |#2|) |#2| |#3|) 42 (-12 (-2236 (|has| |#2| (-1033 (-1168)))) (-2236 (|has| |#2| (-1044))))) (((-639 (-293 (-947 |#2|))) |#2| |#3|) 41 (-12 (|has| |#2| (-1044)) (-2236 (|has| |#2| (-1033 (-1168)))))) (((-639 (-293 |#2|)) |#2| |#3|) 34 (|has| |#2| (-1033 (-1168)))) (((-880 |#1| |#2| (-639 |#2|)) (-639 |#2|) |#3|) 20)))
-(((-882 |#1| |#2| |#3|) (-10 -7 (-15 -1776 ((-112) |#2| |#3|)) (-15 -1776 ((-112) (-639 |#2|) |#3|)) (-15 -1985 ((-880 |#1| |#2| (-639 |#2|)) (-639 |#2|) |#3|)) (IF (|has| |#2| (-1033 (-1168))) (-15 -1985 ((-639 (-293 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1044)) (-15 -1985 ((-639 (-293 (-947 |#2|))) |#2| |#3|)) (-15 -1985 ((-884 |#1| |#2|) |#2| |#3|))))) (-1092) (-881 |#1|) (-610 (-887 |#1|))) (T -882))
-((-1985 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-5 *2 (-884 *5 *3)) (-5 *1 (-882 *5 *3 *4)) (-2236 (-4 *3 (-1033 (-1168)))) (-2236 (-4 *3 (-1044))) (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5))))) (-1985 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-5 *2 (-639 (-293 (-947 *3)))) (-5 *1 (-882 *5 *3 *4)) (-4 *3 (-1044)) (-2236 (-4 *3 (-1033 (-1168)))) (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5))))) (-1985 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-5 *2 (-639 (-293 *3))) (-5 *1 (-882 *5 *3 *4)) (-4 *3 (-1033 (-1168))) (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5))))) (-1985 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-4 *6 (-881 *5)) (-5 *2 (-880 *5 *6 (-639 *6))) (-5 *1 (-882 *5 *6 *4)) (-5 *3 (-639 *6)) (-4 *4 (-610 (-887 *5))))) (-1776 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *6)) (-4 *6 (-881 *5)) (-4 *5 (-1092)) (-5 *2 (-112)) (-5 *1 (-882 *5 *6 *4)) (-4 *4 (-610 (-887 *5))))) (-1776 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-5 *2 (-112)) (-5 *1 (-882 *5 *3 *4)) (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5))))))
-(-10 -7 (-15 -1776 ((-112) |#2| |#3|)) (-15 -1776 ((-112) (-639 |#2|) |#3|)) (-15 -1985 ((-880 |#1| |#2| (-639 |#2|)) (-639 |#2|) |#3|)) (IF (|has| |#2| (-1033 (-1168))) (-15 -1985 ((-639 (-293 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1044)) (-15 -1985 ((-639 (-293 (-947 |#2|))) |#2| |#3|)) (-15 -1985 ((-884 |#1| |#2|) |#2| |#3|)))))
+((-3115 (((-112) (-639 |#2|) |#3|) 22) (((-112) |#2| |#3|) 17)) (-1566 (((-884 |#1| |#2|) |#2| |#3|) 42 (-12 (-2234 (|has| |#2| (-1033 (-1168)))) (-2234 (|has| |#2| (-1044))))) (((-639 (-293 (-947 |#2|))) |#2| |#3|) 41 (-12 (|has| |#2| (-1044)) (-2234 (|has| |#2| (-1033 (-1168)))))) (((-639 (-293 |#2|)) |#2| |#3|) 34 (|has| |#2| (-1033 (-1168)))) (((-880 |#1| |#2| (-639 |#2|)) (-639 |#2|) |#3|) 20)))
+(((-882 |#1| |#2| |#3|) (-10 -7 (-15 -3115 ((-112) |#2| |#3|)) (-15 -3115 ((-112) (-639 |#2|) |#3|)) (-15 -1566 ((-880 |#1| |#2| (-639 |#2|)) (-639 |#2|) |#3|)) (IF (|has| |#2| (-1033 (-1168))) (-15 -1566 ((-639 (-293 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1044)) (-15 -1566 ((-639 (-293 (-947 |#2|))) |#2| |#3|)) (-15 -1566 ((-884 |#1| |#2|) |#2| |#3|))))) (-1092) (-881 |#1|) (-610 (-887 |#1|))) (T -882))
+((-1566 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-5 *2 (-884 *5 *3)) (-5 *1 (-882 *5 *3 *4)) (-2234 (-4 *3 (-1033 (-1168)))) (-2234 (-4 *3 (-1044))) (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5))))) (-1566 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-5 *2 (-639 (-293 (-947 *3)))) (-5 *1 (-882 *5 *3 *4)) (-4 *3 (-1044)) (-2234 (-4 *3 (-1033 (-1168)))) (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5))))) (-1566 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-5 *2 (-639 (-293 *3))) (-5 *1 (-882 *5 *3 *4)) (-4 *3 (-1033 (-1168))) (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5))))) (-1566 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-4 *6 (-881 *5)) (-5 *2 (-880 *5 *6 (-639 *6))) (-5 *1 (-882 *5 *6 *4)) (-5 *3 (-639 *6)) (-4 *4 (-610 (-887 *5))))) (-3115 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *6)) (-4 *6 (-881 *5)) (-4 *5 (-1092)) (-5 *2 (-112)) (-5 *1 (-882 *5 *6 *4)) (-4 *4 (-610 (-887 *5))))) (-3115 (*1 *2 *3 *4) (-12 (-4 *5 (-1092)) (-5 *2 (-112)) (-5 *1 (-882 *5 *3 *4)) (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5))))))
+(-10 -7 (-15 -3115 ((-112) |#2| |#3|)) (-15 -3115 ((-112) (-639 |#2|) |#3|)) (-15 -1566 ((-880 |#1| |#2| (-639 |#2|)) (-639 |#2|) |#3|)) (IF (|has| |#2| (-1033 (-1168))) (-15 -1566 ((-639 (-293 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1044)) (-15 -1566 ((-639 (-293 (-947 |#2|))) |#2| |#3|)) (-15 -1566 ((-884 |#1| |#2|) |#2| |#3|)))))
((-4152 (((-884 |#1| |#3|) (-1 |#3| |#2|) (-884 |#1| |#2|)) 22)))
(((-883 |#1| |#2| |#3|) (-10 -7 (-15 -4152 ((-884 |#1| |#3|) (-1 |#3| |#2|) (-884 |#1| |#2|)))) (-1092) (-1092) (-1092)) (T -883))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-884 *5 *6)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-884 *5 *7)) (-5 *1 (-883 *5 *6 *7)))))
(-10 -7 (-15 -4152 ((-884 |#1| |#3|) (-1 |#3| |#2|) (-884 |#1| |#2|))))
-((-4041 (((-112) $ $) NIL)) (-2494 (($ $ $) 39)) (-1779 (((-3 (-112) "failed") $ (-887 |#1|)) 36)) (-1458 (($) 12)) (-2913 (((-1150) $) NIL)) (-3485 (($ (-887 |#1|) |#2| $) 20)) (-1709 (((-1112) $) NIL)) (-4026 (((-3 |#2| "failed") (-887 |#1|) $) 50)) (-2723 (((-112) $) 15)) (-4253 (($) 13)) (-1716 (((-639 (-2 (|:| -2320 (-1168)) (|:| -2694 |#2|))) $) 25)) (-4066 (($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 |#2|)))) 23)) (-4054 (((-857) $) 44)) (-1901 (($ (-887 |#1|) |#2| $ |#2|) 48)) (-2337 (($ (-887 |#1|) |#2| $) 47)) (-1731 (((-112) $ $) 41)))
-(((-884 |#1| |#2|) (-13 (-1092) (-10 -8 (-15 -2723 ((-112) $)) (-15 -4253 ($)) (-15 -1458 ($)) (-15 -2494 ($ $ $)) (-15 -4026 ((-3 |#2| "failed") (-887 |#1|) $)) (-15 -2337 ($ (-887 |#1|) |#2| $)) (-15 -3485 ($ (-887 |#1|) |#2| $)) (-15 -1901 ($ (-887 |#1|) |#2| $ |#2|)) (-15 -1716 ((-639 (-2 (|:| -2320 (-1168)) (|:| -2694 |#2|))) $)) (-15 -4066 ($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 |#2|))))) (-15 -1779 ((-3 (-112) "failed") $ (-887 |#1|))))) (-1092) (-1092)) (T -884))
-((-2723 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-884 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-4253 (*1 *1) (-12 (-5 *1 (-884 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-1458 (*1 *1) (-12 (-5 *1 (-884 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-2494 (*1 *1 *1 *1) (-12 (-5 *1 (-884 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-4026 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-4 *2 (-1092)) (-5 *1 (-884 *4 *2)))) (-2337 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-884 *4 *3)) (-4 *3 (-1092)))) (-3485 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-884 *4 *3)) (-4 *3 (-1092)))) (-1901 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-884 *4 *3)) (-4 *3 (-1092)))) (-1716 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 *4)))) (-5 *1 (-884 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-4066 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 *4)))) (-4 *4 (-1092)) (-5 *1 (-884 *3 *4)) (-4 *3 (-1092)))) (-1779 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-5 *2 (-112)) (-5 *1 (-884 *4 *5)) (-4 *5 (-1092)))))
-(-13 (-1092) (-10 -8 (-15 -2723 ((-112) $)) (-15 -4253 ($)) (-15 -1458 ($)) (-15 -2494 ($ $ $)) (-15 -4026 ((-3 |#2| "failed") (-887 |#1|) $)) (-15 -2337 ($ (-887 |#1|) |#2| $)) (-15 -3485 ($ (-887 |#1|) |#2| $)) (-15 -1901 ($ (-887 |#1|) |#2| $ |#2|)) (-15 -1716 ((-639 (-2 (|:| -2320 (-1168)) (|:| -2694 |#2|))) $)) (-15 -4066 ($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 |#2|))))) (-15 -1779 ((-3 (-112) "failed") $ (-887 |#1|)))))
-((-3171 (((-887 |#1|) (-887 |#1|) (-639 (-1168)) (-1 (-112) (-639 |#2|))) 32) (((-887 |#1|) (-887 |#1|) (-639 (-1 (-112) |#2|))) 43) (((-887 |#1|) (-887 |#1|) (-1 (-112) |#2|)) 35)) (-1779 (((-112) (-639 |#2|) (-887 |#1|)) 40) (((-112) |#2| (-887 |#1|)) 36)) (-1820 (((-1 (-112) |#2|) (-887 |#1|)) 16)) (-2923 (((-639 |#2|) (-887 |#1|)) 24)) (-1324 (((-887 |#1|) (-887 |#1|) |#2|) 20)))
-(((-885 |#1| |#2|) (-10 -7 (-15 -3171 ((-887 |#1|) (-887 |#1|) (-1 (-112) |#2|))) (-15 -3171 ((-887 |#1|) (-887 |#1|) (-639 (-1 (-112) |#2|)))) (-15 -3171 ((-887 |#1|) (-887 |#1|) (-639 (-1168)) (-1 (-112) (-639 |#2|)))) (-15 -1820 ((-1 (-112) |#2|) (-887 |#1|))) (-15 -1779 ((-112) |#2| (-887 |#1|))) (-15 -1779 ((-112) (-639 |#2|) (-887 |#1|))) (-15 -1324 ((-887 |#1|) (-887 |#1|) |#2|)) (-15 -2923 ((-639 |#2|) (-887 |#1|)))) (-1092) (-1207)) (T -885))
-((-2923 (*1 *2 *3) (-12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-5 *2 (-639 *5)) (-5 *1 (-885 *4 *5)) (-4 *5 (-1207)))) (-1324 (*1 *2 *2 *3) (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-885 *4 *3)) (-4 *3 (-1207)))) (-1779 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *6)) (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-4 *6 (-1207)) (-5 *2 (-112)) (-5 *1 (-885 *5 *6)))) (-1779 (*1 *2 *3 *4) (-12 (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-5 *2 (-112)) (-5 *1 (-885 *5 *3)) (-4 *3 (-1207)))) (-1820 (*1 *2 *3) (-12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-885 *4 *5)) (-4 *5 (-1207)))) (-3171 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-887 *5)) (-5 *3 (-639 (-1168))) (-5 *4 (-1 (-112) (-639 *6))) (-4 *5 (-1092)) (-4 *6 (-1207)) (-5 *1 (-885 *5 *6)))) (-3171 (*1 *2 *2 *3) (-12 (-5 *2 (-887 *4)) (-5 *3 (-639 (-1 (-112) *5))) (-4 *4 (-1092)) (-4 *5 (-1207)) (-5 *1 (-885 *4 *5)))) (-3171 (*1 *2 *2 *3) (-12 (-5 *2 (-887 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1092)) (-4 *5 (-1207)) (-5 *1 (-885 *4 *5)))))
-(-10 -7 (-15 -3171 ((-887 |#1|) (-887 |#1|) (-1 (-112) |#2|))) (-15 -3171 ((-887 |#1|) (-887 |#1|) (-639 (-1 (-112) |#2|)))) (-15 -3171 ((-887 |#1|) (-887 |#1|) (-639 (-1168)) (-1 (-112) (-639 |#2|)))) (-15 -1820 ((-1 (-112) |#2|) (-887 |#1|))) (-15 -1779 ((-112) |#2| (-887 |#1|))) (-15 -1779 ((-112) (-639 |#2|) (-887 |#1|))) (-15 -1324 ((-887 |#1|) (-887 |#1|) |#2|)) (-15 -2923 ((-639 |#2|) (-887 |#1|))))
+((-4041 (((-112) $ $) NIL)) (-2492 (($ $ $) 39)) (-3146 (((-3 (-112) "failed") $ (-887 |#1|)) 36)) (-1458 (($) 12)) (-3696 (((-1150) $) NIL)) (-2386 (($ (-887 |#1|) |#2| $) 20)) (-1709 (((-1112) $) NIL)) (-3974 (((-3 |#2| "failed") (-887 |#1|) $) 50)) (-2436 (((-112) $) 15)) (-4254 (($) 13)) (-1716 (((-639 (-2 (|:| -2319 (-1168)) (|:| -2693 |#2|))) $) 25)) (-4064 (($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 |#2|)))) 23)) (-4053 (((-857) $) 44)) (-2005 (($ (-887 |#1|) |#2| $ |#2|) 48)) (-4007 (($ (-887 |#1|) |#2| $) 47)) (-1733 (((-112) $ $) 41)))
+(((-884 |#1| |#2|) (-13 (-1092) (-10 -8 (-15 -2436 ((-112) $)) (-15 -4254 ($)) (-15 -1458 ($)) (-15 -2492 ($ $ $)) (-15 -3974 ((-3 |#2| "failed") (-887 |#1|) $)) (-15 -4007 ($ (-887 |#1|) |#2| $)) (-15 -2386 ($ (-887 |#1|) |#2| $)) (-15 -2005 ($ (-887 |#1|) |#2| $ |#2|)) (-15 -1716 ((-639 (-2 (|:| -2319 (-1168)) (|:| -2693 |#2|))) $)) (-15 -4064 ($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 |#2|))))) (-15 -3146 ((-3 (-112) "failed") $ (-887 |#1|))))) (-1092) (-1092)) (T -884))
+((-2436 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-884 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-4254 (*1 *1) (-12 (-5 *1 (-884 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-1458 (*1 *1) (-12 (-5 *1 (-884 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-2492 (*1 *1 *1 *1) (-12 (-5 *1 (-884 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-3974 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-4 *2 (-1092)) (-5 *1 (-884 *4 *2)))) (-4007 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-884 *4 *3)) (-4 *3 (-1092)))) (-2386 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-884 *4 *3)) (-4 *3 (-1092)))) (-2005 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-884 *4 *3)) (-4 *3 (-1092)))) (-1716 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 *4)))) (-5 *1 (-884 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-4064 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 *4)))) (-4 *4 (-1092)) (-5 *1 (-884 *3 *4)) (-4 *3 (-1092)))) (-3146 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-5 *2 (-112)) (-5 *1 (-884 *4 *5)) (-4 *5 (-1092)))))
+(-13 (-1092) (-10 -8 (-15 -2436 ((-112) $)) (-15 -4254 ($)) (-15 -1458 ($)) (-15 -2492 ($ $ $)) (-15 -3974 ((-3 |#2| "failed") (-887 |#1|) $)) (-15 -4007 ($ (-887 |#1|) |#2| $)) (-15 -2386 ($ (-887 |#1|) |#2| $)) (-15 -2005 ($ (-887 |#1|) |#2| $ |#2|)) (-15 -1716 ((-639 (-2 (|:| -2319 (-1168)) (|:| -2693 |#2|))) $)) (-15 -4064 ($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 |#2|))))) (-15 -3146 ((-3 (-112) "failed") $ (-887 |#1|)))))
+((-3170 (((-887 |#1|) (-887 |#1|) (-639 (-1168)) (-1 (-112) (-639 |#2|))) 32) (((-887 |#1|) (-887 |#1|) (-639 (-1 (-112) |#2|))) 43) (((-887 |#1|) (-887 |#1|) (-1 (-112) |#2|)) 35)) (-3146 (((-112) (-639 |#2|) (-887 |#1|)) 40) (((-112) |#2| (-887 |#1|)) 36)) (-1820 (((-1 (-112) |#2|) (-887 |#1|)) 16)) (-3812 (((-639 |#2|) (-887 |#1|)) 24)) (-1873 (((-887 |#1|) (-887 |#1|) |#2|) 20)))
+(((-885 |#1| |#2|) (-10 -7 (-15 -3170 ((-887 |#1|) (-887 |#1|) (-1 (-112) |#2|))) (-15 -3170 ((-887 |#1|) (-887 |#1|) (-639 (-1 (-112) |#2|)))) (-15 -3170 ((-887 |#1|) (-887 |#1|) (-639 (-1168)) (-1 (-112) (-639 |#2|)))) (-15 -1820 ((-1 (-112) |#2|) (-887 |#1|))) (-15 -3146 ((-112) |#2| (-887 |#1|))) (-15 -3146 ((-112) (-639 |#2|) (-887 |#1|))) (-15 -1873 ((-887 |#1|) (-887 |#1|) |#2|)) (-15 -3812 ((-639 |#2|) (-887 |#1|)))) (-1092) (-1207)) (T -885))
+((-3812 (*1 *2 *3) (-12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-5 *2 (-639 *5)) (-5 *1 (-885 *4 *5)) (-4 *5 (-1207)))) (-1873 (*1 *2 *2 *3) (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-885 *4 *3)) (-4 *3 (-1207)))) (-3146 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *6)) (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-4 *6 (-1207)) (-5 *2 (-112)) (-5 *1 (-885 *5 *6)))) (-3146 (*1 *2 *3 *4) (-12 (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-5 *2 (-112)) (-5 *1 (-885 *5 *3)) (-4 *3 (-1207)))) (-1820 (*1 *2 *3) (-12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-885 *4 *5)) (-4 *5 (-1207)))) (-3170 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-887 *5)) (-5 *3 (-639 (-1168))) (-5 *4 (-1 (-112) (-639 *6))) (-4 *5 (-1092)) (-4 *6 (-1207)) (-5 *1 (-885 *5 *6)))) (-3170 (*1 *2 *2 *3) (-12 (-5 *2 (-887 *4)) (-5 *3 (-639 (-1 (-112) *5))) (-4 *4 (-1092)) (-4 *5 (-1207)) (-5 *1 (-885 *4 *5)))) (-3170 (*1 *2 *2 *3) (-12 (-5 *2 (-887 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1092)) (-4 *5 (-1207)) (-5 *1 (-885 *4 *5)))))
+(-10 -7 (-15 -3170 ((-887 |#1|) (-887 |#1|) (-1 (-112) |#2|))) (-15 -3170 ((-887 |#1|) (-887 |#1|) (-639 (-1 (-112) |#2|)))) (-15 -3170 ((-887 |#1|) (-887 |#1|) (-639 (-1168)) (-1 (-112) (-639 |#2|)))) (-15 -1820 ((-1 (-112) |#2|) (-887 |#1|))) (-15 -3146 ((-112) |#2| (-887 |#1|))) (-15 -3146 ((-112) (-639 |#2|) (-887 |#1|))) (-15 -1873 ((-887 |#1|) (-887 |#1|) |#2|)) (-15 -3812 ((-639 |#2|) (-887 |#1|))))
((-4152 (((-887 |#2|) (-1 |#2| |#1|) (-887 |#1|)) 19)))
(((-886 |#1| |#2|) (-10 -7 (-15 -4152 ((-887 |#2|) (-1 |#2| |#1|) (-887 |#1|)))) (-1092) (-1092)) (T -886))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-5 *2 (-887 *6)) (-5 *1 (-886 *5 *6)))))
(-10 -7 (-15 -4152 ((-887 |#2|) (-1 |#2| |#1|) (-887 |#1|))))
-((-4041 (((-112) $ $) NIL)) (-3582 (($ $ (-639 (-52))) 62)) (-1402 (((-639 $) $) 116)) (-2397 (((-2 (|:| |var| (-639 (-1168))) (|:| |pred| (-52))) $) 23)) (-1873 (((-112) $) 29)) (-2141 (($ $ (-639 (-1168)) (-52)) 24)) (-2251 (($ $ (-639 (-52))) 61)) (-4048 (((-3 |#1| "failed") $) 59) (((-3 (-1168) "failed") $) 138)) (-3961 ((|#1| $) 56) (((-1168) $) NIL)) (-2961 (($ $) 106)) (-3442 (((-112) $) 44)) (-1649 (((-639 (-52)) $) 42)) (-2208 (($ (-1168) (-112) (-112) (-112)) 63)) (-1417 (((-3 (-639 $) "failed") (-639 $)) 70)) (-2822 (((-112) $) 47)) (-1308 (((-112) $) 46)) (-2913 (((-1150) $) NIL)) (-2042 (((-3 (-639 $) "failed") $) 33)) (-3007 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 40)) (-3218 (((-3 (-2 (|:| |val| $) (|:| -1960 $)) "failed") $) 81)) (-1546 (((-3 (-639 $) "failed") $) 32)) (-3143 (((-3 (-639 $) "failed") $ (-114)) 105) (((-3 (-2 (|:| -2431 (-114)) (|:| |arg| (-639 $))) "failed") $) 93)) (-3481 (((-3 (-639 $) "failed") $) 34)) (-1628 (((-3 (-2 (|:| |val| $) (|:| -1960 (-766))) "failed") $) 37)) (-1825 (((-112) $) 28)) (-1709 (((-1112) $) NIL)) (-3780 (((-112) $) 20)) (-3125 (((-112) $) 43)) (-3236 (((-639 (-52)) $) 109)) (-3823 (((-112) $) 45)) (-2343 (($ (-114) (-639 $)) 90)) (-2193 (((-766) $) 27)) (-4220 (($ $) 60)) (-4208 (($ (-639 $)) 57)) (-3989 (((-112) $) 25)) (-4054 (((-857) $) 51) (($ |#1|) 18) (($ (-1168)) 64)) (-1324 (($ $ (-52)) 108)) (-2286 (($) 89 T CONST)) (-2294 (($) 71 T CONST)) (-1731 (((-112) $ $) 77)) (-1859 (($ $ $) 98)) (-1835 (($ $ $) 102)) (** (($ $ (-766)) 97) (($ $ $) 52)) (* (($ $ $) 103)))
-(((-887 |#1|) (-13 (-1092) (-1033 |#1|) (-1033 (-1168)) (-10 -8 (-15 0 ($) -1497) (-15 1 ($) -1497) (-15 -1546 ((-3 (-639 $) "failed") $)) (-15 -2042 ((-3 (-639 $) "failed") $)) (-15 -3143 ((-3 (-639 $) "failed") $ (-114))) (-15 -3143 ((-3 (-2 (|:| -2431 (-114)) (|:| |arg| (-639 $))) "failed") $)) (-15 -1628 ((-3 (-2 (|:| |val| $) (|:| -1960 (-766))) "failed") $)) (-15 -3007 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -3481 ((-3 (-639 $) "failed") $)) (-15 -3218 ((-3 (-2 (|:| |val| $) (|:| -1960 $)) "failed") $)) (-15 -2343 ($ (-114) (-639 $))) (-15 -1835 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-766))) (-15 ** ($ $ $)) (-15 -1859 ($ $ $)) (-15 -2193 ((-766) $)) (-15 -4208 ($ (-639 $))) (-15 -4220 ($ $)) (-15 -1825 ((-112) $)) (-15 -3442 ((-112) $)) (-15 -1873 ((-112) $)) (-15 -3989 ((-112) $)) (-15 -3823 ((-112) $)) (-15 -1308 ((-112) $)) (-15 -2822 ((-112) $)) (-15 -3125 ((-112) $)) (-15 -1649 ((-639 (-52)) $)) (-15 -2251 ($ $ (-639 (-52)))) (-15 -3582 ($ $ (-639 (-52)))) (-15 -2208 ($ (-1168) (-112) (-112) (-112))) (-15 -2141 ($ $ (-639 (-1168)) (-52))) (-15 -2397 ((-2 (|:| |var| (-639 (-1168))) (|:| |pred| (-52))) $)) (-15 -3780 ((-112) $)) (-15 -2961 ($ $)) (-15 -1324 ($ $ (-52))) (-15 -3236 ((-639 (-52)) $)) (-15 -1402 ((-639 $) $)) (-15 -1417 ((-3 (-639 $) "failed") (-639 $))))) (-1092)) (T -887))
-((-2286 (*1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (-2294 (*1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (-1546 (*1 *2 *1) (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-2042 (*1 *2 *1) (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3143 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-639 (-887 *4))) (-5 *1 (-887 *4)) (-4 *4 (-1092)))) (-3143 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -2431 (-114)) (|:| |arg| (-639 (-887 *3))))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1628 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-887 *3)) (|:| -1960 (-766)))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3007 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-887 *3)) (|:| |den| (-887 *3)))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3481 (*1 *2 *1) (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3218 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-887 *3)) (|:| -1960 (-887 *3)))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-2343 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-639 (-887 *4))) (-5 *1 (-887 *4)) (-4 *4 (-1092)))) (-1835 (*1 *1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (-1859 (*1 *1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (-2193 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-4220 (*1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (-1825 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3442 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1873 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3989 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3823 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1308 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-2822 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3125 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1649 (*1 *2 *1) (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-2251 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3582 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-2208 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-112)) (-5 *1 (-887 *4)) (-4 *4 (-1092)))) (-2141 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-52)) (-5 *1 (-887 *4)) (-4 *4 (-1092)))) (-2397 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-639 (-1168))) (|:| |pred| (-52)))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-2961 (*1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (-1324 (*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3236 (*1 *2 *1) (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1402 (*1 *2 *1) (-12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1417 (*1 *2 *2) (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(-13 (-1092) (-1033 |#1|) (-1033 (-1168)) (-10 -8 (-15 (-2286) ($) -1497) (-15 (-2294) ($) -1497) (-15 -1546 ((-3 (-639 $) "failed") $)) (-15 -2042 ((-3 (-639 $) "failed") $)) (-15 -3143 ((-3 (-639 $) "failed") $ (-114))) (-15 -3143 ((-3 (-2 (|:| -2431 (-114)) (|:| |arg| (-639 $))) "failed") $)) (-15 -1628 ((-3 (-2 (|:| |val| $) (|:| -1960 (-766))) "failed") $)) (-15 -3007 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -3481 ((-3 (-639 $) "failed") $)) (-15 -3218 ((-3 (-2 (|:| |val| $) (|:| -1960 $)) "failed") $)) (-15 -2343 ($ (-114) (-639 $))) (-15 -1835 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-766))) (-15 ** ($ $ $)) (-15 -1859 ($ $ $)) (-15 -2193 ((-766) $)) (-15 -4208 ($ (-639 $))) (-15 -4220 ($ $)) (-15 -1825 ((-112) $)) (-15 -3442 ((-112) $)) (-15 -1873 ((-112) $)) (-15 -3989 ((-112) $)) (-15 -3823 ((-112) $)) (-15 -1308 ((-112) $)) (-15 -2822 ((-112) $)) (-15 -3125 ((-112) $)) (-15 -1649 ((-639 (-52)) $)) (-15 -2251 ($ $ (-639 (-52)))) (-15 -3582 ($ $ (-639 (-52)))) (-15 -2208 ($ (-1168) (-112) (-112) (-112))) (-15 -2141 ($ $ (-639 (-1168)) (-52))) (-15 -2397 ((-2 (|:| |var| (-639 (-1168))) (|:| |pred| (-52))) $)) (-15 -3780 ((-112) $)) (-15 -2961 ($ $)) (-15 -1324 ($ $ (-52))) (-15 -3236 ((-639 (-52)) $)) (-15 -1402 ((-639 $) $)) (-15 -1417 ((-3 (-639 $) "failed") (-639 $)))))
-((-4041 (((-112) $ $) NIL)) (-2852 (((-639 |#1|) $) 16)) (-2585 (((-112) $) 38)) (-4048 (((-3 (-666 |#1|) "failed") $) 43)) (-3961 (((-666 |#1|) $) 41)) (-1434 (($ $) 18)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3641 (((-766) $) 46)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-666 |#1|) $) 17)) (-4054 (((-857) $) 37) (($ (-666 |#1|)) 21) (((-814 |#1|) $) 27) (($ |#1|) 20)) (-2294 (($) 8 T CONST)) (-2516 (((-639 (-666 |#1|)) $) 23)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 11)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 49)))
-(((-888 |#1|) (-13 (-845) (-1033 (-666 |#1|)) (-10 -8 (-15 1 ($) -1497) (-15 -4054 ((-814 |#1|) $)) (-15 -4054 ($ |#1|)) (-15 -1421 ((-666 |#1|) $)) (-15 -3641 ((-766) $)) (-15 -2516 ((-639 (-666 |#1|)) $)) (-15 -1434 ($ $)) (-15 -2585 ((-112) $)) (-15 -2852 ((-639 |#1|) $)))) (-845)) (T -888))
-((-2294 (*1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-845)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-814 *3)) (-5 *1 (-888 *3)) (-4 *3 (-845)))) (-4054 (*1 *1 *2) (-12 (-5 *1 (-888 *2)) (-4 *2 (-845)))) (-1421 (*1 *2 *1) (-12 (-5 *2 (-666 *3)) (-5 *1 (-888 *3)) (-4 *3 (-845)))) (-3641 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-888 *3)) (-4 *3 (-845)))) (-2516 (*1 *2 *1) (-12 (-5 *2 (-639 (-666 *3))) (-5 *1 (-888 *3)) (-4 *3 (-845)))) (-1434 (*1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-845)))) (-2585 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-845)))) (-2852 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-888 *3)) (-4 *3 (-845)))))
-(-13 (-845) (-1033 (-666 |#1|)) (-10 -8 (-15 (-2294) ($) -1497) (-15 -4054 ((-814 |#1|) $)) (-15 -4054 ($ |#1|)) (-15 -1421 ((-666 |#1|) $)) (-15 -3641 ((-766) $)) (-15 -2516 ((-639 (-666 |#1|)) $)) (-15 -1434 ($ $)) (-15 -2585 ((-112) $)) (-15 -2852 ((-639 |#1|) $))))
-((-3036 ((|#1| |#1| |#1|) 19)))
-(((-889 |#1| |#2|) (-10 -7 (-15 -3036 (|#1| |#1| |#1|))) (-1232 |#2|) (-1044)) (T -889))
-((-3036 (*1 *2 *2 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-889 *2 *3)) (-4 *2 (-1232 *3)))))
-(-10 -7 (-15 -3036 (|#1| |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-2172 (((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 14)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2165 (((-1030) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 13)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) NIL)) (-2115 (($ $ (-639 (-52))) 62)) (-1401 (((-639 $) $) 116)) (-3368 (((-2 (|:| |var| (-639 (-1168))) (|:| |pred| (-52))) $) 23)) (-1681 (((-112) $) 29)) (-2690 (($ $ (-639 (-1168)) (-52)) 24)) (-1305 (($ $ (-639 (-52))) 61)) (-4048 (((-3 |#1| "failed") $) 59) (((-3 (-1168) "failed") $) 138)) (-3960 ((|#1| $) 56) (((-1168) $) NIL)) (-4182 (($ $) 106)) (-3107 (((-112) $) 44)) (-1365 (((-639 (-52)) $) 42)) (-2179 (($ (-1168) (-112) (-112) (-112)) 63)) (-1887 (((-3 (-639 $) "failed") (-639 $)) 70)) (-2236 (((-112) $) 47)) (-1675 (((-112) $) 46)) (-3696 (((-1150) $) NIL)) (-4025 (((-3 (-639 $) "failed") $) 33)) (-3006 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 40)) (-2811 (((-3 (-2 (|:| |val| $) (|:| -1300 $)) "failed") $) 81)) (-1778 (((-3 (-639 $) "failed") $) 32)) (-3271 (((-3 (-639 $) "failed") $ (-114)) 105) (((-3 (-2 (|:| -2429 (-114)) (|:| |arg| (-639 $))) "failed") $) 93)) (-3478 (((-3 (-639 $) "failed") $) 34)) (-4270 (((-3 (-2 (|:| |val| $) (|:| -1300 (-766))) "failed") $) 37)) (-2430 (((-112) $) 28)) (-1709 (((-1112) $) NIL)) (-3374 (((-112) $) 20)) (-3100 (((-112) $) 43)) (-1793 (((-639 (-52)) $) 109)) (-2621 (((-112) $) 45)) (-2343 (($ (-114) (-639 $)) 90)) (-2191 (((-766) $) 27)) (-4220 (($ $) 60)) (-4208 (($ (-639 $)) 57)) (-3620 (((-112) $) 25)) (-4053 (((-857) $) 51) (($ |#1|) 18) (($ (-1168)) 64)) (-1873 (($ $ (-52)) 108)) (-2285 (($) 89 T CONST)) (-2294 (($) 71 T CONST)) (-1733 (((-112) $ $) 77)) (-1859 (($ $ $) 98)) (-1836 (($ $ $) 102)) (** (($ $ (-766)) 97) (($ $ $) 52)) (* (($ $ $) 103)))
+(((-887 |#1|) (-13 (-1092) (-1033 |#1|) (-1033 (-1168)) (-10 -8 (-15 0 ($) -1497) (-15 1 ($) -1497) (-15 -1778 ((-3 (-639 $) "failed") $)) (-15 -4025 ((-3 (-639 $) "failed") $)) (-15 -3271 ((-3 (-639 $) "failed") $ (-114))) (-15 -3271 ((-3 (-2 (|:| -2429 (-114)) (|:| |arg| (-639 $))) "failed") $)) (-15 -4270 ((-3 (-2 (|:| |val| $) (|:| -1300 (-766))) "failed") $)) (-15 -3006 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -3478 ((-3 (-639 $) "failed") $)) (-15 -2811 ((-3 (-2 (|:| |val| $) (|:| -1300 $)) "failed") $)) (-15 -2343 ($ (-114) (-639 $))) (-15 -1836 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-766))) (-15 ** ($ $ $)) (-15 -1859 ($ $ $)) (-15 -2191 ((-766) $)) (-15 -4208 ($ (-639 $))) (-15 -4220 ($ $)) (-15 -2430 ((-112) $)) (-15 -3107 ((-112) $)) (-15 -1681 ((-112) $)) (-15 -3620 ((-112) $)) (-15 -2621 ((-112) $)) (-15 -1675 ((-112) $)) (-15 -2236 ((-112) $)) (-15 -3100 ((-112) $)) (-15 -1365 ((-639 (-52)) $)) (-15 -1305 ($ $ (-639 (-52)))) (-15 -2115 ($ $ (-639 (-52)))) (-15 -2179 ($ (-1168) (-112) (-112) (-112))) (-15 -2690 ($ $ (-639 (-1168)) (-52))) (-15 -3368 ((-2 (|:| |var| (-639 (-1168))) (|:| |pred| (-52))) $)) (-15 -3374 ((-112) $)) (-15 -4182 ($ $)) (-15 -1873 ($ $ (-52))) (-15 -1793 ((-639 (-52)) $)) (-15 -1401 ((-639 $) $)) (-15 -1887 ((-3 (-639 $) "failed") (-639 $))))) (-1092)) (T -887))
+((-2285 (*1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (-2294 (*1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (-1778 (*1 *2 *1) (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-4025 (*1 *2 *1) (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3271 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-639 (-887 *4))) (-5 *1 (-887 *4)) (-4 *4 (-1092)))) (-3271 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -2429 (-114)) (|:| |arg| (-639 (-887 *3))))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-4270 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-887 *3)) (|:| -1300 (-766)))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3006 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-887 *3)) (|:| |den| (-887 *3)))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3478 (*1 *2 *1) (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-2811 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-887 *3)) (|:| -1300 (-887 *3)))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-2343 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-639 (-887 *4))) (-5 *1 (-887 *4)) (-4 *4 (-1092)))) (-1836 (*1 *1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (-1859 (*1 *1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (-2191 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-4220 (*1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (-2430 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3107 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1681 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3620 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-2621 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1675 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-2236 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3100 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1365 (*1 *2 *1) (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1305 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-2115 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-2179 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-112)) (-5 *1 (-887 *4)) (-4 *4 (-1092)))) (-2690 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-52)) (-5 *1 (-887 *4)) (-4 *4 (-1092)))) (-3368 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-639 (-1168))) (|:| |pred| (-52)))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-3374 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-4182 (*1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))) (-1873 (*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1793 (*1 *2 *1) (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1401 (*1 *2 *1) (-12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))) (-1887 (*1 *2 *2) (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(-13 (-1092) (-1033 |#1|) (-1033 (-1168)) (-10 -8 (-15 (-2285) ($) -1497) (-15 (-2294) ($) -1497) (-15 -1778 ((-3 (-639 $) "failed") $)) (-15 -4025 ((-3 (-639 $) "failed") $)) (-15 -3271 ((-3 (-639 $) "failed") $ (-114))) (-15 -3271 ((-3 (-2 (|:| -2429 (-114)) (|:| |arg| (-639 $))) "failed") $)) (-15 -4270 ((-3 (-2 (|:| |val| $) (|:| -1300 (-766))) "failed") $)) (-15 -3006 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -3478 ((-3 (-639 $) "failed") $)) (-15 -2811 ((-3 (-2 (|:| |val| $) (|:| -1300 $)) "failed") $)) (-15 -2343 ($ (-114) (-639 $))) (-15 -1836 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-766))) (-15 ** ($ $ $)) (-15 -1859 ($ $ $)) (-15 -2191 ((-766) $)) (-15 -4208 ($ (-639 $))) (-15 -4220 ($ $)) (-15 -2430 ((-112) $)) (-15 -3107 ((-112) $)) (-15 -1681 ((-112) $)) (-15 -3620 ((-112) $)) (-15 -2621 ((-112) $)) (-15 -1675 ((-112) $)) (-15 -2236 ((-112) $)) (-15 -3100 ((-112) $)) (-15 -1365 ((-639 (-52)) $)) (-15 -1305 ($ $ (-639 (-52)))) (-15 -2115 ($ $ (-639 (-52)))) (-15 -2179 ($ (-1168) (-112) (-112) (-112))) (-15 -2690 ($ $ (-639 (-1168)) (-52))) (-15 -3368 ((-2 (|:| |var| (-639 (-1168))) (|:| |pred| (-52))) $)) (-15 -3374 ((-112) $)) (-15 -4182 ($ $)) (-15 -1873 ($ $ (-52))) (-15 -1793 ((-639 (-52)) $)) (-15 -1401 ((-639 $) $)) (-15 -1887 ((-3 (-639 $) "failed") (-639 $)))))
+((-4041 (((-112) $ $) NIL)) (-2850 (((-639 |#1|) $) 16)) (-1638 (((-112) $) 38)) (-4048 (((-3 (-666 |#1|) "failed") $) 43)) (-3960 (((-666 |#1|) $) 41)) (-1434 (($ $) 18)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3641 (((-766) $) 46)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-666 |#1|) $) 17)) (-4053 (((-857) $) 37) (($ (-666 |#1|)) 21) (((-814 |#1|) $) 27) (($ |#1|) 20)) (-2294 (($) 8 T CONST)) (-2174 (((-639 (-666 |#1|)) $) 23)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 11)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 49)))
+(((-888 |#1|) (-13 (-845) (-1033 (-666 |#1|)) (-10 -8 (-15 1 ($) -1497) (-15 -4053 ((-814 |#1|) $)) (-15 -4053 ($ |#1|)) (-15 -1421 ((-666 |#1|) $)) (-15 -3641 ((-766) $)) (-15 -2174 ((-639 (-666 |#1|)) $)) (-15 -1434 ($ $)) (-15 -1638 ((-112) $)) (-15 -2850 ((-639 |#1|) $)))) (-845)) (T -888))
+((-2294 (*1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-845)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-814 *3)) (-5 *1 (-888 *3)) (-4 *3 (-845)))) (-4053 (*1 *1 *2) (-12 (-5 *1 (-888 *2)) (-4 *2 (-845)))) (-1421 (*1 *2 *1) (-12 (-5 *2 (-666 *3)) (-5 *1 (-888 *3)) (-4 *3 (-845)))) (-3641 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-888 *3)) (-4 *3 (-845)))) (-2174 (*1 *2 *1) (-12 (-5 *2 (-639 (-666 *3))) (-5 *1 (-888 *3)) (-4 *3 (-845)))) (-1434 (*1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-845)))) (-1638 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-845)))) (-2850 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-888 *3)) (-4 *3 (-845)))))
+(-13 (-845) (-1033 (-666 |#1|)) (-10 -8 (-15 (-2294) ($) -1497) (-15 -4053 ((-814 |#1|) $)) (-15 -4053 ($ |#1|)) (-15 -1421 ((-666 |#1|) $)) (-15 -3641 ((-766) $)) (-15 -2174 ((-639 (-666 |#1|)) $)) (-15 -1434 ($ $)) (-15 -1638 ((-112) $)) (-15 -2850 ((-639 |#1|) $))))
+((-3507 ((|#1| |#1| |#1|) 19)))
+(((-889 |#1| |#2|) (-10 -7 (-15 -3507 (|#1| |#1| |#1|))) (-1232 |#2|) (-1044)) (T -889))
+((-3507 (*1 *2 *2 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-889 *2 *3)) (-4 *2 (-1232 *3)))))
+(-10 -7 (-15 -3507 (|#1| |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-1806 (((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 14)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1727 (((-1030) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 13)) (-1733 (((-112) $ $) 6)))
(((-890) (-139)) (T -890))
-((-2172 (*1 *2 *3 *4) (-12 (-4 *1 (-890)) (-5 *3 (-1056)) (-5 *4 (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) (-5 *2 (-2 (|:| -2172 (-378)) (|:| |explanations| (-1150)))))) (-2165 (*1 *2 *3) (-12 (-4 *1 (-890)) (-5 *3 (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) (-5 *2 (-1030)))))
-(-13 (-1092) (-10 -7 (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))))) (-15 -2165 ((-1030) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))))))
+((-1806 (*1 *2 *3 *4) (-12 (-4 *1 (-890)) (-5 *3 (-1056)) (-5 *4 (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) (-5 *2 (-2 (|:| -1806 (-378)) (|:| |explanations| (-1150)))))) (-1727 (*1 *2 *3) (-12 (-4 *1 (-890)) (-5 *3 (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) (-5 *2 (-1030)))))
+(-13 (-1092) (-10 -7 (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))) (-1056) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))))) (-15 -1727 ((-1030) (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-3483 ((|#1| |#1| (-766)) 24)) (-3701 (((-3 |#1| "failed") |#1| |#1|) 22)) (-2018 (((-3 (-2 (|:| -1588 |#1|) (|:| -1602 |#1|)) "failed") |#1| (-766) (-766)) 27) (((-639 |#1|) |#1|) 29)))
-(((-891 |#1| |#2|) (-10 -7 (-15 -2018 ((-639 |#1|) |#1|)) (-15 -2018 ((-3 (-2 (|:| -1588 |#1|) (|:| -1602 |#1|)) "failed") |#1| (-766) (-766))) (-15 -3701 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3483 (|#1| |#1| (-766)))) (-1232 |#2|) (-362)) (T -891))
-((-3483 (*1 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-362)) (-5 *1 (-891 *2 *4)) (-4 *2 (-1232 *4)))) (-3701 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-362)) (-5 *1 (-891 *2 *3)) (-4 *2 (-1232 *3)))) (-2018 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-766)) (-4 *5 (-362)) (-5 *2 (-2 (|:| -1588 *3) (|:| -1602 *3))) (-5 *1 (-891 *3 *5)) (-4 *3 (-1232 *5)))) (-2018 (*1 *2 *3) (-12 (-4 *4 (-362)) (-5 *2 (-639 *3)) (-5 *1 (-891 *3 *4)) (-4 *3 (-1232 *4)))))
-(-10 -7 (-15 -2018 ((-639 |#1|) |#1|)) (-15 -2018 ((-3 (-2 (|:| -1588 |#1|) (|:| -1602 |#1|)) "failed") |#1| (-766) (-766))) (-15 -3701 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3483 (|#1| |#1| (-766))))
-((-4351 (((-1030) (-378) (-378) (-378) (-378) (-766) (-766) (-639 (-315 (-378))) (-639 (-639 (-315 (-378)))) (-1150)) 96) (((-1030) (-378) (-378) (-378) (-378) (-766) (-766) (-639 (-315 (-378))) (-639 (-639 (-315 (-378)))) (-1150) (-224)) 91) (((-1030) (-893) (-1056)) 83) (((-1030) (-893)) 84)) (-2172 (((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-893) (-1056)) 59) (((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-893)) 61)))
-(((-892) (-10 -7 (-15 -4351 ((-1030) (-893))) (-15 -4351 ((-1030) (-893) (-1056))) (-15 -4351 ((-1030) (-378) (-378) (-378) (-378) (-766) (-766) (-639 (-315 (-378))) (-639 (-639 (-315 (-378)))) (-1150) (-224))) (-15 -4351 ((-1030) (-378) (-378) (-378) (-378) (-766) (-766) (-639 (-315 (-378))) (-639 (-639 (-315 (-378)))) (-1150))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-893))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-893) (-1056))))) (T -892))
-((-2172 (*1 *2 *3 *4) (-12 (-5 *3 (-893)) (-5 *4 (-1056)) (-5 *2 (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *1 (-892)))) (-2172 (*1 *2 *3) (-12 (-5 *3 (-893)) (-5 *2 (-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *1 (-892)))) (-4351 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-766)) (-5 *6 (-639 (-639 (-315 *3)))) (-5 *7 (-1150)) (-5 *5 (-639 (-315 (-378)))) (-5 *3 (-378)) (-5 *2 (-1030)) (-5 *1 (-892)))) (-4351 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-766)) (-5 *6 (-639 (-639 (-315 *3)))) (-5 *7 (-1150)) (-5 *8 (-224)) (-5 *5 (-639 (-315 (-378)))) (-5 *3 (-378)) (-5 *2 (-1030)) (-5 *1 (-892)))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-893)) (-5 *4 (-1056)) (-5 *2 (-1030)) (-5 *1 (-892)))) (-4351 (*1 *2 *3) (-12 (-5 *3 (-893)) (-5 *2 (-1030)) (-5 *1 (-892)))))
-(-10 -7 (-15 -4351 ((-1030) (-893))) (-15 -4351 ((-1030) (-893) (-1056))) (-15 -4351 ((-1030) (-378) (-378) (-378) (-378) (-766) (-766) (-639 (-315 (-378))) (-639 (-639 (-315 (-378)))) (-1150) (-224))) (-15 -4351 ((-1030) (-378) (-378) (-378) (-378) (-766) (-766) (-639 (-315 (-378))) (-639 (-639 (-315 (-378)))) (-1150))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-893))) (-15 -2172 ((-2 (|:| -2172 (-378)) (|:| -3254 (-1150)) (|:| |explanations| (-639 (-1150)))) (-893) (-1056))))
-((-4041 (((-112) $ $) NIL)) (-3961 (((-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))) $) 19)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 21) (($ (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 18)) (-1731 (((-112) $ $) NIL)))
-(((-893) (-13 (-1092) (-10 -8 (-15 -4054 ($ (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))))) (-15 -3961 ((-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))) $))))) (T -893))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) (-5 *1 (-893)))) (-3961 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) (-5 *1 (-893)))))
-(-13 (-1092) (-10 -8 (-15 -4054 ($ (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))))) (-15 -3961 ((-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))) $))))
-((-4029 (($ $ |#2|) NIL) (($ $ (-639 |#2|)) 10) (($ $ |#2| (-766)) 12) (($ $ (-639 |#2|) (-639 (-766))) 15)) (-3114 (($ $ |#2|) 16) (($ $ (-639 |#2|)) 18) (($ $ |#2| (-766)) 19) (($ $ (-639 |#2|) (-639 (-766))) 21)))
-(((-894 |#1| |#2|) (-10 -8 (-15 -3114 (|#1| |#1| (-639 |#2|) (-639 (-766)))) (-15 -3114 (|#1| |#1| |#2| (-766))) (-15 -3114 (|#1| |#1| (-639 |#2|))) (-15 -3114 (|#1| |#1| |#2|)) (-15 -4029 (|#1| |#1| (-639 |#2|) (-639 (-766)))) (-15 -4029 (|#1| |#1| |#2| (-766))) (-15 -4029 (|#1| |#1| (-639 |#2|))) (-15 -4029 (|#1| |#1| |#2|))) (-895 |#2|) (-1092)) (T -894))
-NIL
-(-10 -8 (-15 -3114 (|#1| |#1| (-639 |#2|) (-639 (-766)))) (-15 -3114 (|#1| |#1| |#2| (-766))) (-15 -3114 (|#1| |#1| (-639 |#2|))) (-15 -3114 (|#1| |#1| |#2|)) (-15 -4029 (|#1| |#1| (-639 |#2|) (-639 (-766)))) (-15 -4029 (|#1| |#1| |#2| (-766))) (-15 -4029 (|#1| |#1| (-639 |#2|))) (-15 -4029 (|#1| |#1| |#2|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4029 (($ $ |#1|) 42) (($ $ (-639 |#1|)) 41) (($ $ |#1| (-766)) 40) (($ $ (-639 |#1|) (-639 (-766))) 39)) (-4054 (((-857) $) 11) (($ (-562)) 29)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ |#1|) 38) (($ $ (-639 |#1|)) 37) (($ $ |#1| (-766)) 36) (($ $ (-639 |#1|) (-639 (-766))) 35)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-2367 ((|#1| |#1| (-766)) 24)) (-3850 (((-3 |#1| "failed") |#1| |#1|) 22)) (-3758 (((-3 (-2 (|:| -1589 |#1|) (|:| -1603 |#1|)) "failed") |#1| (-766) (-766)) 27) (((-639 |#1|) |#1|) 29)))
+(((-891 |#1| |#2|) (-10 -7 (-15 -3758 ((-639 |#1|) |#1|)) (-15 -3758 ((-3 (-2 (|:| -1589 |#1|) (|:| -1603 |#1|)) "failed") |#1| (-766) (-766))) (-15 -3850 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2367 (|#1| |#1| (-766)))) (-1232 |#2|) (-362)) (T -891))
+((-2367 (*1 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-362)) (-5 *1 (-891 *2 *4)) (-4 *2 (-1232 *4)))) (-3850 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-362)) (-5 *1 (-891 *2 *3)) (-4 *2 (-1232 *3)))) (-3758 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-766)) (-4 *5 (-362)) (-5 *2 (-2 (|:| -1589 *3) (|:| -1603 *3))) (-5 *1 (-891 *3 *5)) (-4 *3 (-1232 *5)))) (-3758 (*1 *2 *3) (-12 (-4 *4 (-362)) (-5 *2 (-639 *3)) (-5 *1 (-891 *3 *4)) (-4 *3 (-1232 *4)))))
+(-10 -7 (-15 -3758 ((-639 |#1|) |#1|)) (-15 -3758 ((-3 (-2 (|:| -1589 |#1|) (|:| -1603 |#1|)) "failed") |#1| (-766) (-766))) (-15 -3850 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2367 (|#1| |#1| (-766))))
+((-3888 (((-1030) (-378) (-378) (-378) (-378) (-766) (-766) (-639 (-315 (-378))) (-639 (-639 (-315 (-378)))) (-1150)) 96) (((-1030) (-378) (-378) (-378) (-378) (-766) (-766) (-639 (-315 (-378))) (-639 (-639 (-315 (-378)))) (-1150) (-224)) 91) (((-1030) (-893) (-1056)) 83) (((-1030) (-893)) 84)) (-1806 (((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-893) (-1056)) 59) (((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-893)) 61)))
+(((-892) (-10 -7 (-15 -3888 ((-1030) (-893))) (-15 -3888 ((-1030) (-893) (-1056))) (-15 -3888 ((-1030) (-378) (-378) (-378) (-378) (-766) (-766) (-639 (-315 (-378))) (-639 (-639 (-315 (-378)))) (-1150) (-224))) (-15 -3888 ((-1030) (-378) (-378) (-378) (-378) (-766) (-766) (-639 (-315 (-378))) (-639 (-639 (-315 (-378)))) (-1150))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-893))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-893) (-1056))))) (T -892))
+((-1806 (*1 *2 *3 *4) (-12 (-5 *3 (-893)) (-5 *4 (-1056)) (-5 *2 (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *1 (-892)))) (-1806 (*1 *2 *3) (-12 (-5 *3 (-893)) (-5 *2 (-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150))))) (-5 *1 (-892)))) (-3888 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-766)) (-5 *6 (-639 (-639 (-315 *3)))) (-5 *7 (-1150)) (-5 *5 (-639 (-315 (-378)))) (-5 *3 (-378)) (-5 *2 (-1030)) (-5 *1 (-892)))) (-3888 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-766)) (-5 *6 (-639 (-639 (-315 *3)))) (-5 *7 (-1150)) (-5 *8 (-224)) (-5 *5 (-639 (-315 (-378)))) (-5 *3 (-378)) (-5 *2 (-1030)) (-5 *1 (-892)))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-893)) (-5 *4 (-1056)) (-5 *2 (-1030)) (-5 *1 (-892)))) (-3888 (*1 *2 *3) (-12 (-5 *3 (-893)) (-5 *2 (-1030)) (-5 *1 (-892)))))
+(-10 -7 (-15 -3888 ((-1030) (-893))) (-15 -3888 ((-1030) (-893) (-1056))) (-15 -3888 ((-1030) (-378) (-378) (-378) (-378) (-766) (-766) (-639 (-315 (-378))) (-639 (-639 (-315 (-378)))) (-1150) (-224))) (-15 -3888 ((-1030) (-378) (-378) (-378) (-378) (-766) (-766) (-639 (-315 (-378))) (-639 (-639 (-315 (-378)))) (-1150))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-893))) (-15 -1806 ((-2 (|:| -1806 (-378)) (|:| -3253 (-1150)) (|:| |explanations| (-639 (-1150)))) (-893) (-1056))))
+((-4041 (((-112) $ $) NIL)) (-3960 (((-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))) $) 19)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 21) (($ (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) 18)) (-1733 (((-112) $ $) NIL)))
+(((-893) (-13 (-1092) (-10 -8 (-15 -4053 ($ (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))))) (-15 -3960 ((-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))) $))))) (T -893))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) (-5 *1 (-893)))) (-3960 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224)))) (-5 *1 (-893)))))
+(-13 (-1092) (-10 -8 (-15 -4053 ($ (-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))))) (-15 -3960 ((-2 (|:| |pde| (-639 (-315 (-224)))) (|:| |constraints| (-639 (-2 (|:| |start| (-224)) (|:| |finish| (-224)) (|:| |grid| (-766)) (|:| |boundaryType| (-562)) (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224)))))) (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150)) (|:| |tol| (-224))) $))))
+((-4029 (($ $ |#2|) NIL) (($ $ (-639 |#2|)) 10) (($ $ |#2| (-766)) 12) (($ $ (-639 |#2|) (-639 (-766))) 15)) (-3113 (($ $ |#2|) 16) (($ $ (-639 |#2|)) 18) (($ $ |#2| (-766)) 19) (($ $ (-639 |#2|) (-639 (-766))) 21)))
+(((-894 |#1| |#2|) (-10 -8 (-15 -3113 (|#1| |#1| (-639 |#2|) (-639 (-766)))) (-15 -3113 (|#1| |#1| |#2| (-766))) (-15 -3113 (|#1| |#1| (-639 |#2|))) (-15 -3113 (|#1| |#1| |#2|)) (-15 -4029 (|#1| |#1| (-639 |#2|) (-639 (-766)))) (-15 -4029 (|#1| |#1| |#2| (-766))) (-15 -4029 (|#1| |#1| (-639 |#2|))) (-15 -4029 (|#1| |#1| |#2|))) (-895 |#2|) (-1092)) (T -894))
+NIL
+(-10 -8 (-15 -3113 (|#1| |#1| (-639 |#2|) (-639 (-766)))) (-15 -3113 (|#1| |#1| |#2| (-766))) (-15 -3113 (|#1| |#1| (-639 |#2|))) (-15 -3113 (|#1| |#1| |#2|)) (-15 -4029 (|#1| |#1| (-639 |#2|) (-639 (-766)))) (-15 -4029 (|#1| |#1| |#2| (-766))) (-15 -4029 (|#1| |#1| (-639 |#2|))) (-15 -4029 (|#1| |#1| |#2|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4029 (($ $ |#1|) 42) (($ $ (-639 |#1|)) 41) (($ $ |#1| (-766)) 40) (($ $ (-639 |#1|) (-639 (-766))) 39)) (-4053 (((-857) $) 11) (($ (-562)) 29)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ |#1|) 38) (($ $ (-639 |#1|)) 37) (($ $ |#1| (-766)) 36) (($ $ (-639 |#1|) (-639 (-766))) 35)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-895 |#1|) (-139) (-1092)) (T -895))
-((-4029 (*1 *1 *1 *2) (-12 (-4 *1 (-895 *2)) (-4 *2 (-1092)))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *1 (-895 *3)) (-4 *3 (-1092)))) (-4029 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-895 *2)) (-4 *2 (-1092)))) (-4029 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *4)) (-5 *3 (-639 (-766))) (-4 *1 (-895 *4)) (-4 *4 (-1092)))) (-3114 (*1 *1 *1 *2) (-12 (-4 *1 (-895 *2)) (-4 *2 (-1092)))) (-3114 (*1 *1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *1 (-895 *3)) (-4 *3 (-1092)))) (-3114 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-895 *2)) (-4 *2 (-1092)))) (-3114 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *4)) (-5 *3 (-639 (-766))) (-4 *1 (-895 *4)) (-4 *4 (-1092)))))
-(-13 (-1044) (-10 -8 (-15 -4029 ($ $ |t#1|)) (-15 -4029 ($ $ (-639 |t#1|))) (-15 -4029 ($ $ |t#1| (-766))) (-15 -4029 ($ $ (-639 |t#1|) (-639 (-766)))) (-15 -3114 ($ $ |t#1|)) (-15 -3114 ($ $ (-639 |t#1|))) (-15 -3114 ($ $ |t#1| (-766))) (-15 -3114 ($ $ (-639 |t#1|) (-639 (-766))))))
+((-4029 (*1 *1 *1 *2) (-12 (-4 *1 (-895 *2)) (-4 *2 (-1092)))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *1 (-895 *3)) (-4 *3 (-1092)))) (-4029 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-895 *2)) (-4 *2 (-1092)))) (-4029 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *4)) (-5 *3 (-639 (-766))) (-4 *1 (-895 *4)) (-4 *4 (-1092)))) (-3113 (*1 *1 *1 *2) (-12 (-4 *1 (-895 *2)) (-4 *2 (-1092)))) (-3113 (*1 *1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *1 (-895 *3)) (-4 *3 (-1092)))) (-3113 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-895 *2)) (-4 *2 (-1092)))) (-3113 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *4)) (-5 *3 (-639 (-766))) (-4 *1 (-895 *4)) (-4 *4 (-1092)))))
+(-13 (-1044) (-10 -8 (-15 -4029 ($ $ |t#1|)) (-15 -4029 ($ $ (-639 |t#1|))) (-15 -4029 ($ $ |t#1| (-766))) (-15 -4029 ($ $ (-639 |t#1|) (-639 (-766)))) (-15 -3113 ($ $ |t#1|)) (-15 -3113 ($ $ (-639 |t#1|))) (-15 -3113 ($ $ |t#1| (-766))) (-15 -3113 ($ $ (-639 |t#1|) (-639 (-766))))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-642 $) . T) ((-721) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2534 ((|#1| $) 26)) (-4336 (((-112) $ (-766)) NIL)) (-1512 ((|#1| $ |#1|) NIL (|has| $ (-6 -4403)))) (-1718 (($ $ $) NIL (|has| $ (-6 -4403)))) (-3225 (($ $ $) NIL (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4403))) (($ $ "left" $) NIL (|has| $ (-6 -4403))) (($ $ "right" $) NIL (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) NIL (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-1602 (($ $) 25)) (-1672 (($ |#1|) 12) (($ $ $) 17)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) NIL)) (-4379 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-1588 (($ $) 23)) (-4007 (((-639 |#1|) $) NIL)) (-3449 (((-112) $) 20)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2568 (((-562) $ $) NIL)) (-2424 (((-112) $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-1193 |#1|) $) 9) (((-857) $) 29 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) NIL)) (-4055 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 21 (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2533 ((|#1| $) 26)) (-3735 (((-112) $ (-766)) NIL)) (-2677 ((|#1| $ |#1|) NIL (|has| $ (-6 -4404)))) (-3853 (($ $ $) NIL (|has| $ (-6 -4404)))) (-2861 (($ $ $) NIL (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4404))) (($ $ "left" $) NIL (|has| $ (-6 -4404))) (($ $ "right" $) NIL (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) NIL (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-1603 (($ $) 25)) (-1672 (($ |#1|) 12) (($ $ $) 17)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) NIL)) (-4188 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-1589 (($ $) 23)) (-4008 (((-639 |#1|) $) NIL)) (-3179 (((-112) $) 20)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1423 (((-562) $ $) NIL)) (-2473 (((-112) $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-1193 |#1|) $) 9) (((-857) $) 29 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) NIL)) (-2985 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 21 (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-896 |#1|) (-13 (-119 |#1|) (-609 (-1193 |#1|)) (-10 -8 (-15 -1672 ($ |#1|)) (-15 -1672 ($ $ $)))) (-1092)) (T -896))
((-1672 (*1 *1 *2) (-12 (-5 *1 (-896 *2)) (-4 *2 (-1092)))) (-1672 (*1 *1 *1 *1) (-12 (-5 *1 (-896 *2)) (-4 *2 (-1092)))))
(-13 (-119 |#1|) (-609 (-1193 |#1|)) (-10 -8 (-15 -1672 ($ |#1|)) (-15 -1672 ($ $ $))))
-((-2007 ((|#2| (-1134 |#1| |#2|)) 41)))
-(((-897 |#1| |#2|) (-10 -7 (-15 -2007 (|#2| (-1134 |#1| |#2|)))) (-916) (-13 (-1044) (-10 -7 (-6 (-4404 "*"))))) (T -897))
-((-2007 (*1 *2 *3) (-12 (-5 *3 (-1134 *4 *2)) (-14 *4 (-916)) (-4 *2 (-13 (-1044) (-10 -7 (-6 (-4404 "*"))))) (-5 *1 (-897 *4 *2)))))
-(-10 -7 (-15 -2007 (|#2| (-1134 |#1| |#2|))))
-((-4041 (((-112) $ $) 7)) (-1800 (($) 18 T CONST)) (-3668 (((-3 $ "failed") $) 15)) (-2772 (((-1094 |#1|) $ |#1|) 32)) (-1957 (((-112) $) 17)) (-1551 (($ $ $) 30 (-4037 (|has| |#1| (-845)) (|has| |#1| (-367))))) (-2993 (($ $ $) 29 (-4037 (|has| |#1| (-845)) (|has| |#1| (-367))))) (-2913 (((-1150) $) 9)) (-1525 (($ $) 24)) (-1709 (((-1112) $) 10)) (-1433 ((|#1| $ |#1|) 34)) (-2343 ((|#1| $ |#1|) 33)) (-1695 (($ (-639 (-639 |#1|))) 35)) (-3282 (($ (-639 |#1|)) 36)) (-3665 (($ $ $) 21)) (-1911 (($ $ $) 20)) (-4054 (((-857) $) 11)) (-2294 (($) 19 T CONST)) (-1798 (((-112) $ $) 27 (-4037 (|has| |#1| (-845)) (|has| |#1| (-367))))) (-1772 (((-112) $ $) 26 (-4037 (|has| |#1| (-845)) (|has| |#1| (-367))))) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 28 (-4037 (|has| |#1| (-845)) (|has| |#1| (-367))))) (-1759 (((-112) $ $) 31)) (-1859 (($ $ $) 23)) (** (($ $ (-916)) 13) (($ $ (-766)) 16) (($ $ (-562)) 22)) (* (($ $ $) 14)))
+((-3634 ((|#2| (-1134 |#1| |#2|)) 41)))
+(((-897 |#1| |#2|) (-10 -7 (-15 -3634 (|#2| (-1134 |#1| |#2|)))) (-916) (-13 (-1044) (-10 -7 (-6 (-4405 "*"))))) (T -897))
+((-3634 (*1 *2 *3) (-12 (-5 *3 (-1134 *4 *2)) (-14 *4 (-916)) (-4 *2 (-13 (-1044) (-10 -7 (-6 (-4405 "*"))))) (-5 *1 (-897 *4 *2)))))
+(-10 -7 (-15 -3634 (|#2| (-1134 |#1| |#2|))))
+((-4041 (((-112) $ $) 7)) (-3329 (($) 18 T CONST)) (-1694 (((-3 $ "failed") $) 15)) (-2872 (((-1094 |#1|) $ |#1|) 32)) (-4367 (((-112) $) 17)) (-1551 (($ $ $) 30 (-4037 (|has| |#1| (-845)) (|has| |#1| (-367))))) (-2993 (($ $ $) 29 (-4037 (|has| |#1| (-845)) (|has| |#1| (-367))))) (-3696 (((-1150) $) 9)) (-1525 (($ $) 24)) (-1709 (((-1112) $) 10)) (-1433 ((|#1| $ |#1|) 34)) (-2343 ((|#1| $ |#1|) 33)) (-3639 (($ (-639 (-639 |#1|))) 35)) (-2263 (($ (-639 |#1|)) 36)) (-1660 (($ $ $) 21)) (-2114 (($ $ $) 20)) (-4053 (((-857) $) 11)) (-2294 (($) 19 T CONST)) (-1798 (((-112) $ $) 27 (-4037 (|has| |#1| (-845)) (|has| |#1| (-367))))) (-1771 (((-112) $ $) 26 (-4037 (|has| |#1| (-845)) (|has| |#1| (-367))))) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 28 (-4037 (|has| |#1| (-845)) (|has| |#1| (-367))))) (-1761 (((-112) $ $) 31)) (-1859 (($ $ $) 23)) (** (($ $ (-916)) 13) (($ $ (-766)) 16) (($ $ (-562)) 22)) (* (($ $ $) 14)))
(((-898 |#1|) (-139) (-1092)) (T -898))
-((-3282 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-898 *3)))) (-1695 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-4 *1 (-898 *3)))) (-1433 (*1 *2 *1 *2) (-12 (-4 *1 (-898 *2)) (-4 *2 (-1092)))) (-2343 (*1 *2 *1 *2) (-12 (-4 *1 (-898 *2)) (-4 *2 (-1092)))) (-2772 (*1 *2 *1 *3) (-12 (-4 *1 (-898 *3)) (-4 *3 (-1092)) (-5 *2 (-1094 *3)))) (-1759 (*1 *2 *1 *1) (-12 (-4 *1 (-898 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))))
-(-13 (-472) (-10 -8 (-15 -3282 ($ (-639 |t#1|))) (-15 -1695 ($ (-639 (-639 |t#1|)))) (-15 -1433 (|t#1| $ |t#1|)) (-15 -2343 (|t#1| $ |t#1|)) (-15 -2772 ((-1094 |t#1|) $ |t#1|)) (-15 -1759 ((-112) $ $)) (IF (|has| |t#1| (-845)) (-6 (-845)) |%noBranch|) (IF (|has| |t#1| (-367)) (-6 (-845)) |%noBranch|)))
+((-2263 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-898 *3)))) (-3639 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-4 *1 (-898 *3)))) (-1433 (*1 *2 *1 *2) (-12 (-4 *1 (-898 *2)) (-4 *2 (-1092)))) (-2343 (*1 *2 *1 *2) (-12 (-4 *1 (-898 *2)) (-4 *2 (-1092)))) (-2872 (*1 *2 *1 *3) (-12 (-4 *1 (-898 *3)) (-4 *3 (-1092)) (-5 *2 (-1094 *3)))) (-1761 (*1 *2 *1 *1) (-12 (-4 *1 (-898 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))))
+(-13 (-472) (-10 -8 (-15 -2263 ($ (-639 |t#1|))) (-15 -3639 ($ (-639 (-639 |t#1|)))) (-15 -1433 (|t#1| $ |t#1|)) (-15 -2343 (|t#1| $ |t#1|)) (-15 -2872 ((-1094 |t#1|) $ |t#1|)) (-15 -1761 ((-112) $ $)) (IF (|has| |t#1| (-845)) (-6 (-845)) |%noBranch|) (IF (|has| |t#1| (-367)) (-6 (-845)) |%noBranch|)))
(((-102) . T) ((-609 (-857)) . T) ((-472) . T) ((-721) . T) ((-845) -4037 (|has| |#1| (-845)) (|has| |#1| (-367))) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-2719 (((-639 (-639 (-766))) $) 107)) (-4209 (((-639 (-766)) (-900 |#1|) $) 129)) (-3385 (((-639 (-766)) (-900 |#1|) $) 130)) (-2329 (((-639 (-900 |#1|)) $) 97)) (-1448 (((-900 |#1|) $ (-562)) 102) (((-900 |#1|) $) 103)) (-4362 (($ (-639 (-900 |#1|))) 109)) (-1900 (((-766) $) 104)) (-2962 (((-1094 (-1094 |#1|)) $) 127)) (-2772 (((-1094 |#1|) $ |#1|) 120) (((-1094 (-1094 |#1|)) $ (-1094 |#1|)) 138) (((-1094 (-639 |#1|)) $ (-639 |#1|)) 141)) (-3565 (((-1094 |#1|) $) 100)) (-1669 (((-112) (-900 |#1|) $) 91)) (-2913 (((-1150) $) NIL)) (-1808 (((-1261) $) 94) (((-1261) $ (-562) (-562)) 142)) (-1709 (((-1112) $) NIL)) (-3795 (((-639 (-900 |#1|)) $) 95)) (-2343 (((-900 |#1|) $ (-766)) 98)) (-3598 (((-766) $) 105)) (-4054 (((-857) $) 118) (((-639 (-900 |#1|)) $) 23) (($ (-639 (-900 |#1|))) 108)) (-3241 (((-639 |#1|) $) 106)) (-1731 (((-112) $ $) 135)) (-1785 (((-112) $ $) 133)) (-1759 (((-112) $ $) 132)))
-(((-899 |#1|) (-13 (-1092) (-10 -8 (-15 -4054 ((-639 (-900 |#1|)) $)) (-15 -3795 ((-639 (-900 |#1|)) $)) (-15 -2343 ((-900 |#1|) $ (-766))) (-15 -1448 ((-900 |#1|) $ (-562))) (-15 -1448 ((-900 |#1|) $)) (-15 -1900 ((-766) $)) (-15 -3598 ((-766) $)) (-15 -3241 ((-639 |#1|) $)) (-15 -2329 ((-639 (-900 |#1|)) $)) (-15 -2719 ((-639 (-639 (-766))) $)) (-15 -4054 ($ (-639 (-900 |#1|)))) (-15 -4362 ($ (-639 (-900 |#1|)))) (-15 -2772 ((-1094 |#1|) $ |#1|)) (-15 -2962 ((-1094 (-1094 |#1|)) $)) (-15 -2772 ((-1094 (-1094 |#1|)) $ (-1094 |#1|))) (-15 -2772 ((-1094 (-639 |#1|)) $ (-639 |#1|))) (-15 -1669 ((-112) (-900 |#1|) $)) (-15 -4209 ((-639 (-766)) (-900 |#1|) $)) (-15 -3385 ((-639 (-766)) (-900 |#1|) $)) (-15 -3565 ((-1094 |#1|) $)) (-15 -1759 ((-112) $ $)) (-15 -1785 ((-112) $ $)) (-15 -1808 ((-1261) $)) (-15 -1808 ((-1261) $ (-562) (-562))))) (-1092)) (T -899))
-((-4054 (*1 *2 *1) (-12 (-5 *2 (-639 (-900 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-3795 (*1 *2 *1) (-12 (-5 *2 (-639 (-900 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *2 (-900 *4)) (-5 *1 (-899 *4)) (-4 *4 (-1092)))) (-1448 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-900 *4)) (-5 *1 (-899 *4)) (-4 *4 (-1092)))) (-1448 (*1 *2 *1) (-12 (-5 *2 (-900 *3)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-1900 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-3598 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-3241 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-2329 (*1 *2 *1) (-12 (-5 *2 (-639 (-900 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-2719 (*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-766)))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-900 *3))) (-4 *3 (-1092)) (-5 *1 (-899 *3)))) (-4362 (*1 *1 *2) (-12 (-5 *2 (-639 (-900 *3))) (-4 *3 (-1092)) (-5 *1 (-899 *3)))) (-2772 (*1 *2 *1 *3) (-12 (-5 *2 (-1094 *3)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-2962 (*1 *2 *1) (-12 (-5 *2 (-1094 (-1094 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-2772 (*1 *2 *1 *3) (-12 (-4 *4 (-1092)) (-5 *2 (-1094 (-1094 *4))) (-5 *1 (-899 *4)) (-5 *3 (-1094 *4)))) (-2772 (*1 *2 *1 *3) (-12 (-4 *4 (-1092)) (-5 *2 (-1094 (-639 *4))) (-5 *1 (-899 *4)) (-5 *3 (-639 *4)))) (-1669 (*1 *2 *3 *1) (-12 (-5 *3 (-900 *4)) (-4 *4 (-1092)) (-5 *2 (-112)) (-5 *1 (-899 *4)))) (-4209 (*1 *2 *3 *1) (-12 (-5 *3 (-900 *4)) (-4 *4 (-1092)) (-5 *2 (-639 (-766))) (-5 *1 (-899 *4)))) (-3385 (*1 *2 *3 *1) (-12 (-5 *3 (-900 *4)) (-4 *4 (-1092)) (-5 *2 (-639 (-766))) (-5 *1 (-899 *4)))) (-3565 (*1 *2 *1) (-12 (-5 *2 (-1094 *3)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-1759 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-1785 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-1808 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-1808 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-899 *4)) (-4 *4 (-1092)))))
-(-13 (-1092) (-10 -8 (-15 -4054 ((-639 (-900 |#1|)) $)) (-15 -3795 ((-639 (-900 |#1|)) $)) (-15 -2343 ((-900 |#1|) $ (-766))) (-15 -1448 ((-900 |#1|) $ (-562))) (-15 -1448 ((-900 |#1|) $)) (-15 -1900 ((-766) $)) (-15 -3598 ((-766) $)) (-15 -3241 ((-639 |#1|) $)) (-15 -2329 ((-639 (-900 |#1|)) $)) (-15 -2719 ((-639 (-639 (-766))) $)) (-15 -4054 ($ (-639 (-900 |#1|)))) (-15 -4362 ($ (-639 (-900 |#1|)))) (-15 -2772 ((-1094 |#1|) $ |#1|)) (-15 -2962 ((-1094 (-1094 |#1|)) $)) (-15 -2772 ((-1094 (-1094 |#1|)) $ (-1094 |#1|))) (-15 -2772 ((-1094 (-639 |#1|)) $ (-639 |#1|))) (-15 -1669 ((-112) (-900 |#1|) $)) (-15 -4209 ((-639 (-766)) (-900 |#1|) $)) (-15 -3385 ((-639 (-766)) (-900 |#1|) $)) (-15 -3565 ((-1094 |#1|) $)) (-15 -1759 ((-112) $ $)) (-15 -1785 ((-112) $ $)) (-15 -1808 ((-1261) $)) (-15 -1808 ((-1261) $ (-562) (-562)))))
-((-4041 (((-112) $ $) NIL)) (-1395 (((-639 $) (-639 $)) 77)) (-2277 (((-562) $) 60)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) NIL)) (-1900 (((-766) $) 58)) (-2772 (((-1094 |#1|) $ |#1|) 49)) (-1957 (((-112) $) NIL)) (-3130 (((-112) $) 63)) (-3453 (((-766) $) 61)) (-3565 (((-1094 |#1|) $) 42)) (-1551 (($ $ $) NIL (-4037 (|has| |#1| (-367)) (|has| |#1| (-845))))) (-2993 (($ $ $) NIL (-4037 (|has| |#1| (-367)) (|has| |#1| (-845))))) (-3457 (((-2 (|:| |preimage| (-639 |#1|)) (|:| |image| (-639 |#1|))) $) 37)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 93)) (-1709 (((-1112) $) NIL)) (-3608 (((-1094 |#1|) $) 100 (|has| |#1| (-367)))) (-3803 (((-112) $) 59)) (-1433 ((|#1| $ |#1|) 47)) (-2343 ((|#1| $ |#1|) 94)) (-3598 (((-766) $) 44)) (-1695 (($ (-639 (-639 |#1|))) 85)) (-2058 (((-966) $) 53)) (-3282 (($ (-639 |#1|)) 22)) (-3665 (($ $ $) NIL)) (-1911 (($ $ $) NIL)) (-3211 (($ (-639 (-639 |#1|))) 39)) (-3534 (($ (-639 (-639 |#1|))) 88)) (-3727 (($ (-639 |#1|)) 96)) (-4054 (((-857) $) 84) (($ (-639 (-639 |#1|))) 66) (($ (-639 |#1|)) 67)) (-2294 (($) 17 T CONST)) (-1798 (((-112) $ $) NIL (-4037 (|has| |#1| (-367)) (|has| |#1| (-845))))) (-1772 (((-112) $ $) NIL (-4037 (|has| |#1| (-367)) (|has| |#1| (-845))))) (-1731 (((-112) $ $) 45)) (-1785 (((-112) $ $) NIL (-4037 (|has| |#1| (-367)) (|has| |#1| (-845))))) (-1759 (((-112) $ $) 65)) (-1859 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ $ $) 23)))
-(((-900 |#1|) (-13 (-898 |#1|) (-10 -8 (-15 -3457 ((-2 (|:| |preimage| (-639 |#1|)) (|:| |image| (-639 |#1|))) $)) (-15 -3211 ($ (-639 (-639 |#1|)))) (-15 -4054 ($ (-639 (-639 |#1|)))) (-15 -4054 ($ (-639 |#1|))) (-15 -3534 ($ (-639 (-639 |#1|)))) (-15 -3598 ((-766) $)) (-15 -3565 ((-1094 |#1|) $)) (-15 -2058 ((-966) $)) (-15 -1900 ((-766) $)) (-15 -3453 ((-766) $)) (-15 -2277 ((-562) $)) (-15 -3803 ((-112) $)) (-15 -3130 ((-112) $)) (-15 -1395 ((-639 $) (-639 $))) (IF (|has| |#1| (-367)) (-15 -3608 ((-1094 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-544)) (-15 -3727 ($ (-639 |#1|))) (IF (|has| |#1| (-367)) (-15 -3727 ($ (-639 |#1|))) |%noBranch|)))) (-1092)) (T -900))
-((-3457 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-639 *3)) (|:| |image| (-639 *3)))) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-3211 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-900 *3)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-900 *3)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-900 *3)))) (-3534 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-900 *3)))) (-3598 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-3565 (*1 *2 *1) (-12 (-5 *2 (-1094 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-2058 (*1 *2 *1) (-12 (-5 *2 (-966)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-1900 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-3453 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-2277 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-3803 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-3130 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-1395 (*1 *2 *2) (-12 (-5 *2 (-639 (-900 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-3608 (*1 *2 *1) (-12 (-5 *2 (-1094 *3)) (-5 *1 (-900 *3)) (-4 *3 (-367)) (-4 *3 (-1092)))) (-3727 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-900 *3)))))
-(-13 (-898 |#1|) (-10 -8 (-15 -3457 ((-2 (|:| |preimage| (-639 |#1|)) (|:| |image| (-639 |#1|))) $)) (-15 -3211 ($ (-639 (-639 |#1|)))) (-15 -4054 ($ (-639 (-639 |#1|)))) (-15 -4054 ($ (-639 |#1|))) (-15 -3534 ($ (-639 (-639 |#1|)))) (-15 -3598 ((-766) $)) (-15 -3565 ((-1094 |#1|) $)) (-15 -2058 ((-966) $)) (-15 -1900 ((-766) $)) (-15 -3453 ((-766) $)) (-15 -2277 ((-562) $)) (-15 -3803 ((-112) $)) (-15 -3130 ((-112) $)) (-15 -1395 ((-639 $) (-639 $))) (IF (|has| |#1| (-367)) (-15 -3608 ((-1094 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-544)) (-15 -3727 ($ (-639 |#1|))) (IF (|has| |#1| (-367)) (-15 -3727 ($ (-639 |#1|))) |%noBranch|))))
-((-2312 (((-3 (-639 (-1164 |#4|)) "failed") (-639 (-1164 |#4|)) (-1164 |#4|)) 127)) (-4348 ((|#1|) 76)) (-2727 (((-417 (-1164 |#4|)) (-1164 |#4|)) 136)) (-4133 (((-417 (-1164 |#4|)) (-639 |#3|) (-1164 |#4|)) 68)) (-2119 (((-417 (-1164 |#4|)) (-1164 |#4|)) 146)) (-1974 (((-3 (-639 (-1164 |#4|)) "failed") (-639 (-1164 |#4|)) (-1164 |#4|) |#3|) 91)))
-(((-901 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2312 ((-3 (-639 (-1164 |#4|)) "failed") (-639 (-1164 |#4|)) (-1164 |#4|))) (-15 -2119 ((-417 (-1164 |#4|)) (-1164 |#4|))) (-15 -2727 ((-417 (-1164 |#4|)) (-1164 |#4|))) (-15 -4348 (|#1|)) (-15 -1974 ((-3 (-639 (-1164 |#4|)) "failed") (-639 (-1164 |#4|)) (-1164 |#4|) |#3|)) (-15 -4133 ((-417 (-1164 |#4|)) (-639 |#3|) (-1164 |#4|)))) (-904) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -901))
-((-4133 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *7)) (-4 *7 (-845)) (-4 *5 (-904)) (-4 *6 (-788)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-417 (-1164 *8))) (-5 *1 (-901 *5 *6 *7 *8)) (-5 *4 (-1164 *8)))) (-1974 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-639 (-1164 *7))) (-5 *3 (-1164 *7)) (-4 *7 (-944 *5 *6 *4)) (-4 *5 (-904)) (-4 *6 (-788)) (-4 *4 (-845)) (-5 *1 (-901 *5 *6 *4 *7)))) (-4348 (*1 *2) (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-904)) (-5 *1 (-901 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (-2727 (*1 *2 *3) (-12 (-4 *4 (-904)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-417 (-1164 *7))) (-5 *1 (-901 *4 *5 *6 *7)) (-5 *3 (-1164 *7)))) (-2119 (*1 *2 *3) (-12 (-4 *4 (-904)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-417 (-1164 *7))) (-5 *1 (-901 *4 *5 *6 *7)) (-5 *3 (-1164 *7)))) (-2312 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-1164 *7))) (-5 *3 (-1164 *7)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-904)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-901 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2312 ((-3 (-639 (-1164 |#4|)) "failed") (-639 (-1164 |#4|)) (-1164 |#4|))) (-15 -2119 ((-417 (-1164 |#4|)) (-1164 |#4|))) (-15 -2727 ((-417 (-1164 |#4|)) (-1164 |#4|))) (-15 -4348 (|#1|)) (-15 -1974 ((-3 (-639 (-1164 |#4|)) "failed") (-639 (-1164 |#4|)) (-1164 |#4|) |#3|)) (-15 -4133 ((-417 (-1164 |#4|)) (-639 |#3|) (-1164 |#4|))))
-((-2312 (((-3 (-639 (-1164 |#2|)) "failed") (-639 (-1164 |#2|)) (-1164 |#2|)) 36)) (-4348 ((|#1|) 53)) (-2727 (((-417 (-1164 |#2|)) (-1164 |#2|)) 101)) (-4133 (((-417 (-1164 |#2|)) (-1164 |#2|)) 89)) (-2119 (((-417 (-1164 |#2|)) (-1164 |#2|)) 112)))
-(((-902 |#1| |#2|) (-10 -7 (-15 -2312 ((-3 (-639 (-1164 |#2|)) "failed") (-639 (-1164 |#2|)) (-1164 |#2|))) (-15 -2119 ((-417 (-1164 |#2|)) (-1164 |#2|))) (-15 -2727 ((-417 (-1164 |#2|)) (-1164 |#2|))) (-15 -4348 (|#1|)) (-15 -4133 ((-417 (-1164 |#2|)) (-1164 |#2|)))) (-904) (-1232 |#1|)) (T -902))
-((-4133 (*1 *2 *3) (-12 (-4 *4 (-904)) (-4 *5 (-1232 *4)) (-5 *2 (-417 (-1164 *5))) (-5 *1 (-902 *4 *5)) (-5 *3 (-1164 *5)))) (-4348 (*1 *2) (-12 (-4 *2 (-904)) (-5 *1 (-902 *2 *3)) (-4 *3 (-1232 *2)))) (-2727 (*1 *2 *3) (-12 (-4 *4 (-904)) (-4 *5 (-1232 *4)) (-5 *2 (-417 (-1164 *5))) (-5 *1 (-902 *4 *5)) (-5 *3 (-1164 *5)))) (-2119 (*1 *2 *3) (-12 (-4 *4 (-904)) (-4 *5 (-1232 *4)) (-5 *2 (-417 (-1164 *5))) (-5 *1 (-902 *4 *5)) (-5 *3 (-1164 *5)))) (-2312 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-1164 *5))) (-5 *3 (-1164 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-904)) (-5 *1 (-902 *4 *5)))))
-(-10 -7 (-15 -2312 ((-3 (-639 (-1164 |#2|)) "failed") (-639 (-1164 |#2|)) (-1164 |#2|))) (-15 -2119 ((-417 (-1164 |#2|)) (-1164 |#2|))) (-15 -2727 ((-417 (-1164 |#2|)) (-1164 |#2|))) (-15 -4348 (|#1|)) (-15 -4133 ((-417 (-1164 |#2|)) (-1164 |#2|))))
-((-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 41)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 18)) (-2805 (((-3 $ "failed") $) 35)))
-(((-903 |#1|) (-10 -8 (-15 -2805 ((-3 |#1| "failed") |#1|)) (-15 -4150 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -2741 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|)))) (-904)) (T -903))
-NIL
-(-10 -8 (-15 -2805 ((-3 |#1| "failed") |#1|)) (-15 -4150 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -2741 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-3026 (((-417 (-1164 $)) (-1164 $)) 61)) (-2798 (($ $) 52)) (-2921 (((-417 $) $) 53)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 58)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-2717 (((-112) $) 54)) (-1957 (((-112) $) 31)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-3986 (((-417 (-1164 $)) (-1164 $)) 59)) (-3480 (((-417 (-1164 $)) (-1164 $)) 60)) (-1635 (((-417 $) $) 51)) (-1762 (((-3 $ "failed") $ $) 43)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 57 (|has| $ (-144)))) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-2805 (((-3 $ "failed") $) 56 (|has| $ (-144)))) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-4041 (((-112) $ $) NIL)) (-2398 (((-639 (-639 (-766))) $) 107)) (-1947 (((-639 (-766)) (-900 |#1|) $) 129)) (-3773 (((-639 (-766)) (-900 |#1|) $) 130)) (-3926 (((-639 (-900 |#1|)) $) 97)) (-1447 (((-900 |#1|) $ (-562)) 102) (((-900 |#1|) $) 103)) (-4015 (($ (-639 (-900 |#1|))) 109)) (-1993 (((-766) $) 104)) (-4194 (((-1094 (-1094 |#1|)) $) 127)) (-2872 (((-1094 |#1|) $ |#1|) 120) (((-1094 (-1094 |#1|)) $ (-1094 |#1|)) 138) (((-1094 (-639 |#1|)) $ (-639 |#1|)) 141)) (-1946 (((-1094 |#1|) $) 100)) (-1572 (((-112) (-900 |#1|) $) 91)) (-3696 (((-1150) $) NIL)) (-3417 (((-1261) $) 94) (((-1261) $ (-562) (-562)) 142)) (-1709 (((-1112) $) NIL)) (-3501 (((-639 (-900 |#1|)) $) 95)) (-2343 (((-900 |#1|) $ (-766)) 98)) (-2250 (((-766) $) 105)) (-4053 (((-857) $) 118) (((-639 (-900 |#1|)) $) 23) (($ (-639 (-900 |#1|))) 108)) (-3240 (((-639 |#1|) $) 106)) (-1733 (((-112) $ $) 135)) (-1785 (((-112) $ $) 133)) (-1761 (((-112) $ $) 132)))
+(((-899 |#1|) (-13 (-1092) (-10 -8 (-15 -4053 ((-639 (-900 |#1|)) $)) (-15 -3501 ((-639 (-900 |#1|)) $)) (-15 -2343 ((-900 |#1|) $ (-766))) (-15 -1447 ((-900 |#1|) $ (-562))) (-15 -1447 ((-900 |#1|) $)) (-15 -1993 ((-766) $)) (-15 -2250 ((-766) $)) (-15 -3240 ((-639 |#1|) $)) (-15 -3926 ((-639 (-900 |#1|)) $)) (-15 -2398 ((-639 (-639 (-766))) $)) (-15 -4053 ($ (-639 (-900 |#1|)))) (-15 -4015 ($ (-639 (-900 |#1|)))) (-15 -2872 ((-1094 |#1|) $ |#1|)) (-15 -4194 ((-1094 (-1094 |#1|)) $)) (-15 -2872 ((-1094 (-1094 |#1|)) $ (-1094 |#1|))) (-15 -2872 ((-1094 (-639 |#1|)) $ (-639 |#1|))) (-15 -1572 ((-112) (-900 |#1|) $)) (-15 -1947 ((-639 (-766)) (-900 |#1|) $)) (-15 -3773 ((-639 (-766)) (-900 |#1|) $)) (-15 -1946 ((-1094 |#1|) $)) (-15 -1761 ((-112) $ $)) (-15 -1785 ((-112) $ $)) (-15 -3417 ((-1261) $)) (-15 -3417 ((-1261) $ (-562) (-562))))) (-1092)) (T -899))
+((-4053 (*1 *2 *1) (-12 (-5 *2 (-639 (-900 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-3501 (*1 *2 *1) (-12 (-5 *2 (-639 (-900 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *2 (-900 *4)) (-5 *1 (-899 *4)) (-4 *4 (-1092)))) (-1447 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-900 *4)) (-5 *1 (-899 *4)) (-4 *4 (-1092)))) (-1447 (*1 *2 *1) (-12 (-5 *2 (-900 *3)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-1993 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-2250 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-3240 (*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-3926 (*1 *2 *1) (-12 (-5 *2 (-639 (-900 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-2398 (*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-766)))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-900 *3))) (-4 *3 (-1092)) (-5 *1 (-899 *3)))) (-4015 (*1 *1 *2) (-12 (-5 *2 (-639 (-900 *3))) (-4 *3 (-1092)) (-5 *1 (-899 *3)))) (-2872 (*1 *2 *1 *3) (-12 (-5 *2 (-1094 *3)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-4194 (*1 *2 *1) (-12 (-5 *2 (-1094 (-1094 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-2872 (*1 *2 *1 *3) (-12 (-4 *4 (-1092)) (-5 *2 (-1094 (-1094 *4))) (-5 *1 (-899 *4)) (-5 *3 (-1094 *4)))) (-2872 (*1 *2 *1 *3) (-12 (-4 *4 (-1092)) (-5 *2 (-1094 (-639 *4))) (-5 *1 (-899 *4)) (-5 *3 (-639 *4)))) (-1572 (*1 *2 *3 *1) (-12 (-5 *3 (-900 *4)) (-4 *4 (-1092)) (-5 *2 (-112)) (-5 *1 (-899 *4)))) (-1947 (*1 *2 *3 *1) (-12 (-5 *3 (-900 *4)) (-4 *4 (-1092)) (-5 *2 (-639 (-766))) (-5 *1 (-899 *4)))) (-3773 (*1 *2 *3 *1) (-12 (-5 *3 (-900 *4)) (-4 *4 (-1092)) (-5 *2 (-639 (-766))) (-5 *1 (-899 *4)))) (-1946 (*1 *2 *1) (-12 (-5 *2 (-1094 *3)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-1761 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-1785 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-3417 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))) (-3417 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-899 *4)) (-4 *4 (-1092)))))
+(-13 (-1092) (-10 -8 (-15 -4053 ((-639 (-900 |#1|)) $)) (-15 -3501 ((-639 (-900 |#1|)) $)) (-15 -2343 ((-900 |#1|) $ (-766))) (-15 -1447 ((-900 |#1|) $ (-562))) (-15 -1447 ((-900 |#1|) $)) (-15 -1993 ((-766) $)) (-15 -2250 ((-766) $)) (-15 -3240 ((-639 |#1|) $)) (-15 -3926 ((-639 (-900 |#1|)) $)) (-15 -2398 ((-639 (-639 (-766))) $)) (-15 -4053 ($ (-639 (-900 |#1|)))) (-15 -4015 ($ (-639 (-900 |#1|)))) (-15 -2872 ((-1094 |#1|) $ |#1|)) (-15 -4194 ((-1094 (-1094 |#1|)) $)) (-15 -2872 ((-1094 (-1094 |#1|)) $ (-1094 |#1|))) (-15 -2872 ((-1094 (-639 |#1|)) $ (-639 |#1|))) (-15 -1572 ((-112) (-900 |#1|) $)) (-15 -1947 ((-639 (-766)) (-900 |#1|) $)) (-15 -3773 ((-639 (-766)) (-900 |#1|) $)) (-15 -1946 ((-1094 |#1|) $)) (-15 -1761 ((-112) $ $)) (-15 -1785 ((-112) $ $)) (-15 -3417 ((-1261) $)) (-15 -3417 ((-1261) $ (-562) (-562)))))
+((-4041 (((-112) $ $) NIL)) (-1395 (((-639 $) (-639 $)) 77)) (-1587 (((-562) $) 60)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) NIL)) (-1993 (((-766) $) 58)) (-2872 (((-1094 |#1|) $ |#1|) 49)) (-4367 (((-112) $) NIL)) (-3152 (((-112) $) 63)) (-3222 (((-766) $) 61)) (-1946 (((-1094 |#1|) $) 42)) (-1551 (($ $ $) NIL (-4037 (|has| |#1| (-367)) (|has| |#1| (-845))))) (-2993 (($ $ $) NIL (-4037 (|has| |#1| (-367)) (|has| |#1| (-845))))) (-3267 (((-2 (|:| |preimage| (-639 |#1|)) (|:| |image| (-639 |#1|))) $) 37)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 93)) (-1709 (((-1112) $) NIL)) (-2336 (((-1094 |#1|) $) 100 (|has| |#1| (-367)))) (-2438 (((-112) $) 59)) (-1433 ((|#1| $ |#1|) 47)) (-2343 ((|#1| $ |#1|) 94)) (-2250 (((-766) $) 44)) (-3639 (($ (-639 (-639 |#1|))) 85)) (-2969 (((-966) $) 53)) (-2263 (($ (-639 |#1|)) 22)) (-1660 (($ $ $) NIL)) (-2114 (($ $ $) NIL)) (-2751 (($ (-639 (-639 |#1|))) 39)) (-2824 (($ (-639 (-639 |#1|))) 88)) (-4143 (($ (-639 |#1|)) 96)) (-4053 (((-857) $) 84) (($ (-639 (-639 |#1|))) 66) (($ (-639 |#1|)) 67)) (-2294 (($) 17 T CONST)) (-1798 (((-112) $ $) NIL (-4037 (|has| |#1| (-367)) (|has| |#1| (-845))))) (-1771 (((-112) $ $) NIL (-4037 (|has| |#1| (-367)) (|has| |#1| (-845))))) (-1733 (((-112) $ $) 45)) (-1785 (((-112) $ $) NIL (-4037 (|has| |#1| (-367)) (|has| |#1| (-845))))) (-1761 (((-112) $ $) 65)) (-1859 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ $ $) 23)))
+(((-900 |#1|) (-13 (-898 |#1|) (-10 -8 (-15 -3267 ((-2 (|:| |preimage| (-639 |#1|)) (|:| |image| (-639 |#1|))) $)) (-15 -2751 ($ (-639 (-639 |#1|)))) (-15 -4053 ($ (-639 (-639 |#1|)))) (-15 -4053 ($ (-639 |#1|))) (-15 -2824 ($ (-639 (-639 |#1|)))) (-15 -2250 ((-766) $)) (-15 -1946 ((-1094 |#1|) $)) (-15 -2969 ((-966) $)) (-15 -1993 ((-766) $)) (-15 -3222 ((-766) $)) (-15 -1587 ((-562) $)) (-15 -2438 ((-112) $)) (-15 -3152 ((-112) $)) (-15 -1395 ((-639 $) (-639 $))) (IF (|has| |#1| (-367)) (-15 -2336 ((-1094 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-544)) (-15 -4143 ($ (-639 |#1|))) (IF (|has| |#1| (-367)) (-15 -4143 ($ (-639 |#1|))) |%noBranch|)))) (-1092)) (T -900))
+((-3267 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-639 *3)) (|:| |image| (-639 *3)))) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-2751 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-900 *3)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-900 *3)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-900 *3)))) (-2824 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-900 *3)))) (-2250 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-1946 (*1 *2 *1) (-12 (-5 *2 (-1094 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-2969 (*1 *2 *1) (-12 (-5 *2 (-966)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-1993 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-3222 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-1587 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-2438 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-3152 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-1395 (*1 *2 *2) (-12 (-5 *2 (-639 (-900 *3))) (-5 *1 (-900 *3)) (-4 *3 (-1092)))) (-2336 (*1 *2 *1) (-12 (-5 *2 (-1094 *3)) (-5 *1 (-900 *3)) (-4 *3 (-367)) (-4 *3 (-1092)))) (-4143 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-900 *3)))))
+(-13 (-898 |#1|) (-10 -8 (-15 -3267 ((-2 (|:| |preimage| (-639 |#1|)) (|:| |image| (-639 |#1|))) $)) (-15 -2751 ($ (-639 (-639 |#1|)))) (-15 -4053 ($ (-639 (-639 |#1|)))) (-15 -4053 ($ (-639 |#1|))) (-15 -2824 ($ (-639 (-639 |#1|)))) (-15 -2250 ((-766) $)) (-15 -1946 ((-1094 |#1|) $)) (-15 -2969 ((-966) $)) (-15 -1993 ((-766) $)) (-15 -3222 ((-766) $)) (-15 -1587 ((-562) $)) (-15 -2438 ((-112) $)) (-15 -3152 ((-112) $)) (-15 -1395 ((-639 $) (-639 $))) (IF (|has| |#1| (-367)) (-15 -2336 ((-1094 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-544)) (-15 -4143 ($ (-639 |#1|))) (IF (|has| |#1| (-367)) (-15 -4143 ($ (-639 |#1|))) |%noBranch|))))
+((-3752 (((-3 (-639 (-1164 |#4|)) "failed") (-639 (-1164 |#4|)) (-1164 |#4|)) 127)) (-3852 ((|#1|) 76)) (-2469 (((-417 (-1164 |#4|)) (-1164 |#4|)) 136)) (-2526 (((-417 (-1164 |#4|)) (-639 |#3|) (-1164 |#4|)) 68)) (-2468 (((-417 (-1164 |#4|)) (-1164 |#4|)) 146)) (-1432 (((-3 (-639 (-1164 |#4|)) "failed") (-639 (-1164 |#4|)) (-1164 |#4|) |#3|) 91)))
+(((-901 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3752 ((-3 (-639 (-1164 |#4|)) "failed") (-639 (-1164 |#4|)) (-1164 |#4|))) (-15 -2468 ((-417 (-1164 |#4|)) (-1164 |#4|))) (-15 -2469 ((-417 (-1164 |#4|)) (-1164 |#4|))) (-15 -3852 (|#1|)) (-15 -1432 ((-3 (-639 (-1164 |#4|)) "failed") (-639 (-1164 |#4|)) (-1164 |#4|) |#3|)) (-15 -2526 ((-417 (-1164 |#4|)) (-639 |#3|) (-1164 |#4|)))) (-904) (-788) (-845) (-944 |#1| |#2| |#3|)) (T -901))
+((-2526 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *7)) (-4 *7 (-845)) (-4 *5 (-904)) (-4 *6 (-788)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-417 (-1164 *8))) (-5 *1 (-901 *5 *6 *7 *8)) (-5 *4 (-1164 *8)))) (-1432 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-639 (-1164 *7))) (-5 *3 (-1164 *7)) (-4 *7 (-944 *5 *6 *4)) (-4 *5 (-904)) (-4 *6 (-788)) (-4 *4 (-845)) (-5 *1 (-901 *5 *6 *4 *7)))) (-3852 (*1 *2) (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-904)) (-5 *1 (-901 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))) (-2469 (*1 *2 *3) (-12 (-4 *4 (-904)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-417 (-1164 *7))) (-5 *1 (-901 *4 *5 *6 *7)) (-5 *3 (-1164 *7)))) (-2468 (*1 *2 *3) (-12 (-4 *4 (-904)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-417 (-1164 *7))) (-5 *1 (-901 *4 *5 *6 *7)) (-5 *3 (-1164 *7)))) (-3752 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-1164 *7))) (-5 *3 (-1164 *7)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-904)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-901 *4 *5 *6 *7)))))
+(-10 -7 (-15 -3752 ((-3 (-639 (-1164 |#4|)) "failed") (-639 (-1164 |#4|)) (-1164 |#4|))) (-15 -2468 ((-417 (-1164 |#4|)) (-1164 |#4|))) (-15 -2469 ((-417 (-1164 |#4|)) (-1164 |#4|))) (-15 -3852 (|#1|)) (-15 -1432 ((-3 (-639 (-1164 |#4|)) "failed") (-639 (-1164 |#4|)) (-1164 |#4|) |#3|)) (-15 -2526 ((-417 (-1164 |#4|)) (-639 |#3|) (-1164 |#4|))))
+((-3752 (((-3 (-639 (-1164 |#2|)) "failed") (-639 (-1164 |#2|)) (-1164 |#2|)) 36)) (-3852 ((|#1|) 53)) (-2469 (((-417 (-1164 |#2|)) (-1164 |#2|)) 101)) (-2526 (((-417 (-1164 |#2|)) (-1164 |#2|)) 89)) (-2468 (((-417 (-1164 |#2|)) (-1164 |#2|)) 112)))
+(((-902 |#1| |#2|) (-10 -7 (-15 -3752 ((-3 (-639 (-1164 |#2|)) "failed") (-639 (-1164 |#2|)) (-1164 |#2|))) (-15 -2468 ((-417 (-1164 |#2|)) (-1164 |#2|))) (-15 -2469 ((-417 (-1164 |#2|)) (-1164 |#2|))) (-15 -3852 (|#1|)) (-15 -2526 ((-417 (-1164 |#2|)) (-1164 |#2|)))) (-904) (-1232 |#1|)) (T -902))
+((-2526 (*1 *2 *3) (-12 (-4 *4 (-904)) (-4 *5 (-1232 *4)) (-5 *2 (-417 (-1164 *5))) (-5 *1 (-902 *4 *5)) (-5 *3 (-1164 *5)))) (-3852 (*1 *2) (-12 (-4 *2 (-904)) (-5 *1 (-902 *2 *3)) (-4 *3 (-1232 *2)))) (-2469 (*1 *2 *3) (-12 (-4 *4 (-904)) (-4 *5 (-1232 *4)) (-5 *2 (-417 (-1164 *5))) (-5 *1 (-902 *4 *5)) (-5 *3 (-1164 *5)))) (-2468 (*1 *2 *3) (-12 (-4 *4 (-904)) (-4 *5 (-1232 *4)) (-5 *2 (-417 (-1164 *5))) (-5 *1 (-902 *4 *5)) (-5 *3 (-1164 *5)))) (-3752 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-1164 *5))) (-5 *3 (-1164 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-904)) (-5 *1 (-902 *4 *5)))))
+(-10 -7 (-15 -3752 ((-3 (-639 (-1164 |#2|)) "failed") (-639 (-1164 |#2|)) (-1164 |#2|))) (-15 -2468 ((-417 (-1164 |#2|)) (-1164 |#2|))) (-15 -2469 ((-417 (-1164 |#2|)) (-1164 |#2|))) (-15 -3852 (|#1|)) (-15 -2526 ((-417 (-1164 |#2|)) (-1164 |#2|))))
+((-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 41)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 18)) (-2059 (((-3 $ "failed") $) 35)))
+(((-903 |#1|) (-10 -8 (-15 -2059 ((-3 |#1| "failed") |#1|)) (-15 -2654 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -2602 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|)))) (-904)) (T -903))
+NIL
+(-10 -8 (-15 -2059 ((-3 |#1| "failed") |#1|)) (-15 -2654 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -2602 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-3517 (((-417 (-1164 $)) (-1164 $)) 61)) (-1977 (($ $) 52)) (-3788 (((-417 $) $) 53)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 58)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-3521 (((-112) $) 54)) (-4367 (((-112) $) 31)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-3586 (((-417 (-1164 $)) (-1164 $)) 59)) (-3468 (((-417 (-1164 $)) (-1164 $)) 60)) (-1635 (((-417 $) $) 51)) (-1762 (((-3 $ "failed") $ $) 43)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 57 (|has| $ (-144)))) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-2059 (((-3 $ "failed") $) 56 (|has| $ (-144)))) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-904) (-139)) (T -904))
-((-2741 (*1 *2 *2 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-904)))) (-3026 (*1 *2 *3) (-12 (-4 *1 (-904)) (-5 *2 (-417 (-1164 *1))) (-5 *3 (-1164 *1)))) (-3480 (*1 *2 *3) (-12 (-4 *1 (-904)) (-5 *2 (-417 (-1164 *1))) (-5 *3 (-1164 *1)))) (-3986 (*1 *2 *3) (-12 (-4 *1 (-904)) (-5 *2 (-417 (-1164 *1))) (-5 *3 (-1164 *1)))) (-4150 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-1164 *1))) (-5 *3 (-1164 *1)) (-4 *1 (-904)))) (-1289 (*1 *2 *3) (|partial| -12 (-5 *3 (-683 *1)) (-4 *1 (-144)) (-4 *1 (-904)) (-5 *2 (-1256 *1)))) (-2805 (*1 *1 *1) (|partial| -12 (-4 *1 (-144)) (-4 *1 (-904)))))
-(-13 (-1211) (-10 -8 (-15 -3026 ((-417 (-1164 $)) (-1164 $))) (-15 -3480 ((-417 (-1164 $)) (-1164 $))) (-15 -3986 ((-417 (-1164 $)) (-1164 $))) (-15 -2741 ((-1164 $) (-1164 $) (-1164 $))) (-15 -4150 ((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $))) (IF (|has| $ (-144)) (PROGN (-15 -1289 ((-3 (-1256 $) "failed") (-683 $))) (-15 -2805 ((-3 $ "failed") $))) |%noBranch|)))
+((-2602 (*1 *2 *2 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-904)))) (-3517 (*1 *2 *3) (-12 (-4 *1 (-904)) (-5 *2 (-417 (-1164 *1))) (-5 *3 (-1164 *1)))) (-3468 (*1 *2 *3) (-12 (-4 *1 (-904)) (-5 *2 (-417 (-1164 *1))) (-5 *3 (-1164 *1)))) (-3586 (*1 *2 *3) (-12 (-4 *1 (-904)) (-5 *2 (-417 (-1164 *1))) (-5 *3 (-1164 *1)))) (-2654 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-639 (-1164 *1))) (-5 *3 (-1164 *1)) (-4 *1 (-904)))) (-1870 (*1 *2 *3) (|partial| -12 (-5 *3 (-683 *1)) (-4 *1 (-144)) (-4 *1 (-904)) (-5 *2 (-1256 *1)))) (-2059 (*1 *1 *1) (|partial| -12 (-4 *1 (-144)) (-4 *1 (-904)))))
+(-13 (-1211) (-10 -8 (-15 -3517 ((-417 (-1164 $)) (-1164 $))) (-15 -3468 ((-417 (-1164 $)) (-1164 $))) (-15 -3586 ((-417 (-1164 $)) (-1164 $))) (-15 -2602 ((-1164 $) (-1164 $) (-1164 $))) (-15 -2654 ((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $))) (IF (|has| $ (-144)) (PROGN (-15 -1870 ((-3 (-1256 $) "failed") (-683 $))) (-15 -2059 ((-3 $ "failed") $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-289) . T) ((-451) . T) ((-554) . T) ((-642 $) . T) ((-712 $) . T) ((-721) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1211) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-2024 (((-112) $) NIL)) (-3285 (((-766)) NIL)) (-1748 (($ $ (-916)) NIL (|has| $ (-367))) (($ $) NIL)) (-3984 (((-1180 (-916) (-766)) (-562)) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 $ "failed") $) NIL)) (-3961 (($ $) NIL)) (-4018 (($ (-1256 $)) NIL)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-3529 (($) NIL)) (-1322 (((-112) $) NIL)) (-3589 (($ $) NIL) (($ $ (-766)) NIL)) (-2717 (((-112) $) NIL)) (-1900 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-1957 (((-112) $) NIL)) (-1846 (($) NIL (|has| $ (-367)))) (-1316 (((-112) $) NIL (|has| $ (-367)))) (-2247 (($ $ (-916)) NIL (|has| $ (-367))) (($ $) NIL)) (-3699 (((-3 $ "failed") $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1565 (((-1164 $) $ (-916)) NIL (|has| $ (-367))) (((-1164 $) $) NIL)) (-1999 (((-916) $) NIL)) (-3892 (((-1164 $) $) NIL (|has| $ (-367)))) (-4203 (((-3 (-1164 $) "failed") $ $) NIL (|has| $ (-367))) (((-1164 $) $) NIL (|has| $ (-367)))) (-2393 (($ $ (-1164 $)) NIL (|has| $ (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL T CONST)) (-2466 (($ (-916)) NIL)) (-3113 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-3148 (($) NIL (|has| $ (-367)))) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL)) (-1635 (((-417 $) $) NIL)) (-4121 (((-916)) NIL) (((-828 (-916))) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-3362 (((-3 (-766) "failed") $ $) NIL) (((-766) $) NIL)) (-3627 (((-133)) NIL)) (-4029 (($ $ (-766)) NIL) (($ $) NIL)) (-3598 (((-916) $) NIL) (((-828 (-916)) $) NIL)) (-2096 (((-1164 $)) NIL)) (-2283 (($) NIL)) (-2624 (($) NIL (|has| $ (-367)))) (-3593 (((-683 $) (-1256 $)) NIL) (((-1256 $) $) NIL)) (-4208 (((-562) $) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL)) (-2805 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-2579 (((-766)) NIL)) (-3928 (((-1256 $) (-916)) NIL) (((-1256 $)) NIL)) (-2922 (((-112) $ $) NIL)) (-3694 (((-112) $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4374 (($ $ (-766)) NIL (|has| $ (-367))) (($ $) NIL (|has| $ (-367)))) (-3114 (($ $ (-766)) NIL) (($ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3826 (((-112) $) NIL)) (-2284 (((-766)) NIL)) (-1748 (($ $ (-916)) NIL (|has| $ (-367))) (($ $) NIL)) (-1755 (((-1180 (-916) (-766)) (-562)) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 $ "failed") $) NIL)) (-3960 (($ $) NIL)) (-3916 (($ (-1256 $)) NIL)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-2787 (($) NIL)) (-1844 (((-112) $) NIL)) (-2184 (($ $) NIL) (($ $ (-766)) NIL)) (-3521 (((-112) $) NIL)) (-1993 (((-828 (-916)) $) NIL) (((-916) $) NIL)) (-4367 (((-112) $) NIL)) (-2631 (($) NIL (|has| $ (-367)))) (-1775 (((-112) $) NIL (|has| $ (-367)))) (-4363 (($ $ (-916)) NIL (|has| $ (-367))) (($ $) NIL)) (-3828 (((-3 $ "failed") $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1937 (((-1164 $) $ (-916)) NIL (|has| $ (-367))) (((-1164 $) $) NIL)) (-3549 (((-916) $) NIL)) (-2121 (((-1164 $) $) NIL (|has| $ (-367)))) (-1894 (((-3 (-1164 $) "failed") $ $) NIL (|has| $ (-367))) (((-1164 $) $) NIL (|has| $ (-367)))) (-3319 (($ $ (-1164 $)) NIL (|has| $ (-367)))) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL T CONST)) (-2464 (($ (-916)) NIL)) (-2991 (((-112) $) NIL)) (-1709 (((-1112) $) NIL)) (-3147 (($) NIL (|has| $ (-367)))) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL)) (-1635 (((-417 $) $) NIL)) (-3548 (((-916)) NIL) (((-828 (-916))) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3543 (((-3 (-766) "failed") $ $) NIL) (((-766) $) NIL)) (-4340 (((-133)) NIL)) (-4029 (($ $ (-766)) NIL) (($ $) NIL)) (-2250 (((-916) $) NIL) (((-828 (-916)) $) NIL)) (-3371 (((-1164 $)) NIL)) (-1653 (($) NIL)) (-3861 (($) NIL (|has| $ (-367)))) (-2205 (((-683 $) (-1256 $)) NIL) (((-1256 $) $) NIL)) (-4208 (((-562) $) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL)) (-2059 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-1568 (((-766)) NIL)) (-4291 (((-1256 $) (-916)) NIL) (((-1256 $)) NIL)) (-3799 (((-112) $ $) NIL)) (-3782 (((-112) $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-4144 (($ $ (-766)) NIL (|has| $ (-367))) (($ $) NIL (|has| $ (-367)))) (-3113 (($ $ (-766)) NIL) (($ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
(((-905 |#1|) (-13 (-348) (-328 $) (-610 (-562))) (-916)) (T -905))
NIL
(-13 (-348) (-328 $) (-610 (-562)))
-((-3020 (((-3 (-2 (|:| -1900 (-766)) (|:| -1407 |#5|)) "failed") (-335 |#2| |#3| |#4| |#5|)) 79)) (-1392 (((-112) (-335 |#2| |#3| |#4| |#5|)) 17)) (-1900 (((-3 (-766) "failed") (-335 |#2| |#3| |#4| |#5|)) 15)))
-(((-906 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1900 ((-3 (-766) "failed") (-335 |#2| |#3| |#4| |#5|))) (-15 -1392 ((-112) (-335 |#2| |#3| |#4| |#5|))) (-15 -3020 ((-3 (-2 (|:| -1900 (-766)) (|:| -1407 |#5|)) "failed") (-335 |#2| |#3| |#4| |#5|)))) (-13 (-845) (-554) (-1033 (-562))) (-429 |#1|) (-1232 |#2|) (-1232 (-406 |#3|)) (-341 |#2| |#3| |#4|)) (T -906))
-((-3020 (*1 *2 *3) (|partial| -12 (-5 *3 (-335 *5 *6 *7 *8)) (-4 *5 (-429 *4)) (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6))) (-4 *8 (-341 *5 *6 *7)) (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-2 (|:| -1900 (-766)) (|:| -1407 *8))) (-5 *1 (-906 *4 *5 *6 *7 *8)))) (-1392 (*1 *2 *3) (-12 (-5 *3 (-335 *5 *6 *7 *8)) (-4 *5 (-429 *4)) (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6))) (-4 *8 (-341 *5 *6 *7)) (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-112)) (-5 *1 (-906 *4 *5 *6 *7 *8)))) (-1900 (*1 *2 *3) (|partial| -12 (-5 *3 (-335 *5 *6 *7 *8)) (-4 *5 (-429 *4)) (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6))) (-4 *8 (-341 *5 *6 *7)) (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-766)) (-5 *1 (-906 *4 *5 *6 *7 *8)))))
-(-10 -7 (-15 -1900 ((-3 (-766) "failed") (-335 |#2| |#3| |#4| |#5|))) (-15 -1392 ((-112) (-335 |#2| |#3| |#4| |#5|))) (-15 -3020 ((-3 (-2 (|:| -1900 (-766)) (|:| -1407 |#5|)) "failed") (-335 |#2| |#3| |#4| |#5|))))
-((-3020 (((-3 (-2 (|:| -1900 (-766)) (|:| -1407 |#3|)) "failed") (-335 (-406 (-562)) |#1| |#2| |#3|)) 56)) (-1392 (((-112) (-335 (-406 (-562)) |#1| |#2| |#3|)) 16)) (-1900 (((-3 (-766) "failed") (-335 (-406 (-562)) |#1| |#2| |#3|)) 14)))
-(((-907 |#1| |#2| |#3|) (-10 -7 (-15 -1900 ((-3 (-766) "failed") (-335 (-406 (-562)) |#1| |#2| |#3|))) (-15 -1392 ((-112) (-335 (-406 (-562)) |#1| |#2| |#3|))) (-15 -3020 ((-3 (-2 (|:| -1900 (-766)) (|:| -1407 |#3|)) "failed") (-335 (-406 (-562)) |#1| |#2| |#3|)))) (-1232 (-406 (-562))) (-1232 (-406 |#1|)) (-341 (-406 (-562)) |#1| |#2|)) (T -907))
-((-3020 (*1 *2 *3) (|partial| -12 (-5 *3 (-335 (-406 (-562)) *4 *5 *6)) (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 (-406 (-562)) *4 *5)) (-5 *2 (-2 (|:| -1900 (-766)) (|:| -1407 *6))) (-5 *1 (-907 *4 *5 *6)))) (-1392 (*1 *2 *3) (-12 (-5 *3 (-335 (-406 (-562)) *4 *5 *6)) (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 (-406 (-562)) *4 *5)) (-5 *2 (-112)) (-5 *1 (-907 *4 *5 *6)))) (-1900 (*1 *2 *3) (|partial| -12 (-5 *3 (-335 (-406 (-562)) *4 *5 *6)) (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 (-406 (-562)) *4 *5)) (-5 *2 (-766)) (-5 *1 (-907 *4 *5 *6)))))
-(-10 -7 (-15 -1900 ((-3 (-766) "failed") (-335 (-406 (-562)) |#1| |#2| |#3|))) (-15 -1392 ((-112) (-335 (-406 (-562)) |#1| |#2| |#3|))) (-15 -3020 ((-3 (-2 (|:| -1900 (-766)) (|:| -1407 |#3|)) "failed") (-335 (-406 (-562)) |#1| |#2| |#3|))))
-((-2293 ((|#2| |#2|) 26)) (-4077 (((-562) (-639 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562))))) 15)) (-3916 (((-916) (-562)) 35)) (-2550 (((-562) |#2|) 42)) (-3300 (((-562) |#2|) 21) (((-2 (|:| |den| (-562)) (|:| |gcdnum| (-562))) |#1|) 20)))
-(((-908 |#1| |#2|) (-10 -7 (-15 -3916 ((-916) (-562))) (-15 -3300 ((-2 (|:| |den| (-562)) (|:| |gcdnum| (-562))) |#1|)) (-15 -3300 ((-562) |#2|)) (-15 -4077 ((-562) (-639 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562)))))) (-15 -2550 ((-562) |#2|)) (-15 -2293 (|#2| |#2|))) (-1232 (-406 (-562))) (-1232 (-406 |#1|))) (T -908))
-((-2293 (*1 *2 *2) (-12 (-4 *3 (-1232 (-406 (-562)))) (-5 *1 (-908 *3 *2)) (-4 *2 (-1232 (-406 *3))))) (-2550 (*1 *2 *3) (-12 (-4 *4 (-1232 (-406 *2))) (-5 *2 (-562)) (-5 *1 (-908 *4 *3)) (-4 *3 (-1232 (-406 *4))))) (-4077 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562))))) (-4 *4 (-1232 (-406 *2))) (-5 *2 (-562)) (-5 *1 (-908 *4 *5)) (-4 *5 (-1232 (-406 *4))))) (-3300 (*1 *2 *3) (-12 (-4 *4 (-1232 (-406 *2))) (-5 *2 (-562)) (-5 *1 (-908 *4 *3)) (-4 *3 (-1232 (-406 *4))))) (-3300 (*1 *2 *3) (-12 (-4 *3 (-1232 (-406 (-562)))) (-5 *2 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562)))) (-5 *1 (-908 *3 *4)) (-4 *4 (-1232 (-406 *3))))) (-3916 (*1 *2 *3) (-12 (-5 *3 (-562)) (-4 *4 (-1232 (-406 *3))) (-5 *2 (-916)) (-5 *1 (-908 *4 *5)) (-4 *5 (-1232 (-406 *4))))))
-(-10 -7 (-15 -3916 ((-916) (-562))) (-15 -3300 ((-2 (|:| |den| (-562)) (|:| |gcdnum| (-562))) |#1|)) (-15 -3300 ((-562) |#2|)) (-15 -4077 ((-562) (-639 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562)))))) (-15 -2550 ((-562) |#2|)) (-15 -2293 (|#2| |#2|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-4246 ((|#1| $) 81)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-1811 (($ $ $) NIL)) (-3668 (((-3 $ "failed") $) 75)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-4322 (($ |#1| (-417 |#1|)) 73)) (-3268 (((-1164 |#1|) |#1| |#1|) 41)) (-3583 (($ $) 49)) (-1957 (((-112) $) NIL)) (-2377 (((-562) $) 78)) (-1971 (($ $ (-562)) 80)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3571 ((|#1| $) 77)) (-3144 (((-417 |#1|) $) 76)) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) 74)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-2831 (($ $) 39)) (-4054 (((-857) $) 99) (($ (-562)) 54) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) 31) (((-406 |#1|) $) 59) (($ (-406 (-417 |#1|))) 67)) (-2579 (((-766)) 52)) (-2922 (((-112) $ $) NIL)) (-2286 (($) 23 T CONST)) (-2294 (($) 12 T CONST)) (-1731 (((-112) $ $) 68)) (-1859 (($ $ $) NIL)) (-1848 (($ $) 88) (($ $ $) NIL)) (-1835 (($ $ $) 38)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 90) (($ $ $) 37) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ |#1| $) 89) (($ $ |#1|) NIL)))
-(((-909 |#1|) (-13 (-362) (-38 |#1|) (-10 -8 (-15 -4054 ((-406 |#1|) $)) (-15 -4054 ($ (-406 (-417 |#1|)))) (-15 -2831 ($ $)) (-15 -3144 ((-417 |#1|) $)) (-15 -3571 (|#1| $)) (-15 -1971 ($ $ (-562))) (-15 -2377 ((-562) $)) (-15 -3268 ((-1164 |#1|) |#1| |#1|)) (-15 -3583 ($ $)) (-15 -4322 ($ |#1| (-417 |#1|))) (-15 -4246 (|#1| $)))) (-306)) (T -909))
-((-4054 (*1 *2 *1) (-12 (-5 *2 (-406 *3)) (-5 *1 (-909 *3)) (-4 *3 (-306)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-406 (-417 *3))) (-4 *3 (-306)) (-5 *1 (-909 *3)))) (-2831 (*1 *1 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))) (-3144 (*1 *2 *1) (-12 (-5 *2 (-417 *3)) (-5 *1 (-909 *3)) (-4 *3 (-306)))) (-3571 (*1 *2 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))) (-1971 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-909 *3)) (-4 *3 (-306)))) (-2377 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-909 *3)) (-4 *3 (-306)))) (-3268 (*1 *2 *3 *3) (-12 (-5 *2 (-1164 *3)) (-5 *1 (-909 *3)) (-4 *3 (-306)))) (-3583 (*1 *1 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))) (-4322 (*1 *1 *2 *3) (-12 (-5 *3 (-417 *2)) (-4 *2 (-306)) (-5 *1 (-909 *2)))) (-4246 (*1 *2 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))))
-(-13 (-362) (-38 |#1|) (-10 -8 (-15 -4054 ((-406 |#1|) $)) (-15 -4054 ($ (-406 (-417 |#1|)))) (-15 -2831 ($ $)) (-15 -3144 ((-417 |#1|) $)) (-15 -3571 (|#1| $)) (-15 -1971 ($ $ (-562))) (-15 -2377 ((-562) $)) (-15 -3268 ((-1164 |#1|) |#1| |#1|)) (-15 -3583 ($ $)) (-15 -4322 ($ |#1| (-417 |#1|))) (-15 -4246 (|#1| $))))
-((-4322 (((-52) (-947 |#1|) (-417 (-947 |#1|)) (-1168)) 17) (((-52) (-406 (-947 |#1|)) (-1168)) 18)))
-(((-910 |#1|) (-10 -7 (-15 -4322 ((-52) (-406 (-947 |#1|)) (-1168))) (-15 -4322 ((-52) (-947 |#1|) (-417 (-947 |#1|)) (-1168)))) (-13 (-306) (-146))) (T -910))
-((-4322 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-417 (-947 *6))) (-5 *5 (-1168)) (-5 *3 (-947 *6)) (-4 *6 (-13 (-306) (-146))) (-5 *2 (-52)) (-5 *1 (-910 *6)))) (-4322 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-146))) (-5 *2 (-52)) (-5 *1 (-910 *5)))))
-(-10 -7 (-15 -4322 ((-52) (-406 (-947 |#1|)) (-1168))) (-15 -4322 ((-52) (-947 |#1|) (-417 (-947 |#1|)) (-1168))))
-((-2984 ((|#4| (-639 |#4|)) 121) (((-1164 |#4|) (-1164 |#4|) (-1164 |#4|)) 66) ((|#4| |#4| |#4|) 120)) (-1606 (((-1164 |#4|) (-639 (-1164 |#4|))) 114) (((-1164 |#4|) (-1164 |#4|) (-1164 |#4|)) 49) ((|#4| (-639 |#4|)) 54) ((|#4| |#4| |#4|) 84)))
-(((-911 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1606 (|#4| |#4| |#4|)) (-15 -1606 (|#4| (-639 |#4|))) (-15 -1606 ((-1164 |#4|) (-1164 |#4|) (-1164 |#4|))) (-15 -1606 ((-1164 |#4|) (-639 (-1164 |#4|)))) (-15 -2984 (|#4| |#4| |#4|)) (-15 -2984 ((-1164 |#4|) (-1164 |#4|) (-1164 |#4|))) (-15 -2984 (|#4| (-639 |#4|)))) (-788) (-845) (-306) (-944 |#3| |#1| |#2|)) (T -911))
-((-2984 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *6 *4 *5)) (-5 *1 (-911 *4 *5 *6 *2)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)))) (-2984 (*1 *2 *2 *2) (-12 (-5 *2 (-1164 *6)) (-4 *6 (-944 *5 *3 *4)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-306)) (-5 *1 (-911 *3 *4 *5 *6)))) (-2984 (*1 *2 *2 *2) (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-306)) (-5 *1 (-911 *3 *4 *5 *2)) (-4 *2 (-944 *5 *3 *4)))) (-1606 (*1 *2 *3) (-12 (-5 *3 (-639 (-1164 *7))) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-5 *2 (-1164 *7)) (-5 *1 (-911 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))) (-1606 (*1 *2 *2 *2) (-12 (-5 *2 (-1164 *6)) (-4 *6 (-944 *5 *3 *4)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-306)) (-5 *1 (-911 *3 *4 *5 *6)))) (-1606 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *6 *4 *5)) (-5 *1 (-911 *4 *5 *6 *2)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)))) (-1606 (*1 *2 *2 *2) (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-306)) (-5 *1 (-911 *3 *4 *5 *2)) (-4 *2 (-944 *5 *3 *4)))))
-(-10 -7 (-15 -1606 (|#4| |#4| |#4|)) (-15 -1606 (|#4| (-639 |#4|))) (-15 -1606 ((-1164 |#4|) (-1164 |#4|) (-1164 |#4|))) (-15 -1606 ((-1164 |#4|) (-639 (-1164 |#4|)))) (-15 -2984 (|#4| |#4| |#4|)) (-15 -2984 ((-1164 |#4|) (-1164 |#4|) (-1164 |#4|))) (-15 -2984 (|#4| (-639 |#4|))))
-((-3851 (((-899 (-562)) (-966)) 23) (((-899 (-562)) (-639 (-562))) 20)) (-1834 (((-899 (-562)) (-639 (-562))) 48) (((-899 (-562)) (-916)) 49)) (-2288 (((-899 (-562))) 24)) (-2056 (((-899 (-562))) 38) (((-899 (-562)) (-639 (-562))) 37)) (-2262 (((-899 (-562))) 36) (((-899 (-562)) (-639 (-562))) 35)) (-1802 (((-899 (-562))) 34) (((-899 (-562)) (-639 (-562))) 33)) (-1710 (((-899 (-562))) 32) (((-899 (-562)) (-639 (-562))) 31)) (-2127 (((-899 (-562))) 30) (((-899 (-562)) (-639 (-562))) 29)) (-3502 (((-899 (-562))) 40) (((-899 (-562)) (-639 (-562))) 39)) (-3714 (((-899 (-562)) (-639 (-562))) 52) (((-899 (-562)) (-916)) 53)) (-2253 (((-899 (-562)) (-639 (-562))) 50) (((-899 (-562)) (-916)) 51)) (-3645 (((-899 (-562)) (-639 (-562))) 46) (((-899 (-562)) (-916)) 47)) (-2448 (((-899 (-562)) (-639 (-916))) 43)))
-(((-912) (-10 -7 (-15 -1834 ((-899 (-562)) (-916))) (-15 -1834 ((-899 (-562)) (-639 (-562)))) (-15 -3645 ((-899 (-562)) (-916))) (-15 -3645 ((-899 (-562)) (-639 (-562)))) (-15 -2448 ((-899 (-562)) (-639 (-916)))) (-15 -2253 ((-899 (-562)) (-916))) (-15 -2253 ((-899 (-562)) (-639 (-562)))) (-15 -3714 ((-899 (-562)) (-916))) (-15 -3714 ((-899 (-562)) (-639 (-562)))) (-15 -2127 ((-899 (-562)) (-639 (-562)))) (-15 -2127 ((-899 (-562)))) (-15 -1710 ((-899 (-562)) (-639 (-562)))) (-15 -1710 ((-899 (-562)))) (-15 -1802 ((-899 (-562)) (-639 (-562)))) (-15 -1802 ((-899 (-562)))) (-15 -2262 ((-899 (-562)) (-639 (-562)))) (-15 -2262 ((-899 (-562)))) (-15 -2056 ((-899 (-562)) (-639 (-562)))) (-15 -2056 ((-899 (-562)))) (-15 -3502 ((-899 (-562)) (-639 (-562)))) (-15 -3502 ((-899 (-562)))) (-15 -2288 ((-899 (-562)))) (-15 -3851 ((-899 (-562)) (-639 (-562)))) (-15 -3851 ((-899 (-562)) (-966))))) (T -912))
-((-3851 (*1 *2 *3) (-12 (-5 *3 (-966)) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-3851 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2288 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-3502 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-3502 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2056 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2056 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2262 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2262 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-1802 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-1802 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-1710 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-1710 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2127 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2127 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-3714 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-3714 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2253 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2253 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2448 (*1 *2 *3) (-12 (-5 *3 (-639 (-916))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-3645 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-1834 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-1834 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
-(-10 -7 (-15 -1834 ((-899 (-562)) (-916))) (-15 -1834 ((-899 (-562)) (-639 (-562)))) (-15 -3645 ((-899 (-562)) (-916))) (-15 -3645 ((-899 (-562)) (-639 (-562)))) (-15 -2448 ((-899 (-562)) (-639 (-916)))) (-15 -2253 ((-899 (-562)) (-916))) (-15 -2253 ((-899 (-562)) (-639 (-562)))) (-15 -3714 ((-899 (-562)) (-916))) (-15 -3714 ((-899 (-562)) (-639 (-562)))) (-15 -2127 ((-899 (-562)) (-639 (-562)))) (-15 -2127 ((-899 (-562)))) (-15 -1710 ((-899 (-562)) (-639 (-562)))) (-15 -1710 ((-899 (-562)))) (-15 -1802 ((-899 (-562)) (-639 (-562)))) (-15 -1802 ((-899 (-562)))) (-15 -2262 ((-899 (-562)) (-639 (-562)))) (-15 -2262 ((-899 (-562)))) (-15 -2056 ((-899 (-562)) (-639 (-562)))) (-15 -2056 ((-899 (-562)))) (-15 -3502 ((-899 (-562)) (-639 (-562)))) (-15 -3502 ((-899 (-562)))) (-15 -2288 ((-899 (-562)))) (-15 -3851 ((-899 (-562)) (-639 (-562)))) (-15 -3851 ((-899 (-562)) (-966))))
-((-2295 (((-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168))) 12)) (-2461 (((-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168))) 11)))
-(((-913 |#1|) (-10 -7 (-15 -2461 ((-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -2295 ((-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168))))) (-451)) (T -913))
-((-2295 (*1 *2 *2 *3) (-12 (-5 *2 (-639 (-947 *4))) (-5 *3 (-639 (-1168))) (-4 *4 (-451)) (-5 *1 (-913 *4)))) (-2461 (*1 *2 *2 *3) (-12 (-5 *2 (-639 (-947 *4))) (-5 *3 (-639 (-1168))) (-4 *4 (-451)) (-5 *1 (-913 *4)))))
-(-10 -7 (-15 -2461 ((-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -2295 ((-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168)))))
-((-4054 (((-315 |#1|) (-476)) 16)))
-(((-914 |#1|) (-10 -7 (-15 -4054 ((-315 |#1|) (-476)))) (-13 (-845) (-554))) (T -914))
-((-4054 (*1 *2 *3) (-12 (-5 *3 (-476)) (-5 *2 (-315 *4)) (-5 *1 (-914 *4)) (-4 *4 (-13 (-845) (-554))))))
-(-10 -7 (-15 -4054 ((-315 |#1|) (-476))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-1957 (((-112) $) 31)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-3470 (((-3 (-2 (|:| -1993 (-766)) (|:| -1407 |#5|)) "failed") (-335 |#2| |#3| |#4| |#5|)) 79)) (-3241 (((-112) (-335 |#2| |#3| |#4| |#5|)) 17)) (-1993 (((-3 (-766) "failed") (-335 |#2| |#3| |#4| |#5|)) 15)))
+(((-906 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1993 ((-3 (-766) "failed") (-335 |#2| |#3| |#4| |#5|))) (-15 -3241 ((-112) (-335 |#2| |#3| |#4| |#5|))) (-15 -3470 ((-3 (-2 (|:| -1993 (-766)) (|:| -1407 |#5|)) "failed") (-335 |#2| |#3| |#4| |#5|)))) (-13 (-845) (-554) (-1033 (-562))) (-429 |#1|) (-1232 |#2|) (-1232 (-406 |#3|)) (-341 |#2| |#3| |#4|)) (T -906))
+((-3470 (*1 *2 *3) (|partial| -12 (-5 *3 (-335 *5 *6 *7 *8)) (-4 *5 (-429 *4)) (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6))) (-4 *8 (-341 *5 *6 *7)) (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-2 (|:| -1993 (-766)) (|:| -1407 *8))) (-5 *1 (-906 *4 *5 *6 *7 *8)))) (-3241 (*1 *2 *3) (-12 (-5 *3 (-335 *5 *6 *7 *8)) (-4 *5 (-429 *4)) (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6))) (-4 *8 (-341 *5 *6 *7)) (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-112)) (-5 *1 (-906 *4 *5 *6 *7 *8)))) (-1993 (*1 *2 *3) (|partial| -12 (-5 *3 (-335 *5 *6 *7 *8)) (-4 *5 (-429 *4)) (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6))) (-4 *8 (-341 *5 *6 *7)) (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-766)) (-5 *1 (-906 *4 *5 *6 *7 *8)))))
+(-10 -7 (-15 -1993 ((-3 (-766) "failed") (-335 |#2| |#3| |#4| |#5|))) (-15 -3241 ((-112) (-335 |#2| |#3| |#4| |#5|))) (-15 -3470 ((-3 (-2 (|:| -1993 (-766)) (|:| -1407 |#5|)) "failed") (-335 |#2| |#3| |#4| |#5|))))
+((-3470 (((-3 (-2 (|:| -1993 (-766)) (|:| -1407 |#3|)) "failed") (-335 (-406 (-562)) |#1| |#2| |#3|)) 56)) (-3241 (((-112) (-335 (-406 (-562)) |#1| |#2| |#3|)) 16)) (-1993 (((-3 (-766) "failed") (-335 (-406 (-562)) |#1| |#2| |#3|)) 14)))
+(((-907 |#1| |#2| |#3|) (-10 -7 (-15 -1993 ((-3 (-766) "failed") (-335 (-406 (-562)) |#1| |#2| |#3|))) (-15 -3241 ((-112) (-335 (-406 (-562)) |#1| |#2| |#3|))) (-15 -3470 ((-3 (-2 (|:| -1993 (-766)) (|:| -1407 |#3|)) "failed") (-335 (-406 (-562)) |#1| |#2| |#3|)))) (-1232 (-406 (-562))) (-1232 (-406 |#1|)) (-341 (-406 (-562)) |#1| |#2|)) (T -907))
+((-3470 (*1 *2 *3) (|partial| -12 (-5 *3 (-335 (-406 (-562)) *4 *5 *6)) (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 (-406 (-562)) *4 *5)) (-5 *2 (-2 (|:| -1993 (-766)) (|:| -1407 *6))) (-5 *1 (-907 *4 *5 *6)))) (-3241 (*1 *2 *3) (-12 (-5 *3 (-335 (-406 (-562)) *4 *5 *6)) (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 (-406 (-562)) *4 *5)) (-5 *2 (-112)) (-5 *1 (-907 *4 *5 *6)))) (-1993 (*1 *2 *3) (|partial| -12 (-5 *3 (-335 (-406 (-562)) *4 *5 *6)) (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 (-406 (-562)) *4 *5)) (-5 *2 (-766)) (-5 *1 (-907 *4 *5 *6)))))
+(-10 -7 (-15 -1993 ((-3 (-766) "failed") (-335 (-406 (-562)) |#1| |#2| |#3|))) (-15 -3241 ((-112) (-335 (-406 (-562)) |#1| |#2| |#3|))) (-15 -3470 ((-3 (-2 (|:| -1993 (-766)) (|:| -1407 |#3|)) "failed") (-335 (-406 (-562)) |#1| |#2| |#3|))))
+((-3574 ((|#2| |#2|) 26)) (-3167 (((-562) (-639 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562))))) 15)) (-2364 (((-916) (-562)) 35)) (-4327 (((-562) |#2|) 42)) (-4233 (((-562) |#2|) 21) (((-2 (|:| |den| (-562)) (|:| |gcdnum| (-562))) |#1|) 20)))
+(((-908 |#1| |#2|) (-10 -7 (-15 -2364 ((-916) (-562))) (-15 -4233 ((-2 (|:| |den| (-562)) (|:| |gcdnum| (-562))) |#1|)) (-15 -4233 ((-562) |#2|)) (-15 -3167 ((-562) (-639 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562)))))) (-15 -4327 ((-562) |#2|)) (-15 -3574 (|#2| |#2|))) (-1232 (-406 (-562))) (-1232 (-406 |#1|))) (T -908))
+((-3574 (*1 *2 *2) (-12 (-4 *3 (-1232 (-406 (-562)))) (-5 *1 (-908 *3 *2)) (-4 *2 (-1232 (-406 *3))))) (-4327 (*1 *2 *3) (-12 (-4 *4 (-1232 (-406 *2))) (-5 *2 (-562)) (-5 *1 (-908 *4 *3)) (-4 *3 (-1232 (-406 *4))))) (-3167 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562))))) (-4 *4 (-1232 (-406 *2))) (-5 *2 (-562)) (-5 *1 (-908 *4 *5)) (-4 *5 (-1232 (-406 *4))))) (-4233 (*1 *2 *3) (-12 (-4 *4 (-1232 (-406 *2))) (-5 *2 (-562)) (-5 *1 (-908 *4 *3)) (-4 *3 (-1232 (-406 *4))))) (-4233 (*1 *2 *3) (-12 (-4 *3 (-1232 (-406 (-562)))) (-5 *2 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562)))) (-5 *1 (-908 *3 *4)) (-4 *4 (-1232 (-406 *3))))) (-2364 (*1 *2 *3) (-12 (-5 *3 (-562)) (-4 *4 (-1232 (-406 *3))) (-5 *2 (-916)) (-5 *1 (-908 *4 *5)) (-4 *5 (-1232 (-406 *4))))))
+(-10 -7 (-15 -2364 ((-916) (-562))) (-15 -4233 ((-2 (|:| |den| (-562)) (|:| |gcdnum| (-562))) |#1|)) (-15 -4233 ((-562) |#2|)) (-15 -3167 ((-562) (-639 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562)))))) (-15 -4327 ((-562) |#2|)) (-15 -3574 (|#2| |#2|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2300 ((|#1| $) 81)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-1810 (($ $ $) NIL)) (-1694 (((-3 $ "failed") $) 75)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-3613 (($ |#1| (-417 |#1|)) 73)) (-2120 (((-1164 |#1|) |#1| |#1|) 41)) (-2124 (($ $) 49)) (-4367 (((-112) $) NIL)) (-3148 (((-562) $) 78)) (-1394 (($ $ (-562)) 80)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2007 ((|#1| $) 77)) (-3280 (((-417 |#1|) $) 76)) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) 74)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-2315 (($ $) 39)) (-4053 (((-857) $) 99) (($ (-562)) 54) (($ $) NIL) (($ (-406 (-562))) NIL) (($ |#1|) 31) (((-406 |#1|) $) 59) (($ (-406 (-417 |#1|))) 67)) (-1568 (((-766)) 52)) (-3799 (((-112) $ $) NIL)) (-2285 (($) 23 T CONST)) (-2294 (($) 12 T CONST)) (-1733 (((-112) $ $) 68)) (-1859 (($ $ $) NIL)) (-1847 (($ $) 88) (($ $ $) NIL)) (-1836 (($ $ $) 38)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 90) (($ $ $) 37) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ |#1| $) 89) (($ $ |#1|) NIL)))
+(((-909 |#1|) (-13 (-362) (-38 |#1|) (-10 -8 (-15 -4053 ((-406 |#1|) $)) (-15 -4053 ($ (-406 (-417 |#1|)))) (-15 -2315 ($ $)) (-15 -3280 ((-417 |#1|) $)) (-15 -2007 (|#1| $)) (-15 -1394 ($ $ (-562))) (-15 -3148 ((-562) $)) (-15 -2120 ((-1164 |#1|) |#1| |#1|)) (-15 -2124 ($ $)) (-15 -3613 ($ |#1| (-417 |#1|))) (-15 -2300 (|#1| $)))) (-306)) (T -909))
+((-4053 (*1 *2 *1) (-12 (-5 *2 (-406 *3)) (-5 *1 (-909 *3)) (-4 *3 (-306)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-406 (-417 *3))) (-4 *3 (-306)) (-5 *1 (-909 *3)))) (-2315 (*1 *1 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))) (-3280 (*1 *2 *1) (-12 (-5 *2 (-417 *3)) (-5 *1 (-909 *3)) (-4 *3 (-306)))) (-2007 (*1 *2 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))) (-1394 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-909 *3)) (-4 *3 (-306)))) (-3148 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-909 *3)) (-4 *3 (-306)))) (-2120 (*1 *2 *3 *3) (-12 (-5 *2 (-1164 *3)) (-5 *1 (-909 *3)) (-4 *3 (-306)))) (-2124 (*1 *1 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))) (-3613 (*1 *1 *2 *3) (-12 (-5 *3 (-417 *2)) (-4 *2 (-306)) (-5 *1 (-909 *2)))) (-2300 (*1 *2 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))))
+(-13 (-362) (-38 |#1|) (-10 -8 (-15 -4053 ((-406 |#1|) $)) (-15 -4053 ($ (-406 (-417 |#1|)))) (-15 -2315 ($ $)) (-15 -3280 ((-417 |#1|) $)) (-15 -2007 (|#1| $)) (-15 -1394 ($ $ (-562))) (-15 -3148 ((-562) $)) (-15 -2120 ((-1164 |#1|) |#1| |#1|)) (-15 -2124 ($ $)) (-15 -3613 ($ |#1| (-417 |#1|))) (-15 -2300 (|#1| $))))
+((-3613 (((-52) (-947 |#1|) (-417 (-947 |#1|)) (-1168)) 17) (((-52) (-406 (-947 |#1|)) (-1168)) 18)))
+(((-910 |#1|) (-10 -7 (-15 -3613 ((-52) (-406 (-947 |#1|)) (-1168))) (-15 -3613 ((-52) (-947 |#1|) (-417 (-947 |#1|)) (-1168)))) (-13 (-306) (-146))) (T -910))
+((-3613 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-417 (-947 *6))) (-5 *5 (-1168)) (-5 *3 (-947 *6)) (-4 *6 (-13 (-306) (-146))) (-5 *2 (-52)) (-5 *1 (-910 *6)))) (-3613 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-146))) (-5 *2 (-52)) (-5 *1 (-910 *5)))))
+(-10 -7 (-15 -3613 ((-52) (-406 (-947 |#1|)) (-1168))) (-15 -3613 ((-52) (-947 |#1|) (-417 (-947 |#1|)) (-1168))))
+((-3169 ((|#4| (-639 |#4|)) 121) (((-1164 |#4|) (-1164 |#4|) (-1164 |#4|)) 66) ((|#4| |#4| |#4|) 120)) (-1606 (((-1164 |#4|) (-639 (-1164 |#4|))) 114) (((-1164 |#4|) (-1164 |#4|) (-1164 |#4|)) 49) ((|#4| (-639 |#4|)) 54) ((|#4| |#4| |#4|) 84)))
+(((-911 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1606 (|#4| |#4| |#4|)) (-15 -1606 (|#4| (-639 |#4|))) (-15 -1606 ((-1164 |#4|) (-1164 |#4|) (-1164 |#4|))) (-15 -1606 ((-1164 |#4|) (-639 (-1164 |#4|)))) (-15 -3169 (|#4| |#4| |#4|)) (-15 -3169 ((-1164 |#4|) (-1164 |#4|) (-1164 |#4|))) (-15 -3169 (|#4| (-639 |#4|)))) (-788) (-845) (-306) (-944 |#3| |#1| |#2|)) (T -911))
+((-3169 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *6 *4 *5)) (-5 *1 (-911 *4 *5 *6 *2)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)))) (-3169 (*1 *2 *2 *2) (-12 (-5 *2 (-1164 *6)) (-4 *6 (-944 *5 *3 *4)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-306)) (-5 *1 (-911 *3 *4 *5 *6)))) (-3169 (*1 *2 *2 *2) (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-306)) (-5 *1 (-911 *3 *4 *5 *2)) (-4 *2 (-944 *5 *3 *4)))) (-1606 (*1 *2 *3) (-12 (-5 *3 (-639 (-1164 *7))) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-5 *2 (-1164 *7)) (-5 *1 (-911 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))) (-1606 (*1 *2 *2 *2) (-12 (-5 *2 (-1164 *6)) (-4 *6 (-944 *5 *3 *4)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-306)) (-5 *1 (-911 *3 *4 *5 *6)))) (-1606 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *6 *4 *5)) (-5 *1 (-911 *4 *5 *6 *2)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)))) (-1606 (*1 *2 *2 *2) (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-306)) (-5 *1 (-911 *3 *4 *5 *2)) (-4 *2 (-944 *5 *3 *4)))))
+(-10 -7 (-15 -1606 (|#4| |#4| |#4|)) (-15 -1606 (|#4| (-639 |#4|))) (-15 -1606 ((-1164 |#4|) (-1164 |#4|) (-1164 |#4|))) (-15 -1606 ((-1164 |#4|) (-639 (-1164 |#4|)))) (-15 -3169 (|#4| |#4| |#4|)) (-15 -3169 ((-1164 |#4|) (-1164 |#4|) (-1164 |#4|))) (-15 -3169 (|#4| (-639 |#4|))))
+((-2855 (((-899 (-562)) (-966)) 23) (((-899 (-562)) (-639 (-562))) 20)) (-2523 (((-899 (-562)) (-639 (-562))) 48) (((-899 (-562)) (-916)) 49)) (-3524 (((-899 (-562))) 24)) (-2952 (((-899 (-562))) 38) (((-899 (-562)) (-639 (-562))) 37)) (-1415 (((-899 (-562))) 36) (((-899 (-562)) (-639 (-562))) 35)) (-3353 (((-899 (-562))) 34) (((-899 (-562)) (-639 (-562))) 33)) (-3784 (((-899 (-562))) 32) (((-899 (-562)) (-639 (-562))) 31)) (-2549 (((-899 (-562))) 30) (((-899 (-562)) (-639 (-562))) 29)) (-2545 (((-899 (-562))) 40) (((-899 (-562)) (-639 (-562))) 39)) (-4002 (((-899 (-562)) (-639 (-562))) 52) (((-899 (-562)) (-916)) 53)) (-1324 (((-899 (-562)) (-639 (-562))) 50) (((-899 (-562)) (-916)) 51)) (-1422 (((-899 (-562)) (-639 (-562))) 46) (((-899 (-562)) (-916)) 47)) (-2686 (((-899 (-562)) (-639 (-916))) 43)))
+(((-912) (-10 -7 (-15 -2523 ((-899 (-562)) (-916))) (-15 -2523 ((-899 (-562)) (-639 (-562)))) (-15 -1422 ((-899 (-562)) (-916))) (-15 -1422 ((-899 (-562)) (-639 (-562)))) (-15 -2686 ((-899 (-562)) (-639 (-916)))) (-15 -1324 ((-899 (-562)) (-916))) (-15 -1324 ((-899 (-562)) (-639 (-562)))) (-15 -4002 ((-899 (-562)) (-916))) (-15 -4002 ((-899 (-562)) (-639 (-562)))) (-15 -2549 ((-899 (-562)) (-639 (-562)))) (-15 -2549 ((-899 (-562)))) (-15 -3784 ((-899 (-562)) (-639 (-562)))) (-15 -3784 ((-899 (-562)))) (-15 -3353 ((-899 (-562)) (-639 (-562)))) (-15 -3353 ((-899 (-562)))) (-15 -1415 ((-899 (-562)) (-639 (-562)))) (-15 -1415 ((-899 (-562)))) (-15 -2952 ((-899 (-562)) (-639 (-562)))) (-15 -2952 ((-899 (-562)))) (-15 -2545 ((-899 (-562)) (-639 (-562)))) (-15 -2545 ((-899 (-562)))) (-15 -3524 ((-899 (-562)))) (-15 -2855 ((-899 (-562)) (-639 (-562)))) (-15 -2855 ((-899 (-562)) (-966))))) (T -912))
+((-2855 (*1 *2 *3) (-12 (-5 *3 (-966)) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2855 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-3524 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2545 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2545 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2952 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2952 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-1415 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-1415 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-3353 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-3353 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-3784 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-3784 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2549 (*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2549 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-4002 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-4002 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-1324 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-1324 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2686 (*1 *2 *3) (-12 (-5 *3 (-639 (-916))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-1422 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-1422 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2523 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))) (-2523 (*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+(-10 -7 (-15 -2523 ((-899 (-562)) (-916))) (-15 -2523 ((-899 (-562)) (-639 (-562)))) (-15 -1422 ((-899 (-562)) (-916))) (-15 -1422 ((-899 (-562)) (-639 (-562)))) (-15 -2686 ((-899 (-562)) (-639 (-916)))) (-15 -1324 ((-899 (-562)) (-916))) (-15 -1324 ((-899 (-562)) (-639 (-562)))) (-15 -4002 ((-899 (-562)) (-916))) (-15 -4002 ((-899 (-562)) (-639 (-562)))) (-15 -2549 ((-899 (-562)) (-639 (-562)))) (-15 -2549 ((-899 (-562)))) (-15 -3784 ((-899 (-562)) (-639 (-562)))) (-15 -3784 ((-899 (-562)))) (-15 -3353 ((-899 (-562)) (-639 (-562)))) (-15 -3353 ((-899 (-562)))) (-15 -1415 ((-899 (-562)) (-639 (-562)))) (-15 -1415 ((-899 (-562)))) (-15 -2952 ((-899 (-562)) (-639 (-562)))) (-15 -2952 ((-899 (-562)))) (-15 -2545 ((-899 (-562)) (-639 (-562)))) (-15 -2545 ((-899 (-562)))) (-15 -3524 ((-899 (-562)))) (-15 -2855 ((-899 (-562)) (-639 (-562)))) (-15 -2855 ((-899 (-562)) (-966))))
+((-3584 (((-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168))) 12)) (-2797 (((-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168))) 11)))
+(((-913 |#1|) (-10 -7 (-15 -2797 ((-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -3584 ((-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168))))) (-451)) (T -913))
+((-3584 (*1 *2 *2 *3) (-12 (-5 *2 (-639 (-947 *4))) (-5 *3 (-639 (-1168))) (-4 *4 (-451)) (-5 *1 (-913 *4)))) (-2797 (*1 *2 *2 *3) (-12 (-5 *2 (-639 (-947 *4))) (-5 *3 (-639 (-1168))) (-4 *4 (-451)) (-5 *1 (-913 *4)))))
+(-10 -7 (-15 -2797 ((-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -3584 ((-639 (-947 |#1|)) (-639 (-947 |#1|)) (-639 (-1168)))))
+((-4053 (((-315 |#1|) (-476)) 16)))
+(((-914 |#1|) (-10 -7 (-15 -4053 ((-315 |#1|) (-476)))) (-13 (-845) (-554))) (T -914))
+((-4053 (*1 *2 *3) (-12 (-5 *3 (-476)) (-5 *2 (-315 *4)) (-5 *1 (-914 *4)) (-4 *4 (-13 (-845) (-554))))))
+(-10 -7 (-15 -4053 ((-315 |#1|) (-476))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-4367 (((-112) $) 31)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-915) (-139)) (T -915))
-((-2527 (*1 *2 *3) (-12 (-4 *1 (-915)) (-5 *2 (-2 (|:| -4221 (-639 *1)) (|:| -3148 *1))) (-5 *3 (-639 *1)))) (-3870 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-639 *1)) (-4 *1 (-915)))))
-(-13 (-451) (-10 -8 (-15 -2527 ((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $))) (-15 -3870 ((-3 (-639 $) "failed") (-639 $) $))))
+((-2288 (*1 *2 *3) (-12 (-4 *1 (-915)) (-5 *2 (-2 (|:| -4221 (-639 *1)) (|:| -3147 *1))) (-5 *3 (-639 *1)))) (-1879 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-639 *1)) (-4 *1 (-915)))))
+(-13 (-451) (-10 -8 (-15 -2288 ((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $))) (-15 -1879 ((-3 (-639 $) "failed") (-639 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-289) . T) ((-451) . T) ((-554) . T) ((-642 $) . T) ((-712 $) . T) ((-721) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) NIL)) (-1957 (((-112) $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1606 (($ $ $) NIL)) (-4054 (((-857) $) NIL)) (-2294 (($) NIL T CONST)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-766)) NIL) (($ $ (-916)) NIL)) (* (($ (-916) $) NIL) (($ $ $) NIL)))
-(((-916) (-13 (-789) (-721) (-10 -8 (-15 -1606 ($ $ $)) (-6 (-4404 "*"))))) (T -916))
+((-4041 (((-112) $ $) NIL)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) NIL)) (-4367 (((-112) $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1606 (($ $ $) NIL)) (-4053 (((-857) $) NIL)) (-2294 (($) NIL T CONST)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-766)) NIL) (($ $ (-916)) NIL)) (* (($ (-916) $) NIL) (($ $ $) NIL)))
+(((-916) (-13 (-789) (-721) (-10 -8 (-15 -1606 ($ $ $)) (-6 (-4405 "*"))))) (T -916))
((-1606 (*1 *1 *1 *1) (-5 *1 (-916))))
-(-13 (-789) (-721) (-10 -8 (-15 -1606 ($ $ $)) (-6 (-4404 "*"))))
+(-13 (-789) (-721) (-10 -8 (-15 -1606 ($ $ $)) (-6 (-4405 "*"))))
((|NonNegativeInteger|) (< 0 |#1|))
-((-3159 ((|#2| (-639 |#1|) (-639 |#1|)) 24)))
-(((-917 |#1| |#2|) (-10 -7 (-15 -3159 (|#2| (-639 |#1|) (-639 |#1|)))) (-362) (-1232 |#1|)) (T -917))
-((-3159 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-362)) (-4 *2 (-1232 *4)) (-5 *1 (-917 *4 *2)))))
-(-10 -7 (-15 -3159 (|#2| (-639 |#1|) (-639 |#1|))))
-((-2607 (((-1164 |#2|) (-639 |#2|) (-639 |#2|)) 17) (((-1229 |#1| |#2|) (-1229 |#1| |#2|) (-639 |#2|) (-639 |#2|)) 13)))
-(((-918 |#1| |#2|) (-10 -7 (-15 -2607 ((-1229 |#1| |#2|) (-1229 |#1| |#2|) (-639 |#2|) (-639 |#2|))) (-15 -2607 ((-1164 |#2|) (-639 |#2|) (-639 |#2|)))) (-1168) (-362)) (T -918))
-((-2607 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *5)) (-4 *5 (-362)) (-5 *2 (-1164 *5)) (-5 *1 (-918 *4 *5)) (-14 *4 (-1168)))) (-2607 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1229 *4 *5)) (-5 *3 (-639 *5)) (-14 *4 (-1168)) (-4 *5 (-362)) (-5 *1 (-918 *4 *5)))))
-(-10 -7 (-15 -2607 ((-1229 |#1| |#2|) (-1229 |#1| |#2|) (-639 |#2|) (-639 |#2|))) (-15 -2607 ((-1164 |#2|) (-639 |#2|) (-639 |#2|))))
-((-2426 (((-562) (-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-1150)) 139)) (-1888 ((|#4| |#4|) 155)) (-2443 (((-639 (-406 (-947 |#1|))) (-639 (-1168))) 119)) (-3807 (((-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))) (-683 |#4|) (-639 (-406 (-947 |#1|))) (-639 (-639 |#4|)) (-766) (-766) (-562)) 75)) (-1830 (((-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))) (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))) (-639 |#4|)) 59)) (-4340 (((-683 |#4|) (-683 |#4|) (-639 |#4|)) 55)) (-2170 (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-1150)) 151)) (-3932 (((-562) (-683 |#4|) (-916) (-1150)) 133) (((-562) (-683 |#4|) (-639 (-1168)) (-916) (-1150)) 132) (((-562) (-683 |#4|) (-639 |#4|) (-916) (-1150)) 131) (((-562) (-683 |#4|) (-1150)) 128) (((-562) (-683 |#4|) (-639 (-1168)) (-1150)) 127) (((-562) (-683 |#4|) (-639 |#4|) (-1150)) 126) (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-916)) 125) (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 (-1168)) (-916)) 124) (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 |#4|) (-916)) 123) (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|)) 121) (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 (-1168))) 120) (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 |#4|)) 116)) (-2135 ((|#4| (-947 |#1|)) 68)) (-3514 (((-112) (-639 |#4|) (-639 (-639 |#4|))) 152)) (-2120 (((-639 (-639 (-562))) (-562) (-562)) 130)) (-2501 (((-639 (-639 |#4|)) (-639 (-639 |#4|))) 88)) (-3848 (((-766) (-639 (-2 (|:| -2173 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|))))) 86)) (-2163 (((-766) (-639 (-2 (|:| -2173 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|))))) 85)) (-1875 (((-112) (-639 (-947 |#1|))) 17) (((-112) (-639 |#4|)) 13)) (-3635 (((-2 (|:| |sysok| (-112)) (|:| |z0| (-639 |#4|)) (|:| |n0| (-639 |#4|))) (-639 |#4|) (-639 |#4|)) 71)) (-3275 (((-639 |#4|) |#4|) 49)) (-3320 (((-639 (-406 (-947 |#1|))) (-639 |#4|)) 115) (((-683 (-406 (-947 |#1|))) (-683 |#4|)) 56) (((-406 (-947 |#1|)) |#4|) 112)) (-3662 (((-2 (|:| |rgl| (-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))))))) (|:| |rgsz| (-562))) (-683 |#4|) (-639 (-406 (-947 |#1|))) (-766) (-1150) (-562)) 93)) (-3294 (((-639 (-2 (|:| -2173 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))) (-683 |#4|) (-766)) 84)) (-3021 (((-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562))))) (-683 |#4|) (-766)) 102)) (-1357 (((-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))) (-2 (|:| -1545 (-683 (-406 (-947 |#1|)))) (|:| |vec| (-639 (-406 (-947 |#1|)))) (|:| -2173 (-766)) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562))))) 48)))
-(((-919 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3932 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 |#4|))) (-15 -3932 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 (-1168)))) (-15 -3932 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|))) (-15 -3932 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 |#4|) (-916))) (-15 -3932 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 (-1168)) (-916))) (-15 -3932 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-916))) (-15 -3932 ((-562) (-683 |#4|) (-639 |#4|) (-1150))) (-15 -3932 ((-562) (-683 |#4|) (-639 (-1168)) (-1150))) (-15 -3932 ((-562) (-683 |#4|) (-1150))) (-15 -3932 ((-562) (-683 |#4|) (-639 |#4|) (-916) (-1150))) (-15 -3932 ((-562) (-683 |#4|) (-639 (-1168)) (-916) (-1150))) (-15 -3932 ((-562) (-683 |#4|) (-916) (-1150))) (-15 -2426 ((-562) (-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-1150))) (-15 -2170 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-1150))) (-15 -3662 ((-2 (|:| |rgl| (-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))))))) (|:| |rgsz| (-562))) (-683 |#4|) (-639 (-406 (-947 |#1|))) (-766) (-1150) (-562))) (-15 -3320 ((-406 (-947 |#1|)) |#4|)) (-15 -3320 ((-683 (-406 (-947 |#1|))) (-683 |#4|))) (-15 -3320 ((-639 (-406 (-947 |#1|))) (-639 |#4|))) (-15 -2443 ((-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -2135 (|#4| (-947 |#1|))) (-15 -3635 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-639 |#4|)) (|:| |n0| (-639 |#4|))) (-639 |#4|) (-639 |#4|))) (-15 -3294 ((-639 (-2 (|:| -2173 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))) (-683 |#4|) (-766))) (-15 -1830 ((-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))) (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))) (-639 |#4|))) (-15 -1357 ((-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))) (-2 (|:| -1545 (-683 (-406 (-947 |#1|)))) (|:| |vec| (-639 (-406 (-947 |#1|)))) (|:| -2173 (-766)) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (-15 -3275 ((-639 |#4|) |#4|)) (-15 -2163 ((-766) (-639 (-2 (|:| -2173 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))))) (-15 -3848 ((-766) (-639 (-2 (|:| -2173 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))))) (-15 -2501 ((-639 (-639 |#4|)) (-639 (-639 |#4|)))) (-15 -2120 ((-639 (-639 (-562))) (-562) (-562))) (-15 -3514 ((-112) (-639 |#4|) (-639 (-639 |#4|)))) (-15 -3021 ((-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562))))) (-683 |#4|) (-766))) (-15 -4340 ((-683 |#4|) (-683 |#4|) (-639 |#4|))) (-15 -3807 ((-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))) (-683 |#4|) (-639 (-406 (-947 |#1|))) (-639 (-639 |#4|)) (-766) (-766) (-562))) (-15 -1888 (|#4| |#4|)) (-15 -1875 ((-112) (-639 |#4|))) (-15 -1875 ((-112) (-639 (-947 |#1|))))) (-13 (-306) (-146)) (-13 (-845) (-610 (-1168))) (-788) (-944 |#1| |#3| |#2|)) (T -919))
-((-1875 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-112)) (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))) (-1875 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-112)) (-5 *1 (-919 *4 *5 *6 *7)))) (-1888 (*1 *2 *2) (-12 (-4 *3 (-13 (-306) (-146))) (-4 *4 (-13 (-845) (-610 (-1168)))) (-4 *5 (-788)) (-5 *1 (-919 *3 *4 *5 *2)) (-4 *2 (-944 *3 *5 *4)))) (-3807 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562))))) (-5 *4 (-683 *12)) (-5 *5 (-639 (-406 (-947 *9)))) (-5 *6 (-639 (-639 *12))) (-5 *7 (-766)) (-5 *8 (-562)) (-4 *9 (-13 (-306) (-146))) (-4 *12 (-944 *9 *11 *10)) (-4 *10 (-13 (-845) (-610 (-1168)))) (-4 *11 (-788)) (-5 *2 (-2 (|:| |eqzro| (-639 *12)) (|:| |neqzro| (-639 *12)) (|:| |wcond| (-639 (-947 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *9)))) (|:| -3928 (-639 (-1256 (-406 (-947 *9))))))))) (-5 *1 (-919 *9 *10 *11 *12)))) (-4340 (*1 *2 *2 *3) (-12 (-5 *2 (-683 *7)) (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *1 (-919 *4 *5 *6 *7)))) (-3021 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *8)) (-5 *4 (-766)) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-639 (-2 (|:| |det| *8) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (-5 *1 (-919 *5 *6 *7 *8)))) (-3514 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-639 *8))) (-5 *3 (-639 *8)) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-112)) (-5 *1 (-919 *5 *6 *7 *8)))) (-2120 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-639 (-639 (-562)))) (-5 *1 (-919 *4 *5 *6 *7)) (-5 *3 (-562)) (-4 *7 (-944 *4 *6 *5)))) (-2501 (*1 *2 *2) (-12 (-5 *2 (-639 (-639 *6))) (-4 *6 (-944 *3 *5 *4)) (-4 *3 (-13 (-306) (-146))) (-4 *4 (-13 (-845) (-610 (-1168)))) (-4 *5 (-788)) (-5 *1 (-919 *3 *4 *5 *6)))) (-3848 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -2173 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| *7) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 *7))))) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-766)) (-5 *1 (-919 *4 *5 *6 *7)))) (-2163 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -2173 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| *7) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 *7))))) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-766)) (-5 *1 (-919 *4 *5 *6 *7)))) (-3275 (*1 *2 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-639 *3)) (-5 *1 (-919 *4 *5 *6 *3)) (-4 *3 (-944 *4 *6 *5)))) (-1357 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1545 (-683 (-406 (-947 *4)))) (|:| |vec| (-639 (-406 (-947 *4)))) (|:| -2173 (-766)) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562))))) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-2 (|:| |partsol| (-1256 (-406 (-947 *4)))) (|:| -3928 (-639 (-1256 (-406 (-947 *4))))))) (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))) (-1830 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1256 (-406 (-947 *4)))) (|:| -3928 (-639 (-1256 (-406 (-947 *4))))))) (-5 *3 (-639 *7)) (-4 *4 (-13 (-306) (-146))) (-4 *7 (-944 *4 *6 *5)) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *1 (-919 *4 *5 *6 *7)))) (-3294 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *8)) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-639 (-2 (|:| -2173 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| *8) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 *8))))) (-5 *1 (-919 *5 *6 *7 *8)) (-5 *4 (-766)))) (-3635 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-4 *7 (-944 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-112)) (|:| |z0| (-639 *7)) (|:| |n0| (-639 *7)))) (-5 *1 (-919 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-2135 (*1 *2 *3) (-12 (-5 *3 (-947 *4)) (-4 *4 (-13 (-306) (-146))) (-4 *2 (-944 *4 *6 *5)) (-5 *1 (-919 *4 *5 *6 *2)) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)))) (-2443 (*1 *2 *3) (-12 (-5 *3 (-639 (-1168))) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-639 (-406 (-947 *4)))) (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))) (-3320 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-639 (-406 (-947 *4)))) (-5 *1 (-919 *4 *5 *6 *7)))) (-3320 (*1 *2 *3) (-12 (-5 *3 (-683 *7)) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-683 (-406 (-947 *4)))) (-5 *1 (-919 *4 *5 *6 *7)))) (-3320 (*1 *2 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-406 (-947 *4))) (-5 *1 (-919 *4 *5 *6 *3)) (-4 *3 (-944 *4 *6 *5)))) (-3662 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-683 *11)) (-5 *4 (-639 (-406 (-947 *8)))) (-5 *5 (-766)) (-5 *6 (-1150)) (-4 *8 (-13 (-306) (-146))) (-4 *11 (-944 *8 *10 *9)) (-4 *9 (-13 (-845) (-610 (-1168)))) (-4 *10 (-788)) (-5 *2 (-2 (|:| |rgl| (-639 (-2 (|:| |eqzro| (-639 *11)) (|:| |neqzro| (-639 *11)) (|:| |wcond| (-639 (-947 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *8)))) (|:| -3928 (-639 (-1256 (-406 (-947 *8)))))))))) (|:| |rgsz| (-562)))) (-5 *1 (-919 *8 *9 *10 *11)) (-5 *7 (-562)))) (-2170 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *7)) (|:| |neqzro| (-639 *7)) (|:| |wcond| (-639 (-947 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *4)))) (|:| -3928 (-639 (-1256 (-406 (-947 *4)))))))))) (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))) (-2426 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8)) (|:| |wcond| (-639 (-947 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *5)))) (|:| -3928 (-639 (-1256 (-406 (-947 *5)))))))))) (-5 *4 (-1150)) (-4 *5 (-13 (-306) (-146))) (-4 *8 (-944 *5 *7 *6)) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *5 *6 *7 *8)))) (-3932 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *9)) (-5 *4 (-916)) (-5 *5 (-1150)) (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146))) (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *6 *7 *8 *9)))) (-3932 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-683 *10)) (-5 *4 (-639 (-1168))) (-5 *5 (-916)) (-5 *6 (-1150)) (-4 *10 (-944 *7 *9 *8)) (-4 *7 (-13 (-306) (-146))) (-4 *8 (-13 (-845) (-610 (-1168)))) (-4 *9 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *7 *8 *9 *10)))) (-3932 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-683 *10)) (-5 *4 (-639 *10)) (-5 *5 (-916)) (-5 *6 (-1150)) (-4 *10 (-944 *7 *9 *8)) (-4 *7 (-13 (-306) (-146))) (-4 *8 (-13 (-845) (-610 (-1168)))) (-4 *9 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *7 *8 *9 *10)))) (-3932 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *8)) (-5 *4 (-1150)) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *5 *6 *7 *8)))) (-3932 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *9)) (-5 *4 (-639 (-1168))) (-5 *5 (-1150)) (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146))) (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *6 *7 *8 *9)))) (-3932 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *9)) (-5 *4 (-639 *9)) (-5 *5 (-1150)) (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146))) (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *6 *7 *8 *9)))) (-3932 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *8)) (-5 *4 (-916)) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8)) (|:| |wcond| (-639 (-947 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *5)))) (|:| -3928 (-639 (-1256 (-406 (-947 *5)))))))))) (-5 *1 (-919 *5 *6 *7 *8)))) (-3932 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *9)) (-5 *4 (-639 (-1168))) (-5 *5 (-916)) (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146))) (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *9)) (|:| |neqzro| (-639 *9)) (|:| |wcond| (-639 (-947 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *6)))) (|:| -3928 (-639 (-1256 (-406 (-947 *6)))))))))) (-5 *1 (-919 *6 *7 *8 *9)))) (-3932 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *9)) (-5 *5 (-916)) (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146))) (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *9)) (|:| |neqzro| (-639 *9)) (|:| |wcond| (-639 (-947 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *6)))) (|:| -3928 (-639 (-1256 (-406 (-947 *6)))))))))) (-5 *1 (-919 *6 *7 *8 *9)) (-5 *4 (-639 *9)))) (-3932 (*1 *2 *3) (-12 (-5 *3 (-683 *7)) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *7)) (|:| |neqzro| (-639 *7)) (|:| |wcond| (-639 (-947 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *4)))) (|:| -3928 (-639 (-1256 (-406 (-947 *4)))))))))) (-5 *1 (-919 *4 *5 *6 *7)))) (-3932 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *8)) (-5 *4 (-639 (-1168))) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8)) (|:| |wcond| (-639 (-947 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *5)))) (|:| -3928 (-639 (-1256 (-406 (-947 *5)))))))))) (-5 *1 (-919 *5 *6 *7 *8)))) (-3932 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *8)) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8)) (|:| |wcond| (-639 (-947 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *5)))) (|:| -3928 (-639 (-1256 (-406 (-947 *5)))))))))) (-5 *1 (-919 *5 *6 *7 *8)) (-5 *4 (-639 *8)))))
-(-10 -7 (-15 -3932 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 |#4|))) (-15 -3932 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 (-1168)))) (-15 -3932 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|))) (-15 -3932 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 |#4|) (-916))) (-15 -3932 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 (-1168)) (-916))) (-15 -3932 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-916))) (-15 -3932 ((-562) (-683 |#4|) (-639 |#4|) (-1150))) (-15 -3932 ((-562) (-683 |#4|) (-639 (-1168)) (-1150))) (-15 -3932 ((-562) (-683 |#4|) (-1150))) (-15 -3932 ((-562) (-683 |#4|) (-639 |#4|) (-916) (-1150))) (-15 -3932 ((-562) (-683 |#4|) (-639 (-1168)) (-916) (-1150))) (-15 -3932 ((-562) (-683 |#4|) (-916) (-1150))) (-15 -2426 ((-562) (-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-1150))) (-15 -2170 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|))))))))) (-1150))) (-15 -3662 ((-2 (|:| |rgl| (-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))))))) (|:| |rgsz| (-562))) (-683 |#4|) (-639 (-406 (-947 |#1|))) (-766) (-1150) (-562))) (-15 -3320 ((-406 (-947 |#1|)) |#4|)) (-15 -3320 ((-683 (-406 (-947 |#1|))) (-683 |#4|))) (-15 -3320 ((-639 (-406 (-947 |#1|))) (-639 |#4|))) (-15 -2443 ((-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -2135 (|#4| (-947 |#1|))) (-15 -3635 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-639 |#4|)) (|:| |n0| (-639 |#4|))) (-639 |#4|) (-639 |#4|))) (-15 -3294 ((-639 (-2 (|:| -2173 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))) (-683 |#4|) (-766))) (-15 -1830 ((-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))) (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))) (-639 |#4|))) (-15 -1357 ((-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))) (-2 (|:| -1545 (-683 (-406 (-947 |#1|)))) (|:| |vec| (-639 (-406 (-947 |#1|)))) (|:| -2173 (-766)) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (-15 -3275 ((-639 |#4|) |#4|)) (-15 -2163 ((-766) (-639 (-2 (|:| -2173 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))))) (-15 -3848 ((-766) (-639 (-2 (|:| -2173 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))))) (-15 -2501 ((-639 (-639 |#4|)) (-639 (-639 |#4|)))) (-15 -2120 ((-639 (-639 (-562))) (-562) (-562))) (-15 -3514 ((-112) (-639 |#4|) (-639 (-639 |#4|)))) (-15 -3021 ((-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562))))) (-683 |#4|) (-766))) (-15 -4340 ((-683 |#4|) (-683 |#4|) (-639 |#4|))) (-15 -3807 ((-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -3928 (-639 (-1256 (-406 (-947 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))) (-683 |#4|) (-639 (-406 (-947 |#1|))) (-639 (-639 |#4|)) (-766) (-766) (-562))) (-15 -1888 (|#4| |#4|)) (-15 -1875 ((-112) (-639 |#4|))) (-15 -1875 ((-112) (-639 (-947 |#1|)))))
-((-2967 (((-922) |#1| (-1168)) 17) (((-922) |#1| (-1168) (-1086 (-224))) 21)) (-2352 (((-922) |#1| |#1| (-1168) (-1086 (-224))) 19) (((-922) |#1| (-1168) (-1086 (-224))) 15)))
-(((-920 |#1|) (-10 -7 (-15 -2352 ((-922) |#1| (-1168) (-1086 (-224)))) (-15 -2352 ((-922) |#1| |#1| (-1168) (-1086 (-224)))) (-15 -2967 ((-922) |#1| (-1168) (-1086 (-224)))) (-15 -2967 ((-922) |#1| (-1168)))) (-610 (-535))) (T -920))
-((-2967 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-5 *2 (-922)) (-5 *1 (-920 *3)) (-4 *3 (-610 (-535))))) (-2967 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1168)) (-5 *5 (-1086 (-224))) (-5 *2 (-922)) (-5 *1 (-920 *3)) (-4 *3 (-610 (-535))))) (-2352 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1168)) (-5 *5 (-1086 (-224))) (-5 *2 (-922)) (-5 *1 (-920 *3)) (-4 *3 (-610 (-535))))) (-2352 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1168)) (-5 *5 (-1086 (-224))) (-5 *2 (-922)) (-5 *1 (-920 *3)) (-4 *3 (-610 (-535))))))
-(-10 -7 (-15 -2352 ((-922) |#1| (-1168) (-1086 (-224)))) (-15 -2352 ((-922) |#1| |#1| (-1168) (-1086 (-224)))) (-15 -2967 ((-922) |#1| (-1168) (-1086 (-224)))) (-15 -2967 ((-922) |#1| (-1168))))
-((-1537 (($ $ (-1086 (-224)) (-1086 (-224)) (-1086 (-224))) 69)) (-1478 (((-1086 (-224)) $) 40)) (-1462 (((-1086 (-224)) $) 39)) (-1449 (((-1086 (-224)) $) 38)) (-1697 (((-639 (-639 (-224))) $) 43)) (-2031 (((-1086 (-224)) $) 41)) (-3959 (((-562) (-562)) 32)) (-1486 (((-562) (-562)) 28)) (-3745 (((-562) (-562)) 30)) (-3315 (((-112) (-112)) 35)) (-1810 (((-562)) 31)) (-3528 (($ $ (-1086 (-224))) 72) (($ $) 73)) (-4145 (($ (-1 (-938 (-224)) (-224)) (-1086 (-224))) 77) (($ (-1 (-938 (-224)) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224))) 78)) (-2352 (($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224))) 80) (($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224))) 81) (($ $ (-1086 (-224))) 75)) (-1507 (((-562)) 36)) (-1948 (((-562)) 27)) (-2722 (((-562)) 29)) (-2524 (((-639 (-639 (-938 (-224)))) $) 93)) (-2728 (((-112) (-112)) 37)) (-4054 (((-857) $) 92)) (-2070 (((-112)) 34)))
-(((-921) (-13 (-969) (-10 -8 (-15 -4145 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)))) (-15 -4145 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2352 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2352 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2352 ($ $ (-1086 (-224)))) (-15 -1537 ($ $ (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -3528 ($ $ (-1086 (-224)))) (-15 -3528 ($ $)) (-15 -2031 ((-1086 (-224)) $)) (-15 -1697 ((-639 (-639 (-224))) $)) (-15 -1948 ((-562))) (-15 -1486 ((-562) (-562))) (-15 -2722 ((-562))) (-15 -3745 ((-562) (-562))) (-15 -1810 ((-562))) (-15 -3959 ((-562) (-562))) (-15 -2070 ((-112))) (-15 -3315 ((-112) (-112))) (-15 -1507 ((-562))) (-15 -2728 ((-112) (-112)))))) (T -921))
-((-4145 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-921)))) (-4145 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-921)))) (-2352 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-921)))) (-2352 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-921)))) (-2352 (*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921)))) (-1537 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921)))) (-3528 (*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921)))) (-3528 (*1 *1 *1) (-5 *1 (-921))) (-2031 (*1 *2 *1) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921)))) (-1697 (*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-224)))) (-5 *1 (-921)))) (-1948 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-1486 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-2722 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-3745 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-1810 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-3959 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-2070 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-921)))) (-3315 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-921)))) (-1507 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-2728 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-921)))))
-(-13 (-969) (-10 -8 (-15 -4145 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)))) (-15 -4145 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2352 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2352 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2352 ($ $ (-1086 (-224)))) (-15 -1537 ($ $ (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -3528 ($ $ (-1086 (-224)))) (-15 -3528 ($ $)) (-15 -2031 ((-1086 (-224)) $)) (-15 -1697 ((-639 (-639 (-224))) $)) (-15 -1948 ((-562))) (-15 -1486 ((-562) (-562))) (-15 -2722 ((-562))) (-15 -3745 ((-562) (-562))) (-15 -1810 ((-562))) (-15 -3959 ((-562) (-562))) (-15 -2070 ((-112))) (-15 -3315 ((-112) (-112))) (-15 -1507 ((-562))) (-15 -2728 ((-112) (-112)))))
-((-1537 (($ $ (-1086 (-224))) 69) (($ $ (-1086 (-224)) (-1086 (-224))) 70)) (-1462 (((-1086 (-224)) $) 44)) (-1449 (((-1086 (-224)) $) 43)) (-2031 (((-1086 (-224)) $) 45)) (-2225 (((-562) (-562)) 37)) (-3216 (((-562) (-562)) 33)) (-3895 (((-562) (-562)) 35)) (-3541 (((-112) (-112)) 39)) (-4010 (((-562)) 36)) (-3528 (($ $ (-1086 (-224))) 73) (($ $) 74)) (-4145 (($ (-1 (-938 (-224)) (-224)) (-1086 (-224))) 83) (($ (-1 (-938 (-224)) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224))) 84)) (-2967 (($ (-1 (-224) (-224)) (-1086 (-224))) 91) (($ (-1 (-224) (-224))) 94)) (-2352 (($ (-1 (-224) (-224)) (-1086 (-224))) 78) (($ (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224))) 79) (($ (-639 (-1 (-224) (-224))) (-1086 (-224))) 86) (($ (-639 (-1 (-224) (-224))) (-1086 (-224)) (-1086 (-224))) 87) (($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224))) 80) (($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224))) 81) (($ $ (-1086 (-224))) 75)) (-3672 (((-112) $) 40)) (-1836 (((-562)) 41)) (-1990 (((-562)) 32)) (-3559 (((-562)) 34)) (-2524 (((-639 (-639 (-938 (-224)))) $) 23)) (-3103 (((-112) (-112)) 42)) (-4054 (((-857) $) 105)) (-3511 (((-112)) 38)))
-(((-922) (-13 (-950) (-10 -8 (-15 -2352 ($ (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2352 ($ (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2352 ($ (-639 (-1 (-224) (-224))) (-1086 (-224)))) (-15 -2352 ($ (-639 (-1 (-224) (-224))) (-1086 (-224)) (-1086 (-224)))) (-15 -2352 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2352 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -4145 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)))) (-15 -4145 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2967 ($ (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2967 ($ (-1 (-224) (-224)))) (-15 -2352 ($ $ (-1086 (-224)))) (-15 -3672 ((-112) $)) (-15 -1537 ($ $ (-1086 (-224)))) (-15 -1537 ($ $ (-1086 (-224)) (-1086 (-224)))) (-15 -3528 ($ $ (-1086 (-224)))) (-15 -3528 ($ $)) (-15 -2031 ((-1086 (-224)) $)) (-15 -1990 ((-562))) (-15 -3216 ((-562) (-562))) (-15 -3559 ((-562))) (-15 -3895 ((-562) (-562))) (-15 -4010 ((-562))) (-15 -2225 ((-562) (-562))) (-15 -3511 ((-112))) (-15 -3541 ((-112) (-112))) (-15 -1836 ((-562))) (-15 -3103 ((-112) (-112)))))) (T -922))
-((-2352 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2352 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2352 (*1 *1 *2 *3) (-12 (-5 *2 (-639 (-1 (-224) (-224)))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2352 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-639 (-1 (-224) (-224)))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2352 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2352 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-4145 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-4145 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2967 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2967 (*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *1 (-922)))) (-2352 (*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922)))) (-3672 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-922)))) (-1537 (*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922)))) (-1537 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922)))) (-3528 (*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922)))) (-3528 (*1 *1 *1) (-5 *1 (-922))) (-2031 (*1 *2 *1) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922)))) (-1990 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-3216 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-3559 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-3895 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-4010 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-2225 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-3511 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))) (-3541 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))) (-1836 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-3103 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
-(-13 (-950) (-10 -8 (-15 -2352 ($ (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2352 ($ (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2352 ($ (-639 (-1 (-224) (-224))) (-1086 (-224)))) (-15 -2352 ($ (-639 (-1 (-224) (-224))) (-1086 (-224)) (-1086 (-224)))) (-15 -2352 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2352 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -4145 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)))) (-15 -4145 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2967 ($ (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2967 ($ (-1 (-224) (-224)))) (-15 -2352 ($ $ (-1086 (-224)))) (-15 -3672 ((-112) $)) (-15 -1537 ($ $ (-1086 (-224)))) (-15 -1537 ($ $ (-1086 (-224)) (-1086 (-224)))) (-15 -3528 ($ $ (-1086 (-224)))) (-15 -3528 ($ $)) (-15 -2031 ((-1086 (-224)) $)) (-15 -1990 ((-562))) (-15 -3216 ((-562) (-562))) (-15 -3559 ((-562))) (-15 -3895 ((-562) (-562))) (-15 -4010 ((-562))) (-15 -2225 ((-562) (-562))) (-15 -3511 ((-112))) (-15 -3541 ((-112) (-112))) (-15 -1836 ((-562))) (-15 -3103 ((-112) (-112)))))
-((-1972 (((-639 (-1086 (-224))) (-639 (-639 (-938 (-224))))) 24)))
-(((-923) (-10 -7 (-15 -1972 ((-639 (-1086 (-224))) (-639 (-639 (-938 (-224)))))))) (T -923))
-((-1972 (*1 *2 *3) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *2 (-639 (-1086 (-224)))) (-5 *1 (-923)))))
-(-10 -7 (-15 -1972 ((-639 (-1086 (-224))) (-639 (-639 (-938 (-224)))))))
-((-3778 ((|#2| |#2|) 26)) (-3096 ((|#2| |#2|) 27)) (-1497 ((|#2| |#2|) 25)) (-3977 ((|#2| |#2| (-1150)) 24)))
-(((-924 |#1| |#2|) (-10 -7 (-15 -3977 (|#2| |#2| (-1150))) (-15 -1497 (|#2| |#2|)) (-15 -3778 (|#2| |#2|)) (-15 -3096 (|#2| |#2|))) (-845) (-429 |#1|)) (T -924))
-((-3096 (*1 *2 *2) (-12 (-4 *3 (-845)) (-5 *1 (-924 *3 *2)) (-4 *2 (-429 *3)))) (-3778 (*1 *2 *2) (-12 (-4 *3 (-845)) (-5 *1 (-924 *3 *2)) (-4 *2 (-429 *3)))) (-1497 (*1 *2 *2) (-12 (-4 *3 (-845)) (-5 *1 (-924 *3 *2)) (-4 *2 (-429 *3)))) (-3977 (*1 *2 *2 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-845)) (-5 *1 (-924 *4 *2)) (-4 *2 (-429 *4)))))
-(-10 -7 (-15 -3977 (|#2| |#2| (-1150))) (-15 -1497 (|#2| |#2|)) (-15 -3778 (|#2| |#2|)) (-15 -3096 (|#2| |#2|)))
-((-3778 (((-315 (-562)) (-1168)) 16)) (-3096 (((-315 (-562)) (-1168)) 14)) (-1497 (((-315 (-562)) (-1168)) 12)) (-3977 (((-315 (-562)) (-1168) (-1150)) 19)))
-(((-925) (-10 -7 (-15 -3977 ((-315 (-562)) (-1168) (-1150))) (-15 -1497 ((-315 (-562)) (-1168))) (-15 -3778 ((-315 (-562)) (-1168))) (-15 -3096 ((-315 (-562)) (-1168))))) (T -925))
-((-3096 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-315 (-562))) (-5 *1 (-925)))) (-3778 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-315 (-562))) (-5 *1 (-925)))) (-1497 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-315 (-562))) (-5 *1 (-925)))) (-3977 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-1150)) (-5 *2 (-315 (-562))) (-5 *1 (-925)))))
-(-10 -7 (-15 -3977 ((-315 (-562)) (-1168) (-1150))) (-15 -1497 ((-315 (-562)) (-1168))) (-15 -3778 ((-315 (-562)) (-1168))) (-15 -3096 ((-315 (-562)) (-1168))))
-((-2533 (((-884 |#1| |#3|) |#2| (-887 |#1|) (-884 |#1| |#3|)) 25)) (-3710 (((-1 (-112) |#2|) (-1 (-112) |#3|)) 13)))
-(((-926 |#1| |#2| |#3|) (-10 -7 (-15 -3710 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -2533 ((-884 |#1| |#3|) |#2| (-887 |#1|) (-884 |#1| |#3|)))) (-1092) (-881 |#1|) (-13 (-1092) (-1033 |#2|))) (T -926))
-((-2533 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 *6)) (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-4 *6 (-13 (-1092) (-1033 *3))) (-4 *3 (-881 *5)) (-5 *1 (-926 *5 *3 *6)))) (-3710 (*1 *2 *3) (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1092) (-1033 *5))) (-4 *5 (-881 *4)) (-4 *4 (-1092)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-926 *4 *5 *6)))))
-(-10 -7 (-15 -3710 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -2533 ((-884 |#1| |#3|) |#2| (-887 |#1|) (-884 |#1| |#3|))))
-((-2533 (((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)) 30)))
-(((-927 |#1| |#2| |#3|) (-10 -7 (-15 -2533 ((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)))) (-1092) (-13 (-554) (-845) (-881 |#1|)) (-13 (-429 |#2|) (-610 (-887 |#1|)) (-881 |#1|) (-1033 (-608 $)))) (T -927))
-((-2533 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 *3)) (-4 *5 (-1092)) (-4 *3 (-13 (-429 *6) (-610 *4) (-881 *5) (-1033 (-608 $)))) (-5 *4 (-887 *5)) (-4 *6 (-13 (-554) (-845) (-881 *5))) (-5 *1 (-927 *5 *6 *3)))))
-(-10 -7 (-15 -2533 ((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))))
-((-2533 (((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|)) 13)))
-(((-928 |#1|) (-10 -7 (-15 -2533 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|)))) (-544)) (T -928))
-((-2533 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 (-562) *3)) (-5 *4 (-887 (-562))) (-4 *3 (-544)) (-5 *1 (-928 *3)))))
-(-10 -7 (-15 -2533 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))))
-((-2533 (((-884 |#1| |#2|) (-608 |#2|) (-887 |#1|) (-884 |#1| |#2|)) 54)))
-(((-929 |#1| |#2|) (-10 -7 (-15 -2533 ((-884 |#1| |#2|) (-608 |#2|) (-887 |#1|) (-884 |#1| |#2|)))) (-1092) (-13 (-845) (-1033 (-608 $)) (-610 (-887 |#1|)) (-881 |#1|))) (T -929))
-((-2533 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 *6)) (-5 *3 (-608 *6)) (-4 *5 (-1092)) (-4 *6 (-13 (-845) (-1033 (-608 $)) (-610 *4) (-881 *5))) (-5 *4 (-887 *5)) (-5 *1 (-929 *5 *6)))))
-(-10 -7 (-15 -2533 ((-884 |#1| |#2|) (-608 |#2|) (-887 |#1|) (-884 |#1| |#2|))))
-((-2533 (((-880 |#1| |#2| |#3|) |#3| (-887 |#1|) (-880 |#1| |#2| |#3|)) 15)))
-(((-930 |#1| |#2| |#3|) (-10 -7 (-15 -2533 ((-880 |#1| |#2| |#3|) |#3| (-887 |#1|) (-880 |#1| |#2| |#3|)))) (-1092) (-881 |#1|) (-660 |#2|)) (T -930))
-((-2533 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-880 *5 *6 *3)) (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-4 *6 (-881 *5)) (-4 *3 (-660 *6)) (-5 *1 (-930 *5 *6 *3)))))
-(-10 -7 (-15 -2533 ((-880 |#1| |#2| |#3|) |#3| (-887 |#1|) (-880 |#1| |#2| |#3|))))
-((-2533 (((-884 |#1| |#5|) |#5| (-887 |#1|) (-884 |#1| |#5|)) 17 (|has| |#3| (-881 |#1|))) (((-884 |#1| |#5|) |#5| (-887 |#1|) (-884 |#1| |#5|) (-1 (-884 |#1| |#5|) |#3| (-887 |#1|) (-884 |#1| |#5|))) 16)))
-(((-931 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2533 ((-884 |#1| |#5|) |#5| (-887 |#1|) (-884 |#1| |#5|) (-1 (-884 |#1| |#5|) |#3| (-887 |#1|) (-884 |#1| |#5|)))) (IF (|has| |#3| (-881 |#1|)) (-15 -2533 ((-884 |#1| |#5|) |#5| (-887 |#1|) (-884 |#1| |#5|))) |%noBranch|)) (-1092) (-788) (-845) (-13 (-1044) (-845) (-881 |#1|)) (-13 (-944 |#4| |#2| |#3|) (-610 (-887 |#1|)))) (T -931))
-((-2533 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 *3)) (-4 *5 (-1092)) (-4 *3 (-13 (-944 *8 *6 *7) (-610 *4))) (-5 *4 (-887 *5)) (-4 *7 (-881 *5)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-13 (-1044) (-845) (-881 *5))) (-5 *1 (-931 *5 *6 *7 *8 *3)))) (-2533 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-884 *6 *3) *8 (-887 *6) (-884 *6 *3))) (-4 *8 (-845)) (-5 *2 (-884 *6 *3)) (-5 *4 (-887 *6)) (-4 *6 (-1092)) (-4 *3 (-13 (-944 *9 *7 *8) (-610 *4))) (-4 *7 (-788)) (-4 *9 (-13 (-1044) (-845) (-881 *6))) (-5 *1 (-931 *6 *7 *8 *9 *3)))))
-(-10 -7 (-15 -2533 ((-884 |#1| |#5|) |#5| (-887 |#1|) (-884 |#1| |#5|) (-1 (-884 |#1| |#5|) |#3| (-887 |#1|) (-884 |#1| |#5|)))) (IF (|has| |#3| (-881 |#1|)) (-15 -2533 ((-884 |#1| |#5|) |#5| (-887 |#1|) (-884 |#1| |#5|))) |%noBranch|))
-((-3171 ((|#2| |#2| (-639 (-1 (-112) |#3|))) 12) ((|#2| |#2| (-1 (-112) |#3|)) 13)))
-(((-932 |#1| |#2| |#3|) (-10 -7 (-15 -3171 (|#2| |#2| (-1 (-112) |#3|))) (-15 -3171 (|#2| |#2| (-639 (-1 (-112) |#3|))))) (-845) (-429 |#1|) (-1207)) (T -932))
-((-3171 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-1 (-112) *5))) (-4 *5 (-1207)) (-4 *4 (-845)) (-5 *1 (-932 *4 *2 *5)) (-4 *2 (-429 *4)))) (-3171 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1207)) (-4 *4 (-845)) (-5 *1 (-932 *4 *2 *5)) (-4 *2 (-429 *4)))))
-(-10 -7 (-15 -3171 (|#2| |#2| (-1 (-112) |#3|))) (-15 -3171 (|#2| |#2| (-639 (-1 (-112) |#3|)))))
-((-3171 (((-315 (-562)) (-1168) (-639 (-1 (-112) |#1|))) 18) (((-315 (-562)) (-1168) (-1 (-112) |#1|)) 15)))
-(((-933 |#1|) (-10 -7 (-15 -3171 ((-315 (-562)) (-1168) (-1 (-112) |#1|))) (-15 -3171 ((-315 (-562)) (-1168) (-639 (-1 (-112) |#1|))))) (-1207)) (T -933))
-((-3171 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-639 (-1 (-112) *5))) (-4 *5 (-1207)) (-5 *2 (-315 (-562))) (-5 *1 (-933 *5)))) (-3171 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1207)) (-5 *2 (-315 (-562))) (-5 *1 (-933 *5)))))
-(-10 -7 (-15 -3171 ((-315 (-562)) (-1168) (-1 (-112) |#1|))) (-15 -3171 ((-315 (-562)) (-1168) (-639 (-1 (-112) |#1|)))))
-((-2533 (((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)) 25)))
-(((-934 |#1| |#2| |#3|) (-10 -7 (-15 -2533 ((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)))) (-1092) (-13 (-554) (-881 |#1|) (-610 (-887 |#1|))) (-987 |#2|)) (T -934))
-((-2533 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 *3)) (-4 *5 (-1092)) (-4 *3 (-987 *6)) (-4 *6 (-13 (-554) (-881 *5) (-610 *4))) (-5 *4 (-887 *5)) (-5 *1 (-934 *5 *6 *3)))))
-(-10 -7 (-15 -2533 ((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))))
-((-2533 (((-884 |#1| (-1168)) (-1168) (-887 |#1|) (-884 |#1| (-1168))) 17)))
-(((-935 |#1|) (-10 -7 (-15 -2533 ((-884 |#1| (-1168)) (-1168) (-887 |#1|) (-884 |#1| (-1168))))) (-1092)) (T -935))
-((-2533 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 (-1168))) (-5 *3 (-1168)) (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-5 *1 (-935 *5)))))
-(-10 -7 (-15 -2533 ((-884 |#1| (-1168)) (-1168) (-887 |#1|) (-884 |#1| (-1168)))))
-((-1326 (((-884 |#1| |#3|) (-639 |#3|) (-639 (-887 |#1|)) (-884 |#1| |#3|) (-1 (-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))) 33)) (-2533 (((-884 |#1| |#3|) (-639 |#3|) (-639 (-887 |#1|)) (-1 |#3| (-639 |#3|)) (-884 |#1| |#3|) (-1 (-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))) 32)))
-(((-936 |#1| |#2| |#3|) (-10 -7 (-15 -2533 ((-884 |#1| |#3|) (-639 |#3|) (-639 (-887 |#1|)) (-1 |#3| (-639 |#3|)) (-884 |#1| |#3|) (-1 (-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)))) (-15 -1326 ((-884 |#1| |#3|) (-639 |#3|) (-639 (-887 |#1|)) (-884 |#1| |#3|) (-1 (-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))))) (-1092) (-13 (-1044) (-845)) (-13 (-1044) (-610 (-887 |#1|)) (-1033 |#2|))) (T -936))
-((-1326 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 (-887 *6))) (-5 *5 (-1 (-884 *6 *8) *8 (-887 *6) (-884 *6 *8))) (-4 *6 (-1092)) (-4 *8 (-13 (-1044) (-610 (-887 *6)) (-1033 *7))) (-5 *2 (-884 *6 *8)) (-4 *7 (-13 (-1044) (-845))) (-5 *1 (-936 *6 *7 *8)))) (-2533 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-639 (-887 *7))) (-5 *5 (-1 *9 (-639 *9))) (-5 *6 (-1 (-884 *7 *9) *9 (-887 *7) (-884 *7 *9))) (-4 *7 (-1092)) (-4 *9 (-13 (-1044) (-610 (-887 *7)) (-1033 *8))) (-5 *2 (-884 *7 *9)) (-5 *3 (-639 *9)) (-4 *8 (-13 (-1044) (-845))) (-5 *1 (-936 *7 *8 *9)))))
-(-10 -7 (-15 -2533 ((-884 |#1| |#3|) (-639 |#3|) (-639 (-887 |#1|)) (-1 |#3| (-639 |#3|)) (-884 |#1| |#3|) (-1 (-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)))) (-15 -1326 ((-884 |#1| |#3|) (-639 |#3|) (-639 (-887 |#1|)) (-884 |#1| |#3|) (-1 (-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)))))
-((-1761 (((-1164 (-406 (-562))) (-562)) 62)) (-3287 (((-1164 (-562)) (-562)) 65)) (-2175 (((-1164 (-562)) (-562)) 59)) (-3022 (((-562) (-1164 (-562))) 54)) (-4342 (((-1164 (-406 (-562))) (-562)) 48)) (-2601 (((-1164 (-562)) (-562)) 37)) (-3908 (((-1164 (-562)) (-562)) 67)) (-4206 (((-1164 (-562)) (-562)) 66)) (-3160 (((-1164 (-406 (-562))) (-562)) 50)))
-(((-937) (-10 -7 (-15 -3160 ((-1164 (-406 (-562))) (-562))) (-15 -4206 ((-1164 (-562)) (-562))) (-15 -3908 ((-1164 (-562)) (-562))) (-15 -2601 ((-1164 (-562)) (-562))) (-15 -4342 ((-1164 (-406 (-562))) (-562))) (-15 -3022 ((-562) (-1164 (-562)))) (-15 -2175 ((-1164 (-562)) (-562))) (-15 -3287 ((-1164 (-562)) (-562))) (-15 -1761 ((-1164 (-406 (-562))) (-562))))) (T -937))
-((-1761 (*1 *2 *3) (-12 (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-937)) (-5 *3 (-562)))) (-3287 (*1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))) (-2175 (*1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))) (-3022 (*1 *2 *3) (-12 (-5 *3 (-1164 (-562))) (-5 *2 (-562)) (-5 *1 (-937)))) (-4342 (*1 *2 *3) (-12 (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-937)) (-5 *3 (-562)))) (-2601 (*1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))) (-3908 (*1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))) (-4206 (*1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))) (-3160 (*1 *2 *3) (-12 (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-937)) (-5 *3 (-562)))))
-(-10 -7 (-15 -3160 ((-1164 (-406 (-562))) (-562))) (-15 -4206 ((-1164 (-562)) (-562))) (-15 -3908 ((-1164 (-562)) (-562))) (-15 -2601 ((-1164 (-562)) (-562))) (-15 -4342 ((-1164 (-406 (-562))) (-562))) (-15 -3022 ((-562) (-1164 (-562)))) (-15 -2175 ((-1164 (-562)) (-562))) (-15 -3287 ((-1164 (-562)) (-562))) (-15 -1761 ((-1164 (-406 (-562))) (-562))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2911 (($ (-766)) NIL (|has| |#1| (-23)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3381 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4403))) (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) |#1|) 11 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) NIL)) (-4264 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-1460 (($ (-639 |#1|)) 13)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-2841 (((-683 |#1|) $ $) NIL (|has| |#1| (-1044)))) (-1458 (($ (-766) |#1|) 8)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) 10 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-1610 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3076 ((|#1| $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1044))))) (-3289 (((-112) $ (-766)) NIL)) (-3641 ((|#1| $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1044))))) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3297 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2716 (($ $ |#1|) NIL (|has| $ (-6 -4403)))) (-1353 (($ $ (-639 |#1|)) 26)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) 20) (($ $ (-1223 (-562))) NIL)) (-4177 ((|#1| $ $) NIL (|has| |#1| (-1044)))) (-3627 (((-916) $) 16)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1386 (($ $ $) 24)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535)))) (($ (-639 |#1|)) 17)) (-4066 (($ (-639 |#1|)) NIL)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 25) (($ (-639 $)) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1848 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1835 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-562) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-721))) (($ $ |#1|) NIL (|has| |#1| (-721)))) (-3492 (((-766) $) 14 (|has| $ (-6 -4402)))))
+((-3435 ((|#2| (-639 |#1|) (-639 |#1|)) 24)))
+(((-917 |#1| |#2|) (-10 -7 (-15 -3435 (|#2| (-639 |#1|) (-639 |#1|)))) (-362) (-1232 |#1|)) (T -917))
+((-3435 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-362)) (-4 *2 (-1232 *4)) (-5 *1 (-917 *4 *2)))))
+(-10 -7 (-15 -3435 (|#2| (-639 |#1|) (-639 |#1|))))
+((-3667 (((-1164 |#2|) (-639 |#2|) (-639 |#2|)) 17) (((-1229 |#1| |#2|) (-1229 |#1| |#2|) (-639 |#2|) (-639 |#2|)) 13)))
+(((-918 |#1| |#2|) (-10 -7 (-15 -3667 ((-1229 |#1| |#2|) (-1229 |#1| |#2|) (-639 |#2|) (-639 |#2|))) (-15 -3667 ((-1164 |#2|) (-639 |#2|) (-639 |#2|)))) (-1168) (-362)) (T -918))
+((-3667 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *5)) (-4 *5 (-362)) (-5 *2 (-1164 *5)) (-5 *1 (-918 *4 *5)) (-14 *4 (-1168)))) (-3667 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1229 *4 *5)) (-5 *3 (-639 *5)) (-14 *4 (-1168)) (-4 *5 (-362)) (-5 *1 (-918 *4 *5)))))
+(-10 -7 (-15 -3667 ((-1229 |#1| |#2|) (-1229 |#1| |#2|) (-639 |#2|) (-639 |#2|))) (-15 -3667 ((-1164 |#2|) (-639 |#2|) (-639 |#2|))))
+((-2495 (((-562) (-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-1150)) 139)) (-1858 ((|#4| |#4|) 155)) (-2641 (((-639 (-406 (-947 |#1|))) (-639 (-1168))) 119)) (-2470 (((-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))) (-683 |#4|) (-639 (-406 (-947 |#1|))) (-639 (-639 |#4|)) (-766) (-766) (-562)) 75)) (-2481 (((-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))) (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))) (-639 |#4|)) 59)) (-3771 (((-683 |#4|) (-683 |#4|) (-639 |#4|)) 55)) (-1780 (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-1150)) 151)) (-4323 (((-562) (-683 |#4|) (-916) (-1150)) 133) (((-562) (-683 |#4|) (-639 (-1168)) (-916) (-1150)) 132) (((-562) (-683 |#4|) (-639 |#4|) (-916) (-1150)) 131) (((-562) (-683 |#4|) (-1150)) 128) (((-562) (-683 |#4|) (-639 (-1168)) (-1150)) 127) (((-562) (-683 |#4|) (-639 |#4|) (-1150)) 126) (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-916)) 125) (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 (-1168)) (-916)) 124) (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 |#4|) (-916)) 123) (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|)) 121) (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 (-1168))) 120) (((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 |#4|)) 116)) (-2627 ((|#4| (-947 |#1|)) 68)) (-2642 (((-112) (-639 |#4|) (-639 (-639 |#4|))) 152)) (-2477 (((-639 (-639 (-562))) (-562) (-562)) 130)) (-2018 (((-639 (-639 |#4|)) (-639 (-639 |#4|))) 88)) (-2829 (((-766) (-639 (-2 (|:| -2172 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|))))) 86)) (-1699 (((-766) (-639 (-2 (|:| -2172 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|))))) 85)) (-1704 (((-112) (-639 (-947 |#1|))) 17) (((-112) (-639 |#4|)) 13)) (-1320 (((-2 (|:| |sysok| (-112)) (|:| |z0| (-639 |#4|)) (|:| |n0| (-639 |#4|))) (-639 |#4|) (-639 |#4|)) 71)) (-2190 (((-639 |#4|) |#4|) 49)) (-1306 (((-639 (-406 (-947 |#1|))) (-639 |#4|)) 115) (((-683 (-406 (-947 |#1|))) (-683 |#4|)) 56) (((-406 (-947 |#1|)) |#4|) 112)) (-1627 (((-2 (|:| |rgl| (-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))))))) (|:| |rgsz| (-562))) (-683 |#4|) (-639 (-406 (-947 |#1|))) (-766) (-1150) (-562)) 93)) (-4191 (((-639 (-2 (|:| -2172 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))) (-683 |#4|) (-766)) 84)) (-3480 (((-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562))))) (-683 |#4|) (-766)) 102)) (-3334 (((-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))) (-2 (|:| -1767 (-683 (-406 (-947 |#1|)))) (|:| |vec| (-639 (-406 (-947 |#1|)))) (|:| -2172 (-766)) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562))))) 48)))
+(((-919 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4323 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 |#4|))) (-15 -4323 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 (-1168)))) (-15 -4323 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|))) (-15 -4323 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 |#4|) (-916))) (-15 -4323 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 (-1168)) (-916))) (-15 -4323 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-916))) (-15 -4323 ((-562) (-683 |#4|) (-639 |#4|) (-1150))) (-15 -4323 ((-562) (-683 |#4|) (-639 (-1168)) (-1150))) (-15 -4323 ((-562) (-683 |#4|) (-1150))) (-15 -4323 ((-562) (-683 |#4|) (-639 |#4|) (-916) (-1150))) (-15 -4323 ((-562) (-683 |#4|) (-639 (-1168)) (-916) (-1150))) (-15 -4323 ((-562) (-683 |#4|) (-916) (-1150))) (-15 -2495 ((-562) (-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-1150))) (-15 -1780 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-1150))) (-15 -1627 ((-2 (|:| |rgl| (-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))))))) (|:| |rgsz| (-562))) (-683 |#4|) (-639 (-406 (-947 |#1|))) (-766) (-1150) (-562))) (-15 -1306 ((-406 (-947 |#1|)) |#4|)) (-15 -1306 ((-683 (-406 (-947 |#1|))) (-683 |#4|))) (-15 -1306 ((-639 (-406 (-947 |#1|))) (-639 |#4|))) (-15 -2641 ((-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -2627 (|#4| (-947 |#1|))) (-15 -1320 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-639 |#4|)) (|:| |n0| (-639 |#4|))) (-639 |#4|) (-639 |#4|))) (-15 -4191 ((-639 (-2 (|:| -2172 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))) (-683 |#4|) (-766))) (-15 -2481 ((-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))) (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))) (-639 |#4|))) (-15 -3334 ((-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))) (-2 (|:| -1767 (-683 (-406 (-947 |#1|)))) (|:| |vec| (-639 (-406 (-947 |#1|)))) (|:| -2172 (-766)) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (-15 -2190 ((-639 |#4|) |#4|)) (-15 -1699 ((-766) (-639 (-2 (|:| -2172 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))))) (-15 -2829 ((-766) (-639 (-2 (|:| -2172 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))))) (-15 -2018 ((-639 (-639 |#4|)) (-639 (-639 |#4|)))) (-15 -2477 ((-639 (-639 (-562))) (-562) (-562))) (-15 -2642 ((-112) (-639 |#4|) (-639 (-639 |#4|)))) (-15 -3480 ((-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562))))) (-683 |#4|) (-766))) (-15 -3771 ((-683 |#4|) (-683 |#4|) (-639 |#4|))) (-15 -2470 ((-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))) (-683 |#4|) (-639 (-406 (-947 |#1|))) (-639 (-639 |#4|)) (-766) (-766) (-562))) (-15 -1858 (|#4| |#4|)) (-15 -1704 ((-112) (-639 |#4|))) (-15 -1704 ((-112) (-639 (-947 |#1|))))) (-13 (-306) (-146)) (-13 (-845) (-610 (-1168))) (-788) (-944 |#1| |#3| |#2|)) (T -919))
+((-1704 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-112)) (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))) (-1704 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-112)) (-5 *1 (-919 *4 *5 *6 *7)))) (-1858 (*1 *2 *2) (-12 (-4 *3 (-13 (-306) (-146))) (-4 *4 (-13 (-845) (-610 (-1168)))) (-4 *5 (-788)) (-5 *1 (-919 *3 *4 *5 *2)) (-4 *2 (-944 *3 *5 *4)))) (-2470 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562))))) (-5 *4 (-683 *12)) (-5 *5 (-639 (-406 (-947 *9)))) (-5 *6 (-639 (-639 *12))) (-5 *7 (-766)) (-5 *8 (-562)) (-4 *9 (-13 (-306) (-146))) (-4 *12 (-944 *9 *11 *10)) (-4 *10 (-13 (-845) (-610 (-1168)))) (-4 *11 (-788)) (-5 *2 (-2 (|:| |eqzro| (-639 *12)) (|:| |neqzro| (-639 *12)) (|:| |wcond| (-639 (-947 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *9)))) (|:| -4291 (-639 (-1256 (-406 (-947 *9))))))))) (-5 *1 (-919 *9 *10 *11 *12)))) (-3771 (*1 *2 *2 *3) (-12 (-5 *2 (-683 *7)) (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *1 (-919 *4 *5 *6 *7)))) (-3480 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *8)) (-5 *4 (-766)) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-639 (-2 (|:| |det| *8) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (-5 *1 (-919 *5 *6 *7 *8)))) (-2642 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-639 *8))) (-5 *3 (-639 *8)) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-112)) (-5 *1 (-919 *5 *6 *7 *8)))) (-2477 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-639 (-639 (-562)))) (-5 *1 (-919 *4 *5 *6 *7)) (-5 *3 (-562)) (-4 *7 (-944 *4 *6 *5)))) (-2018 (*1 *2 *2) (-12 (-5 *2 (-639 (-639 *6))) (-4 *6 (-944 *3 *5 *4)) (-4 *3 (-13 (-306) (-146))) (-4 *4 (-13 (-845) (-610 (-1168)))) (-4 *5 (-788)) (-5 *1 (-919 *3 *4 *5 *6)))) (-2829 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -2172 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| *7) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 *7))))) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-766)) (-5 *1 (-919 *4 *5 *6 *7)))) (-1699 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -2172 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| *7) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 *7))))) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-766)) (-5 *1 (-919 *4 *5 *6 *7)))) (-2190 (*1 *2 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-639 *3)) (-5 *1 (-919 *4 *5 *6 *3)) (-4 *3 (-944 *4 *6 *5)))) (-3334 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1767 (-683 (-406 (-947 *4)))) (|:| |vec| (-639 (-406 (-947 *4)))) (|:| -2172 (-766)) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562))))) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-2 (|:| |partsol| (-1256 (-406 (-947 *4)))) (|:| -4291 (-639 (-1256 (-406 (-947 *4))))))) (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))) (-2481 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1256 (-406 (-947 *4)))) (|:| -4291 (-639 (-1256 (-406 (-947 *4))))))) (-5 *3 (-639 *7)) (-4 *4 (-13 (-306) (-146))) (-4 *7 (-944 *4 *6 *5)) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *1 (-919 *4 *5 *6 *7)))) (-4191 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *8)) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-639 (-2 (|:| -2172 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| *8) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 *8))))) (-5 *1 (-919 *5 *6 *7 *8)) (-5 *4 (-766)))) (-1320 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-4 *7 (-944 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-112)) (|:| |z0| (-639 *7)) (|:| |n0| (-639 *7)))) (-5 *1 (-919 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-2627 (*1 *2 *3) (-12 (-5 *3 (-947 *4)) (-4 *4 (-13 (-306) (-146))) (-4 *2 (-944 *4 *6 *5)) (-5 *1 (-919 *4 *5 *6 *2)) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)))) (-2641 (*1 *2 *3) (-12 (-5 *3 (-639 (-1168))) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-639 (-406 (-947 *4)))) (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))) (-1306 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-639 (-406 (-947 *4)))) (-5 *1 (-919 *4 *5 *6 *7)))) (-1306 (*1 *2 *3) (-12 (-5 *3 (-683 *7)) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-683 (-406 (-947 *4)))) (-5 *1 (-919 *4 *5 *6 *7)))) (-1306 (*1 *2 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-406 (-947 *4))) (-5 *1 (-919 *4 *5 *6 *3)) (-4 *3 (-944 *4 *6 *5)))) (-1627 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-683 *11)) (-5 *4 (-639 (-406 (-947 *8)))) (-5 *5 (-766)) (-5 *6 (-1150)) (-4 *8 (-13 (-306) (-146))) (-4 *11 (-944 *8 *10 *9)) (-4 *9 (-13 (-845) (-610 (-1168)))) (-4 *10 (-788)) (-5 *2 (-2 (|:| |rgl| (-639 (-2 (|:| |eqzro| (-639 *11)) (|:| |neqzro| (-639 *11)) (|:| |wcond| (-639 (-947 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *8)))) (|:| -4291 (-639 (-1256 (-406 (-947 *8)))))))))) (|:| |rgsz| (-562)))) (-5 *1 (-919 *8 *9 *10 *11)) (-5 *7 (-562)))) (-1780 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *7)) (|:| |neqzro| (-639 *7)) (|:| |wcond| (-639 (-947 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *4)))) (|:| -4291 (-639 (-1256 (-406 (-947 *4)))))))))) (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))) (-2495 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8)) (|:| |wcond| (-639 (-947 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *5)))) (|:| -4291 (-639 (-1256 (-406 (-947 *5)))))))))) (-5 *4 (-1150)) (-4 *5 (-13 (-306) (-146))) (-4 *8 (-944 *5 *7 *6)) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *5 *6 *7 *8)))) (-4323 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *9)) (-5 *4 (-916)) (-5 *5 (-1150)) (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146))) (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *6 *7 *8 *9)))) (-4323 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-683 *10)) (-5 *4 (-639 (-1168))) (-5 *5 (-916)) (-5 *6 (-1150)) (-4 *10 (-944 *7 *9 *8)) (-4 *7 (-13 (-306) (-146))) (-4 *8 (-13 (-845) (-610 (-1168)))) (-4 *9 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *7 *8 *9 *10)))) (-4323 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-683 *10)) (-5 *4 (-639 *10)) (-5 *5 (-916)) (-5 *6 (-1150)) (-4 *10 (-944 *7 *9 *8)) (-4 *7 (-13 (-306) (-146))) (-4 *8 (-13 (-845) (-610 (-1168)))) (-4 *9 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *7 *8 *9 *10)))) (-4323 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *8)) (-5 *4 (-1150)) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *5 *6 *7 *8)))) (-4323 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *9)) (-5 *4 (-639 (-1168))) (-5 *5 (-1150)) (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146))) (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *6 *7 *8 *9)))) (-4323 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *9)) (-5 *4 (-639 *9)) (-5 *5 (-1150)) (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146))) (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *6 *7 *8 *9)))) (-4323 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *8)) (-5 *4 (-916)) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8)) (|:| |wcond| (-639 (-947 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *5)))) (|:| -4291 (-639 (-1256 (-406 (-947 *5)))))))))) (-5 *1 (-919 *5 *6 *7 *8)))) (-4323 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *9)) (-5 *4 (-639 (-1168))) (-5 *5 (-916)) (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146))) (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *9)) (|:| |neqzro| (-639 *9)) (|:| |wcond| (-639 (-947 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *6)))) (|:| -4291 (-639 (-1256 (-406 (-947 *6)))))))))) (-5 *1 (-919 *6 *7 *8 *9)))) (-4323 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-683 *9)) (-5 *5 (-916)) (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146))) (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *9)) (|:| |neqzro| (-639 *9)) (|:| |wcond| (-639 (-947 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *6)))) (|:| -4291 (-639 (-1256 (-406 (-947 *6)))))))))) (-5 *1 (-919 *6 *7 *8 *9)) (-5 *4 (-639 *9)))) (-4323 (*1 *2 *3) (-12 (-5 *3 (-683 *7)) (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *7)) (|:| |neqzro| (-639 *7)) (|:| |wcond| (-639 (-947 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *4)))) (|:| -4291 (-639 (-1256 (-406 (-947 *4)))))))))) (-5 *1 (-919 *4 *5 *6 *7)))) (-4323 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *8)) (-5 *4 (-639 (-1168))) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8)) (|:| |wcond| (-639 (-947 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *5)))) (|:| -4291 (-639 (-1256 (-406 (-947 *5)))))))))) (-5 *1 (-919 *5 *6 *7 *8)))) (-4323 (*1 *2 *3 *4) (-12 (-5 *3 (-683 *8)) (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-639 (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8)) (|:| |wcond| (-639 (-947 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 *5)))) (|:| -4291 (-639 (-1256 (-406 (-947 *5)))))))))) (-5 *1 (-919 *5 *6 *7 *8)) (-5 *4 (-639 *8)))))
+(-10 -7 (-15 -4323 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 |#4|))) (-15 -4323 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 (-1168)))) (-15 -4323 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|))) (-15 -4323 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 |#4|) (-916))) (-15 -4323 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-639 (-1168)) (-916))) (-15 -4323 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-683 |#4|) (-916))) (-15 -4323 ((-562) (-683 |#4|) (-639 |#4|) (-1150))) (-15 -4323 ((-562) (-683 |#4|) (-639 (-1168)) (-1150))) (-15 -4323 ((-562) (-683 |#4|) (-1150))) (-15 -4323 ((-562) (-683 |#4|) (-639 |#4|) (-916) (-1150))) (-15 -4323 ((-562) (-683 |#4|) (-639 (-1168)) (-916) (-1150))) (-15 -4323 ((-562) (-683 |#4|) (-916) (-1150))) (-15 -2495 ((-562) (-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-1150))) (-15 -1780 ((-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|))))))))) (-1150))) (-15 -1627 ((-2 (|:| |rgl| (-639 (-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))))))) (|:| |rgsz| (-562))) (-683 |#4|) (-639 (-406 (-947 |#1|))) (-766) (-1150) (-562))) (-15 -1306 ((-406 (-947 |#1|)) |#4|)) (-15 -1306 ((-683 (-406 (-947 |#1|))) (-683 |#4|))) (-15 -1306 ((-639 (-406 (-947 |#1|))) (-639 |#4|))) (-15 -2641 ((-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -2627 (|#4| (-947 |#1|))) (-15 -1320 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-639 |#4|)) (|:| |n0| (-639 |#4|))) (-639 |#4|) (-639 |#4|))) (-15 -4191 ((-639 (-2 (|:| -2172 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))) (-683 |#4|) (-766))) (-15 -2481 ((-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))) (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))) (-639 |#4|))) (-15 -3334 ((-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))) (-2 (|:| -1767 (-683 (-406 (-947 |#1|)))) (|:| |vec| (-639 (-406 (-947 |#1|)))) (|:| -2172 (-766)) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (-15 -2190 ((-639 |#4|) |#4|)) (-15 -1699 ((-766) (-639 (-2 (|:| -2172 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))))) (-15 -2829 ((-766) (-639 (-2 (|:| -2172 (-766)) (|:| |eqns| (-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))) (|:| |fgb| (-639 |#4|)))))) (-15 -2018 ((-639 (-639 |#4|)) (-639 (-639 |#4|)))) (-15 -2477 ((-639 (-639 (-562))) (-562) (-562))) (-15 -2642 ((-112) (-639 |#4|) (-639 (-639 |#4|)))) (-15 -3480 ((-639 (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562))))) (-683 |#4|) (-766))) (-15 -3771 ((-683 |#4|) (-683 |#4|) (-639 |#4|))) (-15 -2470 ((-2 (|:| |eqzro| (-639 |#4|)) (|:| |neqzro| (-639 |#4|)) (|:| |wcond| (-639 (-947 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1256 (-406 (-947 |#1|)))) (|:| -4291 (-639 (-1256 (-406 (-947 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))) (-683 |#4|) (-639 (-406 (-947 |#1|))) (-639 (-639 |#4|)) (-766) (-766) (-562))) (-15 -1858 (|#4| |#4|)) (-15 -1704 ((-112) (-639 |#4|))) (-15 -1704 ((-112) (-639 (-947 |#1|)))))
+((-3012 (((-922) |#1| (-1168)) 17) (((-922) |#1| (-1168) (-1086 (-224))) 21)) (-2923 (((-922) |#1| |#1| (-1168) (-1086 (-224))) 19) (((-922) |#1| (-1168) (-1086 (-224))) 15)))
+(((-920 |#1|) (-10 -7 (-15 -2923 ((-922) |#1| (-1168) (-1086 (-224)))) (-15 -2923 ((-922) |#1| |#1| (-1168) (-1086 (-224)))) (-15 -3012 ((-922) |#1| (-1168) (-1086 (-224)))) (-15 -3012 ((-922) |#1| (-1168)))) (-610 (-535))) (T -920))
+((-3012 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-5 *2 (-922)) (-5 *1 (-920 *3)) (-4 *3 (-610 (-535))))) (-3012 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1168)) (-5 *5 (-1086 (-224))) (-5 *2 (-922)) (-5 *1 (-920 *3)) (-4 *3 (-610 (-535))))) (-2923 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1168)) (-5 *5 (-1086 (-224))) (-5 *2 (-922)) (-5 *1 (-920 *3)) (-4 *3 (-610 (-535))))) (-2923 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1168)) (-5 *5 (-1086 (-224))) (-5 *2 (-922)) (-5 *1 (-920 *3)) (-4 *3 (-610 (-535))))))
+(-10 -7 (-15 -2923 ((-922) |#1| (-1168) (-1086 (-224)))) (-15 -2923 ((-922) |#1| |#1| (-1168) (-1086 (-224)))) (-15 -3012 ((-922) |#1| (-1168) (-1086 (-224)))) (-15 -3012 ((-922) |#1| (-1168))))
+((-1677 (($ $ (-1086 (-224)) (-1086 (-224)) (-1086 (-224))) 69)) (-1478 (((-1086 (-224)) $) 40)) (-1462 (((-1086 (-224)) $) 39)) (-1448 (((-1086 (-224)) $) 38)) (-3660 (((-639 (-639 (-224))) $) 43)) (-3907 (((-1086 (-224)) $) 41)) (-1513 (((-562) (-562)) 32)) (-2485 (((-562) (-562)) 28)) (-3047 (((-562) (-562)) 30)) (-4372 (((-112) (-112)) 35)) (-2307 (((-562)) 31)) (-2776 (($ $ (-1086 (-224))) 72) (($ $) 73)) (-2616 (($ (-1 (-938 (-224)) (-224)) (-1086 (-224))) 77) (($ (-1 (-938 (-224)) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224))) 78)) (-2923 (($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224))) 80) (($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224))) 81) (($ $ (-1086 (-224))) 75)) (-2626 (((-562)) 36)) (-4284 (((-562)) 27)) (-2428 (((-562)) 29)) (-2259 (((-639 (-639 (-938 (-224)))) $) 93)) (-2478 (((-112) (-112)) 37)) (-4053 (((-857) $) 92)) (-3101 (((-112)) 34)))
+(((-921) (-13 (-969) (-10 -8 (-15 -2616 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)))) (-15 -2616 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2923 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2923 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2923 ($ $ (-1086 (-224)))) (-15 -1677 ($ $ (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2776 ($ $ (-1086 (-224)))) (-15 -2776 ($ $)) (-15 -3907 ((-1086 (-224)) $)) (-15 -3660 ((-639 (-639 (-224))) $)) (-15 -4284 ((-562))) (-15 -2485 ((-562) (-562))) (-15 -2428 ((-562))) (-15 -3047 ((-562) (-562))) (-15 -2307 ((-562))) (-15 -1513 ((-562) (-562))) (-15 -3101 ((-112))) (-15 -4372 ((-112) (-112))) (-15 -2626 ((-562))) (-15 -2478 ((-112) (-112)))))) (T -921))
+((-2616 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-921)))) (-2616 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-921)))) (-2923 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-921)))) (-2923 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-921)))) (-2923 (*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921)))) (-1677 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921)))) (-2776 (*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921)))) (-2776 (*1 *1 *1) (-5 *1 (-921))) (-3907 (*1 *2 *1) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921)))) (-3660 (*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-224)))) (-5 *1 (-921)))) (-4284 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-2485 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-2428 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-3047 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-2307 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-1513 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-3101 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-921)))) (-4372 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-921)))) (-2626 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))) (-2478 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-921)))))
+(-13 (-969) (-10 -8 (-15 -2616 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)))) (-15 -2616 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2923 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2923 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2923 ($ $ (-1086 (-224)))) (-15 -1677 ($ $ (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2776 ($ $ (-1086 (-224)))) (-15 -2776 ($ $)) (-15 -3907 ((-1086 (-224)) $)) (-15 -3660 ((-639 (-639 (-224))) $)) (-15 -4284 ((-562))) (-15 -2485 ((-562) (-562))) (-15 -2428 ((-562))) (-15 -3047 ((-562) (-562))) (-15 -2307 ((-562))) (-15 -1513 ((-562) (-562))) (-15 -3101 ((-112))) (-15 -4372 ((-112) (-112))) (-15 -2626 ((-562))) (-15 -2478 ((-112) (-112)))))
+((-1677 (($ $ (-1086 (-224))) 69) (($ $ (-1086 (-224)) (-1086 (-224))) 70)) (-1462 (((-1086 (-224)) $) 44)) (-1448 (((-1086 (-224)) $) 43)) (-3907 (((-1086 (-224)) $) 45)) (-4171 (((-562) (-562)) 37)) (-2801 (((-562) (-562)) 33)) (-2150 (((-562) (-562)) 35)) (-2874 (((-112) (-112)) 39)) (-3822 (((-562)) 36)) (-2776 (($ $ (-1086 (-224))) 73) (($ $) 74)) (-2616 (($ (-1 (-938 (-224)) (-224)) (-1086 (-224))) 83) (($ (-1 (-938 (-224)) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224))) 84)) (-3012 (($ (-1 (-224) (-224)) (-1086 (-224))) 91) (($ (-1 (-224) (-224))) 94)) (-2923 (($ (-1 (-224) (-224)) (-1086 (-224))) 78) (($ (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224))) 79) (($ (-639 (-1 (-224) (-224))) (-1086 (-224))) 86) (($ (-639 (-1 (-224) (-224))) (-1086 (-224)) (-1086 (-224))) 87) (($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224))) 80) (($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224))) 81) (($ $ (-1086 (-224))) 75)) (-3562 (((-112) $) 40)) (-2534 (((-562)) 41)) (-1626 (((-562)) 32)) (-1885 (((-562)) 34)) (-2259 (((-639 (-639 (-938 (-224)))) $) 23)) (-3103 (((-112) (-112)) 42)) (-4053 (((-857) $) 105)) (-2624 (((-112)) 38)))
+(((-922) (-13 (-950) (-10 -8 (-15 -2923 ($ (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2923 ($ (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2923 ($ (-639 (-1 (-224) (-224))) (-1086 (-224)))) (-15 -2923 ($ (-639 (-1 (-224) (-224))) (-1086 (-224)) (-1086 (-224)))) (-15 -2923 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2923 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2616 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)))) (-15 -2616 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -3012 ($ (-1 (-224) (-224)) (-1086 (-224)))) (-15 -3012 ($ (-1 (-224) (-224)))) (-15 -2923 ($ $ (-1086 (-224)))) (-15 -3562 ((-112) $)) (-15 -1677 ($ $ (-1086 (-224)))) (-15 -1677 ($ $ (-1086 (-224)) (-1086 (-224)))) (-15 -2776 ($ $ (-1086 (-224)))) (-15 -2776 ($ $)) (-15 -3907 ((-1086 (-224)) $)) (-15 -1626 ((-562))) (-15 -2801 ((-562) (-562))) (-15 -1885 ((-562))) (-15 -2150 ((-562) (-562))) (-15 -3822 ((-562))) (-15 -4171 ((-562) (-562))) (-15 -2624 ((-112))) (-15 -2874 ((-112) (-112))) (-15 -2534 ((-562))) (-15 -3103 ((-112) (-112)))))) (T -922))
+((-2923 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2923 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2923 (*1 *1 *2 *3) (-12 (-5 *2 (-639 (-1 (-224) (-224)))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2923 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-639 (-1 (-224) (-224)))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2923 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2923 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2616 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-2616 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-3012 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224))) (-5 *1 (-922)))) (-3012 (*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *1 (-922)))) (-2923 (*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922)))) (-3562 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-922)))) (-1677 (*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922)))) (-1677 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922)))) (-2776 (*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922)))) (-2776 (*1 *1 *1) (-5 *1 (-922))) (-3907 (*1 *2 *1) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922)))) (-1626 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-2801 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-1885 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-2150 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-3822 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-4171 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-2624 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))) (-2874 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))) (-2534 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))) (-3103 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
+(-13 (-950) (-10 -8 (-15 -2923 ($ (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2923 ($ (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2923 ($ (-639 (-1 (-224) (-224))) (-1086 (-224)))) (-15 -2923 ($ (-639 (-1 (-224) (-224))) (-1086 (-224)) (-1086 (-224)))) (-15 -2923 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)))) (-15 -2923 ($ (-1 (-224) (-224)) (-1 (-224) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -2616 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)))) (-15 -2616 ($ (-1 (-938 (-224)) (-224)) (-1086 (-224)) (-1086 (-224)) (-1086 (-224)))) (-15 -3012 ($ (-1 (-224) (-224)) (-1086 (-224)))) (-15 -3012 ($ (-1 (-224) (-224)))) (-15 -2923 ($ $ (-1086 (-224)))) (-15 -3562 ((-112) $)) (-15 -1677 ($ $ (-1086 (-224)))) (-15 -1677 ($ $ (-1086 (-224)) (-1086 (-224)))) (-15 -2776 ($ $ (-1086 (-224)))) (-15 -2776 ($ $)) (-15 -3907 ((-1086 (-224)) $)) (-15 -1626 ((-562))) (-15 -2801 ((-562) (-562))) (-15 -1885 ((-562))) (-15 -2150 ((-562) (-562))) (-15 -3822 ((-562))) (-15 -4171 ((-562) (-562))) (-15 -2624 ((-112))) (-15 -2874 ((-112) (-112))) (-15 -2534 ((-562))) (-15 -3103 ((-112) (-112)))))
+((-1408 (((-639 (-1086 (-224))) (-639 (-639 (-938 (-224))))) 24)))
+(((-923) (-10 -7 (-15 -1408 ((-639 (-1086 (-224))) (-639 (-639 (-938 (-224)))))))) (T -923))
+((-1408 (*1 *2 *3) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *2 (-639 (-1086 (-224)))) (-5 *1 (-923)))))
+(-10 -7 (-15 -1408 ((-639 (-1086 (-224))) (-639 (-639 (-938 (-224)))))))
+((-3778 ((|#2| |#2|) 26)) (-3097 ((|#2| |#2|) 27)) (-1497 ((|#2| |#2|) 25)) (-3976 ((|#2| |#2| (-1150)) 24)))
+(((-924 |#1| |#2|) (-10 -7 (-15 -3976 (|#2| |#2| (-1150))) (-15 -1497 (|#2| |#2|)) (-15 -3778 (|#2| |#2|)) (-15 -3097 (|#2| |#2|))) (-845) (-429 |#1|)) (T -924))
+((-3097 (*1 *2 *2) (-12 (-4 *3 (-845)) (-5 *1 (-924 *3 *2)) (-4 *2 (-429 *3)))) (-3778 (*1 *2 *2) (-12 (-4 *3 (-845)) (-5 *1 (-924 *3 *2)) (-4 *2 (-429 *3)))) (-1497 (*1 *2 *2) (-12 (-4 *3 (-845)) (-5 *1 (-924 *3 *2)) (-4 *2 (-429 *3)))) (-3976 (*1 *2 *2 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-845)) (-5 *1 (-924 *4 *2)) (-4 *2 (-429 *4)))))
+(-10 -7 (-15 -3976 (|#2| |#2| (-1150))) (-15 -1497 (|#2| |#2|)) (-15 -3778 (|#2| |#2|)) (-15 -3097 (|#2| |#2|)))
+((-3778 (((-315 (-562)) (-1168)) 16)) (-3097 (((-315 (-562)) (-1168)) 14)) (-1497 (((-315 (-562)) (-1168)) 12)) (-3976 (((-315 (-562)) (-1168) (-1150)) 19)))
+(((-925) (-10 -7 (-15 -3976 ((-315 (-562)) (-1168) (-1150))) (-15 -1497 ((-315 (-562)) (-1168))) (-15 -3778 ((-315 (-562)) (-1168))) (-15 -3097 ((-315 (-562)) (-1168))))) (T -925))
+((-3097 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-315 (-562))) (-5 *1 (-925)))) (-3778 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-315 (-562))) (-5 *1 (-925)))) (-1497 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-315 (-562))) (-5 *1 (-925)))) (-3976 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-1150)) (-5 *2 (-315 (-562))) (-5 *1 (-925)))))
+(-10 -7 (-15 -3976 ((-315 (-562)) (-1168) (-1150))) (-15 -1497 ((-315 (-562)) (-1168))) (-15 -3778 ((-315 (-562)) (-1168))) (-15 -3097 ((-315 (-562)) (-1168))))
+((-2337 (((-884 |#1| |#3|) |#2| (-887 |#1|) (-884 |#1| |#3|)) 25)) (-3955 (((-1 (-112) |#2|) (-1 (-112) |#3|)) 13)))
+(((-926 |#1| |#2| |#3|) (-10 -7 (-15 -3955 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -2337 ((-884 |#1| |#3|) |#2| (-887 |#1|) (-884 |#1| |#3|)))) (-1092) (-881 |#1|) (-13 (-1092) (-1033 |#2|))) (T -926))
+((-2337 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 *6)) (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-4 *6 (-13 (-1092) (-1033 *3))) (-4 *3 (-881 *5)) (-5 *1 (-926 *5 *3 *6)))) (-3955 (*1 *2 *3) (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1092) (-1033 *5))) (-4 *5 (-881 *4)) (-4 *4 (-1092)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-926 *4 *5 *6)))))
+(-10 -7 (-15 -3955 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -2337 ((-884 |#1| |#3|) |#2| (-887 |#1|) (-884 |#1| |#3|))))
+((-2337 (((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)) 30)))
+(((-927 |#1| |#2| |#3|) (-10 -7 (-15 -2337 ((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)))) (-1092) (-13 (-554) (-845) (-881 |#1|)) (-13 (-429 |#2|) (-610 (-887 |#1|)) (-881 |#1|) (-1033 (-608 $)))) (T -927))
+((-2337 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 *3)) (-4 *5 (-1092)) (-4 *3 (-13 (-429 *6) (-610 *4) (-881 *5) (-1033 (-608 $)))) (-5 *4 (-887 *5)) (-4 *6 (-13 (-554) (-845) (-881 *5))) (-5 *1 (-927 *5 *6 *3)))))
+(-10 -7 (-15 -2337 ((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))))
+((-2337 (((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|)) 13)))
+(((-928 |#1|) (-10 -7 (-15 -2337 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|)))) (-544)) (T -928))
+((-2337 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 (-562) *3)) (-5 *4 (-887 (-562))) (-4 *3 (-544)) (-5 *1 (-928 *3)))))
+(-10 -7 (-15 -2337 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))))
+((-2337 (((-884 |#1| |#2|) (-608 |#2|) (-887 |#1|) (-884 |#1| |#2|)) 54)))
+(((-929 |#1| |#2|) (-10 -7 (-15 -2337 ((-884 |#1| |#2|) (-608 |#2|) (-887 |#1|) (-884 |#1| |#2|)))) (-1092) (-13 (-845) (-1033 (-608 $)) (-610 (-887 |#1|)) (-881 |#1|))) (T -929))
+((-2337 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 *6)) (-5 *3 (-608 *6)) (-4 *5 (-1092)) (-4 *6 (-13 (-845) (-1033 (-608 $)) (-610 *4) (-881 *5))) (-5 *4 (-887 *5)) (-5 *1 (-929 *5 *6)))))
+(-10 -7 (-15 -2337 ((-884 |#1| |#2|) (-608 |#2|) (-887 |#1|) (-884 |#1| |#2|))))
+((-2337 (((-880 |#1| |#2| |#3|) |#3| (-887 |#1|) (-880 |#1| |#2| |#3|)) 15)))
+(((-930 |#1| |#2| |#3|) (-10 -7 (-15 -2337 ((-880 |#1| |#2| |#3|) |#3| (-887 |#1|) (-880 |#1| |#2| |#3|)))) (-1092) (-881 |#1|) (-660 |#2|)) (T -930))
+((-2337 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-880 *5 *6 *3)) (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-4 *6 (-881 *5)) (-4 *3 (-660 *6)) (-5 *1 (-930 *5 *6 *3)))))
+(-10 -7 (-15 -2337 ((-880 |#1| |#2| |#3|) |#3| (-887 |#1|) (-880 |#1| |#2| |#3|))))
+((-2337 (((-884 |#1| |#5|) |#5| (-887 |#1|) (-884 |#1| |#5|)) 17 (|has| |#3| (-881 |#1|))) (((-884 |#1| |#5|) |#5| (-887 |#1|) (-884 |#1| |#5|) (-1 (-884 |#1| |#5|) |#3| (-887 |#1|) (-884 |#1| |#5|))) 16)))
+(((-931 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2337 ((-884 |#1| |#5|) |#5| (-887 |#1|) (-884 |#1| |#5|) (-1 (-884 |#1| |#5|) |#3| (-887 |#1|) (-884 |#1| |#5|)))) (IF (|has| |#3| (-881 |#1|)) (-15 -2337 ((-884 |#1| |#5|) |#5| (-887 |#1|) (-884 |#1| |#5|))) |%noBranch|)) (-1092) (-788) (-845) (-13 (-1044) (-845) (-881 |#1|)) (-13 (-944 |#4| |#2| |#3|) (-610 (-887 |#1|)))) (T -931))
+((-2337 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 *3)) (-4 *5 (-1092)) (-4 *3 (-13 (-944 *8 *6 *7) (-610 *4))) (-5 *4 (-887 *5)) (-4 *7 (-881 *5)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-13 (-1044) (-845) (-881 *5))) (-5 *1 (-931 *5 *6 *7 *8 *3)))) (-2337 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-884 *6 *3) *8 (-887 *6) (-884 *6 *3))) (-4 *8 (-845)) (-5 *2 (-884 *6 *3)) (-5 *4 (-887 *6)) (-4 *6 (-1092)) (-4 *3 (-13 (-944 *9 *7 *8) (-610 *4))) (-4 *7 (-788)) (-4 *9 (-13 (-1044) (-845) (-881 *6))) (-5 *1 (-931 *6 *7 *8 *9 *3)))))
+(-10 -7 (-15 -2337 ((-884 |#1| |#5|) |#5| (-887 |#1|) (-884 |#1| |#5|) (-1 (-884 |#1| |#5|) |#3| (-887 |#1|) (-884 |#1| |#5|)))) (IF (|has| |#3| (-881 |#1|)) (-15 -2337 ((-884 |#1| |#5|) |#5| (-887 |#1|) (-884 |#1| |#5|))) |%noBranch|))
+((-3170 ((|#2| |#2| (-639 (-1 (-112) |#3|))) 12) ((|#2| |#2| (-1 (-112) |#3|)) 13)))
+(((-932 |#1| |#2| |#3|) (-10 -7 (-15 -3170 (|#2| |#2| (-1 (-112) |#3|))) (-15 -3170 (|#2| |#2| (-639 (-1 (-112) |#3|))))) (-845) (-429 |#1|) (-1207)) (T -932))
+((-3170 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-1 (-112) *5))) (-4 *5 (-1207)) (-4 *4 (-845)) (-5 *1 (-932 *4 *2 *5)) (-4 *2 (-429 *4)))) (-3170 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1207)) (-4 *4 (-845)) (-5 *1 (-932 *4 *2 *5)) (-4 *2 (-429 *4)))))
+(-10 -7 (-15 -3170 (|#2| |#2| (-1 (-112) |#3|))) (-15 -3170 (|#2| |#2| (-639 (-1 (-112) |#3|)))))
+((-3170 (((-315 (-562)) (-1168) (-639 (-1 (-112) |#1|))) 18) (((-315 (-562)) (-1168) (-1 (-112) |#1|)) 15)))
+(((-933 |#1|) (-10 -7 (-15 -3170 ((-315 (-562)) (-1168) (-1 (-112) |#1|))) (-15 -3170 ((-315 (-562)) (-1168) (-639 (-1 (-112) |#1|))))) (-1207)) (T -933))
+((-3170 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-639 (-1 (-112) *5))) (-4 *5 (-1207)) (-5 *2 (-315 (-562))) (-5 *1 (-933 *5)))) (-3170 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1207)) (-5 *2 (-315 (-562))) (-5 *1 (-933 *5)))))
+(-10 -7 (-15 -3170 ((-315 (-562)) (-1168) (-1 (-112) |#1|))) (-15 -3170 ((-315 (-562)) (-1168) (-639 (-1 (-112) |#1|)))))
+((-2337 (((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)) 25)))
+(((-934 |#1| |#2| |#3|) (-10 -7 (-15 -2337 ((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)))) (-1092) (-13 (-554) (-881 |#1|) (-610 (-887 |#1|))) (-987 |#2|)) (T -934))
+((-2337 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 *3)) (-4 *5 (-1092)) (-4 *3 (-987 *6)) (-4 *6 (-13 (-554) (-881 *5) (-610 *4))) (-5 *4 (-887 *5)) (-5 *1 (-934 *5 *6 *3)))))
+(-10 -7 (-15 -2337 ((-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))))
+((-2337 (((-884 |#1| (-1168)) (-1168) (-887 |#1|) (-884 |#1| (-1168))) 17)))
+(((-935 |#1|) (-10 -7 (-15 -2337 ((-884 |#1| (-1168)) (-1168) (-887 |#1|) (-884 |#1| (-1168))))) (-1092)) (T -935))
+((-2337 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-884 *5 (-1168))) (-5 *3 (-1168)) (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-5 *1 (-935 *5)))))
+(-10 -7 (-15 -2337 ((-884 |#1| (-1168)) (-1168) (-887 |#1|) (-884 |#1| (-1168)))))
+((-1898 (((-884 |#1| |#3|) (-639 |#3|) (-639 (-887 |#1|)) (-884 |#1| |#3|) (-1 (-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))) 33)) (-2337 (((-884 |#1| |#3|) (-639 |#3|) (-639 (-887 |#1|)) (-1 |#3| (-639 |#3|)) (-884 |#1| |#3|) (-1 (-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))) 32)))
+(((-936 |#1| |#2| |#3|) (-10 -7 (-15 -2337 ((-884 |#1| |#3|) (-639 |#3|) (-639 (-887 |#1|)) (-1 |#3| (-639 |#3|)) (-884 |#1| |#3|) (-1 (-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)))) (-15 -1898 ((-884 |#1| |#3|) (-639 |#3|) (-639 (-887 |#1|)) (-884 |#1| |#3|) (-1 (-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|))))) (-1092) (-13 (-1044) (-845)) (-13 (-1044) (-610 (-887 |#1|)) (-1033 |#2|))) (T -936))
+((-1898 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 (-887 *6))) (-5 *5 (-1 (-884 *6 *8) *8 (-887 *6) (-884 *6 *8))) (-4 *6 (-1092)) (-4 *8 (-13 (-1044) (-610 (-887 *6)) (-1033 *7))) (-5 *2 (-884 *6 *8)) (-4 *7 (-13 (-1044) (-845))) (-5 *1 (-936 *6 *7 *8)))) (-2337 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-639 (-887 *7))) (-5 *5 (-1 *9 (-639 *9))) (-5 *6 (-1 (-884 *7 *9) *9 (-887 *7) (-884 *7 *9))) (-4 *7 (-1092)) (-4 *9 (-13 (-1044) (-610 (-887 *7)) (-1033 *8))) (-5 *2 (-884 *7 *9)) (-5 *3 (-639 *9)) (-4 *8 (-13 (-1044) (-845))) (-5 *1 (-936 *7 *8 *9)))))
+(-10 -7 (-15 -2337 ((-884 |#1| |#3|) (-639 |#3|) (-639 (-887 |#1|)) (-1 |#3| (-639 |#3|)) (-884 |#1| |#3|) (-1 (-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)))) (-15 -1898 ((-884 |#1| |#3|) (-639 |#3|) (-639 (-887 |#1|)) (-884 |#1| |#3|) (-1 (-884 |#1| |#3|) |#3| (-887 |#1|) (-884 |#1| |#3|)))))
+((-2996 (((-1164 (-406 (-562))) (-562)) 62)) (-2302 (((-1164 (-562)) (-562)) 65)) (-1829 (((-1164 (-562)) (-562)) 59)) (-3489 (((-562) (-1164 (-562))) 54)) (-3795 (((-1164 (-406 (-562))) (-562)) 48)) (-3612 (((-1164 (-562)) (-562)) 37)) (-2286 (((-1164 (-562)) (-562)) 67)) (-1936 (((-1164 (-562)) (-562)) 66)) (-3443 (((-1164 (-406 (-562))) (-562)) 50)))
+(((-937) (-10 -7 (-15 -3443 ((-1164 (-406 (-562))) (-562))) (-15 -1936 ((-1164 (-562)) (-562))) (-15 -2286 ((-1164 (-562)) (-562))) (-15 -3612 ((-1164 (-562)) (-562))) (-15 -3795 ((-1164 (-406 (-562))) (-562))) (-15 -3489 ((-562) (-1164 (-562)))) (-15 -1829 ((-1164 (-562)) (-562))) (-15 -2302 ((-1164 (-562)) (-562))) (-15 -2996 ((-1164 (-406 (-562))) (-562))))) (T -937))
+((-2996 (*1 *2 *3) (-12 (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-937)) (-5 *3 (-562)))) (-2302 (*1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))) (-1829 (*1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))) (-3489 (*1 *2 *3) (-12 (-5 *3 (-1164 (-562))) (-5 *2 (-562)) (-5 *1 (-937)))) (-3795 (*1 *2 *3) (-12 (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-937)) (-5 *3 (-562)))) (-3612 (*1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))) (-2286 (*1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))) (-1936 (*1 *2 *3) (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))) (-3443 (*1 *2 *3) (-12 (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-937)) (-5 *3 (-562)))))
+(-10 -7 (-15 -3443 ((-1164 (-406 (-562))) (-562))) (-15 -1936 ((-1164 (-562)) (-562))) (-15 -2286 ((-1164 (-562)) (-562))) (-15 -3612 ((-1164 (-562)) (-562))) (-15 -3795 ((-1164 (-406 (-562))) (-562))) (-15 -3489 ((-562) (-1164 (-562)))) (-15 -1829 ((-1164 (-562)) (-562))) (-15 -2302 ((-1164 (-562)) (-562))) (-15 -2996 ((-1164 (-406 (-562))) (-562))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2910 (($ (-766)) NIL (|has| |#1| (-23)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3737 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4404))) (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) |#1|) 11 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) NIL)) (-4265 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-1460 (($ (-639 |#1|)) 13)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-2840 (((-683 |#1|) $ $) NIL (|has| |#1| (-1044)))) (-1458 (($ (-766) |#1|) 8)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) 10 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-4103 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3872 ((|#1| $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1044))))) (-4147 (((-112) $ (-766)) NIL)) (-3641 ((|#1| $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1044))))) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3295 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3510 (($ $ |#1|) NIL (|has| $ (-6 -4404)))) (-4316 (($ $ (-639 |#1|)) 26)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) 20) (($ $ (-1223 (-562))) NIL)) (-2852 ((|#1| $ $) NIL (|has| |#1| (-1044)))) (-4340 (((-916) $) 16)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-3247 (($ $ $) 24)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535)))) (($ (-639 |#1|)) 17)) (-4064 (($ (-639 |#1|)) NIL)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 25) (($ (-639 $)) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1847 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1836 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-562) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-721))) (($ $ |#1|) NIL (|has| |#1| (-721)))) (-3492 (((-766) $) 14 (|has| $ (-6 -4403)))))
(((-938 |#1|) (-975 |#1|) (-1044)) (T -938))
NIL
(-975 |#1|)
-((-2873 (((-480 |#1| |#2|) (-947 |#2|)) 20)) (-1745 (((-246 |#1| |#2|) (-947 |#2|)) 33)) (-4344 (((-947 |#2|) (-480 |#1| |#2|)) 25)) (-3186 (((-246 |#1| |#2|) (-480 |#1| |#2|)) 55)) (-3051 (((-947 |#2|) (-246 |#1| |#2|)) 30)) (-1594 (((-480 |#1| |#2|) (-246 |#1| |#2|)) 46)))
-(((-939 |#1| |#2|) (-10 -7 (-15 -1594 ((-480 |#1| |#2|) (-246 |#1| |#2|))) (-15 -3186 ((-246 |#1| |#2|) (-480 |#1| |#2|))) (-15 -2873 ((-480 |#1| |#2|) (-947 |#2|))) (-15 -4344 ((-947 |#2|) (-480 |#1| |#2|))) (-15 -3051 ((-947 |#2|) (-246 |#1| |#2|))) (-15 -1745 ((-246 |#1| |#2|) (-947 |#2|)))) (-639 (-1168)) (-1044)) (T -939))
-((-1745 (*1 *2 *3) (-12 (-5 *3 (-947 *5)) (-4 *5 (-1044)) (-5 *2 (-246 *4 *5)) (-5 *1 (-939 *4 *5)) (-14 *4 (-639 (-1168))))) (-3051 (*1 *2 *3) (-12 (-5 *3 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044)) (-5 *2 (-947 *5)) (-5 *1 (-939 *4 *5)))) (-4344 (*1 *2 *3) (-12 (-5 *3 (-480 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044)) (-5 *2 (-947 *5)) (-5 *1 (-939 *4 *5)))) (-2873 (*1 *2 *3) (-12 (-5 *3 (-947 *5)) (-4 *5 (-1044)) (-5 *2 (-480 *4 *5)) (-5 *1 (-939 *4 *5)) (-14 *4 (-639 (-1168))))) (-3186 (*1 *2 *3) (-12 (-5 *3 (-480 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044)) (-5 *2 (-246 *4 *5)) (-5 *1 (-939 *4 *5)))) (-1594 (*1 *2 *3) (-12 (-5 *3 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044)) (-5 *2 (-480 *4 *5)) (-5 *1 (-939 *4 *5)))))
-(-10 -7 (-15 -1594 ((-480 |#1| |#2|) (-246 |#1| |#2|))) (-15 -3186 ((-246 |#1| |#2|) (-480 |#1| |#2|))) (-15 -2873 ((-480 |#1| |#2|) (-947 |#2|))) (-15 -4344 ((-947 |#2|) (-480 |#1| |#2|))) (-15 -3051 ((-947 |#2|) (-246 |#1| |#2|))) (-15 -1745 ((-246 |#1| |#2|) (-947 |#2|))))
-((-3569 (((-639 |#2|) |#2| |#2|) 10)) (-3763 (((-766) (-639 |#1|)) 37 (|has| |#1| (-843)))) (-3323 (((-639 |#2|) |#2|) 11)) (-2414 (((-766) (-639 |#1|) (-562) (-562)) 39 (|has| |#1| (-843)))) (-2012 ((|#1| |#2|) 32 (|has| |#1| (-843)))))
-(((-940 |#1| |#2|) (-10 -7 (-15 -3569 ((-639 |#2|) |#2| |#2|)) (-15 -3323 ((-639 |#2|) |#2|)) (IF (|has| |#1| (-843)) (PROGN (-15 -2012 (|#1| |#2|)) (-15 -3763 ((-766) (-639 |#1|))) (-15 -2414 ((-766) (-639 |#1|) (-562) (-562)))) |%noBranch|)) (-362) (-1232 |#1|)) (T -940))
-((-2414 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 *5)) (-5 *4 (-562)) (-4 *5 (-843)) (-4 *5 (-362)) (-5 *2 (-766)) (-5 *1 (-940 *5 *6)) (-4 *6 (-1232 *5)))) (-3763 (*1 *2 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-843)) (-4 *4 (-362)) (-5 *2 (-766)) (-5 *1 (-940 *4 *5)) (-4 *5 (-1232 *4)))) (-2012 (*1 *2 *3) (-12 (-4 *2 (-362)) (-4 *2 (-843)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1232 *2)))) (-3323 (*1 *2 *3) (-12 (-4 *4 (-362)) (-5 *2 (-639 *3)) (-5 *1 (-940 *4 *3)) (-4 *3 (-1232 *4)))) (-3569 (*1 *2 *3 *3) (-12 (-4 *4 (-362)) (-5 *2 (-639 *3)) (-5 *1 (-940 *4 *3)) (-4 *3 (-1232 *4)))))
-(-10 -7 (-15 -3569 ((-639 |#2|) |#2| |#2|)) (-15 -3323 ((-639 |#2|) |#2|)) (IF (|has| |#1| (-843)) (PROGN (-15 -2012 (|#1| |#2|)) (-15 -3763 ((-766) (-639 |#1|))) (-15 -2414 ((-766) (-639 |#1|) (-562) (-562)))) |%noBranch|))
+((-1457 (((-480 |#1| |#2|) (-947 |#2|)) 20)) (-2889 (((-246 |#1| |#2|) (-947 |#2|)) 33)) (-3817 (((-947 |#2|) (-480 |#1| |#2|)) 25)) (-2529 (((-246 |#1| |#2|) (-480 |#1| |#2|)) 55)) (-3644 (((-947 |#2|) (-246 |#1| |#2|)) 30)) (-2178 (((-480 |#1| |#2|) (-246 |#1| |#2|)) 46)))
+(((-939 |#1| |#2|) (-10 -7 (-15 -2178 ((-480 |#1| |#2|) (-246 |#1| |#2|))) (-15 -2529 ((-246 |#1| |#2|) (-480 |#1| |#2|))) (-15 -1457 ((-480 |#1| |#2|) (-947 |#2|))) (-15 -3817 ((-947 |#2|) (-480 |#1| |#2|))) (-15 -3644 ((-947 |#2|) (-246 |#1| |#2|))) (-15 -2889 ((-246 |#1| |#2|) (-947 |#2|)))) (-639 (-1168)) (-1044)) (T -939))
+((-2889 (*1 *2 *3) (-12 (-5 *3 (-947 *5)) (-4 *5 (-1044)) (-5 *2 (-246 *4 *5)) (-5 *1 (-939 *4 *5)) (-14 *4 (-639 (-1168))))) (-3644 (*1 *2 *3) (-12 (-5 *3 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044)) (-5 *2 (-947 *5)) (-5 *1 (-939 *4 *5)))) (-3817 (*1 *2 *3) (-12 (-5 *3 (-480 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044)) (-5 *2 (-947 *5)) (-5 *1 (-939 *4 *5)))) (-1457 (*1 *2 *3) (-12 (-5 *3 (-947 *5)) (-4 *5 (-1044)) (-5 *2 (-480 *4 *5)) (-5 *1 (-939 *4 *5)) (-14 *4 (-639 (-1168))))) (-2529 (*1 *2 *3) (-12 (-5 *3 (-480 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044)) (-5 *2 (-246 *4 *5)) (-5 *1 (-939 *4 *5)))) (-2178 (*1 *2 *3) (-12 (-5 *3 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044)) (-5 *2 (-480 *4 *5)) (-5 *1 (-939 *4 *5)))))
+(-10 -7 (-15 -2178 ((-480 |#1| |#2|) (-246 |#1| |#2|))) (-15 -2529 ((-246 |#1| |#2|) (-480 |#1| |#2|))) (-15 -1457 ((-480 |#1| |#2|) (-947 |#2|))) (-15 -3817 ((-947 |#2|) (-480 |#1| |#2|))) (-15 -3644 ((-947 |#2|) (-246 |#1| |#2|))) (-15 -2889 ((-246 |#1| |#2|) (-947 |#2|))))
+((-1982 (((-639 |#2|) |#2| |#2|) 10)) (-3205 (((-766) (-639 |#1|)) 37 (|has| |#1| (-843)))) (-1334 (((-639 |#2|) |#2|) 11)) (-2392 (((-766) (-639 |#1|) (-562) (-562)) 39 (|has| |#1| (-843)))) (-3688 ((|#1| |#2|) 32 (|has| |#1| (-843)))))
+(((-940 |#1| |#2|) (-10 -7 (-15 -1982 ((-639 |#2|) |#2| |#2|)) (-15 -1334 ((-639 |#2|) |#2|)) (IF (|has| |#1| (-843)) (PROGN (-15 -3688 (|#1| |#2|)) (-15 -3205 ((-766) (-639 |#1|))) (-15 -2392 ((-766) (-639 |#1|) (-562) (-562)))) |%noBranch|)) (-362) (-1232 |#1|)) (T -940))
+((-2392 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 *5)) (-5 *4 (-562)) (-4 *5 (-843)) (-4 *5 (-362)) (-5 *2 (-766)) (-5 *1 (-940 *5 *6)) (-4 *6 (-1232 *5)))) (-3205 (*1 *2 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-843)) (-4 *4 (-362)) (-5 *2 (-766)) (-5 *1 (-940 *4 *5)) (-4 *5 (-1232 *4)))) (-3688 (*1 *2 *3) (-12 (-4 *2 (-362)) (-4 *2 (-843)) (-5 *1 (-940 *2 *3)) (-4 *3 (-1232 *2)))) (-1334 (*1 *2 *3) (-12 (-4 *4 (-362)) (-5 *2 (-639 *3)) (-5 *1 (-940 *4 *3)) (-4 *3 (-1232 *4)))) (-1982 (*1 *2 *3 *3) (-12 (-4 *4 (-362)) (-5 *2 (-639 *3)) (-5 *1 (-940 *4 *3)) (-4 *3 (-1232 *4)))))
+(-10 -7 (-15 -1982 ((-639 |#2|) |#2| |#2|)) (-15 -1334 ((-639 |#2|) |#2|)) (IF (|has| |#1| (-843)) (PROGN (-15 -3688 (|#1| |#2|)) (-15 -3205 ((-766) (-639 |#1|))) (-15 -2392 ((-766) (-639 |#1|) (-562) (-562)))) |%noBranch|))
((-4152 (((-947 |#2|) (-1 |#2| |#1|) (-947 |#1|)) 19)))
(((-941 |#1| |#2|) (-10 -7 (-15 -4152 ((-947 |#2|) (-1 |#2| |#1|) (-947 |#1|)))) (-1044) (-1044)) (T -941))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-947 *5)) (-4 *5 (-1044)) (-4 *6 (-1044)) (-5 *2 (-947 *6)) (-5 *1 (-941 *5 *6)))))
(-10 -7 (-15 -4152 ((-947 |#2|) (-1 |#2| |#1|) (-947 |#1|))))
-((-1599 (((-1229 |#1| (-947 |#2|)) (-947 |#2|) (-1252 |#1|)) 18)))
-(((-942 |#1| |#2|) (-10 -7 (-15 -1599 ((-1229 |#1| (-947 |#2|)) (-947 |#2|) (-1252 |#1|)))) (-1168) (-1044)) (T -942))
-((-1599 (*1 *2 *3 *4) (-12 (-5 *4 (-1252 *5)) (-14 *5 (-1168)) (-4 *6 (-1044)) (-5 *2 (-1229 *5 (-947 *6))) (-5 *1 (-942 *5 *6)) (-5 *3 (-947 *6)))))
-(-10 -7 (-15 -1599 ((-1229 |#1| (-947 |#2|)) (-947 |#2|) (-1252 |#1|))))
-((-1986 (((-766) $) 71) (((-766) $ (-639 |#4|)) 74)) (-2798 (($ $) 172)) (-2921 (((-417 $) $) 164)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 115)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 (-562) "failed") $) NIL) (((-3 |#4| "failed") $) 60)) (-3961 ((|#2| $) NIL) (((-406 (-562)) $) NIL) (((-562) $) NIL) ((|#4| $) 59)) (-2835 (($ $ $ |#4|) 76)) (-2406 (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) 105) (((-683 |#2|) (-683 $)) 98)) (-1498 (($ $) 179) (($ $ |#4|) 182)) (-1586 (((-639 $) $) 63)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 198) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 191)) (-1889 (((-639 $) $) 28)) (-1378 (($ |#2| |#3|) NIL) (($ $ |#4| (-766)) NIL) (($ $ (-639 |#4|) (-639 (-766))) 57)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ |#4|) 161)) (-2042 (((-3 (-639 $) "failed") $) 42)) (-1546 (((-3 (-639 $) "failed") $) 31)) (-1628 (((-3 (-2 (|:| |var| |#4|) (|:| -1960 (-766))) "failed") $) 47)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 108)) (-3986 (((-417 (-1164 $)) (-1164 $)) 121)) (-3480 (((-417 (-1164 $)) (-1164 $)) 119)) (-1635 (((-417 $) $) 139)) (-1433 (($ $ (-639 (-293 $))) 21) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-639 |#4|) (-639 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-639 |#4|) (-639 $)) NIL)) (-2455 (($ $ |#4|) 78)) (-4208 (((-887 (-378)) $) 212) (((-887 (-562)) $) 205) (((-535) $) 220)) (-3900 ((|#2| $) NIL) (($ $ |#4|) 174)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 153)) (-3906 ((|#2| $ |#3|) NIL) (($ $ |#4| (-766)) 52) (($ $ (-639 |#4|) (-639 (-766))) 55)) (-2805 (((-3 $ "failed") $) 155)) (-1759 (((-112) $ $) 185)))
-(((-943 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2741 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))) (-15 -2921 ((-417 |#1|) |#1|)) (-15 -2798 (|#1| |#1|)) (-15 -2805 ((-3 |#1| "failed") |#1|)) (-15 -1759 ((-112) |#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -2533 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -2533 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3480 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3986 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -4150 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -1289 ((-3 (-1256 |#1|) "failed") (-683 |#1|))) (-15 -1498 (|#1| |#1| |#4|)) (-15 -3900 (|#1| |#1| |#4|)) (-15 -2455 (|#1| |#1| |#4|)) (-15 -2835 (|#1| |#1| |#1| |#4|)) (-15 -1586 ((-639 |#1|) |#1|)) (-15 -1986 ((-766) |#1| (-639 |#4|))) (-15 -1986 ((-766) |#1|)) (-15 -1628 ((-3 (-2 (|:| |var| |#4|) (|:| -1960 (-766))) "failed") |#1|)) (-15 -2042 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1546 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1378 (|#1| |#1| (-639 |#4|) (-639 (-766)))) (-15 -1378 (|#1| |#1| |#4| (-766))) (-15 -2623 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1| |#4|)) (-15 -1889 ((-639 |#1|) |#1|)) (-15 -3906 (|#1| |#1| (-639 |#4|) (-639 (-766)))) (-15 -3906 (|#1| |#1| |#4| (-766))) (-15 -2406 ((-683 |#2|) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-683 (-562)) (-683 |#1|))) (-15 -4048 ((-3 |#4| "failed") |#1|)) (-15 -3961 (|#4| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#4| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#4| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -1378 (|#1| |#2| |#3|)) (-15 -3906 (|#2| |#1| |#3|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3900 (|#2| |#1|)) (-15 -1498 (|#1| |#1|))) (-944 |#2| |#3| |#4|) (-1044) (-788) (-845)) (T -943))
-NIL
-(-10 -8 (-15 -2741 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))) (-15 -2921 ((-417 |#1|) |#1|)) (-15 -2798 (|#1| |#1|)) (-15 -2805 ((-3 |#1| "failed") |#1|)) (-15 -1759 ((-112) |#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -2533 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -2533 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3480 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3986 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -4150 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -1289 ((-3 (-1256 |#1|) "failed") (-683 |#1|))) (-15 -1498 (|#1| |#1| |#4|)) (-15 -3900 (|#1| |#1| |#4|)) (-15 -2455 (|#1| |#1| |#4|)) (-15 -2835 (|#1| |#1| |#1| |#4|)) (-15 -1586 ((-639 |#1|) |#1|)) (-15 -1986 ((-766) |#1| (-639 |#4|))) (-15 -1986 ((-766) |#1|)) (-15 -1628 ((-3 (-2 (|:| |var| |#4|) (|:| -1960 (-766))) "failed") |#1|)) (-15 -2042 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1546 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1378 (|#1| |#1| (-639 |#4|) (-639 (-766)))) (-15 -1378 (|#1| |#1| |#4| (-766))) (-15 -2623 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1| |#4|)) (-15 -1889 ((-639 |#1|) |#1|)) (-15 -3906 (|#1| |#1| (-639 |#4|) (-639 (-766)))) (-15 -3906 (|#1| |#1| |#4| (-766))) (-15 -2406 ((-683 |#2|) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-683 (-562)) (-683 |#1|))) (-15 -4048 ((-3 |#4| "failed") |#1|)) (-15 -3961 (|#4| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#4| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#4| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -1378 (|#1| |#2| |#3|)) (-15 -3906 (|#2| |#1| |#3|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3900 (|#2| |#1|)) (-15 -1498 (|#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1402 (((-639 |#3|) $) 110)) (-1599 (((-1164 $) $ |#3|) 125) (((-1164 |#1|) $) 124)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 87 (|has| |#1| (-554)))) (-2796 (($ $) 88 (|has| |#1| (-554)))) (-4370 (((-112) $) 90 (|has| |#1| (-554)))) (-1986 (((-766) $) 112) (((-766) $ (-639 |#3|)) 111)) (-3214 (((-3 $ "failed") $ $) 19)) (-3026 (((-417 (-1164 $)) (-1164 $)) 100 (|has| |#1| (-904)))) (-2798 (($ $) 98 (|has| |#1| (-451)))) (-2921 (((-417 $) $) 97 (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 103 (|has| |#1| (-904)))) (-1800 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 164) (((-3 (-406 (-562)) "failed") $) 161 (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) 159 (|has| |#1| (-1033 (-562)))) (((-3 |#3| "failed") $) 136)) (-3961 ((|#1| $) 163) (((-406 (-562)) $) 162 (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) 160 (|has| |#1| (-1033 (-562)))) ((|#3| $) 137)) (-2835 (($ $ $ |#3|) 108 (|has| |#1| (-171)))) (-1601 (($ $) 154)) (-2406 (((-683 (-562)) (-683 $)) 134 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 133 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 132) (((-683 |#1|) (-683 $)) 131)) (-3668 (((-3 $ "failed") $) 33)) (-1498 (($ $) 176 (|has| |#1| (-451))) (($ $ |#3|) 105 (|has| |#1| (-451)))) (-1586 (((-639 $) $) 109)) (-2717 (((-112) $) 96 (|has| |#1| (-904)))) (-3122 (($ $ |#1| |#2| $) 172)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 84 (-12 (|has| |#3| (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 83 (-12 (|has| |#3| (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1957 (((-112) $) 31)) (-1694 (((-766) $) 169)) (-1390 (($ (-1164 |#1|) |#3|) 117) (($ (-1164 $) |#3|) 116)) (-1889 (((-639 $) $) 126)) (-3536 (((-112) $) 152)) (-1378 (($ |#1| |#2|) 153) (($ $ |#3| (-766)) 119) (($ $ (-639 |#3|) (-639 (-766))) 118)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ |#3|) 120)) (-2076 ((|#2| $) 170) (((-766) $ |#3|) 122) (((-639 (-766)) $ (-639 |#3|)) 121)) (-1551 (($ $ $) 79 (|has| |#1| (-845)))) (-2993 (($ $ $) 78 (|has| |#1| (-845)))) (-2836 (($ (-1 |#2| |#2|) $) 171)) (-4152 (($ (-1 |#1| |#1|) $) 151)) (-3372 (((-3 |#3| "failed") $) 123)) (-1560 (($ $) 149)) (-1573 ((|#1| $) 148)) (-1564 (($ (-639 $)) 94 (|has| |#1| (-451))) (($ $ $) 93 (|has| |#1| (-451)))) (-2913 (((-1150) $) 9)) (-2042 (((-3 (-639 $) "failed") $) 114)) (-1546 (((-3 (-639 $) "failed") $) 115)) (-1628 (((-3 (-2 (|:| |var| |#3|) (|:| -1960 (-766))) "failed") $) 113)) (-1709 (((-1112) $) 10)) (-1534 (((-112) $) 166)) (-1547 ((|#1| $) 167)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 95 (|has| |#1| (-451)))) (-1606 (($ (-639 $)) 92 (|has| |#1| (-451))) (($ $ $) 91 (|has| |#1| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) 102 (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) 101 (|has| |#1| (-904)))) (-1635 (((-417 $) $) 99 (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) 145) (($ $ (-293 $)) 144) (($ $ $ $) 143) (($ $ (-639 $) (-639 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-639 |#3|) (-639 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-639 |#3|) (-639 $)) 138)) (-2455 (($ $ |#3|) 107 (|has| |#1| (-171)))) (-4029 (($ $ |#3|) 42) (($ $ (-639 |#3|)) 41) (($ $ |#3| (-766)) 40) (($ $ (-639 |#3|) (-639 (-766))) 39)) (-3598 ((|#2| $) 150) (((-766) $ |#3|) 130) (((-639 (-766)) $ (-639 |#3|)) 129)) (-4208 (((-887 (-378)) $) 82 (-12 (|has| |#3| (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) 81 (-12 (|has| |#3| (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) 80 (-12 (|has| |#3| (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-3900 ((|#1| $) 175 (|has| |#1| (-451))) (($ $ |#3|) 106 (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 104 (-2246 (|has| $ (-144)) (|has| |#1| (-904))))) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 165) (($ |#3|) 135) (($ $) 85 (|has| |#1| (-554))) (($ (-406 (-562))) 72 (-4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562))))))) (-4358 (((-639 |#1|) $) 168)) (-3906 ((|#1| $ |#2|) 155) (($ $ |#3| (-766)) 128) (($ $ (-639 |#3|) (-639 (-766))) 127)) (-2805 (((-3 $ "failed") $) 73 (-4037 (-2246 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) 28)) (-3548 (($ $ $ (-766)) 173 (|has| |#1| (-171)))) (-2922 (((-112) $ $) 89 (|has| |#1| (-554)))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ |#3|) 38) (($ $ (-639 |#3|)) 37) (($ $ |#3| (-766)) 36) (($ $ (-639 |#3|) (-639 (-766))) 35)) (-1798 (((-112) $ $) 76 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 75 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 77 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 74 (|has| |#1| (-845)))) (-1859 (($ $ |#1|) 156 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 158 (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) 157 (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+((-1602 (((-1229 |#1| (-947 |#2|)) (-947 |#2|) (-1252 |#1|)) 18)))
+(((-942 |#1| |#2|) (-10 -7 (-15 -1602 ((-1229 |#1| (-947 |#2|)) (-947 |#2|) (-1252 |#1|)))) (-1168) (-1044)) (T -942))
+((-1602 (*1 *2 *3 *4) (-12 (-5 *4 (-1252 *5)) (-14 *5 (-1168)) (-4 *6 (-1044)) (-5 *2 (-1229 *5 (-947 *6))) (-5 *1 (-942 *5 *6)) (-5 *3 (-947 *6)))))
+(-10 -7 (-15 -1602 ((-1229 |#1| (-947 |#2|)) (-947 |#2|) (-1252 |#1|))))
+((-1578 (((-766) $) 71) (((-766) $ (-639 |#4|)) 74)) (-1977 (($ $) 172)) (-3788 (((-417 $) $) 164)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 115)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 (-562) "failed") $) NIL) (((-3 |#4| "failed") $) 60)) (-3960 ((|#2| $) NIL) (((-406 (-562)) $) NIL) (((-562) $) NIL) ((|#4| $) 59)) (-2355 (($ $ $ |#4|) 76)) (-3449 (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) 105) (((-683 |#2|) (-683 $)) 98)) (-2578 (($ $) 179) (($ $ |#4|) 182)) (-1585 (((-639 $) $) 63)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 198) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 191)) (-1869 (((-639 $) $) 28)) (-1377 (($ |#2| |#3|) NIL) (($ $ |#4| (-766)) NIL) (($ $ (-639 |#4|) (-639 (-766))) 57)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ |#4|) 161)) (-4025 (((-3 (-639 $) "failed") $) 42)) (-1778 (((-3 (-639 $) "failed") $) 31)) (-4270 (((-3 (-2 (|:| |var| |#4|) (|:| -1300 (-766))) "failed") $) 47)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 108)) (-3586 (((-417 (-1164 $)) (-1164 $)) 121)) (-3468 (((-417 (-1164 $)) (-1164 $)) 119)) (-1635 (((-417 $) $) 139)) (-1433 (($ $ (-639 (-293 $))) 21) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-639 |#4|) (-639 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-639 |#4|) (-639 $)) NIL)) (-2736 (($ $ |#4|) 78)) (-4208 (((-887 (-378)) $) 212) (((-887 (-562)) $) 205) (((-535) $) 220)) (-2201 ((|#2| $) NIL) (($ $ |#4|) 174)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 153)) (-2266 ((|#2| $ |#3|) NIL) (($ $ |#4| (-766)) 52) (($ $ (-639 |#4|) (-639 (-766))) 55)) (-2059 (((-3 $ "failed") $) 155)) (-1761 (((-112) $ $) 185)))
+(((-943 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2602 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))) (-15 -3788 ((-417 |#1|) |#1|)) (-15 -1977 (|#1| |#1|)) (-15 -2059 ((-3 |#1| "failed") |#1|)) (-15 -1761 ((-112) |#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -2337 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -2337 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3468 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3586 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -2654 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -1870 ((-3 (-1256 |#1|) "failed") (-683 |#1|))) (-15 -2578 (|#1| |#1| |#4|)) (-15 -2201 (|#1| |#1| |#4|)) (-15 -2736 (|#1| |#1| |#4|)) (-15 -2355 (|#1| |#1| |#1| |#4|)) (-15 -1585 ((-639 |#1|) |#1|)) (-15 -1578 ((-766) |#1| (-639 |#4|))) (-15 -1578 ((-766) |#1|)) (-15 -4270 ((-3 (-2 (|:| |var| |#4|) (|:| -1300 (-766))) "failed") |#1|)) (-15 -4025 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1778 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1377 (|#1| |#1| (-639 |#4|) (-639 (-766)))) (-15 -1377 (|#1| |#1| |#4| (-766))) (-15 -3851 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1| |#4|)) (-15 -1869 ((-639 |#1|) |#1|)) (-15 -2266 (|#1| |#1| (-639 |#4|) (-639 (-766)))) (-15 -2266 (|#1| |#1| |#4| (-766))) (-15 -3449 ((-683 |#2|) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-683 (-562)) (-683 |#1|))) (-15 -4048 ((-3 |#4| "failed") |#1|)) (-15 -3960 (|#4| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#4| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#4| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -1377 (|#1| |#2| |#3|)) (-15 -2266 (|#2| |#1| |#3|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -2201 (|#2| |#1|)) (-15 -2578 (|#1| |#1|))) (-944 |#2| |#3| |#4|) (-1044) (-788) (-845)) (T -943))
+NIL
+(-10 -8 (-15 -2602 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))) (-15 -3788 ((-417 |#1|) |#1|)) (-15 -1977 (|#1| |#1|)) (-15 -2059 ((-3 |#1| "failed") |#1|)) (-15 -1761 ((-112) |#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -2337 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -2337 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3468 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3586 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -2654 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -1870 ((-3 (-1256 |#1|) "failed") (-683 |#1|))) (-15 -2578 (|#1| |#1| |#4|)) (-15 -2201 (|#1| |#1| |#4|)) (-15 -2736 (|#1| |#1| |#4|)) (-15 -2355 (|#1| |#1| |#1| |#4|)) (-15 -1585 ((-639 |#1|) |#1|)) (-15 -1578 ((-766) |#1| (-639 |#4|))) (-15 -1578 ((-766) |#1|)) (-15 -4270 ((-3 (-2 (|:| |var| |#4|) (|:| -1300 (-766))) "failed") |#1|)) (-15 -4025 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1778 ((-3 (-639 |#1|) "failed") |#1|)) (-15 -1377 (|#1| |#1| (-639 |#4|) (-639 (-766)))) (-15 -1377 (|#1| |#1| |#4| (-766))) (-15 -3851 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1| |#4|)) (-15 -1869 ((-639 |#1|) |#1|)) (-15 -2266 (|#1| |#1| (-639 |#4|) (-639 (-766)))) (-15 -2266 (|#1| |#1| |#4| (-766))) (-15 -3449 ((-683 |#2|) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-683 (-562)) (-683 |#1|))) (-15 -4048 ((-3 |#4| "failed") |#1|)) (-15 -3960 (|#4| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#4| |#1|)) (-15 -1433 (|#1| |#1| (-639 |#4|) (-639 |#2|))) (-15 -1433 (|#1| |#1| |#4| |#2|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -1377 (|#1| |#2| |#3|)) (-15 -2266 (|#2| |#1| |#3|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -2201 (|#2| |#1|)) (-15 -2578 (|#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-1401 (((-639 |#3|) $) 110)) (-1602 (((-1164 $) $ |#3|) 125) (((-1164 |#1|) $) 124)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 87 (|has| |#1| (-554)))) (-1965 (($ $) 88 (|has| |#1| (-554)))) (-4102 (((-112) $) 90 (|has| |#1| (-554)))) (-1578 (((-766) $) 112) (((-766) $ (-639 |#3|)) 111)) (-2781 (((-3 $ "failed") $ $) 19)) (-3517 (((-417 (-1164 $)) (-1164 $)) 100 (|has| |#1| (-904)))) (-1977 (($ $) 98 (|has| |#1| (-451)))) (-3788 (((-417 $) $) 97 (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 103 (|has| |#1| (-904)))) (-3329 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 164) (((-3 (-406 (-562)) "failed") $) 161 (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) 159 (|has| |#1| (-1033 (-562)))) (((-3 |#3| "failed") $) 136)) (-3960 ((|#1| $) 163) (((-406 (-562)) $) 162 (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) 160 (|has| |#1| (-1033 (-562)))) ((|#3| $) 137)) (-2355 (($ $ $ |#3|) 108 (|has| |#1| (-171)))) (-1600 (($ $) 154)) (-3449 (((-683 (-562)) (-683 $)) 134 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 133 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 132) (((-683 |#1|) (-683 $)) 131)) (-1694 (((-3 $ "failed") $) 33)) (-2578 (($ $) 176 (|has| |#1| (-451))) (($ $ |#3|) 105 (|has| |#1| (-451)))) (-1585 (((-639 $) $) 109)) (-3521 (((-112) $) 96 (|has| |#1| (-904)))) (-3066 (($ $ |#1| |#2| $) 172)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 84 (-12 (|has| |#3| (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 83 (-12 (|has| |#3| (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-4367 (((-112) $) 31)) (-3627 (((-766) $) 169)) (-1389 (($ (-1164 |#1|) |#3|) 117) (($ (-1164 $) |#3|) 116)) (-1869 (((-639 $) $) 126)) (-2833 (((-112) $) 152)) (-1377 (($ |#1| |#2|) 153) (($ $ |#3| (-766)) 119) (($ $ (-639 |#3|) (-639 (-766))) 118)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ |#3|) 120)) (-3161 ((|#2| $) 170) (((-766) $ |#3|) 122) (((-639 (-766)) $ (-639 |#3|)) 121)) (-1551 (($ $ $) 79 (|has| |#1| (-845)))) (-2993 (($ $ $) 78 (|has| |#1| (-845)))) (-2363 (($ (-1 |#2| |#2|) $) 171)) (-4152 (($ (-1 |#1| |#1|) $) 151)) (-3640 (((-3 |#3| "failed") $) 123)) (-1560 (($ $) 149)) (-1573 ((|#1| $) 148)) (-1564 (($ (-639 $)) 94 (|has| |#1| (-451))) (($ $ $) 93 (|has| |#1| (-451)))) (-3696 (((-1150) $) 9)) (-4025 (((-3 (-639 $) "failed") $) 114)) (-1778 (((-3 (-639 $) "failed") $) 115)) (-4270 (((-3 (-2 (|:| |var| |#3|) (|:| -1300 (-766))) "failed") $) 113)) (-1709 (((-1112) $) 10)) (-1534 (((-112) $) 166)) (-1547 ((|#1| $) 167)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 95 (|has| |#1| (-451)))) (-1606 (($ (-639 $)) 92 (|has| |#1| (-451))) (($ $ $) 91 (|has| |#1| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) 102 (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) 101 (|has| |#1| (-904)))) (-1635 (((-417 $) $) 99 (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) 145) (($ $ (-293 $)) 144) (($ $ $ $) 143) (($ $ (-639 $) (-639 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-639 |#3|) (-639 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-639 |#3|) (-639 $)) 138)) (-2736 (($ $ |#3|) 107 (|has| |#1| (-171)))) (-4029 (($ $ |#3|) 42) (($ $ (-639 |#3|)) 41) (($ $ |#3| (-766)) 40) (($ $ (-639 |#3|) (-639 (-766))) 39)) (-2250 ((|#2| $) 150) (((-766) $ |#3|) 130) (((-639 (-766)) $ (-639 |#3|)) 129)) (-4208 (((-887 (-378)) $) 82 (-12 (|has| |#3| (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) 81 (-12 (|has| |#3| (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) 80 (-12 (|has| |#3| (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-2201 ((|#1| $) 175 (|has| |#1| (-451))) (($ $ |#3|) 106 (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 104 (-2245 (|has| $ (-144)) (|has| |#1| (-904))))) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 165) (($ |#3|) 135) (($ $) 85 (|has| |#1| (-554))) (($ (-406 (-562))) 72 (-4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562))))))) (-3969 (((-639 |#1|) $) 168)) (-2266 ((|#1| $ |#2|) 155) (($ $ |#3| (-766)) 128) (($ $ (-639 |#3|) (-639 (-766))) 127)) (-2059 (((-3 $ "failed") $) 73 (-4037 (-2245 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) 28)) (-1760 (($ $ $ (-766)) 173 (|has| |#1| (-171)))) (-3799 (((-112) $ $) 89 (|has| |#1| (-554)))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ |#3|) 38) (($ $ (-639 |#3|)) 37) (($ $ |#3| (-766)) 36) (($ $ (-639 |#3|) (-639 (-766))) 35)) (-1798 (((-112) $ $) 76 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 75 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 77 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 74 (|has| |#1| (-845)))) (-1859 (($ $ |#1|) 156 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 158 (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) 157 (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
(((-944 |#1| |#2| |#3|) (-139) (-1044) (-788) (-845)) (T -944))
-((-1498 (*1 *1 *1) (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))) (-3598 (*1 *2 *1 *3) (-12 (-4 *1 (-944 *4 *5 *3)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-5 *2 (-766)))) (-3598 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *6)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 (-766))))) (-3906 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-944 *4 *5 *2)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *2 (-845)))) (-3906 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *6)) (-5 *3 (-639 (-766))) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)))) (-1889 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-944 *3 *4 *5)))) (-1599 (*1 *2 *1 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-5 *2 (-1164 *1)) (-4 *1 (-944 *4 *5 *3)))) (-1599 (*1 *2 *1) (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-1164 *3)))) (-3372 (*1 *2 *1) (|partial| -12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-2076 (*1 *2 *1 *3) (-12 (-4 *1 (-944 *4 *5 *3)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-5 *2 (-766)))) (-2076 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *6)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 (-766))))) (-2623 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-944 *4 *5 *3)))) (-1378 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-944 *4 *5 *2)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *2 (-845)))) (-1378 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *6)) (-5 *3 (-639 (-766))) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)))) (-1390 (*1 *1 *2 *3) (-12 (-5 *2 (-1164 *4)) (-4 *4 (-1044)) (-4 *1 (-944 *4 *5 *3)) (-4 *5 (-788)) (-4 *3 (-845)))) (-1390 (*1 *1 *2 *3) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-944 *4 *5 *3)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)))) (-1546 (*1 *2 *1) (|partial| -12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-944 *3 *4 *5)))) (-2042 (*1 *2 *1) (|partial| -12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-944 *3 *4 *5)))) (-1628 (*1 *2 *1) (|partial| -12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| |var| *5) (|:| -1960 (-766)))))) (-1986 (*1 *2 *1) (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-766)))) (-1986 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *6)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-766)))) (-1402 (*1 *2 *1) (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *5)))) (-1586 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-944 *3 *4 *5)))) (-2835 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *3 (-171)))) (-2455 (*1 *1 *1 *2) (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *3 (-171)))) (-3900 (*1 *1 *1 *2) (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *3 (-451)))) (-1498 (*1 *1 *1 *2) (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *3 (-451)))) (-2798 (*1 *1 *1) (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))) (-2921 (*1 *2 *1) (-12 (-4 *3 (-451)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-417 *1)) (-4 *1 (-944 *3 *4 *5)))))
-(-13 (-895 |t#3|) (-325 |t#1| |t#2|) (-308 $) (-513 |t#3| |t#1|) (-513 |t#3| $) (-1033 |t#3|) (-376 |t#1|) (-10 -8 (-15 -3598 ((-766) $ |t#3|)) (-15 -3598 ((-639 (-766)) $ (-639 |t#3|))) (-15 -3906 ($ $ |t#3| (-766))) (-15 -3906 ($ $ (-639 |t#3|) (-639 (-766)))) (-15 -1889 ((-639 $) $)) (-15 -1599 ((-1164 $) $ |t#3|)) (-15 -1599 ((-1164 |t#1|) $)) (-15 -3372 ((-3 |t#3| "failed") $)) (-15 -2076 ((-766) $ |t#3|)) (-15 -2076 ((-639 (-766)) $ (-639 |t#3|))) (-15 -2623 ((-2 (|:| -2097 $) (|:| -2264 $)) $ $ |t#3|)) (-15 -1378 ($ $ |t#3| (-766))) (-15 -1378 ($ $ (-639 |t#3|) (-639 (-766)))) (-15 -1390 ($ (-1164 |t#1|) |t#3|)) (-15 -1390 ($ (-1164 $) |t#3|)) (-15 -1546 ((-3 (-639 $) "failed") $)) (-15 -2042 ((-3 (-639 $) "failed") $)) (-15 -1628 ((-3 (-2 (|:| |var| |t#3|) (|:| -1960 (-766))) "failed") $)) (-15 -1986 ((-766) $)) (-15 -1986 ((-766) $ (-639 |t#3|))) (-15 -1402 ((-639 |t#3|) $)) (-15 -1586 ((-639 $) $)) (IF (|has| |t#1| (-845)) (-6 (-845)) |%noBranch|) (IF (|has| |t#1| (-610 (-535))) (IF (|has| |t#3| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-610 (-887 (-562)))) (IF (|has| |t#3| (-610 (-887 (-562)))) (-6 (-610 (-887 (-562)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-610 (-887 (-378)))) (IF (|has| |t#3| (-610 (-887 (-378)))) (-6 (-610 (-887 (-378)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-881 (-562))) (IF (|has| |t#3| (-881 (-562))) (-6 (-881 (-562))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-881 (-378))) (IF (|has| |t#3| (-881 (-378))) (-6 (-881 (-378))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-171)) (PROGN (-15 -2835 ($ $ $ |t#3|)) (-15 -2455 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-451)) (PROGN (-6 (-451)) (-15 -3900 ($ $ |t#3|)) (-15 -1498 ($ $)) (-15 -1498 ($ $ |t#3|)) (-15 -2921 ((-417 $) $)) (-15 -2798 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4400)) (-6 -4400) |%noBranch|) (IF (|has| |t#1| (-904)) (-6 (-904)) |%noBranch|)))
+((-2578 (*1 *1 *1) (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))) (-2250 (*1 *2 *1 *3) (-12 (-4 *1 (-944 *4 *5 *3)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-5 *2 (-766)))) (-2250 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *6)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 (-766))))) (-2266 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-944 *4 *5 *2)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *2 (-845)))) (-2266 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *6)) (-5 *3 (-639 (-766))) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)))) (-1869 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-944 *3 *4 *5)))) (-1602 (*1 *2 *1 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-5 *2 (-1164 *1)) (-4 *1 (-944 *4 *5 *3)))) (-1602 (*1 *2 *1) (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-1164 *3)))) (-3640 (*1 *2 *1) (|partial| -12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-3161 (*1 *2 *1 *3) (-12 (-4 *1 (-944 *4 *5 *3)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-5 *2 (-766)))) (-3161 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *6)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 (-766))))) (-3851 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-944 *4 *5 *3)))) (-1377 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-944 *4 *5 *2)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *2 (-845)))) (-1377 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *6)) (-5 *3 (-639 (-766))) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)))) (-1389 (*1 *1 *2 *3) (-12 (-5 *2 (-1164 *4)) (-4 *4 (-1044)) (-4 *1 (-944 *4 *5 *3)) (-4 *5 (-788)) (-4 *3 (-845)))) (-1389 (*1 *1 *2 *3) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-944 *4 *5 *3)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)))) (-1778 (*1 *2 *1) (|partial| -12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-944 *3 *4 *5)))) (-4025 (*1 *2 *1) (|partial| -12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-944 *3 *4 *5)))) (-4270 (*1 *2 *1) (|partial| -12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| |var| *5) (|:| -1300 (-766)))))) (-1578 (*1 *2 *1) (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-766)))) (-1578 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *6)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-766)))) (-1401 (*1 *2 *1) (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *5)))) (-1585 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-944 *3 *4 *5)))) (-2355 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *3 (-171)))) (-2736 (*1 *1 *1 *2) (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *3 (-171)))) (-2201 (*1 *1 *1 *2) (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *3 (-451)))) (-2578 (*1 *1 *1 *2) (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *3 (-451)))) (-1977 (*1 *1 *1) (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))) (-3788 (*1 *2 *1) (-12 (-4 *3 (-451)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-417 *1)) (-4 *1 (-944 *3 *4 *5)))))
+(-13 (-895 |t#3|) (-325 |t#1| |t#2|) (-308 $) (-513 |t#3| |t#1|) (-513 |t#3| $) (-1033 |t#3|) (-376 |t#1|) (-10 -8 (-15 -2250 ((-766) $ |t#3|)) (-15 -2250 ((-639 (-766)) $ (-639 |t#3|))) (-15 -2266 ($ $ |t#3| (-766))) (-15 -2266 ($ $ (-639 |t#3|) (-639 (-766)))) (-15 -1869 ((-639 $) $)) (-15 -1602 ((-1164 $) $ |t#3|)) (-15 -1602 ((-1164 |t#1|) $)) (-15 -3640 ((-3 |t#3| "failed") $)) (-15 -3161 ((-766) $ |t#3|)) (-15 -3161 ((-639 (-766)) $ (-639 |t#3|))) (-15 -3851 ((-2 (|:| -3380 $) (|:| -1441 $)) $ $ |t#3|)) (-15 -1377 ($ $ |t#3| (-766))) (-15 -1377 ($ $ (-639 |t#3|) (-639 (-766)))) (-15 -1389 ($ (-1164 |t#1|) |t#3|)) (-15 -1389 ($ (-1164 $) |t#3|)) (-15 -1778 ((-3 (-639 $) "failed") $)) (-15 -4025 ((-3 (-639 $) "failed") $)) (-15 -4270 ((-3 (-2 (|:| |var| |t#3|) (|:| -1300 (-766))) "failed") $)) (-15 -1578 ((-766) $)) (-15 -1578 ((-766) $ (-639 |t#3|))) (-15 -1401 ((-639 |t#3|) $)) (-15 -1585 ((-639 $) $)) (IF (|has| |t#1| (-845)) (-6 (-845)) |%noBranch|) (IF (|has| |t#1| (-610 (-535))) (IF (|has| |t#3| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-610 (-887 (-562)))) (IF (|has| |t#3| (-610 (-887 (-562)))) (-6 (-610 (-887 (-562)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-610 (-887 (-378)))) (IF (|has| |t#3| (-610 (-887 (-378)))) (-6 (-610 (-887 (-378)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-881 (-562))) (IF (|has| |t#3| (-881 (-562))) (-6 (-881 (-562))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-881 (-378))) (IF (|has| |t#3| (-881 (-378))) (-6 (-881 (-378))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-171)) (PROGN (-15 -2355 ($ $ $ |t#3|)) (-15 -2736 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-451)) (PROGN (-6 (-451)) (-15 -2201 ($ $ |t#3|)) (-15 -2578 ($ $)) (-15 -2578 ($ $ |t#3|)) (-15 -3788 ((-417 $) $)) (-15 -1977 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4401)) (-6 -4401) |%noBranch|) (IF (|has| |t#1| (-904)) (-6 (-904)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-406 (-562))) |has| |#1| (-38 (-406 (-562)))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-406 (-562)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #0#) -4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562))))) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-612 |#3|) . T) ((-612 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-171))) ((-610 (-535)) -12 (|has| |#1| (-610 (-535))) (|has| |#3| (-610 (-535)))) ((-610 (-887 (-378))) -12 (|has| |#1| (-610 (-887 (-378)))) (|has| |#3| (-610 (-887 (-378))))) ((-610 (-887 (-562))) -12 (|has| |#1| (-610 (-887 (-562)))) (|has| |#3| (-610 (-887 (-562))))) ((-289) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-308 $) . T) ((-325 |#1| |#2|) . T) ((-376 |#1|) . T) ((-410 |#1|) . T) ((-451) -4037 (|has| |#1| (-904)) (|has| |#1| (-451))) ((-513 |#3| |#1|) . T) ((-513 |#3| $) . T) ((-513 $ $) . T) ((-554) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-642 #0#) |has| |#1| (-38 (-406 (-562)))) ((-642 |#1|) . T) ((-642 $) . T) ((-635 (-562)) |has| |#1| (-635 (-562))) ((-635 |#1|) . T) ((-712 #0#) |has| |#1| (-38 (-406 (-562)))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-721) . T) ((-845) |has| |#1| (-845)) ((-895 |#3|) . T) ((-881 (-378)) -12 (|has| |#1| (-881 (-378))) (|has| |#3| (-881 (-378)))) ((-881 (-562)) -12 (|has| |#1| (-881 (-562))) (|has| |#3| (-881 (-562)))) ((-904) |has| |#1| (-904)) ((-1033 (-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 |#1|) . T) ((-1033 |#3|) . T) ((-1050 #0#) |has| |#1| (-38 (-406 (-562)))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1211) |has| |#1| (-904)))
-((-1402 (((-639 |#2|) |#5|) 36)) (-1599 (((-1164 |#5|) |#5| |#2| (-1164 |#5|)) 23) (((-406 (-1164 |#5|)) |#5| |#2|) 16)) (-1390 ((|#5| (-406 (-1164 |#5|)) |#2|) 30)) (-3372 (((-3 |#2| "failed") |#5|) 65)) (-2042 (((-3 (-639 |#5|) "failed") |#5|) 59)) (-3218 (((-3 (-2 (|:| |val| |#5|) (|:| -1960 (-562))) "failed") |#5|) 47)) (-1546 (((-3 (-639 |#5|) "failed") |#5|) 61)) (-1628 (((-3 (-2 (|:| |var| |#2|) (|:| -1960 (-562))) "failed") |#5|) 51)))
-(((-945 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1402 ((-639 |#2|) |#5|)) (-15 -3372 ((-3 |#2| "failed") |#5|)) (-15 -1599 ((-406 (-1164 |#5|)) |#5| |#2|)) (-15 -1390 (|#5| (-406 (-1164 |#5|)) |#2|)) (-15 -1599 ((-1164 |#5|) |#5| |#2| (-1164 |#5|))) (-15 -1546 ((-3 (-639 |#5|) "failed") |#5|)) (-15 -2042 ((-3 (-639 |#5|) "failed") |#5|)) (-15 -1628 ((-3 (-2 (|:| |var| |#2|) (|:| -1960 (-562))) "failed") |#5|)) (-15 -3218 ((-3 (-2 (|:| |val| |#5|) (|:| -1960 (-562))) "failed") |#5|))) (-788) (-845) (-1044) (-944 |#3| |#1| |#2|) (-13 (-362) (-10 -8 (-15 -4054 ($ |#4|)) (-15 -4065 (|#4| $)) (-15 -4076 (|#4| $))))) (T -945))
-((-3218 (*1 *2 *3) (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -1960 (-562)))) (-5 *1 (-945 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $))))))) (-1628 (*1 *2 *3) (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -1960 (-562)))) (-5 *1 (-945 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $))))))) (-2042 (*1 *2 *3) (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-639 *3)) (-5 *1 (-945 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $))))))) (-1546 (*1 *2 *3) (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-639 *3)) (-5 *1 (-945 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $))))))) (-1599 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1164 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $))))) (-4 *7 (-944 *6 *5 *4)) (-4 *5 (-788)) (-4 *4 (-845)) (-4 *6 (-1044)) (-5 *1 (-945 *5 *4 *6 *7 *3)))) (-1390 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-1164 *2))) (-4 *5 (-788)) (-4 *4 (-845)) (-4 *6 (-1044)) (-4 *2 (-13 (-362) (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $))))) (-5 *1 (-945 *5 *4 *6 *7 *2)) (-4 *7 (-944 *6 *5 *4)))) (-1599 (*1 *2 *3 *4) (-12 (-4 *5 (-788)) (-4 *4 (-845)) (-4 *6 (-1044)) (-4 *7 (-944 *6 *5 *4)) (-5 *2 (-406 (-1164 *3))) (-5 *1 (-945 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $))))))) (-3372 (*1 *2 *3) (|partial| -12 (-4 *4 (-788)) (-4 *5 (-1044)) (-4 *6 (-944 *5 *4 *2)) (-4 *2 (-845)) (-5 *1 (-945 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4054 ($ *6)) (-15 -4065 (*6 $)) (-15 -4076 (*6 $))))))) (-1402 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-639 *5)) (-5 *1 (-945 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $))))))))
-(-10 -7 (-15 -1402 ((-639 |#2|) |#5|)) (-15 -3372 ((-3 |#2| "failed") |#5|)) (-15 -1599 ((-406 (-1164 |#5|)) |#5| |#2|)) (-15 -1390 (|#5| (-406 (-1164 |#5|)) |#2|)) (-15 -1599 ((-1164 |#5|) |#5| |#2| (-1164 |#5|))) (-15 -1546 ((-3 (-639 |#5|) "failed") |#5|)) (-15 -2042 ((-3 (-639 |#5|) "failed") |#5|)) (-15 -1628 ((-3 (-2 (|:| |var| |#2|) (|:| -1960 (-562))) "failed") |#5|)) (-15 -3218 ((-3 (-2 (|:| |val| |#5|) (|:| -1960 (-562))) "failed") |#5|)))
+((-1401 (((-639 |#2|) |#5|) 36)) (-1602 (((-1164 |#5|) |#5| |#2| (-1164 |#5|)) 23) (((-406 (-1164 |#5|)) |#5| |#2|) 16)) (-1389 ((|#5| (-406 (-1164 |#5|)) |#2|) 30)) (-3640 (((-3 |#2| "failed") |#5|) 65)) (-4025 (((-3 (-639 |#5|) "failed") |#5|) 59)) (-2811 (((-3 (-2 (|:| |val| |#5|) (|:| -1300 (-562))) "failed") |#5|) 47)) (-1778 (((-3 (-639 |#5|) "failed") |#5|) 61)) (-4270 (((-3 (-2 (|:| |var| |#2|) (|:| -1300 (-562))) "failed") |#5|) 51)))
+(((-945 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1401 ((-639 |#2|) |#5|)) (-15 -3640 ((-3 |#2| "failed") |#5|)) (-15 -1602 ((-406 (-1164 |#5|)) |#5| |#2|)) (-15 -1389 (|#5| (-406 (-1164 |#5|)) |#2|)) (-15 -1602 ((-1164 |#5|) |#5| |#2| (-1164 |#5|))) (-15 -1778 ((-3 (-639 |#5|) "failed") |#5|)) (-15 -4025 ((-3 (-639 |#5|) "failed") |#5|)) (-15 -4270 ((-3 (-2 (|:| |var| |#2|) (|:| -1300 (-562))) "failed") |#5|)) (-15 -2811 ((-3 (-2 (|:| |val| |#5|) (|:| -1300 (-562))) "failed") |#5|))) (-788) (-845) (-1044) (-944 |#3| |#1| |#2|) (-13 (-362) (-10 -8 (-15 -4053 ($ |#4|)) (-15 -4063 (|#4| $)) (-15 -4079 (|#4| $))))) (T -945))
+((-2811 (*1 *2 *3) (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -1300 (-562)))) (-5 *1 (-945 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $))))))) (-4270 (*1 *2 *3) (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -1300 (-562)))) (-5 *1 (-945 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $))))))) (-4025 (*1 *2 *3) (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-639 *3)) (-5 *1 (-945 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $))))))) (-1778 (*1 *2 *3) (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-639 *3)) (-5 *1 (-945 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $))))))) (-1602 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1164 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $))))) (-4 *7 (-944 *6 *5 *4)) (-4 *5 (-788)) (-4 *4 (-845)) (-4 *6 (-1044)) (-5 *1 (-945 *5 *4 *6 *7 *3)))) (-1389 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-1164 *2))) (-4 *5 (-788)) (-4 *4 (-845)) (-4 *6 (-1044)) (-4 *2 (-13 (-362) (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $))))) (-5 *1 (-945 *5 *4 *6 *7 *2)) (-4 *7 (-944 *6 *5 *4)))) (-1602 (*1 *2 *3 *4) (-12 (-4 *5 (-788)) (-4 *4 (-845)) (-4 *6 (-1044)) (-4 *7 (-944 *6 *5 *4)) (-5 *2 (-406 (-1164 *3))) (-5 *1 (-945 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $))))))) (-3640 (*1 *2 *3) (|partial| -12 (-4 *4 (-788)) (-4 *5 (-1044)) (-4 *6 (-944 *5 *4 *2)) (-4 *2 (-845)) (-5 *1 (-945 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4053 ($ *6)) (-15 -4063 (*6 $)) (-15 -4079 (*6 $))))))) (-1401 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-639 *5)) (-5 *1 (-945 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $))))))))
+(-10 -7 (-15 -1401 ((-639 |#2|) |#5|)) (-15 -3640 ((-3 |#2| "failed") |#5|)) (-15 -1602 ((-406 (-1164 |#5|)) |#5| |#2|)) (-15 -1389 (|#5| (-406 (-1164 |#5|)) |#2|)) (-15 -1602 ((-1164 |#5|) |#5| |#2| (-1164 |#5|))) (-15 -1778 ((-3 (-639 |#5|) "failed") |#5|)) (-15 -4025 ((-3 (-639 |#5|) "failed") |#5|)) (-15 -4270 ((-3 (-2 (|:| |var| |#2|) (|:| -1300 (-562))) "failed") |#5|)) (-15 -2811 ((-3 (-2 (|:| |val| |#5|) (|:| -1300 (-562))) "failed") |#5|)))
((-4152 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 23)))
-(((-946 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4152 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-788) (-845) (-1044) (-944 |#3| |#1| |#2|) (-13 (-1092) (-10 -8 (-15 -1835 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-766)))))) (T -946))
-((-4152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-845)) (-4 *8 (-1044)) (-4 *6 (-788)) (-4 *2 (-13 (-1092) (-10 -8 (-15 -1835 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-766)))))) (-5 *1 (-946 *6 *7 *8 *5 *2)) (-4 *5 (-944 *8 *6 *7)))))
+(((-946 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4152 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-788) (-845) (-1044) (-944 |#3| |#1| |#2|) (-13 (-1092) (-10 -8 (-15 -1836 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-766)))))) (T -946))
+((-4152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-845)) (-4 *8 (-1044)) (-4 *6 (-788)) (-4 *2 (-13 (-1092) (-10 -8 (-15 -1836 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-766)))))) (-5 *1 (-946 *6 *7 *8 *5 *2)) (-4 *5 (-944 *8 *6 *7)))))
(-10 -7 (-15 -4152 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1402 (((-639 (-1168)) $) 16)) (-1599 (((-1164 $) $ (-1168)) 21) (((-1164 |#1|) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 (-1168))) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-2798 (($ $) NIL (|has| |#1| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 8) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-1168) "failed") $) NIL)) (-3961 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-1168) $) NIL)) (-2835 (($ $ $ (-1168)) NIL (|has| |#1| (-171)))) (-1601 (($ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#1| (-451))) (($ $ (-1168)) NIL (|has| |#1| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#1| (-904)))) (-3122 (($ $ |#1| (-530 (-1168)) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1168) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1168) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-1390 (($ (-1164 |#1|) (-1168)) NIL) (($ (-1164 $) (-1168)) NIL)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-530 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ (-1168)) NIL)) (-2076 (((-530 (-1168)) $) NIL) (((-766) $ (-1168)) NIL) (((-639 (-766)) $ (-639 (-1168))) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2836 (($ (-1 (-530 (-1168)) (-530 (-1168))) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3372 (((-3 (-1168) "failed") $) 19)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-2913 (((-1150) $) NIL)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| (-1168)) (|:| -1960 (-766))) "failed") $) NIL)) (-2667 (($ $ (-1168)) 29 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#1| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1168) |#1|) NIL) (($ $ (-639 (-1168)) (-639 |#1|)) NIL) (($ $ (-1168) $) NIL) (($ $ (-639 (-1168)) (-639 $)) NIL)) (-2455 (($ $ (-1168)) NIL (|has| |#1| (-171)))) (-4029 (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-3598 (((-530 (-1168)) $) NIL) (((-766) $ (-1168)) NIL) (((-639 (-766)) $ (-639 (-1168))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-1168) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-1168) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-1168) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-3900 ((|#1| $) NIL (|has| |#1| (-451))) (($ $ (-1168)) NIL (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4054 (((-857) $) 25) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-1168)) 27) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-530 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-947 |#1|) (-13 (-944 |#1| (-530 (-1168)) (-1168)) (-10 -8 (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1168))) |%noBranch|))) (-1044)) (T -947))
-((-2667 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-947 *3)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)))))
-(-13 (-944 |#1| (-530 (-1168)) (-1168)) (-10 -8 (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1168))) |%noBranch|)))
-((-3887 (((-2 (|:| -1960 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) |#3| (-766)) 38)) (-2400 (((-2 (|:| -1960 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) (-406 (-562)) (-766)) 34)) (-1405 (((-2 (|:| -1960 (-766)) (|:| -4221 |#4|) (|:| |radicand| (-639 |#4|))) |#4| (-766)) 54)) (-2105 (((-2 (|:| -1960 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) |#5| (-766)) 64 (|has| |#3| (-451)))))
-(((-948 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3887 ((-2 (|:| -1960 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) |#3| (-766))) (-15 -2400 ((-2 (|:| -1960 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) (-406 (-562)) (-766))) (IF (|has| |#3| (-451)) (-15 -2105 ((-2 (|:| -1960 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) |#5| (-766))) |%noBranch|) (-15 -1405 ((-2 (|:| -1960 (-766)) (|:| -4221 |#4|) (|:| |radicand| (-639 |#4|))) |#4| (-766)))) (-788) (-845) (-554) (-944 |#3| |#1| |#2|) (-13 (-362) (-10 -8 (-15 -4054 ($ |#4|)) (-15 -4065 (|#4| $)) (-15 -4076 (|#4| $))))) (T -948))
-((-1405 (*1 *2 *3 *4) (-12 (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-554)) (-4 *3 (-944 *7 *5 *6)) (-5 *2 (-2 (|:| -1960 (-766)) (|:| -4221 *3) (|:| |radicand| (-639 *3)))) (-5 *1 (-948 *5 *6 *7 *3 *8)) (-5 *4 (-766)) (-4 *8 (-13 (-362) (-10 -8 (-15 -4054 ($ *3)) (-15 -4065 (*3 $)) (-15 -4076 (*3 $))))))) (-2105 (*1 *2 *3 *4) (-12 (-4 *7 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-554)) (-4 *8 (-944 *7 *5 *6)) (-5 *2 (-2 (|:| -1960 (-766)) (|:| -4221 *3) (|:| |radicand| *3))) (-5 *1 (-948 *5 *6 *7 *8 *3)) (-5 *4 (-766)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4054 ($ *8)) (-15 -4065 (*8 $)) (-15 -4076 (*8 $))))))) (-2400 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-562))) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-554)) (-4 *8 (-944 *7 *5 *6)) (-5 *2 (-2 (|:| -1960 (-766)) (|:| -4221 *9) (|:| |radicand| *9))) (-5 *1 (-948 *5 *6 *7 *8 *9)) (-5 *4 (-766)) (-4 *9 (-13 (-362) (-10 -8 (-15 -4054 ($ *8)) (-15 -4065 (*8 $)) (-15 -4076 (*8 $))))))) (-3887 (*1 *2 *3 *4) (-12 (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-554)) (-4 *7 (-944 *3 *5 *6)) (-5 *2 (-2 (|:| -1960 (-766)) (|:| -4221 *8) (|:| |radicand| *8))) (-5 *1 (-948 *5 *6 *3 *7 *8)) (-5 *4 (-766)) (-4 *8 (-13 (-362) (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $))))))))
-(-10 -7 (-15 -3887 ((-2 (|:| -1960 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) |#3| (-766))) (-15 -2400 ((-2 (|:| -1960 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) (-406 (-562)) (-766))) (IF (|has| |#3| (-451)) (-15 -2105 ((-2 (|:| -1960 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) |#5| (-766))) |%noBranch|) (-15 -1405 ((-2 (|:| -1960 (-766)) (|:| -4221 |#4|) (|:| |radicand| (-639 |#4|))) |#4| (-766))))
-((-4041 (((-112) $ $) NIL)) (-3329 (($ (-1112)) 8)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 14) (((-1112) $) 11)) (-1731 (((-112) $ $) 10)))
-(((-949) (-13 (-1092) (-609 (-1112)) (-10 -8 (-15 -3329 ($ (-1112)))))) (T -949))
-((-3329 (*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-949)))))
-(-13 (-1092) (-609 (-1112)) (-10 -8 (-15 -3329 ($ (-1112)))))
-((-1462 (((-1086 (-224)) $) 8)) (-1449 (((-1086 (-224)) $) 9)) (-2524 (((-639 (-639 (-938 (-224)))) $) 10)) (-4054 (((-857) $) 6)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1401 (((-639 (-1168)) $) 16)) (-1602 (((-1164 $) $ (-1168)) 21) (((-1164 |#1|) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 (-1168))) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1977 (($ $) NIL (|has| |#1| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 8) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-1168) "failed") $) NIL)) (-3960 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-1168) $) NIL)) (-2355 (($ $ $ (-1168)) NIL (|has| |#1| (-171)))) (-1600 (($ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#1| (-451))) (($ $ (-1168)) NIL (|has| |#1| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#1| (-904)))) (-3066 (($ $ |#1| (-530 (-1168)) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1168) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1168) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-1389 (($ (-1164 |#1|) (-1168)) NIL) (($ (-1164 $) (-1168)) NIL)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-530 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ (-1168)) NIL)) (-3161 (((-530 (-1168)) $) NIL) (((-766) $ (-1168)) NIL) (((-639 (-766)) $ (-639 (-1168))) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2363 (($ (-1 (-530 (-1168)) (-530 (-1168))) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3640 (((-3 (-1168) "failed") $) 19)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3696 (((-1150) $) NIL)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| (-1168)) (|:| -1300 (-766))) "failed") $) NIL)) (-3081 (($ $ (-1168)) 29 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#1| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1168) |#1|) NIL) (($ $ (-639 (-1168)) (-639 |#1|)) NIL) (($ $ (-1168) $) NIL) (($ $ (-639 (-1168)) (-639 $)) NIL)) (-2736 (($ $ (-1168)) NIL (|has| |#1| (-171)))) (-4029 (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-2250 (((-530 (-1168)) $) NIL) (((-766) $ (-1168)) NIL) (((-639 (-766)) $ (-639 (-1168))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-1168) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-1168) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-1168) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-2201 ((|#1| $) NIL (|has| |#1| (-451))) (($ $ (-1168)) NIL (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4053 (((-857) $) 25) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-1168)) 27) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-530 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-947 |#1|) (-13 (-944 |#1| (-530 (-1168)) (-1168)) (-10 -8 (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1168))) |%noBranch|))) (-1044)) (T -947))
+((-3081 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-947 *3)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)))))
+(-13 (-944 |#1| (-530 (-1168)) (-1168)) (-10 -8 (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1168))) |%noBranch|)))
+((-2070 (((-2 (|:| -1300 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) |#3| (-766)) 38)) (-3397 (((-2 (|:| -1300 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) (-406 (-562)) (-766)) 34)) (-1776 (((-2 (|:| -1300 (-766)) (|:| -4221 |#4|) (|:| |radicand| (-639 |#4|))) |#4| (-766)) 54)) (-2331 (((-2 (|:| -1300 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) |#5| (-766)) 64 (|has| |#3| (-451)))))
+(((-948 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2070 ((-2 (|:| -1300 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) |#3| (-766))) (-15 -3397 ((-2 (|:| -1300 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) (-406 (-562)) (-766))) (IF (|has| |#3| (-451)) (-15 -2331 ((-2 (|:| -1300 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) |#5| (-766))) |%noBranch|) (-15 -1776 ((-2 (|:| -1300 (-766)) (|:| -4221 |#4|) (|:| |radicand| (-639 |#4|))) |#4| (-766)))) (-788) (-845) (-554) (-944 |#3| |#1| |#2|) (-13 (-362) (-10 -8 (-15 -4053 ($ |#4|)) (-15 -4063 (|#4| $)) (-15 -4079 (|#4| $))))) (T -948))
+((-1776 (*1 *2 *3 *4) (-12 (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-554)) (-4 *3 (-944 *7 *5 *6)) (-5 *2 (-2 (|:| -1300 (-766)) (|:| -4221 *3) (|:| |radicand| (-639 *3)))) (-5 *1 (-948 *5 *6 *7 *3 *8)) (-5 *4 (-766)) (-4 *8 (-13 (-362) (-10 -8 (-15 -4053 ($ *3)) (-15 -4063 (*3 $)) (-15 -4079 (*3 $))))))) (-2331 (*1 *2 *3 *4) (-12 (-4 *7 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-554)) (-4 *8 (-944 *7 *5 *6)) (-5 *2 (-2 (|:| -1300 (-766)) (|:| -4221 *3) (|:| |radicand| *3))) (-5 *1 (-948 *5 *6 *7 *8 *3)) (-5 *4 (-766)) (-4 *3 (-13 (-362) (-10 -8 (-15 -4053 ($ *8)) (-15 -4063 (*8 $)) (-15 -4079 (*8 $))))))) (-3397 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-562))) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-554)) (-4 *8 (-944 *7 *5 *6)) (-5 *2 (-2 (|:| -1300 (-766)) (|:| -4221 *9) (|:| |radicand| *9))) (-5 *1 (-948 *5 *6 *7 *8 *9)) (-5 *4 (-766)) (-4 *9 (-13 (-362) (-10 -8 (-15 -4053 ($ *8)) (-15 -4063 (*8 $)) (-15 -4079 (*8 $))))))) (-2070 (*1 *2 *3 *4) (-12 (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-554)) (-4 *7 (-944 *3 *5 *6)) (-5 *2 (-2 (|:| -1300 (-766)) (|:| -4221 *8) (|:| |radicand| *8))) (-5 *1 (-948 *5 *6 *3 *7 *8)) (-5 *4 (-766)) (-4 *8 (-13 (-362) (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $))))))))
+(-10 -7 (-15 -2070 ((-2 (|:| -1300 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) |#3| (-766))) (-15 -3397 ((-2 (|:| -1300 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) (-406 (-562)) (-766))) (IF (|has| |#3| (-451)) (-15 -2331 ((-2 (|:| -1300 (-766)) (|:| -4221 |#5|) (|:| |radicand| |#5|)) |#5| (-766))) |%noBranch|) (-15 -1776 ((-2 (|:| -1300 (-766)) (|:| -4221 |#4|) (|:| |radicand| (-639 |#4|))) |#4| (-766))))
+((-4041 (((-112) $ $) NIL)) (-3328 (($ (-1112)) 8)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 14) (((-1112) $) 11)) (-1733 (((-112) $ $) 10)))
+(((-949) (-13 (-1092) (-609 (-1112)) (-10 -8 (-15 -3328 ($ (-1112)))))) (T -949))
+((-3328 (*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-949)))))
+(-13 (-1092) (-609 (-1112)) (-10 -8 (-15 -3328 ($ (-1112)))))
+((-1462 (((-1086 (-224)) $) 8)) (-1448 (((-1086 (-224)) $) 9)) (-2259 (((-639 (-639 (-938 (-224)))) $) 10)) (-4053 (((-857) $) 6)))
(((-950) (-139)) (T -950))
-((-2524 (*1 *2 *1) (-12 (-4 *1 (-950)) (-5 *2 (-639 (-639 (-938 (-224))))))) (-1449 (*1 *2 *1) (-12 (-4 *1 (-950)) (-5 *2 (-1086 (-224))))) (-1462 (*1 *2 *1) (-12 (-4 *1 (-950)) (-5 *2 (-1086 (-224))))))
-(-13 (-609 (-857)) (-10 -8 (-15 -2524 ((-639 (-639 (-938 (-224)))) $)) (-15 -1449 ((-1086 (-224)) $)) (-15 -1462 ((-1086 (-224)) $))))
+((-2259 (*1 *2 *1) (-12 (-4 *1 (-950)) (-5 *2 (-639 (-639 (-938 (-224))))))) (-1448 (*1 *2 *1) (-12 (-4 *1 (-950)) (-5 *2 (-1086 (-224))))) (-1462 (*1 *2 *1) (-12 (-4 *1 (-950)) (-5 *2 (-1086 (-224))))))
+(-13 (-609 (-857)) (-10 -8 (-15 -2259 ((-639 (-639 (-938 (-224)))) $)) (-15 -1448 ((-1086 (-224)) $)) (-15 -1462 ((-1086 (-224)) $))))
(((-609 (-857)) . T))
-((-3998 (((-3 (-683 |#1|) "failed") |#2| (-916)) 15)))
-(((-951 |#1| |#2|) (-10 -7 (-15 -3998 ((-3 (-683 |#1|) "failed") |#2| (-916)))) (-554) (-650 |#1|)) (T -951))
-((-3998 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-916)) (-4 *5 (-554)) (-5 *2 (-683 *5)) (-5 *1 (-951 *5 *3)) (-4 *3 (-650 *5)))))
-(-10 -7 (-15 -3998 ((-3 (-683 |#1|) "failed") |#2| (-916))))
-((-2578 (((-953 |#2|) (-1 |#2| |#1| |#2|) (-953 |#1|) |#2|) 16)) (-1955 ((|#2| (-1 |#2| |#1| |#2|) (-953 |#1|) |#2|) 18)) (-4152 (((-953 |#2|) (-1 |#2| |#1|) (-953 |#1|)) 13)))
-(((-952 |#1| |#2|) (-10 -7 (-15 -2578 ((-953 |#2|) (-1 |#2| |#1| |#2|) (-953 |#1|) |#2|)) (-15 -1955 (|#2| (-1 |#2| |#1| |#2|) (-953 |#1|) |#2|)) (-15 -4152 ((-953 |#2|) (-1 |#2| |#1|) (-953 |#1|)))) (-1207) (-1207)) (T -952))
-((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-953 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-953 *6)) (-5 *1 (-952 *5 *6)))) (-1955 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-953 *5)) (-4 *5 (-1207)) (-4 *2 (-1207)) (-5 *1 (-952 *5 *2)))) (-2578 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-953 *6)) (-4 *6 (-1207)) (-4 *5 (-1207)) (-5 *2 (-953 *5)) (-5 *1 (-952 *6 *5)))))
-(-10 -7 (-15 -2578 ((-953 |#2|) (-1 |#2| |#1| |#2|) (-953 |#1|) |#2|)) (-15 -1955 (|#2| (-1 |#2| |#1| |#2|) (-953 |#1|) |#2|)) (-15 -4152 ((-953 |#2|) (-1 |#2| |#1|) (-953 |#1|))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3381 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4403))) (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) |#1|) 16 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) 15 (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) 13)) (-4264 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1458 (($ (-766) |#1|) 12)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) 10 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-1610 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3297 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2716 (($ $ |#1|) 17 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) 11)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) 14) (($ $ (-1223 (-562))) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) NIL)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) 8 (|has| $ (-6 -4402)))))
+((-3707 (((-3 (-683 |#1|) "failed") |#2| (-916)) 15)))
+(((-951 |#1| |#2|) (-10 -7 (-15 -3707 ((-3 (-683 |#1|) "failed") |#2| (-916)))) (-554) (-650 |#1|)) (T -951))
+((-3707 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-916)) (-4 *5 (-554)) (-5 *2 (-683 *5)) (-5 *1 (-951 *5 *3)) (-4 *3 (-650 *5)))))
+(-10 -7 (-15 -3707 ((-3 (-683 |#1|) "failed") |#2| (-916))))
+((-1555 (((-953 |#2|) (-1 |#2| |#1| |#2|) (-953 |#1|) |#2|) 16)) (-1954 ((|#2| (-1 |#2| |#1| |#2|) (-953 |#1|) |#2|) 18)) (-4152 (((-953 |#2|) (-1 |#2| |#1|) (-953 |#1|)) 13)))
+(((-952 |#1| |#2|) (-10 -7 (-15 -1555 ((-953 |#2|) (-1 |#2| |#1| |#2|) (-953 |#1|) |#2|)) (-15 -1954 (|#2| (-1 |#2| |#1| |#2|) (-953 |#1|) |#2|)) (-15 -4152 ((-953 |#2|) (-1 |#2| |#1|) (-953 |#1|)))) (-1207) (-1207)) (T -952))
+((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-953 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-953 *6)) (-5 *1 (-952 *5 *6)))) (-1954 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-953 *5)) (-4 *5 (-1207)) (-4 *2 (-1207)) (-5 *1 (-952 *5 *2)))) (-1555 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-953 *6)) (-4 *6 (-1207)) (-4 *5 (-1207)) (-5 *2 (-953 *5)) (-5 *1 (-952 *6 *5)))))
+(-10 -7 (-15 -1555 ((-953 |#2|) (-1 |#2| |#1| |#2|) (-953 |#1|) |#2|)) (-15 -1954 (|#2| (-1 |#2| |#1| |#2|) (-953 |#1|) |#2|)) (-15 -4152 ((-953 |#2|) (-1 |#2| |#1|) (-953 |#1|))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3737 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4404))) (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) |#1|) 16 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) 15 (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) 13)) (-4265 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1458 (($ (-766) |#1|) 12)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) 10 (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-4103 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3295 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3510 (($ $ |#1|) 17 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) 11)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) 14) (($ $ (-1223 (-562))) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) NIL)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-3492 (((-766) $) 8 (|has| $ (-6 -4403)))))
(((-953 |#1|) (-19 |#1|) (-1207)) (T -953))
NIL
(-19 |#1|)
-((-1982 (($ $ (-1084 $)) 7) (($ $ (-1168)) 6)))
+((-1529 (($ $ (-1084 $)) 7) (($ $ (-1168)) 6)))
(((-954) (-139)) (T -954))
-((-1982 (*1 *1 *1 *2) (-12 (-5 *2 (-1084 *1)) (-4 *1 (-954)))) (-1982 (*1 *1 *1 *2) (-12 (-4 *1 (-954)) (-5 *2 (-1168)))))
-(-13 (-10 -8 (-15 -1982 ($ $ (-1168))) (-15 -1982 ($ $ (-1084 $)))))
-((-3529 (((-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 |#1|))) (|:| |prim| (-1164 |#1|))) (-639 (-947 |#1|)) (-639 (-1168)) (-1168)) 25) (((-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 |#1|))) (|:| |prim| (-1164 |#1|))) (-639 (-947 |#1|)) (-639 (-1168))) 26) (((-2 (|:| |coef1| (-562)) (|:| |coef2| (-562)) (|:| |prim| (-1164 |#1|))) (-947 |#1|) (-1168) (-947 |#1|) (-1168)) 43)))
-(((-955 |#1|) (-10 -7 (-15 -3529 ((-2 (|:| |coef1| (-562)) (|:| |coef2| (-562)) (|:| |prim| (-1164 |#1|))) (-947 |#1|) (-1168) (-947 |#1|) (-1168))) (-15 -3529 ((-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 |#1|))) (|:| |prim| (-1164 |#1|))) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -3529 ((-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 |#1|))) (|:| |prim| (-1164 |#1|))) (-639 (-947 |#1|)) (-639 (-1168)) (-1168)))) (-13 (-362) (-146))) (T -955))
-((-3529 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 (-947 *6))) (-5 *4 (-639 (-1168))) (-5 *5 (-1168)) (-4 *6 (-13 (-362) (-146))) (-5 *2 (-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 *6))) (|:| |prim| (-1164 *6)))) (-5 *1 (-955 *6)))) (-3529 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-639 (-1168))) (-4 *5 (-13 (-362) (-146))) (-5 *2 (-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 *5))) (|:| |prim| (-1164 *5)))) (-5 *1 (-955 *5)))) (-3529 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-947 *5)) (-5 *4 (-1168)) (-4 *5 (-13 (-362) (-146))) (-5 *2 (-2 (|:| |coef1| (-562)) (|:| |coef2| (-562)) (|:| |prim| (-1164 *5)))) (-5 *1 (-955 *5)))))
-(-10 -7 (-15 -3529 ((-2 (|:| |coef1| (-562)) (|:| |coef2| (-562)) (|:| |prim| (-1164 |#1|))) (-947 |#1|) (-1168) (-947 |#1|) (-1168))) (-15 -3529 ((-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 |#1|))) (|:| |prim| (-1164 |#1|))) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -3529 ((-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 |#1|))) (|:| |prim| (-1164 |#1|))) (-639 (-947 |#1|)) (-639 (-1168)) (-1168))))
-((-4215 (((-639 |#1|) |#1| |#1|) 42)) (-2717 (((-112) |#1|) 39)) (-2751 ((|#1| |#1|) 64)) (-3047 ((|#1| |#1|) 63)))
-(((-956 |#1|) (-10 -7 (-15 -2717 ((-112) |#1|)) (-15 -3047 (|#1| |#1|)) (-15 -2751 (|#1| |#1|)) (-15 -4215 ((-639 |#1|) |#1| |#1|))) (-544)) (T -956))
-((-4215 (*1 *2 *3 *3) (-12 (-5 *2 (-639 *3)) (-5 *1 (-956 *3)) (-4 *3 (-544)))) (-2751 (*1 *2 *2) (-12 (-5 *1 (-956 *2)) (-4 *2 (-544)))) (-3047 (*1 *2 *2) (-12 (-5 *1 (-956 *2)) (-4 *2 (-544)))) (-2717 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-956 *3)) (-4 *3 (-544)))))
-(-10 -7 (-15 -2717 ((-112) |#1|)) (-15 -3047 (|#1| |#1|)) (-15 -2751 (|#1| |#1|)) (-15 -4215 ((-639 |#1|) |#1| |#1|)))
-((-3207 (((-1261) (-857)) 9)))
-(((-957) (-10 -7 (-15 -3207 ((-1261) (-857))))) (T -957))
-((-3207 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-957)))))
-(-10 -7 (-15 -3207 ((-1261) (-857))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 60 (|has| |#1| (-554)))) (-2796 (($ $) 61 (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 28)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-1601 (($ $) 24)) (-3668 (((-3 $ "failed") $) 35)) (-1498 (($ $) NIL (|has| |#1| (-451)))) (-3122 (($ $ |#1| |#2| $) 47)) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) 16)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| |#2|) NIL)) (-2076 ((|#2| $) 19)) (-2836 (($ (-1 |#2| |#2|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1560 (($ $) 23)) (-1573 ((|#1| $) 21)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) 40)) (-1547 ((|#1| $) NIL)) (-3348 (($ $ |#2| |#1| $) 72 (-12 (|has| |#2| (-130)) (|has| |#1| (-554))))) (-1762 (((-3 $ "failed") $ $) 73 (|has| |#1| (-554))) (((-3 $ "failed") $ |#1|) 67 (|has| |#1| (-554)))) (-3598 ((|#2| $) 17)) (-3900 ((|#1| $) NIL (|has| |#1| (-451)))) (-4054 (((-857) $) NIL) (($ (-562)) 39) (($ $) NIL (|has| |#1| (-554))) (($ |#1|) 34) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ |#2|) 31)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) 15)) (-3548 (($ $ $ (-766)) 56 (|has| |#1| (-171)))) (-2922 (((-112) $ $) 66 (|has| |#1| (-554)))) (-2286 (($) 22 T CONST)) (-2294 (($) 12 T CONST)) (-1731 (((-112) $ $) 65)) (-1859 (($ $ |#1|) 74 (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) 53) (($ $ (-766)) 51)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 50) (($ $ |#1|) 49) (($ |#1| $) 48) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
-(((-958 |#1| |#2|) (-13 (-325 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-554)) (IF (|has| |#2| (-130)) (-15 -3348 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4400)) (-6 -4400) |%noBranch|))) (-1044) (-787)) (T -958))
-((-3348 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-958 *3 *2)) (-4 *2 (-130)) (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *2 (-787)))))
-(-13 (-325 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-554)) (IF (|has| |#2| (-130)) (-15 -3348 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4400)) (-6 -4400) |%noBranch|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))))) (-3659 (($ $ $) 63 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))))) (-3214 (((-3 $ "failed") $ $) 50 (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))))) (-1382 (((-766)) 34 (-12 (|has| |#1| (-367)) (|has| |#2| (-367))))) (-3844 ((|#2| $) 21)) (-3440 ((|#1| $) 20)) (-1800 (($) NIL (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))) CONST)) (-3668 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721)))))) (-1448 (($) NIL (-12 (|has| |#1| (-367)) (|has| |#2| (-367))))) (-1957 (((-112) $) NIL (-4037 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721)))))) (-1551 (($ $ $) NIL (-4037 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))) (-12 (|has| |#1| (-845)) (|has| |#2| (-845)))))) (-2993 (($ $ $) NIL (-4037 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))) (-12 (|has| |#1| (-845)) (|has| |#2| (-845)))))) (-1737 (($ |#1| |#2|) 19)) (-1999 (((-916) $) NIL (-12 (|has| |#1| (-367)) (|has| |#2| (-367))))) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 37 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))))) (-2466 (($ (-916)) NIL (-12 (|has| |#1| (-367)) (|has| |#2| (-367))))) (-1709 (((-1112) $) NIL)) (-3665 (($ $ $) NIL (-12 (|has| |#1| (-472)) (|has| |#2| (-472))))) (-1911 (($ $ $) NIL (-12 (|has| |#1| (-472)) (|has| |#2| (-472))))) (-4054 (((-857) $) 14)) (-2286 (($) 40 (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))) CONST)) (-2294 (($) 24 (-4037 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721)))) CONST)) (-1798 (((-112) $ $) NIL (-4037 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))) (-12 (|has| |#1| (-845)) (|has| |#2| (-845)))))) (-1772 (((-112) $ $) NIL (-4037 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))) (-12 (|has| |#1| (-845)) (|has| |#2| (-845)))))) (-1731 (((-112) $ $) 18)) (-1785 (((-112) $ $) NIL (-4037 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))) (-12 (|has| |#1| (-845)) (|has| |#2| (-845)))))) (-1759 (((-112) $ $) 66 (-4037 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))) (-12 (|has| |#1| (-845)) (|has| |#2| (-845)))))) (-1859 (($ $ $) NIL (-12 (|has| |#1| (-472)) (|has| |#2| (-472))))) (-1848 (($ $ $) 56 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 53 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-1835 (($ $ $) 43 (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))))) (** (($ $ (-562)) NIL (-12 (|has| |#1| (-472)) (|has| |#2| (-472)))) (($ $ (-766)) 31 (-4037 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721))))) (($ $ (-916)) NIL (-4037 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721)))))) (* (($ (-562) $) 60 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-766) $) 46 (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788))))) (($ (-916) $) NIL (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788))))) (($ $ $) 27 (-4037 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721)))))))
-(((-959 |#1| |#2|) (-13 (-1092) (-10 -8 (IF (|has| |#1| (-367)) (IF (|has| |#2| (-367)) (-6 (-367)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-721)) (IF (|has| |#2| (-721)) (-6 (-721)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-130)) (IF (|has| |#2| (-130)) (-6 (-130)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-472)) (IF (|has| |#2| (-472)) (-6 (-472)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-788)) (IF (|has| |#2| (-788)) (-6 (-788)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-845)) (IF (|has| |#2| (-845)) (-6 (-845)) |%noBranch|) |%noBranch|) (-15 -1737 ($ |#1| |#2|)) (-15 -3440 (|#1| $)) (-15 -3844 (|#2| $)))) (-1092) (-1092)) (T -959))
-((-1737 (*1 *1 *2 *3) (-12 (-5 *1 (-959 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-3440 (*1 *2 *1) (-12 (-4 *2 (-1092)) (-5 *1 (-959 *2 *3)) (-4 *3 (-1092)))) (-3844 (*1 *2 *1) (-12 (-4 *2 (-1092)) (-5 *1 (-959 *3 *2)) (-4 *3 (-1092)))))
-(-13 (-1092) (-10 -8 (IF (|has| |#1| (-367)) (IF (|has| |#2| (-367)) (-6 (-367)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-721)) (IF (|has| |#2| (-721)) (-6 (-721)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-130)) (IF (|has| |#2| (-130)) (-6 (-130)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-472)) (IF (|has| |#2| (-472)) (-6 (-472)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-788)) (IF (|has| |#2| (-788)) (-6 (-788)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-845)) (IF (|has| |#2| (-845)) (-6 (-845)) |%noBranch|) |%noBranch|) (-15 -1737 ($ |#1| |#2|)) (-15 -3440 (|#1| $)) (-15 -3844 (|#2| $))))
-((-2534 (((-1096) $) 12)) (-3394 (($ (-1168) (-1096)) 13)) (-3254 (((-1168) $) 10)) (-4054 (((-857) $) 22)))
-(((-960) (-13 (-609 (-857)) (-10 -8 (-15 -3254 ((-1168) $)) (-15 -2534 ((-1096) $)) (-15 -3394 ($ (-1168) (-1096)))))) (T -960))
-((-3254 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-960)))) (-2534 (*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-960)))) (-3394 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1096)) (-5 *1 (-960)))))
-(-13 (-609 (-857)) (-10 -8 (-15 -3254 ((-1168) $)) (-15 -2534 ((-1096) $)) (-15 -3394 ($ (-1168) (-1096)))))
-((-4041 (((-112) $ $) NIL)) (-1402 (((-1094 (-1168)) $) 19)) (-3400 (((-112) $) 26)) (-2444 (((-1168) $) 27)) (-2732 (((-112) $) 24)) (-1874 ((|#1| $) 25)) (-3019 (((-868 $ $) $) 34)) (-3636 (((-112) $) 33)) (-2255 (($ $ $) 12)) (-3653 (($ $) 29)) (-2349 (((-112) $) 28)) (-2236 (($ $) 10)) (-2913 (((-1150) $) NIL)) (-1630 (((-868 $ $) $) 36)) (-4360 (((-112) $) 35)) (-3994 (($ $ $) 13)) (-1709 (((-1112) $) NIL)) (-1708 (((-868 $ $) $) 38)) (-1813 (((-112) $) 37)) (-1935 (($ $ $) 14)) (-4054 (((-857) $) 40) (($ |#1|) 7) (($ (-1168)) 9)) (-3404 (((-868 $ $) $) 32)) (-2082 (((-112) $) 30)) (-2246 (($ $ $) 11)) (-1731 (((-112) $ $) NIL)))
-(((-961 |#1|) (-13 (-962) (-10 -8 (-15 -4054 ($ |#1|)) (-15 -4054 ($ (-1168))) (-15 -1402 ((-1094 (-1168)) $)) (-15 -2732 ((-112) $)) (-15 -1874 (|#1| $)) (-15 -3400 ((-112) $)) (-15 -2444 ((-1168) $)) (-15 -2349 ((-112) $)) (-15 -3653 ($ $)) (-15 -2082 ((-112) $)) (-15 -3404 ((-868 $ $) $)) (-15 -3636 ((-112) $)) (-15 -3019 ((-868 $ $) $)) (-15 -4360 ((-112) $)) (-15 -1630 ((-868 $ $) $)) (-15 -1813 ((-112) $)) (-15 -1708 ((-868 $ $) $)))) (-962)) (T -961))
-((-4054 (*1 *1 *2) (-12 (-5 *1 (-961 *2)) (-4 *2 (-962)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-1402 (*1 *2 *1) (-12 (-5 *2 (-1094 (-1168))) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-2732 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-1874 (*1 *2 *1) (-12 (-5 *1 (-961 *2)) (-4 *2 (-962)))) (-3400 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-2444 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-2349 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-3653 (*1 *1 *1) (-12 (-5 *1 (-961 *2)) (-4 *2 (-962)))) (-2082 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-3404 (*1 *2 *1) (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-3636 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-3019 (*1 *2 *1) (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-4360 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-1630 (*1 *2 *1) (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-1813 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-1708 (*1 *2 *1) (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
-(-13 (-962) (-10 -8 (-15 -4054 ($ |#1|)) (-15 -4054 ($ (-1168))) (-15 -1402 ((-1094 (-1168)) $)) (-15 -2732 ((-112) $)) (-15 -1874 (|#1| $)) (-15 -3400 ((-112) $)) (-15 -2444 ((-1168) $)) (-15 -2349 ((-112) $)) (-15 -3653 ($ $)) (-15 -2082 ((-112) $)) (-15 -3404 ((-868 $ $) $)) (-15 -3636 ((-112) $)) (-15 -3019 ((-868 $ $) $)) (-15 -4360 ((-112) $)) (-15 -1630 ((-868 $ $) $)) (-15 -1813 ((-112) $)) (-15 -1708 ((-868 $ $) $))))
-((-4041 (((-112) $ $) 7)) (-2255 (($ $ $) 15)) (-2236 (($ $) 17)) (-2913 (((-1150) $) 9)) (-3994 (($ $ $) 14)) (-1709 (((-1112) $) 10)) (-1935 (($ $ $) 13)) (-4054 (((-857) $) 11)) (-2246 (($ $ $) 16)) (-1731 (((-112) $ $) 6)))
+((-1529 (*1 *1 *1 *2) (-12 (-5 *2 (-1084 *1)) (-4 *1 (-954)))) (-1529 (*1 *1 *1 *2) (-12 (-4 *1 (-954)) (-5 *2 (-1168)))))
+(-13 (-10 -8 (-15 -1529 ($ $ (-1168))) (-15 -1529 ($ $ (-1084 $)))))
+((-2787 (((-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 |#1|))) (|:| |prim| (-1164 |#1|))) (-639 (-947 |#1|)) (-639 (-1168)) (-1168)) 25) (((-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 |#1|))) (|:| |prim| (-1164 |#1|))) (-639 (-947 |#1|)) (-639 (-1168))) 26) (((-2 (|:| |coef1| (-562)) (|:| |coef2| (-562)) (|:| |prim| (-1164 |#1|))) (-947 |#1|) (-1168) (-947 |#1|) (-1168)) 43)))
+(((-955 |#1|) (-10 -7 (-15 -2787 ((-2 (|:| |coef1| (-562)) (|:| |coef2| (-562)) (|:| |prim| (-1164 |#1|))) (-947 |#1|) (-1168) (-947 |#1|) (-1168))) (-15 -2787 ((-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 |#1|))) (|:| |prim| (-1164 |#1|))) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -2787 ((-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 |#1|))) (|:| |prim| (-1164 |#1|))) (-639 (-947 |#1|)) (-639 (-1168)) (-1168)))) (-13 (-362) (-146))) (T -955))
+((-2787 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 (-947 *6))) (-5 *4 (-639 (-1168))) (-5 *5 (-1168)) (-4 *6 (-13 (-362) (-146))) (-5 *2 (-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 *6))) (|:| |prim| (-1164 *6)))) (-5 *1 (-955 *6)))) (-2787 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-639 (-1168))) (-4 *5 (-13 (-362) (-146))) (-5 *2 (-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 *5))) (|:| |prim| (-1164 *5)))) (-5 *1 (-955 *5)))) (-2787 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-947 *5)) (-5 *4 (-1168)) (-4 *5 (-13 (-362) (-146))) (-5 *2 (-2 (|:| |coef1| (-562)) (|:| |coef2| (-562)) (|:| |prim| (-1164 *5)))) (-5 *1 (-955 *5)))))
+(-10 -7 (-15 -2787 ((-2 (|:| |coef1| (-562)) (|:| |coef2| (-562)) (|:| |prim| (-1164 |#1|))) (-947 |#1|) (-1168) (-947 |#1|) (-1168))) (-15 -2787 ((-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 |#1|))) (|:| |prim| (-1164 |#1|))) (-639 (-947 |#1|)) (-639 (-1168)))) (-15 -2787 ((-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 |#1|))) (|:| |prim| (-1164 |#1|))) (-639 (-947 |#1|)) (-639 (-1168)) (-1168))))
+((-2020 (((-639 |#1|) |#1| |#1|) 42)) (-3521 (((-112) |#1|) 39)) (-2692 ((|#1| |#1|) 64)) (-3599 ((|#1| |#1|) 63)))
+(((-956 |#1|) (-10 -7 (-15 -3521 ((-112) |#1|)) (-15 -3599 (|#1| |#1|)) (-15 -2692 (|#1| |#1|)) (-15 -2020 ((-639 |#1|) |#1| |#1|))) (-544)) (T -956))
+((-2020 (*1 *2 *3 *3) (-12 (-5 *2 (-639 *3)) (-5 *1 (-956 *3)) (-4 *3 (-544)))) (-2692 (*1 *2 *2) (-12 (-5 *1 (-956 *2)) (-4 *2 (-544)))) (-3599 (*1 *2 *2) (-12 (-5 *1 (-956 *2)) (-4 *2 (-544)))) (-3521 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-956 *3)) (-4 *3 (-544)))))
+(-10 -7 (-15 -3521 ((-112) |#1|)) (-15 -3599 (|#1| |#1|)) (-15 -2692 (|#1| |#1|)) (-15 -2020 ((-639 |#1|) |#1| |#1|)))
+((-3206 (((-1261) (-857)) 9)))
+(((-957) (-10 -7 (-15 -3206 ((-1261) (-857))))) (T -957))
+((-3206 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-957)))))
+(-10 -7 (-15 -3206 ((-1261) (-857))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 60 (|has| |#1| (-554)))) (-1965 (($ $) 61 (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 28)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-1600 (($ $) 24)) (-1694 (((-3 $ "failed") $) 35)) (-2578 (($ $) NIL (|has| |#1| (-451)))) (-3066 (($ $ |#1| |#2| $) 47)) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) 16)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| |#2|) NIL)) (-3161 ((|#2| $) 19)) (-2363 (($ (-1 |#2| |#2|) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1560 (($ $) 23)) (-1573 ((|#1| $) 21)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) 40)) (-1547 ((|#1| $) NIL)) (-1601 (($ $ |#2| |#1| $) 72 (-12 (|has| |#2| (-130)) (|has| |#1| (-554))))) (-1762 (((-3 $ "failed") $ $) 73 (|has| |#1| (-554))) (((-3 $ "failed") $ |#1|) 67 (|has| |#1| (-554)))) (-2250 ((|#2| $) 17)) (-2201 ((|#1| $) NIL (|has| |#1| (-451)))) (-4053 (((-857) $) NIL) (($ (-562)) 39) (($ $) NIL (|has| |#1| (-554))) (($ |#1|) 34) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ |#2|) 31)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) 15)) (-1760 (($ $ $ (-766)) 56 (|has| |#1| (-171)))) (-3799 (((-112) $ $) 66 (|has| |#1| (-554)))) (-2285 (($) 22 T CONST)) (-2294 (($) 12 T CONST)) (-1733 (((-112) $ $) 65)) (-1859 (($ $ |#1|) 74 (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) 53) (($ $ (-766)) 51)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 50) (($ $ |#1|) 49) (($ |#1| $) 48) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+(((-958 |#1| |#2|) (-13 (-325 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-554)) (IF (|has| |#2| (-130)) (-15 -1601 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4401)) (-6 -4401) |%noBranch|))) (-1044) (-787)) (T -958))
+((-1601 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-958 *3 *2)) (-4 *2 (-130)) (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *2 (-787)))))
+(-13 (-325 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-554)) (IF (|has| |#2| (-130)) (-15 -1601 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4401)) (-6 -4401) |%noBranch|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))))) (-1593 (($ $ $) 63 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))))) (-2781 (((-3 $ "failed") $ $) 50 (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))))) (-1382 (((-766)) 34 (-12 (|has| |#1| (-367)) (|has| |#2| (-367))))) (-2804 ((|#2| $) 21)) (-3084 ((|#1| $) 20)) (-3329 (($) NIL (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))) CONST)) (-1694 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721)))))) (-1447 (($) NIL (-12 (|has| |#1| (-367)) (|has| |#2| (-367))))) (-4367 (((-112) $) NIL (-4037 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721)))))) (-1551 (($ $ $) NIL (-4037 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))) (-12 (|has| |#1| (-845)) (|has| |#2| (-845)))))) (-2993 (($ $ $) NIL (-4037 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))) (-12 (|has| |#1| (-845)) (|has| |#2| (-845)))))) (-4018 (($ |#1| |#2|) 19)) (-3549 (((-916) $) NIL (-12 (|has| |#1| (-367)) (|has| |#2| (-367))))) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 37 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))))) (-2464 (($ (-916)) NIL (-12 (|has| |#1| (-367)) (|has| |#2| (-367))))) (-1709 (((-1112) $) NIL)) (-1660 (($ $ $) NIL (-12 (|has| |#1| (-472)) (|has| |#2| (-472))))) (-2114 (($ $ $) NIL (-12 (|has| |#1| (-472)) (|has| |#2| (-472))))) (-4053 (((-857) $) 14)) (-2285 (($) 40 (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))) CONST)) (-2294 (($) 24 (-4037 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721)))) CONST)) (-1798 (((-112) $ $) NIL (-4037 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))) (-12 (|has| |#1| (-845)) (|has| |#2| (-845)))))) (-1771 (((-112) $ $) NIL (-4037 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))) (-12 (|has| |#1| (-845)) (|has| |#2| (-845)))))) (-1733 (((-112) $ $) 18)) (-1785 (((-112) $ $) NIL (-4037 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))) (-12 (|has| |#1| (-845)) (|has| |#2| (-845)))))) (-1761 (((-112) $ $) 66 (-4037 (-12 (|has| |#1| (-788)) (|has| |#2| (-788))) (-12 (|has| |#1| (-845)) (|has| |#2| (-845)))))) (-1859 (($ $ $) NIL (-12 (|has| |#1| (-472)) (|has| |#2| (-472))))) (-1847 (($ $ $) 56 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 53 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-1836 (($ $ $) 43 (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788)))))) (** (($ $ (-562)) NIL (-12 (|has| |#1| (-472)) (|has| |#2| (-472)))) (($ $ (-766)) 31 (-4037 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721))))) (($ $ (-916)) NIL (-4037 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721)))))) (* (($ (-562) $) 60 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-766) $) 46 (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788))))) (($ (-916) $) NIL (-4037 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-130)) (|has| |#2| (-130))) (-12 (|has| |#1| (-788)) (|has| |#2| (-788))))) (($ $ $) 27 (-4037 (-12 (|has| |#1| (-472)) (|has| |#2| (-472))) (-12 (|has| |#1| (-721)) (|has| |#2| (-721)))))))
+(((-959 |#1| |#2|) (-13 (-1092) (-10 -8 (IF (|has| |#1| (-367)) (IF (|has| |#2| (-367)) (-6 (-367)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-721)) (IF (|has| |#2| (-721)) (-6 (-721)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-130)) (IF (|has| |#2| (-130)) (-6 (-130)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-472)) (IF (|has| |#2| (-472)) (-6 (-472)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-788)) (IF (|has| |#2| (-788)) (-6 (-788)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-845)) (IF (|has| |#2| (-845)) (-6 (-845)) |%noBranch|) |%noBranch|) (-15 -4018 ($ |#1| |#2|)) (-15 -3084 (|#1| $)) (-15 -2804 (|#2| $)))) (-1092) (-1092)) (T -959))
+((-4018 (*1 *1 *2 *3) (-12 (-5 *1 (-959 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-3084 (*1 *2 *1) (-12 (-4 *2 (-1092)) (-5 *1 (-959 *2 *3)) (-4 *3 (-1092)))) (-2804 (*1 *2 *1) (-12 (-4 *2 (-1092)) (-5 *1 (-959 *3 *2)) (-4 *3 (-1092)))))
+(-13 (-1092) (-10 -8 (IF (|has| |#1| (-367)) (IF (|has| |#2| (-367)) (-6 (-367)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-721)) (IF (|has| |#2| (-721)) (-6 (-721)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-130)) (IF (|has| |#2| (-130)) (-6 (-130)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-472)) (IF (|has| |#2| (-472)) (-6 (-472)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-788)) (IF (|has| |#2| (-788)) (-6 (-788)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-845)) (IF (|has| |#2| (-845)) (-6 (-845)) |%noBranch|) |%noBranch|) (-15 -4018 ($ |#1| |#2|)) (-15 -3084 (|#1| $)) (-15 -2804 (|#2| $))))
+((-2533 (((-1096) $) 12)) (-3394 (($ (-1168) (-1096)) 13)) (-3253 (((-1168) $) 10)) (-4053 (((-857) $) 22)))
+(((-960) (-13 (-609 (-857)) (-10 -8 (-15 -3253 ((-1168) $)) (-15 -2533 ((-1096) $)) (-15 -3394 ($ (-1168) (-1096)))))) (T -960))
+((-3253 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-960)))) (-2533 (*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-960)))) (-3394 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1096)) (-5 *1 (-960)))))
+(-13 (-609 (-857)) (-10 -8 (-15 -3253 ((-1168) $)) (-15 -2533 ((-1096) $)) (-15 -3394 ($ (-1168) (-1096)))))
+((-4041 (((-112) $ $) NIL)) (-1401 (((-1094 (-1168)) $) 19)) (-3927 (((-112) $) 26)) (-2443 (((-1168) $) 27)) (-2522 (((-112) $) 24)) (-1692 ((|#1| $) 25)) (-3460 (((-868 $ $) $) 34)) (-1329 (((-112) $) 33)) (-2256 (($ $ $) 12)) (-1519 (($ $) 29)) (-2348 (((-112) $) 28)) (-2234 (($ $) 10)) (-3696 (((-1150) $) NIL)) (-4288 (((-868 $ $) $) 36)) (-3992 (((-112) $) 35)) (-3664 (($ $ $) 13)) (-1709 (((-1112) $) NIL)) (-3772 (((-868 $ $) $) 38)) (-2324 (((-112) $) 37)) (-4166 (($ $ $) 14)) (-4053 (((-857) $) 40) (($ |#1|) 7) (($ (-1168)) 9)) (-3972 (((-868 $ $) $) 32)) (-3227 (((-112) $) 30)) (-2245 (($ $ $) 11)) (-1733 (((-112) $ $) NIL)))
+(((-961 |#1|) (-13 (-962) (-10 -8 (-15 -4053 ($ |#1|)) (-15 -4053 ($ (-1168))) (-15 -1401 ((-1094 (-1168)) $)) (-15 -2522 ((-112) $)) (-15 -1692 (|#1| $)) (-15 -3927 ((-112) $)) (-15 -2443 ((-1168) $)) (-15 -2348 ((-112) $)) (-15 -1519 ($ $)) (-15 -3227 ((-112) $)) (-15 -3972 ((-868 $ $) $)) (-15 -1329 ((-112) $)) (-15 -3460 ((-868 $ $) $)) (-15 -3992 ((-112) $)) (-15 -4288 ((-868 $ $) $)) (-15 -2324 ((-112) $)) (-15 -3772 ((-868 $ $) $)))) (-962)) (T -961))
+((-4053 (*1 *1 *2) (-12 (-5 *1 (-961 *2)) (-4 *2 (-962)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-1401 (*1 *2 *1) (-12 (-5 *2 (-1094 (-1168))) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-2522 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-1692 (*1 *2 *1) (-12 (-5 *1 (-961 *2)) (-4 *2 (-962)))) (-3927 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-2443 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-2348 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-1519 (*1 *1 *1) (-12 (-5 *1 (-961 *2)) (-4 *2 (-962)))) (-3227 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-3972 (*1 *2 *1) (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-1329 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-3460 (*1 *2 *1) (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-3992 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-4288 (*1 *2 *1) (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-2324 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))) (-3772 (*1 *2 *1) (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
+(-13 (-962) (-10 -8 (-15 -4053 ($ |#1|)) (-15 -4053 ($ (-1168))) (-15 -1401 ((-1094 (-1168)) $)) (-15 -2522 ((-112) $)) (-15 -1692 (|#1| $)) (-15 -3927 ((-112) $)) (-15 -2443 ((-1168) $)) (-15 -2348 ((-112) $)) (-15 -1519 ($ $)) (-15 -3227 ((-112) $)) (-15 -3972 ((-868 $ $) $)) (-15 -1329 ((-112) $)) (-15 -3460 ((-868 $ $) $)) (-15 -3992 ((-112) $)) (-15 -4288 ((-868 $ $) $)) (-15 -2324 ((-112) $)) (-15 -3772 ((-868 $ $) $))))
+((-4041 (((-112) $ $) 7)) (-2256 (($ $ $) 15)) (-2234 (($ $) 17)) (-3696 (((-1150) $) 9)) (-3664 (($ $ $) 14)) (-1709 (((-1112) $) 10)) (-4166 (($ $ $) 13)) (-4053 (((-857) $) 11)) (-2245 (($ $ $) 16)) (-1733 (((-112) $ $) 6)))
(((-962) (-139)) (T -962))
-((-2236 (*1 *1 *1) (-4 *1 (-962))) (-2246 (*1 *1 *1 *1) (-4 *1 (-962))) (-2255 (*1 *1 *1 *1) (-4 *1 (-962))) (-3994 (*1 *1 *1 *1) (-4 *1 (-962))) (-1935 (*1 *1 *1 *1) (-4 *1 (-962))))
-(-13 (-1092) (-10 -8 (-15 -2236 ($ $)) (-15 -2246 ($ $ $)) (-15 -2255 ($ $ $)) (-15 -3994 ($ $ $)) (-15 -1935 ($ $ $))))
+((-2234 (*1 *1 *1) (-4 *1 (-962))) (-2245 (*1 *1 *1 *1) (-4 *1 (-962))) (-2256 (*1 *1 *1 *1) (-4 *1 (-962))) (-3664 (*1 *1 *1 *1) (-4 *1 (-962))) (-4166 (*1 *1 *1 *1) (-4 *1 (-962))))
+(-13 (-1092) (-10 -8 (-15 -2234 ($ $)) (-15 -2245 ($ $ $)) (-15 -2256 ($ $ $)) (-15 -3664 ($ $ $)) (-15 -4166 ($ $ $))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) 8)) (-1800 (($) 7 T CONST)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-2673 (($ $ $) 43)) (-1610 (($ $ $) 44)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-2993 ((|#1| $) 45)) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3262 ((|#1| $) 39)) (-4300 (($ |#1| $) 40)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1904 ((|#1| $) 41)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1932 (($ (-639 |#1|)) 42)) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) 8)) (-3329 (($) 7 T CONST)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-3124 (($ $ $) 43)) (-4103 (($ $ $) 44)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-2993 ((|#1| $) 45)) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-2078 ((|#1| $) 39)) (-1581 (($ |#1| $) 40)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-2038 ((|#1| $) 41)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-4131 (($ (-639 |#1|)) 42)) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-963 |#1|) (-139) (-845)) (T -963))
-((-2993 (*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-845)))) (-1610 (*1 *1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-845)))) (-2673 (*1 *1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-845)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4402) (-15 -2993 (|t#1| $)) (-15 -1610 ($ $ $)) (-15 -2673 ($ $ $))))
+((-2993 (*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-845)))) (-4103 (*1 *1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-845)))) (-3124 (*1 *1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-845)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4403) (-15 -2993 (|t#1| $)) (-15 -4103 ($ $ $)) (-15 -3124 ($ $ $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-3276 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1606 |#2|)) |#2| |#2|) 84)) (-3258 ((|#2| |#2| |#2|) 82)) (-1747 (((-2 (|:| |coef2| |#2|) (|:| -1606 |#2|)) |#2| |#2|) 86)) (-1436 (((-2 (|:| |coef1| |#2|) (|:| -1606 |#2|)) |#2| |#2|) 88)) (-2382 (((-2 (|:| |coef2| |#2|) (|:| -1732 |#1|)) |#2| |#2|) 106 (|has| |#1| (-451)))) (-1640 (((-2 (|:| |coef2| |#2|) (|:| -2835 |#1|)) |#2| |#2|) 45)) (-3291 (((-2 (|:| |coef2| |#2|) (|:| -2835 |#1|)) |#2| |#2|) 63)) (-3648 (((-2 (|:| |coef1| |#2|) (|:| -2835 |#1|)) |#2| |#2|) 65)) (-3752 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 77)) (-1626 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766)) 70)) (-2773 (((-2 (|:| |coef2| |#2|) (|:| -2455 |#1|)) |#2|) 96)) (-4292 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766)) 73)) (-3030 (((-639 (-766)) |#2| |#2|) 81)) (-3893 ((|#1| |#2| |#2|) 41)) (-3560 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1732 |#1|)) |#2| |#2|) 104 (|has| |#1| (-451)))) (-1732 ((|#1| |#2| |#2|) 102 (|has| |#1| (-451)))) (-1721 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2835 |#1|)) |#2| |#2|) 43)) (-1419 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2835 |#1|)) |#2| |#2|) 62)) (-2835 ((|#1| |#2| |#2|) 60)) (-2622 (((-2 (|:| -4221 |#1|) (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2|) 34)) (-1521 ((|#2| |#2| |#2| |#2| |#1|) 52)) (-3057 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 75)) (-1851 ((|#2| |#2| |#2|) 74)) (-1893 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766)) 68)) (-2045 ((|#2| |#2| |#2| (-766)) 66)) (-1606 ((|#2| |#2| |#2|) 110 (|has| |#1| (-451)))) (-1762 (((-1256 |#2|) (-1256 |#2|) |#1|) 21)) (-2080 (((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2|) 38)) (-2971 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2455 |#1|)) |#2|) 94)) (-2455 ((|#1| |#2|) 91)) (-2553 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766)) 72)) (-3866 ((|#2| |#2| |#2| (-766)) 71)) (-1376 (((-639 |#2|) |#2| |#2|) 79)) (-1983 ((|#2| |#2| |#1| |#1| (-766)) 49)) (-3409 ((|#1| |#1| |#1| (-766)) 48)) (* (((-1256 |#2|) |#1| (-1256 |#2|)) 16)))
-(((-964 |#1| |#2|) (-10 -7 (-15 -2835 (|#1| |#2| |#2|)) (-15 -1419 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2835 |#1|)) |#2| |#2|)) (-15 -3291 ((-2 (|:| |coef2| |#2|) (|:| -2835 |#1|)) |#2| |#2|)) (-15 -3648 ((-2 (|:| |coef1| |#2|) (|:| -2835 |#1|)) |#2| |#2|)) (-15 -2045 (|#2| |#2| |#2| (-766))) (-15 -1893 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -1626 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -3866 (|#2| |#2| |#2| (-766))) (-15 -2553 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -4292 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -1851 (|#2| |#2| |#2|)) (-15 -3057 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3752 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3258 (|#2| |#2| |#2|)) (-15 -3276 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1606 |#2|)) |#2| |#2|)) (-15 -1747 ((-2 (|:| |coef2| |#2|) (|:| -1606 |#2|)) |#2| |#2|)) (-15 -1436 ((-2 (|:| |coef1| |#2|) (|:| -1606 |#2|)) |#2| |#2|)) (-15 -2455 (|#1| |#2|)) (-15 -2971 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2455 |#1|)) |#2|)) (-15 -2773 ((-2 (|:| |coef2| |#2|) (|:| -2455 |#1|)) |#2|)) (-15 -1376 ((-639 |#2|) |#2| |#2|)) (-15 -3030 ((-639 (-766)) |#2| |#2|)) (IF (|has| |#1| (-451)) (PROGN (-15 -1732 (|#1| |#2| |#2|)) (-15 -3560 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1732 |#1|)) |#2| |#2|)) (-15 -2382 ((-2 (|:| |coef2| |#2|) (|:| -1732 |#1|)) |#2| |#2|)) (-15 -1606 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1256 |#2|) |#1| (-1256 |#2|))) (-15 -1762 ((-1256 |#2|) (-1256 |#2|) |#1|)) (-15 -2622 ((-2 (|:| -4221 |#1|) (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2|)) (-15 -2080 ((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2|)) (-15 -3409 (|#1| |#1| |#1| (-766))) (-15 -1983 (|#2| |#2| |#1| |#1| (-766))) (-15 -1521 (|#2| |#2| |#2| |#2| |#1|)) (-15 -3893 (|#1| |#2| |#2|)) (-15 -1721 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2835 |#1|)) |#2| |#2|)) (-15 -1640 ((-2 (|:| |coef2| |#2|) (|:| -2835 |#1|)) |#2| |#2|))) (-554) (-1232 |#1|)) (T -964))
-((-1640 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2835 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-1721 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2835 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-3893 (*1 *2 *3 *3) (-12 (-4 *2 (-554)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2)))) (-1521 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3)))) (-1983 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-766)) (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3)))) (-3409 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *2 (-554)) (-5 *1 (-964 *2 *4)) (-4 *4 (-1232 *2)))) (-2080 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2622 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| -4221 *4) (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-1762 (*1 *2 *2 *3) (-12 (-5 *2 (-1256 *4)) (-4 *4 (-1232 *3)) (-4 *3 (-554)) (-5 *1 (-964 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1256 *4)) (-4 *4 (-1232 *3)) (-4 *3 (-554)) (-5 *1 (-964 *3 *4)))) (-1606 (*1 *2 *2 *2) (-12 (-4 *3 (-451)) (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3)))) (-2382 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1732 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-3560 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1732 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-1732 (*1 *2 *3 *3) (-12 (-4 *2 (-554)) (-4 *2 (-451)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2)))) (-3030 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 (-766))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-1376 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 *3)) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2773 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2455 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2971 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2455 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2455 (*1 *2 *3) (-12 (-4 *2 (-554)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2)))) (-1436 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1606 *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-1747 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1606 *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-3276 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1606 *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-3258 (*1 *2 *2 *2) (-12 (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3)))) (-3752 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-3057 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-1851 (*1 *2 *2 *2) (-12 (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3)))) (-4292 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))) (-2553 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))) (-3866 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-554)) (-5 *1 (-964 *4 *2)) (-4 *2 (-1232 *4)))) (-1626 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))) (-1893 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))) (-2045 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-554)) (-5 *1 (-964 *4 *2)) (-4 *2 (-1232 *4)))) (-3648 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2835 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-3291 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2835 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-1419 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2835 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2835 (*1 *2 *3 *3) (-12 (-4 *2 (-554)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2)))))
-(-10 -7 (-15 -2835 (|#1| |#2| |#2|)) (-15 -1419 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2835 |#1|)) |#2| |#2|)) (-15 -3291 ((-2 (|:| |coef2| |#2|) (|:| -2835 |#1|)) |#2| |#2|)) (-15 -3648 ((-2 (|:| |coef1| |#2|) (|:| -2835 |#1|)) |#2| |#2|)) (-15 -2045 (|#2| |#2| |#2| (-766))) (-15 -1893 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -1626 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -3866 (|#2| |#2| |#2| (-766))) (-15 -2553 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -4292 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -1851 (|#2| |#2| |#2|)) (-15 -3057 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3752 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3258 (|#2| |#2| |#2|)) (-15 -3276 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1606 |#2|)) |#2| |#2|)) (-15 -1747 ((-2 (|:| |coef2| |#2|) (|:| -1606 |#2|)) |#2| |#2|)) (-15 -1436 ((-2 (|:| |coef1| |#2|) (|:| -1606 |#2|)) |#2| |#2|)) (-15 -2455 (|#1| |#2|)) (-15 -2971 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2455 |#1|)) |#2|)) (-15 -2773 ((-2 (|:| |coef2| |#2|) (|:| -2455 |#1|)) |#2|)) (-15 -1376 ((-639 |#2|) |#2| |#2|)) (-15 -3030 ((-639 (-766)) |#2| |#2|)) (IF (|has| |#1| (-451)) (PROGN (-15 -1732 (|#1| |#2| |#2|)) (-15 -3560 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1732 |#1|)) |#2| |#2|)) (-15 -2382 ((-2 (|:| |coef2| |#2|) (|:| -1732 |#1|)) |#2| |#2|)) (-15 -1606 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1256 |#2|) |#1| (-1256 |#2|))) (-15 -1762 ((-1256 |#2|) (-1256 |#2|) |#1|)) (-15 -2622 ((-2 (|:| -4221 |#1|) (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2|)) (-15 -2080 ((-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) |#2| |#2|)) (-15 -3409 (|#1| |#1| |#1| (-766))) (-15 -1983 (|#2| |#2| |#1| |#1| (-766))) (-15 -1521 (|#2| |#2| |#2| |#2| |#1|)) (-15 -3893 (|#1| |#2| |#2|)) (-15 -1721 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2835 |#1|)) |#2| |#2|)) (-15 -1640 ((-2 (|:| |coef2| |#2|) (|:| -2835 |#1|)) |#2| |#2|)))
-((-4041 (((-112) $ $) NIL)) (-4084 (((-1206) $) 13)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1743 (((-1127) $) 10)) (-4054 (((-857) $) 22) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-2199 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1606 |#2|)) |#2| |#2|) 84)) (-2035 ((|#2| |#2| |#2|) 82)) (-2905 (((-2 (|:| |coef2| |#2|) (|:| -1606 |#2|)) |#2| |#2|) 86)) (-2030 (((-2 (|:| |coef1| |#2|) (|:| -1606 |#2|)) |#2| |#2|) 88)) (-3198 (((-2 (|:| |coef2| |#2|) (|:| -3959 |#1|)) |#2| |#2|) 106 (|has| |#1| (-451)))) (-4381 (((-2 (|:| |coef2| |#2|) (|:| -2355 |#1|)) |#2| |#2|) 45)) (-4161 (((-2 (|:| |coef2| |#2|) (|:| -2355 |#1|)) |#2| |#2|) 63)) (-1463 (((-2 (|:| |coef1| |#2|) (|:| -2355 |#1|)) |#2| |#2|) 65)) (-3114 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 77)) (-4250 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766)) 70)) (-2878 (((-2 (|:| |coef2| |#2|) (|:| -2736 |#1|)) |#2|) 96)) (-1480 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766)) 73)) (-3558 (((-639 (-766)) |#2| |#2|) 81)) (-2132 ((|#1| |#2| |#2|) 41)) (-1896 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3959 |#1|)) |#2| |#2|) 104 (|has| |#1| (-451)))) (-3959 ((|#1| |#2| |#2|) 102 (|has| |#1| (-451)))) (-3878 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2355 |#1|)) |#2| |#2|) 43)) (-1899 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2355 |#1|)) |#2| |#2|) 62)) (-2355 ((|#1| |#2| |#2|) 60)) (-3840 (((-2 (|:| -4221 |#1|) (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2|) 34)) (-2749 ((|#2| |#2| |#2| |#2| |#1|) 52)) (-3698 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 75)) (-2672 ((|#2| |#2| |#2|) 74)) (-1921 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766)) 68)) (-4065 ((|#2| |#2| |#2| (-766)) 66)) (-1606 ((|#2| |#2| |#2|) 110 (|has| |#1| (-451)))) (-1762 (((-1256 |#2|) (-1256 |#2|) |#1|) 21)) (-3204 (((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2|) 38)) (-3053 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2736 |#1|)) |#2|) 94)) (-2736 ((|#1| |#2|) 91)) (-4359 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766)) 72)) (-1831 ((|#2| |#2| |#2| (-766)) 71)) (-3416 (((-639 |#2|) |#2| |#2|) 79)) (-1541 ((|#2| |#2| |#1| |#1| (-766)) 49)) (-4019 ((|#1| |#1| |#1| (-766)) 48)) (* (((-1256 |#2|) |#1| (-1256 |#2|)) 16)))
+(((-964 |#1| |#2|) (-10 -7 (-15 -2355 (|#1| |#2| |#2|)) (-15 -1899 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2355 |#1|)) |#2| |#2|)) (-15 -4161 ((-2 (|:| |coef2| |#2|) (|:| -2355 |#1|)) |#2| |#2|)) (-15 -1463 ((-2 (|:| |coef1| |#2|) (|:| -2355 |#1|)) |#2| |#2|)) (-15 -4065 (|#2| |#2| |#2| (-766))) (-15 -1921 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -4250 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -1831 (|#2| |#2| |#2| (-766))) (-15 -4359 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -1480 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -2672 (|#2| |#2| |#2|)) (-15 -3698 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3114 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2035 (|#2| |#2| |#2|)) (-15 -2199 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1606 |#2|)) |#2| |#2|)) (-15 -2905 ((-2 (|:| |coef2| |#2|) (|:| -1606 |#2|)) |#2| |#2|)) (-15 -2030 ((-2 (|:| |coef1| |#2|) (|:| -1606 |#2|)) |#2| |#2|)) (-15 -2736 (|#1| |#2|)) (-15 -3053 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2736 |#1|)) |#2|)) (-15 -2878 ((-2 (|:| |coef2| |#2|) (|:| -2736 |#1|)) |#2|)) (-15 -3416 ((-639 |#2|) |#2| |#2|)) (-15 -3558 ((-639 (-766)) |#2| |#2|)) (IF (|has| |#1| (-451)) (PROGN (-15 -3959 (|#1| |#2| |#2|)) (-15 -1896 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3959 |#1|)) |#2| |#2|)) (-15 -3198 ((-2 (|:| |coef2| |#2|) (|:| -3959 |#1|)) |#2| |#2|)) (-15 -1606 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1256 |#2|) |#1| (-1256 |#2|))) (-15 -1762 ((-1256 |#2|) (-1256 |#2|) |#1|)) (-15 -3840 ((-2 (|:| -4221 |#1|) (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2|)) (-15 -3204 ((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2|)) (-15 -4019 (|#1| |#1| |#1| (-766))) (-15 -1541 (|#2| |#2| |#1| |#1| (-766))) (-15 -2749 (|#2| |#2| |#2| |#2| |#1|)) (-15 -2132 (|#1| |#2| |#2|)) (-15 -3878 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2355 |#1|)) |#2| |#2|)) (-15 -4381 ((-2 (|:| |coef2| |#2|) (|:| -2355 |#1|)) |#2| |#2|))) (-554) (-1232 |#1|)) (T -964))
+((-4381 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2355 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-3878 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2355 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2132 (*1 *2 *3 *3) (-12 (-4 *2 (-554)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2)))) (-2749 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3)))) (-1541 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-766)) (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3)))) (-4019 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *2 (-554)) (-5 *1 (-964 *2 *4)) (-4 *4 (-1232 *2)))) (-3204 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-3840 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| -4221 *4) (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-1762 (*1 *2 *2 *3) (-12 (-5 *2 (-1256 *4)) (-4 *4 (-1232 *3)) (-4 *3 (-554)) (-5 *1 (-964 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1256 *4)) (-4 *4 (-1232 *3)) (-4 *3 (-554)) (-5 *1 (-964 *3 *4)))) (-1606 (*1 *2 *2 *2) (-12 (-4 *3 (-451)) (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3)))) (-3198 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3959 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-1896 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3959 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-3959 (*1 *2 *3 *3) (-12 (-4 *2 (-554)) (-4 *2 (-451)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2)))) (-3558 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 (-766))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-3416 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 *3)) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2878 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2736 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-3053 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2736 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2736 (*1 *2 *3) (-12 (-4 *2 (-554)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2)))) (-2030 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1606 *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2905 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1606 *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2199 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1606 *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2035 (*1 *2 *2 *2) (-12 (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3)))) (-3114 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-3698 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2672 (*1 *2 *2 *2) (-12 (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3)))) (-1480 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))) (-4359 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))) (-1831 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-554)) (-5 *1 (-964 *4 *2)) (-4 *2 (-1232 *4)))) (-4250 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))) (-1921 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))) (-4065 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-554)) (-5 *1 (-964 *4 *2)) (-4 *2 (-1232 *4)))) (-1463 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2355 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-4161 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2355 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-1899 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2355 *4))) (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))) (-2355 (*1 *2 *3 *3) (-12 (-4 *2 (-554)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2)))))
+(-10 -7 (-15 -2355 (|#1| |#2| |#2|)) (-15 -1899 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2355 |#1|)) |#2| |#2|)) (-15 -4161 ((-2 (|:| |coef2| |#2|) (|:| -2355 |#1|)) |#2| |#2|)) (-15 -1463 ((-2 (|:| |coef1| |#2|) (|:| -2355 |#1|)) |#2| |#2|)) (-15 -4065 (|#2| |#2| |#2| (-766))) (-15 -1921 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -4250 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -1831 (|#2| |#2| |#2| (-766))) (-15 -4359 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -1480 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-766))) (-15 -2672 (|#2| |#2| |#2|)) (-15 -3698 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3114 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2035 (|#2| |#2| |#2|)) (-15 -2199 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1606 |#2|)) |#2| |#2|)) (-15 -2905 ((-2 (|:| |coef2| |#2|) (|:| -1606 |#2|)) |#2| |#2|)) (-15 -2030 ((-2 (|:| |coef1| |#2|) (|:| -1606 |#2|)) |#2| |#2|)) (-15 -2736 (|#1| |#2|)) (-15 -3053 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2736 |#1|)) |#2|)) (-15 -2878 ((-2 (|:| |coef2| |#2|) (|:| -2736 |#1|)) |#2|)) (-15 -3416 ((-639 |#2|) |#2| |#2|)) (-15 -3558 ((-639 (-766)) |#2| |#2|)) (IF (|has| |#1| (-451)) (PROGN (-15 -3959 (|#1| |#2| |#2|)) (-15 -1896 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3959 |#1|)) |#2| |#2|)) (-15 -3198 ((-2 (|:| |coef2| |#2|) (|:| -3959 |#1|)) |#2| |#2|)) (-15 -1606 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1256 |#2|) |#1| (-1256 |#2|))) (-15 -1762 ((-1256 |#2|) (-1256 |#2|) |#1|)) (-15 -3840 ((-2 (|:| -4221 |#1|) (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2|)) (-15 -3204 ((-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) |#2| |#2|)) (-15 -4019 (|#1| |#1| |#1| (-766))) (-15 -1541 (|#2| |#2| |#1| |#1| (-766))) (-15 -2749 (|#2| |#2| |#2| |#2| |#1|)) (-15 -2132 (|#1| |#2| |#2|)) (-15 -3878 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2355 |#1|)) |#2| |#2|)) (-15 -4381 ((-2 (|:| |coef2| |#2|) (|:| -2355 |#1|)) |#2| |#2|)))
+((-4041 (((-112) $ $) NIL)) (-4084 (((-1206) $) 13)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1743 (((-1127) $) 10)) (-4053 (((-857) $) 22) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-965) (-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $)) (-15 -4084 ((-1206) $))))) (T -965))
((-1743 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-965)))) (-4084 (*1 *2 *1) (-12 (-5 *2 (-1206)) (-5 *1 (-965)))))
(-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $)) (-15 -4084 ((-1206) $))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) 26)) (-1800 (($) NIL T CONST)) (-4078 (((-639 (-639 (-562))) (-639 (-562))) 28)) (-4368 (((-562) $) 44)) (-2660 (($ (-639 (-562))) 17)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4208 (((-639 (-562)) $) 12)) (-3665 (($ $) 31)) (-4054 (((-857) $) 42) (((-639 (-562)) $) 10)) (-2286 (($) 7 T CONST)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 19)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 18)) (-1835 (($ $ $) 20)) (* (($ (-916) $) NIL) (($ (-766) $) 24)))
-(((-966) (-13 (-790) (-610 (-639 (-562))) (-609 (-639 (-562))) (-10 -8 (-15 -2660 ($ (-639 (-562)))) (-15 -4078 ((-639 (-639 (-562))) (-639 (-562)))) (-15 -4368 ((-562) $)) (-15 -3665 ($ $))))) (T -966))
-((-2660 (*1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-966)))) (-4078 (*1 *2 *3) (-12 (-5 *2 (-639 (-639 (-562)))) (-5 *1 (-966)) (-5 *3 (-639 (-562))))) (-4368 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-966)))) (-3665 (*1 *1 *1) (-5 *1 (-966))))
-(-13 (-790) (-610 (-639 (-562))) (-609 (-639 (-562))) (-10 -8 (-15 -2660 ($ (-639 (-562)))) (-15 -4078 ((-639 (-639 (-562))) (-639 (-562)))) (-15 -4368 ((-562) $)) (-15 -3665 ($ $))))
-((-1859 (($ $ |#2|) 30)) (-1848 (($ $) 22) (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 15) (($ $ $) NIL) (($ $ |#2|) 20) (($ |#2| $) 19) (($ (-406 (-562)) $) 26) (($ $ (-406 (-562))) 28)))
-(((-967 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -1859 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|))) (-968 |#2| |#3| |#4|) (-1044) (-787) (-845)) (T -967))
-NIL
-(-10 -8 (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -1859 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1402 (((-639 |#3|) $) 77)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-2796 (($ $) 55 (|has| |#1| (-554)))) (-4370 (((-112) $) 57 (|has| |#1| (-554)))) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-1601 (($ $) 63)) (-3668 (((-3 $ "failed") $) 33)) (-1756 (((-112) $) 76)) (-1957 (((-112) $) 31)) (-3536 (((-112) $) 65)) (-1378 (($ |#1| |#2|) 64) (($ $ |#3| |#2|) 79) (($ $ (-639 |#3|) (-639 |#2|)) 78)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-3598 ((|#2| $) 67)) (-2256 (($ $) 75)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554))) (($ |#1|) 50 (|has| |#1| (-171)))) (-3906 ((|#1| $ |#2|) 62)) (-2805 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 56 (|has| |#1| (-554)))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) 26)) (-3329 (($) NIL T CONST)) (-3180 (((-639 (-639 (-562))) (-639 (-562))) 28)) (-4080 (((-562) $) 44)) (-3004 (($ (-639 (-562))) 17)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4208 (((-639 (-562)) $) 12)) (-1660 (($ $) 31)) (-4053 (((-857) $) 42) (((-639 (-562)) $) 10)) (-2285 (($) 7 T CONST)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 19)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 18)) (-1836 (($ $ $) 20)) (* (($ (-916) $) NIL) (($ (-766) $) 24)))
+(((-966) (-13 (-790) (-610 (-639 (-562))) (-609 (-639 (-562))) (-10 -8 (-15 -3004 ($ (-639 (-562)))) (-15 -3180 ((-639 (-639 (-562))) (-639 (-562)))) (-15 -4080 ((-562) $)) (-15 -1660 ($ $))))) (T -966))
+((-3004 (*1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-966)))) (-3180 (*1 *2 *3) (-12 (-5 *2 (-639 (-639 (-562)))) (-5 *1 (-966)) (-5 *3 (-639 (-562))))) (-4080 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-966)))) (-1660 (*1 *1 *1) (-5 *1 (-966))))
+(-13 (-790) (-610 (-639 (-562))) (-609 (-639 (-562))) (-10 -8 (-15 -3004 ($ (-639 (-562)))) (-15 -3180 ((-639 (-639 (-562))) (-639 (-562)))) (-15 -4080 ((-562) $)) (-15 -1660 ($ $))))
+((-1859 (($ $ |#2|) 30)) (-1847 (($ $) 22) (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 15) (($ $ $) NIL) (($ $ |#2|) 20) (($ |#2| $) 19) (($ (-406 (-562)) $) 26) (($ $ (-406 (-562))) 28)))
+(((-967 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -1859 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|))) (-968 |#2| |#3| |#4|) (-1044) (-787) (-845)) (T -967))
+NIL
+(-10 -8 (-15 * (|#1| |#1| (-406 (-562)))) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 -1859 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 * (|#1| (-916) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-1401 (((-639 |#3|) $) 77)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-1965 (($ $) 55 (|has| |#1| (-554)))) (-4102 (((-112) $) 57 (|has| |#1| (-554)))) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1600 (($ $) 63)) (-1694 (((-3 $ "failed") $) 33)) (-2965 (((-112) $) 76)) (-4367 (((-112) $) 31)) (-2833 (((-112) $) 65)) (-1377 (($ |#1| |#2|) 64) (($ $ |#3| |#2|) 79) (($ $ (-639 |#3|) (-639 |#2|)) 78)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-2250 ((|#2| $) 67)) (-1345 (($ $) 75)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554))) (($ |#1|) 50 (|has| |#1| (-171)))) (-2266 ((|#1| $ |#2|) 62)) (-2059 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 56 (|has| |#1| (-554)))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
(((-968 |#1| |#2| |#3|) (-139) (-1044) (-787) (-845)) (T -968))
-((-1573 (*1 *2 *1) (-12 (-4 *1 (-968 *2 *3 *4)) (-4 *3 (-787)) (-4 *4 (-845)) (-4 *2 (-1044)))) (-1560 (*1 *1 *1) (-12 (-4 *1 (-968 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-787)) (-4 *4 (-845)))) (-3598 (*1 *2 *1) (-12 (-4 *1 (-968 *3 *2 *4)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *2 (-787)))) (-1378 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-968 *4 *3 *2)) (-4 *4 (-1044)) (-4 *3 (-787)) (-4 *2 (-845)))) (-1378 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *6)) (-5 *3 (-639 *5)) (-4 *1 (-968 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-787)) (-4 *6 (-845)))) (-1402 (*1 *2 *1) (-12 (-4 *1 (-968 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-787)) (-4 *5 (-845)) (-5 *2 (-639 *5)))) (-1756 (*1 *2 *1) (-12 (-4 *1 (-968 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-787)) (-4 *5 (-845)) (-5 *2 (-112)))) (-2256 (*1 *1 *1) (-12 (-4 *1 (-968 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-787)) (-4 *4 (-845)))))
-(-13 (-47 |t#1| |t#2|) (-10 -8 (-15 -1378 ($ $ |t#3| |t#2|)) (-15 -1378 ($ $ (-639 |t#3|) (-639 |t#2|))) (-15 -1560 ($ $)) (-15 -1573 (|t#1| $)) (-15 -3598 (|t#2| $)) (-15 -1402 ((-639 |t#3|) $)) (-15 -1756 ((-112) $)) (-15 -2256 ($ $))))
+((-1573 (*1 *2 *1) (-12 (-4 *1 (-968 *2 *3 *4)) (-4 *3 (-787)) (-4 *4 (-845)) (-4 *2 (-1044)))) (-1560 (*1 *1 *1) (-12 (-4 *1 (-968 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-787)) (-4 *4 (-845)))) (-2250 (*1 *2 *1) (-12 (-4 *1 (-968 *3 *2 *4)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *2 (-787)))) (-1377 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-968 *4 *3 *2)) (-4 *4 (-1044)) (-4 *3 (-787)) (-4 *2 (-845)))) (-1377 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 *6)) (-5 *3 (-639 *5)) (-4 *1 (-968 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-787)) (-4 *6 (-845)))) (-1401 (*1 *2 *1) (-12 (-4 *1 (-968 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-787)) (-4 *5 (-845)) (-5 *2 (-639 *5)))) (-2965 (*1 *2 *1) (-12 (-4 *1 (-968 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-787)) (-4 *5 (-845)) (-5 *2 (-112)))) (-1345 (*1 *1 *1) (-12 (-4 *1 (-968 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-787)) (-4 *4 (-845)))))
+(-13 (-47 |t#1| |t#2|) (-10 -8 (-15 -1377 ($ $ |t#3| |t#2|)) (-15 -1377 ($ $ (-639 |t#3|) (-639 |t#2|))) (-15 -1560 ($ $)) (-15 -1573 (|t#1| $)) (-15 -2250 (|t#2| $)) (-15 -1401 ((-639 |t#3|) $)) (-15 -2965 ((-112) $)) (-15 -1345 ($ $))))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-406 (-562))) |has| |#1| (-38 (-406 (-562)))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) |has| |#1| (-554)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-406 (-562)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #0#) |has| |#1| (-38 (-406 (-562)))) ((-612 (-562)) . T) ((-612 |#1|) |has| |#1| (-171)) ((-612 $) |has| |#1| (-554)) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-289) |has| |#1| (-554)) ((-554) |has| |#1| (-554)) ((-642 #0#) |has| |#1| (-38 (-406 (-562)))) ((-642 |#1|) . T) ((-642 $) . T) ((-712 #0#) |has| |#1| (-38 (-406 (-562)))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) |has| |#1| (-554)) ((-721) . T) ((-1050 #0#) |has| |#1| (-38 (-406 (-562)))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-1478 (((-1086 (-224)) $) 8)) (-1462 (((-1086 (-224)) $) 9)) (-1449 (((-1086 (-224)) $) 10)) (-2524 (((-639 (-639 (-938 (-224)))) $) 11)) (-4054 (((-857) $) 6)))
+((-1478 (((-1086 (-224)) $) 8)) (-1462 (((-1086 (-224)) $) 9)) (-1448 (((-1086 (-224)) $) 10)) (-2259 (((-639 (-639 (-938 (-224)))) $) 11)) (-4053 (((-857) $) 6)))
(((-969) (-139)) (T -969))
-((-2524 (*1 *2 *1) (-12 (-4 *1 (-969)) (-5 *2 (-639 (-639 (-938 (-224))))))) (-1449 (*1 *2 *1) (-12 (-4 *1 (-969)) (-5 *2 (-1086 (-224))))) (-1462 (*1 *2 *1) (-12 (-4 *1 (-969)) (-5 *2 (-1086 (-224))))) (-1478 (*1 *2 *1) (-12 (-4 *1 (-969)) (-5 *2 (-1086 (-224))))))
-(-13 (-609 (-857)) (-10 -8 (-15 -2524 ((-639 (-639 (-938 (-224)))) $)) (-15 -1449 ((-1086 (-224)) $)) (-15 -1462 ((-1086 (-224)) $)) (-15 -1478 ((-1086 (-224)) $))))
+((-2259 (*1 *2 *1) (-12 (-4 *1 (-969)) (-5 *2 (-639 (-639 (-938 (-224))))))) (-1448 (*1 *2 *1) (-12 (-4 *1 (-969)) (-5 *2 (-1086 (-224))))) (-1462 (*1 *2 *1) (-12 (-4 *1 (-969)) (-5 *2 (-1086 (-224))))) (-1478 (*1 *2 *1) (-12 (-4 *1 (-969)) (-5 *2 (-1086 (-224))))))
+(-13 (-609 (-857)) (-10 -8 (-15 -2259 ((-639 (-639 (-938 (-224)))) $)) (-15 -1448 ((-1086 (-224)) $)) (-15 -1462 ((-1086 (-224)) $)) (-15 -1478 ((-1086 (-224)) $))))
(((-609 (-857)) . T))
-((-1402 (((-639 |#4|) $) 23)) (-4170 (((-112) $) 47)) (-4274 (((-112) $) 46)) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |#4|) 35)) (-2207 (((-112) $) 48)) (-1920 (((-112) $ $) 54)) (-3852 (((-112) $ $) 57)) (-2539 (((-112) $) 52)) (-3884 (((-639 |#5|) (-639 |#5|) $) 89)) (-2540 (((-639 |#5|) (-639 |#5|) $) 86)) (-2264 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 80)) (-3754 (((-639 |#4|) $) 27)) (-2071 (((-112) |#4| $) 29)) (-3725 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 72)) (-1812 (($ $ |#4|) 32)) (-3274 (($ $ |#4|) 31)) (-1568 (($ $ |#4|) 33)) (-1731 (((-112) $ $) 39)))
-(((-970 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -4274 ((-112) |#1|)) (-15 -3884 ((-639 |#5|) (-639 |#5|) |#1|)) (-15 -2540 ((-639 |#5|) (-639 |#5|) |#1|)) (-15 -2264 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3725 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2207 ((-112) |#1|)) (-15 -3852 ((-112) |#1| |#1|)) (-15 -1920 ((-112) |#1| |#1|)) (-15 -2539 ((-112) |#1|)) (-15 -4170 ((-112) |#1|)) (-15 -1395 ((-2 (|:| |under| |#1|) (|:| -4014 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -1812 (|#1| |#1| |#4|)) (-15 -1568 (|#1| |#1| |#4|)) (-15 -3274 (|#1| |#1| |#4|)) (-15 -2071 ((-112) |#4| |#1|)) (-15 -3754 ((-639 |#4|) |#1|)) (-15 -1402 ((-639 |#4|) |#1|)) (-15 -1731 ((-112) |#1| |#1|))) (-971 |#2| |#3| |#4| |#5|) (-1044) (-788) (-845) (-1058 |#2| |#3| |#4|)) (T -970))
+((-1401 (((-639 |#4|) $) 23)) (-2799 (((-112) $) 47)) (-4370 (((-112) $) 46)) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |#4|) 35)) (-2169 (((-112) $) 48)) (-2183 (((-112) $ $) 54)) (-2864 (((-112) $ $) 57)) (-4219 (((-112) $) 52)) (-2037 (((-639 |#5|) (-639 |#5|) $) 89)) (-4230 (((-639 |#5|) (-639 |#5|) $) 86)) (-1441 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 80)) (-3133 (((-639 |#4|) $) 27)) (-3112 (((-112) |#4| $) 29)) (-4123 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 72)) (-2316 (($ $ |#4|) 32)) (-2180 (($ $ |#4|) 31)) (-1962 (($ $ |#4|) 33)) (-1733 (((-112) $ $) 39)))
+(((-970 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -4370 ((-112) |#1|)) (-15 -2037 ((-639 |#5|) (-639 |#5|) |#1|)) (-15 -4230 ((-639 |#5|) (-639 |#5|) |#1|)) (-15 -1441 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -4123 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2169 ((-112) |#1|)) (-15 -2864 ((-112) |#1| |#1|)) (-15 -2183 ((-112) |#1| |#1|)) (-15 -4219 ((-112) |#1|)) (-15 -2799 ((-112) |#1|)) (-15 -1395 ((-2 (|:| |under| |#1|) (|:| -3870 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -2316 (|#1| |#1| |#4|)) (-15 -1962 (|#1| |#1| |#4|)) (-15 -2180 (|#1| |#1| |#4|)) (-15 -3112 ((-112) |#4| |#1|)) (-15 -3133 ((-639 |#4|) |#1|)) (-15 -1401 ((-639 |#4|) |#1|)) (-15 -1733 ((-112) |#1| |#1|))) (-971 |#2| |#3| |#4| |#5|) (-1044) (-788) (-845) (-1058 |#2| |#3| |#4|)) (T -970))
NIL
-(-10 -8 (-15 -4274 ((-112) |#1|)) (-15 -3884 ((-639 |#5|) (-639 |#5|) |#1|)) (-15 -2540 ((-639 |#5|) (-639 |#5|) |#1|)) (-15 -2264 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3725 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2207 ((-112) |#1|)) (-15 -3852 ((-112) |#1| |#1|)) (-15 -1920 ((-112) |#1| |#1|)) (-15 -2539 ((-112) |#1|)) (-15 -4170 ((-112) |#1|)) (-15 -1395 ((-2 (|:| |under| |#1|) (|:| -4014 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -1812 (|#1| |#1| |#4|)) (-15 -1568 (|#1| |#1| |#4|)) (-15 -3274 (|#1| |#1| |#4|)) (-15 -2071 ((-112) |#4| |#1|)) (-15 -3754 ((-639 |#4|) |#1|)) (-15 -1402 ((-639 |#4|) |#1|)) (-15 -1731 ((-112) |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1402 (((-639 |#3|) $) 33)) (-4170 (((-112) $) 26)) (-4274 (((-112) $) 17 (|has| |#1| (-554)))) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |#3|) 27)) (-4336 (((-112) $ (-766)) 44)) (-3556 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4402)))) (-1800 (($) 45 T CONST)) (-2207 (((-112) $) 22 (|has| |#1| (-554)))) (-1920 (((-112) $ $) 24 (|has| |#1| (-554)))) (-3852 (((-112) $ $) 23 (|has| |#1| (-554)))) (-2539 (((-112) $) 25 (|has| |#1| (-554)))) (-3884 (((-639 |#4|) (-639 |#4|) $) 18 (|has| |#1| (-554)))) (-2540 (((-639 |#4|) (-639 |#4|) $) 19 (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 36)) (-3961 (($ (-639 |#4|)) 35)) (-1459 (($ $) 68 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#4| $) 67 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4402)))) (-2264 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-554)))) (-1955 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4402))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4402)))) (-1720 (((-639 |#4|) $) 52 (|has| $ (-6 -4402)))) (-4339 ((|#3| $) 34)) (-3292 (((-112) $ (-766)) 43)) (-1912 (((-639 |#4|) $) 53 (|has| $ (-6 -4402)))) (-1669 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#4| |#4|) $) 47)) (-3754 (((-639 |#3|) $) 32)) (-2071 (((-112) |#3| $) 31)) (-3289 (((-112) $ (-766)) 42)) (-2913 (((-1150) $) 9)) (-3725 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-554)))) (-1709 (((-1112) $) 10)) (-3251 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-1763 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) 59 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) 57 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) 56 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-3336 (((-112) $ $) 38)) (-2974 (((-112) $) 41)) (-4307 (($) 40)) (-1723 (((-766) |#4| $) 54 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) (((-766) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4402)))) (-4220 (($ $) 39)) (-4208 (((-535) $) 69 (|has| |#4| (-610 (-535))))) (-4066 (($ (-639 |#4|)) 60)) (-1812 (($ $ |#3|) 28)) (-3274 (($ $ |#3|) 30)) (-1568 (($ $ |#3|) 29)) (-4054 (((-857) $) 11) (((-639 |#4|) $) 37)) (-1744 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 6)) (-3492 (((-766) $) 46 (|has| $ (-6 -4402)))))
+(-10 -8 (-15 -4370 ((-112) |#1|)) (-15 -2037 ((-639 |#5|) (-639 |#5|) |#1|)) (-15 -4230 ((-639 |#5|) (-639 |#5|) |#1|)) (-15 -1441 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -4123 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2169 ((-112) |#1|)) (-15 -2864 ((-112) |#1| |#1|)) (-15 -2183 ((-112) |#1| |#1|)) (-15 -4219 ((-112) |#1|)) (-15 -2799 ((-112) |#1|)) (-15 -1395 ((-2 (|:| |under| |#1|) (|:| -3870 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -2316 (|#1| |#1| |#4|)) (-15 -1962 (|#1| |#1| |#4|)) (-15 -2180 (|#1| |#1| |#4|)) (-15 -3112 ((-112) |#4| |#1|)) (-15 -3133 ((-639 |#4|) |#1|)) (-15 -1401 ((-639 |#4|) |#1|)) (-15 -1733 ((-112) |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-1401 (((-639 |#3|) $) 33)) (-2799 (((-112) $) 26)) (-4370 (((-112) $) 17 (|has| |#1| (-554)))) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |#3|) 27)) (-3735 (((-112) $ (-766)) 44)) (-3556 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4403)))) (-3329 (($) 45 T CONST)) (-2169 (((-112) $) 22 (|has| |#1| (-554)))) (-2183 (((-112) $ $) 24 (|has| |#1| (-554)))) (-2864 (((-112) $ $) 23 (|has| |#1| (-554)))) (-4219 (((-112) $) 25 (|has| |#1| (-554)))) (-2037 (((-639 |#4|) (-639 |#4|) $) 18 (|has| |#1| (-554)))) (-4230 (((-639 |#4|) (-639 |#4|) $) 19 (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 36)) (-3960 (($ (-639 |#4|)) 35)) (-1459 (($ $) 68 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#4| $) 67 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4403)))) (-1441 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-554)))) (-1954 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4403))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4403)))) (-1720 (((-639 |#4|) $) 52 (|has| $ (-6 -4403)))) (-3761 ((|#3| $) 34)) (-4172 (((-112) $ (-766)) 43)) (-2123 (((-639 |#4|) $) 53 (|has| $ (-6 -4403)))) (-1572 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#4| |#4|) $) 47)) (-3133 (((-639 |#3|) $) 32)) (-3112 (((-112) |#3| $) 31)) (-4147 (((-112) $ (-766)) 42)) (-3696 (((-1150) $) 9)) (-4123 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-554)))) (-1709 (((-1112) $) 10)) (-1963 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3008 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) 59 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) 57 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) 56 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-1452 (((-112) $ $) 38)) (-3087 (((-112) $) 41)) (-1663 (($) 40)) (-1723 (((-766) |#4| $) 54 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) (((-766) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4403)))) (-4220 (($ $) 39)) (-4208 (((-535) $) 69 (|has| |#4| (-610 (-535))))) (-4064 (($ (-639 |#4|)) 60)) (-2316 (($ $ |#3|) 28)) (-2180 (($ $ |#3|) 30)) (-1962 (($ $ |#3|) 29)) (-4053 (((-857) $) 11) (((-639 |#4|) $) 37)) (-2879 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 6)) (-3492 (((-766) $) 46 (|has| $ (-6 -4403)))))
(((-971 |#1| |#2| |#3| |#4|) (-139) (-1044) (-788) (-845) (-1058 |t#1| |t#2| |t#3|)) (T -971))
-((-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *1 (-971 *3 *4 *5 *6)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *1 (-971 *3 *4 *5 *6)))) (-4339 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-1058 *3 *4 *2)) (-4 *2 (-845)))) (-1402 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *5)))) (-3754 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *5)))) (-2071 (*1 *2 *3 *1) (-12 (-4 *1 (-971 *4 *5 *3 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-4 *6 (-1058 *4 *5 *3)) (-5 *2 (-112)))) (-3274 (*1 *1 *1 *2) (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *5 (-1058 *3 *4 *2)))) (-1568 (*1 *1 *1 *2) (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *5 (-1058 *3 *4 *2)))) (-1812 (*1 *1 *1 *2) (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *5 (-1058 *3 *4 *2)))) (-1395 (*1 *2 *1 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-4 *6 (-1058 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -4014 *1) (|:| |upper| *1))) (-4 *1 (-971 *4 *5 *3 *6)))) (-4170 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-2539 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-5 *2 (-112)))) (-1920 (*1 *2 *1 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-5 *2 (-112)))) (-3852 (*1 *2 *1 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-5 *2 (-112)))) (-2207 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-5 *2 (-112)))) (-3725 (*1 *2 *3 *1) (-12 (-4 *1 (-971 *4 *5 *6 *3)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-2264 (*1 *2 *3 *1) (-12 (-4 *1 (-971 *4 *5 *6 *3)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-2540 (*1 *2 *2 *1) (-12 (-5 *2 (-639 *6)) (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)))) (-3884 (*1 *2 *2 *1) (-12 (-5 *2 (-639 *6)) (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)))) (-4274 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-5 *2 (-112)))))
-(-13 (-1092) (-150 |t#4|) (-609 (-639 |t#4|)) (-10 -8 (-6 -4402) (-15 -4048 ((-3 $ "failed") (-639 |t#4|))) (-15 -3961 ($ (-639 |t#4|))) (-15 -4339 (|t#3| $)) (-15 -1402 ((-639 |t#3|) $)) (-15 -3754 ((-639 |t#3|) $)) (-15 -2071 ((-112) |t#3| $)) (-15 -3274 ($ $ |t#3|)) (-15 -1568 ($ $ |t#3|)) (-15 -1812 ($ $ |t#3|)) (-15 -1395 ((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |t#3|)) (-15 -4170 ((-112) $)) (IF (|has| |t#1| (-554)) (PROGN (-15 -2539 ((-112) $)) (-15 -1920 ((-112) $ $)) (-15 -3852 ((-112) $ $)) (-15 -2207 ((-112) $)) (-15 -3725 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -2264 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -2540 ((-639 |t#4|) (-639 |t#4|) $)) (-15 -3884 ((-639 |t#4|) (-639 |t#4|) $)) (-15 -4274 ((-112) $))) |%noBranch|)))
+((-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *1 (-971 *3 *4 *5 *6)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *1 (-971 *3 *4 *5 *6)))) (-3761 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-1058 *3 *4 *2)) (-4 *2 (-845)))) (-1401 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *5)))) (-3133 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *5)))) (-3112 (*1 *2 *3 *1) (-12 (-4 *1 (-971 *4 *5 *3 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-4 *6 (-1058 *4 *5 *3)) (-5 *2 (-112)))) (-2180 (*1 *1 *1 *2) (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *5 (-1058 *3 *4 *2)))) (-1962 (*1 *1 *1 *2) (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *5 (-1058 *3 *4 *2)))) (-2316 (*1 *1 *1 *2) (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)) (-4 *5 (-1058 *3 *4 *2)))) (-1395 (*1 *2 *1 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-4 *6 (-1058 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -3870 *1) (|:| |upper| *1))) (-4 *1 (-971 *4 *5 *3 *6)))) (-2799 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-4219 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-5 *2 (-112)))) (-2183 (*1 *2 *1 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-5 *2 (-112)))) (-2864 (*1 *2 *1 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-5 *2 (-112)))) (-2169 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-5 *2 (-112)))) (-4123 (*1 *2 *3 *1) (-12 (-4 *1 (-971 *4 *5 *6 *3)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-1441 (*1 *2 *3 *1) (-12 (-4 *1 (-971 *4 *5 *6 *3)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-4230 (*1 *2 *2 *1) (-12 (-5 *2 (-639 *6)) (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)))) (-2037 (*1 *2 *2 *1) (-12 (-5 *2 (-639 *6)) (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)))) (-4370 (*1 *2 *1) (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-5 *2 (-112)))))
+(-13 (-1092) (-150 |t#4|) (-609 (-639 |t#4|)) (-10 -8 (-6 -4403) (-15 -4048 ((-3 $ "failed") (-639 |t#4|))) (-15 -3960 ($ (-639 |t#4|))) (-15 -3761 (|t#3| $)) (-15 -1401 ((-639 |t#3|) $)) (-15 -3133 ((-639 |t#3|) $)) (-15 -3112 ((-112) |t#3| $)) (-15 -2180 ($ $ |t#3|)) (-15 -1962 ($ $ |t#3|)) (-15 -2316 ($ $ |t#3|)) (-15 -1395 ((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |t#3|)) (-15 -2799 ((-112) $)) (IF (|has| |t#1| (-554)) (PROGN (-15 -4219 ((-112) $)) (-15 -2183 ((-112) $ $)) (-15 -2864 ((-112) $ $)) (-15 -2169 ((-112) $)) (-15 -4123 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -1441 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -4230 ((-639 |t#4|) (-639 |t#4|) $)) (-15 -2037 ((-639 |t#4|) (-639 |t#4|) $)) (-15 -4370 ((-112) $))) |%noBranch|)))
(((-34) . T) ((-102) . T) ((-609 (-639 |#4|)) . T) ((-609 (-857)) . T) ((-150 |#4|) . T) ((-610 (-535)) |has| |#4| (-610 (-535))) ((-308 |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))) ((-488 |#4|) . T) ((-513 |#4| |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))) ((-1092) . T) ((-1207) . T))
-((-3257 (((-639 |#4|) |#4| |#4|) 117)) (-3455 (((-639 |#4|) (-639 |#4|) (-112)) 106 (|has| |#1| (-451))) (((-639 |#4|) (-639 |#4|)) 107 (|has| |#1| (-451)))) (-1634 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|)) 34)) (-1954 (((-112) |#4|) 33)) (-3579 (((-639 |#4|) |#4|) 102 (|has| |#1| (-451)))) (-2706 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-1 (-112) |#4|) (-639 |#4|)) 19)) (-1923 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 (-1 (-112) |#4|)) (-639 |#4|)) 21)) (-3542 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 (-1 (-112) |#4|)) (-639 |#4|)) 22)) (-3427 (((-3 (-2 (|:| |bas| (-475 |#1| |#2| |#3| |#4|)) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|)) 72)) (-4318 (((-639 |#4|) (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 84)) (-2949 (((-639 |#4|) (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 110)) (-2434 (((-639 |#4|) (-639 |#4|)) 109)) (-4085 (((-639 |#4|) (-639 |#4|) (-639 |#4|) (-112)) 47) (((-639 |#4|) (-639 |#4|) (-639 |#4|)) 49)) (-4350 ((|#4| |#4| (-639 |#4|)) 48)) (-2257 (((-639 |#4|) (-639 |#4|) (-639 |#4|)) 113 (|has| |#1| (-451)))) (-2567 (((-639 |#4|) (-639 |#4|) (-639 |#4|)) 116 (|has| |#1| (-451)))) (-3939 (((-639 |#4|) (-639 |#4|) (-639 |#4|)) 115 (|has| |#1| (-451)))) (-2910 (((-639 |#4|) (-639 |#4|) (-639 |#4|) (-1 (-639 |#4|) (-639 |#4|))) 86) (((-639 |#4|) (-639 |#4|) (-639 |#4|)) 88) (((-639 |#4|) (-639 |#4|) |#4|) 120) (((-639 |#4|) |#4| |#4|) 118) (((-639 |#4|) (-639 |#4|)) 87)) (-1793 (((-639 |#4|) (-639 |#4|) (-639 |#4|)) 99 (-12 (|has| |#1| (-146)) (|has| |#1| (-306))))) (-3305 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|)) 40)) (-2951 (((-112) (-639 |#4|)) 61)) (-4372 (((-112) (-639 |#4|) (-639 (-639 |#4|))) 52)) (-3472 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|)) 28)) (-2605 (((-112) |#4|) 27)) (-3152 (((-639 |#4|) (-639 |#4|)) 97 (-12 (|has| |#1| (-146)) (|has| |#1| (-306))))) (-3389 (((-639 |#4|) (-639 |#4|)) 98 (-12 (|has| |#1| (-146)) (|has| |#1| (-306))))) (-4134 (((-639 |#4|) (-639 |#4|)) 65)) (-2689 (((-639 |#4|) (-639 |#4|)) 78)) (-2711 (((-112) (-639 |#4|) (-639 |#4|)) 50)) (-4280 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|)) 38)) (-2510 (((-112) |#4|) 35)))
-(((-972 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2910 ((-639 |#4|) (-639 |#4|))) (-15 -2910 ((-639 |#4|) |#4| |#4|)) (-15 -2434 ((-639 |#4|) (-639 |#4|))) (-15 -3257 ((-639 |#4|) |#4| |#4|)) (-15 -2910 ((-639 |#4|) (-639 |#4|) |#4|)) (-15 -2910 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -2910 ((-639 |#4|) (-639 |#4|) (-639 |#4|) (-1 (-639 |#4|) (-639 |#4|)))) (-15 -2711 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -4372 ((-112) (-639 |#4|) (-639 (-639 |#4|)))) (-15 -2951 ((-112) (-639 |#4|))) (-15 -2706 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-1 (-112) |#4|) (-639 |#4|))) (-15 -1923 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 (-1 (-112) |#4|)) (-639 |#4|))) (-15 -3542 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 (-1 (-112) |#4|)) (-639 |#4|))) (-15 -3305 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -1954 ((-112) |#4|)) (-15 -1634 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -2605 ((-112) |#4|)) (-15 -3472 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -2510 ((-112) |#4|)) (-15 -4280 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -4085 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -4085 ((-639 |#4|) (-639 |#4|) (-639 |#4|) (-112))) (-15 -4350 (|#4| |#4| (-639 |#4|))) (-15 -4134 ((-639 |#4|) (-639 |#4|))) (-15 -3427 ((-3 (-2 (|:| |bas| (-475 |#1| |#2| |#3| |#4|)) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|))) (-15 -2689 ((-639 |#4|) (-639 |#4|))) (-15 -4318 ((-639 |#4|) (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2949 ((-639 |#4|) (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-451)) (PROGN (-15 -3579 ((-639 |#4|) |#4|)) (-15 -3455 ((-639 |#4|) (-639 |#4|))) (-15 -3455 ((-639 |#4|) (-639 |#4|) (-112))) (-15 -2257 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -3939 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -2567 ((-639 |#4|) (-639 |#4|) (-639 |#4|)))) |%noBranch|) (IF (|has| |#1| (-306)) (IF (|has| |#1| (-146)) (PROGN (-15 -3389 ((-639 |#4|) (-639 |#4|))) (-15 -3152 ((-639 |#4|) (-639 |#4|))) (-15 -1793 ((-639 |#4|) (-639 |#4|) (-639 |#4|)))) |%noBranch|) |%noBranch|)) (-554) (-788) (-845) (-1058 |#1| |#2| |#3|)) (T -972))
-((-1793 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-146)) (-4 *3 (-306)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-3152 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-146)) (-4 *3 (-306)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-3389 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-146)) (-4 *3 (-306)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-2567 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-3939 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-2257 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-3455 (*1 *2 *2 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-112)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *7)))) (-3455 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-3579 (*1 *2 *3) (-12 (-4 *4 (-451)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *3)) (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))) (-2949 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-639 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-972 *5 *6 *7 *8)))) (-4318 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-639 *9)) (-5 *3 (-1 (-112) *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1058 *6 *7 *8)) (-4 *6 (-554)) (-4 *7 (-788)) (-4 *8 (-845)) (-5 *1 (-972 *6 *7 *8 *9)))) (-2689 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-3427 (*1 *2 *3) (|partial| -12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-475 *4 *5 *6 *7)) (|:| -2775 (-639 *7)))) (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-4134 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-4350 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *2)))) (-4085 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-112)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *7)))) (-4085 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-4280 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7)))) (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-2510 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))) (-3472 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7)))) (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-2605 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))) (-1634 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7)))) (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-1954 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))) (-3305 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7)))) (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-3542 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-1 (-112) *8))) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-2 (|:| |goodPols| (-639 *8)) (|:| |badPols| (-639 *8)))) (-5 *1 (-972 *5 *6 *7 *8)) (-5 *4 (-639 *8)))) (-1923 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-1 (-112) *8))) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-2 (|:| |goodPols| (-639 *8)) (|:| |badPols| (-639 *8)))) (-5 *1 (-972 *5 *6 *7 *8)) (-5 *4 (-639 *8)))) (-2706 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-2 (|:| |goodPols| (-639 *8)) (|:| |badPols| (-639 *8)))) (-5 *1 (-972 *5 *6 *7 *8)) (-5 *4 (-639 *8)))) (-2951 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *4 *5 *6 *7)))) (-4372 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-639 *8))) (-5 *3 (-639 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *5 *6 *7 *8)))) (-2711 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *4 *5 *6 *7)))) (-2910 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-639 *7) (-639 *7))) (-5 *2 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *7)))) (-2910 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-2910 (*1 *2 *2 *3) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *3)))) (-3257 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *3)) (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))) (-2434 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-2910 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *3)) (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))) (-2910 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))))
-(-10 -7 (-15 -2910 ((-639 |#4|) (-639 |#4|))) (-15 -2910 ((-639 |#4|) |#4| |#4|)) (-15 -2434 ((-639 |#4|) (-639 |#4|))) (-15 -3257 ((-639 |#4|) |#4| |#4|)) (-15 -2910 ((-639 |#4|) (-639 |#4|) |#4|)) (-15 -2910 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -2910 ((-639 |#4|) (-639 |#4|) (-639 |#4|) (-1 (-639 |#4|) (-639 |#4|)))) (-15 -2711 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -4372 ((-112) (-639 |#4|) (-639 (-639 |#4|)))) (-15 -2951 ((-112) (-639 |#4|))) (-15 -2706 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-1 (-112) |#4|) (-639 |#4|))) (-15 -1923 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 (-1 (-112) |#4|)) (-639 |#4|))) (-15 -3542 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 (-1 (-112) |#4|)) (-639 |#4|))) (-15 -3305 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -1954 ((-112) |#4|)) (-15 -1634 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -2605 ((-112) |#4|)) (-15 -3472 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -2510 ((-112) |#4|)) (-15 -4280 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -4085 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -4085 ((-639 |#4|) (-639 |#4|) (-639 |#4|) (-112))) (-15 -4350 (|#4| |#4| (-639 |#4|))) (-15 -4134 ((-639 |#4|) (-639 |#4|))) (-15 -3427 ((-3 (-2 (|:| |bas| (-475 |#1| |#2| |#3| |#4|)) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|))) (-15 -2689 ((-639 |#4|) (-639 |#4|))) (-15 -4318 ((-639 |#4|) (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2949 ((-639 |#4|) (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-451)) (PROGN (-15 -3579 ((-639 |#4|) |#4|)) (-15 -3455 ((-639 |#4|) (-639 |#4|))) (-15 -3455 ((-639 |#4|) (-639 |#4|) (-112))) (-15 -2257 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -3939 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -2567 ((-639 |#4|) (-639 |#4|) (-639 |#4|)))) |%noBranch|) (IF (|has| |#1| (-306)) (IF (|has| |#1| (-146)) (PROGN (-15 -3389 ((-639 |#4|) (-639 |#4|))) (-15 -3152 ((-639 |#4|) (-639 |#4|))) (-15 -1793 ((-639 |#4|) (-639 |#4|) (-639 |#4|)))) |%noBranch|) |%noBranch|))
-((-1548 (((-2 (|:| R (-683 |#1|)) (|:| A (-683 |#1|)) (|:| |Ainv| (-683 |#1|))) (-683 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 19)) (-2675 (((-639 (-2 (|:| C (-683 |#1|)) (|:| |g| (-1256 |#1|)))) (-683 |#1|) (-1256 |#1|)) 35)) (-3011 (((-683 |#1|) (-683 |#1|) (-683 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 16)))
-(((-973 |#1|) (-10 -7 (-15 -1548 ((-2 (|:| R (-683 |#1|)) (|:| A (-683 |#1|)) (|:| |Ainv| (-683 |#1|))) (-683 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3011 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2675 ((-639 (-2 (|:| C (-683 |#1|)) (|:| |g| (-1256 |#1|)))) (-683 |#1|) (-1256 |#1|)))) (-362)) (T -973))
-((-2675 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-5 *2 (-639 (-2 (|:| C (-683 *5)) (|:| |g| (-1256 *5))))) (-5 *1 (-973 *5)) (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)))) (-3011 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-683 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-362)) (-5 *1 (-973 *5)))) (-1548 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-362)) (-5 *2 (-2 (|:| R (-683 *6)) (|:| A (-683 *6)) (|:| |Ainv| (-683 *6)))) (-5 *1 (-973 *6)) (-5 *3 (-683 *6)))))
-(-10 -7 (-15 -1548 ((-2 (|:| R (-683 |#1|)) (|:| A (-683 |#1|)) (|:| |Ainv| (-683 |#1|))) (-683 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3011 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2675 ((-639 (-2 (|:| C (-683 |#1|)) (|:| |g| (-1256 |#1|)))) (-683 |#1|) (-1256 |#1|))))
-((-2921 (((-417 |#4|) |#4|) 48)))
-(((-974 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2921 ((-417 |#4|) |#4|))) (-845) (-788) (-451) (-944 |#3| |#2| |#1|)) (T -974))
-((-2921 (*1 *2 *3) (-12 (-4 *4 (-845)) (-4 *5 (-788)) (-4 *6 (-451)) (-5 *2 (-417 *3)) (-5 *1 (-974 *4 *5 *6 *3)) (-4 *3 (-944 *6 *5 *4)))))
-(-10 -7 (-15 -2921 ((-417 |#4|) |#4|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2911 (($ (-766)) 112 (|has| |#1| (-23)))) (-3052 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-845)))) (-3381 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4403))) (($ $) 88 (-12 (|has| |#1| (-845)) (|has| $ (-6 -4403))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-845)))) (-4336 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) |#1|) 52 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) 58 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-2447 (($ $) 90 (|has| $ (-6 -4403)))) (-2677 (($ $) 100)) (-1459 (($ $) 78 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#1| $) 77 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) 53 (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) 51)) (-4264 (((-562) (-1 (-112) |#1|) $) 97) (((-562) |#1| $) 96 (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) 95 (|has| |#1| (-1092)))) (-1460 (($ (-639 |#1|)) 118)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-2841 (((-683 |#1|) $ $) 105 (|has| |#1| (-1044)))) (-1458 (($ (-766) |#1|) 69)) (-3292 (((-112) $ (-766)) 9)) (-4197 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 87 (|has| |#1| (-845)))) (-1610 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 86 (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3076 ((|#1| $) 102 (-12 (|has| |#1| (-1044)) (|has| |#1| (-997))))) (-3289 (((-112) $ (-766)) 10)) (-3641 ((|#1| $) 103 (-12 (|has| |#1| (-1044)) (|has| |#1| (-997))))) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3297 (($ |#1| $ (-562)) 60) (($ $ $ (-562)) 59)) (-2093 (((-639 (-562)) $) 46)) (-1570 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 42 (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2716 (($ $ |#1|) 41 (|has| $ (-6 -4403)))) (-1353 (($ $ (-639 |#1|)) 116)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) 48)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ (-562) |#1|) 50) ((|#1| $ (-562)) 49) (($ $ (-1223 (-562))) 63)) (-4177 ((|#1| $ $) 106 (|has| |#1| (-1044)))) (-3627 (((-916) $) 117)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1386 (($ $ $) 104)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1853 (($ $ $ (-562)) 91 (|has| $ (-6 -4403)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| |#1| (-610 (-535)))) (($ (-639 |#1|)) 119)) (-4066 (($ (-639 |#1|)) 70)) (-2767 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) 84 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 83 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-1785 (((-112) $ $) 85 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 82 (|has| |#1| (-845)))) (-1848 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-1835 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-562) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-721))) (($ $ |#1|) 107 (|has| |#1| (-721)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-2023 (((-639 |#4|) |#4| |#4|) 117)) (-3244 (((-639 |#4|) (-639 |#4|) (-112)) 106 (|has| |#1| (-451))) (((-639 |#4|) (-639 |#4|)) 107 (|has| |#1| (-451)))) (-4331 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|)) 34)) (-4347 (((-112) |#4|) 33)) (-2096 (((-639 |#4|) |#4|) 102 (|has| |#1| (-451)))) (-3425 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-1 (-112) |#4|) (-639 |#4|)) 19)) (-2213 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 (-1 (-112) |#4|)) (-639 |#4|)) 21)) (-2882 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 (-1 (-112) |#4|)) (-639 |#4|)) 22)) (-2967 (((-3 (-2 (|:| |bas| (-475 |#1| |#2| |#3| |#4|)) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|)) 72)) (-1766 (((-639 |#4|) (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 84)) (-4061 (((-639 |#4|) (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 110)) (-2564 (((-639 |#4|) (-639 |#4|)) 109)) (-3245 (((-639 |#4|) (-639 |#4|) (-639 |#4|) (-112)) 47) (((-639 |#4|) (-639 |#4|) (-639 |#4|)) 49)) (-3875 ((|#4| |#4| (-639 |#4|)) 48)) (-1356 (((-639 |#4|) (-639 |#4|) (-639 |#4|)) 113 (|has| |#1| (-451)))) (-1410 (((-639 |#4|) (-639 |#4|) (-639 |#4|)) 116 (|has| |#1| (-451)))) (-1299 (((-639 |#4|) (-639 |#4|) (-639 |#4|)) 115 (|has| |#1| (-451)))) (-3674 (((-639 |#4|) (-639 |#4|) (-639 |#4|) (-1 (-639 |#4|) (-639 |#4|))) 86) (((-639 |#4|) (-639 |#4|) (-639 |#4|)) 88) (((-639 |#4|) (-639 |#4|) |#4|) 120) (((-639 |#4|) |#4| |#4|) 118) (((-639 |#4|) (-639 |#4|)) 87)) (-3274 (((-639 |#4|) (-639 |#4|) (-639 |#4|)) 99 (-12 (|has| |#1| (-146)) (|has| |#1| (-306))))) (-4281 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|)) 40)) (-4086 (((-112) (-639 |#4|)) 61)) (-4124 (((-112) (-639 |#4|) (-639 (-639 |#4|))) 52)) (-3398 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|)) 28)) (-3647 (((-112) |#4|) 27)) (-3361 (((-639 |#4|) (-639 |#4|)) 97 (-12 (|has| |#1| (-146)) (|has| |#1| (-306))))) (-3820 (((-639 |#4|) (-639 |#4|)) 98 (-12 (|has| |#1| (-146)) (|has| |#1| (-306))))) (-2537 (((-639 |#4|) (-639 |#4|)) 65)) (-3261 (((-639 |#4|) (-639 |#4|)) 78)) (-3463 (((-112) (-639 |#4|) (-639 |#4|)) 50)) (-1331 (((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|)) 38)) (-2116 (((-112) |#4|) 35)))
+(((-972 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3674 ((-639 |#4|) (-639 |#4|))) (-15 -3674 ((-639 |#4|) |#4| |#4|)) (-15 -2564 ((-639 |#4|) (-639 |#4|))) (-15 -2023 ((-639 |#4|) |#4| |#4|)) (-15 -3674 ((-639 |#4|) (-639 |#4|) |#4|)) (-15 -3674 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -3674 ((-639 |#4|) (-639 |#4|) (-639 |#4|) (-1 (-639 |#4|) (-639 |#4|)))) (-15 -3463 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -4124 ((-112) (-639 |#4|) (-639 (-639 |#4|)))) (-15 -4086 ((-112) (-639 |#4|))) (-15 -3425 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-1 (-112) |#4|) (-639 |#4|))) (-15 -2213 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 (-1 (-112) |#4|)) (-639 |#4|))) (-15 -2882 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 (-1 (-112) |#4|)) (-639 |#4|))) (-15 -4281 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -4347 ((-112) |#4|)) (-15 -4331 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -3647 ((-112) |#4|)) (-15 -3398 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -2116 ((-112) |#4|)) (-15 -1331 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -3245 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -3245 ((-639 |#4|) (-639 |#4|) (-639 |#4|) (-112))) (-15 -3875 (|#4| |#4| (-639 |#4|))) (-15 -2537 ((-639 |#4|) (-639 |#4|))) (-15 -2967 ((-3 (-2 (|:| |bas| (-475 |#1| |#2| |#3| |#4|)) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|))) (-15 -3261 ((-639 |#4|) (-639 |#4|))) (-15 -1766 ((-639 |#4|) (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -4061 ((-639 |#4|) (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-451)) (PROGN (-15 -2096 ((-639 |#4|) |#4|)) (-15 -3244 ((-639 |#4|) (-639 |#4|))) (-15 -3244 ((-639 |#4|) (-639 |#4|) (-112))) (-15 -1356 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -1299 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -1410 ((-639 |#4|) (-639 |#4|) (-639 |#4|)))) |%noBranch|) (IF (|has| |#1| (-306)) (IF (|has| |#1| (-146)) (PROGN (-15 -3820 ((-639 |#4|) (-639 |#4|))) (-15 -3361 ((-639 |#4|) (-639 |#4|))) (-15 -3274 ((-639 |#4|) (-639 |#4|) (-639 |#4|)))) |%noBranch|) |%noBranch|)) (-554) (-788) (-845) (-1058 |#1| |#2| |#3|)) (T -972))
+((-3274 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-146)) (-4 *3 (-306)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-3361 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-146)) (-4 *3 (-306)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-3820 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-146)) (-4 *3 (-306)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-1410 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-1299 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-1356 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-3244 (*1 *2 *2 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-112)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *7)))) (-3244 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-2096 (*1 *2 *3) (-12 (-4 *4 (-451)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *3)) (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))) (-4061 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-639 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-972 *5 *6 *7 *8)))) (-1766 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-639 *9)) (-5 *3 (-1 (-112) *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1058 *6 *7 *8)) (-4 *6 (-554)) (-4 *7 (-788)) (-4 *8 (-845)) (-5 *1 (-972 *6 *7 *8 *9)))) (-3261 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-2967 (*1 *2 *3) (|partial| -12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-475 *4 *5 *6 *7)) (|:| -2774 (-639 *7)))) (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-2537 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-3875 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *2)))) (-3245 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-639 *7)) (-5 *3 (-112)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *7)))) (-3245 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-1331 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7)))) (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-2116 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))) (-3398 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7)))) (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-3647 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))) (-4331 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7)))) (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-4347 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))) (-4281 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7)))) (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))) (-2882 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-1 (-112) *8))) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-2 (|:| |goodPols| (-639 *8)) (|:| |badPols| (-639 *8)))) (-5 *1 (-972 *5 *6 *7 *8)) (-5 *4 (-639 *8)))) (-2213 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-1 (-112) *8))) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-2 (|:| |goodPols| (-639 *8)) (|:| |badPols| (-639 *8)))) (-5 *1 (-972 *5 *6 *7 *8)) (-5 *4 (-639 *8)))) (-3425 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-2 (|:| |goodPols| (-639 *8)) (|:| |badPols| (-639 *8)))) (-5 *1 (-972 *5 *6 *7 *8)) (-5 *4 (-639 *8)))) (-4086 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *4 *5 *6 *7)))) (-4124 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-639 *8))) (-5 *3 (-639 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *5 *6 *7 *8)))) (-3463 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *4 *5 *6 *7)))) (-3674 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-639 *7) (-639 *7))) (-5 *2 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *7)))) (-3674 (*1 *2 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-3674 (*1 *2 *2 *3) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *3)))) (-2023 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *3)) (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))) (-2564 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))) (-3674 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *3)) (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))) (-3674 (*1 *2 *2) (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))))
+(-10 -7 (-15 -3674 ((-639 |#4|) (-639 |#4|))) (-15 -3674 ((-639 |#4|) |#4| |#4|)) (-15 -2564 ((-639 |#4|) (-639 |#4|))) (-15 -2023 ((-639 |#4|) |#4| |#4|)) (-15 -3674 ((-639 |#4|) (-639 |#4|) |#4|)) (-15 -3674 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -3674 ((-639 |#4|) (-639 |#4|) (-639 |#4|) (-1 (-639 |#4|) (-639 |#4|)))) (-15 -3463 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -4124 ((-112) (-639 |#4|) (-639 (-639 |#4|)))) (-15 -4086 ((-112) (-639 |#4|))) (-15 -3425 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-1 (-112) |#4|) (-639 |#4|))) (-15 -2213 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 (-1 (-112) |#4|)) (-639 |#4|))) (-15 -2882 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 (-1 (-112) |#4|)) (-639 |#4|))) (-15 -4281 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -4347 ((-112) |#4|)) (-15 -4331 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -3647 ((-112) |#4|)) (-15 -3398 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -2116 ((-112) |#4|)) (-15 -1331 ((-2 (|:| |goodPols| (-639 |#4|)) (|:| |badPols| (-639 |#4|))) (-639 |#4|))) (-15 -3245 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -3245 ((-639 |#4|) (-639 |#4|) (-639 |#4|) (-112))) (-15 -3875 (|#4| |#4| (-639 |#4|))) (-15 -2537 ((-639 |#4|) (-639 |#4|))) (-15 -2967 ((-3 (-2 (|:| |bas| (-475 |#1| |#2| |#3| |#4|)) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|))) (-15 -3261 ((-639 |#4|) (-639 |#4|))) (-15 -1766 ((-639 |#4|) (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -4061 ((-639 |#4|) (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-451)) (PROGN (-15 -2096 ((-639 |#4|) |#4|)) (-15 -3244 ((-639 |#4|) (-639 |#4|))) (-15 -3244 ((-639 |#4|) (-639 |#4|) (-112))) (-15 -1356 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -1299 ((-639 |#4|) (-639 |#4|) (-639 |#4|))) (-15 -1410 ((-639 |#4|) (-639 |#4|) (-639 |#4|)))) |%noBranch|) (IF (|has| |#1| (-306)) (IF (|has| |#1| (-146)) (PROGN (-15 -3820 ((-639 |#4|) (-639 |#4|))) (-15 -3361 ((-639 |#4|) (-639 |#4|))) (-15 -3274 ((-639 |#4|) (-639 |#4|) (-639 |#4|)))) |%noBranch|) |%noBranch|))
+((-1791 (((-2 (|:| R (-683 |#1|)) (|:| A (-683 |#1|)) (|:| |Ainv| (-683 |#1|))) (-683 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 19)) (-3144 (((-639 (-2 (|:| C (-683 |#1|)) (|:| |g| (-1256 |#1|)))) (-683 |#1|) (-1256 |#1|)) 35)) (-3388 (((-683 |#1|) (-683 |#1|) (-683 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 16)))
+(((-973 |#1|) (-10 -7 (-15 -1791 ((-2 (|:| R (-683 |#1|)) (|:| A (-683 |#1|)) (|:| |Ainv| (-683 |#1|))) (-683 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3388 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3144 ((-639 (-2 (|:| C (-683 |#1|)) (|:| |g| (-1256 |#1|)))) (-683 |#1|) (-1256 |#1|)))) (-362)) (T -973))
+((-3144 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-5 *2 (-639 (-2 (|:| C (-683 *5)) (|:| |g| (-1256 *5))))) (-5 *1 (-973 *5)) (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)))) (-3388 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-683 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-362)) (-5 *1 (-973 *5)))) (-1791 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-362)) (-5 *2 (-2 (|:| R (-683 *6)) (|:| A (-683 *6)) (|:| |Ainv| (-683 *6)))) (-5 *1 (-973 *6)) (-5 *3 (-683 *6)))))
+(-10 -7 (-15 -1791 ((-2 (|:| R (-683 |#1|)) (|:| A (-683 |#1|)) (|:| |Ainv| (-683 |#1|))) (-683 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3388 ((-683 |#1|) (-683 |#1|) (-683 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3144 ((-639 (-2 (|:| C (-683 |#1|)) (|:| |g| (-1256 |#1|)))) (-683 |#1|) (-1256 |#1|))))
+((-3788 (((-417 |#4|) |#4|) 48)))
+(((-974 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3788 ((-417 |#4|) |#4|))) (-845) (-788) (-451) (-944 |#3| |#2| |#1|)) (T -974))
+((-3788 (*1 *2 *3) (-12 (-4 *4 (-845)) (-4 *5 (-788)) (-4 *6 (-451)) (-5 *2 (-417 *3)) (-5 *1 (-974 *4 *5 *6 *3)) (-4 *3 (-944 *6 *5 *4)))))
+(-10 -7 (-15 -3788 ((-417 |#4|) |#4|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2910 (($ (-766)) 112 (|has| |#1| (-23)))) (-3655 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-845)))) (-3737 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4404))) (($ $) 88 (-12 (|has| |#1| (-845)) (|has| $ (-6 -4404))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-845)))) (-3735 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) |#1|) 52 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) 58 (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-2673 (($ $) 90 (|has| $ (-6 -4404)))) (-2676 (($ $) 100)) (-1459 (($ $) 78 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#1| $) 77 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) 53 (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) 51)) (-4265 (((-562) (-1 (-112) |#1|) $) 97) (((-562) |#1| $) 96 (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) 95 (|has| |#1| (-1092)))) (-1460 (($ (-639 |#1|)) 118)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-2840 (((-683 |#1|) $ $) 105 (|has| |#1| (-1044)))) (-1458 (($ (-766) |#1|) 69)) (-4172 (((-112) $ (-766)) 9)) (-1849 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 87 (|has| |#1| (-845)))) (-4103 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 86 (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3872 ((|#1| $) 102 (-12 (|has| |#1| (-1044)) (|has| |#1| (-997))))) (-4147 (((-112) $ (-766)) 10)) (-3641 ((|#1| $) 103 (-12 (|has| |#1| (-1044)) (|has| |#1| (-997))))) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3295 (($ |#1| $ (-562)) 60) (($ $ $ (-562)) 59)) (-3336 (((-639 (-562)) $) 46)) (-1987 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 42 (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-3510 (($ $ |#1|) 41 (|has| $ (-6 -4404)))) (-4316 (($ $ (-639 |#1|)) 116)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) 48)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ (-562) |#1|) 50) ((|#1| $ (-562)) 49) (($ $ (-1223 (-562))) 63)) (-2852 ((|#1| $ $) 106 (|has| |#1| (-1044)))) (-4340 (((-916) $) 117)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-3247 (($ $ $) 104)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-2694 (($ $ $ (-562)) 91 (|has| $ (-6 -4404)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| |#1| (-610 (-535)))) (($ (-639 |#1|)) 119)) (-4064 (($ (-639 |#1|)) 70)) (-2767 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) 84 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 83 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-1785 (((-112) $ $) 85 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 82 (|has| |#1| (-845)))) (-1847 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-1836 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-562) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-721))) (($ $ |#1|) 107 (|has| |#1| (-721)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-975 |#1|) (-139) (-1044)) (T -975))
-((-1460 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1044)) (-4 *1 (-975 *3)))) (-3627 (*1 *2 *1) (-12 (-4 *1 (-975 *3)) (-4 *3 (-1044)) (-5 *2 (-916)))) (-1386 (*1 *1 *1 *1) (-12 (-4 *1 (-975 *2)) (-4 *2 (-1044)))) (-1353 (*1 *1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *1 (-975 *3)) (-4 *3 (-1044)))))
-(-13 (-1254 |t#1|) (-614 (-639 |t#1|)) (-10 -8 (-15 -1460 ($ (-639 |t#1|))) (-15 -3627 ((-916) $)) (-15 -1386 ($ $ $)) (-15 -1353 ($ $ (-639 |t#1|)))))
+((-1460 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1044)) (-4 *1 (-975 *3)))) (-4340 (*1 *2 *1) (-12 (-4 *1 (-975 *3)) (-4 *3 (-1044)) (-5 *2 (-916)))) (-3247 (*1 *1 *1 *1) (-12 (-4 *1 (-975 *2)) (-4 *2 (-1044)))) (-4316 (*1 *1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *1 (-975 *3)) (-4 *3 (-1044)))))
+(-13 (-1254 |t#1|) (-614 (-639 |t#1|)) (-10 -8 (-15 -1460 ($ (-639 |t#1|))) (-15 -4340 ((-916) $)) (-15 -3247 ($ $ $)) (-15 -4316 ($ $ (-639 |t#1|)))))
(((-34) . T) ((-102) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845))) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845)) (|has| |#1| (-609 (-857)))) ((-150 |#1|) . T) ((-614 (-639 |#1|)) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-285 #0=(-562) |#1|) . T) ((-287 #0# |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-372 |#1|) . T) ((-488 |#1|) . T) ((-600 #0# |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-645 |#1|) . T) ((-19 |#1|) . T) ((-845) |has| |#1| (-845)) ((-1092) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845))) ((-1207) . T) ((-1254 |#1|) . T))
((-4152 (((-938 |#2|) (-1 |#2| |#1|) (-938 |#1|)) 17)))
(((-976 |#1| |#2|) (-10 -7 (-15 -4152 ((-938 |#2|) (-1 |#2| |#1|) (-938 |#1|)))) (-1044) (-1044)) (T -976))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-938 *5)) (-4 *5 (-1044)) (-4 *6 (-1044)) (-5 *2 (-938 *6)) (-5 *1 (-976 *5 *6)))))
(-10 -7 (-15 -4152 ((-938 |#2|) (-1 |#2| |#1|) (-938 |#1|))))
-((-2513 ((|#1| (-938 |#1|)) 13)) (-4040 ((|#1| (-938 |#1|)) 12)) (-1733 ((|#1| (-938 |#1|)) 11)) (-1656 ((|#1| (-938 |#1|)) 15)) (-2887 ((|#1| (-938 |#1|)) 21)) (-2266 ((|#1| (-938 |#1|)) 14)) (-3151 ((|#1| (-938 |#1|)) 16)) (-3410 ((|#1| (-938 |#1|)) 20)) (-2739 ((|#1| (-938 |#1|)) 19)))
-(((-977 |#1|) (-10 -7 (-15 -1733 (|#1| (-938 |#1|))) (-15 -4040 (|#1| (-938 |#1|))) (-15 -2513 (|#1| (-938 |#1|))) (-15 -2266 (|#1| (-938 |#1|))) (-15 -1656 (|#1| (-938 |#1|))) (-15 -3151 (|#1| (-938 |#1|))) (-15 -2739 (|#1| (-938 |#1|))) (-15 -3410 (|#1| (-938 |#1|))) (-15 -2887 (|#1| (-938 |#1|)))) (-1044)) (T -977))
-((-2887 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-3410 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-2739 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-3151 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-1656 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-2266 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-2513 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-4040 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-1733 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
-(-10 -7 (-15 -1733 (|#1| (-938 |#1|))) (-15 -4040 (|#1| (-938 |#1|))) (-15 -2513 (|#1| (-938 |#1|))) (-15 -2266 (|#1| (-938 |#1|))) (-15 -1656 (|#1| (-938 |#1|))) (-15 -3151 (|#1| (-938 |#1|))) (-15 -2739 (|#1| (-938 |#1|))) (-15 -3410 (|#1| (-938 |#1|))) (-15 -2887 (|#1| (-938 |#1|))))
-((-3200 (((-3 |#1| "failed") |#1|) 18)) (-1898 (((-3 |#1| "failed") |#1|) 6)) (-4353 (((-3 |#1| "failed") |#1|) 16)) (-3458 (((-3 |#1| "failed") |#1|) 4)) (-4312 (((-3 |#1| "failed") |#1|) 20)) (-3145 (((-3 |#1| "failed") |#1|) 8)) (-2571 (((-3 |#1| "failed") |#1| (-766)) 1)) (-3810 (((-3 |#1| "failed") |#1|) 3)) (-2314 (((-3 |#1| "failed") |#1|) 2)) (-4027 (((-3 |#1| "failed") |#1|) 21)) (-2930 (((-3 |#1| "failed") |#1|) 9)) (-2777 (((-3 |#1| "failed") |#1|) 19)) (-1543 (((-3 |#1| "failed") |#1|) 7)) (-4059 (((-3 |#1| "failed") |#1|) 17)) (-3387 (((-3 |#1| "failed") |#1|) 5)) (-2938 (((-3 |#1| "failed") |#1|) 24)) (-3940 (((-3 |#1| "failed") |#1|) 12)) (-2603 (((-3 |#1| "failed") |#1|) 22)) (-1442 (((-3 |#1| "failed") |#1|) 10)) (-3577 (((-3 |#1| "failed") |#1|) 26)) (-3080 (((-3 |#1| "failed") |#1|) 14)) (-2390 (((-3 |#1| "failed") |#1|) 27)) (-1699 (((-3 |#1| "failed") |#1|) 15)) (-1760 (((-3 |#1| "failed") |#1|) 25)) (-3506 (((-3 |#1| "failed") |#1|) 13)) (-2374 (((-3 |#1| "failed") |#1|) 23)) (-3170 (((-3 |#1| "failed") |#1|) 11)))
+((-2145 ((|#1| (-938 |#1|)) 13)) (-4107 ((|#1| (-938 |#1|)) 12)) (-3970 ((|#1| (-938 |#1|)) 11)) (-1439 ((|#1| (-938 |#1|)) 15)) (-1614 ((|#1| (-938 |#1|)) 21)) (-1456 ((|#1| (-938 |#1|)) 14)) (-3346 ((|#1| (-938 |#1|)) 16)) (-4031 ((|#1| (-938 |#1|)) 20)) (-2581 ((|#1| (-938 |#1|)) 19)))
+(((-977 |#1|) (-10 -7 (-15 -3970 (|#1| (-938 |#1|))) (-15 -4107 (|#1| (-938 |#1|))) (-15 -2145 (|#1| (-938 |#1|))) (-15 -1456 (|#1| (-938 |#1|))) (-15 -1439 (|#1| (-938 |#1|))) (-15 -3346 (|#1| (-938 |#1|))) (-15 -2581 (|#1| (-938 |#1|))) (-15 -4031 (|#1| (-938 |#1|))) (-15 -1614 (|#1| (-938 |#1|)))) (-1044)) (T -977))
+((-1614 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-4031 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-2581 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-3346 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-1439 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-1456 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-2145 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-4107 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))) (-3970 (*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
+(-10 -7 (-15 -3970 (|#1| (-938 |#1|))) (-15 -4107 (|#1| (-938 |#1|))) (-15 -2145 (|#1| (-938 |#1|))) (-15 -1456 (|#1| (-938 |#1|))) (-15 -1439 (|#1| (-938 |#1|))) (-15 -3346 (|#1| (-938 |#1|))) (-15 -2581 (|#1| (-938 |#1|))) (-15 -4031 (|#1| (-938 |#1|))) (-15 -1614 (|#1| (-938 |#1|))))
+((-2647 (((-3 |#1| "failed") |#1|) 18)) (-1969 (((-3 |#1| "failed") |#1|) 6)) (-3911 (((-3 |#1| "failed") |#1|) 16)) (-3275 (((-3 |#1| "failed") |#1|) 4)) (-1710 (((-3 |#1| "failed") |#1|) 20)) (-3290 (((-3 |#1| "failed") |#1|) 8)) (-1464 (((-3 |#1| "failed") |#1| (-766)) 1)) (-2501 (((-3 |#1| "failed") |#1|) 3)) (-3774 (((-3 |#1| "failed") |#1|) 2)) (-3986 (((-3 |#1| "failed") |#1|) 21)) (-3882 (((-3 |#1| "failed") |#1|) 9)) (-2904 (((-3 |#1| "failed") |#1|) 19)) (-1738 (((-3 |#1| "failed") |#1|) 7)) (-3021 (((-3 |#1| "failed") |#1|) 17)) (-3797 (((-3 |#1| "failed") |#1|) 5)) (-3963 (((-3 |#1| "failed") |#1|) 24)) (-1308 (((-3 |#1| "failed") |#1|) 12)) (-3625 (((-3 |#1| "failed") |#1|) 22)) (-2099 (((-3 |#1| "failed") |#1|) 10)) (-2073 (((-3 |#1| "failed") |#1|) 26)) (-3908 (((-3 |#1| "failed") |#1|) 14)) (-3286 (((-3 |#1| "failed") |#1|) 27)) (-3682 (((-3 |#1| "failed") |#1|) 15)) (-2984 (((-3 |#1| "failed") |#1|) 25)) (-2585 (((-3 |#1| "failed") |#1|) 13)) (-3117 (((-3 |#1| "failed") |#1|) 23)) (-2397 (((-3 |#1| "failed") |#1|) 11)))
(((-978 |#1|) (-139) (-1192)) (T -978))
-((-2390 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3577 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-1760 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2938 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2374 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2603 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-4027 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-4312 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2777 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3200 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-4059 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-4353 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-1699 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3080 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3506 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3940 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3170 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-1442 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2930 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3145 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-1543 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-1898 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3387 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3458 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3810 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2314 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2571 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-766)) (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(-13 (-10 -7 (-15 -2571 ((-3 |t#1| "failed") |t#1| (-766))) (-15 -2314 ((-3 |t#1| "failed") |t#1|)) (-15 -3810 ((-3 |t#1| "failed") |t#1|)) (-15 -3458 ((-3 |t#1| "failed") |t#1|)) (-15 -3387 ((-3 |t#1| "failed") |t#1|)) (-15 -1898 ((-3 |t#1| "failed") |t#1|)) (-15 -1543 ((-3 |t#1| "failed") |t#1|)) (-15 -3145 ((-3 |t#1| "failed") |t#1|)) (-15 -2930 ((-3 |t#1| "failed") |t#1|)) (-15 -1442 ((-3 |t#1| "failed") |t#1|)) (-15 -3170 ((-3 |t#1| "failed") |t#1|)) (-15 -3940 ((-3 |t#1| "failed") |t#1|)) (-15 -3506 ((-3 |t#1| "failed") |t#1|)) (-15 -3080 ((-3 |t#1| "failed") |t#1|)) (-15 -1699 ((-3 |t#1| "failed") |t#1|)) (-15 -4353 ((-3 |t#1| "failed") |t#1|)) (-15 -4059 ((-3 |t#1| "failed") |t#1|)) (-15 -3200 ((-3 |t#1| "failed") |t#1|)) (-15 -2777 ((-3 |t#1| "failed") |t#1|)) (-15 -4312 ((-3 |t#1| "failed") |t#1|)) (-15 -4027 ((-3 |t#1| "failed") |t#1|)) (-15 -2603 ((-3 |t#1| "failed") |t#1|)) (-15 -2374 ((-3 |t#1| "failed") |t#1|)) (-15 -2938 ((-3 |t#1| "failed") |t#1|)) (-15 -1760 ((-3 |t#1| "failed") |t#1|)) (-15 -3577 ((-3 |t#1| "failed") |t#1|)) (-15 -2390 ((-3 |t#1| "failed") |t#1|))))
-((-3584 ((|#4| |#4| (-639 |#3|)) 55) ((|#4| |#4| |#3|) 54)) (-2103 ((|#4| |#4| (-639 |#3|)) 23) ((|#4| |#4| |#3|) 19)) (-4152 ((|#4| (-1 |#4| (-947 |#1|)) |#4|) 30)))
-(((-979 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2103 (|#4| |#4| |#3|)) (-15 -2103 (|#4| |#4| (-639 |#3|))) (-15 -3584 (|#4| |#4| |#3|)) (-15 -3584 (|#4| |#4| (-639 |#3|))) (-15 -4152 (|#4| (-1 |#4| (-947 |#1|)) |#4|))) (-1044) (-788) (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2444 ((-3 $ "failed") (-1168))))) (-944 (-947 |#1|) |#2| |#3|)) (T -979))
-((-4152 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-947 *4))) (-4 *4 (-1044)) (-4 *2 (-944 (-947 *4) *5 *6)) (-4 *5 (-788)) (-4 *6 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2444 ((-3 $ "failed") (-1168)))))) (-5 *1 (-979 *4 *5 *6 *2)))) (-3584 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *6)) (-4 *6 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2444 ((-3 $ "failed") (-1168)))))) (-4 *4 (-1044)) (-4 *5 (-788)) (-5 *1 (-979 *4 *5 *6 *2)) (-4 *2 (-944 (-947 *4) *5 *6)))) (-3584 (*1 *2 *2 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2444 ((-3 $ "failed") (-1168)))))) (-5 *1 (-979 *4 *5 *3 *2)) (-4 *2 (-944 (-947 *4) *5 *3)))) (-2103 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *6)) (-4 *6 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2444 ((-3 $ "failed") (-1168)))))) (-4 *4 (-1044)) (-4 *5 (-788)) (-5 *1 (-979 *4 *5 *6 *2)) (-4 *2 (-944 (-947 *4) *5 *6)))) (-2103 (*1 *2 *2 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2444 ((-3 $ "failed") (-1168)))))) (-5 *1 (-979 *4 *5 *3 *2)) (-4 *2 (-944 (-947 *4) *5 *3)))))
-(-10 -7 (-15 -2103 (|#4| |#4| |#3|)) (-15 -2103 (|#4| |#4| (-639 |#3|))) (-15 -3584 (|#4| |#4| |#3|)) (-15 -3584 (|#4| |#4| (-639 |#3|))) (-15 -4152 (|#4| (-1 |#4| (-947 |#1|)) |#4|)))
-((-1998 ((|#2| |#3|) 35)) (-2438 (((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) |#2|) 73)) (-3826 (((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) 89)))
-(((-980 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3826 ((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))))) (-15 -2438 ((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) |#2|)) (-15 -1998 (|#2| |#3|))) (-348) (-1232 |#1|) (-1232 |#2|) (-719 |#2| |#3|)) (T -980))
-((-1998 (*1 *2 *3) (-12 (-4 *3 (-1232 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-980 *4 *2 *3 *5)) (-4 *4 (-348)) (-4 *5 (-719 *2 *3)))) (-2438 (*1 *2 *3) (-12 (-4 *4 (-348)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 *3)) (-5 *2 (-2 (|:| -3928 (-683 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-683 *3)))) (-5 *1 (-980 *4 *3 *5 *6)) (-4 *6 (-719 *3 *5)))) (-3826 (*1 *2) (-12 (-4 *3 (-348)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| -3928 (-683 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-683 *4)))) (-5 *1 (-980 *3 *4 *5 *6)) (-4 *6 (-719 *4 *5)))))
-(-10 -7 (-15 -3826 ((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))))) (-15 -2438 ((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) |#2|)) (-15 -1998 (|#2| |#3|)))
-((-2126 (((-982 (-406 (-562)) (-859 |#1|) (-239 |#2| (-766)) (-246 |#1| (-406 (-562)))) (-982 (-406 (-562)) (-859 |#1|) (-239 |#2| (-766)) (-246 |#1| (-406 (-562))))) 68)))
-(((-981 |#1| |#2|) (-10 -7 (-15 -2126 ((-982 (-406 (-562)) (-859 |#1|) (-239 |#2| (-766)) (-246 |#1| (-406 (-562)))) (-982 (-406 (-562)) (-859 |#1|) (-239 |#2| (-766)) (-246 |#1| (-406 (-562))))))) (-639 (-1168)) (-766)) (T -981))
-((-2126 (*1 *2 *2) (-12 (-5 *2 (-982 (-406 (-562)) (-859 *3) (-239 *4 (-766)) (-246 *3 (-406 (-562))))) (-14 *3 (-639 (-1168))) (-14 *4 (-766)) (-5 *1 (-981 *3 *4)))))
-(-10 -7 (-15 -2126 ((-982 (-406 (-562)) (-859 |#1|) (-239 |#2| (-766)) (-246 |#1| (-406 (-562)))) (-982 (-406 (-562)) (-859 |#1|) (-239 |#2| (-766)) (-246 |#1| (-406 (-562)))))))
-((-4041 (((-112) $ $) NIL)) (-3981 (((-3 (-112) "failed") $) 69)) (-4120 (($ $) 36 (-12 (|has| |#1| (-146)) (|has| |#1| (-306))))) (-2770 (($ $ (-3 (-112) "failed")) 70)) (-1413 (($ (-639 |#4|) |#4|) 25)) (-2913 (((-1150) $) NIL)) (-1533 (($ $) 67)) (-1709 (((-1112) $) NIL)) (-2974 (((-112) $) 68)) (-4307 (($) 30)) (-3209 ((|#4| $) 72)) (-1992 (((-639 |#4|) $) 71)) (-4054 (((-857) $) 66)) (-1731 (((-112) $ $) NIL)))
-(((-982 |#1| |#2| |#3| |#4|) (-13 (-1092) (-609 (-857)) (-10 -8 (-15 -4307 ($)) (-15 -1413 ($ (-639 |#4|) |#4|)) (-15 -3981 ((-3 (-112) "failed") $)) (-15 -2770 ($ $ (-3 (-112) "failed"))) (-15 -2974 ((-112) $)) (-15 -1992 ((-639 |#4|) $)) (-15 -3209 (|#4| $)) (-15 -1533 ($ $)) (IF (|has| |#1| (-306)) (IF (|has| |#1| (-146)) (-15 -4120 ($ $)) |%noBranch|) |%noBranch|))) (-451) (-845) (-788) (-944 |#1| |#3| |#2|)) (T -982))
-((-4307 (*1 *1) (-12 (-4 *2 (-451)) (-4 *3 (-845)) (-4 *4 (-788)) (-5 *1 (-982 *2 *3 *4 *5)) (-4 *5 (-944 *2 *4 *3)))) (-1413 (*1 *1 *2 *3) (-12 (-5 *2 (-639 *3)) (-4 *3 (-944 *4 *6 *5)) (-4 *4 (-451)) (-4 *5 (-845)) (-4 *6 (-788)) (-5 *1 (-982 *4 *5 *6 *3)))) (-3981 (*1 *2 *1) (|partial| -12 (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)) (-5 *2 (-112)) (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4)))) (-2770 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)) (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4)))) (-2974 (*1 *2 *1) (-12 (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)) (-5 *2 (-112)) (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4)))) (-1992 (*1 *2 *1) (-12 (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)) (-5 *2 (-639 *6)) (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4)))) (-3209 (*1 *2 *1) (-12 (-4 *2 (-944 *3 *5 *4)) (-5 *1 (-982 *3 *4 *5 *2)) (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)))) (-1533 (*1 *1 *1) (-12 (-4 *2 (-451)) (-4 *3 (-845)) (-4 *4 (-788)) (-5 *1 (-982 *2 *3 *4 *5)) (-4 *5 (-944 *2 *4 *3)))) (-4120 (*1 *1 *1) (-12 (-4 *2 (-146)) (-4 *2 (-306)) (-4 *2 (-451)) (-4 *3 (-845)) (-4 *4 (-788)) (-5 *1 (-982 *2 *3 *4 *5)) (-4 *5 (-944 *2 *4 *3)))))
-(-13 (-1092) (-609 (-857)) (-10 -8 (-15 -4307 ($)) (-15 -1413 ($ (-639 |#4|) |#4|)) (-15 -3981 ((-3 (-112) "failed") $)) (-15 -2770 ($ $ (-3 (-112) "failed"))) (-15 -2974 ((-112) $)) (-15 -1992 ((-639 |#4|) $)) (-15 -3209 (|#4| $)) (-15 -1533 ($ $)) (IF (|has| |#1| (-306)) (IF (|has| |#1| (-146)) (-15 -4120 ($ $)) |%noBranch|) |%noBranch|)))
-((-3675 (((-112) |#5| |#5|) 37)) (-1561 (((-112) |#5| |#5|) 51)) (-3934 (((-112) |#5| (-639 |#5|)) 73) (((-112) |#5| |#5|) 60)) (-3097 (((-112) (-639 |#4|) (-639 |#4|)) 57)) (-4225 (((-112) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) 62)) (-3098 (((-1261)) 33)) (-2498 (((-1261) (-1150) (-1150) (-1150)) 29)) (-2543 (((-639 |#5|) (-639 |#5|)) 80)) (-3963 (((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)))) 78)) (-3674 (((-639 (-2 (|:| -3342 (-639 |#4|)) (|:| -1495 |#5|) (|:| |ineq| (-639 |#4|)))) (-639 |#4|) (-639 |#5|) (-112) (-112)) 100)) (-1903 (((-112) |#5| |#5|) 46)) (-4187 (((-3 (-112) "failed") |#5| |#5|) 70)) (-2768 (((-112) (-639 |#4|) (-639 |#4|)) 56)) (-2697 (((-112) (-639 |#4|) (-639 |#4|)) 58)) (-1408 (((-112) (-639 |#4|) (-639 |#4|)) 59)) (-3246 (((-3 (-2 (|:| -3342 (-639 |#4|)) (|:| -1495 |#5|) (|:| |ineq| (-639 |#4|))) "failed") (-639 |#4|) |#5| (-639 |#4|) (-112) (-112) (-112) (-112) (-112)) 96)) (-3347 (((-639 |#5|) (-639 |#5|)) 42)))
-(((-983 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2498 ((-1261) (-1150) (-1150) (-1150))) (-15 -3098 ((-1261))) (-15 -3675 ((-112) |#5| |#5|)) (-15 -3347 ((-639 |#5|) (-639 |#5|))) (-15 -1903 ((-112) |#5| |#5|)) (-15 -1561 ((-112) |#5| |#5|)) (-15 -3097 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2768 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2697 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -1408 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -4187 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3934 ((-112) |#5| |#5|)) (-15 -3934 ((-112) |#5| (-639 |#5|))) (-15 -2543 ((-639 |#5|) (-639 |#5|))) (-15 -4225 ((-112) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)))) (-15 -3963 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) (-15 -3674 ((-639 (-2 (|:| -3342 (-639 |#4|)) (|:| -1495 |#5|) (|:| |ineq| (-639 |#4|)))) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -3246 ((-3 (-2 (|:| -3342 (-639 |#4|)) (|:| -1495 |#5|) (|:| |ineq| (-639 |#4|))) "failed") (-639 |#4|) |#5| (-639 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|)) (T -983))
-((-3246 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *9 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| -3342 (-639 *9)) (|:| -1495 *4) (|:| |ineq| (-639 *9)))) (-5 *1 (-983 *6 *7 *8 *9 *4)) (-5 *3 (-639 *9)) (-4 *4 (-1064 *6 *7 *8 *9)))) (-3674 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-639 *10)) (-5 *5 (-112)) (-4 *10 (-1064 *6 *7 *8 *9)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *9 (-1058 *6 *7 *8)) (-5 *2 (-639 (-2 (|:| -3342 (-639 *9)) (|:| -1495 *10) (|:| |ineq| (-639 *9))))) (-5 *1 (-983 *6 *7 *8 *9 *10)) (-5 *3 (-639 *9)))) (-3963 (*1 *2 *2) (-12 (-5 *2 (-639 (-2 (|:| |val| (-639 *6)) (|:| -1495 *7)))) (-4 *6 (-1058 *3 *4 *5)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-983 *3 *4 *5 *6 *7)))) (-4225 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1495 *8))) (-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1064 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *8)))) (-2543 (*1 *2 *2) (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *1 (-983 *3 *4 *5 *6 *7)))) (-3934 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-983 *5 *6 *7 *8 *3)))) (-3934 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-4187 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-1408 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-2697 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-2768 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-3097 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-1561 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-1903 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-3347 (*1 *2 *2) (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *1 (-983 *3 *4 *5 *6 *7)))) (-3675 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-3098 (*1 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261)) (-5 *1 (-983 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))) (-2498 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261)) (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2498 ((-1261) (-1150) (-1150) (-1150))) (-15 -3098 ((-1261))) (-15 -3675 ((-112) |#5| |#5|)) (-15 -3347 ((-639 |#5|) (-639 |#5|))) (-15 -1903 ((-112) |#5| |#5|)) (-15 -1561 ((-112) |#5| |#5|)) (-15 -3097 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2768 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2697 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -1408 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -4187 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3934 ((-112) |#5| |#5|)) (-15 -3934 ((-112) |#5| (-639 |#5|))) (-15 -2543 ((-639 |#5|) (-639 |#5|))) (-15 -4225 ((-112) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)))) (-15 -3963 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) (-15 -3674 ((-639 (-2 (|:| -3342 (-639 |#4|)) (|:| -1495 |#5|) (|:| |ineq| (-639 |#4|)))) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -3246 ((-3 (-2 (|:| -3342 (-639 |#4|)) (|:| -1495 |#5|) (|:| |ineq| (-639 |#4|))) "failed") (-639 |#4|) |#5| (-639 |#4|) (-112) (-112) (-112) (-112) (-112))))
-((-2444 (((-1168) $) 15)) (-2534 (((-1150) $) 16)) (-3680 (($ (-1168) (-1150)) 14)) (-4054 (((-857) $) 13)))
-(((-984) (-13 (-609 (-857)) (-10 -8 (-15 -3680 ($ (-1168) (-1150))) (-15 -2444 ((-1168) $)) (-15 -2534 ((-1150) $))))) (T -984))
-((-3680 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1150)) (-5 *1 (-984)))) (-2444 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-984)))) (-2534 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-984)))))
-(-13 (-609 (-857)) (-10 -8 (-15 -3680 ($ (-1168) (-1150))) (-15 -2444 ((-1168) $)) (-15 -2534 ((-1150) $))))
+((-3286 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2073 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2984 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3963 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3117 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3625 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3986 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-1710 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2904 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2647 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3021 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3911 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3682 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3908 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2585 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-1308 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2397 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2099 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3882 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3290 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-1738 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-1969 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3797 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3275 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-2501 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-3774 (*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))) (-1464 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-766)) (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(-13 (-10 -7 (-15 -1464 ((-3 |t#1| "failed") |t#1| (-766))) (-15 -3774 ((-3 |t#1| "failed") |t#1|)) (-15 -2501 ((-3 |t#1| "failed") |t#1|)) (-15 -3275 ((-3 |t#1| "failed") |t#1|)) (-15 -3797 ((-3 |t#1| "failed") |t#1|)) (-15 -1969 ((-3 |t#1| "failed") |t#1|)) (-15 -1738 ((-3 |t#1| "failed") |t#1|)) (-15 -3290 ((-3 |t#1| "failed") |t#1|)) (-15 -3882 ((-3 |t#1| "failed") |t#1|)) (-15 -2099 ((-3 |t#1| "failed") |t#1|)) (-15 -2397 ((-3 |t#1| "failed") |t#1|)) (-15 -1308 ((-3 |t#1| "failed") |t#1|)) (-15 -2585 ((-3 |t#1| "failed") |t#1|)) (-15 -3908 ((-3 |t#1| "failed") |t#1|)) (-15 -3682 ((-3 |t#1| "failed") |t#1|)) (-15 -3911 ((-3 |t#1| "failed") |t#1|)) (-15 -3021 ((-3 |t#1| "failed") |t#1|)) (-15 -2647 ((-3 |t#1| "failed") |t#1|)) (-15 -2904 ((-3 |t#1| "failed") |t#1|)) (-15 -1710 ((-3 |t#1| "failed") |t#1|)) (-15 -3986 ((-3 |t#1| "failed") |t#1|)) (-15 -3625 ((-3 |t#1| "failed") |t#1|)) (-15 -3117 ((-3 |t#1| "failed") |t#1|)) (-15 -3963 ((-3 |t#1| "failed") |t#1|)) (-15 -2984 ((-3 |t#1| "failed") |t#1|)) (-15 -2073 ((-3 |t#1| "failed") |t#1|)) (-15 -3286 ((-3 |t#1| "failed") |t#1|))))
+((-2135 ((|#4| |#4| (-639 |#3|)) 55) ((|#4| |#4| |#3|) 54)) (-3444 ((|#4| |#4| (-639 |#3|)) 23) ((|#4| |#4| |#3|) 19)) (-4152 ((|#4| (-1 |#4| (-947 |#1|)) |#4|) 30)))
+(((-979 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3444 (|#4| |#4| |#3|)) (-15 -3444 (|#4| |#4| (-639 |#3|))) (-15 -2135 (|#4| |#4| |#3|)) (-15 -2135 (|#4| |#4| (-639 |#3|))) (-15 -4152 (|#4| (-1 |#4| (-947 |#1|)) |#4|))) (-1044) (-788) (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2443 ((-3 $ "failed") (-1168))))) (-944 (-947 |#1|) |#2| |#3|)) (T -979))
+((-4152 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-947 *4))) (-4 *4 (-1044)) (-4 *2 (-944 (-947 *4) *5 *6)) (-4 *5 (-788)) (-4 *6 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2443 ((-3 $ "failed") (-1168)))))) (-5 *1 (-979 *4 *5 *6 *2)))) (-2135 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *6)) (-4 *6 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2443 ((-3 $ "failed") (-1168)))))) (-4 *4 (-1044)) (-4 *5 (-788)) (-5 *1 (-979 *4 *5 *6 *2)) (-4 *2 (-944 (-947 *4) *5 *6)))) (-2135 (*1 *2 *2 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2443 ((-3 $ "failed") (-1168)))))) (-5 *1 (-979 *4 *5 *3 *2)) (-4 *2 (-944 (-947 *4) *5 *3)))) (-3444 (*1 *2 *2 *3) (-12 (-5 *3 (-639 *6)) (-4 *6 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2443 ((-3 $ "failed") (-1168)))))) (-4 *4 (-1044)) (-4 *5 (-788)) (-5 *1 (-979 *4 *5 *6 *2)) (-4 *2 (-944 (-947 *4) *5 *6)))) (-3444 (*1 *2 *2 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)) (-15 -2443 ((-3 $ "failed") (-1168)))))) (-5 *1 (-979 *4 *5 *3 *2)) (-4 *2 (-944 (-947 *4) *5 *3)))))
+(-10 -7 (-15 -3444 (|#4| |#4| |#3|)) (-15 -3444 (|#4| |#4| (-639 |#3|))) (-15 -2135 (|#4| |#4| |#3|)) (-15 -2135 (|#4| |#4| (-639 |#3|))) (-15 -4152 (|#4| (-1 |#4| (-947 |#1|)) |#4|)))
+((-3540 ((|#2| |#3|) 35)) (-2606 (((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) |#2|) 73)) (-2639 (((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) 89)))
+(((-980 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2639 ((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))))) (-15 -2606 ((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) |#2|)) (-15 -3540 (|#2| |#3|))) (-348) (-1232 |#1|) (-1232 |#2|) (-719 |#2| |#3|)) (T -980))
+((-3540 (*1 *2 *3) (-12 (-4 *3 (-1232 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-980 *4 *2 *3 *5)) (-4 *4 (-348)) (-4 *5 (-719 *2 *3)))) (-2606 (*1 *2 *3) (-12 (-4 *4 (-348)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 *3)) (-5 *2 (-2 (|:| -4291 (-683 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-683 *3)))) (-5 *1 (-980 *4 *3 *5 *6)) (-4 *6 (-719 *3 *5)))) (-2639 (*1 *2) (-12 (-4 *3 (-348)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| -4291 (-683 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-683 *4)))) (-5 *1 (-980 *3 *4 *5 *6)) (-4 *6 (-719 *4 *5)))))
+(-10 -7 (-15 -2639 ((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))))) (-15 -2606 ((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) |#2|)) (-15 -3540 (|#2| |#3|)))
+((-2540 (((-982 (-406 (-562)) (-859 |#1|) (-239 |#2| (-766)) (-246 |#1| (-406 (-562)))) (-982 (-406 (-562)) (-859 |#1|) (-239 |#2| (-766)) (-246 |#1| (-406 (-562))))) 68)))
+(((-981 |#1| |#2|) (-10 -7 (-15 -2540 ((-982 (-406 (-562)) (-859 |#1|) (-239 |#2| (-766)) (-246 |#1| (-406 (-562)))) (-982 (-406 (-562)) (-859 |#1|) (-239 |#2| (-766)) (-246 |#1| (-406 (-562))))))) (-639 (-1168)) (-766)) (T -981))
+((-2540 (*1 *2 *2) (-12 (-5 *2 (-982 (-406 (-562)) (-859 *3) (-239 *4 (-766)) (-246 *3 (-406 (-562))))) (-14 *3 (-639 (-1168))) (-14 *4 (-766)) (-5 *1 (-981 *3 *4)))))
+(-10 -7 (-15 -2540 ((-982 (-406 (-562)) (-859 |#1|) (-239 |#2| (-766)) (-246 |#1| (-406 (-562)))) (-982 (-406 (-562)) (-859 |#1|) (-239 |#2| (-766)) (-246 |#1| (-406 (-562)))))))
+((-4041 (((-112) $ $) NIL)) (-3981 (((-3 (-112) "failed") $) 69)) (-3537 (($ $) 36 (-12 (|has| |#1| (-146)) (|has| |#1| (-306))))) (-2856 (($ $ (-3 (-112) "failed")) 70)) (-1850 (($ (-639 |#4|) |#4|) 25)) (-3696 (((-1150) $) NIL)) (-1640 (($ $) 67)) (-1709 (((-1112) $) NIL)) (-3087 (((-112) $) 68)) (-1663 (($) 30)) (-2731 ((|#4| $) 72)) (-3481 (((-639 |#4|) $) 71)) (-4053 (((-857) $) 66)) (-1733 (((-112) $ $) NIL)))
+(((-982 |#1| |#2| |#3| |#4|) (-13 (-1092) (-609 (-857)) (-10 -8 (-15 -1663 ($)) (-15 -1850 ($ (-639 |#4|) |#4|)) (-15 -3981 ((-3 (-112) "failed") $)) (-15 -2856 ($ $ (-3 (-112) "failed"))) (-15 -3087 ((-112) $)) (-15 -3481 ((-639 |#4|) $)) (-15 -2731 (|#4| $)) (-15 -1640 ($ $)) (IF (|has| |#1| (-306)) (IF (|has| |#1| (-146)) (-15 -3537 ($ $)) |%noBranch|) |%noBranch|))) (-451) (-845) (-788) (-944 |#1| |#3| |#2|)) (T -982))
+((-1663 (*1 *1) (-12 (-4 *2 (-451)) (-4 *3 (-845)) (-4 *4 (-788)) (-5 *1 (-982 *2 *3 *4 *5)) (-4 *5 (-944 *2 *4 *3)))) (-1850 (*1 *1 *2 *3) (-12 (-5 *2 (-639 *3)) (-4 *3 (-944 *4 *6 *5)) (-4 *4 (-451)) (-4 *5 (-845)) (-4 *6 (-788)) (-5 *1 (-982 *4 *5 *6 *3)))) (-3981 (*1 *2 *1) (|partial| -12 (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)) (-5 *2 (-112)) (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4)))) (-2856 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)) (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4)))) (-3087 (*1 *2 *1) (-12 (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)) (-5 *2 (-112)) (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4)))) (-3481 (*1 *2 *1) (-12 (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)) (-5 *2 (-639 *6)) (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4)))) (-2731 (*1 *2 *1) (-12 (-4 *2 (-944 *3 *5 *4)) (-5 *1 (-982 *3 *4 *5 *2)) (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)))) (-1640 (*1 *1 *1) (-12 (-4 *2 (-451)) (-4 *3 (-845)) (-4 *4 (-788)) (-5 *1 (-982 *2 *3 *4 *5)) (-4 *5 (-944 *2 *4 *3)))) (-3537 (*1 *1 *1) (-12 (-4 *2 (-146)) (-4 *2 (-306)) (-4 *2 (-451)) (-4 *3 (-845)) (-4 *4 (-788)) (-5 *1 (-982 *2 *3 *4 *5)) (-4 *5 (-944 *2 *4 *3)))))
+(-13 (-1092) (-609 (-857)) (-10 -8 (-15 -1663 ($)) (-15 -1850 ($ (-639 |#4|) |#4|)) (-15 -3981 ((-3 (-112) "failed") $)) (-15 -2856 ($ $ (-3 (-112) "failed"))) (-15 -3087 ((-112) $)) (-15 -3481 ((-639 |#4|) $)) (-15 -2731 (|#4| $)) (-15 -1640 ($ $)) (IF (|has| |#1| (-306)) (IF (|has| |#1| (-146)) (-15 -3537 ($ $)) |%noBranch|) |%noBranch|)))
+((-3590 (((-112) |#5| |#5|) 37)) (-1914 (((-112) |#5| |#5|) 51)) (-4346 (((-112) |#5| (-639 |#5|)) 73) (((-112) |#5| |#5|) 60)) (-4077 (((-112) (-639 |#4|) (-639 |#4|)) 57)) (-2097 (((-112) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) 62)) (-4089 (((-1261)) 33)) (-1983 (((-1261) (-1150) (-1150) (-1150)) 29)) (-4257 (((-639 |#5|) (-639 |#5|)) 80)) (-1550 (((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)))) 78)) (-3579 (((-639 (-2 (|:| -3339 (-639 |#4|)) (|:| -1501 |#5|) (|:| |ineq| (-639 |#4|)))) (-639 |#4|) (-639 |#5|) (-112) (-112)) 100)) (-2027 (((-112) |#5| |#5|) 46)) (-2916 (((-3 (-112) "failed") |#5| |#5|) 70)) (-2838 (((-112) (-639 |#4|) (-639 |#4|)) 56)) (-3338 (((-112) (-639 |#4|) (-639 |#4|)) 58)) (-1789 (((-112) (-639 |#4|) (-639 |#4|)) 59)) (-1902 (((-3 (-2 (|:| -3339 (-639 |#4|)) (|:| -1501 |#5|) (|:| |ineq| (-639 |#4|))) "failed") (-639 |#4|) |#5| (-639 |#4|) (-112) (-112) (-112) (-112) (-112)) 96)) (-1586 (((-639 |#5|) (-639 |#5|)) 42)))
+(((-983 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1983 ((-1261) (-1150) (-1150) (-1150))) (-15 -4089 ((-1261))) (-15 -3590 ((-112) |#5| |#5|)) (-15 -1586 ((-639 |#5|) (-639 |#5|))) (-15 -2027 ((-112) |#5| |#5|)) (-15 -1914 ((-112) |#5| |#5|)) (-15 -4077 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2838 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -3338 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -1789 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2916 ((-3 (-112) "failed") |#5| |#5|)) (-15 -4346 ((-112) |#5| |#5|)) (-15 -4346 ((-112) |#5| (-639 |#5|))) (-15 -4257 ((-639 |#5|) (-639 |#5|))) (-15 -2097 ((-112) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)))) (-15 -1550 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) (-15 -3579 ((-639 (-2 (|:| -3339 (-639 |#4|)) (|:| -1501 |#5|) (|:| |ineq| (-639 |#4|)))) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -1902 ((-3 (-2 (|:| -3339 (-639 |#4|)) (|:| -1501 |#5|) (|:| |ineq| (-639 |#4|))) "failed") (-639 |#4|) |#5| (-639 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|)) (T -983))
+((-1902 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *9 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| -3339 (-639 *9)) (|:| -1501 *4) (|:| |ineq| (-639 *9)))) (-5 *1 (-983 *6 *7 *8 *9 *4)) (-5 *3 (-639 *9)) (-4 *4 (-1064 *6 *7 *8 *9)))) (-3579 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-639 *10)) (-5 *5 (-112)) (-4 *10 (-1064 *6 *7 *8 *9)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *9 (-1058 *6 *7 *8)) (-5 *2 (-639 (-2 (|:| -3339 (-639 *9)) (|:| -1501 *10) (|:| |ineq| (-639 *9))))) (-5 *1 (-983 *6 *7 *8 *9 *10)) (-5 *3 (-639 *9)))) (-1550 (*1 *2 *2) (-12 (-5 *2 (-639 (-2 (|:| |val| (-639 *6)) (|:| -1501 *7)))) (-4 *6 (-1058 *3 *4 *5)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-983 *3 *4 *5 *6 *7)))) (-2097 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1501 *8))) (-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1064 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *8)))) (-4257 (*1 *2 *2) (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *1 (-983 *3 *4 *5 *6 *7)))) (-4346 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-983 *5 *6 *7 *8 *3)))) (-4346 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-2916 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-1789 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-3338 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-2838 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-4077 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-1914 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-2027 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-1586 (*1 *2 *2) (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *1 (-983 *3 *4 *5 *6 *7)))) (-3590 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-4089 (*1 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261)) (-5 *1 (-983 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))) (-1983 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261)) (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1983 ((-1261) (-1150) (-1150) (-1150))) (-15 -4089 ((-1261))) (-15 -3590 ((-112) |#5| |#5|)) (-15 -1586 ((-639 |#5|) (-639 |#5|))) (-15 -2027 ((-112) |#5| |#5|)) (-15 -1914 ((-112) |#5| |#5|)) (-15 -4077 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2838 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -3338 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -1789 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2916 ((-3 (-112) "failed") |#5| |#5|)) (-15 -4346 ((-112) |#5| |#5|)) (-15 -4346 ((-112) |#5| (-639 |#5|))) (-15 -4257 ((-639 |#5|) (-639 |#5|))) (-15 -2097 ((-112) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)))) (-15 -1550 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) (-15 -3579 ((-639 (-2 (|:| -3339 (-639 |#4|)) (|:| -1501 |#5|) (|:| |ineq| (-639 |#4|)))) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -1902 ((-3 (-2 (|:| -3339 (-639 |#4|)) (|:| -1501 |#5|) (|:| |ineq| (-639 |#4|))) "failed") (-639 |#4|) |#5| (-639 |#4|) (-112) (-112) (-112) (-112) (-112))))
+((-2443 (((-1168) $) 15)) (-2533 (((-1150) $) 16)) (-3680 (($ (-1168) (-1150)) 14)) (-4053 (((-857) $) 13)))
+(((-984) (-13 (-609 (-857)) (-10 -8 (-15 -3680 ($ (-1168) (-1150))) (-15 -2443 ((-1168) $)) (-15 -2533 ((-1150) $))))) (T -984))
+((-3680 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1150)) (-5 *1 (-984)))) (-2443 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-984)))) (-2533 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-984)))))
+(-13 (-609 (-857)) (-10 -8 (-15 -3680 ($ (-1168) (-1150))) (-15 -2443 ((-1168) $)) (-15 -2533 ((-1150) $))))
((-4152 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
(((-985 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4152 (|#4| (-1 |#2| |#1|) |#3|))) (-554) (-554) (-987 |#1|) (-987 |#2|)) (T -985))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-554)) (-4 *6 (-554)) (-4 *2 (-987 *6)) (-5 *1 (-985 *5 *6 *4 *2)) (-4 *4 (-987 *5)))))
(-10 -7 (-15 -4152 (|#4| (-1 |#2| |#1|) |#3|)))
-((-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-1168) "failed") $) 65) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 (-562) "failed") $) 95)) (-3961 ((|#2| $) NIL) (((-1168) $) 60) (((-406 (-562)) $) NIL) (((-562) $) 92)) (-2406 (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) 112) (((-683 |#2|) (-683 $)) 28)) (-1448 (($) 98)) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 75) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 84)) (-3425 (($ $) 10)) (-3699 (((-3 $ "failed") $) 20)) (-4152 (($ (-1 |#2| |#2|) $) 22)) (-3729 (($) 16)) (-2736 (($ $) 54)) (-4029 (($ $) NIL) (($ $ (-766)) NIL) (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-3658 (($ $) 12)) (-4208 (((-887 (-562)) $) 70) (((-887 (-378)) $) 79) (((-535) $) 40) (((-378) $) 44) (((-224) $) 47)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) 90) (($ |#2|) NIL) (($ (-1168)) 57)) (-2579 (((-766)) 31)) (-1759 (((-112) $ $) 50)))
-(((-986 |#1| |#2|) (-10 -8 (-15 -1759 ((-112) |#1| |#1|)) (-15 -3729 (|#1|)) (-15 -3699 ((-3 |#1| "failed") |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4208 ((-224) |#1|)) (-15 -4208 ((-378) |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4054 (|#1| (-1168))) (-15 -4048 ((-3 (-1168) "failed") |#1|)) (-15 -3961 ((-1168) |#1|)) (-15 -1448 (|#1|)) (-15 -2736 (|#1| |#1|)) (-15 -3658 (|#1| |#1|)) (-15 -3425 (|#1| |#1|)) (-15 -2533 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -2533 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -2406 ((-683 |#2|) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-683 (-562)) (-683 |#1|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4054 (|#1| |#1|)) (-15 -2579 ((-766))) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|))) (-987 |#2|) (-554)) (T -986))
-((-2579 (*1 *2) (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-986 *3 *4)) (-4 *3 (-987 *4)))))
-(-10 -8 (-15 -1759 ((-112) |#1| |#1|)) (-15 -3729 (|#1|)) (-15 -3699 ((-3 |#1| "failed") |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4208 ((-224) |#1|)) (-15 -4208 ((-378) |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4054 (|#1| (-1168))) (-15 -4048 ((-3 (-1168) "failed") |#1|)) (-15 -3961 ((-1168) |#1|)) (-15 -1448 (|#1|)) (-15 -2736 (|#1| |#1|)) (-15 -3658 (|#1| |#1|)) (-15 -3425 (|#1| |#1|)) (-15 -2533 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -2533 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -2406 ((-683 |#2|) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-683 (-562)) (-683 |#1|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4054 (|#1| |#1|)) (-15 -2579 ((-766))) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-4246 ((|#1| $) 138 (|has| |#1| (-306)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-3026 (((-417 (-1164 $)) (-1164 $)) 129 (|has| |#1| (-904)))) (-2798 (($ $) 74)) (-2921 (((-417 $) $) 73)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 132 (|has| |#1| (-904)))) (-2569 (((-112) $ $) 60)) (-2277 (((-562) $) 119 (|has| |#1| (-815)))) (-1800 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 176) (((-3 (-1168) "failed") $) 127 (|has| |#1| (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) 110 (|has| |#1| (-1033 (-562)))) (((-3 (-562) "failed") $) 108 (|has| |#1| (-1033 (-562))))) (-3961 ((|#1| $) 177) (((-1168) $) 128 (|has| |#1| (-1033 (-1168)))) (((-406 (-562)) $) 111 (|has| |#1| (-1033 (-562)))) (((-562) $) 109 (|has| |#1| (-1033 (-562))))) (-1811 (($ $ $) 56)) (-2406 (((-683 (-562)) (-683 $)) 151 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 150 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 149) (((-683 |#1|) (-683 $)) 148)) (-3668 (((-3 $ "failed") $) 33)) (-1448 (($) 136 (|has| |#1| (-544)))) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-2717 (((-112) $) 72)) (-3519 (((-112) $) 121 (|has| |#1| (-815)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 145 (|has| |#1| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 144 (|has| |#1| (-881 (-378))))) (-1957 (((-112) $) 31)) (-3425 (($ $) 140)) (-4065 ((|#1| $) 142)) (-3699 (((-3 $ "failed") $) 107 (|has| |#1| (-1143)))) (-3392 (((-112) $) 120 (|has| |#1| (-815)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1551 (($ $ $) 117 (|has| |#1| (-845)))) (-2993 (($ $ $) 116 (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) 168)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 71)) (-3729 (($) 106 (|has| |#1| (-1143)) CONST)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-2736 (($ $) 137 (|has| |#1| (-306)))) (-4014 ((|#1| $) 134 (|has| |#1| (-544)))) (-3986 (((-417 (-1164 $)) (-1164 $)) 131 (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) 130 (|has| |#1| (-904)))) (-1635 (((-417 $) $) 75)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) 174 (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) 173 (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) 172 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) 171 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) 170 (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) 169 (|has| |#1| (-513 (-1168) |#1|)))) (-1577 (((-766) $) 59)) (-2343 (($ $ |#1|) 175 (|has| |#1| (-285 |#1| |#1|)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 58)) (-4029 (($ $) 167 (|has| |#1| (-232))) (($ $ (-766)) 165 (|has| |#1| (-232))) (($ $ (-1168)) 163 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 162 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 161 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 160 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 153) (($ $ (-1 |#1| |#1|)) 152)) (-3658 (($ $) 139)) (-4076 ((|#1| $) 141)) (-4208 (((-887 (-562)) $) 147 (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) 146 (|has| |#1| (-610 (-887 (-378))))) (((-535) $) 124 (|has| |#1| (-610 (-535)))) (((-378) $) 123 (|has| |#1| (-1017))) (((-224) $) 122 (|has| |#1| (-1017)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 133 (-2246 (|has| $ (-144)) (|has| |#1| (-904))))) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67) (($ |#1|) 180) (($ (-1168)) 126 (|has| |#1| (-1033 (-1168))))) (-2805 (((-3 $ "failed") $) 125 (-4037 (|has| |#1| (-144)) (-2246 (|has| $ (-144)) (|has| |#1| (-904)))))) (-2579 (((-766)) 28)) (-2604 ((|#1| $) 135 (|has| |#1| (-544)))) (-2922 (((-112) $ $) 40)) (-3526 (($ $) 118 (|has| |#1| (-815)))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $) 166 (|has| |#1| (-232))) (($ $ (-766)) 164 (|has| |#1| (-232))) (($ $ (-1168)) 159 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 158 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 157 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 156 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 155) (($ $ (-1 |#1| |#1|)) 154)) (-1798 (((-112) $ $) 114 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 113 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 115 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 112 (|has| |#1| (-845)))) (-1859 (($ $ $) 66) (($ |#1| |#1|) 143)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68) (($ |#1| $) 179) (($ $ |#1|) 178)))
+((-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-1168) "failed") $) 65) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 (-562) "failed") $) 95)) (-3960 ((|#2| $) NIL) (((-1168) $) 60) (((-406 (-562)) $) NIL) (((-562) $) 92)) (-3449 (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) 112) (((-683 |#2|) (-683 $)) 28)) (-1447 (($) 98)) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 75) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 84)) (-2957 (($ $) 10)) (-3828 (((-3 $ "failed") $) 20)) (-4152 (($ (-1 |#2| |#2|) $) 22)) (-3730 (($) 16)) (-2561 (($ $) 54)) (-4029 (($ $) NIL) (($ $ (-766)) NIL) (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-1580 (($ $) 12)) (-4208 (((-887 (-562)) $) 70) (((-887 (-378)) $) 79) (((-535) $) 40) (((-378) $) 44) (((-224) $) 47)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) 90) (($ |#2|) NIL) (($ (-1168)) 57)) (-1568 (((-766)) 31)) (-1761 (((-112) $ $) 50)))
+(((-986 |#1| |#2|) (-10 -8 (-15 -1761 ((-112) |#1| |#1|)) (-15 -3730 (|#1|)) (-15 -3828 ((-3 |#1| "failed") |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4208 ((-224) |#1|)) (-15 -4208 ((-378) |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4053 (|#1| (-1168))) (-15 -4048 ((-3 (-1168) "failed") |#1|)) (-15 -3960 ((-1168) |#1|)) (-15 -1447 (|#1|)) (-15 -2561 (|#1| |#1|)) (-15 -1580 (|#1| |#1|)) (-15 -2957 (|#1| |#1|)) (-15 -2337 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -2337 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -3449 ((-683 |#2|) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-683 (-562)) (-683 |#1|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4053 (|#1| |#1|)) (-15 -1568 ((-766))) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|))) (-987 |#2|) (-554)) (T -986))
+((-1568 (*1 *2) (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-986 *3 *4)) (-4 *3 (-987 *4)))))
+(-10 -8 (-15 -1761 ((-112) |#1| |#1|)) (-15 -3730 (|#1|)) (-15 -3828 ((-3 |#1| "failed") |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4208 ((-224) |#1|)) (-15 -4208 ((-378) |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4053 (|#1| (-1168))) (-15 -4048 ((-3 (-1168) "failed") |#1|)) (-15 -3960 ((-1168) |#1|)) (-15 -1447 (|#1|)) (-15 -2561 (|#1| |#1|)) (-15 -1580 (|#1| |#1|)) (-15 -2957 (|#1| |#1|)) (-15 -2337 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -2337 ((-884 (-562) |#1|) |#1| (-887 (-562)) (-884 (-562) |#1|))) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -3449 ((-683 |#2|) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-683 (-562)) (-683 |#1|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4053 (|#1| |#1|)) (-15 -1568 ((-766))) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2300 ((|#1| $) 138 (|has| |#1| (-306)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-3517 (((-417 (-1164 $)) (-1164 $)) 129 (|has| |#1| (-904)))) (-1977 (($ $) 74)) (-3788 (((-417 $) $) 73)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 132 (|has| |#1| (-904)))) (-1436 (((-112) $ $) 60)) (-1587 (((-562) $) 119 (|has| |#1| (-815)))) (-3329 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 176) (((-3 (-1168) "failed") $) 127 (|has| |#1| (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) 110 (|has| |#1| (-1033 (-562)))) (((-3 (-562) "failed") $) 108 (|has| |#1| (-1033 (-562))))) (-3960 ((|#1| $) 177) (((-1168) $) 128 (|has| |#1| (-1033 (-1168)))) (((-406 (-562)) $) 111 (|has| |#1| (-1033 (-562)))) (((-562) $) 109 (|has| |#1| (-1033 (-562))))) (-1810 (($ $ $) 56)) (-3449 (((-683 (-562)) (-683 $)) 151 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 150 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 149) (((-683 |#1|) (-683 $)) 148)) (-1694 (((-3 $ "failed") $) 33)) (-1447 (($) 136 (|has| |#1| (-544)))) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-3521 (((-112) $) 72)) (-2696 (((-112) $) 121 (|has| |#1| (-815)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 145 (|has| |#1| (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 144 (|has| |#1| (-881 (-378))))) (-4367 (((-112) $) 31)) (-2957 (($ $) 140)) (-4063 ((|#1| $) 142)) (-3828 (((-3 $ "failed") $) 107 (|has| |#1| (-1143)))) (-3855 (((-112) $) 120 (|has| |#1| (-815)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1551 (($ $ $) 117 (|has| |#1| (-845)))) (-2993 (($ $ $) 116 (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) 168)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 71)) (-3730 (($) 106 (|has| |#1| (-1143)) CONST)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-2561 (($ $) 137 (|has| |#1| (-306)))) (-3870 ((|#1| $) 134 (|has| |#1| (-544)))) (-3586 (((-417 (-1164 $)) (-1164 $)) 131 (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) 130 (|has| |#1| (-904)))) (-1635 (((-417 $) $) 75)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) 174 (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) 173 (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) 172 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) 171 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) 170 (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) 169 (|has| |#1| (-513 (-1168) |#1|)))) (-2044 (((-766) $) 59)) (-2343 (($ $ |#1|) 175 (|has| |#1| (-285 |#1| |#1|)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 58)) (-4029 (($ $) 167 (|has| |#1| (-232))) (($ $ (-766)) 165 (|has| |#1| (-232))) (($ $ (-1168)) 163 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 162 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 161 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 160 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 153) (($ $ (-1 |#1| |#1|)) 152)) (-1580 (($ $) 139)) (-4079 ((|#1| $) 141)) (-4208 (((-887 (-562)) $) 147 (|has| |#1| (-610 (-887 (-562))))) (((-887 (-378)) $) 146 (|has| |#1| (-610 (-887 (-378))))) (((-535) $) 124 (|has| |#1| (-610 (-535)))) (((-378) $) 123 (|has| |#1| (-1017))) (((-224) $) 122 (|has| |#1| (-1017)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 133 (-2245 (|has| $ (-144)) (|has| |#1| (-904))))) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67) (($ |#1|) 180) (($ (-1168)) 126 (|has| |#1| (-1033 (-1168))))) (-2059 (((-3 $ "failed") $) 125 (-4037 (|has| |#1| (-144)) (-2245 (|has| $ (-144)) (|has| |#1| (-904)))))) (-1568 (((-766)) 28)) (-3636 ((|#1| $) 135 (|has| |#1| (-544)))) (-3799 (((-112) $ $) 40)) (-2757 (($ $) 118 (|has| |#1| (-815)))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $) 166 (|has| |#1| (-232))) (($ $ (-766)) 164 (|has| |#1| (-232))) (($ $ (-1168)) 159 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 158 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 157 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 156 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 155) (($ $ (-1 |#1| |#1|)) 154)) (-1798 (((-112) $ $) 114 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 113 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 115 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 112 (|has| |#1| (-845)))) (-1859 (($ $ $) 66) (($ |#1| |#1|) 143)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68) (($ |#1| $) 179) (($ $ |#1|) 178)))
(((-987 |#1|) (-139) (-554)) (T -987))
-((-1859 (*1 *1 *2 *2) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))) (-4065 (*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))) (-4076 (*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))) (-3425 (*1 *1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))) (-3658 (*1 *1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))) (-4246 (*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-306)))) (-2736 (*1 *1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-306)))) (-1448 (*1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-544)) (-4 *2 (-554)))) (-2604 (*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-544)))) (-4014 (*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-544)))))
-(-13 (-362) (-38 |t#1|) (-1033 |t#1|) (-337 |t#1|) (-230 |t#1|) (-376 |t#1|) (-879 |t#1|) (-399 |t#1|) (-10 -8 (-15 -1859 ($ |t#1| |t#1|)) (-15 -4065 (|t#1| $)) (-15 -4076 (|t#1| $)) (-15 -3425 ($ $)) (-15 -3658 ($ $)) (IF (|has| |t#1| (-1143)) (-6 (-1143)) |%noBranch|) (IF (|has| |t#1| (-1033 (-562))) (PROGN (-6 (-1033 (-562))) (-6 (-1033 (-406 (-562))))) |%noBranch|) (IF (|has| |t#1| (-845)) (-6 (-845)) |%noBranch|) (IF (|has| |t#1| (-815)) (-6 (-815)) |%noBranch|) (IF (|has| |t#1| (-1017)) (-6 (-1017)) |%noBranch|) (IF (|has| |t#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |t#1| (-1033 (-1168))) (-6 (-1033 (-1168))) |%noBranch|) (IF (|has| |t#1| (-306)) (PROGN (-15 -4246 (|t#1| $)) (-15 -2736 ($ $))) |%noBranch|) (IF (|has| |t#1| (-544)) (PROGN (-15 -1448 ($)) (-15 -2604 (|t#1| $)) (-15 -4014 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-904)) (-6 (-904)) |%noBranch|)))
+((-1859 (*1 *1 *2 *2) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))) (-4063 (*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))) (-4079 (*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))) (-2957 (*1 *1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))) (-1580 (*1 *1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))) (-2300 (*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-306)))) (-2561 (*1 *1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-306)))) (-1447 (*1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-544)) (-4 *2 (-554)))) (-3636 (*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-544)))) (-3870 (*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-544)))))
+(-13 (-362) (-38 |t#1|) (-1033 |t#1|) (-337 |t#1|) (-230 |t#1|) (-376 |t#1|) (-879 |t#1|) (-399 |t#1|) (-10 -8 (-15 -1859 ($ |t#1| |t#1|)) (-15 -4063 (|t#1| $)) (-15 -4079 (|t#1| $)) (-15 -2957 ($ $)) (-15 -1580 ($ $)) (IF (|has| |t#1| (-1143)) (-6 (-1143)) |%noBranch|) (IF (|has| |t#1| (-1033 (-562))) (PROGN (-6 (-1033 (-562))) (-6 (-1033 (-406 (-562))))) |%noBranch|) (IF (|has| |t#1| (-845)) (-6 (-845)) |%noBranch|) (IF (|has| |t#1| (-815)) (-6 (-815)) |%noBranch|) (IF (|has| |t#1| (-1017)) (-6 (-1017)) |%noBranch|) (IF (|has| |t#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |t#1| (-1033 (-1168))) (-6 (-1033 (-1168))) |%noBranch|) (IF (|has| |t#1| (-306)) (PROGN (-15 -2300 (|t#1| $)) (-15 -2561 ($ $))) |%noBranch|) (IF (|has| |t#1| (-544)) (PROGN (-15 -1447 ($)) (-15 -3636 (|t#1| $)) (-15 -3870 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-904)) (-6 (-904)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) . T) ((-38 |#1|) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #0#) . T) ((-612 (-562)) . T) ((-612 #1=(-1168)) |has| |#1| (-1033 (-1168))) ((-612 |#1|) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-610 (-224)) |has| |#1| (-1017)) ((-610 (-378)) |has| |#1| (-1017)) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-610 (-887 (-378))) |has| |#1| (-610 (-887 (-378)))) ((-610 (-887 (-562))) |has| |#1| (-610 (-887 (-562)))) ((-230 |#1|) . T) ((-232) |has| |#1| (-232)) ((-242) . T) ((-285 |#1| $) |has| |#1| (-285 |#1| |#1|)) ((-289) . T) ((-306) . T) ((-308 |#1|) |has| |#1| (-308 |#1|)) ((-362) . T) ((-337 |#1|) . T) ((-376 |#1|) . T) ((-399 |#1|) . T) ((-451) . T) ((-513 (-1168) |#1|) |has| |#1| (-513 (-1168) |#1|)) ((-513 |#1| |#1|) |has| |#1| (-308 |#1|)) ((-554) . T) ((-642 #0#) . T) ((-642 |#1|) . T) ((-642 $) . T) ((-635 (-562)) |has| |#1| (-635 (-562))) ((-635 |#1|) . T) ((-712 #0#) . T) ((-712 |#1|) . T) ((-712 $) . T) ((-721) . T) ((-786) |has| |#1| (-815)) ((-787) |has| |#1| (-815)) ((-789) |has| |#1| (-815)) ((-790) |has| |#1| (-815)) ((-815) |has| |#1| (-815)) ((-843) |has| |#1| (-815)) ((-845) -4037 (|has| |#1| (-845)) (|has| |#1| (-815))) ((-895 (-1168)) |has| |#1| (-895 (-1168))) ((-881 (-378)) |has| |#1| (-881 (-378))) ((-881 (-562)) |has| |#1| (-881 (-562))) ((-879 |#1|) . T) ((-904) |has| |#1| (-904)) ((-915) . T) ((-1017) |has| |#1| (-1017)) ((-1033 (-406 (-562))) |has| |#1| (-1033 (-562))) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 #1#) |has| |#1| (-1033 (-1168))) ((-1033 |#1|) . T) ((-1050 #0#) . T) ((-1050 |#1|) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1143) |has| |#1| (-1143)) ((-1207) . T) ((-1211) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-2133 (($ (-1134 |#1| |#2|)) 11)) (-2885 (((-1134 |#1| |#2|) $) 12)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2343 ((|#2| $ (-239 |#1| |#2|)) 16)) (-4054 (((-857) $) NIL)) (-2286 (($) NIL T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL)))
-(((-988 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -2133 ($ (-1134 |#1| |#2|))) (-15 -2885 ((-1134 |#1| |#2|) $)) (-15 -2343 (|#2| $ (-239 |#1| |#2|))))) (-916) (-362)) (T -988))
-((-2133 (*1 *1 *2) (-12 (-5 *2 (-1134 *3 *4)) (-14 *3 (-916)) (-4 *4 (-362)) (-5 *1 (-988 *3 *4)))) (-2885 (*1 *2 *1) (-12 (-5 *2 (-1134 *3 *4)) (-5 *1 (-988 *3 *4)) (-14 *3 (-916)) (-4 *4 (-362)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-239 *4 *2)) (-14 *4 (-916)) (-4 *2 (-362)) (-5 *1 (-988 *4 *2)))))
-(-13 (-21) (-10 -8 (-15 -2133 ($ (-1134 |#1| |#2|))) (-15 -2885 ((-1134 |#1| |#2|) $)) (-15 -2343 (|#2| $ (-239 |#1| |#2|)))))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1743 (((-1127) $) 9)) (-4054 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-2610 (($ (-1134 |#1| |#2|)) 11)) (-2884 (((-1134 |#1| |#2|) $) 12)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2343 ((|#2| $ (-239 |#1| |#2|)) 16)) (-4053 (((-857) $) NIL)) (-2285 (($) NIL T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL)))
+(((-988 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -2610 ($ (-1134 |#1| |#2|))) (-15 -2884 ((-1134 |#1| |#2|) $)) (-15 -2343 (|#2| $ (-239 |#1| |#2|))))) (-916) (-362)) (T -988))
+((-2610 (*1 *1 *2) (-12 (-5 *2 (-1134 *3 *4)) (-14 *3 (-916)) (-4 *4 (-362)) (-5 *1 (-988 *3 *4)))) (-2884 (*1 *2 *1) (-12 (-5 *2 (-1134 *3 *4)) (-5 *1 (-988 *3 *4)) (-14 *3 (-916)) (-4 *4 (-362)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 (-239 *4 *2)) (-14 *4 (-916)) (-4 *2 (-362)) (-5 *1 (-988 *4 *2)))))
+(-13 (-21) (-10 -8 (-15 -2610 ($ (-1134 |#1| |#2|))) (-15 -2884 ((-1134 |#1| |#2|) $)) (-15 -2343 (|#2| $ (-239 |#1| |#2|)))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1743 (((-1127) $) 9)) (-4053 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-989) (-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $))))) (T -989))
((-1743 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-989)))))
(-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $))))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) 8)) (-1800 (($) 7 T CONST)) (-3109 (($ $) 46)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-3641 (((-766) $) 45)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3262 ((|#1| $) 39)) (-4300 (($ |#1| $) 40)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3516 ((|#1| $) 44)) (-1904 ((|#1| $) 41)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2391 ((|#1| |#1| $) 48)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-3872 ((|#1| $) 47)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1932 (($ (-639 |#1|)) 42)) (-3686 ((|#1| $) 43)) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) 8)) (-3329 (($) 7 T CONST)) (-2953 (($ $) 46)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3641 (((-766) $) 45)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-2078 ((|#1| $) 39)) (-1581 (($ |#1| $) 40)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-2662 ((|#1| $) 44)) (-2038 ((|#1| $) 41)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3297 ((|#1| |#1| $) 48)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-1903 ((|#1| $) 47)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-4131 (($ (-639 |#1|)) 42)) (-3690 ((|#1| $) 43)) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-990 |#1|) (-139) (-1207)) (T -990))
-((-2391 (*1 *2 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))) (-3872 (*1 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))) (-3109 (*1 *1 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))) (-3641 (*1 *2 *1) (-12 (-4 *1 (-990 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))) (-3516 (*1 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))) (-3686 (*1 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4402) (-15 -2391 (|t#1| |t#1| $)) (-15 -3872 (|t#1| $)) (-15 -3109 ($ $)) (-15 -3641 ((-766) $)) (-15 -3516 (|t#1| $)) (-15 -3686 (|t#1| $))))
+((-3297 (*1 *2 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))) (-1903 (*1 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))) (-2953 (*1 *1 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))) (-3641 (*1 *2 *1) (-12 (-4 *1 (-990 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))) (-2662 (*1 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))) (-3690 (*1 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4403) (-15 -3297 (|t#1| |t#1| $)) (-15 -1903 (|t#1| $)) (-15 -2953 ($ $)) (-15 -3641 ((-766) $)) (-15 -2662 (|t#1| $)) (-15 -3690 (|t#1| $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-1952 (((-112) $) 42)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-3961 (((-562) $) NIL) (((-406 (-562)) $) NIL) ((|#2| $) 43)) (-1726 (((-3 (-406 (-562)) "failed") $) 78)) (-3035 (((-112) $) 72)) (-1291 (((-406 (-562)) $) 76)) (-1957 (((-112) $) 41)) (-2247 ((|#2| $) 22)) (-4152 (($ (-1 |#2| |#2|) $) 19)) (-1525 (($ $) 61)) (-4029 (($ $) NIL) (($ $ (-766)) NIL) (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) 34)) (-4208 (((-535) $) 67)) (-3665 (($ $) 17)) (-4054 (((-857) $) 56) (($ (-562)) 38) (($ |#2|) 36) (($ (-406 (-562))) NIL)) (-2579 (((-766)) 10)) (-3526 ((|#2| $) 71)) (-1731 (((-112) $ $) 25)) (-1759 (((-112) $ $) 69)) (-1848 (($ $) 29) (($ $ $) 28)) (-1835 (($ $ $) 26)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 33) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 30) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
-(((-991 |#1| |#2|) (-10 -8 (-15 -4054 (|#1| (-406 (-562)))) (-15 -1759 ((-112) |#1| |#1|)) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 * (|#1| |#1| (-406 (-562)))) (-15 -1525 (|#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -1726 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -1291 ((-406 (-562)) |#1|)) (-15 -3035 ((-112) |#1|)) (-15 -3526 (|#2| |#1|)) (-15 -2247 (|#2| |#1|)) (-15 -3665 (|#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4054 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2579 ((-766))) (-15 -4054 (|#1| (-562))) (-15 -1957 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 -1952 ((-112) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -1835 (|#1| |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -1731 ((-112) |#1| |#1|))) (-992 |#2|) (-171)) (T -991))
-((-2579 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-766)) (-5 *1 (-991 *3 *4)) (-4 *3 (-992 *4)))))
-(-10 -8 (-15 -4054 (|#1| (-406 (-562)))) (-15 -1759 ((-112) |#1| |#1|)) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 * (|#1| |#1| (-406 (-562)))) (-15 -1525 (|#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -1726 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -1291 ((-406 (-562)) |#1|)) (-15 -3035 ((-112) |#1|)) (-15 -3526 (|#2| |#1|)) (-15 -2247 (|#2| |#1|)) (-15 -3665 (|#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4054 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2579 ((-766))) (-15 -4054 (|#1| (-562))) (-15 -1957 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 -1952 ((-112) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -1835 (|#1| |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -1731 ((-112) |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 118 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 116 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 113)) (-3961 (((-562) $) 117 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 115 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 114)) (-2406 (((-683 (-562)) (-683 $)) 88 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 87 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 86) (((-683 |#1|) (-683 $)) 85)) (-3668 (((-3 $ "failed") $) 33)) (-1657 ((|#1| $) 78)) (-1726 (((-3 (-406 (-562)) "failed") $) 74 (|has| |#1| (-544)))) (-3035 (((-112) $) 76 (|has| |#1| (-544)))) (-1291 (((-406 (-562)) $) 75 (|has| |#1| (-544)))) (-2121 (($ |#1| |#1| |#1| |#1|) 79)) (-1957 (((-112) $) 31)) (-2247 ((|#1| $) 80)) (-1551 (($ $ $) 67 (|has| |#1| (-845)))) (-2993 (($ $ $) 66 (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) 89)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 71 (|has| |#1| (-362)))) (-1536 ((|#1| $) 81)) (-3085 ((|#1| $) 82)) (-3332 ((|#1| $) 83)) (-1709 (((-1112) $) 10)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) 95 (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) 94 (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) 93 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) 92 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) 91 (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) 90 (|has| |#1| (-513 (-1168) |#1|)))) (-2343 (($ $ |#1|) 96 (|has| |#1| (-285 |#1| |#1|)))) (-4029 (($ $) 112 (|has| |#1| (-232))) (($ $ (-766)) 110 (|has| |#1| (-232))) (($ $ (-1168)) 108 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 107 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 106 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 105 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 98) (($ $ (-1 |#1| |#1|)) 97)) (-4208 (((-535) $) 72 (|has| |#1| (-610 (-535))))) (-3665 (($ $) 84)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38) (($ (-406 (-562))) 61 (-4037 (|has| |#1| (-362)) (|has| |#1| (-1033 (-406 (-562))))))) (-2805 (((-3 $ "failed") $) 73 (|has| |#1| (-144)))) (-2579 (((-766)) 28)) (-3526 ((|#1| $) 77 (|has| |#1| (-1053)))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $) 111 (|has| |#1| (-232))) (($ $ (-766)) 109 (|has| |#1| (-232))) (($ $ (-1168)) 104 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 103 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 102 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 101 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 100) (($ $ (-1 |#1| |#1|)) 99)) (-1798 (((-112) $ $) 64 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 63 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 65 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 62 (|has| |#1| (-845)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70 (|has| |#1| (-362)))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39) (($ $ (-406 (-562))) 69 (|has| |#1| (-362))) (($ (-406 (-562)) $) 68 (|has| |#1| (-362)))))
+((-4325 (((-112) $) 42)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-3960 (((-562) $) NIL) (((-406 (-562)) $) NIL) ((|#2| $) 43)) (-3913 (((-3 (-406 (-562)) "failed") $) 78)) (-3498 (((-112) $) 72)) (-3854 (((-406 (-562)) $) 76)) (-4367 (((-112) $) 41)) (-4363 ((|#2| $) 22)) (-4152 (($ (-1 |#2| |#2|) $) 19)) (-1525 (($ $) 61)) (-4029 (($ $) NIL) (($ $ (-766)) NIL) (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) 34)) (-4208 (((-535) $) 67)) (-1660 (($ $) 17)) (-4053 (((-857) $) 56) (($ (-562)) 38) (($ |#2|) 36) (($ (-406 (-562))) NIL)) (-1568 (((-766)) 10)) (-2757 ((|#2| $) 71)) (-1733 (((-112) $ $) 25)) (-1761 (((-112) $ $) 69)) (-1847 (($ $) 29) (($ $ $) 28)) (-1836 (($ $ $) 26)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 33) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 30) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL)))
+(((-991 |#1| |#2|) (-10 -8 (-15 -4053 (|#1| (-406 (-562)))) (-15 -1761 ((-112) |#1| |#1|)) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 * (|#1| |#1| (-406 (-562)))) (-15 -1525 (|#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -3913 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3854 ((-406 (-562)) |#1|)) (-15 -3498 ((-112) |#1|)) (-15 -2757 (|#2| |#1|)) (-15 -4363 (|#2| |#1|)) (-15 -1660 (|#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4053 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1568 ((-766))) (-15 -4053 (|#1| (-562))) (-15 -4367 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 -4325 ((-112) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -1836 (|#1| |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -1733 ((-112) |#1| |#1|))) (-992 |#2|) (-171)) (T -991))
+((-1568 (*1 *2) (-12 (-4 *4 (-171)) (-5 *2 (-766)) (-5 *1 (-991 *3 *4)) (-4 *3 (-992 *4)))))
+(-10 -8 (-15 -4053 (|#1| (-406 (-562)))) (-15 -1761 ((-112) |#1| |#1|)) (-15 * (|#1| (-406 (-562)) |#1|)) (-15 * (|#1| |#1| (-406 (-562)))) (-15 -1525 (|#1| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -3913 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3854 ((-406 (-562)) |#1|)) (-15 -3498 ((-112) |#1|)) (-15 -2757 (|#2| |#1|)) (-15 -4363 (|#2| |#1|)) (-15 -1660 (|#1| |#1|)) (-15 -4152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4053 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -1568 ((-766))) (-15 -4053 (|#1| (-562))) (-15 -4367 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 * (|#1| (-766) |#1|)) (-15 -4325 ((-112) |#1|)) (-15 * (|#1| (-916) |#1|)) (-15 -1836 (|#1| |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -1733 ((-112) |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-4048 (((-3 (-562) "failed") $) 118 (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 116 (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) 113)) (-3960 (((-562) $) 117 (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) 115 (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) 114)) (-3449 (((-683 (-562)) (-683 $)) 88 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 87 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 86) (((-683 |#1|) (-683 $)) 85)) (-1694 (((-3 $ "failed") $) 33)) (-1657 ((|#1| $) 78)) (-3913 (((-3 (-406 (-562)) "failed") $) 74 (|has| |#1| (-544)))) (-3498 (((-112) $) 76 (|has| |#1| (-544)))) (-3854 (((-406 (-562)) $) 75 (|has| |#1| (-544)))) (-2487 (($ |#1| |#1| |#1| |#1|) 79)) (-4367 (((-112) $) 31)) (-4363 ((|#1| $) 80)) (-1551 (($ $ $) 67 (|has| |#1| (-845)))) (-2993 (($ $ $) 66 (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) 89)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 71 (|has| |#1| (-362)))) (-1664 ((|#1| $) 81)) (-3966 ((|#1| $) 82)) (-1402 ((|#1| $) 83)) (-1709 (((-1112) $) 10)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) 95 (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) 94 (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) 93 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) 92 (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) 91 (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) 90 (|has| |#1| (-513 (-1168) |#1|)))) (-2343 (($ $ |#1|) 96 (|has| |#1| (-285 |#1| |#1|)))) (-4029 (($ $) 112 (|has| |#1| (-232))) (($ $ (-766)) 110 (|has| |#1| (-232))) (($ $ (-1168)) 108 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 107 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 106 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 105 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 98) (($ $ (-1 |#1| |#1|)) 97)) (-4208 (((-535) $) 72 (|has| |#1| (-610 (-535))))) (-1660 (($ $) 84)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 38) (($ (-406 (-562))) 61 (-4037 (|has| |#1| (-362)) (|has| |#1| (-1033 (-406 (-562))))))) (-2059 (((-3 $ "failed") $) 73 (|has| |#1| (-144)))) (-1568 (((-766)) 28)) (-2757 ((|#1| $) 77 (|has| |#1| (-1053)))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $) 111 (|has| |#1| (-232))) (($ $ (-766)) 109 (|has| |#1| (-232))) (($ $ (-1168)) 104 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 103 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 102 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 101 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 100) (($ $ (-1 |#1| |#1|)) 99)) (-1798 (((-112) $ $) 64 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 63 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 65 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 62 (|has| |#1| (-845)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70 (|has| |#1| (-362)))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 40) (($ |#1| $) 39) (($ $ (-406 (-562))) 69 (|has| |#1| (-362))) (($ (-406 (-562)) $) 68 (|has| |#1| (-362)))))
(((-992 |#1|) (-139) (-171)) (T -992))
-((-3665 (*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-3332 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-3085 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-1536 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-2247 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-2121 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-1657 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-3526 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)) (-4 *2 (-1053)))) (-3035 (*1 *2 *1) (-12 (-4 *1 (-992 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-112)))) (-1291 (*1 *2 *1) (-12 (-4 *1 (-992 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-406 (-562))))) (-1726 (*1 *2 *1) (|partial| -12 (-4 *1 (-992 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-406 (-562))))))
-(-13 (-38 |t#1|) (-410 |t#1|) (-230 |t#1|) (-337 |t#1|) (-376 |t#1|) (-10 -8 (-15 -3665 ($ $)) (-15 -3332 (|t#1| $)) (-15 -3085 (|t#1| $)) (-15 -1536 (|t#1| $)) (-15 -2247 (|t#1| $)) (-15 -2121 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -1657 (|t#1| $)) (IF (|has| |t#1| (-289)) (-6 (-289)) |%noBranch|) (IF (|has| |t#1| (-845)) (-6 (-845)) |%noBranch|) (IF (|has| |t#1| (-362)) (-6 (-242)) |%noBranch|) (IF (|has| |t#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |t#1| (-1053)) (-15 -3526 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-544)) (PROGN (-15 -3035 ((-112) $)) (-15 -1291 ((-406 (-562)) $)) (-15 -1726 ((-3 (-406 (-562)) "failed") $))) |%noBranch|)))
+((-1660 (*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-1402 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-3966 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-1664 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-4363 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-2487 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-1657 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))) (-2757 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)) (-4 *2 (-1053)))) (-3498 (*1 *2 *1) (-12 (-4 *1 (-992 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-112)))) (-3854 (*1 *2 *1) (-12 (-4 *1 (-992 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-406 (-562))))) (-3913 (*1 *2 *1) (|partial| -12 (-4 *1 (-992 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-406 (-562))))))
+(-13 (-38 |t#1|) (-410 |t#1|) (-230 |t#1|) (-337 |t#1|) (-376 |t#1|) (-10 -8 (-15 -1660 ($ $)) (-15 -1402 (|t#1| $)) (-15 -3966 (|t#1| $)) (-15 -1664 (|t#1| $)) (-15 -4363 (|t#1| $)) (-15 -2487 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -1657 (|t#1| $)) (IF (|has| |t#1| (-289)) (-6 (-289)) |%noBranch|) (IF (|has| |t#1| (-845)) (-6 (-845)) |%noBranch|) (IF (|has| |t#1| (-362)) (-6 (-242)) |%noBranch|) (IF (|has| |t#1| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-144)) |%noBranch|) (IF (|has| |t#1| (-1053)) (-15 -2757 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-544)) (PROGN (-15 -3498 ((-112) $)) (-15 -3854 ((-406 (-562)) $)) (-15 -3913 ((-3 (-406 (-562)) "failed") $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) |has| |#1| (-362)) ((-38 |#1|) . T) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-362)) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-362)) (|has| |#1| (-289))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #0#) -4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-362))) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-609 (-857)) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-230 |#1|) . T) ((-232) |has| |#1| (-232)) ((-242) |has| |#1| (-362)) ((-285 |#1| $) |has| |#1| (-285 |#1| |#1|)) ((-289) -4037 (|has| |#1| (-362)) (|has| |#1| (-289))) ((-308 |#1|) |has| |#1| (-308 |#1|)) ((-337 |#1|) . T) ((-376 |#1|) . T) ((-410 |#1|) . T) ((-513 (-1168) |#1|) |has| |#1| (-513 (-1168) |#1|)) ((-513 |#1| |#1|) |has| |#1| (-308 |#1|)) ((-642 #0#) |has| |#1| (-362)) ((-642 |#1|) . T) ((-642 $) . T) ((-635 (-562)) |has| |#1| (-635 (-562))) ((-635 |#1|) . T) ((-712 #0#) |has| |#1| (-362)) ((-712 |#1|) . T) ((-721) . T) ((-845) |has| |#1| (-845)) ((-895 (-1168)) |has| |#1| (-895 (-1168))) ((-1033 (-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 |#1|) . T) ((-1050 #0#) |has| |#1| (-362)) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-362)) (|has| |#1| (-289))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
((-4152 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
(((-993 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4152 (|#3| (-1 |#4| |#2|) |#1|))) (-992 |#2|) (-171) (-992 |#4|) (-171)) (T -993))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-171)) (-4 *6 (-171)) (-4 *2 (-992 *6)) (-5 *1 (-993 *4 *5 *2 *6)) (-4 *4 (-992 *5)))))
(-10 -7 (-15 -4152 (|#3| (-1 |#4| |#2|) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1657 ((|#1| $) 12)) (-1726 (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-544)))) (-3035 (((-112) $) NIL (|has| |#1| (-544)))) (-1291 (((-406 (-562)) $) NIL (|has| |#1| (-544)))) (-2121 (($ |#1| |#1| |#1| |#1|) 16)) (-1957 (((-112) $) NIL)) (-2247 ((|#1| $) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-1536 ((|#1| $) 15)) (-3085 ((|#1| $) 14)) (-3332 ((|#1| $) 13)) (-1709 (((-1112) $) NIL)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) NIL (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-513 (-1168) |#1|)))) (-2343 (($ $ |#1|) NIL (|has| |#1| (-285 |#1| |#1|)))) (-4029 (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-3665 (($ $) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-362)) (|has| |#1| (-1033 (-406 (-562))))))) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-3526 ((|#1| $) NIL (|has| |#1| (-1053)))) (-2286 (($) 8 T CONST)) (-2294 (($) 10 T CONST)) (-3114 (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-362))) (($ (-406 (-562)) $) NIL (|has| |#1| (-362)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1657 ((|#1| $) 12)) (-3913 (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-544)))) (-3498 (((-112) $) NIL (|has| |#1| (-544)))) (-3854 (((-406 (-562)) $) NIL (|has| |#1| (-544)))) (-2487 (($ |#1| |#1| |#1| |#1|) 16)) (-4367 (((-112) $) NIL)) (-4363 ((|#1| $) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-1664 ((|#1| $) 15)) (-3966 ((|#1| $) 14)) (-1402 ((|#1| $) 13)) (-1709 (((-1112) $) NIL)) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-308 |#1|))) (($ $ (-293 |#1|)) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-293 |#1|))) NIL (|has| |#1| (-308 |#1|))) (($ $ (-639 (-1168)) (-639 |#1|)) NIL (|has| |#1| (-513 (-1168) |#1|))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-513 (-1168) |#1|)))) (-2343 (($ $ |#1|) NIL (|has| |#1| (-285 |#1| |#1|)))) (-4029 (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-1660 (($ $) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-362)) (|has| |#1| (-1033 (-406 (-562))))))) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-2757 ((|#1| $) NIL (|has| |#1| (-1053)))) (-2285 (($) 8 T CONST)) (-2294 (($) 10 T CONST)) (-3113 (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-362))) (($ (-406 (-562)) $) NIL (|has| |#1| (-362)))))
(((-994 |#1|) (-992 |#1|) (-171)) (T -994))
NIL
(-992 |#1|)
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-4336 (((-112) $ (-766)) NIL)) (-1800 (($) NIL T CONST)) (-3109 (($ $) 20)) (-3324 (($ (-639 |#1|)) 29)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-3641 (((-766) $) 22)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3262 ((|#1| $) 24)) (-4300 (($ |#1| $) 15)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3516 ((|#1| $) 23)) (-1904 ((|#1| $) 19)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2391 ((|#1| |#1| $) 14)) (-2974 (((-112) $) 17)) (-4307 (($) NIL)) (-3872 ((|#1| $) 18)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1932 (($ (-639 |#1|)) NIL)) (-3686 ((|#1| $) 26)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-995 |#1|) (-13 (-990 |#1|) (-10 -8 (-15 -3324 ($ (-639 |#1|))))) (-1092)) (T -995))
-((-3324 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-995 *3)))))
-(-13 (-990 |#1|) (-10 -8 (-15 -3324 ($ (-639 |#1|)))))
-((-1643 (($ $) 12)) (-1891 (($ $ (-562)) 13)))
-(((-996 |#1|) (-10 -8 (-15 -1643 (|#1| |#1|)) (-15 -1891 (|#1| |#1| (-562)))) (-997)) (T -996))
-NIL
-(-10 -8 (-15 -1643 (|#1| |#1|)) (-15 -1891 (|#1| |#1| (-562))))
-((-1643 (($ $) 6)) (-1891 (($ $ (-562)) 7)) (** (($ $ (-406 (-562))) 8)))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3735 (((-112) $ (-766)) NIL)) (-3329 (($) NIL T CONST)) (-2953 (($ $) 20)) (-1346 (($ (-639 |#1|)) 29)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3641 (((-766) $) 22)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-2078 ((|#1| $) 24)) (-1581 (($ |#1| $) 15)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2662 ((|#1| $) 23)) (-2038 ((|#1| $) 19)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3297 ((|#1| |#1| $) 14)) (-3087 (((-112) $) 17)) (-1663 (($) NIL)) (-1903 ((|#1| $) 18)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-4131 (($ (-639 |#1|)) NIL)) (-3690 ((|#1| $) 26)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-995 |#1|) (-13 (-990 |#1|) (-10 -8 (-15 -1346 ($ (-639 |#1|))))) (-1092)) (T -995))
+((-1346 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-995 *3)))))
+(-13 (-990 |#1|) (-10 -8 (-15 -1346 ($ (-639 |#1|)))))
+((-1644 (($ $) 12)) (-1895 (($ $ (-562)) 13)))
+(((-996 |#1|) (-10 -8 (-15 -1644 (|#1| |#1|)) (-15 -1895 (|#1| |#1| (-562)))) (-997)) (T -996))
+NIL
+(-10 -8 (-15 -1644 (|#1| |#1|)) (-15 -1895 (|#1| |#1| (-562))))
+((-1644 (($ $) 6)) (-1895 (($ $ (-562)) 7)) (** (($ $ (-406 (-562))) 8)))
(((-997) (-139)) (T -997))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-997)) (-5 *2 (-406 (-562))))) (-1891 (*1 *1 *1 *2) (-12 (-4 *1 (-997)) (-5 *2 (-562)))) (-1643 (*1 *1 *1) (-4 *1 (-997))))
-(-13 (-10 -8 (-15 -1643 ($ $)) (-15 -1891 ($ $ (-562))) (-15 ** ($ $ (-406 (-562))))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3971 (((-2 (|:| |num| (-1256 |#2|)) (|:| |den| |#2|)) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| (-406 |#2|) (-362)))) (-2796 (($ $) NIL (|has| (-406 |#2|) (-362)))) (-4370 (((-112) $) NIL (|has| (-406 |#2|) (-362)))) (-1636 (((-683 (-406 |#2|)) (-1256 $)) NIL) (((-683 (-406 |#2|))) NIL)) (-1748 (((-406 |#2|) $) NIL)) (-3984 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-406 |#2|) (-348)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL (|has| (-406 |#2|) (-362)))) (-2921 (((-417 $) $) NIL (|has| (-406 |#2|) (-362)))) (-2569 (((-112) $ $) NIL (|has| (-406 |#2|) (-362)))) (-1382 (((-766)) NIL (|has| (-406 |#2|) (-367)))) (-2083 (((-112)) NIL)) (-3797 (((-112) |#1|) 148) (((-112) |#2|) 153)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| (-406 |#2|) (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-406 |#2|) (-1033 (-406 (-562))))) (((-3 (-406 |#2|) "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| (-406 |#2|) (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| (-406 |#2|) (-1033 (-406 (-562))))) (((-406 |#2|) $) NIL)) (-4018 (($ (-1256 (-406 |#2|)) (-1256 $)) NIL) (($ (-1256 (-406 |#2|))) 70) (($ (-1256 |#2|) |#2|) NIL)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-406 |#2|) (-348)))) (-1811 (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-1958 (((-683 (-406 |#2|)) $ (-1256 $)) NIL) (((-683 (-406 |#2|)) $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| (-406 |#2|) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-406 |#2|) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-406 |#2|))) (|:| |vec| (-1256 (-406 |#2|)))) (-683 $) (-1256 $)) NIL) (((-683 (-406 |#2|)) (-683 $)) NIL)) (-2435 (((-1256 $) (-1256 $)) NIL)) (-1955 (($ |#3|) 65) (((-3 $ "failed") (-406 |#3|)) NIL (|has| (-406 |#2|) (-362)))) (-3668 (((-3 $ "failed") $) NIL)) (-2753 (((-639 (-639 |#1|))) NIL (|has| |#1| (-367)))) (-1877 (((-112) |#1| |#1|) NIL)) (-2173 (((-916)) NIL)) (-1448 (($) NIL (|has| (-406 |#2|) (-367)))) (-4240 (((-112)) NIL)) (-2792 (((-112) |#1|) 56) (((-112) |#2|) 150)) (-1787 (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| (-406 |#2|) (-362)))) (-1498 (($ $) NIL)) (-3529 (($) NIL (|has| (-406 |#2|) (-348)))) (-1322 (((-112) $) NIL (|has| (-406 |#2|) (-348)))) (-3589 (($ $ (-766)) NIL (|has| (-406 |#2|) (-348))) (($ $) NIL (|has| (-406 |#2|) (-348)))) (-2717 (((-112) $) NIL (|has| (-406 |#2|) (-362)))) (-1900 (((-916) $) NIL (|has| (-406 |#2|) (-348))) (((-828 (-916)) $) NIL (|has| (-406 |#2|) (-348)))) (-1957 (((-112) $) NIL)) (-3684 (((-766)) NIL)) (-2142 (((-1256 $) (-1256 $)) NIL)) (-2247 (((-406 |#2|) $) NIL)) (-1336 (((-639 (-947 |#1|)) (-1168)) NIL (|has| |#1| (-362)))) (-3699 (((-3 $ "failed") $) NIL (|has| (-406 |#2|) (-348)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| (-406 |#2|) (-362)))) (-1565 ((|#3| $) NIL (|has| (-406 |#2|) (-362)))) (-1999 (((-916) $) NIL (|has| (-406 |#2|) (-367)))) (-1943 ((|#3| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| (-406 |#2|) (-362))) (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-2913 (((-1150) $) NIL)) (-2452 (((-683 (-406 |#2|))) 52)) (-4245 (((-683 (-406 |#2|))) 51)) (-1525 (($ $) NIL (|has| (-406 |#2|) (-362)))) (-2679 (($ (-1256 |#2|) |#2|) 71)) (-2696 (((-683 (-406 |#2|))) 50)) (-3933 (((-683 (-406 |#2|))) 49)) (-2979 (((-2 (|:| |num| (-683 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 86)) (-4270 (((-2 (|:| |num| (-1256 |#2|)) (|:| |den| |#2|)) $) 77)) (-2980 (((-1256 $)) 46)) (-3826 (((-1256 $)) 45)) (-4346 (((-112) $) NIL)) (-2472 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-3729 (($) NIL (|has| (-406 |#2|) (-348)) CONST)) (-2466 (($ (-916)) NIL (|has| (-406 |#2|) (-367)))) (-2676 (((-3 |#2| "failed")) 63)) (-1709 (((-1112) $) NIL)) (-2116 (((-766)) NIL)) (-3148 (($) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| (-406 |#2|) (-362)))) (-1606 (($ (-639 $)) NIL (|has| (-406 |#2|) (-362))) (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL (|has| (-406 |#2|) (-348)))) (-1635 (((-417 $) $) NIL (|has| (-406 |#2|) (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-406 |#2|) (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| (-406 |#2|) (-362)))) (-1762 (((-3 $ "failed") $ $) NIL (|has| (-406 |#2|) (-362)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| (-406 |#2|) (-362)))) (-1577 (((-766) $) NIL (|has| (-406 |#2|) (-362)))) (-2343 ((|#1| $ |#1| |#1|) NIL)) (-3441 (((-3 |#2| "failed")) 62)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| (-406 |#2|) (-362)))) (-2455 (((-406 |#2|) (-1256 $)) NIL) (((-406 |#2|)) 42)) (-3362 (((-766) $) NIL (|has| (-406 |#2|) (-348))) (((-3 (-766) "failed") $ $) NIL (|has| (-406 |#2|) (-348)))) (-4029 (($ $ (-1 (-406 |#2|) (-406 |#2|)) (-766)) NIL (|has| (-406 |#2|) (-362))) (($ $ (-1 (-406 |#2|) (-406 |#2|))) NIL (|has| (-406 |#2|) (-362))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-766)) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348)))) (($ $) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348))))) (-3187 (((-683 (-406 |#2|)) (-1256 $) (-1 (-406 |#2|) (-406 |#2|))) NIL (|has| (-406 |#2|) (-362)))) (-2096 ((|#3|) 53)) (-2283 (($) NIL (|has| (-406 |#2|) (-348)))) (-3593 (((-1256 (-406 |#2|)) $ (-1256 $)) NIL) (((-683 (-406 |#2|)) (-1256 $) (-1256 $)) NIL) (((-1256 (-406 |#2|)) $) 72) (((-683 (-406 |#2|)) (-1256 $)) NIL)) (-4208 (((-1256 (-406 |#2|)) $) NIL) (($ (-1256 (-406 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| (-406 |#2|) (-348)))) (-1624 (((-1256 $) (-1256 $)) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 |#2|)) NIL) (($ (-406 (-562))) NIL (-4037 (|has| (-406 |#2|) (-1033 (-406 (-562)))) (|has| (-406 |#2|) (-362)))) (($ $) NIL (|has| (-406 |#2|) (-362)))) (-2805 (($ $) NIL (|has| (-406 |#2|) (-348))) (((-3 $ "failed") $) NIL (|has| (-406 |#2|) (-144)))) (-3376 ((|#3| $) NIL)) (-2579 (((-766)) NIL)) (-1946 (((-112)) 60)) (-1719 (((-112) |#1|) 154) (((-112) |#2|) 155)) (-3928 (((-1256 $)) 125)) (-2922 (((-112) $ $) NIL (|has| (-406 |#2|) (-362)))) (-4193 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2386 (((-112)) NIL)) (-2286 (($) 94 T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-1 (-406 |#2|) (-406 |#2|)) (-766)) NIL (|has| (-406 |#2|) (-362))) (($ $ (-1 (-406 |#2|) (-406 |#2|))) NIL (|has| (-406 |#2|) (-362))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-766)) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348)))) (($ $) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348))))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| (-406 |#2|) (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 |#2|)) NIL) (($ (-406 |#2|) $) NIL) (($ (-406 (-562)) $) NIL (|has| (-406 |#2|) (-362))) (($ $ (-406 (-562))) NIL (|has| (-406 |#2|) (-362)))))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-997)) (-5 *2 (-406 (-562))))) (-1895 (*1 *1 *1 *2) (-12 (-4 *1 (-997)) (-5 *2 (-562)))) (-1644 (*1 *1 *1) (-4 *1 (-997))))
+(-13 (-10 -8 (-15 -1644 ($ $)) (-15 -1895 ($ $ (-562))) (-15 ** ($ $ (-406 (-562))))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1631 (((-2 (|:| |num| (-1256 |#2|)) (|:| |den| |#2|)) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| (-406 |#2|) (-362)))) (-1965 (($ $) NIL (|has| (-406 |#2|) (-362)))) (-4102 (((-112) $) NIL (|has| (-406 |#2|) (-362)))) (-4342 (((-683 (-406 |#2|)) (-1256 $)) NIL) (((-683 (-406 |#2|))) NIL)) (-1748 (((-406 |#2|) $) NIL)) (-1755 (((-1180 (-916) (-766)) (-562)) NIL (|has| (-406 |#2|) (-348)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL (|has| (-406 |#2|) (-362)))) (-3788 (((-417 $) $) NIL (|has| (-406 |#2|) (-362)))) (-1436 (((-112) $ $) NIL (|has| (-406 |#2|) (-362)))) (-1382 (((-766)) NIL (|has| (-406 |#2|) (-367)))) (-3236 (((-112)) NIL)) (-3520 (((-112) |#1|) 148) (((-112) |#2|) 153)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| (-406 |#2|) (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-406 |#2|) (-1033 (-406 (-562))))) (((-3 (-406 |#2|) "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| (-406 |#2|) (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| (-406 |#2|) (-1033 (-406 (-562))))) (((-406 |#2|) $) NIL)) (-3916 (($ (-1256 (-406 |#2|)) (-1256 $)) NIL) (($ (-1256 (-406 |#2|))) 70) (($ (-1256 |#2|) |#2|) NIL)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-406 |#2|) (-348)))) (-1810 (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-4376 (((-683 (-406 |#2|)) $ (-1256 $)) NIL) (((-683 (-406 |#2|)) $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| (-406 |#2|) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-406 |#2|) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-406 |#2|))) (|:| |vec| (-1256 (-406 |#2|)))) (-683 $) (-1256 $)) NIL) (((-683 (-406 |#2|)) (-683 $)) NIL)) (-2575 (((-1256 $) (-1256 $)) NIL)) (-1954 (($ |#3|) 65) (((-3 $ "failed") (-406 |#3|)) NIL (|has| (-406 |#2|) (-362)))) (-1694 (((-3 $ "failed") $) NIL)) (-2713 (((-639 (-639 |#1|))) NIL (|has| |#1| (-367)))) (-1718 (((-112) |#1| |#1|) NIL)) (-2172 (((-916)) NIL)) (-1447 (($) NIL (|has| (-406 |#2|) (-367)))) (-2241 (((-112)) NIL)) (-1912 (((-112) |#1|) 56) (((-112) |#2|) 150)) (-1787 (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| (-406 |#2|) (-362)))) (-2578 (($ $) NIL)) (-2787 (($) NIL (|has| (-406 |#2|) (-348)))) (-1844 (((-112) $) NIL (|has| (-406 |#2|) (-348)))) (-2184 (($ $ (-766)) NIL (|has| (-406 |#2|) (-348))) (($ $) NIL (|has| (-406 |#2|) (-348)))) (-3521 (((-112) $) NIL (|has| (-406 |#2|) (-362)))) (-1993 (((-916) $) NIL (|has| (-406 |#2|) (-348))) (((-828 (-916)) $) NIL (|has| (-406 |#2|) (-348)))) (-4367 (((-112) $) NIL)) (-3668 (((-766)) NIL)) (-2700 (((-1256 $) (-1256 $)) NIL)) (-4363 (((-406 |#2|) $) NIL)) (-2004 (((-639 (-947 |#1|)) (-1168)) NIL (|has| |#1| (-362)))) (-3828 (((-3 $ "failed") $) NIL (|has| (-406 |#2|) (-348)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| (-406 |#2|) (-362)))) (-1937 ((|#3| $) NIL (|has| (-406 |#2|) (-362)))) (-3549 (((-916) $) NIL (|has| (-406 |#2|) (-367)))) (-1942 ((|#3| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| (-406 |#2|) (-362))) (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-3696 (((-1150) $) NIL)) (-2715 (((-683 (-406 |#2|))) 52)) (-2289 (((-683 (-406 |#2|))) 51)) (-1525 (($ $) NIL (|has| (-406 |#2|) (-362)))) (-3174 (($ (-1256 |#2|) |#2|) 71)) (-3324 (((-683 (-406 |#2|))) 50)) (-4335 (((-683 (-406 |#2|))) 49)) (-3128 (((-2 (|:| |num| (-683 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 86)) (-4329 (((-2 (|:| |num| (-1256 |#2|)) (|:| |den| |#2|)) $) 77)) (-3137 (((-1256 $)) 46)) (-2639 (((-1256 $)) 45)) (-3841 (((-112) $) NIL)) (-2881 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-3730 (($) NIL (|has| (-406 |#2|) (-348)) CONST)) (-2464 (($ (-916)) NIL (|has| (-406 |#2|) (-367)))) (-3153 (((-3 |#2| "failed")) 63)) (-1709 (((-1112) $) NIL)) (-2435 (((-766)) NIL)) (-3147 (($) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| (-406 |#2|) (-362)))) (-1606 (($ (-639 $)) NIL (|has| (-406 |#2|) (-362))) (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL (|has| (-406 |#2|) (-348)))) (-1635 (((-417 $) $) NIL (|has| (-406 |#2|) (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-406 |#2|) (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| (-406 |#2|) (-362)))) (-1762 (((-3 $ "failed") $ $) NIL (|has| (-406 |#2|) (-362)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| (-406 |#2|) (-362)))) (-2044 (((-766) $) NIL (|has| (-406 |#2|) (-362)))) (-2343 ((|#1| $ |#1| |#1|) NIL)) (-3092 (((-3 |#2| "failed")) 62)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| (-406 |#2|) (-362)))) (-2736 (((-406 |#2|) (-1256 $)) NIL) (((-406 |#2|)) 42)) (-3543 (((-766) $) NIL (|has| (-406 |#2|) (-348))) (((-3 (-766) "failed") $ $) NIL (|has| (-406 |#2|) (-348)))) (-4029 (($ $ (-1 (-406 |#2|) (-406 |#2|)) (-766)) NIL (|has| (-406 |#2|) (-362))) (($ $ (-1 (-406 |#2|) (-406 |#2|))) NIL (|has| (-406 |#2|) (-362))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-766)) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348)))) (($ $) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348))))) (-2539 (((-683 (-406 |#2|)) (-1256 $) (-1 (-406 |#2|) (-406 |#2|))) NIL (|has| (-406 |#2|) (-362)))) (-3371 ((|#3|) 53)) (-1653 (($) NIL (|has| (-406 |#2|) (-348)))) (-2205 (((-1256 (-406 |#2|)) $ (-1256 $)) NIL) (((-683 (-406 |#2|)) (-1256 $) (-1256 $)) NIL) (((-1256 (-406 |#2|)) $) 72) (((-683 (-406 |#2|)) (-1256 $)) NIL)) (-4208 (((-1256 (-406 |#2|)) $) NIL) (($ (-1256 (-406 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| (-406 |#2|) (-348)))) (-4240 (((-1256 $) (-1256 $)) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 |#2|)) NIL) (($ (-406 (-562))) NIL (-4037 (|has| (-406 |#2|) (-1033 (-406 (-562)))) (|has| (-406 |#2|) (-362)))) (($ $) NIL (|has| (-406 |#2|) (-362)))) (-2059 (($ $) NIL (|has| (-406 |#2|) (-348))) (((-3 $ "failed") $) NIL (|has| (-406 |#2|) (-144)))) (-3683 ((|#3| $) NIL)) (-1568 (((-766)) NIL)) (-4266 (((-112)) 60)) (-3866 (((-112) |#1|) 154) (((-112) |#2|) 155)) (-4291 (((-1256 $)) 125)) (-3799 (((-112) $ $) NIL (|has| (-406 |#2|) (-362)))) (-2960 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-3243 (((-112)) NIL)) (-2285 (($) 94 T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-1 (-406 |#2|) (-406 |#2|)) (-766)) NIL (|has| (-406 |#2|) (-362))) (($ $ (-1 (-406 |#2|) (-406 |#2|))) NIL (|has| (-406 |#2|) (-362))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| (-406 |#2|) (-362)) (|has| (-406 |#2|) (-895 (-1168))))) (($ $ (-766)) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348)))) (($ $) NIL (-4037 (-12 (|has| (-406 |#2|) (-232)) (|has| (-406 |#2|) (-362))) (|has| (-406 |#2|) (-348))))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ $) NIL (|has| (-406 |#2|) (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| (-406 |#2|) (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 |#2|)) NIL) (($ (-406 |#2|) $) NIL) (($ (-406 (-562)) $) NIL (|has| (-406 |#2|) (-362))) (($ $ (-406 (-562))) NIL (|has| (-406 |#2|) (-362)))))
(((-998 |#1| |#2| |#3| |#4| |#5|) (-341 |#1| |#2| |#3|) (-1211) (-1232 |#1|) (-1232 (-406 |#2|)) (-406 |#2|) (-766)) (T -998))
NIL
(-341 |#1| |#2| |#3|)
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3979 (((-639 (-562)) $) 54)) (-4128 (($ (-639 (-562))) 62)) (-4246 (((-562) $) 40 (|has| (-562) (-306)))) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL (|has| (-562) (-815)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) 49) (((-3 (-1168) "failed") $) NIL (|has| (-562) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) 47 (|has| (-562) (-1033 (-562)))) (((-3 (-562) "failed") $) 49 (|has| (-562) (-1033 (-562))))) (-3961 (((-562) $) NIL) (((-1168) $) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-562) (-1033 (-562)))) (((-562) $) NIL (|has| (-562) (-1033 (-562))))) (-1811 (($ $ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1448 (($) NIL (|has| (-562) (-544)))) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-2826 (((-639 (-562)) $) 60)) (-3519 (((-112) $) NIL (|has| (-562) (-815)))) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-562) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-562) (-881 (-378))))) (-1957 (((-112) $) NIL)) (-3425 (($ $) NIL)) (-4065 (((-562) $) 37)) (-3699 (((-3 $ "failed") $) NIL (|has| (-562) (-1143)))) (-3392 (((-112) $) NIL (|has| (-562) (-815)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-562) (-845)))) (-4152 (($ (-1 (-562) (-562)) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3729 (($) NIL (|has| (-562) (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2736 (($ $) NIL (|has| (-562) (-306))) (((-406 (-562)) $) 42)) (-4285 (((-1148 (-562)) $) 59)) (-1306 (($ (-639 (-562)) (-639 (-562))) 63)) (-4014 (((-562) $) 53 (|has| (-562) (-544)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1635 (((-417 $) $) NIL)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-562)) (-639 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-562) (-562)) NIL (|has| (-562) (-308 (-562)))) (($ $ (-293 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-293 (-562)))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-1168)) (-639 (-562))) NIL (|has| (-562) (-513 (-1168) (-562)))) (($ $ (-1168) (-562)) NIL (|has| (-562) (-513 (-1168) (-562))))) (-1577 (((-766) $) NIL)) (-2343 (($ $ (-562)) NIL (|has| (-562) (-285 (-562) (-562))))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4029 (($ $) 11 (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-3658 (($ $) NIL)) (-4076 (((-562) $) 39)) (-3157 (((-639 (-562)) $) 61)) (-4208 (((-887 (-562)) $) NIL (|has| (-562) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-562) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-562) (-610 (-535)))) (((-378) $) NIL (|has| (-562) (-1017))) (((-224) $) NIL (|has| (-562) (-1017)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-562) (-904))))) (-4054 (((-857) $) 77) (($ (-562)) 43) (($ $) NIL) (($ (-406 (-562))) 20) (($ (-562)) 43) (($ (-1168)) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) 18)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-562) (-904))) (|has| (-562) (-144))))) (-2579 (((-766)) 9)) (-2604 (((-562) $) 51 (|has| (-562) (-544)))) (-2922 (((-112) $ $) NIL)) (-3526 (($ $) NIL (|has| (-562) (-815)))) (-2286 (($) 10 T CONST)) (-2294 (($) 12 T CONST)) (-3114 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1772 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1731 (((-112) $ $) 14)) (-1785 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1759 (((-112) $ $) 33 (|has| (-562) (-845)))) (-1859 (($ $ $) 29) (($ (-562) (-562)) 31)) (-1848 (($ $) 15) (($ $ $) 23)) (-1835 (($ $ $) 21)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 25) (($ $ $) 27) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-562) $) 25) (($ $ (-562)) NIL)))
-(((-999 |#1|) (-13 (-987 (-562)) (-609 (-406 (-562))) (-10 -8 (-15 -2736 ((-406 (-562)) $)) (-15 -3979 ((-639 (-562)) $)) (-15 -4285 ((-1148 (-562)) $)) (-15 -2826 ((-639 (-562)) $)) (-15 -3157 ((-639 (-562)) $)) (-15 -4128 ($ (-639 (-562)))) (-15 -1306 ($ (-639 (-562)) (-639 (-562)))))) (-562)) (T -999))
-((-2736 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))) (-3979 (*1 *2 *1) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))) (-4285 (*1 *2 *1) (-12 (-5 *2 (-1148 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))) (-2826 (*1 *2 *1) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))) (-3157 (*1 *2 *1) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))) (-4128 (*1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))) (-1306 (*1 *1 *2 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
-(-13 (-987 (-562)) (-609 (-406 (-562))) (-10 -8 (-15 -2736 ((-406 (-562)) $)) (-15 -3979 ((-639 (-562)) $)) (-15 -4285 ((-1148 (-562)) $)) (-15 -2826 ((-639 (-562)) $)) (-15 -3157 ((-639 (-562)) $)) (-15 -4128 ($ (-639 (-562)))) (-15 -1306 ($ (-639 (-562)) (-639 (-562))))))
-((-2480 (((-52) (-406 (-562)) (-562)) 9)))
-(((-1000) (-10 -7 (-15 -2480 ((-52) (-406 (-562)) (-562))))) (T -1000))
-((-2480 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-562))) (-5 *4 (-562)) (-5 *2 (-52)) (-5 *1 (-1000)))))
-(-10 -7 (-15 -2480 ((-52) (-406 (-562)) (-562))))
-((-1382 (((-562)) 13)) (-2535 (((-562)) 16)) (-1668 (((-1261) (-562)) 15)) (-2183 (((-562) (-562)) 17) (((-562)) 12)))
-(((-1001) (-10 -7 (-15 -2183 ((-562))) (-15 -1382 ((-562))) (-15 -2183 ((-562) (-562))) (-15 -1668 ((-1261) (-562))) (-15 -2535 ((-562))))) (T -1001))
-((-2535 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001)))) (-1668 (*1 *2 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1001)))) (-2183 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001)))) (-1382 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001)))) (-2183 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001)))))
-(-10 -7 (-15 -2183 ((-562))) (-15 -1382 ((-562))) (-15 -2183 ((-562) (-562))) (-15 -1668 ((-1261) (-562))) (-15 -2535 ((-562))))
-((-3696 (((-417 |#1|) |#1|) 41)) (-1635 (((-417 |#1|) |#1|) 40)))
-(((-1002 |#1|) (-10 -7 (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3696 ((-417 |#1|) |#1|))) (-1232 (-406 (-562)))) (T -1002))
-((-3696 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-1002 *3)) (-4 *3 (-1232 (-406 (-562)))))) (-1635 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-1002 *3)) (-4 *3 (-1232 (-406 (-562)))))))
-(-10 -7 (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3696 ((-417 |#1|) |#1|)))
-((-1726 (((-3 (-406 (-562)) "failed") |#1|) 15)) (-3035 (((-112) |#1|) 14)) (-1291 (((-406 (-562)) |#1|) 10)))
-(((-1003 |#1|) (-10 -7 (-15 -1291 ((-406 (-562)) |#1|)) (-15 -3035 ((-112) |#1|)) (-15 -1726 ((-3 (-406 (-562)) "failed") |#1|))) (-1033 (-406 (-562)))) (T -1003))
-((-1726 (*1 *2 *3) (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-1003 *3)) (-4 *3 (-1033 *2)))) (-3035 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1003 *3)) (-4 *3 (-1033 (-406 (-562)))))) (-1291 (*1 *2 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-1003 *3)) (-4 *3 (-1033 *2)))))
-(-10 -7 (-15 -1291 ((-406 (-562)) |#1|)) (-15 -3035 ((-112) |#1|)) (-15 -1726 ((-3 (-406 (-562)) "failed") |#1|)))
-((-4200 ((|#2| $ "value" |#2|) 12)) (-2343 ((|#2| $ "value") 10)) (-4055 (((-112) $ $) 18)))
-(((-1004 |#1| |#2|) (-10 -8 (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -4055 ((-112) |#1| |#1|)) (-15 -2343 (|#2| |#1| "value"))) (-1005 |#2|) (-1207)) (T -1004))
-NIL
-(-10 -8 (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -4055 ((-112) |#1| |#1|)) (-15 -2343 (|#2| |#1| "value")))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2534 ((|#1| $) 48)) (-4336 (((-112) $ (-766)) 8)) (-1512 ((|#1| $ |#1|) 39 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) 41 (|has| $ (-6 -4403)))) (-1800 (($) 7 T CONST)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) 50)) (-4379 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-4007 (((-639 |#1|) $) 45)) (-3449 (((-112) $) 49)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ "value") 47)) (-2568 (((-562) $ $) 44)) (-2424 (((-112) $) 46)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) 51)) (-4055 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1715 (((-639 (-562)) $) 54)) (-2484 (($ (-639 (-562))) 62)) (-2300 (((-562) $) 40 (|has| (-562) (-306)))) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL (|has| (-562) (-815)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) 49) (((-3 (-1168) "failed") $) NIL (|has| (-562) (-1033 (-1168)))) (((-3 (-406 (-562)) "failed") $) 47 (|has| (-562) (-1033 (-562)))) (((-3 (-562) "failed") $) 49 (|has| (-562) (-1033 (-562))))) (-3960 (((-562) $) NIL) (((-1168) $) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) NIL (|has| (-562) (-1033 (-562)))) (((-562) $) NIL (|has| (-562) (-1033 (-562))))) (-1810 (($ $ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| (-562) (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1447 (($) NIL (|has| (-562) (-544)))) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2265 (((-639 (-562)) $) 60)) (-2696 (((-112) $) NIL (|has| (-562) (-815)))) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (|has| (-562) (-881 (-562)))) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (|has| (-562) (-881 (-378))))) (-4367 (((-112) $) NIL)) (-2957 (($ $) NIL)) (-4063 (((-562) $) 37)) (-3828 (((-3 $ "failed") $) NIL (|has| (-562) (-1143)))) (-3855 (((-112) $) NIL (|has| (-562) (-815)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-562) (-845)))) (-4152 (($ (-1 (-562) (-562)) $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL)) (-3730 (($) NIL (|has| (-562) (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2561 (($ $) NIL (|has| (-562) (-306))) (((-406 (-562)) $) 42)) (-1386 (((-1148 (-562)) $) 59)) (-1647 (($ (-639 (-562)) (-639 (-562))) 63)) (-3870 (((-562) $) 53 (|has| (-562) (-544)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| (-562) (-904)))) (-1635 (((-417 $) $) NIL)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1433 (($ $ (-639 (-562)) (-639 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-562) (-562)) NIL (|has| (-562) (-308 (-562)))) (($ $ (-293 (-562))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-293 (-562)))) NIL (|has| (-562) (-308 (-562)))) (($ $ (-639 (-1168)) (-639 (-562))) NIL (|has| (-562) (-513 (-1168) (-562)))) (($ $ (-1168) (-562)) NIL (|has| (-562) (-513 (-1168) (-562))))) (-2044 (((-766) $) NIL)) (-2343 (($ $ (-562)) NIL (|has| (-562) (-285 (-562) (-562))))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4029 (($ $) 11 (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-1580 (($ $) NIL)) (-4079 (((-562) $) 39)) (-3412 (((-639 (-562)) $) 61)) (-4208 (((-887 (-562)) $) NIL (|has| (-562) (-610 (-887 (-562))))) (((-887 (-378)) $) NIL (|has| (-562) (-610 (-887 (-378))))) (((-535) $) NIL (|has| (-562) (-610 (-535)))) (((-378) $) NIL (|has| (-562) (-1017))) (((-224) $) NIL (|has| (-562) (-1017)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-562) (-904))))) (-4053 (((-857) $) 77) (($ (-562)) 43) (($ $) NIL) (($ (-406 (-562))) 20) (($ (-562)) 43) (($ (-1168)) NIL (|has| (-562) (-1033 (-1168)))) (((-406 (-562)) $) 18)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-562) (-904))) (|has| (-562) (-144))))) (-1568 (((-766)) 9)) (-3636 (((-562) $) 51 (|has| (-562) (-544)))) (-3799 (((-112) $ $) NIL)) (-2757 (($ $) NIL (|has| (-562) (-815)))) (-2285 (($) 10 T CONST)) (-2294 (($) 12 T CONST)) (-3113 (($ $) NIL (|has| (-562) (-232))) (($ $ (-766)) NIL (|has| (-562) (-232))) (($ $ (-1168)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| (-562) (-895 (-1168)))) (($ $ (-1 (-562) (-562)) (-766)) NIL) (($ $ (-1 (-562) (-562))) NIL)) (-1798 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1771 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1733 (((-112) $ $) 14)) (-1785 (((-112) $ $) NIL (|has| (-562) (-845)))) (-1761 (((-112) $ $) 33 (|has| (-562) (-845)))) (-1859 (($ $ $) 29) (($ (-562) (-562)) 31)) (-1847 (($ $) 15) (($ $ $) 23)) (-1836 (($ $ $) 21)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 25) (($ $ $) 27) (($ $ (-406 (-562))) NIL) (($ (-406 (-562)) $) NIL) (($ (-562) $) 25) (($ $ (-562)) NIL)))
+(((-999 |#1|) (-13 (-987 (-562)) (-609 (-406 (-562))) (-10 -8 (-15 -2561 ((-406 (-562)) $)) (-15 -1715 ((-639 (-562)) $)) (-15 -1386 ((-1148 (-562)) $)) (-15 -2265 ((-639 (-562)) $)) (-15 -3412 ((-639 (-562)) $)) (-15 -2484 ($ (-639 (-562)))) (-15 -1647 ($ (-639 (-562)) (-639 (-562)))))) (-562)) (T -999))
+((-2561 (*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))) (-1715 (*1 *2 *1) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))) (-1386 (*1 *2 *1) (-12 (-5 *2 (-1148 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))) (-2265 (*1 *2 *1) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))) (-3412 (*1 *2 *1) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))) (-2484 (*1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))) (-1647 (*1 *1 *2 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
+(-13 (-987 (-562)) (-609 (-406 (-562))) (-10 -8 (-15 -2561 ((-406 (-562)) $)) (-15 -1715 ((-639 (-562)) $)) (-15 -1386 ((-1148 (-562)) $)) (-15 -2265 ((-639 (-562)) $)) (-15 -3412 ((-639 (-562)) $)) (-15 -2484 ($ (-639 (-562)))) (-15 -1647 ($ (-639 (-562)) (-639 (-562))))))
+((-1800 (((-52) (-406 (-562)) (-562)) 9)))
+(((-1000) (-10 -7 (-15 -1800 ((-52) (-406 (-562)) (-562))))) (T -1000))
+((-1800 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-562))) (-5 *4 (-562)) (-5 *2 (-52)) (-5 *1 (-1000)))))
+(-10 -7 (-15 -1800 ((-52) (-406 (-562)) (-562))))
+((-1382 (((-562)) 13)) (-2347 (((-562)) 16)) (-1559 (((-1261) (-562)) 15)) (-1915 (((-562) (-562)) 17) (((-562)) 12)))
+(((-1001) (-10 -7 (-15 -1915 ((-562))) (-15 -1382 ((-562))) (-15 -1915 ((-562) (-562))) (-15 -1559 ((-1261) (-562))) (-15 -2347 ((-562))))) (T -1001))
+((-2347 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001)))) (-1559 (*1 *2 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1001)))) (-1915 (*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001)))) (-1382 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001)))) (-1915 (*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001)))))
+(-10 -7 (-15 -1915 ((-562))) (-15 -1382 ((-562))) (-15 -1915 ((-562) (-562))) (-15 -1559 ((-1261) (-562))) (-15 -2347 ((-562))))
+((-3805 (((-417 |#1|) |#1|) 41)) (-1635 (((-417 |#1|) |#1|) 40)))
+(((-1002 |#1|) (-10 -7 (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3805 ((-417 |#1|) |#1|))) (-1232 (-406 (-562)))) (T -1002))
+((-3805 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-1002 *3)) (-4 *3 (-1232 (-406 (-562)))))) (-1635 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-1002 *3)) (-4 *3 (-1232 (-406 (-562)))))))
+(-10 -7 (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3805 ((-417 |#1|) |#1|)))
+((-3913 (((-3 (-406 (-562)) "failed") |#1|) 15)) (-3498 (((-112) |#1|) 14)) (-3854 (((-406 (-562)) |#1|) 10)))
+(((-1003 |#1|) (-10 -7 (-15 -3854 ((-406 (-562)) |#1|)) (-15 -3498 ((-112) |#1|)) (-15 -3913 ((-3 (-406 (-562)) "failed") |#1|))) (-1033 (-406 (-562)))) (T -1003))
+((-3913 (*1 *2 *3) (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-1003 *3)) (-4 *3 (-1033 *2)))) (-3498 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1003 *3)) (-4 *3 (-1033 (-406 (-562)))))) (-3854 (*1 *2 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-1003 *3)) (-4 *3 (-1033 *2)))))
+(-10 -7 (-15 -3854 ((-406 (-562)) |#1|)) (-15 -3498 ((-112) |#1|)) (-15 -3913 ((-3 (-406 (-562)) "failed") |#1|)))
+((-4200 ((|#2| $ "value" |#2|) 12)) (-2343 ((|#2| $ "value") 10)) (-2985 (((-112) $ $) 18)))
+(((-1004 |#1| |#2|) (-10 -8 (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -2985 ((-112) |#1| |#1|)) (-15 -2343 (|#2| |#1| "value"))) (-1005 |#2|) (-1207)) (T -1004))
+NIL
+(-10 -8 (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -2985 ((-112) |#1| |#1|)) (-15 -2343 (|#2| |#1| "value")))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2533 ((|#1| $) 48)) (-3735 (((-112) $ (-766)) 8)) (-2677 ((|#1| $ |#1|) 39 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) 41 (|has| $ (-6 -4404)))) (-3329 (($) 7 T CONST)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) 50)) (-4188 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-4008 (((-639 |#1|) $) 45)) (-3179 (((-112) $) 49)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ "value") 47)) (-1423 (((-562) $ $) 44)) (-2473 (((-112) $) 46)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) 51)) (-2985 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-1005 |#1|) (-139) (-1207)) (T -1005))
-((-2906 (*1 *2 *1) (-12 (-4 *3 (-1207)) (-5 *2 (-639 *1)) (-4 *1 (-1005 *3)))) (-2720 (*1 *2 *1) (-12 (-4 *3 (-1207)) (-5 *2 (-639 *1)) (-4 *1 (-1005 *3)))) (-3449 (*1 *2 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))) (-2534 (*1 *2 *1) (-12 (-4 *1 (-1005 *2)) (-4 *2 (-1207)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-1005 *2)) (-4 *2 (-1207)))) (-2424 (*1 *2 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))) (-4007 (*1 *2 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-639 *3)))) (-2568 (*1 *2 *1 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-562)))) (-4055 (*1 *2 *1 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-112)))) (-4379 (*1 *2 *1 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-112)))) (-2917 (*1 *1 *1 *2) (-12 (-5 *2 (-639 *1)) (|has| *1 (-6 -4403)) (-4 *1 (-1005 *3)) (-4 *3 (-1207)))) (-4200 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4403)) (-4 *1 (-1005 *2)) (-4 *2 (-1207)))) (-1512 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1005 *2)) (-4 *2 (-1207)))))
-(-13 (-488 |t#1|) (-10 -8 (-15 -2906 ((-639 $) $)) (-15 -2720 ((-639 $) $)) (-15 -3449 ((-112) $)) (-15 -2534 (|t#1| $)) (-15 -2343 (|t#1| $ "value")) (-15 -2424 ((-112) $)) (-15 -4007 ((-639 |t#1|) $)) (-15 -2568 ((-562) $ $)) (IF (|has| |t#1| (-1092)) (PROGN (-15 -4055 ((-112) $ $)) (-15 -4379 ((-112) $ $))) |%noBranch|) (IF (|has| $ (-6 -4403)) (PROGN (-15 -2917 ($ $ (-639 $))) (-15 -4200 (|t#1| $ "value" |t#1|)) (-15 -1512 (|t#1| $ |t#1|))) |%noBranch|)))
+((-3643 (*1 *2 *1) (-12 (-4 *3 (-1207)) (-5 *2 (-639 *1)) (-4 *1 (-1005 *3)))) (-2409 (*1 *2 *1) (-12 (-4 *3 (-1207)) (-5 *2 (-639 *1)) (-4 *1 (-1005 *3)))) (-3179 (*1 *2 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))) (-2533 (*1 *2 *1) (-12 (-4 *1 (-1005 *2)) (-4 *2 (-1207)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-1005 *2)) (-4 *2 (-1207)))) (-2473 (*1 *2 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))) (-4008 (*1 *2 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-639 *3)))) (-1423 (*1 *2 *1 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-562)))) (-2985 (*1 *2 *1 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-112)))) (-4188 (*1 *2 *1 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-112)))) (-3742 (*1 *1 *1 *2) (-12 (-5 *2 (-639 *1)) (|has| *1 (-6 -4404)) (-4 *1 (-1005 *3)) (-4 *3 (-1207)))) (-4200 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4404)) (-4 *1 (-1005 *2)) (-4 *2 (-1207)))) (-2677 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1005 *2)) (-4 *2 (-1207)))))
+(-13 (-488 |t#1|) (-10 -8 (-15 -3643 ((-639 $) $)) (-15 -2409 ((-639 $) $)) (-15 -3179 ((-112) $)) (-15 -2533 (|t#1| $)) (-15 -2343 (|t#1| $ "value")) (-15 -2473 ((-112) $)) (-15 -4008 ((-639 |t#1|) $)) (-15 -1423 ((-562) $ $)) (IF (|has| |t#1| (-1092)) (PROGN (-15 -2985 ((-112) $ $)) (-15 -4188 ((-112) $ $))) |%noBranch|) (IF (|has| $ (-6 -4404)) (PROGN (-15 -3742 ($ $ (-639 $))) (-15 -4200 (|t#1| $ "value" |t#1|)) (-15 -2677 (|t#1| $ |t#1|))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-1643 (($ $) 9) (($ $ (-916)) 43) (($ (-406 (-562))) 13) (($ (-562)) 15)) (-1502 (((-3 $ "failed") (-1164 $) (-916) (-857)) 23) (((-3 $ "failed") (-1164 $) (-916)) 28)) (-1891 (($ $ (-562)) 49)) (-2579 (((-766)) 17)) (-3318 (((-639 $) (-1164 $)) NIL) (((-639 $) (-1164 (-406 (-562)))) 54) (((-639 $) (-1164 (-562))) 59) (((-639 $) (-947 $)) 63) (((-639 $) (-947 (-406 (-562)))) 67) (((-639 $) (-947 (-562))) 71)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL) (($ $ (-406 (-562))) 47)))
-(((-1006 |#1|) (-10 -8 (-15 -1643 (|#1| (-562))) (-15 -1643 (|#1| (-406 (-562)))) (-15 -1643 (|#1| |#1| (-916))) (-15 -3318 ((-639 |#1|) (-947 (-562)))) (-15 -3318 ((-639 |#1|) (-947 (-406 (-562))))) (-15 -3318 ((-639 |#1|) (-947 |#1|))) (-15 -3318 ((-639 |#1|) (-1164 (-562)))) (-15 -3318 ((-639 |#1|) (-1164 (-406 (-562))))) (-15 -3318 ((-639 |#1|) (-1164 |#1|))) (-15 -1502 ((-3 |#1| "failed") (-1164 |#1|) (-916))) (-15 -1502 ((-3 |#1| "failed") (-1164 |#1|) (-916) (-857))) (-15 ** (|#1| |#1| (-406 (-562)))) (-15 -1891 (|#1| |#1| (-562))) (-15 -1643 (|#1| |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 -2579 ((-766))) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916)))) (-1007)) (T -1006))
-((-2579 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1006 *3)) (-4 *3 (-1007)))))
-(-10 -8 (-15 -1643 (|#1| (-562))) (-15 -1643 (|#1| (-406 (-562)))) (-15 -1643 (|#1| |#1| (-916))) (-15 -3318 ((-639 |#1|) (-947 (-562)))) (-15 -3318 ((-639 |#1|) (-947 (-406 (-562))))) (-15 -3318 ((-639 |#1|) (-947 |#1|))) (-15 -3318 ((-639 |#1|) (-1164 (-562)))) (-15 -3318 ((-639 |#1|) (-1164 (-406 (-562))))) (-15 -3318 ((-639 |#1|) (-1164 |#1|))) (-15 -1502 ((-3 |#1| "failed") (-1164 |#1|) (-916))) (-15 -1502 ((-3 |#1| "failed") (-1164 |#1|) (-916) (-857))) (-15 ** (|#1| |#1| (-406 (-562)))) (-15 -1891 (|#1| |#1| (-562))) (-15 -1643 (|#1| |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 -2579 ((-766))) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 91)) (-2796 (($ $) 92)) (-4370 (((-112) $) 94)) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 111)) (-2921 (((-417 $) $) 112)) (-1643 (($ $) 75) (($ $ (-916)) 61) (($ (-406 (-562))) 60) (($ (-562)) 59)) (-2569 (((-112) $ $) 102)) (-2277 (((-562) $) 128)) (-1800 (($) 17 T CONST)) (-1502 (((-3 $ "failed") (-1164 $) (-916) (-857)) 69) (((-3 $ "failed") (-1164 $) (-916)) 68)) (-4048 (((-3 (-562) "failed") $) 88 (|has| (-406 (-562)) (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 86 (|has| (-406 (-562)) (-1033 (-406 (-562))))) (((-3 (-406 (-562)) "failed") $) 83)) (-3961 (((-562) $) 87 (|has| (-406 (-562)) (-1033 (-562)))) (((-406 (-562)) $) 85 (|has| (-406 (-562)) (-1033 (-406 (-562))))) (((-406 (-562)) $) 84)) (-1924 (($ $ (-857)) 58)) (-4341 (($ $ (-857)) 57)) (-1811 (($ $ $) 106)) (-3668 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 105)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 100)) (-2717 (((-112) $) 113)) (-3519 (((-112) $) 126)) (-1957 (((-112) $) 31)) (-1891 (($ $ (-562)) 74)) (-3392 (((-112) $) 127)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 109)) (-1551 (($ $ $) 125)) (-2993 (($ $ $) 124)) (-1580 (((-3 (-1164 $) "failed") $) 70)) (-1795 (((-3 (-857) "failed") $) 72)) (-3176 (((-3 (-1164 $) "failed") $) 71)) (-1564 (($ (-639 $)) 98) (($ $ $) 97)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 114)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 99)) (-1606 (($ (-639 $)) 96) (($ $ $) 95)) (-1635 (((-417 $) $) 110)) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 108) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 107)) (-1762 (((-3 $ "failed") $ $) 90)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 101)) (-1577 (((-766) $) 103)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 104)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 118) (($ $) 89) (($ (-406 (-562))) 82) (($ (-562)) 81) (($ (-406 (-562))) 78)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 93)) (-1406 (((-406 (-562)) $ $) 56)) (-3318 (((-639 $) (-1164 $)) 67) (((-639 $) (-1164 (-406 (-562)))) 66) (((-639 $) (-1164 (-562))) 65) (((-639 $) (-947 $)) 64) (((-639 $) (-947 (-406 (-562)))) 63) (((-639 $) (-947 (-562))) 62)) (-3526 (($ $) 129)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 122)) (-1772 (((-112) $ $) 121)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 123)) (-1759 (((-112) $ $) 120)) (-1859 (($ $ $) 119)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 115) (($ $ (-406 (-562))) 73)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ (-406 (-562)) $) 117) (($ $ (-406 (-562))) 116) (($ (-562) $) 80) (($ $ (-562)) 79) (($ (-406 (-562)) $) 77) (($ $ (-406 (-562))) 76)))
+((-1644 (($ $) 9) (($ $ (-916)) 43) (($ (-406 (-562))) 13) (($ (-562)) 15)) (-2608 (((-3 $ "failed") (-1164 $) (-916) (-857)) 23) (((-3 $ "failed") (-1164 $) (-916)) 28)) (-1895 (($ $ (-562)) 49)) (-1568 (((-766)) 17)) (-4383 (((-639 $) (-1164 $)) NIL) (((-639 $) (-1164 (-406 (-562)))) 54) (((-639 $) (-1164 (-562))) 59) (((-639 $) (-947 $)) 63) (((-639 $) (-947 (-406 (-562)))) 67) (((-639 $) (-947 (-562))) 71)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL) (($ $ (-406 (-562))) 47)))
+(((-1006 |#1|) (-10 -8 (-15 -1644 (|#1| (-562))) (-15 -1644 (|#1| (-406 (-562)))) (-15 -1644 (|#1| |#1| (-916))) (-15 -4383 ((-639 |#1|) (-947 (-562)))) (-15 -4383 ((-639 |#1|) (-947 (-406 (-562))))) (-15 -4383 ((-639 |#1|) (-947 |#1|))) (-15 -4383 ((-639 |#1|) (-1164 (-562)))) (-15 -4383 ((-639 |#1|) (-1164 (-406 (-562))))) (-15 -4383 ((-639 |#1|) (-1164 |#1|))) (-15 -2608 ((-3 |#1| "failed") (-1164 |#1|) (-916))) (-15 -2608 ((-3 |#1| "failed") (-1164 |#1|) (-916) (-857))) (-15 ** (|#1| |#1| (-406 (-562)))) (-15 -1895 (|#1| |#1| (-562))) (-15 -1644 (|#1| |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 -1568 ((-766))) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916)))) (-1007)) (T -1006))
+((-1568 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1006 *3)) (-4 *3 (-1007)))))
+(-10 -8 (-15 -1644 (|#1| (-562))) (-15 -1644 (|#1| (-406 (-562)))) (-15 -1644 (|#1| |#1| (-916))) (-15 -4383 ((-639 |#1|) (-947 (-562)))) (-15 -4383 ((-639 |#1|) (-947 (-406 (-562))))) (-15 -4383 ((-639 |#1|) (-947 |#1|))) (-15 -4383 ((-639 |#1|) (-1164 (-562)))) (-15 -4383 ((-639 |#1|) (-1164 (-406 (-562))))) (-15 -4383 ((-639 |#1|) (-1164 |#1|))) (-15 -2608 ((-3 |#1| "failed") (-1164 |#1|) (-916))) (-15 -2608 ((-3 |#1| "failed") (-1164 |#1|) (-916) (-857))) (-15 ** (|#1| |#1| (-406 (-562)))) (-15 -1895 (|#1| |#1| (-562))) (-15 -1644 (|#1| |#1|)) (-15 ** (|#1| |#1| (-562))) (-15 -1568 ((-766))) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 91)) (-1965 (($ $) 92)) (-4102 (((-112) $) 94)) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 111)) (-3788 (((-417 $) $) 112)) (-1644 (($ $) 75) (($ $ (-916)) 61) (($ (-406 (-562))) 60) (($ (-562)) 59)) (-1436 (((-112) $ $) 102)) (-1587 (((-562) $) 128)) (-3329 (($) 17 T CONST)) (-2608 (((-3 $ "failed") (-1164 $) (-916) (-857)) 69) (((-3 $ "failed") (-1164 $) (-916)) 68)) (-4048 (((-3 (-562) "failed") $) 88 (|has| (-406 (-562)) (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 86 (|has| (-406 (-562)) (-1033 (-406 (-562))))) (((-3 (-406 (-562)) "failed") $) 83)) (-3960 (((-562) $) 87 (|has| (-406 (-562)) (-1033 (-562)))) (((-406 (-562)) $) 85 (|has| (-406 (-562)) (-1033 (-406 (-562))))) (((-406 (-562)) $) 84)) (-2225 (($ $ (-857)) 58)) (-3783 (($ $ (-857)) 57)) (-1810 (($ $ $) 106)) (-1694 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 105)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 100)) (-3521 (((-112) $) 113)) (-2696 (((-112) $) 126)) (-4367 (((-112) $) 31)) (-1895 (($ $ (-562)) 74)) (-3855 (((-112) $) 127)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 109)) (-1551 (($ $ $) 125)) (-2993 (($ $ $) 124)) (-2077 (((-3 (-1164 $) "failed") $) 70)) (-3296 (((-3 (-857) "failed") $) 72)) (-2437 (((-3 (-1164 $) "failed") $) 71)) (-1564 (($ (-639 $)) 98) (($ $ $) 97)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 114)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 99)) (-1606 (($ (-639 $)) 96) (($ $ $) 95)) (-1635 (((-417 $) $) 110)) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 108) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 107)) (-1762 (((-3 $ "failed") $ $) 90)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 101)) (-2044 (((-766) $) 103)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 104)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 118) (($ $) 89) (($ (-406 (-562))) 82) (($ (-562)) 81) (($ (-406 (-562))) 78)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 93)) (-1406 (((-406 (-562)) $ $) 56)) (-4383 (((-639 $) (-1164 $)) 67) (((-639 $) (-1164 (-406 (-562)))) 66) (((-639 $) (-1164 (-562))) 65) (((-639 $) (-947 $)) 64) (((-639 $) (-947 (-406 (-562)))) 63) (((-639 $) (-947 (-562))) 62)) (-2757 (($ $) 129)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 122)) (-1771 (((-112) $ $) 121)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 123)) (-1761 (((-112) $ $) 120)) (-1859 (($ $ $) 119)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 115) (($ $ (-406 (-562))) 73)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ (-406 (-562)) $) 117) (($ $ (-406 (-562))) 116) (($ (-562) $) 80) (($ $ (-562)) 79) (($ (-406 (-562)) $) 77) (($ $ (-406 (-562))) 76)))
(((-1007) (-139)) (T -1007))
-((-1643 (*1 *1 *1) (-4 *1 (-1007))) (-1795 (*1 *2 *1) (|partial| -12 (-4 *1 (-1007)) (-5 *2 (-857)))) (-3176 (*1 *2 *1) (|partial| -12 (-5 *2 (-1164 *1)) (-4 *1 (-1007)))) (-1580 (*1 *2 *1) (|partial| -12 (-5 *2 (-1164 *1)) (-4 *1 (-1007)))) (-1502 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1164 *1)) (-5 *3 (-916)) (-5 *4 (-857)) (-4 *1 (-1007)))) (-1502 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1164 *1)) (-5 *3 (-916)) (-4 *1 (-1007)))) (-3318 (*1 *2 *3) (-12 (-5 *3 (-1164 *1)) (-4 *1 (-1007)) (-5 *2 (-639 *1)))) (-3318 (*1 *2 *3) (-12 (-5 *3 (-1164 (-406 (-562)))) (-5 *2 (-639 *1)) (-4 *1 (-1007)))) (-3318 (*1 *2 *3) (-12 (-5 *3 (-1164 (-562))) (-5 *2 (-639 *1)) (-4 *1 (-1007)))) (-3318 (*1 *2 *3) (-12 (-5 *3 (-947 *1)) (-4 *1 (-1007)) (-5 *2 (-639 *1)))) (-3318 (*1 *2 *3) (-12 (-5 *3 (-947 (-406 (-562)))) (-5 *2 (-639 *1)) (-4 *1 (-1007)))) (-3318 (*1 *2 *3) (-12 (-5 *3 (-947 (-562))) (-5 *2 (-639 *1)) (-4 *1 (-1007)))) (-1643 (*1 *1 *1 *2) (-12 (-4 *1 (-1007)) (-5 *2 (-916)))) (-1643 (*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-4 *1 (-1007)))) (-1643 (*1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-1007)))) (-1924 (*1 *1 *1 *2) (-12 (-4 *1 (-1007)) (-5 *2 (-857)))) (-4341 (*1 *1 *1 *2) (-12 (-4 *1 (-1007)) (-5 *2 (-857)))) (-1406 (*1 *2 *1 *1) (-12 (-4 *1 (-1007)) (-5 *2 (-406 (-562))))))
-(-13 (-146) (-843) (-171) (-362) (-410 (-406 (-562))) (-38 (-562)) (-38 (-406 (-562))) (-997) (-10 -8 (-15 -1795 ((-3 (-857) "failed") $)) (-15 -3176 ((-3 (-1164 $) "failed") $)) (-15 -1580 ((-3 (-1164 $) "failed") $)) (-15 -1502 ((-3 $ "failed") (-1164 $) (-916) (-857))) (-15 -1502 ((-3 $ "failed") (-1164 $) (-916))) (-15 -3318 ((-639 $) (-1164 $))) (-15 -3318 ((-639 $) (-1164 (-406 (-562))))) (-15 -3318 ((-639 $) (-1164 (-562)))) (-15 -3318 ((-639 $) (-947 $))) (-15 -3318 ((-639 $) (-947 (-406 (-562))))) (-15 -3318 ((-639 $) (-947 (-562)))) (-15 -1643 ($ $ (-916))) (-15 -1643 ($ $)) (-15 -1643 ($ (-406 (-562)))) (-15 -1643 ($ (-562))) (-15 -1924 ($ $ (-857))) (-15 -4341 ($ $ (-857))) (-15 -1406 ((-406 (-562)) $ $))))
+((-1644 (*1 *1 *1) (-4 *1 (-1007))) (-3296 (*1 *2 *1) (|partial| -12 (-4 *1 (-1007)) (-5 *2 (-857)))) (-2437 (*1 *2 *1) (|partial| -12 (-5 *2 (-1164 *1)) (-4 *1 (-1007)))) (-2077 (*1 *2 *1) (|partial| -12 (-5 *2 (-1164 *1)) (-4 *1 (-1007)))) (-2608 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1164 *1)) (-5 *3 (-916)) (-5 *4 (-857)) (-4 *1 (-1007)))) (-2608 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1164 *1)) (-5 *3 (-916)) (-4 *1 (-1007)))) (-4383 (*1 *2 *3) (-12 (-5 *3 (-1164 *1)) (-4 *1 (-1007)) (-5 *2 (-639 *1)))) (-4383 (*1 *2 *3) (-12 (-5 *3 (-1164 (-406 (-562)))) (-5 *2 (-639 *1)) (-4 *1 (-1007)))) (-4383 (*1 *2 *3) (-12 (-5 *3 (-1164 (-562))) (-5 *2 (-639 *1)) (-4 *1 (-1007)))) (-4383 (*1 *2 *3) (-12 (-5 *3 (-947 *1)) (-4 *1 (-1007)) (-5 *2 (-639 *1)))) (-4383 (*1 *2 *3) (-12 (-5 *3 (-947 (-406 (-562)))) (-5 *2 (-639 *1)) (-4 *1 (-1007)))) (-4383 (*1 *2 *3) (-12 (-5 *3 (-947 (-562))) (-5 *2 (-639 *1)) (-4 *1 (-1007)))) (-1644 (*1 *1 *1 *2) (-12 (-4 *1 (-1007)) (-5 *2 (-916)))) (-1644 (*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-4 *1 (-1007)))) (-1644 (*1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-1007)))) (-2225 (*1 *1 *1 *2) (-12 (-4 *1 (-1007)) (-5 *2 (-857)))) (-3783 (*1 *1 *1 *2) (-12 (-4 *1 (-1007)) (-5 *2 (-857)))) (-1406 (*1 *2 *1 *1) (-12 (-4 *1 (-1007)) (-5 *2 (-406 (-562))))))
+(-13 (-146) (-843) (-171) (-362) (-410 (-406 (-562))) (-38 (-562)) (-38 (-406 (-562))) (-997) (-10 -8 (-15 -3296 ((-3 (-857) "failed") $)) (-15 -2437 ((-3 (-1164 $) "failed") $)) (-15 -2077 ((-3 (-1164 $) "failed") $)) (-15 -2608 ((-3 $ "failed") (-1164 $) (-916) (-857))) (-15 -2608 ((-3 $ "failed") (-1164 $) (-916))) (-15 -4383 ((-639 $) (-1164 $))) (-15 -4383 ((-639 $) (-1164 (-406 (-562))))) (-15 -4383 ((-639 $) (-1164 (-562)))) (-15 -4383 ((-639 $) (-947 $))) (-15 -4383 ((-639 $) (-947 (-406 (-562))))) (-15 -4383 ((-639 $) (-947 (-562)))) (-15 -1644 ($ $ (-916))) (-15 -1644 ($ $)) (-15 -1644 ($ (-406 (-562)))) (-15 -1644 ($ (-562))) (-15 -2225 ($ $ (-857))) (-15 -3783 ($ $ (-857))) (-15 -1406 ((-406 (-562)) $ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) . T) ((-38 #1=(-562)) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-130) . T) ((-146) . T) ((-612 #0#) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-242) . T) ((-289) . T) ((-306) . T) ((-362) . T) ((-410 (-406 (-562))) . T) ((-451) . T) ((-554) . T) ((-642 #0#) . T) ((-642 #1#) . T) ((-642 $) . T) ((-712 #0#) . T) ((-712 #1#) . T) ((-712 $) . T) ((-721) . T) ((-786) . T) ((-787) . T) ((-789) . T) ((-790) . T) ((-843) . T) ((-845) . T) ((-915) . T) ((-997) . T) ((-1033 (-406 (-562))) . T) ((-1033 (-562)) |has| (-406 (-562)) (-1033 (-562))) ((-1050 #0#) . T) ((-1050 #1#) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1211) . T))
-((-1585 (((-2 (|:| |ans| |#2|) (|:| -1602 |#2|) (|:| |sol?| (-112))) (-562) |#2| |#2| (-1168) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-639 |#2|)) (-1 (-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 65)))
-(((-1008 |#1| |#2|) (-10 -7 (-15 -1585 ((-2 (|:| |ans| |#2|) (|:| -1602 |#2|) (|:| |sol?| (-112))) (-562) |#2| |#2| (-1168) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-639 |#2|)) (-1 (-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-27) (-429 |#1|))) (T -1008))
-((-1585 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1168)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-639 *4))) (-5 *7 (-1 (-3 (-2 (|:| -3860 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1192) (-27) (-429 *8))) (-4 *8 (-13 (-451) (-845) (-146) (-1033 *3) (-635 *3))) (-5 *3 (-562)) (-5 *2 (-2 (|:| |ans| *4) (|:| -1602 *4) (|:| |sol?| (-112)))) (-5 *1 (-1008 *8 *4)))))
-(-10 -7 (-15 -1585 ((-2 (|:| |ans| |#2|) (|:| -1602 |#2|) (|:| |sol?| (-112))) (-562) |#2| |#2| (-1168) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-639 |#2|)) (-1 (-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-3182 (((-3 (-639 |#2|) "failed") (-562) |#2| |#2| |#2| (-1168) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-639 |#2|)) (-1 (-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 53)))
-(((-1009 |#1| |#2|) (-10 -7 (-15 -3182 ((-3 (-639 |#2|) "failed") (-562) |#2| |#2| |#2| (-1168) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-639 |#2|)) (-1 (-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-27) (-429 |#1|))) (T -1009))
-((-3182 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1168)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-639 *4))) (-5 *7 (-1 (-3 (-2 (|:| -3860 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1192) (-27) (-429 *8))) (-4 *8 (-13 (-451) (-845) (-146) (-1033 *3) (-635 *3))) (-5 *3 (-562)) (-5 *2 (-639 *4)) (-5 *1 (-1009 *8 *4)))))
-(-10 -7 (-15 -3182 ((-3 (-639 |#2|) "failed") (-562) |#2| |#2| |#2| (-1168) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-639 |#2|)) (-1 (-3 (-2 (|:| -3860 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-3193 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -3342 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-562)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-562) (-1 |#2| |#2|)) 31)) (-4047 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-406 |#2|)) (|:| |c| (-406 |#2|)) (|:| -3355 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-1 |#2| |#2|)) 59)) (-3530 (((-2 (|:| |ans| (-406 |#2|)) (|:| |nosol| (-112))) (-406 |#2|) (-406 |#2|)) 64)))
-(((-1010 |#1| |#2|) (-10 -7 (-15 -4047 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-406 |#2|)) (|:| |c| (-406 |#2|)) (|:| -3355 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-1 |#2| |#2|))) (-15 -3530 ((-2 (|:| |ans| (-406 |#2|)) (|:| |nosol| (-112))) (-406 |#2|) (-406 |#2|))) (-15 -3193 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -3342 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-562)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-562) (-1 |#2| |#2|)))) (-13 (-362) (-146) (-1033 (-562))) (-1232 |#1|)) (T -1010))
-((-3193 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1232 *6)) (-4 *6 (-13 (-362) (-146) (-1033 *4))) (-5 *4 (-562)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112)))) (|:| -3342 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-1010 *6 *3)))) (-3530 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-562)))) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| |ans| (-406 *5)) (|:| |nosol| (-112)))) (-5 *1 (-1010 *4 *5)) (-5 *3 (-406 *5)))) (-4047 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-406 *6)) (|:| |c| (-406 *6)) (|:| -3355 *6))) (-5 *1 (-1010 *5 *6)) (-5 *3 (-406 *6)))))
-(-10 -7 (-15 -4047 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-406 |#2|)) (|:| |c| (-406 |#2|)) (|:| -3355 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-1 |#2| |#2|))) (-15 -3530 ((-2 (|:| |ans| (-406 |#2|)) (|:| |nosol| (-112))) (-406 |#2|) (-406 |#2|))) (-15 -3193 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -3342 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-562)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-562) (-1 |#2| |#2|))))
-((-1714 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-406 |#2|)) (|:| |h| |#2|) (|:| |c1| (-406 |#2|)) (|:| |c2| (-406 |#2|)) (|:| -3355 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|) (-1 |#2| |#2|)) 22)) (-1367 (((-3 (-639 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|)) 33)))
-(((-1011 |#1| |#2|) (-10 -7 (-15 -1714 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-406 |#2|)) (|:| |h| |#2|) (|:| |c1| (-406 |#2|)) (|:| |c2| (-406 |#2|)) (|:| -3355 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|) (-1 |#2| |#2|))) (-15 -1367 ((-3 (-639 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|)))) (-13 (-362) (-146) (-1033 (-562))) (-1232 |#1|)) (T -1011))
-((-1367 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-362) (-146) (-1033 (-562)))) (-4 *5 (-1232 *4)) (-5 *2 (-639 (-406 *5))) (-5 *1 (-1011 *4 *5)) (-5 *3 (-406 *5)))) (-1714 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-406 *6)) (|:| |h| *6) (|:| |c1| (-406 *6)) (|:| |c2| (-406 *6)) (|:| -3355 *6))) (-5 *1 (-1011 *5 *6)) (-5 *3 (-406 *6)))))
-(-10 -7 (-15 -1714 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-406 |#2|)) (|:| |h| |#2|) (|:| |c1| (-406 |#2|)) (|:| |c2| (-406 |#2|)) (|:| -3355 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|) (-1 |#2| |#2|))) (-15 -1367 ((-3 (-639 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|))))
-((-2959 (((-1 |#1|) (-639 (-2 (|:| -2534 |#1|) (|:| -1929 (-562))))) 37)) (-3517 (((-1 |#1|) (-1094 |#1|)) 45)) (-2625 (((-1 |#1|) (-1256 |#1|) (-1256 (-562)) (-562)) 34)))
-(((-1012 |#1|) (-10 -7 (-15 -3517 ((-1 |#1|) (-1094 |#1|))) (-15 -2959 ((-1 |#1|) (-639 (-2 (|:| -2534 |#1|) (|:| -1929 (-562)))))) (-15 -2625 ((-1 |#1|) (-1256 |#1|) (-1256 (-562)) (-562)))) (-1092)) (T -1012))
-((-2625 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1256 *6)) (-5 *4 (-1256 (-562))) (-5 *5 (-562)) (-4 *6 (-1092)) (-5 *2 (-1 *6)) (-5 *1 (-1012 *6)))) (-2959 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -2534 *4) (|:| -1929 (-562))))) (-4 *4 (-1092)) (-5 *2 (-1 *4)) (-5 *1 (-1012 *4)))) (-3517 (*1 *2 *3) (-12 (-5 *3 (-1094 *4)) (-4 *4 (-1092)) (-5 *2 (-1 *4)) (-5 *1 (-1012 *4)))))
-(-10 -7 (-15 -3517 ((-1 |#1|) (-1094 |#1|))) (-15 -2959 ((-1 |#1|) (-639 (-2 (|:| -2534 |#1|) (|:| -1929 (-562)))))) (-15 -2625 ((-1 |#1|) (-1256 |#1|) (-1256 (-562)) (-562))))
-((-1900 (((-766) (-335 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
-(((-1013 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1900 ((-766) (-335 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-362) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|) (-13 (-367) (-362))) (T -1013))
-((-1900 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-335 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-362)) (-4 *7 (-1232 *6)) (-4 *4 (-1232 (-406 *7))) (-4 *8 (-341 *6 *7 *4)) (-4 *9 (-13 (-367) (-362))) (-5 *2 (-766)) (-5 *1 (-1013 *6 *7 *4 *8 *9)))))
-(-10 -7 (-15 -1900 ((-766) (-335 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
-((-4041 (((-112) $ $) NIL)) (-2876 (((-1127) $) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-1127) $) 11)) (-1731 (((-112) $ $) NIL)))
-(((-1014) (-13 (-1075) (-10 -8 (-15 -2876 ((-1127) $)) (-15 -3265 ((-1127) $))))) (T -1014))
-((-2876 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1014)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1014)))))
-(-13 (-1075) (-10 -8 (-15 -2876 ((-1127) $)) (-15 -3265 ((-1127) $))))
-((-3528 (((-3 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) "failed") |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) 31) (((-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-406 (-562))) 28)) (-2631 (((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-406 (-562))) 33) (((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-406 (-562))) 29) (((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) 32) (((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1|) 27)) (-4123 (((-639 (-406 (-562))) (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) 19)) (-1341 (((-406 (-562)) (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) 16)))
-(((-1015 |#1|) (-10 -7 (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1|)) (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-406 (-562)))) (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-406 (-562)))) (-15 -3528 ((-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-406 (-562)))) (-15 -3528 ((-3 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) "failed") |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-15 -1341 ((-406 (-562)) (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-15 -4123 ((-639 (-406 (-562))) (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))))) (-1232 (-562))) (T -1015))
-((-4123 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-5 *2 (-639 (-406 (-562)))) (-5 *1 (-1015 *4)) (-4 *4 (-1232 (-562))))) (-1341 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) (-5 *2 (-406 (-562))) (-5 *1 (-1015 *4)) (-4 *4 (-1232 (-562))))) (-3528 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))))) (-3528 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) (-5 *4 (-406 (-562))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))))) (-2631 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-406 (-562))) (-5 *2 (-639 (-2 (|:| -1588 *5) (|:| -1602 *5)))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))) (-5 *4 (-2 (|:| -1588 *5) (|:| -1602 *5))))) (-2631 (*1 *2 *3 *4) (-12 (-5 *2 (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))) (-5 *4 (-406 (-562))))) (-2631 (*1 *2 *3 *4) (-12 (-5 *2 (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))) (-5 *4 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))) (-2631 (*1 *2 *3) (-12 (-5 *2 (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))))))
-(-10 -7 (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1|)) (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-406 (-562)))) (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-406 (-562)))) (-15 -3528 ((-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-406 (-562)))) (-15 -3528 ((-3 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) "failed") |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-15 -1341 ((-406 (-562)) (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-15 -4123 ((-639 (-406 (-562))) (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))))
-((-3528 (((-3 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) "failed") |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) 35) (((-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-406 (-562))) 32)) (-2631 (((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-406 (-562))) 30) (((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-406 (-562))) 26) (((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) 28) (((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1|) 24)))
-(((-1016 |#1|) (-10 -7 (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1|)) (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-406 (-562)))) (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-406 (-562)))) (-15 -3528 ((-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-406 (-562)))) (-15 -3528 ((-3 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) "failed") |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))) (-1232 (-406 (-562)))) (T -1016))
-((-3528 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 (-406 (-562)))))) (-3528 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) (-5 *4 (-406 (-562))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 *4)))) (-2631 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-406 (-562))) (-5 *2 (-639 (-2 (|:| -1588 *5) (|:| -1602 *5)))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 *5)) (-5 *4 (-2 (|:| -1588 *5) (|:| -1602 *5))))) (-2631 (*1 *2 *3 *4) (-12 (-5 *4 (-406 (-562))) (-5 *2 (-639 (-2 (|:| -1588 *4) (|:| -1602 *4)))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 *4)))) (-2631 (*1 *2 *3 *4) (-12 (-5 *2 (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 (-406 (-562)))) (-5 *4 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))) (-2631 (*1 *2 *3) (-12 (-5 *2 (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 (-406 (-562)))))))
-(-10 -7 (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1|)) (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))) (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-406 (-562)))) (-15 -2631 ((-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-406 (-562)))) (-15 -3528 ((-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-406 (-562)))) (-15 -3528 ((-3 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) "failed") |#1| (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))) (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))))
+((-2118 (((-2 (|:| |ans| |#2|) (|:| -1603 |#2|) (|:| |sol?| (-112))) (-562) |#2| |#2| (-1168) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-639 |#2|)) (-1 (-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 65)))
+(((-1008 |#1| |#2|) (-10 -7 (-15 -2118 ((-2 (|:| |ans| |#2|) (|:| -1603 |#2|) (|:| |sol?| (-112))) (-562) |#2| |#2| (-1168) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-639 |#2|)) (-1 (-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-27) (-429 |#1|))) (T -1008))
+((-2118 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1168)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-639 *4))) (-5 *7 (-1 (-3 (-2 (|:| -2929 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1192) (-27) (-429 *8))) (-4 *8 (-13 (-451) (-845) (-146) (-1033 *3) (-635 *3))) (-5 *3 (-562)) (-5 *2 (-2 (|:| |ans| *4) (|:| -1603 *4) (|:| |sol?| (-112)))) (-5 *1 (-1008 *8 *4)))))
+(-10 -7 (-15 -2118 ((-2 (|:| |ans| |#2|) (|:| -1603 |#2|) (|:| |sol?| (-112))) (-562) |#2| |#2| (-1168) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-639 |#2|)) (-1 (-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-2488 (((-3 (-639 |#2|) "failed") (-562) |#2| |#2| |#2| (-1168) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-639 |#2|)) (-1 (-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 53)))
+(((-1009 |#1| |#2|) (-10 -7 (-15 -2488 ((-3 (-639 |#2|) "failed") (-562) |#2| |#2| |#2| (-1168) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-639 |#2|)) (-1 (-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))) (-13 (-1192) (-27) (-429 |#1|))) (T -1009))
+((-2488 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1168)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-639 *4))) (-5 *7 (-1 (-3 (-2 (|:| -2929 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1192) (-27) (-429 *8))) (-4 *8 (-13 (-451) (-845) (-146) (-1033 *3) (-635 *3))) (-5 *3 (-562)) (-5 *2 (-639 *4)) (-5 *1 (-1009 *8 *4)))))
+(-10 -7 (-15 -2488 ((-3 (-639 |#2|) "failed") (-562) |#2| |#2| |#2| (-1168) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-639 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-639 |#2|)) (-1 (-3 (-2 (|:| -2929 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-2600 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -3339 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-562)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-562) (-1 |#2| |#2|)) 31)) (-4173 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-406 |#2|)) (|:| |c| (-406 |#2|)) (|:| -3354 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-1 |#2| |#2|)) 59)) (-2798 (((-2 (|:| |ans| (-406 |#2|)) (|:| |nosol| (-112))) (-406 |#2|) (-406 |#2|)) 64)))
+(((-1010 |#1| |#2|) (-10 -7 (-15 -4173 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-406 |#2|)) (|:| |c| (-406 |#2|)) (|:| -3354 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-1 |#2| |#2|))) (-15 -2798 ((-2 (|:| |ans| (-406 |#2|)) (|:| |nosol| (-112))) (-406 |#2|) (-406 |#2|))) (-15 -2600 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -3339 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-562)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-562) (-1 |#2| |#2|)))) (-13 (-362) (-146) (-1033 (-562))) (-1232 |#1|)) (T -1010))
+((-2600 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1232 *6)) (-4 *6 (-13 (-362) (-146) (-1033 *4))) (-5 *4 (-562)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112)))) (|:| -3339 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-1010 *6 *3)))) (-2798 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-562)))) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| |ans| (-406 *5)) (|:| |nosol| (-112)))) (-5 *1 (-1010 *4 *5)) (-5 *3 (-406 *5)))) (-4173 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-406 *6)) (|:| |c| (-406 *6)) (|:| -3354 *6))) (-5 *1 (-1010 *5 *6)) (-5 *3 (-406 *6)))))
+(-10 -7 (-15 -4173 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-406 |#2|)) (|:| |c| (-406 |#2|)) (|:| -3354 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-1 |#2| |#2|))) (-15 -2798 ((-2 (|:| |ans| (-406 |#2|)) (|:| |nosol| (-112))) (-406 |#2|) (-406 |#2|))) (-15 -2600 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -3339 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-562)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-562) (-1 |#2| |#2|))))
+((-3819 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-406 |#2|)) (|:| |h| |#2|) (|:| |c1| (-406 |#2|)) (|:| |c2| (-406 |#2|)) (|:| -3354 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|) (-1 |#2| |#2|)) 22)) (-1400 (((-3 (-639 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|)) 33)))
+(((-1011 |#1| |#2|) (-10 -7 (-15 -3819 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-406 |#2|)) (|:| |h| |#2|) (|:| |c1| (-406 |#2|)) (|:| |c2| (-406 |#2|)) (|:| -3354 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|) (-1 |#2| |#2|))) (-15 -1400 ((-3 (-639 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|)))) (-13 (-362) (-146) (-1033 (-562))) (-1232 |#1|)) (T -1011))
+((-1400 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-362) (-146) (-1033 (-562)))) (-4 *5 (-1232 *4)) (-5 *2 (-639 (-406 *5))) (-5 *1 (-1011 *4 *5)) (-5 *3 (-406 *5)))) (-3819 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-406 *6)) (|:| |h| *6) (|:| |c1| (-406 *6)) (|:| |c2| (-406 *6)) (|:| -3354 *6))) (-5 *1 (-1011 *5 *6)) (-5 *3 (-406 *6)))))
+(-10 -7 (-15 -3819 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-406 |#2|)) (|:| |h| |#2|) (|:| |c1| (-406 |#2|)) (|:| |c2| (-406 |#2|)) (|:| -3354 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|) (-1 |#2| |#2|))) (-15 -1400 ((-3 (-639 (-406 |#2|)) "failed") (-406 |#2|) (-406 |#2|) (-406 |#2|))))
+((-4174 (((-1 |#1|) (-639 (-2 (|:| -2533 |#1|) (|:| -2277 (-562))))) 37)) (-2674 (((-1 |#1|) (-1094 |#1|)) 45)) (-3873 (((-1 |#1|) (-1256 |#1|) (-1256 (-562)) (-562)) 34)))
+(((-1012 |#1|) (-10 -7 (-15 -2674 ((-1 |#1|) (-1094 |#1|))) (-15 -4174 ((-1 |#1|) (-639 (-2 (|:| -2533 |#1|) (|:| -2277 (-562)))))) (-15 -3873 ((-1 |#1|) (-1256 |#1|) (-1256 (-562)) (-562)))) (-1092)) (T -1012))
+((-3873 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1256 *6)) (-5 *4 (-1256 (-562))) (-5 *5 (-562)) (-4 *6 (-1092)) (-5 *2 (-1 *6)) (-5 *1 (-1012 *6)))) (-4174 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -2533 *4) (|:| -2277 (-562))))) (-4 *4 (-1092)) (-5 *2 (-1 *4)) (-5 *1 (-1012 *4)))) (-2674 (*1 *2 *3) (-12 (-5 *3 (-1094 *4)) (-4 *4 (-1092)) (-5 *2 (-1 *4)) (-5 *1 (-1012 *4)))))
+(-10 -7 (-15 -2674 ((-1 |#1|) (-1094 |#1|))) (-15 -4174 ((-1 |#1|) (-639 (-2 (|:| -2533 |#1|) (|:| -2277 (-562)))))) (-15 -3873 ((-1 |#1|) (-1256 |#1|) (-1256 (-562)) (-562))))
+((-1993 (((-766) (-335 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
+(((-1013 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1993 ((-766) (-335 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-362) (-1232 |#1|) (-1232 (-406 |#2|)) (-341 |#1| |#2| |#3|) (-13 (-367) (-362))) (T -1013))
+((-1993 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-335 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-362)) (-4 *7 (-1232 *6)) (-4 *4 (-1232 (-406 *7))) (-4 *8 (-341 *6 *7 *4)) (-4 *9 (-13 (-367) (-362))) (-5 *2 (-766)) (-5 *1 (-1013 *6 *7 *4 *8 *9)))))
+(-10 -7 (-15 -1993 ((-766) (-335 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
+((-4041 (((-112) $ $) NIL)) (-1502 (((-1127) $) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-1127) $) 11)) (-1733 (((-112) $ $) NIL)))
+(((-1014) (-13 (-1075) (-10 -8 (-15 -1502 ((-1127) $)) (-15 -3265 ((-1127) $))))) (T -1014))
+((-1502 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1014)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1014)))))
+(-13 (-1075) (-10 -8 (-15 -1502 ((-1127) $)) (-15 -3265 ((-1127) $))))
+((-2776 (((-3 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) "failed") |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) 31) (((-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-406 (-562))) 28)) (-3944 (((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-406 (-562))) 33) (((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-406 (-562))) 29) (((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) 32) (((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1|) 27)) (-2433 (((-639 (-406 (-562))) (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) 19)) (-2054 (((-406 (-562)) (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) 16)))
+(((-1015 |#1|) (-10 -7 (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1|)) (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-406 (-562)))) (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-406 (-562)))) (-15 -2776 ((-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-406 (-562)))) (-15 -2776 ((-3 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) "failed") |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-15 -2054 ((-406 (-562)) (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-15 -2433 ((-639 (-406 (-562))) (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))))) (-1232 (-562))) (T -1015))
+((-2433 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-5 *2 (-639 (-406 (-562)))) (-5 *1 (-1015 *4)) (-4 *4 (-1232 (-562))))) (-2054 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) (-5 *2 (-406 (-562))) (-5 *1 (-1015 *4)) (-4 *4 (-1232 (-562))))) (-2776 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))))) (-2776 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) (-5 *4 (-406 (-562))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))))) (-3944 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-406 (-562))) (-5 *2 (-639 (-2 (|:| -1589 *5) (|:| -1603 *5)))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))) (-5 *4 (-2 (|:| -1589 *5) (|:| -1603 *5))))) (-3944 (*1 *2 *3 *4) (-12 (-5 *2 (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))) (-5 *4 (-406 (-562))))) (-3944 (*1 *2 *3 *4) (-12 (-5 *2 (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))) (-5 *4 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))) (-3944 (*1 *2 *3) (-12 (-5 *2 (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))))))
+(-10 -7 (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1|)) (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-406 (-562)))) (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-406 (-562)))) (-15 -2776 ((-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-406 (-562)))) (-15 -2776 ((-3 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) "failed") |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-15 -2054 ((-406 (-562)) (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-15 -2433 ((-639 (-406 (-562))) (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))))
+((-2776 (((-3 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) "failed") |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) 35) (((-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-406 (-562))) 32)) (-3944 (((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-406 (-562))) 30) (((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-406 (-562))) 26) (((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) 28) (((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1|) 24)))
+(((-1016 |#1|) (-10 -7 (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1|)) (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-406 (-562)))) (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-406 (-562)))) (-15 -2776 ((-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-406 (-562)))) (-15 -2776 ((-3 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) "failed") |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))) (-1232 (-406 (-562)))) (T -1016))
+((-2776 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 (-406 (-562)))))) (-2776 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) (-5 *4 (-406 (-562))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 *4)))) (-3944 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-406 (-562))) (-5 *2 (-639 (-2 (|:| -1589 *5) (|:| -1603 *5)))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 *5)) (-5 *4 (-2 (|:| -1589 *5) (|:| -1603 *5))))) (-3944 (*1 *2 *3 *4) (-12 (-5 *4 (-406 (-562))) (-5 *2 (-639 (-2 (|:| -1589 *4) (|:| -1603 *4)))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 *4)))) (-3944 (*1 *2 *3 *4) (-12 (-5 *2 (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 (-406 (-562)))) (-5 *4 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))) (-3944 (*1 *2 *3) (-12 (-5 *2 (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 (-406 (-562)))))))
+(-10 -7 (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1|)) (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))) (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-406 (-562)))) (-15 -3944 ((-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-406 (-562)))) (-15 -2776 ((-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-406 (-562)))) (-15 -2776 ((-3 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) "failed") |#1| (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))) (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))))
((-4208 (((-224) $) 6) (((-378) $) 9)))
(((-1017) (-139)) (T -1017))
NIL
(-13 (-610 (-224)) (-610 (-378)))
(((-610 (-224)) . T) ((-610 (-378)) . T))
-((-4351 (((-639 (-378)) (-947 (-562)) (-378)) 28) (((-639 (-378)) (-947 (-406 (-562))) (-378)) 27)) (-3580 (((-639 (-639 (-378))) (-639 (-947 (-562))) (-639 (-1168)) (-378)) 37)))
-(((-1018) (-10 -7 (-15 -4351 ((-639 (-378)) (-947 (-406 (-562))) (-378))) (-15 -4351 ((-639 (-378)) (-947 (-562)) (-378))) (-15 -3580 ((-639 (-639 (-378))) (-639 (-947 (-562))) (-639 (-1168)) (-378))))) (T -1018))
-((-3580 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-639 (-1168))) (-5 *2 (-639 (-639 (-378)))) (-5 *1 (-1018)) (-5 *5 (-378)))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-947 (-562))) (-5 *2 (-639 (-378))) (-5 *1 (-1018)) (-5 *4 (-378)))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-947 (-406 (-562)))) (-5 *2 (-639 (-378))) (-5 *1 (-1018)) (-5 *4 (-378)))))
-(-10 -7 (-15 -4351 ((-639 (-378)) (-947 (-406 (-562))) (-378))) (-15 -4351 ((-639 (-378)) (-947 (-562)) (-378))) (-15 -3580 ((-639 (-639 (-378))) (-639 (-947 (-562))) (-639 (-1168)) (-378))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 70)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-1643 (($ $) NIL) (($ $ (-916)) NIL) (($ (-406 (-562))) NIL) (($ (-562)) NIL)) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) 65)) (-1800 (($) NIL T CONST)) (-1502 (((-3 $ "failed") (-1164 $) (-916) (-857)) NIL) (((-3 $ "failed") (-1164 $) (-916)) 50)) (-4048 (((-3 (-406 (-562)) "failed") $) NIL (|has| (-406 (-562)) (-1033 (-406 (-562))))) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#1| "failed") $) 107) (((-3 (-562) "failed") $) NIL (-4037 (|has| (-406 (-562)) (-1033 (-562))) (|has| |#1| (-1033 (-562)))))) (-3961 (((-406 (-562)) $) 15 (|has| (-406 (-562)) (-1033 (-406 (-562))))) (((-406 (-562)) $) 15) ((|#1| $) 108) (((-562) $) NIL (-4037 (|has| (-406 (-562)) (-1033 (-562))) (|has| |#1| (-1033 (-562)))))) (-1924 (($ $ (-857)) 42)) (-4341 (($ $ (-857)) 43)) (-1811 (($ $ $) NIL)) (-3104 (((-406 (-562)) $ $) 19)) (-3668 (((-3 $ "failed") $) 83)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3519 (((-112) $) 61)) (-1957 (((-112) $) NIL)) (-1891 (($ $ (-562)) NIL)) (-3392 (((-112) $) 64)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-1580 (((-3 (-1164 $) "failed") $) 78)) (-1795 (((-3 (-857) "failed") $) 77)) (-3176 (((-3 (-1164 $) "failed") $) 75)) (-2315 (((-3 (-1054 $ (-1164 $)) "failed") $) 73)) (-1564 (($ (-639 $)) NIL) (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 84)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ (-639 $)) NIL) (($ $ $) NIL)) (-1635 (((-417 $) $) NIL)) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4054 (((-857) $) 82) (($ (-562)) NIL) (($ (-406 (-562))) NIL) (($ $) 58) (($ (-406 (-562))) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL) (($ |#1|) 110)) (-2579 (((-766)) NIL)) (-2922 (((-112) $ $) NIL)) (-1406 (((-406 (-562)) $ $) 25)) (-3318 (((-639 $) (-1164 $)) 56) (((-639 $) (-1164 (-406 (-562)))) NIL) (((-639 $) (-1164 (-562))) NIL) (((-639 $) (-947 $)) NIL) (((-639 $) (-947 (-406 (-562)))) NIL) (((-639 $) (-947 (-562))) NIL)) (-3620 (($ (-1054 $ (-1164 $)) (-857)) 41)) (-3526 (($ $) 20)) (-2286 (($) 29 T CONST)) (-2294 (($) 35 T CONST)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 71)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 22)) (-1859 (($ $ $) 33)) (-1848 (($ $) 34) (($ $ $) 69)) (-1835 (($ $ $) 103)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL) (($ $ (-406 (-562))) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 91) (($ $ $) 96) (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL) (($ (-562) $) 91) (($ $ (-562)) NIL) (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL) (($ |#1| $) 95) (($ $ |#1|) NIL)))
-(((-1019 |#1|) (-13 (-1007) (-410 |#1|) (-38 |#1|) (-10 -8 (-15 -3620 ($ (-1054 $ (-1164 $)) (-857))) (-15 -2315 ((-3 (-1054 $ (-1164 $)) "failed") $)) (-15 -3104 ((-406 (-562)) $ $)))) (-13 (-843) (-362) (-1017))) (T -1019))
-((-3620 (*1 *1 *2 *3) (-12 (-5 *2 (-1054 (-1019 *4) (-1164 (-1019 *4)))) (-5 *3 (-857)) (-5 *1 (-1019 *4)) (-4 *4 (-13 (-843) (-362) (-1017))))) (-2315 (*1 *2 *1) (|partial| -12 (-5 *2 (-1054 (-1019 *3) (-1164 (-1019 *3)))) (-5 *1 (-1019 *3)) (-4 *3 (-13 (-843) (-362) (-1017))))) (-3104 (*1 *2 *1 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-1019 *3)) (-4 *3 (-13 (-843) (-362) (-1017))))))
-(-13 (-1007) (-410 |#1|) (-38 |#1|) (-10 -8 (-15 -3620 ($ (-1054 $ (-1164 $)) (-857))) (-15 -2315 ((-3 (-1054 $ (-1164 $)) "failed") $)) (-15 -3104 ((-406 (-562)) $ $))))
-((-2726 (((-2 (|:| -3342 |#2|) (|:| -2431 (-639 |#1|))) |#2| (-639 |#1|)) 20) ((|#2| |#2| |#1|) 15)))
-(((-1020 |#1| |#2|) (-10 -7 (-15 -2726 (|#2| |#2| |#1|)) (-15 -2726 ((-2 (|:| -3342 |#2|) (|:| -2431 (-639 |#1|))) |#2| (-639 |#1|)))) (-362) (-650 |#1|)) (T -1020))
-((-2726 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-5 *2 (-2 (|:| -3342 *3) (|:| -2431 (-639 *5)))) (-5 *1 (-1020 *5 *3)) (-5 *4 (-639 *5)) (-4 *3 (-650 *5)))) (-2726 (*1 *2 *2 *3) (-12 (-4 *3 (-362)) (-5 *1 (-1020 *3 *2)) (-4 *2 (-650 *3)))))
-(-10 -7 (-15 -2726 (|#2| |#2| |#1|)) (-15 -2726 ((-2 (|:| -3342 |#2|) (|:| -2431 (-639 |#1|))) |#2| (-639 |#1|))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1506 ((|#1| $ |#1|) 14)) (-4200 ((|#1| $ |#1|) 12)) (-1806 (($ |#1|) 10)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2343 ((|#1| $) 11)) (-3228 ((|#1| $) 13)) (-4054 (((-857) $) 21 (|has| |#1| (-1092)))) (-1731 (((-112) $ $) 9)))
-(((-1021 |#1|) (-13 (-1207) (-10 -8 (-15 -1806 ($ |#1|)) (-15 -2343 (|#1| $)) (-15 -4200 (|#1| $ |#1|)) (-15 -3228 (|#1| $)) (-15 -1506 (|#1| $ |#1|)) (-15 -1731 ((-112) $ $)) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|))) (-1207)) (T -1021))
-((-1806 (*1 *1 *2) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))) (-2343 (*1 *2 *1) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))) (-4200 (*1 *2 *1 *2) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))) (-3228 (*1 *2 *1) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))) (-1506 (*1 *2 *1 *2) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))) (-1731 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1021 *3)) (-4 *3 (-1207)))))
-(-13 (-1207) (-10 -8 (-15 -1806 ($ |#1|)) (-15 -2343 (|#1| $)) (-15 -4200 (|#1| $ |#1|)) (-15 -3228 (|#1| $)) (-15 -1506 (|#1| $ |#1|)) (-15 -1731 ((-112) $ $)) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|)))
-((-4041 (((-112) $ $) NIL)) (-2560 (((-639 (-2 (|:| -1450 $) (|:| -3316 (-639 |#4|)))) (-639 |#4|)) NIL)) (-2304 (((-639 $) (-639 |#4|)) 105) (((-639 $) (-639 |#4|) (-112)) 106) (((-639 $) (-639 |#4|) (-112) (-112)) 104) (((-639 $) (-639 |#4|) (-112) (-112) (-112) (-112)) 107)) (-1402 (((-639 |#3|) $) NIL)) (-4170 (((-112) $) NIL)) (-4274 (((-112) $) NIL (|has| |#1| (-554)))) (-4377 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3049 ((|#4| |#4| $) NIL)) (-2798 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 $))) |#4| $) 99)) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |#3|) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-3556 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402))) (((-3 |#4| "failed") $ |#3|) 54)) (-1800 (($) NIL T CONST)) (-2207 (((-112) $) 27 (|has| |#1| (-554)))) (-1920 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3852 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2539 (((-112) $) NIL (|has| |#1| (-554)))) (-2839 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3884 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-2540 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) NIL)) (-3961 (($ (-639 |#4|)) NIL)) (-1434 (((-3 $ "failed") $) 40)) (-2387 ((|#4| |#4| $) 57)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-1475 (($ |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-2264 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 73 (|has| |#1| (-554)))) (-4091 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3595 ((|#4| |#4| $) NIL)) (-1955 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4402))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4402))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2267 (((-2 (|:| -1450 (-639 |#4|)) (|:| -3316 (-639 |#4|))) $) NIL)) (-4079 (((-112) |#4| $) NIL)) (-3513 (((-112) |#4| $) NIL)) (-2764 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3383 (((-2 (|:| |val| (-639 |#4|)) (|:| |towers| (-639 $))) (-639 |#4|) (-112) (-112)) 119)) (-1720 (((-639 |#4|) $) 17 (|has| $ (-6 -4402)))) (-2573 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4339 ((|#3| $) 34)) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#4|) $) 18 (|has| $ (-6 -4402)))) (-1669 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-1490 (($ (-1 |#4| |#4|) $) 24 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#4| |#4|) $) 22)) (-3754 (((-639 |#3|) $) NIL)) (-2071 (((-112) |#3| $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-1609 (((-3 |#4| (-639 $)) |#4| |#4| $) NIL)) (-1851 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 $))) |#4| |#4| $) 97)) (-1504 (((-3 |#4| "failed") $) 38)) (-1814 (((-639 $) |#4| $) 80)) (-1950 (((-3 (-112) (-639 $)) |#4| $) NIL)) (-2021 (((-639 (-2 (|:| |val| (-112)) (|:| -1495 $))) |#4| $) 90) (((-112) |#4| $) 52)) (-4376 (((-639 $) |#4| $) 102) (((-639 $) (-639 |#4|) $) NIL) (((-639 $) (-639 |#4|) (-639 $)) 103) (((-639 $) |#4| (-639 $)) NIL)) (-1930 (((-639 $) (-639 |#4|) (-112) (-112) (-112)) 114)) (-1430 (($ |#4| $) 70) (($ (-639 |#4|) $) 71) (((-639 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 67)) (-3576 (((-639 |#4|) $) NIL)) (-2890 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1849 ((|#4| |#4| $) NIL)) (-1408 (((-112) $ $) NIL)) (-3725 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-2766 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1532 ((|#4| |#4| $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-3 |#4| "failed") $) 36)) (-3251 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3310 (((-3 $ "failed") $ |#4|) 48)) (-1353 (($ $ |#4|) NIL) (((-639 $) |#4| $) 82) (((-639 $) |#4| (-639 $)) NIL) (((-639 $) (-639 |#4|) $) NIL) (((-639 $) (-639 |#4|) (-639 $)) 77)) (-1763 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 16)) (-4307 (($) 14)) (-3598 (((-766) $) NIL)) (-1723 (((-766) |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) (((-766) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) 13)) (-4208 (((-535) $) NIL (|has| |#4| (-610 (-535))))) (-4066 (($ (-639 |#4|)) 21)) (-1812 (($ $ |#3|) 43)) (-3274 (($ $ |#3|) 44)) (-3277 (($ $) NIL)) (-1568 (($ $ |#3|) NIL)) (-4054 (((-857) $) 32) (((-639 |#4|) $) 41)) (-3730 (((-766) $) NIL (|has| |#3| (-367)))) (-2652 (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4252 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) NIL)) (-1612 (((-639 $) |#4| $) 79) (((-639 $) |#4| (-639 $)) NIL) (((-639 $) (-639 |#4|) $) NIL) (((-639 $) (-639 |#4|) (-639 $)) NIL)) (-1744 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-4089 (((-639 |#3|) $) NIL)) (-4211 (((-112) |#4| $) NIL)) (-3694 (((-112) |#3| $) 53)) (-1731 (((-112) $ $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-1022 |#1| |#2| |#3| |#4|) (-13 (-1064 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1430 ((-639 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2304 ((-639 $) (-639 |#4|) (-112) (-112))) (-15 -2304 ((-639 $) (-639 |#4|) (-112) (-112) (-112) (-112))) (-15 -1930 ((-639 $) (-639 |#4|) (-112) (-112) (-112))) (-15 -3383 ((-2 (|:| |val| (-639 |#4|)) (|:| |towers| (-639 $))) (-639 |#4|) (-112) (-112))))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|)) (T -1022))
-((-1430 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1022 *5 *6 *7 *3))) (-5 *1 (-1022 *5 *6 *7 *3)) (-4 *3 (-1058 *5 *6 *7)))) (-2304 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1022 *5 *6 *7 *8))) (-5 *1 (-1022 *5 *6 *7 *8)))) (-2304 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1022 *5 *6 *7 *8))) (-5 *1 (-1022 *5 *6 *7 *8)))) (-1930 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1022 *5 *6 *7 *8))) (-5 *1 (-1022 *5 *6 *7 *8)))) (-3383 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-639 *8)) (|:| |towers| (-639 (-1022 *5 *6 *7 *8))))) (-5 *1 (-1022 *5 *6 *7 *8)) (-5 *3 (-639 *8)))))
-(-13 (-1064 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1430 ((-639 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2304 ((-639 $) (-639 |#4|) (-112) (-112))) (-15 -2304 ((-639 $) (-639 |#4|) (-112) (-112) (-112) (-112))) (-15 -1930 ((-639 $) (-639 |#4|) (-112) (-112) (-112))) (-15 -3383 ((-2 (|:| |val| (-639 |#4|)) (|:| |towers| (-639 $))) (-639 |#4|) (-112) (-112)))))
-((-1514 (((-639 (-683 |#1|)) (-639 (-683 |#1|))) 58) (((-683 |#1|) (-683 |#1|)) 57) (((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-639 (-683 |#1|))) 56) (((-683 |#1|) (-683 |#1|) (-683 |#1|)) 53)) (-2957 (((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-916)) 52) (((-683 |#1|) (-683 |#1|) (-916)) 51)) (-1644 (((-639 (-683 (-562))) (-639 (-639 (-562)))) 68) (((-639 (-683 (-562))) (-639 (-900 (-562))) (-562)) 67) (((-683 (-562)) (-639 (-562))) 64) (((-683 (-562)) (-900 (-562)) (-562)) 63)) (-1401 (((-683 (-947 |#1|)) (-766)) 81)) (-1915 (((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-916)) 37 (|has| |#1| (-6 (-4404 "*")))) (((-683 |#1|) (-683 |#1|) (-916)) 35 (|has| |#1| (-6 (-4404 "*"))))))
-(((-1023 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4404 "*"))) (-15 -1915 ((-683 |#1|) (-683 |#1|) (-916))) |%noBranch|) (IF (|has| |#1| (-6 (-4404 "*"))) (-15 -1915 ((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-916))) |%noBranch|) (-15 -1401 ((-683 (-947 |#1|)) (-766))) (-15 -2957 ((-683 |#1|) (-683 |#1|) (-916))) (-15 -2957 ((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-916))) (-15 -1514 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -1514 ((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -1514 ((-683 |#1|) (-683 |#1|))) (-15 -1514 ((-639 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -1644 ((-683 (-562)) (-900 (-562)) (-562))) (-15 -1644 ((-683 (-562)) (-639 (-562)))) (-15 -1644 ((-639 (-683 (-562))) (-639 (-900 (-562))) (-562))) (-15 -1644 ((-639 (-683 (-562))) (-639 (-639 (-562)))))) (-1044)) (T -1023))
-((-1644 (*1 *2 *3) (-12 (-5 *3 (-639 (-639 (-562)))) (-5 *2 (-639 (-683 (-562)))) (-5 *1 (-1023 *4)) (-4 *4 (-1044)))) (-1644 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-900 (-562)))) (-5 *4 (-562)) (-5 *2 (-639 (-683 *4))) (-5 *1 (-1023 *5)) (-4 *5 (-1044)))) (-1644 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-1023 *4)) (-4 *4 (-1044)))) (-1644 (*1 *2 *3 *4) (-12 (-5 *3 (-900 (-562))) (-5 *4 (-562)) (-5 *2 (-683 *4)) (-5 *1 (-1023 *5)) (-4 *5 (-1044)))) (-1514 (*1 *2 *2) (-12 (-5 *2 (-639 (-683 *3))) (-4 *3 (-1044)) (-5 *1 (-1023 *3)))) (-1514 (*1 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-1023 *3)))) (-1514 (*1 *2 *2 *2) (-12 (-5 *2 (-639 (-683 *3))) (-4 *3 (-1044)) (-5 *1 (-1023 *3)))) (-1514 (*1 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-1023 *3)))) (-2957 (*1 *2 *2 *3) (-12 (-5 *2 (-639 (-683 *4))) (-5 *3 (-916)) (-4 *4 (-1044)) (-5 *1 (-1023 *4)))) (-2957 (*1 *2 *2 *3) (-12 (-5 *2 (-683 *4)) (-5 *3 (-916)) (-4 *4 (-1044)) (-5 *1 (-1023 *4)))) (-1401 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-683 (-947 *4))) (-5 *1 (-1023 *4)) (-4 *4 (-1044)))) (-1915 (*1 *2 *2 *3) (-12 (-5 *2 (-639 (-683 *4))) (-5 *3 (-916)) (|has| *4 (-6 (-4404 "*"))) (-4 *4 (-1044)) (-5 *1 (-1023 *4)))) (-1915 (*1 *2 *2 *3) (-12 (-5 *2 (-683 *4)) (-5 *3 (-916)) (|has| *4 (-6 (-4404 "*"))) (-4 *4 (-1044)) (-5 *1 (-1023 *4)))))
-(-10 -7 (IF (|has| |#1| (-6 (-4404 "*"))) (-15 -1915 ((-683 |#1|) (-683 |#1|) (-916))) |%noBranch|) (IF (|has| |#1| (-6 (-4404 "*"))) (-15 -1915 ((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-916))) |%noBranch|) (-15 -1401 ((-683 (-947 |#1|)) (-766))) (-15 -2957 ((-683 |#1|) (-683 |#1|) (-916))) (-15 -2957 ((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-916))) (-15 -1514 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -1514 ((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -1514 ((-683 |#1|) (-683 |#1|))) (-15 -1514 ((-639 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -1644 ((-683 (-562)) (-900 (-562)) (-562))) (-15 -1644 ((-683 (-562)) (-639 (-562)))) (-15 -1644 ((-639 (-683 (-562))) (-639 (-900 (-562))) (-562))) (-15 -1644 ((-639 (-683 (-562))) (-639 (-639 (-562))))))
-((-4288 (((-683 |#1|) (-639 (-683 |#1|)) (-1256 |#1|)) 49 (|has| |#1| (-306)))) (-2176 (((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-1256 (-1256 |#1|))) 75 (|has| |#1| (-362))) (((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-1256 |#1|)) 78 (|has| |#1| (-362)))) (-4067 (((-1256 |#1|) (-639 (-1256 |#1|)) (-562)) 92 (-12 (|has| |#1| (-362)) (|has| |#1| (-367))))) (-2260 (((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-916)) 84 (-12 (|has| |#1| (-362)) (|has| |#1| (-367)))) (((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-112)) 82 (-12 (|has| |#1| (-362)) (|has| |#1| (-367)))) (((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|))) 81 (-12 (|has| |#1| (-362)) (|has| |#1| (-367)))) (((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-112) (-562) (-562)) 80 (-12 (|has| |#1| (-362)) (|has| |#1| (-367))))) (-3419 (((-112) (-639 (-683 |#1|))) 70 (|has| |#1| (-362))) (((-112) (-639 (-683 |#1|)) (-562)) 72 (|has| |#1| (-362)))) (-2541 (((-1256 (-1256 |#1|)) (-639 (-683 |#1|)) (-1256 |#1|)) 47 (|has| |#1| (-306)))) (-3849 (((-683 |#1|) (-639 (-683 |#1|)) (-683 |#1|)) 33)) (-3088 (((-683 |#1|) (-1256 (-1256 |#1|))) 30)) (-3606 (((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)) (-562)) 64 (|has| |#1| (-362))) (((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|))) 63 (|has| |#1| (-362))) (((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)) (-112) (-562)) 68 (|has| |#1| (-362)))))
-(((-1024 |#1|) (-10 -7 (-15 -3088 ((-683 |#1|) (-1256 (-1256 |#1|)))) (-15 -3849 ((-683 |#1|) (-639 (-683 |#1|)) (-683 |#1|))) (IF (|has| |#1| (-306)) (PROGN (-15 -2541 ((-1256 (-1256 |#1|)) (-639 (-683 |#1|)) (-1256 |#1|))) (-15 -4288 ((-683 |#1|) (-639 (-683 |#1|)) (-1256 |#1|)))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-15 -3606 ((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)) (-112) (-562))) (-15 -3606 ((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -3606 ((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)) (-562))) (-15 -3419 ((-112) (-639 (-683 |#1|)) (-562))) (-15 -3419 ((-112) (-639 (-683 |#1|)))) (-15 -2176 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-1256 |#1|))) (-15 -2176 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-1256 (-1256 |#1|))))) |%noBranch|) (IF (|has| |#1| (-367)) (IF (|has| |#1| (-362)) (PROGN (-15 -2260 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-112) (-562) (-562))) (-15 -2260 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)))) (-15 -2260 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-112))) (-15 -2260 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-916))) (-15 -4067 ((-1256 |#1|) (-639 (-1256 |#1|)) (-562)))) |%noBranch|) |%noBranch|)) (-1044)) (T -1024))
-((-4067 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-1256 *5))) (-5 *4 (-562)) (-5 *2 (-1256 *5)) (-5 *1 (-1024 *5)) (-4 *5 (-362)) (-4 *5 (-367)) (-4 *5 (-1044)))) (-2260 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-4 *5 (-362)) (-4 *5 (-367)) (-4 *5 (-1044)) (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5)) (-5 *3 (-639 (-683 *5))))) (-2260 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-362)) (-4 *5 (-367)) (-4 *5 (-1044)) (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5)) (-5 *3 (-639 (-683 *5))))) (-2260 (*1 *2 *3) (-12 (-4 *4 (-362)) (-4 *4 (-367)) (-4 *4 (-1044)) (-5 *2 (-639 (-639 (-683 *4)))) (-5 *1 (-1024 *4)) (-5 *3 (-639 (-683 *4))))) (-2260 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-112)) (-5 *5 (-562)) (-4 *6 (-362)) (-4 *6 (-367)) (-4 *6 (-1044)) (-5 *2 (-639 (-639 (-683 *6)))) (-5 *1 (-1024 *6)) (-5 *3 (-639 (-683 *6))))) (-2176 (*1 *2 *3 *4) (-12 (-5 *4 (-1256 (-1256 *5))) (-4 *5 (-362)) (-4 *5 (-1044)) (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5)) (-5 *3 (-639 (-683 *5))))) (-2176 (*1 *2 *3 *4) (-12 (-5 *4 (-1256 *5)) (-4 *5 (-362)) (-4 *5 (-1044)) (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5)) (-5 *3 (-639 (-683 *5))))) (-3419 (*1 *2 *3) (-12 (-5 *3 (-639 (-683 *4))) (-4 *4 (-362)) (-4 *4 (-1044)) (-5 *2 (-112)) (-5 *1 (-1024 *4)))) (-3419 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-683 *5))) (-5 *4 (-562)) (-4 *5 (-362)) (-4 *5 (-1044)) (-5 *2 (-112)) (-5 *1 (-1024 *5)))) (-3606 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-639 (-683 *5))) (-5 *4 (-562)) (-5 *2 (-683 *5)) (-5 *1 (-1024 *5)) (-4 *5 (-362)) (-4 *5 (-1044)))) (-3606 (*1 *2 *3 *3) (-12 (-5 *3 (-639 (-683 *4))) (-5 *2 (-683 *4)) (-5 *1 (-1024 *4)) (-4 *4 (-362)) (-4 *4 (-1044)))) (-3606 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-639 (-683 *6))) (-5 *4 (-112)) (-5 *5 (-562)) (-5 *2 (-683 *6)) (-5 *1 (-1024 *6)) (-4 *6 (-362)) (-4 *6 (-1044)))) (-4288 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-683 *5))) (-5 *4 (-1256 *5)) (-4 *5 (-306)) (-4 *5 (-1044)) (-5 *2 (-683 *5)) (-5 *1 (-1024 *5)))) (-2541 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-683 *5))) (-4 *5 (-306)) (-4 *5 (-1044)) (-5 *2 (-1256 (-1256 *5))) (-5 *1 (-1024 *5)) (-5 *4 (-1256 *5)))) (-3849 (*1 *2 *3 *2) (-12 (-5 *3 (-639 (-683 *4))) (-5 *2 (-683 *4)) (-4 *4 (-1044)) (-5 *1 (-1024 *4)))) (-3088 (*1 *2 *3) (-12 (-5 *3 (-1256 (-1256 *4))) (-4 *4 (-1044)) (-5 *2 (-683 *4)) (-5 *1 (-1024 *4)))))
-(-10 -7 (-15 -3088 ((-683 |#1|) (-1256 (-1256 |#1|)))) (-15 -3849 ((-683 |#1|) (-639 (-683 |#1|)) (-683 |#1|))) (IF (|has| |#1| (-306)) (PROGN (-15 -2541 ((-1256 (-1256 |#1|)) (-639 (-683 |#1|)) (-1256 |#1|))) (-15 -4288 ((-683 |#1|) (-639 (-683 |#1|)) (-1256 |#1|)))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-15 -3606 ((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)) (-112) (-562))) (-15 -3606 ((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -3606 ((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)) (-562))) (-15 -3419 ((-112) (-639 (-683 |#1|)) (-562))) (-15 -3419 ((-112) (-639 (-683 |#1|)))) (-15 -2176 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-1256 |#1|))) (-15 -2176 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-1256 (-1256 |#1|))))) |%noBranch|) (IF (|has| |#1| (-367)) (IF (|has| |#1| (-362)) (PROGN (-15 -2260 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-112) (-562) (-562))) (-15 -2260 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)))) (-15 -2260 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-112))) (-15 -2260 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-916))) (-15 -4067 ((-1256 |#1|) (-639 (-1256 |#1|)) (-562)))) |%noBranch|) |%noBranch|))
-((-2531 ((|#1| (-916) |#1|) 9)))
-(((-1025 |#1|) (-10 -7 (-15 -2531 (|#1| (-916) |#1|))) (-13 (-1092) (-10 -8 (-15 -1835 ($ $ $))))) (T -1025))
-((-2531 (*1 *2 *3 *2) (-12 (-5 *3 (-916)) (-5 *1 (-1025 *2)) (-4 *2 (-13 (-1092) (-10 -8 (-15 -1835 ($ $ $))))))))
-(-10 -7 (-15 -2531 (|#1| (-916) |#1|)))
-((-1346 (((-639 (-2 (|:| |radval| (-315 (-562))) (|:| |radmult| (-562)) (|:| |radvect| (-639 (-683 (-315 (-562))))))) (-683 (-406 (-947 (-562))))) 59)) (-3985 (((-639 (-683 (-315 (-562)))) (-315 (-562)) (-683 (-406 (-947 (-562))))) 48)) (-2252 (((-639 (-315 (-562))) (-683 (-406 (-947 (-562))))) 41)) (-2509 (((-639 (-683 (-315 (-562)))) (-683 (-406 (-947 (-562))))) 68)) (-1327 (((-683 (-315 (-562))) (-683 (-315 (-562)))) 34)) (-2128 (((-639 (-683 (-315 (-562)))) (-639 (-683 (-315 (-562))))) 62)) (-1676 (((-3 (-683 (-315 (-562))) "failed") (-683 (-406 (-947 (-562))))) 66)))
-(((-1026) (-10 -7 (-15 -1346 ((-639 (-2 (|:| |radval| (-315 (-562))) (|:| |radmult| (-562)) (|:| |radvect| (-639 (-683 (-315 (-562))))))) (-683 (-406 (-947 (-562)))))) (-15 -3985 ((-639 (-683 (-315 (-562)))) (-315 (-562)) (-683 (-406 (-947 (-562)))))) (-15 -2252 ((-639 (-315 (-562))) (-683 (-406 (-947 (-562)))))) (-15 -1676 ((-3 (-683 (-315 (-562))) "failed") (-683 (-406 (-947 (-562)))))) (-15 -1327 ((-683 (-315 (-562))) (-683 (-315 (-562))))) (-15 -2128 ((-639 (-683 (-315 (-562)))) (-639 (-683 (-315 (-562)))))) (-15 -2509 ((-639 (-683 (-315 (-562)))) (-683 (-406 (-947 (-562)))))))) (T -1026))
-((-2509 (*1 *2 *3) (-12 (-5 *3 (-683 (-406 (-947 (-562))))) (-5 *2 (-639 (-683 (-315 (-562))))) (-5 *1 (-1026)))) (-2128 (*1 *2 *2) (-12 (-5 *2 (-639 (-683 (-315 (-562))))) (-5 *1 (-1026)))) (-1327 (*1 *2 *2) (-12 (-5 *2 (-683 (-315 (-562)))) (-5 *1 (-1026)))) (-1676 (*1 *2 *3) (|partial| -12 (-5 *3 (-683 (-406 (-947 (-562))))) (-5 *2 (-683 (-315 (-562)))) (-5 *1 (-1026)))) (-2252 (*1 *2 *3) (-12 (-5 *3 (-683 (-406 (-947 (-562))))) (-5 *2 (-639 (-315 (-562)))) (-5 *1 (-1026)))) (-3985 (*1 *2 *3 *4) (-12 (-5 *4 (-683 (-406 (-947 (-562))))) (-5 *2 (-639 (-683 (-315 (-562))))) (-5 *1 (-1026)) (-5 *3 (-315 (-562))))) (-1346 (*1 *2 *3) (-12 (-5 *3 (-683 (-406 (-947 (-562))))) (-5 *2 (-639 (-2 (|:| |radval| (-315 (-562))) (|:| |radmult| (-562)) (|:| |radvect| (-639 (-683 (-315 (-562)))))))) (-5 *1 (-1026)))))
-(-10 -7 (-15 -1346 ((-639 (-2 (|:| |radval| (-315 (-562))) (|:| |radmult| (-562)) (|:| |radvect| (-639 (-683 (-315 (-562))))))) (-683 (-406 (-947 (-562)))))) (-15 -3985 ((-639 (-683 (-315 (-562)))) (-315 (-562)) (-683 (-406 (-947 (-562)))))) (-15 -2252 ((-639 (-315 (-562))) (-683 (-406 (-947 (-562)))))) (-15 -1676 ((-3 (-683 (-315 (-562))) "failed") (-683 (-406 (-947 (-562)))))) (-15 -1327 ((-683 (-315 (-562))) (-683 (-315 (-562))))) (-15 -2128 ((-639 (-683 (-315 (-562)))) (-639 (-683 (-315 (-562)))))) (-15 -2509 ((-639 (-683 (-315 (-562)))) (-683 (-406 (-947 (-562)))))))
-((-2734 ((|#1| |#1| (-916)) 9)))
-(((-1027 |#1|) (-10 -7 (-15 -2734 (|#1| |#1| (-916)))) (-13 (-1092) (-10 -8 (-15 * ($ $ $))))) (T -1027))
-((-2734 (*1 *2 *2 *3) (-12 (-5 *3 (-916)) (-5 *1 (-1027 *2)) (-4 *2 (-13 (-1092) (-10 -8 (-15 * ($ $ $))))))))
-(-10 -7 (-15 -2734 (|#1| |#1| (-916))))
-((-4054 ((|#1| (-311)) 11) (((-1261) |#1|) 9)))
-(((-1028 |#1|) (-10 -7 (-15 -4054 ((-1261) |#1|)) (-15 -4054 (|#1| (-311)))) (-1207)) (T -1028))
-((-4054 (*1 *2 *3) (-12 (-5 *3 (-311)) (-5 *1 (-1028 *2)) (-4 *2 (-1207)))) (-4054 (*1 *2 *3) (-12 (-5 *2 (-1261)) (-5 *1 (-1028 *3)) (-4 *3 (-1207)))))
-(-10 -7 (-15 -4054 ((-1261) |#1|)) (-15 -4054 (|#1| (-311))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-1955 (($ |#4|) 25)) (-3668 (((-3 $ "failed") $) NIL)) (-1957 (((-112) $) NIL)) (-1943 ((|#4| $) 27)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 46) (($ (-562)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-2579 (((-766)) 43)) (-2286 (($) 21 T CONST)) (-2294 (($) 23 T CONST)) (-1731 (((-112) $ $) 40)) (-1848 (($ $) 31) (($ $ $) NIL)) (-1835 (($ $ $) 29)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
-(((-1029 |#1| |#2| |#3| |#4| |#5|) (-13 (-171) (-38 |#1|) (-10 -8 (-15 -1955 ($ |#4|)) (-15 -4054 ($ |#4|)) (-15 -1943 (|#4| $)))) (-362) (-788) (-845) (-944 |#1| |#2| |#3|) (-639 |#4|)) (T -1029))
-((-1955 (*1 *1 *2) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-1029 *3 *4 *5 *2 *6)) (-4 *2 (-944 *3 *4 *5)) (-14 *6 (-639 *2)))) (-4054 (*1 *1 *2) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-1029 *3 *4 *5 *2 *6)) (-4 *2 (-944 *3 *4 *5)) (-14 *6 (-639 *2)))) (-1943 (*1 *2 *1) (-12 (-4 *2 (-944 *3 *4 *5)) (-5 *1 (-1029 *3 *4 *5 *2 *6)) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-14 *6 (-639 *2)))))
-(-13 (-171) (-38 |#1|) (-10 -8 (-15 -1955 ($ |#4|)) (-15 -4054 ($ |#4|)) (-15 -1943 (|#4| $))))
-((-4041 (((-112) $ $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) NIL)) (-3052 (((-1261) $ (-1168) (-1168)) NIL (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) NIL)) (-2392 (((-112) (-112)) 39)) (-1572 (((-112) (-112)) 38)) (-4200 (((-52) $ (-1168) (-52)) NIL)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402)))) (-1472 (((-3 (-52) "failed") (-1168) $) NIL)) (-1800 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092))))) (-4000 (($ (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) NIL (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-3 (-52) "failed") (-1168) $) NIL)) (-1475 (($ (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (($ (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $ (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (((-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $ (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402)))) (-1505 (((-52) $ (-1168) (-52)) NIL (|has| $ (-6 -4403)))) (-1420 (((-52) $ (-1168)) NIL)) (-1720 (((-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-639 (-52)) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-1168) $) NIL (|has| (-1168) (-845)))) (-1912 (((-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-639 (-52)) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-52) (-1092))))) (-3874 (((-1168) $) NIL (|has| (-1168) (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092))))) (-1520 (((-639 (-1168)) $) 34)) (-4265 (((-112) (-1168) $) NIL)) (-3262 (((-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) NIL)) (-4300 (($ (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) NIL)) (-2093 (((-639 (-1168)) $) NIL)) (-1570 (((-112) (-1168) $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092))))) (-1421 (((-52) $) NIL (|has| (-1168) (-845)))) (-3251 (((-3 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) "failed") (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL)) (-2716 (($ $ (-52)) NIL (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) NIL)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))))) NIL (-12 (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (($ $ (-293 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) NIL (-12 (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (($ $ (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) NIL (-12 (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (($ $ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) NIL (-12 (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (($ $ (-639 (-52)) (-639 (-52))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-293 (-52))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-639 (-293 (-52)))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-52) (-1092))))) (-2411 (((-639 (-52)) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 (((-52) $ (-1168)) 35) (((-52) $ (-1168) (-52)) NIL)) (-3564 (($) NIL) (($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (((-766) (-52) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-52) (-1092)))) (((-766) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) NIL)) (-4054 (((-857) $) 37 (-4037 (|has| (-52) (-609 (-857))) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-609 (-857)))))) (-1932 (($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) NIL)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-1030) (-13 (-1183 (-1168) (-52)) (-10 -7 (-15 -2392 ((-112) (-112))) (-15 -1572 ((-112) (-112))) (-6 -4402)))) (T -1030))
-((-2392 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1030)))) (-1572 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1030)))))
-(-13 (-1183 (-1168) (-52)) (-10 -7 (-15 -2392 ((-112) (-112))) (-15 -1572 ((-112) (-112))) (-6 -4402)))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1743 (((-1127) $) 9)) (-4054 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-3888 (((-639 (-378)) (-947 (-562)) (-378)) 28) (((-639 (-378)) (-947 (-406 (-562))) (-378)) 27)) (-2107 (((-639 (-639 (-378))) (-639 (-947 (-562))) (-639 (-1168)) (-378)) 37)))
+(((-1018) (-10 -7 (-15 -3888 ((-639 (-378)) (-947 (-406 (-562))) (-378))) (-15 -3888 ((-639 (-378)) (-947 (-562)) (-378))) (-15 -2107 ((-639 (-639 (-378))) (-639 (-947 (-562))) (-639 (-1168)) (-378))))) (T -1018))
+((-2107 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-639 (-1168))) (-5 *2 (-639 (-639 (-378)))) (-5 *1 (-1018)) (-5 *5 (-378)))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-947 (-562))) (-5 *2 (-639 (-378))) (-5 *1 (-1018)) (-5 *4 (-378)))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-947 (-406 (-562)))) (-5 *2 (-639 (-378))) (-5 *1 (-1018)) (-5 *4 (-378)))))
+(-10 -7 (-15 -3888 ((-639 (-378)) (-947 (-406 (-562))) (-378))) (-15 -3888 ((-639 (-378)) (-947 (-562)) (-378))) (-15 -2107 ((-639 (-639 (-378))) (-639 (-947 (-562))) (-639 (-1168)) (-378))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 70)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1644 (($ $) NIL) (($ $ (-916)) NIL) (($ (-406 (-562))) NIL) (($ (-562)) NIL)) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) 65)) (-3329 (($) NIL T CONST)) (-2608 (((-3 $ "failed") (-1164 $) (-916) (-857)) NIL) (((-3 $ "failed") (-1164 $) (-916)) 50)) (-4048 (((-3 (-406 (-562)) "failed") $) NIL (|has| (-406 (-562)) (-1033 (-406 (-562))))) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#1| "failed") $) 107) (((-3 (-562) "failed") $) NIL (-4037 (|has| (-406 (-562)) (-1033 (-562))) (|has| |#1| (-1033 (-562)))))) (-3960 (((-406 (-562)) $) 15 (|has| (-406 (-562)) (-1033 (-406 (-562))))) (((-406 (-562)) $) 15) ((|#1| $) 108) (((-562) $) NIL (-4037 (|has| (-406 (-562)) (-1033 (-562))) (|has| |#1| (-1033 (-562)))))) (-2225 (($ $ (-857)) 42)) (-3783 (($ $ (-857)) 43)) (-1810 (($ $ $) NIL)) (-2918 (((-406 (-562)) $ $) 19)) (-1694 (((-3 $ "failed") $) 83)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2696 (((-112) $) 61)) (-4367 (((-112) $) NIL)) (-1895 (($ $ (-562)) NIL)) (-3855 (((-112) $) 64)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2077 (((-3 (-1164 $) "failed") $) 78)) (-3296 (((-3 (-857) "failed") $) 77)) (-2437 (((-3 (-1164 $) "failed") $) 75)) (-3786 (((-3 (-1054 $ (-1164 $)) "failed") $) 73)) (-1564 (($ (-639 $)) NIL) (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 84)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ (-639 $)) NIL) (($ $ $) NIL)) (-1635 (((-417 $) $) NIL)) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4053 (((-857) $) 82) (($ (-562)) NIL) (($ (-406 (-562))) NIL) (($ $) 58) (($ (-406 (-562))) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL) (($ |#1|) 110)) (-1568 (((-766)) NIL)) (-3799 (((-112) $ $) NIL)) (-1406 (((-406 (-562)) $ $) 25)) (-4383 (((-639 $) (-1164 $)) 56) (((-639 $) (-1164 (-406 (-562)))) NIL) (((-639 $) (-1164 (-562))) NIL) (((-639 $) (-947 $)) NIL) (((-639 $) (-947 (-406 (-562)))) NIL) (((-639 $) (-947 (-562))) NIL)) (-4268 (($ (-1054 $ (-1164 $)) (-857)) 41)) (-2757 (($ $) 20)) (-2285 (($) 29 T CONST)) (-2294 (($) 35 T CONST)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 71)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 22)) (-1859 (($ $ $) 33)) (-1847 (($ $) 34) (($ $ $) 69)) (-1836 (($ $ $) 103)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL) (($ $ (-406 (-562))) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 91) (($ $ $) 96) (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL) (($ (-562) $) 91) (($ $ (-562)) NIL) (($ (-406 (-562)) $) NIL) (($ $ (-406 (-562))) NIL) (($ |#1| $) 95) (($ $ |#1|) NIL)))
+(((-1019 |#1|) (-13 (-1007) (-410 |#1|) (-38 |#1|) (-10 -8 (-15 -4268 ($ (-1054 $ (-1164 $)) (-857))) (-15 -3786 ((-3 (-1054 $ (-1164 $)) "failed") $)) (-15 -2918 ((-406 (-562)) $ $)))) (-13 (-843) (-362) (-1017))) (T -1019))
+((-4268 (*1 *1 *2 *3) (-12 (-5 *2 (-1054 (-1019 *4) (-1164 (-1019 *4)))) (-5 *3 (-857)) (-5 *1 (-1019 *4)) (-4 *4 (-13 (-843) (-362) (-1017))))) (-3786 (*1 *2 *1) (|partial| -12 (-5 *2 (-1054 (-1019 *3) (-1164 (-1019 *3)))) (-5 *1 (-1019 *3)) (-4 *3 (-13 (-843) (-362) (-1017))))) (-2918 (*1 *2 *1 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-1019 *3)) (-4 *3 (-13 (-843) (-362) (-1017))))))
+(-13 (-1007) (-410 |#1|) (-38 |#1|) (-10 -8 (-15 -4268 ($ (-1054 $ (-1164 $)) (-857))) (-15 -3786 ((-3 (-1054 $ (-1164 $)) "failed") $)) (-15 -2918 ((-406 (-562)) $ $))))
+((-2459 (((-2 (|:| -3339 |#2|) (|:| -2429 (-639 |#1|))) |#2| (-639 |#1|)) 20) ((|#2| |#2| |#1|) 15)))
+(((-1020 |#1| |#2|) (-10 -7 (-15 -2459 (|#2| |#2| |#1|)) (-15 -2459 ((-2 (|:| -3339 |#2|) (|:| -2429 (-639 |#1|))) |#2| (-639 |#1|)))) (-362) (-650 |#1|)) (T -1020))
+((-2459 (*1 *2 *3 *4) (-12 (-4 *5 (-362)) (-5 *2 (-2 (|:| -3339 *3) (|:| -2429 (-639 *5)))) (-5 *1 (-1020 *5 *3)) (-5 *4 (-639 *5)) (-4 *3 (-650 *5)))) (-2459 (*1 *2 *2 *3) (-12 (-4 *3 (-362)) (-5 *1 (-1020 *3 *2)) (-4 *2 (-650 *3)))))
+(-10 -7 (-15 -2459 (|#2| |#2| |#1|)) (-15 -2459 ((-2 (|:| -3339 |#2|) (|:| -2429 (-639 |#1|))) |#2| (-639 |#1|))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2617 ((|#1| $ |#1|) 14)) (-4200 ((|#1| $ |#1|) 12)) (-3396 (($ |#1|) 10)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2343 ((|#1| $) 11)) (-1700 ((|#1| $) 13)) (-4053 (((-857) $) 21 (|has| |#1| (-1092)))) (-1733 (((-112) $ $) 9)))
+(((-1021 |#1|) (-13 (-1207) (-10 -8 (-15 -3396 ($ |#1|)) (-15 -2343 (|#1| $)) (-15 -4200 (|#1| $ |#1|)) (-15 -1700 (|#1| $)) (-15 -2617 (|#1| $ |#1|)) (-15 -1733 ((-112) $ $)) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|))) (-1207)) (T -1021))
+((-3396 (*1 *1 *2) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))) (-2343 (*1 *2 *1) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))) (-4200 (*1 *2 *1 *2) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))) (-1700 (*1 *2 *1) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))) (-2617 (*1 *2 *1 *2) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))) (-1733 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1021 *3)) (-4 *3 (-1207)))))
+(-13 (-1207) (-10 -8 (-15 -3396 ($ |#1|)) (-15 -2343 (|#1| $)) (-15 -4200 (|#1| $ |#1|)) (-15 -1700 (|#1| $)) (-15 -2617 (|#1| $ |#1|)) (-15 -1733 ((-112) $ $)) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|)))
+((-4041 (((-112) $ $) NIL)) (-1330 (((-639 (-2 (|:| -1449 $) (|:| -3315 (-639 |#4|)))) (-639 |#4|)) NIL)) (-3672 (((-639 $) (-639 |#4|)) 105) (((-639 $) (-639 |#4|) (-112)) 106) (((-639 $) (-639 |#4|) (-112) (-112)) 104) (((-639 $) (-639 |#4|) (-112) (-112) (-112) (-112)) 107)) (-1401 (((-639 |#3|) $) NIL)) (-2799 (((-112) $) NIL)) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-4177 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3623 ((|#4| |#4| $) NIL)) (-1977 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 $))) |#4| $) 99)) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |#3|) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-3556 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403))) (((-3 |#4| "failed") $ |#3|) 54)) (-3329 (($) NIL T CONST)) (-2169 (((-112) $) 27 (|has| |#1| (-554)))) (-2183 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2864 (((-112) $ $) NIL (|has| |#1| (-554)))) (-4219 (((-112) $) NIL (|has| |#1| (-554)))) (-4227 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2037 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4230 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) NIL)) (-3960 (($ (-639 |#4|)) NIL)) (-1434 (((-3 $ "failed") $) 40)) (-3255 ((|#4| |#4| $) 57)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-1475 (($ |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-1441 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 73 (|has| |#1| (-554)))) (-3300 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-2227 ((|#4| |#4| $) NIL)) (-1954 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4403))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4403))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1471 (((-2 (|:| -1449 (-639 |#4|)) (|:| -3315 (-639 |#4|))) $) NIL)) (-3189 (((-112) |#4| $) NIL)) (-2633 (((-112) |#4| $) NIL)) (-2813 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3764 (((-2 (|:| |val| (-639 |#4|)) (|:| |towers| (-639 $))) (-639 |#4|) (-112) (-112)) 119)) (-1720 (((-639 |#4|) $) 17 (|has| $ (-6 -4403)))) (-1493 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3761 ((|#3| $) 34)) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#4|) $) 18 (|has| $ (-6 -4403)))) (-1572 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-1491 (($ (-1 |#4| |#4|) $) 24 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#4| |#4|) $) 22)) (-3133 (((-639 |#3|) $) NIL)) (-3112 (((-112) |#3| $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-4093 (((-3 |#4| (-639 $)) |#4| |#4| $) NIL)) (-2672 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 $))) |#4| |#4| $) 97)) (-1504 (((-3 |#4| "failed") $) 38)) (-2334 (((-639 $) |#4| $) 80)) (-4302 (((-3 (-112) (-639 $)) |#4| $) NIL)) (-3792 (((-639 (-2 (|:| |val| (-112)) (|:| -1501 $))) |#4| $) 90) (((-112) |#4| $) 52)) (-4169 (((-639 $) |#4| $) 102) (((-639 $) (-639 |#4|) $) NIL) (((-639 $) (-639 |#4|) (-639 $)) 103) (((-639 $) |#4| (-639 $)) NIL)) (-4110 (((-639 $) (-639 |#4|) (-112) (-112) (-112)) 114)) (-1997 (($ |#4| $) 70) (($ (-639 |#4|) $) 71) (((-639 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 67)) (-2063 (((-639 |#4|) $) NIL)) (-1645 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2651 ((|#4| |#4| $) NIL)) (-1789 (((-112) $ $) NIL)) (-4123 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-2830 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1630 ((|#4| |#4| $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-3 |#4| "failed") $) 36)) (-1963 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-4333 (((-3 $ "failed") $ |#4|) 48)) (-4316 (($ $ |#4|) NIL) (((-639 $) |#4| $) 82) (((-639 $) |#4| (-639 $)) NIL) (((-639 $) (-639 |#4|) $) NIL) (((-639 $) (-639 |#4|) (-639 $)) 77)) (-3008 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 16)) (-1663 (($) 14)) (-2250 (((-766) $) NIL)) (-1723 (((-766) |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) (((-766) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) 13)) (-4208 (((-535) $) NIL (|has| |#4| (-610 (-535))))) (-4064 (($ (-639 |#4|)) 21)) (-2316 (($ $ |#3|) 43)) (-2180 (($ $ |#3|) 44)) (-2209 (($ $) NIL)) (-1962 (($ $ |#3|) NIL)) (-4053 (((-857) $) 32) (((-639 |#4|) $) 41)) (-4157 (((-766) $) NIL (|has| |#3| (-367)))) (-4168 (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2350 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) NIL)) (-4125 (((-639 $) |#4| $) 79) (((-639 $) |#4| (-639 $)) NIL) (((-639 $) (-639 |#4|) $) NIL) (((-639 $) (-639 |#4|) (-639 $)) NIL)) (-2879 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-3278 (((-639 |#3|) $) NIL)) (-1972 (((-112) |#4| $) NIL)) (-3782 (((-112) |#3| $) 53)) (-1733 (((-112) $ $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-1022 |#1| |#2| |#3| |#4|) (-13 (-1064 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1997 ((-639 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3672 ((-639 $) (-639 |#4|) (-112) (-112))) (-15 -3672 ((-639 $) (-639 |#4|) (-112) (-112) (-112) (-112))) (-15 -4110 ((-639 $) (-639 |#4|) (-112) (-112) (-112))) (-15 -3764 ((-2 (|:| |val| (-639 |#4|)) (|:| |towers| (-639 $))) (-639 |#4|) (-112) (-112))))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|)) (T -1022))
+((-1997 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1022 *5 *6 *7 *3))) (-5 *1 (-1022 *5 *6 *7 *3)) (-4 *3 (-1058 *5 *6 *7)))) (-3672 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1022 *5 *6 *7 *8))) (-5 *1 (-1022 *5 *6 *7 *8)))) (-3672 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1022 *5 *6 *7 *8))) (-5 *1 (-1022 *5 *6 *7 *8)))) (-4110 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1022 *5 *6 *7 *8))) (-5 *1 (-1022 *5 *6 *7 *8)))) (-3764 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-639 *8)) (|:| |towers| (-639 (-1022 *5 *6 *7 *8))))) (-5 *1 (-1022 *5 *6 *7 *8)) (-5 *3 (-639 *8)))))
+(-13 (-1064 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1997 ((-639 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3672 ((-639 $) (-639 |#4|) (-112) (-112))) (-15 -3672 ((-639 $) (-639 |#4|) (-112) (-112) (-112) (-112))) (-15 -4110 ((-639 $) (-639 |#4|) (-112) (-112) (-112))) (-15 -3764 ((-2 (|:| |val| (-639 |#4|)) (|:| |towers| (-639 $))) (-639 |#4|) (-112) (-112)))))
+((-2699 (((-639 (-683 |#1|)) (-639 (-683 |#1|))) 58) (((-683 |#1|) (-683 |#1|)) 57) (((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-639 (-683 |#1|))) 56) (((-683 |#1|) (-683 |#1|) (-683 |#1|)) 53)) (-4150 (((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-916)) 52) (((-683 |#1|) (-683 |#1|) (-916)) 51)) (-1313 (((-639 (-683 (-562))) (-639 (-639 (-562)))) 68) (((-639 (-683 (-562))) (-639 (-900 (-562))) (-562)) 67) (((-683 (-562)) (-639 (-562))) 64) (((-683 (-562)) (-900 (-562)) (-562)) 63)) (-1736 (((-683 (-947 |#1|)) (-766)) 81)) (-2143 (((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-916)) 37 (|has| |#1| (-6 (-4405 "*")))) (((-683 |#1|) (-683 |#1|) (-916)) 35 (|has| |#1| (-6 (-4405 "*"))))))
+(((-1023 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4405 "*"))) (-15 -2143 ((-683 |#1|) (-683 |#1|) (-916))) |%noBranch|) (IF (|has| |#1| (-6 (-4405 "*"))) (-15 -2143 ((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-916))) |%noBranch|) (-15 -1736 ((-683 (-947 |#1|)) (-766))) (-15 -4150 ((-683 |#1|) (-683 |#1|) (-916))) (-15 -4150 ((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-916))) (-15 -2699 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -2699 ((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -2699 ((-683 |#1|) (-683 |#1|))) (-15 -2699 ((-639 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -1313 ((-683 (-562)) (-900 (-562)) (-562))) (-15 -1313 ((-683 (-562)) (-639 (-562)))) (-15 -1313 ((-639 (-683 (-562))) (-639 (-900 (-562))) (-562))) (-15 -1313 ((-639 (-683 (-562))) (-639 (-639 (-562)))))) (-1044)) (T -1023))
+((-1313 (*1 *2 *3) (-12 (-5 *3 (-639 (-639 (-562)))) (-5 *2 (-639 (-683 (-562)))) (-5 *1 (-1023 *4)) (-4 *4 (-1044)))) (-1313 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-900 (-562)))) (-5 *4 (-562)) (-5 *2 (-639 (-683 *4))) (-5 *1 (-1023 *5)) (-4 *5 (-1044)))) (-1313 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-1023 *4)) (-4 *4 (-1044)))) (-1313 (*1 *2 *3 *4) (-12 (-5 *3 (-900 (-562))) (-5 *4 (-562)) (-5 *2 (-683 *4)) (-5 *1 (-1023 *5)) (-4 *5 (-1044)))) (-2699 (*1 *2 *2) (-12 (-5 *2 (-639 (-683 *3))) (-4 *3 (-1044)) (-5 *1 (-1023 *3)))) (-2699 (*1 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-1023 *3)))) (-2699 (*1 *2 *2 *2) (-12 (-5 *2 (-639 (-683 *3))) (-4 *3 (-1044)) (-5 *1 (-1023 *3)))) (-2699 (*1 *2 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-1023 *3)))) (-4150 (*1 *2 *2 *3) (-12 (-5 *2 (-639 (-683 *4))) (-5 *3 (-916)) (-4 *4 (-1044)) (-5 *1 (-1023 *4)))) (-4150 (*1 *2 *2 *3) (-12 (-5 *2 (-683 *4)) (-5 *3 (-916)) (-4 *4 (-1044)) (-5 *1 (-1023 *4)))) (-1736 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-683 (-947 *4))) (-5 *1 (-1023 *4)) (-4 *4 (-1044)))) (-2143 (*1 *2 *2 *3) (-12 (-5 *2 (-639 (-683 *4))) (-5 *3 (-916)) (|has| *4 (-6 (-4405 "*"))) (-4 *4 (-1044)) (-5 *1 (-1023 *4)))) (-2143 (*1 *2 *2 *3) (-12 (-5 *2 (-683 *4)) (-5 *3 (-916)) (|has| *4 (-6 (-4405 "*"))) (-4 *4 (-1044)) (-5 *1 (-1023 *4)))))
+(-10 -7 (IF (|has| |#1| (-6 (-4405 "*"))) (-15 -2143 ((-683 |#1|) (-683 |#1|) (-916))) |%noBranch|) (IF (|has| |#1| (-6 (-4405 "*"))) (-15 -2143 ((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-916))) |%noBranch|) (-15 -1736 ((-683 (-947 |#1|)) (-766))) (-15 -4150 ((-683 |#1|) (-683 |#1|) (-916))) (-15 -4150 ((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-916))) (-15 -2699 ((-683 |#1|) (-683 |#1|) (-683 |#1|))) (-15 -2699 ((-639 (-683 |#1|)) (-639 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -2699 ((-683 |#1|) (-683 |#1|))) (-15 -2699 ((-639 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -1313 ((-683 (-562)) (-900 (-562)) (-562))) (-15 -1313 ((-683 (-562)) (-639 (-562)))) (-15 -1313 ((-639 (-683 (-562))) (-639 (-900 (-562))) (-562))) (-15 -1313 ((-639 (-683 (-562))) (-639 (-639 (-562))))))
+((-1424 (((-683 |#1|) (-639 (-683 |#1|)) (-1256 |#1|)) 49 (|has| |#1| (-306)))) (-1841 (((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-1256 (-1256 |#1|))) 75 (|has| |#1| (-362))) (((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-1256 |#1|)) 78 (|has| |#1| (-362)))) (-3086 (((-1256 |#1|) (-639 (-1256 |#1|)) (-562)) 92 (-12 (|has| |#1| (-362)) (|has| |#1| (-367))))) (-1391 (((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-916)) 84 (-12 (|has| |#1| (-362)) (|has| |#1| (-367)))) (((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-112)) 82 (-12 (|has| |#1| (-362)) (|has| |#1| (-367)))) (((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|))) 81 (-12 (|has| |#1| (-362)) (|has| |#1| (-367)))) (((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-112) (-562) (-562)) 80 (-12 (|has| |#1| (-362)) (|has| |#1| (-367))))) (-4128 (((-112) (-639 (-683 |#1|))) 70 (|has| |#1| (-362))) (((-112) (-639 (-683 |#1|)) (-562)) 72 (|has| |#1| (-362)))) (-4239 (((-1256 (-1256 |#1|)) (-639 (-683 |#1|)) (-1256 |#1|)) 47 (|has| |#1| (-306)))) (-2837 (((-683 |#1|) (-639 (-683 |#1|)) (-683 |#1|)) 33)) (-3989 (((-683 |#1|) (-1256 (-1256 |#1|))) 30)) (-2318 (((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)) (-562)) 64 (|has| |#1| (-362))) (((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|))) 63 (|has| |#1| (-362))) (((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)) (-112) (-562)) 68 (|has| |#1| (-362)))))
+(((-1024 |#1|) (-10 -7 (-15 -3989 ((-683 |#1|) (-1256 (-1256 |#1|)))) (-15 -2837 ((-683 |#1|) (-639 (-683 |#1|)) (-683 |#1|))) (IF (|has| |#1| (-306)) (PROGN (-15 -4239 ((-1256 (-1256 |#1|)) (-639 (-683 |#1|)) (-1256 |#1|))) (-15 -1424 ((-683 |#1|) (-639 (-683 |#1|)) (-1256 |#1|)))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-15 -2318 ((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)) (-112) (-562))) (-15 -2318 ((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -2318 ((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)) (-562))) (-15 -4128 ((-112) (-639 (-683 |#1|)) (-562))) (-15 -4128 ((-112) (-639 (-683 |#1|)))) (-15 -1841 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-1256 |#1|))) (-15 -1841 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-1256 (-1256 |#1|))))) |%noBranch|) (IF (|has| |#1| (-367)) (IF (|has| |#1| (-362)) (PROGN (-15 -1391 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-112) (-562) (-562))) (-15 -1391 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)))) (-15 -1391 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-112))) (-15 -1391 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-916))) (-15 -3086 ((-1256 |#1|) (-639 (-1256 |#1|)) (-562)))) |%noBranch|) |%noBranch|)) (-1044)) (T -1024))
+((-3086 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-1256 *5))) (-5 *4 (-562)) (-5 *2 (-1256 *5)) (-5 *1 (-1024 *5)) (-4 *5 (-362)) (-4 *5 (-367)) (-4 *5 (-1044)))) (-1391 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-4 *5 (-362)) (-4 *5 (-367)) (-4 *5 (-1044)) (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5)) (-5 *3 (-639 (-683 *5))))) (-1391 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-362)) (-4 *5 (-367)) (-4 *5 (-1044)) (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5)) (-5 *3 (-639 (-683 *5))))) (-1391 (*1 *2 *3) (-12 (-4 *4 (-362)) (-4 *4 (-367)) (-4 *4 (-1044)) (-5 *2 (-639 (-639 (-683 *4)))) (-5 *1 (-1024 *4)) (-5 *3 (-639 (-683 *4))))) (-1391 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-112)) (-5 *5 (-562)) (-4 *6 (-362)) (-4 *6 (-367)) (-4 *6 (-1044)) (-5 *2 (-639 (-639 (-683 *6)))) (-5 *1 (-1024 *6)) (-5 *3 (-639 (-683 *6))))) (-1841 (*1 *2 *3 *4) (-12 (-5 *4 (-1256 (-1256 *5))) (-4 *5 (-362)) (-4 *5 (-1044)) (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5)) (-5 *3 (-639 (-683 *5))))) (-1841 (*1 *2 *3 *4) (-12 (-5 *4 (-1256 *5)) (-4 *5 (-362)) (-4 *5 (-1044)) (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5)) (-5 *3 (-639 (-683 *5))))) (-4128 (*1 *2 *3) (-12 (-5 *3 (-639 (-683 *4))) (-4 *4 (-362)) (-4 *4 (-1044)) (-5 *2 (-112)) (-5 *1 (-1024 *4)))) (-4128 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-683 *5))) (-5 *4 (-562)) (-4 *5 (-362)) (-4 *5 (-1044)) (-5 *2 (-112)) (-5 *1 (-1024 *5)))) (-2318 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-639 (-683 *5))) (-5 *4 (-562)) (-5 *2 (-683 *5)) (-5 *1 (-1024 *5)) (-4 *5 (-362)) (-4 *5 (-1044)))) (-2318 (*1 *2 *3 *3) (-12 (-5 *3 (-639 (-683 *4))) (-5 *2 (-683 *4)) (-5 *1 (-1024 *4)) (-4 *4 (-362)) (-4 *4 (-1044)))) (-2318 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-639 (-683 *6))) (-5 *4 (-112)) (-5 *5 (-562)) (-5 *2 (-683 *6)) (-5 *1 (-1024 *6)) (-4 *6 (-362)) (-4 *6 (-1044)))) (-1424 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-683 *5))) (-5 *4 (-1256 *5)) (-4 *5 (-306)) (-4 *5 (-1044)) (-5 *2 (-683 *5)) (-5 *1 (-1024 *5)))) (-4239 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-683 *5))) (-4 *5 (-306)) (-4 *5 (-1044)) (-5 *2 (-1256 (-1256 *5))) (-5 *1 (-1024 *5)) (-5 *4 (-1256 *5)))) (-2837 (*1 *2 *3 *2) (-12 (-5 *3 (-639 (-683 *4))) (-5 *2 (-683 *4)) (-4 *4 (-1044)) (-5 *1 (-1024 *4)))) (-3989 (*1 *2 *3) (-12 (-5 *3 (-1256 (-1256 *4))) (-4 *4 (-1044)) (-5 *2 (-683 *4)) (-5 *1 (-1024 *4)))))
+(-10 -7 (-15 -3989 ((-683 |#1|) (-1256 (-1256 |#1|)))) (-15 -2837 ((-683 |#1|) (-639 (-683 |#1|)) (-683 |#1|))) (IF (|has| |#1| (-306)) (PROGN (-15 -4239 ((-1256 (-1256 |#1|)) (-639 (-683 |#1|)) (-1256 |#1|))) (-15 -1424 ((-683 |#1|) (-639 (-683 |#1|)) (-1256 |#1|)))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-15 -2318 ((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)) (-112) (-562))) (-15 -2318 ((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -2318 ((-683 |#1|) (-639 (-683 |#1|)) (-639 (-683 |#1|)) (-562))) (-15 -4128 ((-112) (-639 (-683 |#1|)) (-562))) (-15 -4128 ((-112) (-639 (-683 |#1|)))) (-15 -1841 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-1256 |#1|))) (-15 -1841 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-1256 (-1256 |#1|))))) |%noBranch|) (IF (|has| |#1| (-367)) (IF (|has| |#1| (-362)) (PROGN (-15 -1391 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-112) (-562) (-562))) (-15 -1391 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)))) (-15 -1391 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-112))) (-15 -1391 ((-639 (-639 (-683 |#1|))) (-639 (-683 |#1|)) (-916))) (-15 -3086 ((-1256 |#1|) (-639 (-1256 |#1|)) (-562)))) |%noBranch|) |%noBranch|))
+((-2530 ((|#1| (-916) |#1|) 9)))
+(((-1025 |#1|) (-10 -7 (-15 -2530 (|#1| (-916) |#1|))) (-13 (-1092) (-10 -8 (-15 -1836 ($ $ $))))) (T -1025))
+((-2530 (*1 *2 *3 *2) (-12 (-5 *3 (-916)) (-5 *1 (-1025 *2)) (-4 *2 (-13 (-1092) (-10 -8 (-15 -1836 ($ $ $))))))))
+(-10 -7 (-15 -2530 (|#1| (-916) |#1|)))
+((-3526 (((-639 (-2 (|:| |radval| (-315 (-562))) (|:| |radmult| (-562)) (|:| |radvect| (-639 (-683 (-315 (-562))))))) (-683 (-406 (-947 (-562))))) 59)) (-3576 (((-639 (-683 (-315 (-562)))) (-315 (-562)) (-683 (-406 (-947 (-562))))) 48)) (-1315 (((-639 (-315 (-562))) (-683 (-406 (-947 (-562))))) 41)) (-2106 (((-639 (-683 (-315 (-562)))) (-683 (-406 (-947 (-562))))) 68)) (-1911 (((-683 (-315 (-562))) (-683 (-315 (-562)))) 34)) (-2559 (((-639 (-683 (-315 (-562)))) (-639 (-683 (-315 (-562))))) 62)) (-3465 (((-3 (-683 (-315 (-562))) "failed") (-683 (-406 (-947 (-562))))) 66)))
+(((-1026) (-10 -7 (-15 -3526 ((-639 (-2 (|:| |radval| (-315 (-562))) (|:| |radmult| (-562)) (|:| |radvect| (-639 (-683 (-315 (-562))))))) (-683 (-406 (-947 (-562)))))) (-15 -3576 ((-639 (-683 (-315 (-562)))) (-315 (-562)) (-683 (-406 (-947 (-562)))))) (-15 -1315 ((-639 (-315 (-562))) (-683 (-406 (-947 (-562)))))) (-15 -3465 ((-3 (-683 (-315 (-562))) "failed") (-683 (-406 (-947 (-562)))))) (-15 -1911 ((-683 (-315 (-562))) (-683 (-315 (-562))))) (-15 -2559 ((-639 (-683 (-315 (-562)))) (-639 (-683 (-315 (-562)))))) (-15 -2106 ((-639 (-683 (-315 (-562)))) (-683 (-406 (-947 (-562)))))))) (T -1026))
+((-2106 (*1 *2 *3) (-12 (-5 *3 (-683 (-406 (-947 (-562))))) (-5 *2 (-639 (-683 (-315 (-562))))) (-5 *1 (-1026)))) (-2559 (*1 *2 *2) (-12 (-5 *2 (-639 (-683 (-315 (-562))))) (-5 *1 (-1026)))) (-1911 (*1 *2 *2) (-12 (-5 *2 (-683 (-315 (-562)))) (-5 *1 (-1026)))) (-3465 (*1 *2 *3) (|partial| -12 (-5 *3 (-683 (-406 (-947 (-562))))) (-5 *2 (-683 (-315 (-562)))) (-5 *1 (-1026)))) (-1315 (*1 *2 *3) (-12 (-5 *3 (-683 (-406 (-947 (-562))))) (-5 *2 (-639 (-315 (-562)))) (-5 *1 (-1026)))) (-3576 (*1 *2 *3 *4) (-12 (-5 *4 (-683 (-406 (-947 (-562))))) (-5 *2 (-639 (-683 (-315 (-562))))) (-5 *1 (-1026)) (-5 *3 (-315 (-562))))) (-3526 (*1 *2 *3) (-12 (-5 *3 (-683 (-406 (-947 (-562))))) (-5 *2 (-639 (-2 (|:| |radval| (-315 (-562))) (|:| |radmult| (-562)) (|:| |radvect| (-639 (-683 (-315 (-562)))))))) (-5 *1 (-1026)))))
+(-10 -7 (-15 -3526 ((-639 (-2 (|:| |radval| (-315 (-562))) (|:| |radmult| (-562)) (|:| |radvect| (-639 (-683 (-315 (-562))))))) (-683 (-406 (-947 (-562)))))) (-15 -3576 ((-639 (-683 (-315 (-562)))) (-315 (-562)) (-683 (-406 (-947 (-562)))))) (-15 -1315 ((-639 (-315 (-562))) (-683 (-406 (-947 (-562)))))) (-15 -3465 ((-3 (-683 (-315 (-562))) "failed") (-683 (-406 (-947 (-562)))))) (-15 -1911 ((-683 (-315 (-562))) (-683 (-315 (-562))))) (-15 -2559 ((-639 (-683 (-315 (-562)))) (-639 (-683 (-315 (-562)))))) (-15 -2106 ((-639 (-683 (-315 (-562)))) (-683 (-406 (-947 (-562)))))))
+((-2542 ((|#1| |#1| (-916)) 9)))
+(((-1027 |#1|) (-10 -7 (-15 -2542 (|#1| |#1| (-916)))) (-13 (-1092) (-10 -8 (-15 * ($ $ $))))) (T -1027))
+((-2542 (*1 *2 *2 *3) (-12 (-5 *3 (-916)) (-5 *1 (-1027 *2)) (-4 *2 (-13 (-1092) (-10 -8 (-15 * ($ $ $))))))))
+(-10 -7 (-15 -2542 (|#1| |#1| (-916))))
+((-4053 ((|#1| (-311)) 11) (((-1261) |#1|) 9)))
+(((-1028 |#1|) (-10 -7 (-15 -4053 ((-1261) |#1|)) (-15 -4053 (|#1| (-311)))) (-1207)) (T -1028))
+((-4053 (*1 *2 *3) (-12 (-5 *3 (-311)) (-5 *1 (-1028 *2)) (-4 *2 (-1207)))) (-4053 (*1 *2 *3) (-12 (-5 *2 (-1261)) (-5 *1 (-1028 *3)) (-4 *3 (-1207)))))
+(-10 -7 (-15 -4053 ((-1261) |#1|)) (-15 -4053 (|#1| (-311))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1954 (($ |#4|) 25)) (-1694 (((-3 $ "failed") $) NIL)) (-4367 (((-112) $) NIL)) (-1942 ((|#4| $) 27)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 46) (($ (-562)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-1568 (((-766)) 43)) (-2285 (($) 21 T CONST)) (-2294 (($) 23 T CONST)) (-1733 (((-112) $ $) 40)) (-1847 (($ $) 31) (($ $ $) NIL)) (-1836 (($ $ $) 29)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
+(((-1029 |#1| |#2| |#3| |#4| |#5|) (-13 (-171) (-38 |#1|) (-10 -8 (-15 -1954 ($ |#4|)) (-15 -4053 ($ |#4|)) (-15 -1942 (|#4| $)))) (-362) (-788) (-845) (-944 |#1| |#2| |#3|) (-639 |#4|)) (T -1029))
+((-1954 (*1 *1 *2) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-1029 *3 *4 *5 *2 *6)) (-4 *2 (-944 *3 *4 *5)) (-14 *6 (-639 *2)))) (-4053 (*1 *1 *2) (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-1029 *3 *4 *5 *2 *6)) (-4 *2 (-944 *3 *4 *5)) (-14 *6 (-639 *2)))) (-1942 (*1 *2 *1) (-12 (-4 *2 (-944 *3 *4 *5)) (-5 *1 (-1029 *3 *4 *5 *2 *6)) (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-14 *6 (-639 *2)))))
+(-13 (-171) (-38 |#1|) (-10 -8 (-15 -1954 ($ |#4|)) (-15 -4053 ($ |#4|)) (-15 -1942 (|#4| $))))
+((-4041 (((-112) $ $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) NIL)) (-3655 (((-1261) $ (-1168) (-1168)) NIL (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) NIL)) (-3307 (((-112) (-112)) 39)) (-2010 (((-112) (-112)) 38)) (-4200 (((-52) $ (-1168) (-52)) NIL)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403)))) (-1472 (((-3 (-52) "failed") (-1168) $) NIL)) (-3329 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092))))) (-3729 (($ (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-3 (-52) "failed") (-1168) $) NIL)) (-1475 (($ (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (($ (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $ (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (((-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $ (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403)))) (-1507 (((-52) $ (-1168) (-52)) NIL (|has| $ (-6 -4404)))) (-1420 (((-52) $ (-1168)) NIL)) (-1720 (((-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-639 (-52)) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-1168) $) NIL (|has| (-1168) (-845)))) (-2123 (((-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-639 (-52)) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-52) (-1092))))) (-1929 (((-1168) $) NIL (|has| (-1168) (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4404))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092))))) (-1521 (((-639 (-1168)) $) 34)) (-4278 (((-112) (-1168) $) NIL)) (-2078 (((-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) NIL)) (-1581 (($ (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) NIL)) (-3336 (((-639 (-1168)) $) NIL)) (-1987 (((-112) (-1168) $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092))))) (-1421 (((-52) $) NIL (|has| (-1168) (-845)))) (-1963 (((-3 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) "failed") (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL)) (-3510 (($ $ (-52)) NIL (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) NIL)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))))) NIL (-12 (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (($ $ (-293 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) NIL (-12 (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (($ $ (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) NIL (-12 (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (($ $ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) NIL (-12 (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (($ $ (-639 (-52)) (-639 (-52))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-293 (-52))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-639 (-293 (-52)))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-52) (-1092))))) (-2366 (((-639 (-52)) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 (((-52) $ (-1168)) 35) (((-52) $ (-1168) (-52)) NIL)) (-1932 (($) NIL) (($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (((-766) (-52) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-52) (-1092)))) (((-766) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) NIL)) (-4053 (((-857) $) 37 (-4037 (|has| (-52) (-609 (-857))) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-609 (-857)))))) (-4131 (($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) NIL)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-1030) (-13 (-1183 (-1168) (-52)) (-10 -7 (-15 -3307 ((-112) (-112))) (-15 -2010 ((-112) (-112))) (-6 -4403)))) (T -1030))
+((-3307 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1030)))) (-2010 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1030)))))
+(-13 (-1183 (-1168) (-52)) (-10 -7 (-15 -3307 ((-112) (-112))) (-15 -2010 ((-112) (-112))) (-6 -4403)))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1743 (((-1127) $) 9)) (-4053 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-1031) (-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $))))) (T -1031))
((-1743 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1031)))))
(-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $))))
-((-3961 ((|#2| $) 10)))
-(((-1032 |#1| |#2|) (-10 -8 (-15 -3961 (|#2| |#1|))) (-1033 |#2|) (-1207)) (T -1032))
+((-3960 ((|#2| $) 10)))
+(((-1032 |#1| |#2|) (-10 -8 (-15 -3960 (|#2| |#1|))) (-1033 |#2|) (-1207)) (T -1032))
NIL
-(-10 -8 (-15 -3961 (|#2| |#1|)))
-((-4048 (((-3 |#1| "failed") $) 9)) (-3961 ((|#1| $) 8)) (-4054 (($ |#1|) 6)))
+(-10 -8 (-15 -3960 (|#2| |#1|)))
+((-4048 (((-3 |#1| "failed") $) 9)) (-3960 ((|#1| $) 8)) (-4053 (($ |#1|) 6)))
(((-1033 |#1|) (-139) (-1207)) (T -1033))
-((-4048 (*1 *2 *1) (|partial| -12 (-4 *1 (-1033 *2)) (-4 *2 (-1207)))) (-3961 (*1 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1207)))))
-(-13 (-612 |t#1|) (-10 -8 (-15 -4048 ((-3 |t#1| "failed") $)) (-15 -3961 (|t#1| $))))
+((-4048 (*1 *2 *1) (|partial| -12 (-4 *1 (-1033 *2)) (-4 *2 (-1207)))) (-3960 (*1 *2 *1) (-12 (-4 *1 (-1033 *2)) (-4 *2 (-1207)))))
+(-13 (-612 |t#1|) (-10 -8 (-15 -4048 ((-3 |t#1| "failed") $)) (-15 -3960 (|t#1| $))))
(((-612 |#1|) . T))
-((-4366 (((-639 (-639 (-293 (-406 (-947 |#2|))))) (-639 (-947 |#2|)) (-639 (-1168))) 38)))
-(((-1034 |#1| |#2|) (-10 -7 (-15 -4366 ((-639 (-639 (-293 (-406 (-947 |#2|))))) (-639 (-947 |#2|)) (-639 (-1168))))) (-554) (-13 (-554) (-1033 |#1|))) (T -1034))
-((-4366 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *6))) (-5 *4 (-639 (-1168))) (-4 *6 (-13 (-554) (-1033 *5))) (-4 *5 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *6)))))) (-5 *1 (-1034 *5 *6)))))
-(-10 -7 (-15 -4366 ((-639 (-639 (-293 (-406 (-947 |#2|))))) (-639 (-947 |#2|)) (-639 (-1168)))))
-((-2244 (((-378)) 15)) (-3517 (((-1 (-378)) (-378) (-378)) 20)) (-3355 (((-1 (-378)) (-766)) 42)) (-2665 (((-378)) 33)) (-2451 (((-1 (-378)) (-378) (-378)) 34)) (-4268 (((-378)) 26)) (-3876 (((-1 (-378)) (-378)) 27)) (-4144 (((-378) (-766)) 37)) (-1712 (((-1 (-378)) (-766)) 38)) (-3197 (((-1 (-378)) (-766) (-766)) 41)) (-2088 (((-1 (-378)) (-766) (-766)) 39)))
-(((-1035) (-10 -7 (-15 -2244 ((-378))) (-15 -2665 ((-378))) (-15 -4268 ((-378))) (-15 -4144 ((-378) (-766))) (-15 -3517 ((-1 (-378)) (-378) (-378))) (-15 -2451 ((-1 (-378)) (-378) (-378))) (-15 -3876 ((-1 (-378)) (-378))) (-15 -1712 ((-1 (-378)) (-766))) (-15 -2088 ((-1 (-378)) (-766) (-766))) (-15 -3197 ((-1 (-378)) (-766) (-766))) (-15 -3355 ((-1 (-378)) (-766))))) (T -1035))
-((-3355 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035)))) (-3197 (*1 *2 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035)))) (-2088 (*1 *2 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035)))) (-1712 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035)))) (-3876 (*1 *2 *3) (-12 (-5 *2 (-1 (-378))) (-5 *1 (-1035)) (-5 *3 (-378)))) (-2451 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-378))) (-5 *1 (-1035)) (-5 *3 (-378)))) (-3517 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-378))) (-5 *1 (-1035)) (-5 *3 (-378)))) (-4144 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-378)) (-5 *1 (-1035)))) (-4268 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1035)))) (-2665 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1035)))) (-2244 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1035)))))
-(-10 -7 (-15 -2244 ((-378))) (-15 -2665 ((-378))) (-15 -4268 ((-378))) (-15 -4144 ((-378) (-766))) (-15 -3517 ((-1 (-378)) (-378) (-378))) (-15 -2451 ((-1 (-378)) (-378) (-378))) (-15 -3876 ((-1 (-378)) (-378))) (-15 -1712 ((-1 (-378)) (-766))) (-15 -2088 ((-1 (-378)) (-766) (-766))) (-15 -3197 ((-1 (-378)) (-766) (-766))) (-15 -3355 ((-1 (-378)) (-766))))
+((-4055 (((-639 (-639 (-293 (-406 (-947 |#2|))))) (-639 (-947 |#2|)) (-639 (-1168))) 38)))
+(((-1034 |#1| |#2|) (-10 -7 (-15 -4055 ((-639 (-639 (-293 (-406 (-947 |#2|))))) (-639 (-947 |#2|)) (-639 (-1168))))) (-554) (-13 (-554) (-1033 |#1|))) (T -1034))
+((-4055 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *6))) (-5 *4 (-639 (-1168))) (-4 *6 (-13 (-554) (-1033 *5))) (-4 *5 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *6)))))) (-5 *1 (-1034 *5 *6)))))
+(-10 -7 (-15 -4055 ((-639 (-639 (-293 (-406 (-947 |#2|))))) (-639 (-947 |#2|)) (-639 (-1168)))))
+((-4344 (((-378)) 15)) (-2674 (((-1 (-378)) (-378) (-378)) 20)) (-3354 (((-1 (-378)) (-766)) 42)) (-3058 (((-378)) 33)) (-2450 (((-1 (-378)) (-378) (-378)) 34)) (-4305 (((-378)) 26)) (-1952 (((-1 (-378)) (-378)) 27)) (-2607 (((-378) (-766)) 37)) (-3796 (((-1 (-378)) (-766)) 38)) (-3196 (((-1 (-378)) (-766) (-766)) 41)) (-3291 (((-1 (-378)) (-766) (-766)) 39)))
+(((-1035) (-10 -7 (-15 -4344 ((-378))) (-15 -3058 ((-378))) (-15 -4305 ((-378))) (-15 -2607 ((-378) (-766))) (-15 -2674 ((-1 (-378)) (-378) (-378))) (-15 -2450 ((-1 (-378)) (-378) (-378))) (-15 -1952 ((-1 (-378)) (-378))) (-15 -3796 ((-1 (-378)) (-766))) (-15 -3291 ((-1 (-378)) (-766) (-766))) (-15 -3196 ((-1 (-378)) (-766) (-766))) (-15 -3354 ((-1 (-378)) (-766))))) (T -1035))
+((-3354 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035)))) (-3196 (*1 *2 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035)))) (-3291 (*1 *2 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035)))) (-3796 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035)))) (-1952 (*1 *2 *3) (-12 (-5 *2 (-1 (-378))) (-5 *1 (-1035)) (-5 *3 (-378)))) (-2450 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-378))) (-5 *1 (-1035)) (-5 *3 (-378)))) (-2674 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-378))) (-5 *1 (-1035)) (-5 *3 (-378)))) (-2607 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-378)) (-5 *1 (-1035)))) (-4305 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1035)))) (-3058 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1035)))) (-4344 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1035)))))
+(-10 -7 (-15 -4344 ((-378))) (-15 -3058 ((-378))) (-15 -4305 ((-378))) (-15 -2607 ((-378) (-766))) (-15 -2674 ((-1 (-378)) (-378) (-378))) (-15 -2450 ((-1 (-378)) (-378) (-378))) (-15 -1952 ((-1 (-378)) (-378))) (-15 -3796 ((-1 (-378)) (-766))) (-15 -3291 ((-1 (-378)) (-766) (-766))) (-15 -3196 ((-1 (-378)) (-766) (-766))) (-15 -3354 ((-1 (-378)) (-766))))
((-1635 (((-417 |#1|) |#1|) 33)))
(((-1036 |#1|) (-10 -7 (-15 -1635 ((-417 |#1|) |#1|))) (-1232 (-406 (-947 (-562))))) (T -1036))
((-1635 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-1036 *3)) (-4 *3 (-1232 (-406 (-947 (-562))))))))
(-10 -7 (-15 -1635 ((-417 |#1|) |#1|)))
-((-2606 (((-406 (-417 (-947 |#1|))) (-406 (-947 |#1|))) 14)))
-(((-1037 |#1|) (-10 -7 (-15 -2606 ((-406 (-417 (-947 |#1|))) (-406 (-947 |#1|))))) (-306)) (T -1037))
-((-2606 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-306)) (-5 *2 (-406 (-417 (-947 *4)))) (-5 *1 (-1037 *4)))))
-(-10 -7 (-15 -2606 ((-406 (-417 (-947 |#1|))) (-406 (-947 |#1|)))))
-((-1402 (((-639 (-1168)) (-406 (-947 |#1|))) 17)) (-1599 (((-406 (-1164 (-406 (-947 |#1|)))) (-406 (-947 |#1|)) (-1168)) 24)) (-1390 (((-406 (-947 |#1|)) (-406 (-1164 (-406 (-947 |#1|)))) (-1168)) 26)) (-3372 (((-3 (-1168) "failed") (-406 (-947 |#1|))) 20)) (-1433 (((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-639 (-293 (-406 (-947 |#1|))))) 32) (((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|)))) 33) (((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-639 (-1168)) (-639 (-406 (-947 |#1|)))) 28) (((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|))) 29)) (-4054 (((-406 (-947 |#1|)) |#1|) 11)))
-(((-1038 |#1|) (-10 -7 (-15 -1402 ((-639 (-1168)) (-406 (-947 |#1|)))) (-15 -3372 ((-3 (-1168) "failed") (-406 (-947 |#1|)))) (-15 -1599 ((-406 (-1164 (-406 (-947 |#1|)))) (-406 (-947 |#1|)) (-1168))) (-15 -1390 ((-406 (-947 |#1|)) (-406 (-1164 (-406 (-947 |#1|)))) (-1168))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|)))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-639 (-1168)) (-639 (-406 (-947 |#1|))))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-639 (-293 (-406 (-947 |#1|)))))) (-15 -4054 ((-406 (-947 |#1|)) |#1|))) (-554)) (T -1038))
-((-4054 (*1 *2 *3) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-1038 *3)) (-4 *3 (-554)))) (-1433 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-293 (-406 (-947 *4))))) (-5 *2 (-406 (-947 *4))) (-4 *4 (-554)) (-5 *1 (-1038 *4)))) (-1433 (*1 *2 *2 *3) (-12 (-5 *3 (-293 (-406 (-947 *4)))) (-5 *2 (-406 (-947 *4))) (-4 *4 (-554)) (-5 *1 (-1038 *4)))) (-1433 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-639 (-1168))) (-5 *4 (-639 (-406 (-947 *5)))) (-5 *2 (-406 (-947 *5))) (-4 *5 (-554)) (-5 *1 (-1038 *5)))) (-1433 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-406 (-947 *4))) (-5 *3 (-1168)) (-4 *4 (-554)) (-5 *1 (-1038 *4)))) (-1390 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-1164 (-406 (-947 *5))))) (-5 *4 (-1168)) (-5 *2 (-406 (-947 *5))) (-5 *1 (-1038 *5)) (-4 *5 (-554)))) (-1599 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-554)) (-5 *2 (-406 (-1164 (-406 (-947 *5))))) (-5 *1 (-1038 *5)) (-5 *3 (-406 (-947 *5))))) (-3372 (*1 *2 *3) (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-5 *2 (-1168)) (-5 *1 (-1038 *4)))) (-1402 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-5 *2 (-639 (-1168))) (-5 *1 (-1038 *4)))))
-(-10 -7 (-15 -1402 ((-639 (-1168)) (-406 (-947 |#1|)))) (-15 -3372 ((-3 (-1168) "failed") (-406 (-947 |#1|)))) (-15 -1599 ((-406 (-1164 (-406 (-947 |#1|)))) (-406 (-947 |#1|)) (-1168))) (-15 -1390 ((-406 (-947 |#1|)) (-406 (-1164 (-406 (-947 |#1|)))) (-1168))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|)))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-639 (-1168)) (-639 (-406 (-947 |#1|))))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-639 (-293 (-406 (-947 |#1|)))))) (-15 -4054 ((-406 (-947 |#1|)) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1800 (($) 17 T CONST)) (-3846 ((|#1| $) 22)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2049 ((|#1| $) 21)) (-1311 ((|#1|) 19 T CONST)) (-4054 (((-857) $) 11)) (-3154 ((|#1| $) 20)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15)))
+((-3658 (((-406 (-417 (-947 |#1|))) (-406 (-947 |#1|))) 14)))
+(((-1037 |#1|) (-10 -7 (-15 -3658 ((-406 (-417 (-947 |#1|))) (-406 (-947 |#1|))))) (-306)) (T -1037))
+((-3658 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-306)) (-5 *2 (-406 (-417 (-947 *4)))) (-5 *1 (-1037 *4)))))
+(-10 -7 (-15 -3658 ((-406 (-417 (-947 |#1|))) (-406 (-947 |#1|)))))
+((-1401 (((-639 (-1168)) (-406 (-947 |#1|))) 17)) (-1602 (((-406 (-1164 (-406 (-947 |#1|)))) (-406 (-947 |#1|)) (-1168)) 24)) (-1389 (((-406 (-947 |#1|)) (-406 (-1164 (-406 (-947 |#1|)))) (-1168)) 26)) (-3640 (((-3 (-1168) "failed") (-406 (-947 |#1|))) 20)) (-1433 (((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-639 (-293 (-406 (-947 |#1|))))) 32) (((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|)))) 33) (((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-639 (-1168)) (-639 (-406 (-947 |#1|)))) 28) (((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|))) 29)) (-4053 (((-406 (-947 |#1|)) |#1|) 11)))
+(((-1038 |#1|) (-10 -7 (-15 -1401 ((-639 (-1168)) (-406 (-947 |#1|)))) (-15 -3640 ((-3 (-1168) "failed") (-406 (-947 |#1|)))) (-15 -1602 ((-406 (-1164 (-406 (-947 |#1|)))) (-406 (-947 |#1|)) (-1168))) (-15 -1389 ((-406 (-947 |#1|)) (-406 (-1164 (-406 (-947 |#1|)))) (-1168))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|)))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-639 (-1168)) (-639 (-406 (-947 |#1|))))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-639 (-293 (-406 (-947 |#1|)))))) (-15 -4053 ((-406 (-947 |#1|)) |#1|))) (-554)) (T -1038))
+((-4053 (*1 *2 *3) (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-1038 *3)) (-4 *3 (-554)))) (-1433 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-293 (-406 (-947 *4))))) (-5 *2 (-406 (-947 *4))) (-4 *4 (-554)) (-5 *1 (-1038 *4)))) (-1433 (*1 *2 *2 *3) (-12 (-5 *3 (-293 (-406 (-947 *4)))) (-5 *2 (-406 (-947 *4))) (-4 *4 (-554)) (-5 *1 (-1038 *4)))) (-1433 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-639 (-1168))) (-5 *4 (-639 (-406 (-947 *5)))) (-5 *2 (-406 (-947 *5))) (-4 *5 (-554)) (-5 *1 (-1038 *5)))) (-1433 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-406 (-947 *4))) (-5 *3 (-1168)) (-4 *4 (-554)) (-5 *1 (-1038 *4)))) (-1389 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-1164 (-406 (-947 *5))))) (-5 *4 (-1168)) (-5 *2 (-406 (-947 *5))) (-5 *1 (-1038 *5)) (-4 *5 (-554)))) (-1602 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-554)) (-5 *2 (-406 (-1164 (-406 (-947 *5))))) (-5 *1 (-1038 *5)) (-5 *3 (-406 (-947 *5))))) (-3640 (*1 *2 *3) (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-5 *2 (-1168)) (-5 *1 (-1038 *4)))) (-1401 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-5 *2 (-639 (-1168))) (-5 *1 (-1038 *4)))))
+(-10 -7 (-15 -1401 ((-639 (-1168)) (-406 (-947 |#1|)))) (-15 -3640 ((-3 (-1168) "failed") (-406 (-947 |#1|)))) (-15 -1602 ((-406 (-1164 (-406 (-947 |#1|)))) (-406 (-947 |#1|)) (-1168))) (-15 -1389 ((-406 (-947 |#1|)) (-406 (-1164 (-406 (-947 |#1|)))) (-1168))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|)))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-639 (-1168)) (-639 (-406 (-947 |#1|))))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-293 (-406 (-947 |#1|))))) (-15 -1433 ((-406 (-947 |#1|)) (-406 (-947 |#1|)) (-639 (-293 (-406 (-947 |#1|)))))) (-15 -4053 ((-406 (-947 |#1|)) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-3329 (($) 17 T CONST)) (-2821 ((|#1| $) 22)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2894 ((|#1| $) 21)) (-1708 ((|#1|) 19 T CONST)) (-4053 (((-857) $) 11)) (-3381 ((|#1| $) 20)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15)))
(((-1039 |#1|) (-139) (-23)) (T -1039))
-((-3846 (*1 *2 *1) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))) (-2049 (*1 *2 *1) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))) (-3154 (*1 *2 *1) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))) (-1311 (*1 *2) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))))
-(-13 (-23) (-10 -8 (-15 -3846 (|t#1| $)) (-15 -2049 (|t#1| $)) (-15 -3154 (|t#1| $)) (-15 -1311 (|t#1|) -1497)))
+((-2821 (*1 *2 *1) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))) (-2894 (*1 *2 *1) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))) (-3381 (*1 *2 *1) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))) (-1708 (*1 *2) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))))
+(-13 (-23) (-10 -8 (-15 -2821 (|t#1| $)) (-15 -2894 (|t#1| $)) (-15 -3381 (|t#1| $)) (-15 -1708 (|t#1|) -1497)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3766 (($) 24 T CONST)) (-1800 (($) 17 T CONST)) (-3846 ((|#1| $) 22)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2049 ((|#1| $) 21)) (-1311 ((|#1|) 19 T CONST)) (-4054 (((-857) $) 11)) (-3154 ((|#1| $) 20)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-3238 (($) 24 T CONST)) (-3329 (($) 17 T CONST)) (-2821 ((|#1| $) 22)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2894 ((|#1| $) 21)) (-1708 ((|#1|) 19 T CONST)) (-4053 (((-857) $) 11)) (-3381 ((|#1| $) 20)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15)))
(((-1040 |#1|) (-139) (-23)) (T -1040))
-((-3766 (*1 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
-(-13 (-1039 |t#1|) (-10 -8 (-15 -3766 ($) -1497)))
+((-3238 (*1 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
+(-13 (-1039 |t#1|) (-10 -8 (-15 -3238 ($) -1497)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-609 (-857)) . T) ((-1039 |#1|) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-2560 (((-639 (-2 (|:| -1450 $) (|:| -3316 (-639 (-775 |#1| (-859 |#2|)))))) (-639 (-775 |#1| (-859 |#2|)))) NIL)) (-2304 (((-639 $) (-639 (-775 |#1| (-859 |#2|)))) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-112)) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-112) (-112)) NIL)) (-1402 (((-639 (-859 |#2|)) $) NIL)) (-4170 (((-112) $) NIL)) (-4274 (((-112) $) NIL (|has| |#1| (-554)))) (-4377 (((-112) (-775 |#1| (-859 |#2|)) $) NIL) (((-112) $) NIL)) (-3049 (((-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-2798 (((-639 (-2 (|:| |val| (-775 |#1| (-859 |#2|))) (|:| -1495 $))) (-775 |#1| (-859 |#2|)) $) NIL)) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ (-859 |#2|)) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-3556 (($ (-1 (-112) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-3 (-775 |#1| (-859 |#2|)) "failed") $ (-859 |#2|)) NIL)) (-1800 (($) NIL T CONST)) (-2207 (((-112) $) NIL (|has| |#1| (-554)))) (-1920 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3852 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2539 (((-112) $) NIL (|has| |#1| (-554)))) (-2839 (((-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|))) $ (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) (-1 (-112) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)))) NIL)) (-3884 (((-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|))) $) NIL (|has| |#1| (-554)))) (-2540 (((-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|))) $) NIL (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 (-775 |#1| (-859 |#2|)))) NIL)) (-3961 (($ (-639 (-775 |#1| (-859 |#2|)))) NIL)) (-1434 (((-3 $ "failed") $) NIL)) (-2387 (((-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-775 |#1| (-859 |#2|)) (-1092))))) (-1475 (($ (-775 |#1| (-859 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-775 |#1| (-859 |#2|)) (-1092)))) (($ (-1 (-112) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-2264 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-775 |#1| (-859 |#2|))) (|:| |den| |#1|)) (-775 |#1| (-859 |#2|)) $) NIL (|has| |#1| (-554)))) (-4091 (((-112) (-775 |#1| (-859 |#2|)) $ (-1 (-112) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)))) NIL)) (-3595 (((-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-1955 (((-775 |#1| (-859 |#2|)) (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) $ (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-775 |#1| (-859 |#2|)) (-1092)))) (((-775 |#1| (-859 |#2|)) (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) $ (-775 |#1| (-859 |#2|))) NIL (|has| $ (-6 -4402))) (((-775 |#1| (-859 |#2|)) (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $ (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) (-1 (-112) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)))) NIL)) (-2267 (((-2 (|:| -1450 (-639 (-775 |#1| (-859 |#2|)))) (|:| -3316 (-639 (-775 |#1| (-859 |#2|))))) $) NIL)) (-4079 (((-112) (-775 |#1| (-859 |#2|)) $) NIL)) (-3513 (((-112) (-775 |#1| (-859 |#2|)) $) NIL)) (-2764 (((-112) (-775 |#1| (-859 |#2|)) $) NIL) (((-112) $) NIL)) (-1720 (((-639 (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-2573 (((-112) (-775 |#1| (-859 |#2|)) $) NIL) (((-112) $) NIL)) (-4339 (((-859 |#2|) $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-775 |#1| (-859 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-775 |#1| (-859 |#2|)) (-1092))))) (-1490 (($ (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) $) NIL)) (-3754 (((-639 (-859 |#2|)) $) NIL)) (-2071 (((-112) (-859 |#2|) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-1609 (((-3 (-775 |#1| (-859 |#2|)) (-639 $)) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-1851 (((-639 (-2 (|:| |val| (-775 |#1| (-859 |#2|))) (|:| -1495 $))) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-1504 (((-3 (-775 |#1| (-859 |#2|)) "failed") $) NIL)) (-1814 (((-639 $) (-775 |#1| (-859 |#2|)) $) NIL)) (-1950 (((-3 (-112) (-639 $)) (-775 |#1| (-859 |#2|)) $) NIL)) (-2021 (((-639 (-2 (|:| |val| (-112)) (|:| -1495 $))) (-775 |#1| (-859 |#2|)) $) NIL) (((-112) (-775 |#1| (-859 |#2|)) $) NIL)) (-4376 (((-639 $) (-775 |#1| (-859 |#2|)) $) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) $) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-639 $)) NIL) (((-639 $) (-775 |#1| (-859 |#2|)) (-639 $)) NIL)) (-1430 (($ (-775 |#1| (-859 |#2|)) $) NIL) (($ (-639 (-775 |#1| (-859 |#2|))) $) NIL)) (-3576 (((-639 (-775 |#1| (-859 |#2|))) $) NIL)) (-2890 (((-112) (-775 |#1| (-859 |#2|)) $) NIL) (((-112) $) NIL)) (-1849 (((-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-1408 (((-112) $ $) NIL)) (-3725 (((-2 (|:| |num| (-775 |#1| (-859 |#2|))) (|:| |den| |#1|)) (-775 |#1| (-859 |#2|)) $) NIL (|has| |#1| (-554)))) (-2766 (((-112) (-775 |#1| (-859 |#2|)) $) NIL) (((-112) $) NIL)) (-1532 (((-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-3 (-775 |#1| (-859 |#2|)) "failed") $) NIL)) (-3251 (((-3 (-775 |#1| (-859 |#2|)) "failed") (-1 (-112) (-775 |#1| (-859 |#2|))) $) NIL)) (-3310 (((-3 $ "failed") $ (-775 |#1| (-859 |#2|))) NIL)) (-1353 (($ $ (-775 |#1| (-859 |#2|))) NIL) (((-639 $) (-775 |#1| (-859 |#2|)) $) NIL) (((-639 $) (-775 |#1| (-859 |#2|)) (-639 $)) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) $) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-639 $)) NIL)) (-1763 (((-112) (-1 (-112) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|)))) NIL (-12 (|has| (-775 |#1| (-859 |#2|)) (-308 (-775 |#1| (-859 |#2|)))) (|has| (-775 |#1| (-859 |#2|)) (-1092)))) (($ $ (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) NIL (-12 (|has| (-775 |#1| (-859 |#2|)) (-308 (-775 |#1| (-859 |#2|)))) (|has| (-775 |#1| (-859 |#2|)) (-1092)))) (($ $ (-293 (-775 |#1| (-859 |#2|)))) NIL (-12 (|has| (-775 |#1| (-859 |#2|)) (-308 (-775 |#1| (-859 |#2|)))) (|has| (-775 |#1| (-859 |#2|)) (-1092)))) (($ $ (-639 (-293 (-775 |#1| (-859 |#2|))))) NIL (-12 (|has| (-775 |#1| (-859 |#2|)) (-308 (-775 |#1| (-859 |#2|)))) (|has| (-775 |#1| (-859 |#2|)) (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-3598 (((-766) $) NIL)) (-1723 (((-766) (-775 |#1| (-859 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-775 |#1| (-859 |#2|)) (-1092)))) (((-766) (-1 (-112) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-775 |#1| (-859 |#2|)) (-610 (-535))))) (-4066 (($ (-639 (-775 |#1| (-859 |#2|)))) NIL)) (-1812 (($ $ (-859 |#2|)) NIL)) (-3274 (($ $ (-859 |#2|)) NIL)) (-3277 (($ $) NIL)) (-1568 (($ $ (-859 |#2|)) NIL)) (-4054 (((-857) $) NIL) (((-639 (-775 |#1| (-859 |#2|))) $) NIL)) (-3730 (((-766) $) NIL (|has| (-859 |#2|) (-367)))) (-2652 (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 (-775 |#1| (-859 |#2|))))) "failed") (-639 (-775 |#1| (-859 |#2|))) (-1 (-112) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 (-775 |#1| (-859 |#2|))))) "failed") (-639 (-775 |#1| (-859 |#2|))) (-1 (-112) (-775 |#1| (-859 |#2|))) (-1 (-112) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)))) NIL)) (-4252 (((-112) $ (-1 (-112) (-775 |#1| (-859 |#2|)) (-639 (-775 |#1| (-859 |#2|))))) NIL)) (-1612 (((-639 $) (-775 |#1| (-859 |#2|)) $) NIL) (((-639 $) (-775 |#1| (-859 |#2|)) (-639 $)) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) $) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-639 $)) NIL)) (-1744 (((-112) (-1 (-112) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-4089 (((-639 (-859 |#2|)) $) NIL)) (-4211 (((-112) (-775 |#1| (-859 |#2|)) $) NIL)) (-3694 (((-112) (-859 |#2|) $) NIL)) (-1731 (((-112) $ $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-1041 |#1| |#2|) (-13 (-1064 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|))) (-10 -8 (-15 -2304 ((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-112) (-112))))) (-451) (-639 (-1168))) (T -1041))
-((-2304 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451)) (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-1041 *5 *6)))))
-(-13 (-1064 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|))) (-10 -8 (-15 -2304 ((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-112) (-112)))))
-((-3517 (((-1 (-562)) (-1086 (-562))) 33)) (-2940 (((-562) (-562) (-562) (-562) (-562)) 30)) (-2068 (((-1 (-562)) |RationalNumber|) NIL)) (-3726 (((-1 (-562)) |RationalNumber|) NIL)) (-3261 (((-1 (-562)) (-562) |RationalNumber|) NIL)))
-(((-1042) (-10 -7 (-15 -3517 ((-1 (-562)) (-1086 (-562)))) (-15 -3261 ((-1 (-562)) (-562) |RationalNumber|)) (-15 -2068 ((-1 (-562)) |RationalNumber|)) (-15 -3726 ((-1 (-562)) |RationalNumber|)) (-15 -2940 ((-562) (-562) (-562) (-562) (-562))))) (T -1042))
-((-2940 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1042)))) (-3726 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-562))) (-5 *1 (-1042)))) (-2068 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-562))) (-5 *1 (-1042)))) (-3261 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-562))) (-5 *1 (-1042)) (-5 *3 (-562)))) (-3517 (*1 *2 *3) (-12 (-5 *3 (-1086 (-562))) (-5 *2 (-1 (-562))) (-5 *1 (-1042)))))
-(-10 -7 (-15 -3517 ((-1 (-562)) (-1086 (-562)))) (-15 -3261 ((-1 (-562)) (-562) |RationalNumber|)) (-15 -2068 ((-1 (-562)) |RationalNumber|)) (-15 -3726 ((-1 (-562)) |RationalNumber|)) (-15 -2940 ((-562) (-562) (-562) (-562) (-562))))
-((-4054 (((-857) $) NIL) (($ (-562)) 10)))
-(((-1043 |#1|) (-10 -8 (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|))) (-1044)) (T -1043))
-NIL
-(-10 -8 (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-562)) 29)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-4041 (((-112) $ $) NIL)) (-1330 (((-639 (-2 (|:| -1449 $) (|:| -3315 (-639 (-775 |#1| (-859 |#2|)))))) (-639 (-775 |#1| (-859 |#2|)))) NIL)) (-3672 (((-639 $) (-639 (-775 |#1| (-859 |#2|)))) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-112)) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-112) (-112)) NIL)) (-1401 (((-639 (-859 |#2|)) $) NIL)) (-2799 (((-112) $) NIL)) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-4177 (((-112) (-775 |#1| (-859 |#2|)) $) NIL) (((-112) $) NIL)) (-3623 (((-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-1977 (((-639 (-2 (|:| |val| (-775 |#1| (-859 |#2|))) (|:| -1501 $))) (-775 |#1| (-859 |#2|)) $) NIL)) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ (-859 |#2|)) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-3556 (($ (-1 (-112) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-3 (-775 |#1| (-859 |#2|)) "failed") $ (-859 |#2|)) NIL)) (-3329 (($) NIL T CONST)) (-2169 (((-112) $) NIL (|has| |#1| (-554)))) (-2183 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2864 (((-112) $ $) NIL (|has| |#1| (-554)))) (-4219 (((-112) $) NIL (|has| |#1| (-554)))) (-4227 (((-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|))) $ (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) (-1 (-112) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)))) NIL)) (-2037 (((-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|))) $) NIL (|has| |#1| (-554)))) (-4230 (((-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|))) $) NIL (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 (-775 |#1| (-859 |#2|)))) NIL)) (-3960 (($ (-639 (-775 |#1| (-859 |#2|)))) NIL)) (-1434 (((-3 $ "failed") $) NIL)) (-3255 (((-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-775 |#1| (-859 |#2|)) (-1092))))) (-1475 (($ (-775 |#1| (-859 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-775 |#1| (-859 |#2|)) (-1092)))) (($ (-1 (-112) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1441 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-775 |#1| (-859 |#2|))) (|:| |den| |#1|)) (-775 |#1| (-859 |#2|)) $) NIL (|has| |#1| (-554)))) (-3300 (((-112) (-775 |#1| (-859 |#2|)) $ (-1 (-112) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)))) NIL)) (-2227 (((-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-1954 (((-775 |#1| (-859 |#2|)) (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) $ (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-775 |#1| (-859 |#2|)) (-1092)))) (((-775 |#1| (-859 |#2|)) (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) $ (-775 |#1| (-859 |#2|))) NIL (|has| $ (-6 -4403))) (((-775 |#1| (-859 |#2|)) (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $ (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) (-1 (-112) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)))) NIL)) (-1471 (((-2 (|:| -1449 (-639 (-775 |#1| (-859 |#2|)))) (|:| -3315 (-639 (-775 |#1| (-859 |#2|))))) $) NIL)) (-3189 (((-112) (-775 |#1| (-859 |#2|)) $) NIL)) (-2633 (((-112) (-775 |#1| (-859 |#2|)) $) NIL)) (-2813 (((-112) (-775 |#1| (-859 |#2|)) $) NIL) (((-112) $) NIL)) (-1720 (((-639 (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1493 (((-112) (-775 |#1| (-859 |#2|)) $) NIL) (((-112) $) NIL)) (-3761 (((-859 |#2|) $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-775 |#1| (-859 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-775 |#1| (-859 |#2|)) (-1092))))) (-1491 (($ (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) $) NIL)) (-3133 (((-639 (-859 |#2|)) $) NIL)) (-3112 (((-112) (-859 |#2|) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-4093 (((-3 (-775 |#1| (-859 |#2|)) (-639 $)) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-2672 (((-639 (-2 (|:| |val| (-775 |#1| (-859 |#2|))) (|:| -1501 $))) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-1504 (((-3 (-775 |#1| (-859 |#2|)) "failed") $) NIL)) (-2334 (((-639 $) (-775 |#1| (-859 |#2|)) $) NIL)) (-4302 (((-3 (-112) (-639 $)) (-775 |#1| (-859 |#2|)) $) NIL)) (-3792 (((-639 (-2 (|:| |val| (-112)) (|:| -1501 $))) (-775 |#1| (-859 |#2|)) $) NIL) (((-112) (-775 |#1| (-859 |#2|)) $) NIL)) (-4169 (((-639 $) (-775 |#1| (-859 |#2|)) $) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) $) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-639 $)) NIL) (((-639 $) (-775 |#1| (-859 |#2|)) (-639 $)) NIL)) (-1997 (($ (-775 |#1| (-859 |#2|)) $) NIL) (($ (-639 (-775 |#1| (-859 |#2|))) $) NIL)) (-2063 (((-639 (-775 |#1| (-859 |#2|))) $) NIL)) (-1645 (((-112) (-775 |#1| (-859 |#2|)) $) NIL) (((-112) $) NIL)) (-2651 (((-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-1789 (((-112) $ $) NIL)) (-4123 (((-2 (|:| |num| (-775 |#1| (-859 |#2|))) (|:| |den| |#1|)) (-775 |#1| (-859 |#2|)) $) NIL (|has| |#1| (-554)))) (-2830 (((-112) (-775 |#1| (-859 |#2|)) $) NIL) (((-112) $) NIL)) (-1630 (((-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-3 (-775 |#1| (-859 |#2|)) "failed") $) NIL)) (-1963 (((-3 (-775 |#1| (-859 |#2|)) "failed") (-1 (-112) (-775 |#1| (-859 |#2|))) $) NIL)) (-4333 (((-3 $ "failed") $ (-775 |#1| (-859 |#2|))) NIL)) (-4316 (($ $ (-775 |#1| (-859 |#2|))) NIL) (((-639 $) (-775 |#1| (-859 |#2|)) $) NIL) (((-639 $) (-775 |#1| (-859 |#2|)) (-639 $)) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) $) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-639 $)) NIL)) (-3008 (((-112) (-1 (-112) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-775 |#1| (-859 |#2|))) (-639 (-775 |#1| (-859 |#2|)))) NIL (-12 (|has| (-775 |#1| (-859 |#2|)) (-308 (-775 |#1| (-859 |#2|)))) (|has| (-775 |#1| (-859 |#2|)) (-1092)))) (($ $ (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|))) NIL (-12 (|has| (-775 |#1| (-859 |#2|)) (-308 (-775 |#1| (-859 |#2|)))) (|has| (-775 |#1| (-859 |#2|)) (-1092)))) (($ $ (-293 (-775 |#1| (-859 |#2|)))) NIL (-12 (|has| (-775 |#1| (-859 |#2|)) (-308 (-775 |#1| (-859 |#2|)))) (|has| (-775 |#1| (-859 |#2|)) (-1092)))) (($ $ (-639 (-293 (-775 |#1| (-859 |#2|))))) NIL (-12 (|has| (-775 |#1| (-859 |#2|)) (-308 (-775 |#1| (-859 |#2|)))) (|has| (-775 |#1| (-859 |#2|)) (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2250 (((-766) $) NIL)) (-1723 (((-766) (-775 |#1| (-859 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-775 |#1| (-859 |#2|)) (-1092)))) (((-766) (-1 (-112) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-775 |#1| (-859 |#2|)) (-610 (-535))))) (-4064 (($ (-639 (-775 |#1| (-859 |#2|)))) NIL)) (-2316 (($ $ (-859 |#2|)) NIL)) (-2180 (($ $ (-859 |#2|)) NIL)) (-2209 (($ $) NIL)) (-1962 (($ $ (-859 |#2|)) NIL)) (-4053 (((-857) $) NIL) (((-639 (-775 |#1| (-859 |#2|))) $) NIL)) (-4157 (((-766) $) NIL (|has| (-859 |#2|) (-367)))) (-4168 (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 (-775 |#1| (-859 |#2|))))) "failed") (-639 (-775 |#1| (-859 |#2|))) (-1 (-112) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 (-775 |#1| (-859 |#2|))))) "failed") (-639 (-775 |#1| (-859 |#2|))) (-1 (-112) (-775 |#1| (-859 |#2|))) (-1 (-112) (-775 |#1| (-859 |#2|)) (-775 |#1| (-859 |#2|)))) NIL)) (-2350 (((-112) $ (-1 (-112) (-775 |#1| (-859 |#2|)) (-639 (-775 |#1| (-859 |#2|))))) NIL)) (-4125 (((-639 $) (-775 |#1| (-859 |#2|)) $) NIL) (((-639 $) (-775 |#1| (-859 |#2|)) (-639 $)) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) $) NIL) (((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-639 $)) NIL)) (-2879 (((-112) (-1 (-112) (-775 |#1| (-859 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-3278 (((-639 (-859 |#2|)) $) NIL)) (-1972 (((-112) (-775 |#1| (-859 |#2|)) $) NIL)) (-3782 (((-112) (-859 |#2|) $) NIL)) (-1733 (((-112) $ $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-1041 |#1| |#2|) (-13 (-1064 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|))) (-10 -8 (-15 -3672 ((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-112) (-112))))) (-451) (-639 (-1168))) (T -1041))
+((-3672 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451)) (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-1041 *5 *6)))))
+(-13 (-1064 |#1| (-530 (-859 |#2|)) (-859 |#2|) (-775 |#1| (-859 |#2|))) (-10 -8 (-15 -3672 ((-639 $) (-639 (-775 |#1| (-859 |#2|))) (-112) (-112)))))
+((-2674 (((-1 (-562)) (-1086 (-562))) 33)) (-3987 (((-562) (-562) (-562) (-562) (-562)) 30)) (-3079 (((-1 (-562)) |RationalNumber|) NIL)) (-4133 (((-1 (-562)) |RationalNumber|) NIL)) (-2068 (((-1 (-562)) (-562) |RationalNumber|) NIL)))
+(((-1042) (-10 -7 (-15 -2674 ((-1 (-562)) (-1086 (-562)))) (-15 -2068 ((-1 (-562)) (-562) |RationalNumber|)) (-15 -3079 ((-1 (-562)) |RationalNumber|)) (-15 -4133 ((-1 (-562)) |RationalNumber|)) (-15 -3987 ((-562) (-562) (-562) (-562) (-562))))) (T -1042))
+((-3987 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1042)))) (-4133 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-562))) (-5 *1 (-1042)))) (-3079 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-562))) (-5 *1 (-1042)))) (-2068 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-562))) (-5 *1 (-1042)) (-5 *3 (-562)))) (-2674 (*1 *2 *3) (-12 (-5 *3 (-1086 (-562))) (-5 *2 (-1 (-562))) (-5 *1 (-1042)))))
+(-10 -7 (-15 -2674 ((-1 (-562)) (-1086 (-562)))) (-15 -2068 ((-1 (-562)) (-562) |RationalNumber|)) (-15 -3079 ((-1 (-562)) |RationalNumber|)) (-15 -4133 ((-1 (-562)) |RationalNumber|)) (-15 -3987 ((-562) (-562) (-562) (-562) (-562))))
+((-4053 (((-857) $) NIL) (($ (-562)) 10)))
+(((-1043 |#1|) (-10 -8 (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|))) (-1044)) (T -1043))
+NIL
+(-10 -8 (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-562)) 29)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-1044) (-139)) (T -1044))
-((-2579 (*1 *2) (-12 (-4 *1 (-1044)) (-5 *2 (-766)))))
-(-13 (-1051) (-721) (-642 $) (-612 (-562)) (-10 -7 (-15 -2579 ((-766))) (-6 -4399)))
+((-1568 (*1 *2) (-12 (-4 *1 (-1044)) (-5 *2 (-766)))))
+(-13 (-1051) (-721) (-642 $) (-612 (-562)) (-10 -7 (-15 -1568 ((-766))) (-6 -4400)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-612 (-562)) . T) ((-609 (-857)) . T) ((-642 $) . T) ((-721) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-2607 (((-406 (-947 |#2|)) (-639 |#2|) (-639 |#2|) (-766) (-766)) 46)))
-(((-1045 |#1| |#2|) (-10 -7 (-15 -2607 ((-406 (-947 |#2|)) (-639 |#2|) (-639 |#2|) (-766) (-766)))) (-1168) (-362)) (T -1045))
-((-2607 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-639 *6)) (-5 *4 (-766)) (-4 *6 (-362)) (-5 *2 (-406 (-947 *6))) (-5 *1 (-1045 *5 *6)) (-14 *5 (-1168)))))
-(-10 -7 (-15 -2607 ((-406 (-947 |#2|)) (-639 |#2|) (-639 |#2|) (-766) (-766))))
-((-2952 (((-112) $) 29)) (-3220 (((-112) $) 16)) (-2699 (((-766) $) 13)) (-2709 (((-766) $) 14)) (-1544 (((-112) $) 26)) (-1335 (((-112) $) 31)))
-(((-1046 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -2709 ((-766) |#1|)) (-15 -2699 ((-766) |#1|)) (-15 -1335 ((-112) |#1|)) (-15 -2952 ((-112) |#1|)) (-15 -1544 ((-112) |#1|)) (-15 -3220 ((-112) |#1|))) (-1047 |#2| |#3| |#4| |#5| |#6|) (-766) (-766) (-1044) (-237 |#3| |#4|) (-237 |#2| |#4|)) (T -1046))
-NIL
-(-10 -8 (-15 -2709 ((-766) |#1|)) (-15 -2699 ((-766) |#1|)) (-15 -1335 ((-112) |#1|)) (-15 -2952 ((-112) |#1|)) (-15 -1544 ((-112) |#1|)) (-15 -3220 ((-112) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-2952 (((-112) $) 51)) (-3214 (((-3 $ "failed") $ $) 19)) (-3220 (((-112) $) 53)) (-4336 (((-112) $ (-766)) 61)) (-1800 (($) 17 T CONST)) (-2522 (($ $) 34 (|has| |#3| (-306)))) (-3796 ((|#4| $ (-562)) 39)) (-2173 (((-766) $) 33 (|has| |#3| (-554)))) (-1420 ((|#3| $ (-562) (-562)) 41)) (-1720 (((-639 |#3|) $) 68 (|has| $ (-6 -4402)))) (-3922 (((-766) $) 32 (|has| |#3| (-554)))) (-2318 (((-639 |#5|) $) 31 (|has| |#3| (-554)))) (-2699 (((-766) $) 45)) (-2709 (((-766) $) 44)) (-3292 (((-112) $ (-766)) 60)) (-2783 (((-562) $) 49)) (-4217 (((-562) $) 47)) (-1912 (((-639 |#3|) $) 69 (|has| $ (-6 -4402)))) (-1669 (((-112) |#3| $) 71 (-12 (|has| |#3| (-1092)) (|has| $ (-6 -4402))))) (-4088 (((-562) $) 48)) (-2453 (((-562) $) 46)) (-2885 (($ (-639 (-639 |#3|))) 54)) (-1490 (($ (-1 |#3| |#3|) $) 64 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#3| |#3|) $) 63) (($ (-1 |#3| |#3| |#3|) $ $) 37)) (-2824 (((-639 (-639 |#3|)) $) 43)) (-3289 (((-112) $ (-766)) 59)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ |#3|) 36 (|has| |#3| (-554)))) (-1763 (((-112) (-1 (-112) |#3|) $) 66 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#3|) (-639 |#3|)) 75 (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ |#3| |#3|) 74 (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-293 |#3|)) 73 (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-639 (-293 |#3|))) 72 (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092))))) (-3336 (((-112) $ $) 55)) (-2974 (((-112) $) 58)) (-4307 (($) 57)) (-2343 ((|#3| $ (-562) (-562)) 42) ((|#3| $ (-562) (-562) |#3|) 40)) (-1544 (((-112) $) 52)) (-1723 (((-766) |#3| $) 70 (-12 (|has| |#3| (-1092)) (|has| $ (-6 -4402)))) (((-766) (-1 (-112) |#3|) $) 67 (|has| $ (-6 -4402)))) (-4220 (($ $) 56)) (-2211 ((|#5| $ (-562)) 38)) (-4054 (((-857) $) 11)) (-1744 (((-112) (-1 (-112) |#3|) $) 65 (|has| $ (-6 -4402)))) (-1335 (((-112) $) 50)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#3|) 35 (|has| |#3| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#3| $) 23) (($ $ |#3|) 26)) (-3492 (((-766) $) 62 (|has| $ (-6 -4402)))))
+((-3667 (((-406 (-947 |#2|)) (-639 |#2|) (-639 |#2|) (-766) (-766)) 46)))
+(((-1045 |#1| |#2|) (-10 -7 (-15 -3667 ((-406 (-947 |#2|)) (-639 |#2|) (-639 |#2|) (-766) (-766)))) (-1168) (-362)) (T -1045))
+((-3667 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-639 *6)) (-5 *4 (-766)) (-4 *6 (-362)) (-5 *2 (-406 (-947 *6))) (-5 *1 (-1045 *5 *6)) (-14 *5 (-1168)))))
+(-10 -7 (-15 -3667 ((-406 (-947 |#2|)) (-639 |#2|) (-639 |#2|) (-766) (-766))))
+((-4097 (((-112) $) 29)) (-2819 (((-112) $) 16)) (-2698 (((-766) $) 13)) (-2708 (((-766) $) 14)) (-1752 (((-112) $) 26)) (-1996 (((-112) $) 31)))
+(((-1046 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -2708 ((-766) |#1|)) (-15 -2698 ((-766) |#1|)) (-15 -1996 ((-112) |#1|)) (-15 -4097 ((-112) |#1|)) (-15 -1752 ((-112) |#1|)) (-15 -2819 ((-112) |#1|))) (-1047 |#2| |#3| |#4| |#5| |#6|) (-766) (-766) (-1044) (-237 |#3| |#4|) (-237 |#2| |#4|)) (T -1046))
+NIL
+(-10 -8 (-15 -2708 ((-766) |#1|)) (-15 -2698 ((-766) |#1|)) (-15 -1996 ((-112) |#1|)) (-15 -4097 ((-112) |#1|)) (-15 -1752 ((-112) |#1|)) (-15 -2819 ((-112) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-4097 (((-112) $) 51)) (-2781 (((-3 $ "failed") $ $) 19)) (-2819 (((-112) $) 53)) (-3735 (((-112) $ (-766)) 61)) (-3329 (($) 17 T CONST)) (-2239 (($ $) 34 (|has| |#3| (-306)))) (-3511 ((|#4| $ (-562)) 39)) (-2172 (((-766) $) 33 (|has| |#3| (-554)))) (-1420 ((|#3| $ (-562) (-562)) 41)) (-1720 (((-639 |#3|) $) 68 (|has| $ (-6 -4403)))) (-4244 (((-766) $) 32 (|has| |#3| (-554)))) (-3821 (((-639 |#5|) $) 31 (|has| |#3| (-554)))) (-2698 (((-766) $) 45)) (-2708 (((-766) $) 44)) (-4172 (((-112) $ (-766)) 60)) (-1808 (((-562) $) 49)) (-2028 (((-562) $) 47)) (-2123 (((-639 |#3|) $) 69 (|has| $ (-6 -4403)))) (-1572 (((-112) |#3| $) 71 (-12 (|has| |#3| (-1092)) (|has| $ (-6 -4403))))) (-3269 (((-562) $) 48)) (-2727 (((-562) $) 46)) (-2884 (($ (-639 (-639 |#3|))) 54)) (-1491 (($ (-1 |#3| |#3|) $) 64 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#3| |#3|) $) 63) (($ (-1 |#3| |#3| |#3|) $ $) 37)) (-2247 (((-639 (-639 |#3|)) $) 43)) (-4147 (((-112) $ (-766)) 59)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ |#3|) 36 (|has| |#3| (-554)))) (-3008 (((-112) (-1 (-112) |#3|) $) 66 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#3|) (-639 |#3|)) 75 (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ |#3| |#3|) 74 (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-293 |#3|)) 73 (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-639 (-293 |#3|))) 72 (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092))))) (-1452 (((-112) $ $) 55)) (-3087 (((-112) $) 58)) (-1663 (($) 57)) (-2343 ((|#3| $ (-562) (-562)) 42) ((|#3| $ (-562) (-562) |#3|) 40)) (-1752 (((-112) $) 52)) (-1723 (((-766) |#3| $) 70 (-12 (|has| |#3| (-1092)) (|has| $ (-6 -4403)))) (((-766) (-1 (-112) |#3|) $) 67 (|has| $ (-6 -4403)))) (-4220 (($ $) 56)) (-2208 ((|#5| $ (-562)) 38)) (-4053 (((-857) $) 11)) (-2879 (((-112) (-1 (-112) |#3|) $) 65 (|has| $ (-6 -4403)))) (-1996 (((-112) $) 50)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#3|) 35 (|has| |#3| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#3| $) 23) (($ $ |#3|) 26)) (-3492 (((-766) $) 62 (|has| $ (-6 -4403)))))
(((-1047 |#1| |#2| |#3| |#4| |#5|) (-139) (-766) (-766) (-1044) (-237 |t#2| |t#3|) (-237 |t#1| |t#3|)) (T -1047))
-((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)))) (-2885 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *5))) (-4 *5 (-1044)) (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)))) (-3220 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))) (-1544 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))) (-2952 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))) (-1335 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))) (-2783 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))) (-4088 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))) (-4217 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))) (-2453 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))) (-2699 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-766)))) (-2709 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-766)))) (-2824 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-639 (-639 *5))))) (-2343 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *2 *6 *7)) (-4 *6 (-237 *5 *2)) (-4 *7 (-237 *4 *2)) (-4 *2 (-1044)))) (-1420 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *2 *6 *7)) (-4 *6 (-237 *5 *2)) (-4 *7 (-237 *4 *2)) (-4 *2 (-1044)))) (-2343 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *2 *6 *7)) (-4 *2 (-1044)) (-4 *6 (-237 *5 *2)) (-4 *7 (-237 *4 *2)))) (-3796 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *6 *2 *7)) (-4 *6 (-1044)) (-4 *7 (-237 *4 *6)) (-4 *2 (-237 *5 *6)))) (-2211 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *6 *7 *2)) (-4 *6 (-1044)) (-4 *7 (-237 *5 *6)) (-4 *2 (-237 *4 *6)))) (-4152 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)))) (-1762 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1047 *3 *4 *2 *5 *6)) (-4 *2 (-1044)) (-4 *5 (-237 *4 *2)) (-4 *6 (-237 *3 *2)) (-4 *2 (-554)))) (-1859 (*1 *1 *1 *2) (-12 (-4 *1 (-1047 *3 *4 *2 *5 *6)) (-4 *2 (-1044)) (-4 *5 (-237 *4 *2)) (-4 *6 (-237 *3 *2)) (-4 *2 (-362)))) (-2522 (*1 *1 *1) (-12 (-4 *1 (-1047 *2 *3 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-237 *3 *4)) (-4 *6 (-237 *2 *4)) (-4 *4 (-306)))) (-2173 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-4 *5 (-554)) (-5 *2 (-766)))) (-3922 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-4 *5 (-554)) (-5 *2 (-766)))) (-2318 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-4 *5 (-554)) (-5 *2 (-639 *7)))))
-(-13 (-111 |t#3| |t#3|) (-488 |t#3|) (-10 -8 (-6 -4402) (IF (|has| |t#3| (-171)) (-6 (-712 |t#3|)) |%noBranch|) (-15 -2885 ($ (-639 (-639 |t#3|)))) (-15 -3220 ((-112) $)) (-15 -1544 ((-112) $)) (-15 -2952 ((-112) $)) (-15 -1335 ((-112) $)) (-15 -2783 ((-562) $)) (-15 -4088 ((-562) $)) (-15 -4217 ((-562) $)) (-15 -2453 ((-562) $)) (-15 -2699 ((-766) $)) (-15 -2709 ((-766) $)) (-15 -2824 ((-639 (-639 |t#3|)) $)) (-15 -2343 (|t#3| $ (-562) (-562))) (-15 -1420 (|t#3| $ (-562) (-562))) (-15 -2343 (|t#3| $ (-562) (-562) |t#3|)) (-15 -3796 (|t#4| $ (-562))) (-15 -2211 (|t#5| $ (-562))) (-15 -4152 ($ (-1 |t#3| |t#3|) $)) (-15 -4152 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-554)) (-15 -1762 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-362)) (-15 -1859 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-306)) (-15 -2522 ($ $)) |%noBranch|) (IF (|has| |t#3| (-554)) (PROGN (-15 -2173 ((-766) $)) (-15 -3922 ((-766) $)) (-15 -2318 ((-639 |t#5|) $))) |%noBranch|)))
+((-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)))) (-2884 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *5))) (-4 *5 (-1044)) (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)))) (-2819 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))) (-1752 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))) (-4097 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))) (-1996 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))) (-1808 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))) (-3269 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))) (-2028 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))) (-2727 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))) (-2698 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-766)))) (-2708 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-766)))) (-2247 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-639 (-639 *5))))) (-2343 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *2 *6 *7)) (-4 *6 (-237 *5 *2)) (-4 *7 (-237 *4 *2)) (-4 *2 (-1044)))) (-1420 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *2 *6 *7)) (-4 *6 (-237 *5 *2)) (-4 *7 (-237 *4 *2)) (-4 *2 (-1044)))) (-2343 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *2 *6 *7)) (-4 *2 (-1044)) (-4 *6 (-237 *5 *2)) (-4 *7 (-237 *4 *2)))) (-3511 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *6 *2 *7)) (-4 *6 (-1044)) (-4 *7 (-237 *4 *6)) (-4 *2 (-237 *5 *6)))) (-2208 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *6 *7 *2)) (-4 *6 (-1044)) (-4 *7 (-237 *5 *6)) (-4 *2 (-237 *4 *6)))) (-4152 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)))) (-1762 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1047 *3 *4 *2 *5 *6)) (-4 *2 (-1044)) (-4 *5 (-237 *4 *2)) (-4 *6 (-237 *3 *2)) (-4 *2 (-554)))) (-1859 (*1 *1 *1 *2) (-12 (-4 *1 (-1047 *3 *4 *2 *5 *6)) (-4 *2 (-1044)) (-4 *5 (-237 *4 *2)) (-4 *6 (-237 *3 *2)) (-4 *2 (-362)))) (-2239 (*1 *1 *1) (-12 (-4 *1 (-1047 *2 *3 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-237 *3 *4)) (-4 *6 (-237 *2 *4)) (-4 *4 (-306)))) (-2172 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-4 *5 (-554)) (-5 *2 (-766)))) (-4244 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-4 *5 (-554)) (-5 *2 (-766)))) (-3821 (*1 *2 *1) (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044)) (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-4 *5 (-554)) (-5 *2 (-639 *7)))))
+(-13 (-111 |t#3| |t#3|) (-488 |t#3|) (-10 -8 (-6 -4403) (IF (|has| |t#3| (-171)) (-6 (-712 |t#3|)) |%noBranch|) (-15 -2884 ($ (-639 (-639 |t#3|)))) (-15 -2819 ((-112) $)) (-15 -1752 ((-112) $)) (-15 -4097 ((-112) $)) (-15 -1996 ((-112) $)) (-15 -1808 ((-562) $)) (-15 -3269 ((-562) $)) (-15 -2028 ((-562) $)) (-15 -2727 ((-562) $)) (-15 -2698 ((-766) $)) (-15 -2708 ((-766) $)) (-15 -2247 ((-639 (-639 |t#3|)) $)) (-15 -2343 (|t#3| $ (-562) (-562))) (-15 -1420 (|t#3| $ (-562) (-562))) (-15 -2343 (|t#3| $ (-562) (-562) |t#3|)) (-15 -3511 (|t#4| $ (-562))) (-15 -2208 (|t#5| $ (-562))) (-15 -4152 ($ (-1 |t#3| |t#3|) $)) (-15 -4152 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-554)) (-15 -1762 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-362)) (-15 -1859 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-306)) (-15 -2239 ($ $)) |%noBranch|) (IF (|has| |t#3| (-554)) (PROGN (-15 -2172 ((-766) $)) (-15 -4244 ((-766) $)) (-15 -3821 ((-639 |t#5|) $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-102) . T) ((-111 |#3| |#3|) . T) ((-130) . T) ((-609 (-857)) . T) ((-308 |#3|) -12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092))) ((-488 |#3|) . T) ((-513 |#3| |#3|) -12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092))) ((-642 |#3|) . T) ((-712 |#3|) |has| |#3| (-171)) ((-1050 |#3|) . T) ((-1092) . T) ((-1207) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-2952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3220 (((-112) $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-1800 (($) NIL T CONST)) (-2522 (($ $) 43 (|has| |#3| (-306)))) (-3796 (((-239 |#2| |#3|) $ (-562)) 32)) (-3416 (($ (-683 |#3|)) 41)) (-2173 (((-766) $) 45 (|has| |#3| (-554)))) (-1420 ((|#3| $ (-562) (-562)) NIL)) (-1720 (((-639 |#3|) $) NIL (|has| $ (-6 -4402)))) (-3922 (((-766) $) 47 (|has| |#3| (-554)))) (-2318 (((-639 (-239 |#1| |#3|)) $) 51 (|has| |#3| (-554)))) (-2699 (((-766) $) NIL)) (-2709 (((-766) $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-2783 (((-562) $) NIL)) (-4217 (((-562) $) NIL)) (-1912 (((-639 |#3|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#3| (-1092))))) (-4088 (((-562) $) NIL)) (-2453 (((-562) $) NIL)) (-2885 (($ (-639 (-639 |#3|))) 27)) (-1490 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-2824 (((-639 (-639 |#3|)) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-554)))) (-1763 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#3|) (-639 |#3|)) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-293 |#3|)) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-639 (-293 |#3|))) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#3| $ (-562) (-562)) NIL) ((|#3| $ (-562) (-562) |#3|) NIL)) (-3627 (((-133)) 54 (|has| |#3| (-362)))) (-1544 (((-112) $) NIL)) (-1723 (((-766) |#3| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#3| (-1092)))) (((-766) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) 63 (|has| |#3| (-610 (-535))))) (-2211 (((-239 |#1| |#3|) $ (-562)) 36)) (-4054 (((-857) $) 16) (((-683 |#3|) $) 38)) (-1744 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4402)))) (-1335 (((-112) $) NIL)) (-2286 (($) 13 T CONST)) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ |#3|) NIL (|has| |#3| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-1048 |#1| |#2| |#3|) (-13 (-1047 |#1| |#2| |#3| (-239 |#2| |#3|) (-239 |#1| |#3|)) (-609 (-683 |#3|)) (-10 -8 (IF (|has| |#3| (-362)) (-6 (-1263 |#3|)) |%noBranch|) (IF (|has| |#3| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (-15 -3416 ($ (-683 |#3|))))) (-766) (-766) (-1044)) (T -1048))
-((-3416 (*1 *1 *2) (-12 (-5 *2 (-683 *5)) (-4 *5 (-1044)) (-5 *1 (-1048 *3 *4 *5)) (-14 *3 (-766)) (-14 *4 (-766)))))
-(-13 (-1047 |#1| |#2| |#3| (-239 |#2| |#3|) (-239 |#1| |#3|)) (-609 (-683 |#3|)) (-10 -8 (IF (|has| |#3| (-362)) (-6 (-1263 |#3|)) |%noBranch|) (IF (|has| |#3| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (-15 -3416 ($ (-683 |#3|)))))
-((-1955 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 34)) (-4152 ((|#10| (-1 |#7| |#3|) |#6|) 32)))
-(((-1049 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -4152 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -1955 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-766) (-766) (-1044) (-237 |#2| |#3|) (-237 |#1| |#3|) (-1047 |#1| |#2| |#3| |#4| |#5|) (-1044) (-237 |#2| |#7|) (-237 |#1| |#7|) (-1047 |#1| |#2| |#7| |#8| |#9|)) (T -1049))
-((-1955 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-1044)) (-4 *2 (-1044)) (-14 *5 (-766)) (-14 *6 (-766)) (-4 *8 (-237 *6 *7)) (-4 *9 (-237 *5 *7)) (-4 *10 (-237 *6 *2)) (-4 *11 (-237 *5 *2)) (-5 *1 (-1049 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-1047 *5 *6 *7 *8 *9)) (-4 *12 (-1047 *5 *6 *2 *10 *11)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-1044)) (-4 *10 (-1044)) (-14 *5 (-766)) (-14 *6 (-766)) (-4 *8 (-237 *6 *7)) (-4 *9 (-237 *5 *7)) (-4 *2 (-1047 *5 *6 *10 *11 *12)) (-5 *1 (-1049 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-1047 *5 *6 *7 *8 *9)) (-4 *11 (-237 *6 *10)) (-4 *12 (-237 *5 *10)))))
-(-10 -7 (-15 -4152 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -1955 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ |#1|) 23)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-4097 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-2819 (((-112) $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-3329 (($) NIL T CONST)) (-2239 (($ $) 43 (|has| |#3| (-306)))) (-3511 (((-239 |#2| |#3|) $ (-562)) 32)) (-4095 (($ (-683 |#3|)) 41)) (-2172 (((-766) $) 45 (|has| |#3| (-554)))) (-1420 ((|#3| $ (-562) (-562)) NIL)) (-1720 (((-639 |#3|) $) NIL (|has| $ (-6 -4403)))) (-4244 (((-766) $) 47 (|has| |#3| (-554)))) (-3821 (((-639 (-239 |#1| |#3|)) $) 51 (|has| |#3| (-554)))) (-2698 (((-766) $) NIL)) (-2708 (((-766) $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1808 (((-562) $) NIL)) (-2028 (((-562) $) NIL)) (-2123 (((-639 |#3|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#3| (-1092))))) (-3269 (((-562) $) NIL)) (-2727 (((-562) $) NIL)) (-2884 (($ (-639 (-639 |#3|))) 27)) (-1491 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-2247 (((-639 (-639 |#3|)) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-554)))) (-3008 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#3|) (-639 |#3|)) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-293 |#3|)) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-639 (-293 |#3|))) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#3| $ (-562) (-562)) NIL) ((|#3| $ (-562) (-562) |#3|) NIL)) (-4340 (((-133)) 54 (|has| |#3| (-362)))) (-1752 (((-112) $) NIL)) (-1723 (((-766) |#3| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#3| (-1092)))) (((-766) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) 63 (|has| |#3| (-610 (-535))))) (-2208 (((-239 |#1| |#3|) $ (-562)) 36)) (-4053 (((-857) $) 16) (((-683 |#3|) $) 38)) (-2879 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4403)))) (-1996 (((-112) $) NIL)) (-2285 (($) 13 T CONST)) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ |#3|) NIL (|has| |#3| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-1048 |#1| |#2| |#3|) (-13 (-1047 |#1| |#2| |#3| (-239 |#2| |#3|) (-239 |#1| |#3|)) (-609 (-683 |#3|)) (-10 -8 (IF (|has| |#3| (-362)) (-6 (-1263 |#3|)) |%noBranch|) (IF (|has| |#3| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (-15 -4095 ($ (-683 |#3|))))) (-766) (-766) (-1044)) (T -1048))
+((-4095 (*1 *1 *2) (-12 (-5 *2 (-683 *5)) (-4 *5 (-1044)) (-5 *1 (-1048 *3 *4 *5)) (-14 *3 (-766)) (-14 *4 (-766)))))
+(-13 (-1047 |#1| |#2| |#3| (-239 |#2| |#3|) (-239 |#1| |#3|)) (-609 (-683 |#3|)) (-10 -8 (IF (|has| |#3| (-362)) (-6 (-1263 |#3|)) |%noBranch|) (IF (|has| |#3| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|) (-15 -4095 ($ (-683 |#3|)))))
+((-1954 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 34)) (-4152 ((|#10| (-1 |#7| |#3|) |#6|) 32)))
+(((-1049 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -4152 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -1954 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-766) (-766) (-1044) (-237 |#2| |#3|) (-237 |#1| |#3|) (-1047 |#1| |#2| |#3| |#4| |#5|) (-1044) (-237 |#2| |#7|) (-237 |#1| |#7|) (-1047 |#1| |#2| |#7| |#8| |#9|)) (T -1049))
+((-1954 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-1044)) (-4 *2 (-1044)) (-14 *5 (-766)) (-14 *6 (-766)) (-4 *8 (-237 *6 *7)) (-4 *9 (-237 *5 *7)) (-4 *10 (-237 *6 *2)) (-4 *11 (-237 *5 *2)) (-5 *1 (-1049 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-1047 *5 *6 *7 *8 *9)) (-4 *12 (-1047 *5 *6 *2 *10 *11)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-1044)) (-4 *10 (-1044)) (-14 *5 (-766)) (-14 *6 (-766)) (-4 *8 (-237 *6 *7)) (-4 *9 (-237 *5 *7)) (-4 *2 (-1047 *5 *6 *10 *11 *12)) (-5 *1 (-1049 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-1047 *5 *6 *7 *8 *9)) (-4 *11 (-237 *6 *10)) (-4 *12 (-237 *5 *10)))))
+(-10 -7 (-15 -4152 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -1954 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ |#1|) 23)))
(((-1050 |#1|) (-139) (-1051)) (T -1050))
((* (*1 *1 *1 *2) (-12 (-4 *1 (-1050 *2)) (-4 *2 (-1051)))))
(-13 (-21) (-10 -8 (-15 * ($ $ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-1051) (-139)) (T -1051))
NIL
(-13 (-21) (-1104))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-130) . T) ((-609 (-857)) . T) ((-1104) . T) ((-1092) . T))
-((-2557 (($ $) 16)) (-4103 (($ $) 22)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 49)) (-2247 (($ $) 24)) (-2736 (($ $) 11)) (-4014 (($ $) 38)) (-4208 (((-378) $) NIL) (((-224) $) NIL) (((-887 (-378)) $) 33)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) 28) (($ (-562)) NIL) (($ (-406 (-562))) 28)) (-2579 (((-766)) 8)) (-2604 (($ $) 39)))
-(((-1052 |#1|) (-10 -8 (-15 -4103 (|#1| |#1|)) (-15 -2557 (|#1| |#1|)) (-15 -2736 (|#1| |#1|)) (-15 -4014 (|#1| |#1|)) (-15 -2604 (|#1| |#1|)) (-15 -2247 (|#1| |#1|)) (-15 -2533 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4054 (|#1| (-562))) (-15 -4208 ((-224) |#1|)) (-15 -4208 ((-378) |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4054 (|#1| |#1|)) (-15 -2579 ((-766))) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|))) (-1053)) (T -1052))
-((-2579 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1052 *3)) (-4 *3 (-1053)))))
-(-10 -8 (-15 -4103 (|#1| |#1|)) (-15 -2557 (|#1| |#1|)) (-15 -2736 (|#1| |#1|)) (-15 -4014 (|#1| |#1|)) (-15 -2604 (|#1| |#1|)) (-15 -2247 (|#1| |#1|)) (-15 -2533 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4054 (|#1| (-562))) (-15 -4208 ((-224) |#1|)) (-15 -4208 ((-378) |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4054 (|#1| |#1|)) (-15 -2579 ((-766))) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-4246 (((-562) $) 90)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-2557 (($ $) 88)) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 74)) (-2921 (((-417 $) $) 73)) (-1643 (($ $) 98)) (-2569 (((-112) $ $) 60)) (-2277 (((-562) $) 115)) (-1800 (($) 17 T CONST)) (-4103 (($ $) 87)) (-4048 (((-3 (-562) "failed") $) 103) (((-3 (-406 (-562)) "failed") $) 100)) (-3961 (((-562) $) 104) (((-406 (-562)) $) 101)) (-1811 (($ $ $) 56)) (-3668 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-2717 (((-112) $) 72)) (-3519 (((-112) $) 113)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 94)) (-1957 (((-112) $) 31)) (-1891 (($ $ (-562)) 97)) (-2247 (($ $) 93)) (-3392 (((-112) $) 114)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1551 (($ $ $) 112)) (-2993 (($ $ $) 111)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 71)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-2736 (($ $) 89)) (-4014 (($ $) 91)) (-1635 (((-417 $) $) 75)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1577 (((-766) $) 59)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 58)) (-4208 (((-378) $) 106) (((-224) $) 105) (((-887 (-378)) $) 95)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67) (($ (-562)) 102) (($ (-406 (-562))) 99)) (-2579 (((-766)) 28)) (-2604 (($ $) 92)) (-2922 (((-112) $ $) 40)) (-3526 (($ $) 116)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 109)) (-1772 (((-112) $ $) 108)) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 110)) (-1759 (((-112) $ $) 107)) (-1859 (($ $ $) 66)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70) (($ $ (-406 (-562))) 96)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68)))
+((-1302 (($ $) 16)) (-3410 (($ $) 22)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 49)) (-4363 (($ $) 24)) (-2561 (($ $) 11)) (-3870 (($ $) 38)) (-4208 (((-378) $) NIL) (((-224) $) NIL) (((-887 (-378)) $) 33)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL) (($ (-406 (-562))) 28) (($ (-562)) NIL) (($ (-406 (-562))) 28)) (-1568 (((-766)) 8)) (-3636 (($ $) 39)))
+(((-1052 |#1|) (-10 -8 (-15 -3410 (|#1| |#1|)) (-15 -1302 (|#1| |#1|)) (-15 -2561 (|#1| |#1|)) (-15 -3870 (|#1| |#1|)) (-15 -3636 (|#1| |#1|)) (-15 -4363 (|#1| |#1|)) (-15 -2337 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4053 (|#1| (-562))) (-15 -4208 ((-224) |#1|)) (-15 -4208 ((-378) |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4053 (|#1| |#1|)) (-15 -1568 ((-766))) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|))) (-1053)) (T -1052))
+((-1568 (*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1052 *3)) (-4 *3 (-1053)))))
+(-10 -8 (-15 -3410 (|#1| |#1|)) (-15 -1302 (|#1| |#1|)) (-15 -2561 (|#1| |#1|)) (-15 -3870 (|#1| |#1|)) (-15 -3636 (|#1| |#1|)) (-15 -4363 (|#1| |#1|)) (-15 -2337 ((-884 (-378) |#1|) |#1| (-887 (-378)) (-884 (-378) |#1|))) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4053 (|#1| (-562))) (-15 -4208 ((-224) |#1|)) (-15 -4208 ((-378) |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4053 (|#1| |#1|)) (-15 -1568 ((-766))) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2300 (((-562) $) 90)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-1302 (($ $) 88)) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 74)) (-3788 (((-417 $) $) 73)) (-1644 (($ $) 98)) (-1436 (((-112) $ $) 60)) (-1587 (((-562) $) 115)) (-3329 (($) 17 T CONST)) (-3410 (($ $) 87)) (-4048 (((-3 (-562) "failed") $) 103) (((-3 (-406 (-562)) "failed") $) 100)) (-3960 (((-562) $) 104) (((-406 (-562)) $) 101)) (-1810 (($ $ $) 56)) (-1694 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-3521 (((-112) $) 72)) (-2696 (((-112) $) 113)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 94)) (-4367 (((-112) $) 31)) (-1895 (($ $ (-562)) 97)) (-4363 (($ $) 93)) (-3855 (((-112) $) 114)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1551 (($ $ $) 112)) (-2993 (($ $ $) 111)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 71)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-2561 (($ $) 89)) (-3870 (($ $) 91)) (-1635 (((-417 $) $) 75)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-2044 (((-766) $) 59)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 58)) (-4208 (((-378) $) 106) (((-224) $) 105) (((-887 (-378)) $) 95)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67) (($ (-562)) 102) (($ (-406 (-562))) 99)) (-1568 (((-766)) 28)) (-3636 (($ $) 92)) (-3799 (((-112) $ $) 40)) (-2757 (($ $) 116)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1798 (((-112) $ $) 109)) (-1771 (((-112) $ $) 108)) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 110)) (-1761 (((-112) $ $) 107)) (-1859 (($ $ $) 66)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70) (($ $ (-406 (-562))) 96)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68)))
(((-1053) (-139)) (T -1053))
-((-3526 (*1 *1 *1) (-4 *1 (-1053))) (-2247 (*1 *1 *1) (-4 *1 (-1053))) (-2604 (*1 *1 *1) (-4 *1 (-1053))) (-4014 (*1 *1 *1) (-4 *1 (-1053))) (-4246 (*1 *2 *1) (-12 (-4 *1 (-1053)) (-5 *2 (-562)))) (-2736 (*1 *1 *1) (-4 *1 (-1053))) (-2557 (*1 *1 *1) (-4 *1 (-1053))) (-4103 (*1 *1 *1) (-4 *1 (-1053))))
-(-13 (-362) (-843) (-1017) (-1033 (-562)) (-1033 (-406 (-562))) (-997) (-610 (-887 (-378))) (-881 (-378)) (-146) (-10 -8 (-15 -2247 ($ $)) (-15 -2604 ($ $)) (-15 -4014 ($ $)) (-15 -4246 ((-562) $)) (-15 -2736 ($ $)) (-15 -2557 ($ $)) (-15 -4103 ($ $)) (-15 -3526 ($ $))))
+((-2757 (*1 *1 *1) (-4 *1 (-1053))) (-4363 (*1 *1 *1) (-4 *1 (-1053))) (-3636 (*1 *1 *1) (-4 *1 (-1053))) (-3870 (*1 *1 *1) (-4 *1 (-1053))) (-2300 (*1 *2 *1) (-12 (-4 *1 (-1053)) (-5 *2 (-562)))) (-2561 (*1 *1 *1) (-4 *1 (-1053))) (-1302 (*1 *1 *1) (-4 *1 (-1053))) (-3410 (*1 *1 *1) (-4 *1 (-1053))))
+(-13 (-362) (-843) (-1017) (-1033 (-562)) (-1033 (-406 (-562))) (-997) (-610 (-887 (-378))) (-881 (-378)) (-146) (-10 -8 (-15 -4363 ($ $)) (-15 -3636 ($ $)) (-15 -3870 ($ $)) (-15 -2300 ((-562) $)) (-15 -2561 ($ $)) (-15 -1302 ($ $)) (-15 -3410 ($ $)) (-15 -2757 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-130) . T) ((-146) . T) ((-612 #0#) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-610 (-224)) . T) ((-610 (-378)) . T) ((-610 (-887 (-378))) . T) ((-242) . T) ((-289) . T) ((-306) . T) ((-362) . T) ((-451) . T) ((-554) . T) ((-642 #0#) . T) ((-642 $) . T) ((-712 #0#) . T) ((-712 $) . T) ((-721) . T) ((-786) . T) ((-787) . T) ((-789) . T) ((-790) . T) ((-843) . T) ((-845) . T) ((-881 (-378)) . T) ((-915) . T) ((-997) . T) ((-1017) . T) ((-1033 (-406 (-562))) . T) ((-1033 (-562)) . T) ((-1050 #0#) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1211) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) |#2| $) 23)) (-1382 ((|#1| $) 10)) (-2277 (((-562) |#2| $) 87)) (-1502 (((-3 $ "failed") |#2| (-916)) 57)) (-1602 ((|#1| $) 28)) (-3104 ((|#1| |#2| $ |#1|) 37)) (-3528 (($ $) 25)) (-3668 (((-3 |#2| "failed") |#2| $) 86)) (-3519 (((-112) |#2| $) NIL)) (-3392 (((-112) |#2| $) NIL)) (-3800 (((-112) |#2| $) 24)) (-3654 ((|#1| $) 88)) (-1588 ((|#1| $) 27)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2096 ((|#2| $) 78)) (-4054 (((-857) $) 70)) (-1406 ((|#1| |#2| $ |#1|) 38)) (-3318 (((-639 $) |#2|) 59)) (-1731 (((-112) $ $) 73)))
-(((-1054 |#1| |#2|) (-13 (-1061 |#1| |#2|) (-10 -8 (-15 -1588 (|#1| $)) (-15 -1602 (|#1| $)) (-15 -1382 (|#1| $)) (-15 -3654 (|#1| $)) (-15 -3528 ($ $)) (-15 -3800 ((-112) |#2| $)) (-15 -3104 (|#1| |#2| $ |#1|)))) (-13 (-843) (-362)) (-1232 |#1|)) (T -1054))
-((-3104 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-1232 *2)))) (-1588 (*1 *2 *1) (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-1232 *2)))) (-1602 (*1 *2 *1) (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-1232 *2)))) (-1382 (*1 *2 *1) (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-1232 *2)))) (-3654 (*1 *2 *1) (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-1232 *2)))) (-3528 (*1 *1 *1) (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-1232 *2)))) (-3800 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-843) (-362))) (-5 *2 (-112)) (-5 *1 (-1054 *4 *3)) (-4 *3 (-1232 *4)))))
-(-13 (-1061 |#1| |#2|) (-10 -8 (-15 -1588 (|#1| $)) (-15 -1602 (|#1| $)) (-15 -1382 (|#1| $)) (-15 -3654 (|#1| $)) (-15 -3528 ($ $)) (-15 -3800 ((-112) |#2| $)) (-15 -3104 (|#1| |#2| $ |#1|))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-1685 (($ $ $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-4375 (($ $ $ $) NIL)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-2277 (((-562) $) NIL)) (-3358 (($ $ $) NIL)) (-1800 (($) NIL T CONST)) (-2614 (($ (-1168)) 10) (($ (-562)) 7)) (-4048 (((-3 (-562) "failed") $) NIL)) (-3961 (((-562) $) NIL)) (-1811 (($ $ $) NIL)) (-2406 (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1726 (((-3 (-406 (-562)) "failed") $) NIL)) (-3035 (((-112) $) NIL)) (-1291 (((-406 (-562)) $) NIL)) (-1448 (($) NIL) (($ $) NIL)) (-1787 (($ $ $) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3854 (($ $ $ $) NIL)) (-1292 (($ $ $) NIL)) (-3519 (((-112) $) NIL)) (-2794 (($ $ $) NIL)) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL)) (-1957 (((-112) $) NIL)) (-3130 (((-112) $) NIL)) (-3699 (((-3 $ "failed") $) NIL)) (-3392 (((-112) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2504 (($ $ $ $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3930 (($ $) NIL)) (-3641 (($ $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1809 (($ $ $) NIL)) (-3729 (($) NIL T CONST)) (-4137 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-1351 (($ $) NIL)) (-1635 (((-417 $) $) NIL)) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3803 (((-112) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-4029 (($ $ (-766)) NIL) (($ $) NIL)) (-2372 (($ $) NIL)) (-4220 (($ $) NIL)) (-4208 (((-562) $) 16) (((-535) $) NIL) (((-887 (-562)) $) NIL) (((-378) $) NIL) (((-224) $) NIL) (($ (-1168)) 9)) (-4054 (((-857) $) 20) (($ (-562)) 6) (($ $) NIL) (($ (-562)) 6)) (-2579 (((-766)) NIL)) (-2929 (((-112) $ $) NIL)) (-3261 (($ $ $) NIL)) (-3241 (($) NIL)) (-2922 (((-112) $ $) NIL)) (-3131 (($ $ $ $) NIL)) (-3526 (($ $) NIL)) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-766)) NIL) (($ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)) (-1848 (($ $) 19) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL)))
-(((-1055) (-13 (-544) (-614 (-1168)) (-10 -8 (-6 -4389) (-6 -4394) (-6 -4390) (-15 -2614 ($ (-1168))) (-15 -2614 ($ (-562)))))) (T -1055))
-((-2614 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1055)))) (-2614 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1055)))))
-(-13 (-544) (-614 (-1168)) (-10 -8 (-6 -4389) (-6 -4394) (-6 -4390) (-15 -2614 ($ (-1168))) (-15 -2614 ($ (-562)))))
-((-4041 (((-112) $ $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) NIL)) (-3052 (((-1261) $ (-1168) (-1168)) NIL (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) NIL)) (-3920 (($) 9)) (-4200 (((-52) $ (-1168) (-52)) NIL)) (-2457 (($ $) 30)) (-1342 (($ $) 28)) (-2972 (($ $) 27)) (-3772 (($ $) 29)) (-3621 (($ $) 32)) (-4080 (($ $) 33)) (-2774 (($ $) 26)) (-2179 (($ $) 31)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) 25 (|has| $ (-6 -4402)))) (-1472 (((-3 (-52) "failed") (-1168) $) 40)) (-1800 (($) NIL T CONST)) (-1358 (($) 7)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092))))) (-4000 (($ (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) 50 (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-3 (-52) "failed") (-1168) $) NIL)) (-1475 (($ (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (($ (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $ (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (((-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $ (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402)))) (-1300 (((-3 (-1150) "failed") $ (-1150) (-562)) 59)) (-1505 (((-52) $ (-1168) (-52)) NIL (|has| $ (-6 -4403)))) (-1420 (((-52) $ (-1168)) NIL)) (-1720 (((-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-639 (-52)) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-1168) $) NIL (|has| (-1168) (-845)))) (-1912 (((-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) 35 (|has| $ (-6 -4402))) (((-639 (-52)) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-52) (-1092))))) (-3874 (((-1168) $) NIL (|has| (-1168) (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092))))) (-1520 (((-639 (-1168)) $) NIL)) (-4265 (((-112) (-1168) $) NIL)) (-3262 (((-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) NIL)) (-4300 (($ (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) 43)) (-2093 (((-639 (-1168)) $) NIL)) (-1570 (((-112) (-1168) $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092))))) (-1632 (((-378) $ (-1168)) 49)) (-2069 (((-639 (-1150)) $ (-1150)) 60)) (-1421 (((-52) $) NIL (|has| (-1168) (-845)))) (-3251 (((-3 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) "failed") (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL)) (-2716 (($ $ (-52)) NIL (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) NIL)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))))) NIL (-12 (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (($ $ (-293 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) NIL (-12 (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (($ $ (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) NIL (-12 (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (($ $ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) NIL (-12 (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-308 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (($ $ (-639 (-52)) (-639 (-52))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-293 (-52))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-639 (-293 (-52)))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-52) (-1092))))) (-2411 (((-639 (-52)) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 (((-52) $ (-1168)) NIL) (((-52) $ (-1168) (-52)) NIL)) (-3564 (($) NIL) (($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) NIL)) (-2459 (($ $ (-1168)) 51)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092)))) (((-766) (-52) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-52) (-1092)))) (((-766) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) 37)) (-2767 (($ $ $) 38)) (-4054 (((-857) $) NIL (-4037 (|has| (-52) (-609 (-857))) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-609 (-857)))))) (-1294 (($ $ (-1168) (-378)) 47)) (-2976 (($ $ (-1168) (-378)) 48)) (-1932 (($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))))) NIL)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 (-1168)) (|:| -2694 (-52)))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2320 (-1168)) (|:| -2694 (-52))) (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-1056) (-13 (-1183 (-1168) (-52)) (-10 -8 (-15 -2767 ($ $ $)) (-15 -1358 ($)) (-15 -2774 ($ $)) (-15 -2972 ($ $)) (-15 -1342 ($ $)) (-15 -3772 ($ $)) (-15 -2179 ($ $)) (-15 -2457 ($ $)) (-15 -3621 ($ $)) (-15 -4080 ($ $)) (-15 -1294 ($ $ (-1168) (-378))) (-15 -2976 ($ $ (-1168) (-378))) (-15 -1632 ((-378) $ (-1168))) (-15 -2069 ((-639 (-1150)) $ (-1150))) (-15 -2459 ($ $ (-1168))) (-15 -3920 ($)) (-15 -1300 ((-3 (-1150) "failed") $ (-1150) (-562))) (-6 -4402)))) (T -1056))
-((-2767 (*1 *1 *1 *1) (-5 *1 (-1056))) (-1358 (*1 *1) (-5 *1 (-1056))) (-2774 (*1 *1 *1) (-5 *1 (-1056))) (-2972 (*1 *1 *1) (-5 *1 (-1056))) (-1342 (*1 *1 *1) (-5 *1 (-1056))) (-3772 (*1 *1 *1) (-5 *1 (-1056))) (-2179 (*1 *1 *1) (-5 *1 (-1056))) (-2457 (*1 *1 *1) (-5 *1 (-1056))) (-3621 (*1 *1 *1) (-5 *1 (-1056))) (-4080 (*1 *1 *1) (-5 *1 (-1056))) (-1294 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-378)) (-5 *1 (-1056)))) (-2976 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-378)) (-5 *1 (-1056)))) (-1632 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-378)) (-5 *1 (-1056)))) (-2069 (*1 *2 *1 *3) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1056)) (-5 *3 (-1150)))) (-2459 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1056)))) (-3920 (*1 *1) (-5 *1 (-1056))) (-1300 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1150)) (-5 *3 (-562)) (-5 *1 (-1056)))))
-(-13 (-1183 (-1168) (-52)) (-10 -8 (-15 -2767 ($ $ $)) (-15 -1358 ($)) (-15 -2774 ($ $)) (-15 -2972 ($ $)) (-15 -1342 ($ $)) (-15 -3772 ($ $)) (-15 -2179 ($ $)) (-15 -2457 ($ $)) (-15 -3621 ($ $)) (-15 -4080 ($ $)) (-15 -1294 ($ $ (-1168) (-378))) (-15 -2976 ($ $ (-1168) (-378))) (-15 -1632 ((-378) $ (-1168))) (-15 -2069 ((-639 (-1150)) $ (-1150))) (-15 -2459 ($ $ (-1168))) (-15 -3920 ($)) (-15 -1300 ((-3 (-1150) "failed") $ (-1150) (-562))) (-6 -4402)))
-((-3121 (($ $) 45)) (-3784 (((-112) $ $) 74)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 (-562) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-947 (-406 (-562)))) 226) (((-3 $ "failed") (-947 (-562))) 225) (((-3 $ "failed") (-947 |#2|)) 228)) (-3961 ((|#2| $) NIL) (((-406 (-562)) $) NIL) (((-562) $) NIL) ((|#4| $) NIL) (($ (-947 (-406 (-562)))) 214) (($ (-947 (-562))) 210) (($ (-947 |#2|)) 230)) (-1601 (($ $) NIL) (($ $ |#4|) 43)) (-4091 (((-112) $ $) 111) (((-112) $ (-639 $)) 112)) (-2708 (((-112) $) 56)) (-2622 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 106)) (-1410 (($ $) 137)) (-3221 (($ $) 133)) (-1994 (($ $) 132)) (-4093 (($ $ $) 79) (($ $ $ |#4|) 84)) (-2410 (($ $ $) 82) (($ $ $ |#4|) 86)) (-2573 (((-112) $ $) 120) (((-112) $ (-639 $)) 121)) (-4339 ((|#4| $) 33)) (-1415 (($ $ $) 109)) (-2311 (((-112) $) 55)) (-2643 (((-766) $) 35)) (-2985 (($ $) 151)) (-2698 (($ $) 148)) (-4196 (((-639 $) $) 68)) (-4343 (($ $) 57)) (-2889 (($ $) 144)) (-2954 (((-639 $) $) 65)) (-2847 (($ $) 59)) (-1573 ((|#2| $) NIL) (($ $ |#4|) 38)) (-3666 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3761 (-766))) $ $) 110)) (-2924 (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2097 $) (|:| -2264 $)) $ $) 107) (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2097 $) (|:| -2264 $)) $ $ |#4|) 108)) (-2586 (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2264 $)) $ $) 103) (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2264 $)) $ $ |#4|) 104)) (-3793 (($ $ $) 89) (($ $ $ |#4|) 94)) (-2310 (($ $ $) 90) (($ $ $ |#4|) 95)) (-2077 (((-639 $) $) 51)) (-2890 (((-112) $ $) 117) (((-112) $ (-639 $)) 118)) (-1849 (($ $ $) 102)) (-3729 (($ $) 37)) (-1408 (((-112) $ $) 72)) (-2766 (((-112) $ $) 113) (((-112) $ (-639 $)) 115)) (-1532 (($ $ $) 100)) (-3063 (($ $) 40)) (-1606 ((|#2| |#2| $) 141) (($ (-639 $)) NIL) (($ $ $) NIL)) (-2285 (($ $ |#2|) NIL) (($ $ $) 130)) (-2094 (($ $ |#2|) 125) (($ $ $) 128)) (-2389 (($ $) 48)) (-3771 (($ $) 52)) (-4208 (((-887 (-378)) $) NIL) (((-887 (-562)) $) NIL) (((-535) $) NIL) (($ (-947 (-406 (-562)))) 216) (($ (-947 (-562))) 212) (($ (-947 |#2|)) 227) (((-1150) $) 249) (((-947 |#2|) $) 161)) (-4054 (((-857) $) 30) (($ (-562)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-947 |#2|) $) 162) (($ (-406 (-562))) NIL) (($ $) NIL)) (-2442 (((-3 (-112) "failed") $ $) 71)))
-(((-1057 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4054 (|#1| |#1|)) (-15 -1606 (|#1| |#1| |#1|)) (-15 -1606 (|#1| (-639 |#1|))) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4054 ((-947 |#2|) |#1|)) (-15 -4208 ((-947 |#2|) |#1|)) (-15 -4208 ((-1150) |#1|)) (-15 -2985 (|#1| |#1|)) (-15 -2698 (|#1| |#1|)) (-15 -2889 (|#1| |#1|)) (-15 -1410 (|#1| |#1|)) (-15 -1606 (|#2| |#2| |#1|)) (-15 -2285 (|#1| |#1| |#1|)) (-15 -2094 (|#1| |#1| |#1|)) (-15 -2285 (|#1| |#1| |#2|)) (-15 -2094 (|#1| |#1| |#2|)) (-15 -3221 (|#1| |#1|)) (-15 -1994 (|#1| |#1|)) (-15 -4208 (|#1| (-947 |#2|))) (-15 -3961 (|#1| (-947 |#2|))) (-15 -4048 ((-3 |#1| "failed") (-947 |#2|))) (-15 -4208 (|#1| (-947 (-562)))) (-15 -3961 (|#1| (-947 (-562)))) (-15 -4048 ((-3 |#1| "failed") (-947 (-562)))) (-15 -4208 (|#1| (-947 (-406 (-562))))) (-15 -3961 (|#1| (-947 (-406 (-562))))) (-15 -4048 ((-3 |#1| "failed") (-947 (-406 (-562))))) (-15 -1849 (|#1| |#1| |#1|)) (-15 -1532 (|#1| |#1| |#1|)) (-15 -3666 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -3761 (-766))) |#1| |#1|)) (-15 -1415 (|#1| |#1| |#1|)) (-15 -2622 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -2924 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1| |#4|)) (-15 -2924 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -2586 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -2264 |#1|)) |#1| |#1| |#4|)) (-15 -2586 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -2310 (|#1| |#1| |#1| |#4|)) (-15 -3793 (|#1| |#1| |#1| |#4|)) (-15 -2310 (|#1| |#1| |#1|)) (-15 -3793 (|#1| |#1| |#1|)) (-15 -2410 (|#1| |#1| |#1| |#4|)) (-15 -4093 (|#1| |#1| |#1| |#4|)) (-15 -2410 (|#1| |#1| |#1|)) (-15 -4093 (|#1| |#1| |#1|)) (-15 -2573 ((-112) |#1| (-639 |#1|))) (-15 -2573 ((-112) |#1| |#1|)) (-15 -2890 ((-112) |#1| (-639 |#1|))) (-15 -2890 ((-112) |#1| |#1|)) (-15 -2766 ((-112) |#1| (-639 |#1|))) (-15 -2766 ((-112) |#1| |#1|)) (-15 -4091 ((-112) |#1| (-639 |#1|))) (-15 -4091 ((-112) |#1| |#1|)) (-15 -3784 ((-112) |#1| |#1|)) (-15 -1408 ((-112) |#1| |#1|)) (-15 -2442 ((-3 (-112) "failed") |#1| |#1|)) (-15 -4196 ((-639 |#1|) |#1|)) (-15 -2954 ((-639 |#1|) |#1|)) (-15 -2847 (|#1| |#1|)) (-15 -4343 (|#1| |#1|)) (-15 -2708 ((-112) |#1|)) (-15 -2311 ((-112) |#1|)) (-15 -1601 (|#1| |#1| |#4|)) (-15 -1573 (|#1| |#1| |#4|)) (-15 -3771 (|#1| |#1|)) (-15 -2077 ((-639 |#1|) |#1|)) (-15 -2389 (|#1| |#1|)) (-15 -3121 (|#1| |#1|)) (-15 -3063 (|#1| |#1|)) (-15 -3729 (|#1| |#1|)) (-15 -2643 ((-766) |#1|)) (-15 -4339 (|#4| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4054 (|#1| |#4|)) (-15 -4048 ((-3 |#4| "failed") |#1|)) (-15 -3961 (|#4| |#1|)) (-15 -1573 (|#2| |#1|)) (-15 -1601 (|#1| |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|))) (-1058 |#2| |#3| |#4|) (-1044) (-788) (-845)) (T -1057))
-NIL
-(-10 -8 (-15 -4054 (|#1| |#1|)) (-15 -1606 (|#1| |#1| |#1|)) (-15 -1606 (|#1| (-639 |#1|))) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4054 ((-947 |#2|) |#1|)) (-15 -4208 ((-947 |#2|) |#1|)) (-15 -4208 ((-1150) |#1|)) (-15 -2985 (|#1| |#1|)) (-15 -2698 (|#1| |#1|)) (-15 -2889 (|#1| |#1|)) (-15 -1410 (|#1| |#1|)) (-15 -1606 (|#2| |#2| |#1|)) (-15 -2285 (|#1| |#1| |#1|)) (-15 -2094 (|#1| |#1| |#1|)) (-15 -2285 (|#1| |#1| |#2|)) (-15 -2094 (|#1| |#1| |#2|)) (-15 -3221 (|#1| |#1|)) (-15 -1994 (|#1| |#1|)) (-15 -4208 (|#1| (-947 |#2|))) (-15 -3961 (|#1| (-947 |#2|))) (-15 -4048 ((-3 |#1| "failed") (-947 |#2|))) (-15 -4208 (|#1| (-947 (-562)))) (-15 -3961 (|#1| (-947 (-562)))) (-15 -4048 ((-3 |#1| "failed") (-947 (-562)))) (-15 -4208 (|#1| (-947 (-406 (-562))))) (-15 -3961 (|#1| (-947 (-406 (-562))))) (-15 -4048 ((-3 |#1| "failed") (-947 (-406 (-562))))) (-15 -1849 (|#1| |#1| |#1|)) (-15 -1532 (|#1| |#1| |#1|)) (-15 -3666 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -3761 (-766))) |#1| |#1|)) (-15 -1415 (|#1| |#1| |#1|)) (-15 -2622 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -2924 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1| |#4|)) (-15 -2924 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -2586 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -2264 |#1|)) |#1| |#1| |#4|)) (-15 -2586 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -2310 (|#1| |#1| |#1| |#4|)) (-15 -3793 (|#1| |#1| |#1| |#4|)) (-15 -2310 (|#1| |#1| |#1|)) (-15 -3793 (|#1| |#1| |#1|)) (-15 -2410 (|#1| |#1| |#1| |#4|)) (-15 -4093 (|#1| |#1| |#1| |#4|)) (-15 -2410 (|#1| |#1| |#1|)) (-15 -4093 (|#1| |#1| |#1|)) (-15 -2573 ((-112) |#1| (-639 |#1|))) (-15 -2573 ((-112) |#1| |#1|)) (-15 -2890 ((-112) |#1| (-639 |#1|))) (-15 -2890 ((-112) |#1| |#1|)) (-15 -2766 ((-112) |#1| (-639 |#1|))) (-15 -2766 ((-112) |#1| |#1|)) (-15 -4091 ((-112) |#1| (-639 |#1|))) (-15 -4091 ((-112) |#1| |#1|)) (-15 -3784 ((-112) |#1| |#1|)) (-15 -1408 ((-112) |#1| |#1|)) (-15 -2442 ((-3 (-112) "failed") |#1| |#1|)) (-15 -4196 ((-639 |#1|) |#1|)) (-15 -2954 ((-639 |#1|) |#1|)) (-15 -2847 (|#1| |#1|)) (-15 -4343 (|#1| |#1|)) (-15 -2708 ((-112) |#1|)) (-15 -2311 ((-112) |#1|)) (-15 -1601 (|#1| |#1| |#4|)) (-15 -1573 (|#1| |#1| |#4|)) (-15 -3771 (|#1| |#1|)) (-15 -2077 ((-639 |#1|) |#1|)) (-15 -2389 (|#1| |#1|)) (-15 -3121 (|#1| |#1|)) (-15 -3063 (|#1| |#1|)) (-15 -3729 (|#1| |#1|)) (-15 -2643 ((-766) |#1|)) (-15 -4339 (|#4| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4054 (|#1| |#4|)) (-15 -4048 ((-3 |#4| "failed") |#1|)) (-15 -3961 (|#4| |#1|)) (-15 -1573 (|#2| |#1|)) (-15 -1601 (|#1| |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1402 (((-639 |#3|) $) 110)) (-1599 (((-1164 $) $ |#3|) 125) (((-1164 |#1|) $) 124)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 87 (|has| |#1| (-554)))) (-2796 (($ $) 88 (|has| |#1| (-554)))) (-4370 (((-112) $) 90 (|has| |#1| (-554)))) (-1986 (((-766) $) 112) (((-766) $ (-639 |#3|)) 111)) (-3121 (($ $) 271)) (-3784 (((-112) $ $) 257)) (-3214 (((-3 $ "failed") $ $) 19)) (-3258 (($ $ $) 216 (|has| |#1| (-554)))) (-4052 (((-639 $) $ $) 211 (|has| |#1| (-554)))) (-3026 (((-417 (-1164 $)) (-1164 $)) 100 (|has| |#1| (-904)))) (-2798 (($ $) 98 (|has| |#1| (-451)))) (-2921 (((-417 $) $) 97 (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 103 (|has| |#1| (-904)))) (-1800 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 164) (((-3 (-406 (-562)) "failed") $) 161 (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) 159 (|has| |#1| (-1033 (-562)))) (((-3 |#3| "failed") $) 136) (((-3 $ "failed") (-947 (-406 (-562)))) 231 (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168))))) (((-3 $ "failed") (-947 (-562))) 228 (-4037 (-12 (-2236 (|has| |#1| (-38 (-406 (-562))))) (|has| |#1| (-38 (-562))) (|has| |#3| (-610 (-1168)))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168)))))) (((-3 $ "failed") (-947 |#1|)) 225 (-4037 (-12 (-2236 (|has| |#1| (-38 (-406 (-562))))) (-2236 (|has| |#1| (-38 (-562)))) (|has| |#3| (-610 (-1168)))) (-12 (-2236 (|has| |#1| (-544))) (-2236 (|has| |#1| (-38 (-406 (-562))))) (|has| |#1| (-38 (-562))) (|has| |#3| (-610 (-1168)))) (-12 (-2236 (|has| |#1| (-987 (-562)))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168))))))) (-3961 ((|#1| $) 163) (((-406 (-562)) $) 162 (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) 160 (|has| |#1| (-1033 (-562)))) ((|#3| $) 137) (($ (-947 (-406 (-562)))) 230 (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168))))) (($ (-947 (-562))) 227 (-4037 (-12 (-2236 (|has| |#1| (-38 (-406 (-562))))) (|has| |#1| (-38 (-562))) (|has| |#3| (-610 (-1168)))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168)))))) (($ (-947 |#1|)) 224 (-4037 (-12 (-2236 (|has| |#1| (-38 (-406 (-562))))) (-2236 (|has| |#1| (-38 (-562)))) (|has| |#3| (-610 (-1168)))) (-12 (-2236 (|has| |#1| (-544))) (-2236 (|has| |#1| (-38 (-406 (-562))))) (|has| |#1| (-38 (-562))) (|has| |#3| (-610 (-1168)))) (-12 (-2236 (|has| |#1| (-987 (-562)))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168))))))) (-2835 (($ $ $ |#3|) 108 (|has| |#1| (-171))) (($ $ $) 212 (|has| |#1| (-554)))) (-1601 (($ $) 154) (($ $ |#3|) 266)) (-2406 (((-683 (-562)) (-683 $)) 134 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 133 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 132) (((-683 |#1|) (-683 $)) 131)) (-4091 (((-112) $ $) 256) (((-112) $ (-639 $)) 255)) (-3668 (((-3 $ "failed") $) 33)) (-2708 (((-112) $) 264)) (-2622 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 236)) (-1410 (($ $) 205 (|has| |#1| (-451)))) (-1498 (($ $) 176 (|has| |#1| (-451))) (($ $ |#3|) 105 (|has| |#1| (-451)))) (-1586 (((-639 $) $) 109)) (-2717 (((-112) $) 96 (|has| |#1| (-904)))) (-3221 (($ $) 221 (|has| |#1| (-554)))) (-1994 (($ $) 222 (|has| |#1| (-554)))) (-4093 (($ $ $) 248) (($ $ $ |#3|) 246)) (-2410 (($ $ $) 247) (($ $ $ |#3|) 245)) (-3122 (($ $ |#1| |#2| $) 172)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 84 (-12 (|has| |#3| (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 83 (-12 (|has| |#3| (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1957 (((-112) $) 31)) (-1694 (((-766) $) 169)) (-2573 (((-112) $ $) 250) (((-112) $ (-639 $)) 249)) (-3524 (($ $ $ $ $) 207 (|has| |#1| (-554)))) (-4339 ((|#3| $) 275)) (-1390 (($ (-1164 |#1|) |#3|) 117) (($ (-1164 $) |#3|) 116)) (-1889 (((-639 $) $) 126)) (-3536 (((-112) $) 152)) (-1378 (($ |#1| |#2|) 153) (($ $ |#3| (-766)) 119) (($ $ (-639 |#3|) (-639 (-766))) 118)) (-1415 (($ $ $) 235)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ |#3|) 120)) (-2311 (((-112) $) 265)) (-2076 ((|#2| $) 170) (((-766) $ |#3|) 122) (((-639 (-766)) $ (-639 |#3|)) 121)) (-1551 (($ $ $) 79 (|has| |#1| (-845)))) (-2643 (((-766) $) 274)) (-2993 (($ $ $) 78 (|has| |#1| (-845)))) (-2836 (($ (-1 |#2| |#2|) $) 171)) (-4152 (($ (-1 |#1| |#1|) $) 151)) (-3372 (((-3 |#3| "failed") $) 123)) (-2985 (($ $) 202 (|has| |#1| (-451)))) (-2698 (($ $) 203 (|has| |#1| (-451)))) (-4196 (((-639 $) $) 260)) (-4343 (($ $) 263)) (-2889 (($ $) 204 (|has| |#1| (-451)))) (-2954 (((-639 $) $) 261)) (-2847 (($ $) 262)) (-1560 (($ $) 149)) (-1573 ((|#1| $) 148) (($ $ |#3|) 267)) (-1564 (($ (-639 $)) 94 (|has| |#1| (-451))) (($ $ $) 93 (|has| |#1| (-451)))) (-3666 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3761 (-766))) $ $) 234)) (-2924 (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2097 $) (|:| -2264 $)) $ $) 238) (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2097 $) (|:| -2264 $)) $ $ |#3|) 237)) (-2586 (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2264 $)) $ $) 240) (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2264 $)) $ $ |#3|) 239)) (-3793 (($ $ $) 244) (($ $ $ |#3|) 242)) (-2310 (($ $ $) 243) (($ $ $ |#3|) 241)) (-2913 (((-1150) $) 9)) (-1851 (($ $ $) 210 (|has| |#1| (-554)))) (-2077 (((-639 $) $) 269)) (-2042 (((-3 (-639 $) "failed") $) 114)) (-1546 (((-3 (-639 $) "failed") $) 115)) (-1628 (((-3 (-2 (|:| |var| |#3|) (|:| -1960 (-766))) "failed") $) 113)) (-2890 (((-112) $ $) 252) (((-112) $ (-639 $)) 251)) (-1849 (($ $ $) 232)) (-3729 (($ $) 273)) (-1408 (((-112) $ $) 258)) (-2766 (((-112) $ $) 254) (((-112) $ (-639 $)) 253)) (-1532 (($ $ $) 233)) (-3063 (($ $) 272)) (-1709 (((-1112) $) 10)) (-2235 (((-2 (|:| -1606 $) (|:| |coef2| $)) $ $) 213 (|has| |#1| (-554)))) (-2062 (((-2 (|:| -1606 $) (|:| |coef1| $)) $ $) 214 (|has| |#1| (-554)))) (-1534 (((-112) $) 166)) (-1547 ((|#1| $) 167)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 95 (|has| |#1| (-451)))) (-1606 ((|#1| |#1| $) 206 (|has| |#1| (-451))) (($ (-639 $)) 92 (|has| |#1| (-451))) (($ $ $) 91 (|has| |#1| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) 102 (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) 101 (|has| |#1| (-904)))) (-1635 (((-417 $) $) 99 (|has| |#1| (-904)))) (-2196 (((-2 (|:| -1606 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-554)))) (-1762 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-554)))) (-2285 (($ $ |#1|) 219 (|has| |#1| (-554))) (($ $ $) 217 (|has| |#1| (-554)))) (-2094 (($ $ |#1|) 220 (|has| |#1| (-554))) (($ $ $) 218 (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) 145) (($ $ (-293 $)) 144) (($ $ $ $) 143) (($ $ (-639 $) (-639 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-639 |#3|) (-639 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-639 |#3|) (-639 $)) 138)) (-2455 (($ $ |#3|) 107 (|has| |#1| (-171)))) (-4029 (($ $ |#3|) 42) (($ $ (-639 |#3|)) 41) (($ $ |#3| (-766)) 40) (($ $ (-639 |#3|) (-639 (-766))) 39)) (-3598 ((|#2| $) 150) (((-766) $ |#3|) 130) (((-639 (-766)) $ (-639 |#3|)) 129)) (-2389 (($ $) 270)) (-3771 (($ $) 268)) (-4208 (((-887 (-378)) $) 82 (-12 (|has| |#3| (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) 81 (-12 (|has| |#3| (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) 80 (-12 (|has| |#3| (-610 (-535))) (|has| |#1| (-610 (-535))))) (($ (-947 (-406 (-562)))) 229 (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168))))) (($ (-947 (-562))) 226 (-4037 (-12 (-2236 (|has| |#1| (-38 (-406 (-562))))) (|has| |#1| (-38 (-562))) (|has| |#3| (-610 (-1168)))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168)))))) (($ (-947 |#1|)) 223 (|has| |#3| (-610 (-1168)))) (((-1150) $) 201 (-12 (|has| |#1| (-1033 (-562))) (|has| |#3| (-610 (-1168))))) (((-947 |#1|) $) 200 (|has| |#3| (-610 (-1168))))) (-3900 ((|#1| $) 175 (|has| |#1| (-451))) (($ $ |#3|) 106 (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 104 (-2246 (|has| $ (-144)) (|has| |#1| (-904))))) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 165) (($ |#3|) 135) (((-947 |#1|) $) 199 (|has| |#3| (-610 (-1168)))) (($ (-406 (-562))) 72 (-4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562)))))) (($ $) 85 (|has| |#1| (-554)))) (-4358 (((-639 |#1|) $) 168)) (-3906 ((|#1| $ |#2|) 155) (($ $ |#3| (-766)) 128) (($ $ (-639 |#3|) (-639 (-766))) 127)) (-2805 (((-3 $ "failed") $) 73 (-4037 (-2246 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) 28)) (-3548 (($ $ $ (-766)) 173 (|has| |#1| (-171)))) (-2922 (((-112) $ $) 89 (|has| |#1| (-554)))) (-2286 (($) 18 T CONST)) (-2442 (((-3 (-112) "failed") $ $) 259)) (-2294 (($) 30 T CONST)) (-3330 (($ $ $ $ (-766)) 208 (|has| |#1| (-554)))) (-2249 (($ $ $ (-766)) 209 (|has| |#1| (-554)))) (-3114 (($ $ |#3|) 38) (($ $ (-639 |#3|)) 37) (($ $ |#3| (-766)) 36) (($ $ (-639 |#3|) (-639 (-766))) 35)) (-1798 (((-112) $ $) 76 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 75 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 77 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 74 (|has| |#1| (-845)))) (-1859 (($ $ |#1|) 156 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 158 (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) 157 (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) |#2| $) 23)) (-1382 ((|#1| $) 10)) (-1587 (((-562) |#2| $) 87)) (-2608 (((-3 $ "failed") |#2| (-916)) 57)) (-1603 ((|#1| $) 28)) (-2918 ((|#1| |#2| $ |#1|) 37)) (-2776 (($ $) 25)) (-1694 (((-3 |#2| "failed") |#2| $) 86)) (-2696 (((-112) |#2| $) NIL)) (-3855 (((-112) |#2| $) NIL)) (-2418 (((-112) |#2| $) 24)) (-1531 ((|#1| $) 88)) (-1589 ((|#1| $) 27)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3371 ((|#2| $) 78)) (-4053 (((-857) $) 70)) (-1406 ((|#1| |#2| $ |#1|) 38)) (-4383 (((-639 $) |#2|) 59)) (-1733 (((-112) $ $) 73)))
+(((-1054 |#1| |#2|) (-13 (-1061 |#1| |#2|) (-10 -8 (-15 -1589 (|#1| $)) (-15 -1603 (|#1| $)) (-15 -1382 (|#1| $)) (-15 -1531 (|#1| $)) (-15 -2776 ($ $)) (-15 -2418 ((-112) |#2| $)) (-15 -2918 (|#1| |#2| $ |#1|)))) (-13 (-843) (-362)) (-1232 |#1|)) (T -1054))
+((-2918 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-1232 *2)))) (-1589 (*1 *2 *1) (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-1232 *2)))) (-1603 (*1 *2 *1) (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-1232 *2)))) (-1382 (*1 *2 *1) (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-1232 *2)))) (-1531 (*1 *2 *1) (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-1232 *2)))) (-2776 (*1 *1 *1) (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3)) (-4 *3 (-1232 *2)))) (-2418 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-843) (-362))) (-5 *2 (-112)) (-5 *1 (-1054 *4 *3)) (-4 *3 (-1232 *4)))))
+(-13 (-1061 |#1| |#2|) (-10 -8 (-15 -1589 (|#1| $)) (-15 -1603 (|#1| $)) (-15 -1382 (|#1| $)) (-15 -1531 (|#1| $)) (-15 -2776 ($ $)) (-15 -2418 ((-112) |#2| $)) (-15 -2918 (|#1| |#2| $ |#1|))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3544 (($ $ $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-4158 (($ $ $ $) NIL)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1587 (((-562) $) NIL)) (-3355 (($ $ $) NIL)) (-3329 (($) NIL T CONST)) (-3747 (($ (-1168)) 10) (($ (-562)) 7)) (-4048 (((-3 (-562) "failed") $) NIL)) (-3960 (((-562) $) NIL)) (-1810 (($ $ $) NIL)) (-3449 (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-683 (-562)) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-3913 (((-3 (-406 (-562)) "failed") $) NIL)) (-3498 (((-112) $) NIL)) (-3854 (((-406 (-562)) $) NIL)) (-1447 (($) NIL) (($ $) NIL)) (-1787 (($ $ $) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2877 (($ $ $ $) NIL)) (-3867 (($ $ $) NIL)) (-2696 (((-112) $) NIL)) (-1940 (($ $ $) NIL)) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL)) (-4367 (((-112) $) NIL)) (-3152 (((-112) $) NIL)) (-3828 (((-3 $ "failed") $) NIL)) (-3855 (((-112) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2051 (($ $ $ $) NIL)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3930 (($ $) NIL)) (-3641 (($ $) NIL)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-2296 (($ $ $) NIL)) (-3730 (($) NIL T CONST)) (-4137 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3350 (($ $) NIL)) (-1635 (((-417 $) $) NIL)) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2438 (((-112) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-4029 (($ $ (-766)) NIL) (($ $) NIL)) (-2369 (($ $) NIL)) (-4220 (($ $) NIL)) (-4208 (((-562) $) 16) (((-535) $) NIL) (((-887 (-562)) $) NIL) (((-378) $) NIL) (((-224) $) NIL) (($ (-1168)) 9)) (-4053 (((-857) $) 20) (($ (-562)) 6) (($ $) NIL) (($ (-562)) 6)) (-1568 (((-766)) NIL)) (-3869 (((-112) $ $) NIL)) (-2068 (($ $ $) NIL)) (-3240 (($) NIL)) (-3799 (((-112) $ $) NIL)) (-3160 (($ $ $ $) NIL)) (-2757 (($ $) NIL)) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-766)) NIL) (($ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)) (-1847 (($ $) 19) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL)))
+(((-1055) (-13 (-544) (-614 (-1168)) (-10 -8 (-6 -4390) (-6 -4395) (-6 -4391) (-15 -3747 ($ (-1168))) (-15 -3747 ($ (-562)))))) (T -1055))
+((-3747 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1055)))) (-3747 (*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1055)))))
+(-13 (-544) (-614 (-1168)) (-10 -8 (-6 -4390) (-6 -4395) (-6 -4391) (-15 -3747 ($ (-1168))) (-15 -3747 ($ (-562)))))
+((-4041 (((-112) $ $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) NIL)) (-3655 (((-1261) $ (-1168) (-1168)) NIL (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) NIL)) (-4226 (($) 9)) (-4200 (((-52) $ (-1168) (-52)) NIL)) (-2756 (($ $) 30)) (-2065 (($ $) 28)) (-3064 (($ $) 27)) (-3304 (($ $) 29)) (-4277 (($ $) 32)) (-3200 (($ $) 33)) (-2887 (($ $) 26)) (-1864 (($ $) 31)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) 25 (|has| $ (-6 -4403)))) (-1472 (((-3 (-52) "failed") (-1168) $) 40)) (-3329 (($) NIL T CONST)) (-3345 (($) 7)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092))))) (-3729 (($ (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) 50 (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-3 (-52) "failed") (-1168) $) NIL)) (-1475 (($ (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (($ (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $ (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (((-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $ (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403)))) (-2565 (((-3 (-1150) "failed") $ (-1150) (-562)) 59)) (-1507 (((-52) $ (-1168) (-52)) NIL (|has| $ (-6 -4404)))) (-1420 (((-52) $ (-1168)) NIL)) (-1720 (((-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-639 (-52)) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-1168) $) NIL (|has| (-1168) (-845)))) (-2123 (((-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) 35 (|has| $ (-6 -4403))) (((-639 (-52)) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-52) (-1092))))) (-1929 (((-1168) $) NIL (|has| (-1168) (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4404))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092))))) (-1521 (((-639 (-1168)) $) NIL)) (-4278 (((-112) (-1168) $) NIL)) (-2078 (((-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) NIL)) (-1581 (($ (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) 43)) (-3336 (((-639 (-1168)) $) NIL)) (-1987 (((-112) (-1168) $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092))))) (-4306 (((-378) $ (-1168)) 49)) (-3089 (((-639 (-1150)) $ (-1150)) 60)) (-1421 (((-52) $) NIL (|has| (-1168) (-845)))) (-1963 (((-3 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) "failed") (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL)) (-3510 (($ $ (-52)) NIL (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) NIL)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))))) NIL (-12 (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (($ $ (-293 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) NIL (-12 (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (($ $ (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) NIL (-12 (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (($ $ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) NIL (-12 (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-308 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (($ $ (-639 (-52)) (-639 (-52))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-293 (-52))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092)))) (($ $ (-639 (-293 (-52)))) NIL (-12 (|has| (-52) (-308 (-52))) (|has| (-52) (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-52) (-1092))))) (-2366 (((-639 (-52)) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 (((-52) $ (-1168)) NIL) (((-52) $ (-1168) (-52)) NIL)) (-1932 (($) NIL) (($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) NIL)) (-2777 (($ $ (-1168)) 51)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092)))) (((-766) (-52) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-52) (-1092)))) (((-766) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) 37)) (-2767 (($ $ $) 38)) (-4053 (((-857) $) NIL (-4037 (|has| (-52) (-609 (-857))) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-609 (-857)))))) (-3890 (($ $ (-1168) (-378)) 47)) (-3108 (($ $ (-1168) (-378)) 48)) (-4131 (($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))))) NIL)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 (-1168)) (|:| -2693 (-52)))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (-4037 (|has| (-52) (-1092)) (|has| (-2 (|:| -2319 (-1168)) (|:| -2693 (-52))) (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-1056) (-13 (-1183 (-1168) (-52)) (-10 -8 (-15 -2767 ($ $ $)) (-15 -3345 ($)) (-15 -2887 ($ $)) (-15 -3064 ($ $)) (-15 -2065 ($ $)) (-15 -3304 ($ $)) (-15 -1864 ($ $)) (-15 -2756 ($ $)) (-15 -4277 ($ $)) (-15 -3200 ($ $)) (-15 -3890 ($ $ (-1168) (-378))) (-15 -3108 ($ $ (-1168) (-378))) (-15 -4306 ((-378) $ (-1168))) (-15 -3089 ((-639 (-1150)) $ (-1150))) (-15 -2777 ($ $ (-1168))) (-15 -4226 ($)) (-15 -2565 ((-3 (-1150) "failed") $ (-1150) (-562))) (-6 -4403)))) (T -1056))
+((-2767 (*1 *1 *1 *1) (-5 *1 (-1056))) (-3345 (*1 *1) (-5 *1 (-1056))) (-2887 (*1 *1 *1) (-5 *1 (-1056))) (-3064 (*1 *1 *1) (-5 *1 (-1056))) (-2065 (*1 *1 *1) (-5 *1 (-1056))) (-3304 (*1 *1 *1) (-5 *1 (-1056))) (-1864 (*1 *1 *1) (-5 *1 (-1056))) (-2756 (*1 *1 *1) (-5 *1 (-1056))) (-4277 (*1 *1 *1) (-5 *1 (-1056))) (-3200 (*1 *1 *1) (-5 *1 (-1056))) (-3890 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-378)) (-5 *1 (-1056)))) (-3108 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-378)) (-5 *1 (-1056)))) (-4306 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-378)) (-5 *1 (-1056)))) (-3089 (*1 *2 *1 *3) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1056)) (-5 *3 (-1150)))) (-2777 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1056)))) (-4226 (*1 *1) (-5 *1 (-1056))) (-2565 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1150)) (-5 *3 (-562)) (-5 *1 (-1056)))))
+(-13 (-1183 (-1168) (-52)) (-10 -8 (-15 -2767 ($ $ $)) (-15 -3345 ($)) (-15 -2887 ($ $)) (-15 -3064 ($ $)) (-15 -2065 ($ $)) (-15 -3304 ($ $)) (-15 -1864 ($ $)) (-15 -2756 ($ $)) (-15 -4277 ($ $)) (-15 -3200 ($ $)) (-15 -3890 ($ $ (-1168) (-378))) (-15 -3108 ($ $ (-1168) (-378))) (-15 -4306 ((-378) $ (-1168))) (-15 -3089 ((-639 (-1150)) $ (-1150))) (-15 -2777 ($ $ (-1168))) (-15 -4226 ($)) (-15 -2565 ((-3 (-1150) "failed") $ (-1150) (-562))) (-6 -4403)))
+((-3120 (($ $) 45)) (-3415 (((-112) $ $) 74)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 (-562) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-947 (-406 (-562)))) 226) (((-3 $ "failed") (-947 (-562))) 225) (((-3 $ "failed") (-947 |#2|)) 228)) (-3960 ((|#2| $) NIL) (((-406 (-562)) $) NIL) (((-562) $) NIL) ((|#4| $) NIL) (($ (-947 (-406 (-562)))) 214) (($ (-947 (-562))) 210) (($ (-947 |#2|)) 230)) (-1600 (($ $) NIL) (($ $ |#4|) 43)) (-3300 (((-112) $ $) 111) (((-112) $ (-639 $)) 112)) (-3446 (((-112) $) 56)) (-3840 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 106)) (-1814 (($ $) 137)) (-2827 (($ $) 133)) (-3499 (($ $) 132)) (-3321 (($ $ $) 79) (($ $ $ |#4|) 84)) (-3486 (($ $ $) 82) (($ $ $ |#4|) 86)) (-1493 (((-112) $ $) 120) (((-112) $ (-639 $)) 121)) (-3761 ((|#4| $) 33)) (-1874 (($ $ $) 109)) (-3739 (((-112) $) 55)) (-4091 (((-766) $) 35)) (-3181 (($ $) 151)) (-3349 (($ $) 148)) (-1838 (((-639 $) $) 68)) (-3807 (($ $) 57)) (-1634 (($ $) 144)) (-4119 (((-639 $) $) 65)) (-4282 (($ $) 59)) (-1573 ((|#2| $) NIL) (($ $ |#4|) 38)) (-1674 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3185 (-766))) $ $) 110)) (-3823 (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -3380 $) (|:| -1441 $)) $ $) 107) (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -3380 $) (|:| -1441 $)) $ $ |#4|) 108)) (-1648 (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -1441 $)) $ $) 103) (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -1441 $)) $ $ |#4|) 104)) (-3493 (($ $ $) 89) (($ $ $ |#4|) 94)) (-3725 (($ $ $) 90) (($ $ $ |#4|) 95)) (-3173 (((-639 $) $) 51)) (-1645 (((-112) $ $) 117) (((-112) $ (-639 $)) 118)) (-2651 (($ $ $) 102)) (-3730 (($ $) 37)) (-1789 (((-112) $ $) 72)) (-2830 (((-112) $ $) 113) (((-112) $ (-639 $)) 115)) (-1630 (($ $ $) 100)) (-3757 (($ $) 40)) (-1606 ((|#2| |#2| $) 141) (($ (-639 $)) NIL) (($ $ $) NIL)) (-3504 (($ $ |#2|) NIL) (($ $ $) 130)) (-3347 (($ $ |#2|) 125) (($ $ $) 128)) (-3276 (($ $) 48)) (-3293 (($ $) 52)) (-4208 (((-887 (-378)) $) NIL) (((-887 (-562)) $) NIL) (((-535) $) NIL) (($ (-947 (-406 (-562)))) 216) (($ (-947 (-562))) 212) (($ (-947 |#2|)) 227) (((-1150) $) 249) (((-947 |#2|) $) 161)) (-4053 (((-857) $) 30) (($ (-562)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-947 |#2|) $) 162) (($ (-406 (-562))) NIL) (($ $) NIL)) (-2632 (((-3 (-112) "failed") $ $) 71)))
+(((-1057 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4053 (|#1| |#1|)) (-15 -1606 (|#1| |#1| |#1|)) (-15 -1606 (|#1| (-639 |#1|))) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4053 ((-947 |#2|) |#1|)) (-15 -4208 ((-947 |#2|) |#1|)) (-15 -4208 ((-1150) |#1|)) (-15 -3181 (|#1| |#1|)) (-15 -3349 (|#1| |#1|)) (-15 -1634 (|#1| |#1|)) (-15 -1814 (|#1| |#1|)) (-15 -1606 (|#2| |#2| |#1|)) (-15 -3504 (|#1| |#1| |#1|)) (-15 -3347 (|#1| |#1| |#1|)) (-15 -3504 (|#1| |#1| |#2|)) (-15 -3347 (|#1| |#1| |#2|)) (-15 -2827 (|#1| |#1|)) (-15 -3499 (|#1| |#1|)) (-15 -4208 (|#1| (-947 |#2|))) (-15 -3960 (|#1| (-947 |#2|))) (-15 -4048 ((-3 |#1| "failed") (-947 |#2|))) (-15 -4208 (|#1| (-947 (-562)))) (-15 -3960 (|#1| (-947 (-562)))) (-15 -4048 ((-3 |#1| "failed") (-947 (-562)))) (-15 -4208 (|#1| (-947 (-406 (-562))))) (-15 -3960 (|#1| (-947 (-406 (-562))))) (-15 -4048 ((-3 |#1| "failed") (-947 (-406 (-562))))) (-15 -2651 (|#1| |#1| |#1|)) (-15 -1630 (|#1| |#1| |#1|)) (-15 -1674 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -3185 (-766))) |#1| |#1|)) (-15 -1874 (|#1| |#1| |#1|)) (-15 -3840 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -3823 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1| |#4|)) (-15 -3823 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -1648 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -1441 |#1|)) |#1| |#1| |#4|)) (-15 -1648 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -3725 (|#1| |#1| |#1| |#4|)) (-15 -3493 (|#1| |#1| |#1| |#4|)) (-15 -3725 (|#1| |#1| |#1|)) (-15 -3493 (|#1| |#1| |#1|)) (-15 -3486 (|#1| |#1| |#1| |#4|)) (-15 -3321 (|#1| |#1| |#1| |#4|)) (-15 -3486 (|#1| |#1| |#1|)) (-15 -3321 (|#1| |#1| |#1|)) (-15 -1493 ((-112) |#1| (-639 |#1|))) (-15 -1493 ((-112) |#1| |#1|)) (-15 -1645 ((-112) |#1| (-639 |#1|))) (-15 -1645 ((-112) |#1| |#1|)) (-15 -2830 ((-112) |#1| (-639 |#1|))) (-15 -2830 ((-112) |#1| |#1|)) (-15 -3300 ((-112) |#1| (-639 |#1|))) (-15 -3300 ((-112) |#1| |#1|)) (-15 -3415 ((-112) |#1| |#1|)) (-15 -1789 ((-112) |#1| |#1|)) (-15 -2632 ((-3 (-112) "failed") |#1| |#1|)) (-15 -1838 ((-639 |#1|) |#1|)) (-15 -4119 ((-639 |#1|) |#1|)) (-15 -4282 (|#1| |#1|)) (-15 -3807 (|#1| |#1|)) (-15 -3446 ((-112) |#1|)) (-15 -3739 ((-112) |#1|)) (-15 -1600 (|#1| |#1| |#4|)) (-15 -1573 (|#1| |#1| |#4|)) (-15 -3293 (|#1| |#1|)) (-15 -3173 ((-639 |#1|) |#1|)) (-15 -3276 (|#1| |#1|)) (-15 -3120 (|#1| |#1|)) (-15 -3757 (|#1| |#1|)) (-15 -3730 (|#1| |#1|)) (-15 -4091 ((-766) |#1|)) (-15 -3761 (|#4| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4053 (|#1| |#4|)) (-15 -4048 ((-3 |#4| "failed") |#1|)) (-15 -3960 (|#4| |#1|)) (-15 -1573 (|#2| |#1|)) (-15 -1600 (|#1| |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|))) (-1058 |#2| |#3| |#4|) (-1044) (-788) (-845)) (T -1057))
+NIL
+(-10 -8 (-15 -4053 (|#1| |#1|)) (-15 -1606 (|#1| |#1| |#1|)) (-15 -1606 (|#1| (-639 |#1|))) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4053 ((-947 |#2|) |#1|)) (-15 -4208 ((-947 |#2|) |#1|)) (-15 -4208 ((-1150) |#1|)) (-15 -3181 (|#1| |#1|)) (-15 -3349 (|#1| |#1|)) (-15 -1634 (|#1| |#1|)) (-15 -1814 (|#1| |#1|)) (-15 -1606 (|#2| |#2| |#1|)) (-15 -3504 (|#1| |#1| |#1|)) (-15 -3347 (|#1| |#1| |#1|)) (-15 -3504 (|#1| |#1| |#2|)) (-15 -3347 (|#1| |#1| |#2|)) (-15 -2827 (|#1| |#1|)) (-15 -3499 (|#1| |#1|)) (-15 -4208 (|#1| (-947 |#2|))) (-15 -3960 (|#1| (-947 |#2|))) (-15 -4048 ((-3 |#1| "failed") (-947 |#2|))) (-15 -4208 (|#1| (-947 (-562)))) (-15 -3960 (|#1| (-947 (-562)))) (-15 -4048 ((-3 |#1| "failed") (-947 (-562)))) (-15 -4208 (|#1| (-947 (-406 (-562))))) (-15 -3960 (|#1| (-947 (-406 (-562))))) (-15 -4048 ((-3 |#1| "failed") (-947 (-406 (-562))))) (-15 -2651 (|#1| |#1| |#1|)) (-15 -1630 (|#1| |#1| |#1|)) (-15 -1674 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -3185 (-766))) |#1| |#1|)) (-15 -1874 (|#1| |#1| |#1|)) (-15 -3840 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -3823 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1| |#4|)) (-15 -3823 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -1648 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -1441 |#1|)) |#1| |#1| |#4|)) (-15 -1648 ((-2 (|:| -4221 |#1|) (|:| |gap| (-766)) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -3725 (|#1| |#1| |#1| |#4|)) (-15 -3493 (|#1| |#1| |#1| |#4|)) (-15 -3725 (|#1| |#1| |#1|)) (-15 -3493 (|#1| |#1| |#1|)) (-15 -3486 (|#1| |#1| |#1| |#4|)) (-15 -3321 (|#1| |#1| |#1| |#4|)) (-15 -3486 (|#1| |#1| |#1|)) (-15 -3321 (|#1| |#1| |#1|)) (-15 -1493 ((-112) |#1| (-639 |#1|))) (-15 -1493 ((-112) |#1| |#1|)) (-15 -1645 ((-112) |#1| (-639 |#1|))) (-15 -1645 ((-112) |#1| |#1|)) (-15 -2830 ((-112) |#1| (-639 |#1|))) (-15 -2830 ((-112) |#1| |#1|)) (-15 -3300 ((-112) |#1| (-639 |#1|))) (-15 -3300 ((-112) |#1| |#1|)) (-15 -3415 ((-112) |#1| |#1|)) (-15 -1789 ((-112) |#1| |#1|)) (-15 -2632 ((-3 (-112) "failed") |#1| |#1|)) (-15 -1838 ((-639 |#1|) |#1|)) (-15 -4119 ((-639 |#1|) |#1|)) (-15 -4282 (|#1| |#1|)) (-15 -3807 (|#1| |#1|)) (-15 -3446 ((-112) |#1|)) (-15 -3739 ((-112) |#1|)) (-15 -1600 (|#1| |#1| |#4|)) (-15 -1573 (|#1| |#1| |#4|)) (-15 -3293 (|#1| |#1|)) (-15 -3173 ((-639 |#1|) |#1|)) (-15 -3276 (|#1| |#1|)) (-15 -3120 (|#1| |#1|)) (-15 -3757 (|#1| |#1|)) (-15 -3730 (|#1| |#1|)) (-15 -4091 ((-766) |#1|)) (-15 -3761 (|#4| |#1|)) (-15 -4208 ((-535) |#1|)) (-15 -4208 ((-887 (-562)) |#1|)) (-15 -4208 ((-887 (-378)) |#1|)) (-15 -4053 (|#1| |#4|)) (-15 -4048 ((-3 |#4| "failed") |#1|)) (-15 -3960 (|#4| |#1|)) (-15 -1573 (|#2| |#1|)) (-15 -1600 (|#1| |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-1401 (((-639 |#3|) $) 110)) (-1602 (((-1164 $) $ |#3|) 125) (((-1164 |#1|) $) 124)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 87 (|has| |#1| (-554)))) (-1965 (($ $) 88 (|has| |#1| (-554)))) (-4102 (((-112) $) 90 (|has| |#1| (-554)))) (-1578 (((-766) $) 112) (((-766) $ (-639 |#3|)) 111)) (-3120 (($ $) 271)) (-3415 (((-112) $ $) 257)) (-2781 (((-3 $ "failed") $ $) 19)) (-2035 (($ $ $) 216 (|has| |#1| (-554)))) (-4205 (((-639 $) $ $) 211 (|has| |#1| (-554)))) (-3517 (((-417 (-1164 $)) (-1164 $)) 100 (|has| |#1| (-904)))) (-1977 (($ $) 98 (|has| |#1| (-451)))) (-3788 (((-417 $) $) 97 (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 103 (|has| |#1| (-904)))) (-3329 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 164) (((-3 (-406 (-562)) "failed") $) 161 (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) 159 (|has| |#1| (-1033 (-562)))) (((-3 |#3| "failed") $) 136) (((-3 $ "failed") (-947 (-406 (-562)))) 231 (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168))))) (((-3 $ "failed") (-947 (-562))) 228 (-4037 (-12 (-2234 (|has| |#1| (-38 (-406 (-562))))) (|has| |#1| (-38 (-562))) (|has| |#3| (-610 (-1168)))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168)))))) (((-3 $ "failed") (-947 |#1|)) 225 (-4037 (-12 (-2234 (|has| |#1| (-38 (-406 (-562))))) (-2234 (|has| |#1| (-38 (-562)))) (|has| |#3| (-610 (-1168)))) (-12 (-2234 (|has| |#1| (-544))) (-2234 (|has| |#1| (-38 (-406 (-562))))) (|has| |#1| (-38 (-562))) (|has| |#3| (-610 (-1168)))) (-12 (-2234 (|has| |#1| (-987 (-562)))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168))))))) (-3960 ((|#1| $) 163) (((-406 (-562)) $) 162 (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) 160 (|has| |#1| (-1033 (-562)))) ((|#3| $) 137) (($ (-947 (-406 (-562)))) 230 (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168))))) (($ (-947 (-562))) 227 (-4037 (-12 (-2234 (|has| |#1| (-38 (-406 (-562))))) (|has| |#1| (-38 (-562))) (|has| |#3| (-610 (-1168)))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168)))))) (($ (-947 |#1|)) 224 (-4037 (-12 (-2234 (|has| |#1| (-38 (-406 (-562))))) (-2234 (|has| |#1| (-38 (-562)))) (|has| |#3| (-610 (-1168)))) (-12 (-2234 (|has| |#1| (-544))) (-2234 (|has| |#1| (-38 (-406 (-562))))) (|has| |#1| (-38 (-562))) (|has| |#3| (-610 (-1168)))) (-12 (-2234 (|has| |#1| (-987 (-562)))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168))))))) (-2355 (($ $ $ |#3|) 108 (|has| |#1| (-171))) (($ $ $) 212 (|has| |#1| (-554)))) (-1600 (($ $) 154) (($ $ |#3|) 266)) (-3449 (((-683 (-562)) (-683 $)) 134 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 133 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 132) (((-683 |#1|) (-683 $)) 131)) (-3300 (((-112) $ $) 256) (((-112) $ (-639 $)) 255)) (-1694 (((-3 $ "failed") $) 33)) (-3446 (((-112) $) 264)) (-3840 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 236)) (-1814 (($ $) 205 (|has| |#1| (-451)))) (-2578 (($ $) 176 (|has| |#1| (-451))) (($ $ |#3|) 105 (|has| |#1| (-451)))) (-1585 (((-639 $) $) 109)) (-3521 (((-112) $) 96 (|has| |#1| (-904)))) (-2827 (($ $) 221 (|has| |#1| (-554)))) (-3499 (($ $) 222 (|has| |#1| (-554)))) (-3321 (($ $ $) 248) (($ $ $ |#3|) 246)) (-3486 (($ $ $) 247) (($ $ $ |#3|) 245)) (-3066 (($ $ |#1| |#2| $) 172)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 84 (-12 (|has| |#3| (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 83 (-12 (|has| |#3| (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-4367 (((-112) $) 31)) (-3627 (((-766) $) 169)) (-1493 (((-112) $ $) 250) (((-112) $ (-639 $)) 249)) (-2746 (($ $ $ $ $) 207 (|has| |#1| (-554)))) (-3761 ((|#3| $) 275)) (-1389 (($ (-1164 |#1|) |#3|) 117) (($ (-1164 $) |#3|) 116)) (-1869 (((-639 $) $) 126)) (-2833 (((-112) $) 152)) (-1377 (($ |#1| |#2|) 153) (($ $ |#3| (-766)) 119) (($ $ (-639 |#3|) (-639 (-766))) 118)) (-1874 (($ $ $) 235)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ |#3|) 120)) (-3739 (((-112) $) 265)) (-3161 ((|#2| $) 170) (((-766) $ |#3|) 122) (((-639 (-766)) $ (-639 |#3|)) 121)) (-1551 (($ $ $) 79 (|has| |#1| (-845)))) (-4091 (((-766) $) 274)) (-2993 (($ $ $) 78 (|has| |#1| (-845)))) (-2363 (($ (-1 |#2| |#2|) $) 171)) (-4152 (($ (-1 |#1| |#1|) $) 151)) (-3640 (((-3 |#3| "failed") $) 123)) (-3181 (($ $) 202 (|has| |#1| (-451)))) (-3349 (($ $) 203 (|has| |#1| (-451)))) (-1838 (((-639 $) $) 260)) (-3807 (($ $) 263)) (-1634 (($ $) 204 (|has| |#1| (-451)))) (-4119 (((-639 $) $) 261)) (-4282 (($ $) 262)) (-1560 (($ $) 149)) (-1573 ((|#1| $) 148) (($ $ |#3|) 267)) (-1564 (($ (-639 $)) 94 (|has| |#1| (-451))) (($ $ $) 93 (|has| |#1| (-451)))) (-1674 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3185 (-766))) $ $) 234)) (-3823 (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -3380 $) (|:| -1441 $)) $ $) 238) (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -3380 $) (|:| -1441 $)) $ $ |#3|) 237)) (-1648 (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -1441 $)) $ $) 240) (((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -1441 $)) $ $ |#3|) 239)) (-3493 (($ $ $) 244) (($ $ $ |#3|) 242)) (-3725 (($ $ $) 243) (($ $ $ |#3|) 241)) (-3696 (((-1150) $) 9)) (-2672 (($ $ $) 210 (|has| |#1| (-554)))) (-3173 (((-639 $) $) 269)) (-4025 (((-3 (-639 $) "failed") $) 114)) (-1778 (((-3 (-639 $) "failed") $) 115)) (-4270 (((-3 (-2 (|:| |var| |#3|) (|:| -1300 (-766))) "failed") $) 113)) (-1645 (((-112) $ $) 252) (((-112) $ (-639 $)) 251)) (-2651 (($ $ $) 232)) (-3730 (($ $) 273)) (-1789 (((-112) $ $) 258)) (-2830 (((-112) $ $) 254) (((-112) $ (-639 $)) 253)) (-1630 (($ $ $) 233)) (-3757 (($ $) 272)) (-1709 (((-1112) $) 10)) (-4272 (((-2 (|:| -1606 $) (|:| |coef2| $)) $ $) 213 (|has| |#1| (-554)))) (-3015 (((-2 (|:| -1606 $) (|:| |coef1| $)) $ $) 214 (|has| |#1| (-554)))) (-1534 (((-112) $) 166)) (-1547 ((|#1| $) 167)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 95 (|has| |#1| (-451)))) (-1606 ((|#1| |#1| $) 206 (|has| |#1| (-451))) (($ (-639 $)) 92 (|has| |#1| (-451))) (($ $ $) 91 (|has| |#1| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) 102 (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) 101 (|has| |#1| (-904)))) (-1635 (((-417 $) $) 99 (|has| |#1| (-904)))) (-2057 (((-2 (|:| -1606 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-554)))) (-1762 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-554)))) (-3504 (($ $ |#1|) 219 (|has| |#1| (-554))) (($ $ $) 217 (|has| |#1| (-554)))) (-3347 (($ $ |#1|) 220 (|has| |#1| (-554))) (($ $ $) 218 (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) 145) (($ $ (-293 $)) 144) (($ $ $ $) 143) (($ $ (-639 $) (-639 $)) 142) (($ $ |#3| |#1|) 141) (($ $ (-639 |#3|) (-639 |#1|)) 140) (($ $ |#3| $) 139) (($ $ (-639 |#3|) (-639 $)) 138)) (-2736 (($ $ |#3|) 107 (|has| |#1| (-171)))) (-4029 (($ $ |#3|) 42) (($ $ (-639 |#3|)) 41) (($ $ |#3| (-766)) 40) (($ $ (-639 |#3|) (-639 (-766))) 39)) (-2250 ((|#2| $) 150) (((-766) $ |#3|) 130) (((-639 (-766)) $ (-639 |#3|)) 129)) (-3276 (($ $) 270)) (-3293 (($ $) 268)) (-4208 (((-887 (-378)) $) 82 (-12 (|has| |#3| (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) 81 (-12 (|has| |#3| (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) 80 (-12 (|has| |#3| (-610 (-535))) (|has| |#1| (-610 (-535))))) (($ (-947 (-406 (-562)))) 229 (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168))))) (($ (-947 (-562))) 226 (-4037 (-12 (-2234 (|has| |#1| (-38 (-406 (-562))))) (|has| |#1| (-38 (-562))) (|has| |#3| (-610 (-1168)))) (-12 (|has| |#1| (-38 (-406 (-562)))) (|has| |#3| (-610 (-1168)))))) (($ (-947 |#1|)) 223 (|has| |#3| (-610 (-1168)))) (((-1150) $) 201 (-12 (|has| |#1| (-1033 (-562))) (|has| |#3| (-610 (-1168))))) (((-947 |#1|) $) 200 (|has| |#3| (-610 (-1168))))) (-2201 ((|#1| $) 175 (|has| |#1| (-451))) (($ $ |#3|) 106 (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 104 (-2245 (|has| $ (-144)) (|has| |#1| (-904))))) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 165) (($ |#3|) 135) (((-947 |#1|) $) 199 (|has| |#3| (-610 (-1168)))) (($ (-406 (-562))) 72 (-4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562)))))) (($ $) 85 (|has| |#1| (-554)))) (-3969 (((-639 |#1|) $) 168)) (-2266 ((|#1| $ |#2|) 155) (($ $ |#3| (-766)) 128) (($ $ (-639 |#3|) (-639 (-766))) 127)) (-2059 (((-3 $ "failed") $) 73 (-4037 (-2245 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) 28)) (-1760 (($ $ $ (-766)) 173 (|has| |#1| (-171)))) (-3799 (((-112) $ $) 89 (|has| |#1| (-554)))) (-2285 (($) 18 T CONST)) (-2632 (((-3 (-112) "failed") $ $) 259)) (-2294 (($) 30 T CONST)) (-1378 (($ $ $ $ (-766)) 208 (|has| |#1| (-554)))) (-4382 (($ $ $ (-766)) 209 (|has| |#1| (-554)))) (-3113 (($ $ |#3|) 38) (($ $ (-639 |#3|)) 37) (($ $ |#3| (-766)) 36) (($ $ (-639 |#3|) (-639 (-766))) 35)) (-1798 (((-112) $ $) 76 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 75 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 77 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 74 (|has| |#1| (-845)))) (-1859 (($ $ |#1|) 156 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 158 (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) 157 (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
(((-1058 |#1| |#2| |#3|) (-139) (-1044) (-788) (-845)) (T -1058))
-((-4339 (*1 *2 *1) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-2643 (*1 *2 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-766)))) (-3729 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-3063 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-3121 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-2389 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-2077 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1058 *3 *4 *5)))) (-3771 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-1573 (*1 *1 *1 *2) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-1601 (*1 *1 *1 *2) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-2311 (*1 *2 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-2708 (*1 *2 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-4343 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-2847 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-2954 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1058 *3 *4 *5)))) (-4196 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1058 *3 *4 *5)))) (-2442 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-1408 (*1 *2 *1 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-3784 (*1 *2 *1 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-4091 (*1 *2 *1 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-4091 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)))) (-2766 (*1 *2 *1 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-2766 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)))) (-2890 (*1 *2 *1 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-2890 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)))) (-2573 (*1 *2 *1 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-2573 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)))) (-4093 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-2410 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-4093 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-2410 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-3793 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-2310 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-3793 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-2310 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-2586 (*1 *2 *1 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -2264 *1))) (-4 *1 (-1058 *3 *4 *5)))) (-2586 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-5 *2 (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -2264 *1))) (-4 *1 (-1058 *4 *5 *3)))) (-2924 (*1 *2 *1 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-1058 *3 *4 *5)))) (-2924 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-5 *2 (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-1058 *4 *5 *3)))) (-2622 (*1 *2 *1 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-1058 *3 *4 *5)))) (-1415 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-3666 (*1 *2 *1 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -3761 (-766)))) (-4 *1 (-1058 *3 *4 *5)))) (-1532 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-1849 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-947 (-406 (-562)))) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)))) (-3961 (*1 *1 *2) (-12 (-5 *2 (-947 (-406 (-562)))) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-947 (-406 (-562)))) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)))) (-4048 (*1 *1 *2) (|partial| -4037 (-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5)) (-12 (-2236 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5)) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))))) (-3961 (*1 *1 *2) (-4037 (-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5)) (-12 (-2236 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5)) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))))) (-4208 (*1 *1 *2) (-4037 (-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5)) (-12 (-2236 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5)) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))))) (-4048 (*1 *1 *2) (|partial| -4037 (-12 (-5 *2 (-947 *3)) (-12 (-2236 (-4 *3 (-38 (-406 (-562))))) (-2236 (-4 *3 (-38 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 *3)) (-12 (-2236 (-4 *3 (-544))) (-2236 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 *3)) (-12 (-2236 (-4 *3 (-987 (-562)))) (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845))))) (-3961 (*1 *1 *2) (-4037 (-12 (-5 *2 (-947 *3)) (-12 (-2236 (-4 *3 (-38 (-406 (-562))))) (-2236 (-4 *3 (-38 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 *3)) (-12 (-2236 (-4 *3 (-544))) (-2236 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 *3)) (-12 (-2236 (-4 *3 (-987 (-562)))) (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845))))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-947 *3)) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *5 (-610 (-1168))) (-4 *4 (-788)) (-4 *5 (-845)))) (-1994 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-3221 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-2094 (*1 *1 *1 *2) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-2285 (*1 *1 *1 *2) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-2094 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-2285 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-3258 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-2196 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| -1606 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-1058 *3 *4 *5)))) (-2062 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| -1606 *1) (|:| |coef1| *1))) (-4 *1 (-1058 *3 *4 *5)))) (-2235 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| -1606 *1) (|:| |coef2| *1))) (-4 *1 (-1058 *3 *4 *5)))) (-2835 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-4052 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1058 *3 *4 *5)))) (-1851 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-2249 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *3 (-554)))) (-3330 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *3 (-554)))) (-3524 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-1606 (*1 *2 *2 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))) (-1410 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))) (-2889 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))) (-2698 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))) (-2985 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))))
-(-13 (-944 |t#1| |t#2| |t#3|) (-10 -8 (-15 -4339 (|t#3| $)) (-15 -2643 ((-766) $)) (-15 -3729 ($ $)) (-15 -3063 ($ $)) (-15 -3121 ($ $)) (-15 -2389 ($ $)) (-15 -2077 ((-639 $) $)) (-15 -3771 ($ $)) (-15 -1573 ($ $ |t#3|)) (-15 -1601 ($ $ |t#3|)) (-15 -2311 ((-112) $)) (-15 -2708 ((-112) $)) (-15 -4343 ($ $)) (-15 -2847 ($ $)) (-15 -2954 ((-639 $) $)) (-15 -4196 ((-639 $) $)) (-15 -2442 ((-3 (-112) "failed") $ $)) (-15 -1408 ((-112) $ $)) (-15 -3784 ((-112) $ $)) (-15 -4091 ((-112) $ $)) (-15 -4091 ((-112) $ (-639 $))) (-15 -2766 ((-112) $ $)) (-15 -2766 ((-112) $ (-639 $))) (-15 -2890 ((-112) $ $)) (-15 -2890 ((-112) $ (-639 $))) (-15 -2573 ((-112) $ $)) (-15 -2573 ((-112) $ (-639 $))) (-15 -4093 ($ $ $)) (-15 -2410 ($ $ $)) (-15 -4093 ($ $ $ |t#3|)) (-15 -2410 ($ $ $ |t#3|)) (-15 -3793 ($ $ $)) (-15 -2310 ($ $ $)) (-15 -3793 ($ $ $ |t#3|)) (-15 -2310 ($ $ $ |t#3|)) (-15 -2586 ((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2264 $)) $ $)) (-15 -2586 ((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2264 $)) $ $ |t#3|)) (-15 -2924 ((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2097 $) (|:| -2264 $)) $ $)) (-15 -2924 ((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -2097 $) (|:| -2264 $)) $ $ |t#3|)) (-15 -2622 ((-2 (|:| -2097 $) (|:| -2264 $)) $ $)) (-15 -1415 ($ $ $)) (-15 -3666 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3761 (-766))) $ $)) (-15 -1532 ($ $ $)) (-15 -1849 ($ $ $)) (IF (|has| |t#3| (-610 (-1168))) (PROGN (-6 (-609 (-947 |t#1|))) (-6 (-610 (-947 |t#1|))) (IF (|has| |t#1| (-38 (-406 (-562)))) (PROGN (-15 -4048 ((-3 $ "failed") (-947 (-406 (-562))))) (-15 -3961 ($ (-947 (-406 (-562))))) (-15 -4208 ($ (-947 (-406 (-562))))) (-15 -4048 ((-3 $ "failed") (-947 (-562)))) (-15 -3961 ($ (-947 (-562)))) (-15 -4208 ($ (-947 (-562)))) (IF (|has| |t#1| (-987 (-562))) |%noBranch| (PROGN (-15 -4048 ((-3 $ "failed") (-947 |t#1|))) (-15 -3961 ($ (-947 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-38 (-562))) (IF (|has| |t#1| (-38 (-406 (-562)))) |%noBranch| (PROGN (-15 -4048 ((-3 $ "failed") (-947 (-562)))) (-15 -3961 ($ (-947 (-562)))) (-15 -4208 ($ (-947 (-562)))) (IF (|has| |t#1| (-544)) |%noBranch| (PROGN (-15 -4048 ((-3 $ "failed") (-947 |t#1|))) (-15 -3961 ($ (-947 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-38 (-562))) |%noBranch| (IF (|has| |t#1| (-38 (-406 (-562)))) |%noBranch| (PROGN (-15 -4048 ((-3 $ "failed") (-947 |t#1|))) (-15 -3961 ($ (-947 |t#1|)))))) (-15 -4208 ($ (-947 |t#1|))) (IF (|has| |t#1| (-1033 (-562))) (-6 (-610 (-1150))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-554)) (PROGN (-15 -1994 ($ $)) (-15 -3221 ($ $)) (-15 -2094 ($ $ |t#1|)) (-15 -2285 ($ $ |t#1|)) (-15 -2094 ($ $ $)) (-15 -2285 ($ $ $)) (-15 -3258 ($ $ $)) (-15 -2196 ((-2 (|:| -1606 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2062 ((-2 (|:| -1606 $) (|:| |coef1| $)) $ $)) (-15 -2235 ((-2 (|:| -1606 $) (|:| |coef2| $)) $ $)) (-15 -2835 ($ $ $)) (-15 -4052 ((-639 $) $ $)) (-15 -1851 ($ $ $)) (-15 -2249 ($ $ $ (-766))) (-15 -3330 ($ $ $ $ (-766))) (-15 -3524 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-451)) (PROGN (-15 -1606 (|t#1| |t#1| $)) (-15 -1410 ($ $)) (-15 -2889 ($ $)) (-15 -2698 ($ $)) (-15 -2985 ($ $))) |%noBranch|)))
+((-3761 (*1 *2 *1) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-4091 (*1 *2 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-766)))) (-3730 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-3757 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-3120 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-3276 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-3173 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1058 *3 *4 *5)))) (-3293 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-1573 (*1 *1 *1 *2) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-1600 (*1 *1 *1 *2) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-3739 (*1 *2 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-3446 (*1 *2 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-3807 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-4282 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-4119 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1058 *3 *4 *5)))) (-1838 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1058 *3 *4 *5)))) (-2632 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-1789 (*1 *2 *1 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-3415 (*1 *2 *1 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-3300 (*1 *2 *1 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-3300 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)))) (-2830 (*1 *2 *1 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-2830 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)))) (-1645 (*1 *2 *1 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-1645 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)))) (-1493 (*1 *2 *1 *1) (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))) (-1493 (*1 *2 *1 *3) (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)))) (-3321 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-3486 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-3321 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-3486 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-3493 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-3725 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-3493 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-3725 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *2 (-845)))) (-1648 (*1 *2 *1 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -1441 *1))) (-4 *1 (-1058 *3 *4 *5)))) (-1648 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-5 *2 (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -1441 *1))) (-4 *1 (-1058 *4 *5 *3)))) (-3823 (*1 *2 *1 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-1058 *3 *4 *5)))) (-3823 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845)) (-5 *2 (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-1058 *4 *5 *3)))) (-3840 (*1 *2 *1 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-1058 *3 *4 *5)))) (-1874 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-1674 (*1 *2 *1 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -3185 (-766)))) (-4 *1 (-1058 *3 *4 *5)))) (-1630 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-2651 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)))) (-4048 (*1 *1 *2) (|partial| -12 (-5 *2 (-947 (-406 (-562)))) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-947 (-406 (-562)))) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-947 (-406 (-562)))) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)))) (-4048 (*1 *1 *2) (|partial| -4037 (-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5)) (-12 (-2234 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5)) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))))) (-3960 (*1 *1 *2) (-4037 (-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5)) (-12 (-2234 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5)) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))))) (-4208 (*1 *1 *2) (-4037 (-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5)) (-12 (-2234 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5)) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))))) (-4048 (*1 *1 *2) (|partial| -4037 (-12 (-5 *2 (-947 *3)) (-12 (-2234 (-4 *3 (-38 (-406 (-562))))) (-2234 (-4 *3 (-38 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 *3)) (-12 (-2234 (-4 *3 (-544))) (-2234 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 *3)) (-12 (-2234 (-4 *3 (-987 (-562)))) (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845))))) (-3960 (*1 *1 *2) (-4037 (-12 (-5 *2 (-947 *3)) (-12 (-2234 (-4 *3 (-38 (-406 (-562))))) (-2234 (-4 *3 (-38 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 *3)) (-12 (-2234 (-4 *3 (-544))) (-2234 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845))) (-12 (-5 *2 (-947 *3)) (-12 (-2234 (-4 *3 (-987 (-562)))) (-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168)))) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788)) (-4 *5 (-845))))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-947 *3)) (-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *5 (-610 (-1168))) (-4 *4 (-788)) (-4 *5 (-845)))) (-3499 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-2827 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-3347 (*1 *1 *1 *2) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-3504 (*1 *1 *1 *2) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-3347 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-3504 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-2035 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-2057 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| -1606 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-1058 *3 *4 *5)))) (-3015 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| -1606 *1) (|:| |coef1| *1))) (-4 *1 (-1058 *3 *4 *5)))) (-4272 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-2 (|:| -1606 *1) (|:| |coef2| *1))) (-4 *1 (-1058 *3 *4 *5)))) (-2355 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-4205 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1058 *3 *4 *5)))) (-2672 (*1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-4382 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *3 (-554)))) (-1378 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *3 (-554)))) (-2746 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-554)))) (-1606 (*1 *2 *2 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))) (-1814 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))) (-1634 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))) (-3349 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))) (-3181 (*1 *1 *1) (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-451)))))
+(-13 (-944 |t#1| |t#2| |t#3|) (-10 -8 (-15 -3761 (|t#3| $)) (-15 -4091 ((-766) $)) (-15 -3730 ($ $)) (-15 -3757 ($ $)) (-15 -3120 ($ $)) (-15 -3276 ($ $)) (-15 -3173 ((-639 $) $)) (-15 -3293 ($ $)) (-15 -1573 ($ $ |t#3|)) (-15 -1600 ($ $ |t#3|)) (-15 -3739 ((-112) $)) (-15 -3446 ((-112) $)) (-15 -3807 ($ $)) (-15 -4282 ($ $)) (-15 -4119 ((-639 $) $)) (-15 -1838 ((-639 $) $)) (-15 -2632 ((-3 (-112) "failed") $ $)) (-15 -1789 ((-112) $ $)) (-15 -3415 ((-112) $ $)) (-15 -3300 ((-112) $ $)) (-15 -3300 ((-112) $ (-639 $))) (-15 -2830 ((-112) $ $)) (-15 -2830 ((-112) $ (-639 $))) (-15 -1645 ((-112) $ $)) (-15 -1645 ((-112) $ (-639 $))) (-15 -1493 ((-112) $ $)) (-15 -1493 ((-112) $ (-639 $))) (-15 -3321 ($ $ $)) (-15 -3486 ($ $ $)) (-15 -3321 ($ $ $ |t#3|)) (-15 -3486 ($ $ $ |t#3|)) (-15 -3493 ($ $ $)) (-15 -3725 ($ $ $)) (-15 -3493 ($ $ $ |t#3|)) (-15 -3725 ($ $ $ |t#3|)) (-15 -1648 ((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -1441 $)) $ $)) (-15 -1648 ((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -1441 $)) $ $ |t#3|)) (-15 -3823 ((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -3380 $) (|:| -1441 $)) $ $)) (-15 -3823 ((-2 (|:| -4221 $) (|:| |gap| (-766)) (|:| -3380 $) (|:| -1441 $)) $ $ |t#3|)) (-15 -3840 ((-2 (|:| -3380 $) (|:| -1441 $)) $ $)) (-15 -1874 ($ $ $)) (-15 -1674 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3185 (-766))) $ $)) (-15 -1630 ($ $ $)) (-15 -2651 ($ $ $)) (IF (|has| |t#3| (-610 (-1168))) (PROGN (-6 (-609 (-947 |t#1|))) (-6 (-610 (-947 |t#1|))) (IF (|has| |t#1| (-38 (-406 (-562)))) (PROGN (-15 -4048 ((-3 $ "failed") (-947 (-406 (-562))))) (-15 -3960 ($ (-947 (-406 (-562))))) (-15 -4208 ($ (-947 (-406 (-562))))) (-15 -4048 ((-3 $ "failed") (-947 (-562)))) (-15 -3960 ($ (-947 (-562)))) (-15 -4208 ($ (-947 (-562)))) (IF (|has| |t#1| (-987 (-562))) |%noBranch| (PROGN (-15 -4048 ((-3 $ "failed") (-947 |t#1|))) (-15 -3960 ($ (-947 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-38 (-562))) (IF (|has| |t#1| (-38 (-406 (-562)))) |%noBranch| (PROGN (-15 -4048 ((-3 $ "failed") (-947 (-562)))) (-15 -3960 ($ (-947 (-562)))) (-15 -4208 ($ (-947 (-562)))) (IF (|has| |t#1| (-544)) |%noBranch| (PROGN (-15 -4048 ((-3 $ "failed") (-947 |t#1|))) (-15 -3960 ($ (-947 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-38 (-562))) |%noBranch| (IF (|has| |t#1| (-38 (-406 (-562)))) |%noBranch| (PROGN (-15 -4048 ((-3 $ "failed") (-947 |t#1|))) (-15 -3960 ($ (-947 |t#1|)))))) (-15 -4208 ($ (-947 |t#1|))) (IF (|has| |t#1| (-1033 (-562))) (-6 (-610 (-1150))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-554)) (PROGN (-15 -3499 ($ $)) (-15 -2827 ($ $)) (-15 -3347 ($ $ |t#1|)) (-15 -3504 ($ $ |t#1|)) (-15 -3347 ($ $ $)) (-15 -3504 ($ $ $)) (-15 -2035 ($ $ $)) (-15 -2057 ((-2 (|:| -1606 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3015 ((-2 (|:| -1606 $) (|:| |coef1| $)) $ $)) (-15 -4272 ((-2 (|:| -1606 $) (|:| |coef2| $)) $ $)) (-15 -2355 ($ $ $)) (-15 -4205 ((-639 $) $ $)) (-15 -2672 ($ $ $)) (-15 -4382 ($ $ $ (-766))) (-15 -1378 ($ $ $ $ (-766))) (-15 -2746 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-451)) (PROGN (-15 -1606 (|t#1| |t#1| $)) (-15 -1814 ($ $)) (-15 -1634 ($ $)) (-15 -3349 ($ $)) (-15 -3181 ($ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-406 (-562))) |has| |#1| (-38 (-406 (-562)))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-406 (-562)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #0#) -4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562))))) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-612 |#3|) . T) ((-612 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-609 (-857)) . T) ((-609 (-947 |#1|)) |has| |#3| (-610 (-1168))) ((-171) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-171))) ((-610 (-535)) -12 (|has| |#1| (-610 (-535))) (|has| |#3| (-610 (-535)))) ((-610 (-887 (-378))) -12 (|has| |#1| (-610 (-887 (-378)))) (|has| |#3| (-610 (-887 (-378))))) ((-610 (-887 (-562))) -12 (|has| |#1| (-610 (-887 (-562)))) (|has| |#3| (-610 (-887 (-562))))) ((-610 (-947 |#1|)) |has| |#3| (-610 (-1168))) ((-610 (-1150)) -12 (|has| |#1| (-1033 (-562))) (|has| |#3| (-610 (-1168)))) ((-289) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-308 $) . T) ((-325 |#1| |#2|) . T) ((-376 |#1|) . T) ((-410 |#1|) . T) ((-451) -4037 (|has| |#1| (-904)) (|has| |#1| (-451))) ((-513 |#3| |#1|) . T) ((-513 |#3| $) . T) ((-513 $ $) . T) ((-554) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-642 #0#) |has| |#1| (-38 (-406 (-562)))) ((-642 |#1|) . T) ((-642 $) . T) ((-635 (-562)) |has| |#1| (-635 (-562))) ((-635 |#1|) . T) ((-712 #0#) |has| |#1| (-38 (-406 (-562)))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451))) ((-721) . T) ((-845) |has| |#1| (-845)) ((-895 |#3|) . T) ((-881 (-378)) -12 (|has| |#1| (-881 (-378))) (|has| |#3| (-881 (-378)))) ((-881 (-562)) -12 (|has| |#1| (-881 (-562))) (|has| |#3| (-881 (-562)))) ((-944 |#1| |#2| |#3|) . T) ((-904) |has| |#1| (-904)) ((-1033 (-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 |#1|) . T) ((-1033 |#3|) . T) ((-1050 #0#) |has| |#1| (-38 (-406 (-562)))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1211) |has| |#1| (-904)))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-2454 (((-639 (-1127)) $) 13)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 24) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-1127) $) 15)) (-1731 (((-112) $ $) NIL)))
-(((-1059) (-13 (-1075) (-10 -8 (-15 -2454 ((-639 (-1127)) $)) (-15 -3265 ((-1127) $))))) (T -1059))
-((-2454 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-1059)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1059)))))
-(-13 (-1075) (-10 -8 (-15 -2454 ((-639 (-1127)) $)) (-15 -3265 ((-1127) $))))
-((-1952 (((-112) |#3| $) 13)) (-1502 (((-3 $ "failed") |#3| (-916)) 23)) (-3668 (((-3 |#3| "failed") |#3| $) 38)) (-3519 (((-112) |#3| $) 16)) (-3392 (((-112) |#3| $) 14)))
-(((-1060 |#1| |#2| |#3|) (-10 -8 (-15 -1502 ((-3 |#1| "failed") |#3| (-916))) (-15 -3668 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3519 ((-112) |#3| |#1|)) (-15 -3392 ((-112) |#3| |#1|)) (-15 -1952 ((-112) |#3| |#1|))) (-1061 |#2| |#3|) (-13 (-843) (-362)) (-1232 |#2|)) (T -1060))
-NIL
-(-10 -8 (-15 -1502 ((-3 |#1| "failed") |#3| (-916))) (-15 -3668 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3519 ((-112) |#3| |#1|)) (-15 -3392 ((-112) |#3| |#1|)) (-15 -1952 ((-112) |#3| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) |#2| $) 21)) (-2277 (((-562) |#2| $) 22)) (-1502 (((-3 $ "failed") |#2| (-916)) 15)) (-3104 ((|#1| |#2| $ |#1|) 13)) (-3668 (((-3 |#2| "failed") |#2| $) 18)) (-3519 (((-112) |#2| $) 19)) (-3392 (((-112) |#2| $) 20)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2096 ((|#2| $) 17)) (-4054 (((-857) $) 11)) (-1406 ((|#1| |#2| $ |#1|) 14)) (-3318 (((-639 $) |#2|) 16)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-2453 (((-639 (-1127)) $) 13)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 24) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-1127) $) 15)) (-1733 (((-112) $ $) NIL)))
+(((-1059) (-13 (-1075) (-10 -8 (-15 -2453 ((-639 (-1127)) $)) (-15 -3265 ((-1127) $))))) (T -1059))
+((-2453 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-1059)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1059)))))
+(-13 (-1075) (-10 -8 (-15 -2453 ((-639 (-1127)) $)) (-15 -3265 ((-1127) $))))
+((-4325 (((-112) |#3| $) 13)) (-2608 (((-3 $ "failed") |#3| (-916)) 23)) (-1694 (((-3 |#3| "failed") |#3| $) 38)) (-2696 (((-112) |#3| $) 16)) (-3855 (((-112) |#3| $) 14)))
+(((-1060 |#1| |#2| |#3|) (-10 -8 (-15 -2608 ((-3 |#1| "failed") |#3| (-916))) (-15 -1694 ((-3 |#3| "failed") |#3| |#1|)) (-15 -2696 ((-112) |#3| |#1|)) (-15 -3855 ((-112) |#3| |#1|)) (-15 -4325 ((-112) |#3| |#1|))) (-1061 |#2| |#3|) (-13 (-843) (-362)) (-1232 |#2|)) (T -1060))
+NIL
+(-10 -8 (-15 -2608 ((-3 |#1| "failed") |#3| (-916))) (-15 -1694 ((-3 |#3| "failed") |#3| |#1|)) (-15 -2696 ((-112) |#3| |#1|)) (-15 -3855 ((-112) |#3| |#1|)) (-15 -4325 ((-112) |#3| |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) |#2| $) 21)) (-1587 (((-562) |#2| $) 22)) (-2608 (((-3 $ "failed") |#2| (-916)) 15)) (-2918 ((|#1| |#2| $ |#1|) 13)) (-1694 (((-3 |#2| "failed") |#2| $) 18)) (-2696 (((-112) |#2| $) 19)) (-3855 (((-112) |#2| $) 20)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-3371 ((|#2| $) 17)) (-4053 (((-857) $) 11)) (-1406 ((|#1| |#2| $ |#1|) 14)) (-4383 (((-639 $) |#2|) 16)) (-1733 (((-112) $ $) 6)))
(((-1061 |#1| |#2|) (-139) (-13 (-843) (-362)) (-1232 |t#1|)) (T -1061))
-((-2277 (*1 *2 *3 *1) (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362))) (-4 *3 (-1232 *4)) (-5 *2 (-562)))) (-1952 (*1 *2 *3 *1) (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362))) (-4 *3 (-1232 *4)) (-5 *2 (-112)))) (-3392 (*1 *2 *3 *1) (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362))) (-4 *3 (-1232 *4)) (-5 *2 (-112)))) (-3519 (*1 *2 *3 *1) (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362))) (-4 *3 (-1232 *4)) (-5 *2 (-112)))) (-3668 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-1061 *3 *2)) (-4 *3 (-13 (-843) (-362))) (-4 *2 (-1232 *3)))) (-2096 (*1 *2 *1) (-12 (-4 *1 (-1061 *3 *2)) (-4 *3 (-13 (-843) (-362))) (-4 *2 (-1232 *3)))) (-3318 (*1 *2 *3) (-12 (-4 *4 (-13 (-843) (-362))) (-4 *3 (-1232 *4)) (-5 *2 (-639 *1)) (-4 *1 (-1061 *4 *3)))) (-1502 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-916)) (-4 *4 (-13 (-843) (-362))) (-4 *1 (-1061 *4 *2)) (-4 *2 (-1232 *4)))) (-1406 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1061 *2 *3)) (-4 *2 (-13 (-843) (-362))) (-4 *3 (-1232 *2)))) (-3104 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1061 *2 *3)) (-4 *2 (-13 (-843) (-362))) (-4 *3 (-1232 *2)))))
-(-13 (-1092) (-10 -8 (-15 -2277 ((-562) |t#2| $)) (-15 -1952 ((-112) |t#2| $)) (-15 -3392 ((-112) |t#2| $)) (-15 -3519 ((-112) |t#2| $)) (-15 -3668 ((-3 |t#2| "failed") |t#2| $)) (-15 -2096 (|t#2| $)) (-15 -3318 ((-639 $) |t#2|)) (-15 -1502 ((-3 $ "failed") |t#2| (-916))) (-15 -1406 (|t#1| |t#2| $ |t#1|)) (-15 -3104 (|t#1| |t#2| $ |t#1|))))
+((-1587 (*1 *2 *3 *1) (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362))) (-4 *3 (-1232 *4)) (-5 *2 (-562)))) (-4325 (*1 *2 *3 *1) (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362))) (-4 *3 (-1232 *4)) (-5 *2 (-112)))) (-3855 (*1 *2 *3 *1) (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362))) (-4 *3 (-1232 *4)) (-5 *2 (-112)))) (-2696 (*1 *2 *3 *1) (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362))) (-4 *3 (-1232 *4)) (-5 *2 (-112)))) (-1694 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-1061 *3 *2)) (-4 *3 (-13 (-843) (-362))) (-4 *2 (-1232 *3)))) (-3371 (*1 *2 *1) (-12 (-4 *1 (-1061 *3 *2)) (-4 *3 (-13 (-843) (-362))) (-4 *2 (-1232 *3)))) (-4383 (*1 *2 *3) (-12 (-4 *4 (-13 (-843) (-362))) (-4 *3 (-1232 *4)) (-5 *2 (-639 *1)) (-4 *1 (-1061 *4 *3)))) (-2608 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-916)) (-4 *4 (-13 (-843) (-362))) (-4 *1 (-1061 *4 *2)) (-4 *2 (-1232 *4)))) (-1406 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1061 *2 *3)) (-4 *2 (-13 (-843) (-362))) (-4 *3 (-1232 *2)))) (-2918 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1061 *2 *3)) (-4 *2 (-13 (-843) (-362))) (-4 *3 (-1232 *2)))))
+(-13 (-1092) (-10 -8 (-15 -1587 ((-562) |t#2| $)) (-15 -4325 ((-112) |t#2| $)) (-15 -3855 ((-112) |t#2| $)) (-15 -2696 ((-112) |t#2| $)) (-15 -1694 ((-3 |t#2| "failed") |t#2| $)) (-15 -3371 (|t#2| $)) (-15 -4383 ((-639 $) |t#2|)) (-15 -2608 ((-3 $ "failed") |t#2| (-916))) (-15 -1406 (|t#1| |t#2| $ |t#1|)) (-15 -2918 (|t#1| |t#2| $ |t#1|))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-3612 (((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-639 |#4|) (-639 |#5|) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) (-766)) 95)) (-3223 (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766)) 56)) (-4192 (((-1261) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-766)) 87)) (-2793 (((-766) (-639 |#4|) (-639 |#5|)) 27)) (-3467 (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|) 59) (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766)) 58) (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766) (-112)) 60)) (-2018 (((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112) (-112) (-112) (-112)) 78) (((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112)) 79)) (-4208 (((-1150) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) 82)) (-1456 (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-112)) 55)) (-2903 (((-766) (-639 |#4|) (-639 |#5|)) 19)))
-(((-1062 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2903 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -2793 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -1456 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-112))) (-15 -3223 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766))) (-15 -3223 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|)) (-15 -3467 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766) (-112))) (-15 -3467 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766))) (-15 -3467 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|)) (-15 -2018 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -2018 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -3612 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-639 |#4|) (-639 |#5|) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) (-766))) (-15 -4208 ((-1150) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)))) (-15 -4192 ((-1261) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-766)))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|)) (T -1062))
-((-4192 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1495 *9)))) (-5 *4 (-766)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-1261)) (-5 *1 (-1062 *5 *6 *7 *8 *9)))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1495 *8))) (-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1064 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1150)) (-5 *1 (-1062 *4 *5 *6 *7 *8)))) (-3612 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-639 *11)) (|:| |todo| (-639 (-2 (|:| |val| *3) (|:| -1495 *11)))))) (-5 *6 (-766)) (-5 *2 (-639 (-2 (|:| |val| (-639 *10)) (|:| -1495 *11)))) (-5 *3 (-639 *10)) (-5 *4 (-639 *11)) (-4 *10 (-1058 *7 *8 *9)) (-4 *11 (-1064 *7 *8 *9 *10)) (-4 *7 (-451)) (-4 *8 (-788)) (-4 *9 (-845)) (-5 *1 (-1062 *7 *8 *9 *10 *11)))) (-2018 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1062 *5 *6 *7 *8 *9)))) (-2018 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1062 *5 *6 *7 *8 *9)))) (-3467 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))))) (-5 *1 (-1062 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3467 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))))) (-5 *1 (-1062 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3)))) (-3467 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-766)) (-5 *6 (-112)) (-4 *7 (-451)) (-4 *8 (-788)) (-4 *9 (-845)) (-4 *3 (-1058 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))))) (-5 *1 (-1062 *7 *8 *9 *3 *4)) (-4 *4 (-1064 *7 *8 *9 *3)))) (-3223 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))))) (-5 *1 (-1062 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3223 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))))) (-5 *1 (-1062 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3)))) (-1456 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))))) (-5 *1 (-1062 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3)))) (-2793 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1062 *5 *6 *7 *8 *9)))) (-2903 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1062 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -2903 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -2793 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -1456 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-112))) (-15 -3223 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766))) (-15 -3223 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|)) (-15 -3467 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766) (-112))) (-15 -3467 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766))) (-15 -3467 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|)) (-15 -2018 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -2018 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -3612 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-639 |#4|) (-639 |#5|) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) (-766))) (-15 -4208 ((-1150) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)))) (-15 -4192 ((-1261) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-766))))
-((-4079 (((-112) |#5| $) 20)) (-3513 (((-112) |#5| $) 23)) (-2764 (((-112) |#5| $) 16) (((-112) $) 44)) (-4376 (((-639 $) |#5| $) NIL) (((-639 $) (-639 |#5|) $) 76) (((-639 $) (-639 |#5|) (-639 $)) 74) (((-639 $) |#5| (-639 $)) 77)) (-1353 (($ $ |#5|) NIL) (((-639 $) |#5| $) NIL) (((-639 $) |#5| (-639 $)) 59) (((-639 $) (-639 |#5|) $) 61) (((-639 $) (-639 |#5|) (-639 $)) 63)) (-1612 (((-639 $) |#5| $) NIL) (((-639 $) |#5| (-639 $)) 53) (((-639 $) (-639 |#5|) $) 55) (((-639 $) (-639 |#5|) (-639 $)) 57)) (-4211 (((-112) |#5| $) 26)))
-(((-1063 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1353 ((-639 |#1|) (-639 |#5|) (-639 |#1|))) (-15 -1353 ((-639 |#1|) (-639 |#5|) |#1|)) (-15 -1353 ((-639 |#1|) |#5| (-639 |#1|))) (-15 -1353 ((-639 |#1|) |#5| |#1|)) (-15 -1612 ((-639 |#1|) (-639 |#5|) (-639 |#1|))) (-15 -1612 ((-639 |#1|) (-639 |#5|) |#1|)) (-15 -1612 ((-639 |#1|) |#5| (-639 |#1|))) (-15 -1612 ((-639 |#1|) |#5| |#1|)) (-15 -4376 ((-639 |#1|) |#5| (-639 |#1|))) (-15 -4376 ((-639 |#1|) (-639 |#5|) (-639 |#1|))) (-15 -4376 ((-639 |#1|) (-639 |#5|) |#1|)) (-15 -4376 ((-639 |#1|) |#5| |#1|)) (-15 -3513 ((-112) |#5| |#1|)) (-15 -2764 ((-112) |#1|)) (-15 -4211 ((-112) |#5| |#1|)) (-15 -4079 ((-112) |#5| |#1|)) (-15 -2764 ((-112) |#5| |#1|)) (-15 -1353 (|#1| |#1| |#5|))) (-1064 |#2| |#3| |#4| |#5|) (-451) (-788) (-845) (-1058 |#2| |#3| |#4|)) (T -1063))
-NIL
-(-10 -8 (-15 -1353 ((-639 |#1|) (-639 |#5|) (-639 |#1|))) (-15 -1353 ((-639 |#1|) (-639 |#5|) |#1|)) (-15 -1353 ((-639 |#1|) |#5| (-639 |#1|))) (-15 -1353 ((-639 |#1|) |#5| |#1|)) (-15 -1612 ((-639 |#1|) (-639 |#5|) (-639 |#1|))) (-15 -1612 ((-639 |#1|) (-639 |#5|) |#1|)) (-15 -1612 ((-639 |#1|) |#5| (-639 |#1|))) (-15 -1612 ((-639 |#1|) |#5| |#1|)) (-15 -4376 ((-639 |#1|) |#5| (-639 |#1|))) (-15 -4376 ((-639 |#1|) (-639 |#5|) (-639 |#1|))) (-15 -4376 ((-639 |#1|) (-639 |#5|) |#1|)) (-15 -4376 ((-639 |#1|) |#5| |#1|)) (-15 -3513 ((-112) |#5| |#1|)) (-15 -2764 ((-112) |#1|)) (-15 -4211 ((-112) |#5| |#1|)) (-15 -4079 ((-112) |#5| |#1|)) (-15 -2764 ((-112) |#5| |#1|)) (-15 -1353 (|#1| |#1| |#5|)))
-((-4041 (((-112) $ $) 7)) (-2560 (((-639 (-2 (|:| -1450 $) (|:| -3316 (-639 |#4|)))) (-639 |#4|)) 85)) (-2304 (((-639 $) (-639 |#4|)) 86) (((-639 $) (-639 |#4|) (-112)) 111)) (-1402 (((-639 |#3|) $) 33)) (-4170 (((-112) $) 26)) (-4274 (((-112) $) 17 (|has| |#1| (-554)))) (-4377 (((-112) |#4| $) 101) (((-112) $) 97)) (-3049 ((|#4| |#4| $) 92)) (-2798 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 $))) |#4| $) 126)) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |#3|) 27)) (-4336 (((-112) $ (-766)) 44)) (-3556 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4402))) (((-3 |#4| "failed") $ |#3|) 79)) (-1800 (($) 45 T CONST)) (-2207 (((-112) $) 22 (|has| |#1| (-554)))) (-1920 (((-112) $ $) 24 (|has| |#1| (-554)))) (-3852 (((-112) $ $) 23 (|has| |#1| (-554)))) (-2539 (((-112) $) 25 (|has| |#1| (-554)))) (-2839 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3884 (((-639 |#4|) (-639 |#4|) $) 18 (|has| |#1| (-554)))) (-2540 (((-639 |#4|) (-639 |#4|) $) 19 (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 36)) (-3961 (($ (-639 |#4|)) 35)) (-1434 (((-3 $ "failed") $) 82)) (-2387 ((|#4| |#4| $) 89)) (-1459 (($ $) 68 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#4| $) 67 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4402)))) (-2264 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-554)))) (-4091 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3595 ((|#4| |#4| $) 87)) (-1955 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4402))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4402))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2267 (((-2 (|:| -1450 (-639 |#4|)) (|:| -3316 (-639 |#4|))) $) 105)) (-4079 (((-112) |#4| $) 136)) (-3513 (((-112) |#4| $) 133)) (-2764 (((-112) |#4| $) 137) (((-112) $) 134)) (-1720 (((-639 |#4|) $) 52 (|has| $ (-6 -4402)))) (-2573 (((-112) |#4| $) 104) (((-112) $) 103)) (-4339 ((|#3| $) 34)) (-3292 (((-112) $ (-766)) 43)) (-1912 (((-639 |#4|) $) 53 (|has| $ (-6 -4402)))) (-1669 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#4| |#4|) $) 47)) (-3754 (((-639 |#3|) $) 32)) (-2071 (((-112) |#3| $) 31)) (-3289 (((-112) $ (-766)) 42)) (-2913 (((-1150) $) 9)) (-1609 (((-3 |#4| (-639 $)) |#4| |#4| $) 128)) (-1851 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 $))) |#4| |#4| $) 127)) (-1504 (((-3 |#4| "failed") $) 83)) (-1814 (((-639 $) |#4| $) 129)) (-1950 (((-3 (-112) (-639 $)) |#4| $) 132)) (-2021 (((-639 (-2 (|:| |val| (-112)) (|:| -1495 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-4376 (((-639 $) |#4| $) 125) (((-639 $) (-639 |#4|) $) 124) (((-639 $) (-639 |#4|) (-639 $)) 123) (((-639 $) |#4| (-639 $)) 122)) (-1430 (($ |#4| $) 117) (($ (-639 |#4|) $) 116)) (-3576 (((-639 |#4|) $) 107)) (-2890 (((-112) |#4| $) 99) (((-112) $) 95)) (-1849 ((|#4| |#4| $) 90)) (-1408 (((-112) $ $) 110)) (-3725 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-554)))) (-2766 (((-112) |#4| $) 100) (((-112) $) 96)) (-1532 ((|#4| |#4| $) 91)) (-1709 (((-1112) $) 10)) (-1421 (((-3 |#4| "failed") $) 84)) (-3251 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3310 (((-3 $ "failed") $ |#4|) 78)) (-1353 (($ $ |#4|) 77) (((-639 $) |#4| $) 115) (((-639 $) |#4| (-639 $)) 114) (((-639 $) (-639 |#4|) $) 113) (((-639 $) (-639 |#4|) (-639 $)) 112)) (-1763 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) 59 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) 57 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) 56 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-3336 (((-112) $ $) 38)) (-2974 (((-112) $) 41)) (-4307 (($) 40)) (-3598 (((-766) $) 106)) (-1723 (((-766) |#4| $) 54 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) (((-766) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4402)))) (-4220 (($ $) 39)) (-4208 (((-535) $) 69 (|has| |#4| (-610 (-535))))) (-4066 (($ (-639 |#4|)) 60)) (-1812 (($ $ |#3|) 28)) (-3274 (($ $ |#3|) 30)) (-3277 (($ $) 88)) (-1568 (($ $ |#3|) 29)) (-4054 (((-857) $) 11) (((-639 |#4|) $) 37)) (-3730 (((-766) $) 76 (|has| |#3| (-367)))) (-2652 (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-4252 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) 98)) (-1612 (((-639 $) |#4| $) 121) (((-639 $) |#4| (-639 $)) 120) (((-639 $) (-639 |#4|) $) 119) (((-639 $) (-639 |#4|) (-639 $)) 118)) (-1744 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4402)))) (-4089 (((-639 |#3|) $) 81)) (-4211 (((-112) |#4| $) 135)) (-3694 (((-112) |#3| $) 80)) (-1731 (((-112) $ $) 6)) (-3492 (((-766) $) 46 (|has| $ (-6 -4402)))))
+((-4211 (((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-639 |#4|) (-639 |#5|) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) (-766)) 95)) (-2846 (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766)) 56)) (-4192 (((-1261) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-766)) 87)) (-1930 (((-766) (-639 |#4|) (-639 |#5|)) 27)) (-3341 (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|) 59) (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766)) 58) (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766) (-112)) 60)) (-3758 (((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112) (-112) (-112) (-112)) 78) (((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112)) 79)) (-4208 (((-1150) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) 82)) (-2329 (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-112)) 55)) (-3608 (((-766) (-639 |#4|) (-639 |#5|)) 19)))
+(((-1062 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3608 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -1930 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -2329 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-112))) (-15 -2846 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766))) (-15 -2846 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|)) (-15 -3341 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766) (-112))) (-15 -3341 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766))) (-15 -3341 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|)) (-15 -3758 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -3758 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4211 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-639 |#4|) (-639 |#5|) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) (-766))) (-15 -4208 ((-1150) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)))) (-15 -4192 ((-1261) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-766)))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|)) (T -1062))
+((-4192 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1501 *9)))) (-5 *4 (-766)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-1261)) (-5 *1 (-1062 *5 *6 *7 *8 *9)))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1501 *8))) (-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1064 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1150)) (-5 *1 (-1062 *4 *5 *6 *7 *8)))) (-4211 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-639 *11)) (|:| |todo| (-639 (-2 (|:| |val| *3) (|:| -1501 *11)))))) (-5 *6 (-766)) (-5 *2 (-639 (-2 (|:| |val| (-639 *10)) (|:| -1501 *11)))) (-5 *3 (-639 *10)) (-5 *4 (-639 *11)) (-4 *10 (-1058 *7 *8 *9)) (-4 *11 (-1064 *7 *8 *9 *10)) (-4 *7 (-451)) (-4 *8 (-788)) (-4 *9 (-845)) (-5 *1 (-1062 *7 *8 *9 *10 *11)))) (-3758 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1062 *5 *6 *7 *8 *9)))) (-3758 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1062 *5 *6 *7 *8 *9)))) (-3341 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))))) (-5 *1 (-1062 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3341 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))))) (-5 *1 (-1062 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3)))) (-3341 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-766)) (-5 *6 (-112)) (-4 *7 (-451)) (-4 *8 (-788)) (-4 *9 (-845)) (-4 *3 (-1058 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))))) (-5 *1 (-1062 *7 *8 *9 *3 *4)) (-4 *4 (-1064 *7 *8 *9 *3)))) (-2846 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))))) (-5 *1 (-1062 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2846 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))))) (-5 *1 (-1062 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3)))) (-2329 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))))) (-5 *1 (-1062 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3)))) (-1930 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1062 *5 *6 *7 *8 *9)))) (-3608 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1062 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -3608 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -1930 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -2329 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-112))) (-15 -2846 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766))) (-15 -2846 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|)) (-15 -3341 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766) (-112))) (-15 -3341 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766))) (-15 -3341 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|)) (-15 -3758 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -3758 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4211 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-639 |#4|) (-639 |#5|) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) (-766))) (-15 -4208 ((-1150) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)))) (-15 -4192 ((-1261) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-766))))
+((-3189 (((-112) |#5| $) 20)) (-2633 (((-112) |#5| $) 23)) (-2813 (((-112) |#5| $) 16) (((-112) $) 44)) (-4169 (((-639 $) |#5| $) NIL) (((-639 $) (-639 |#5|) $) 76) (((-639 $) (-639 |#5|) (-639 $)) 74) (((-639 $) |#5| (-639 $)) 77)) (-4316 (($ $ |#5|) NIL) (((-639 $) |#5| $) NIL) (((-639 $) |#5| (-639 $)) 59) (((-639 $) (-639 |#5|) $) 61) (((-639 $) (-639 |#5|) (-639 $)) 63)) (-4125 (((-639 $) |#5| $) NIL) (((-639 $) |#5| (-639 $)) 53) (((-639 $) (-639 |#5|) $) 55) (((-639 $) (-639 |#5|) (-639 $)) 57)) (-1972 (((-112) |#5| $) 26)))
+(((-1063 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -4316 ((-639 |#1|) (-639 |#5|) (-639 |#1|))) (-15 -4316 ((-639 |#1|) (-639 |#5|) |#1|)) (-15 -4316 ((-639 |#1|) |#5| (-639 |#1|))) (-15 -4316 ((-639 |#1|) |#5| |#1|)) (-15 -4125 ((-639 |#1|) (-639 |#5|) (-639 |#1|))) (-15 -4125 ((-639 |#1|) (-639 |#5|) |#1|)) (-15 -4125 ((-639 |#1|) |#5| (-639 |#1|))) (-15 -4125 ((-639 |#1|) |#5| |#1|)) (-15 -4169 ((-639 |#1|) |#5| (-639 |#1|))) (-15 -4169 ((-639 |#1|) (-639 |#5|) (-639 |#1|))) (-15 -4169 ((-639 |#1|) (-639 |#5|) |#1|)) (-15 -4169 ((-639 |#1|) |#5| |#1|)) (-15 -2633 ((-112) |#5| |#1|)) (-15 -2813 ((-112) |#1|)) (-15 -1972 ((-112) |#5| |#1|)) (-15 -3189 ((-112) |#5| |#1|)) (-15 -2813 ((-112) |#5| |#1|)) (-15 -4316 (|#1| |#1| |#5|))) (-1064 |#2| |#3| |#4| |#5|) (-451) (-788) (-845) (-1058 |#2| |#3| |#4|)) (T -1063))
+NIL
+(-10 -8 (-15 -4316 ((-639 |#1|) (-639 |#5|) (-639 |#1|))) (-15 -4316 ((-639 |#1|) (-639 |#5|) |#1|)) (-15 -4316 ((-639 |#1|) |#5| (-639 |#1|))) (-15 -4316 ((-639 |#1|) |#5| |#1|)) (-15 -4125 ((-639 |#1|) (-639 |#5|) (-639 |#1|))) (-15 -4125 ((-639 |#1|) (-639 |#5|) |#1|)) (-15 -4125 ((-639 |#1|) |#5| (-639 |#1|))) (-15 -4125 ((-639 |#1|) |#5| |#1|)) (-15 -4169 ((-639 |#1|) |#5| (-639 |#1|))) (-15 -4169 ((-639 |#1|) (-639 |#5|) (-639 |#1|))) (-15 -4169 ((-639 |#1|) (-639 |#5|) |#1|)) (-15 -4169 ((-639 |#1|) |#5| |#1|)) (-15 -2633 ((-112) |#5| |#1|)) (-15 -2813 ((-112) |#1|)) (-15 -1972 ((-112) |#5| |#1|)) (-15 -3189 ((-112) |#5| |#1|)) (-15 -2813 ((-112) |#5| |#1|)) (-15 -4316 (|#1| |#1| |#5|)))
+((-4041 (((-112) $ $) 7)) (-1330 (((-639 (-2 (|:| -1449 $) (|:| -3315 (-639 |#4|)))) (-639 |#4|)) 85)) (-3672 (((-639 $) (-639 |#4|)) 86) (((-639 $) (-639 |#4|) (-112)) 111)) (-1401 (((-639 |#3|) $) 33)) (-2799 (((-112) $) 26)) (-4370 (((-112) $) 17 (|has| |#1| (-554)))) (-4177 (((-112) |#4| $) 101) (((-112) $) 97)) (-3623 ((|#4| |#4| $) 92)) (-1977 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 $))) |#4| $) 126)) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |#3|) 27)) (-3735 (((-112) $ (-766)) 44)) (-3556 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4403))) (((-3 |#4| "failed") $ |#3|) 79)) (-3329 (($) 45 T CONST)) (-2169 (((-112) $) 22 (|has| |#1| (-554)))) (-2183 (((-112) $ $) 24 (|has| |#1| (-554)))) (-2864 (((-112) $ $) 23 (|has| |#1| (-554)))) (-4219 (((-112) $) 25 (|has| |#1| (-554)))) (-4227 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-2037 (((-639 |#4|) (-639 |#4|) $) 18 (|has| |#1| (-554)))) (-4230 (((-639 |#4|) (-639 |#4|) $) 19 (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 36)) (-3960 (($ (-639 |#4|)) 35)) (-1434 (((-3 $ "failed") $) 82)) (-3255 ((|#4| |#4| $) 89)) (-1459 (($ $) 68 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#4| $) 67 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4403)))) (-1441 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-554)))) (-3300 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-2227 ((|#4| |#4| $) 87)) (-1954 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4403))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4403))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-1471 (((-2 (|:| -1449 (-639 |#4|)) (|:| -3315 (-639 |#4|))) $) 105)) (-3189 (((-112) |#4| $) 136)) (-2633 (((-112) |#4| $) 133)) (-2813 (((-112) |#4| $) 137) (((-112) $) 134)) (-1720 (((-639 |#4|) $) 52 (|has| $ (-6 -4403)))) (-1493 (((-112) |#4| $) 104) (((-112) $) 103)) (-3761 ((|#3| $) 34)) (-4172 (((-112) $ (-766)) 43)) (-2123 (((-639 |#4|) $) 53 (|has| $ (-6 -4403)))) (-1572 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#4| |#4|) $) 47)) (-3133 (((-639 |#3|) $) 32)) (-3112 (((-112) |#3| $) 31)) (-4147 (((-112) $ (-766)) 42)) (-3696 (((-1150) $) 9)) (-4093 (((-3 |#4| (-639 $)) |#4| |#4| $) 128)) (-2672 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 $))) |#4| |#4| $) 127)) (-1504 (((-3 |#4| "failed") $) 83)) (-2334 (((-639 $) |#4| $) 129)) (-4302 (((-3 (-112) (-639 $)) |#4| $) 132)) (-3792 (((-639 (-2 (|:| |val| (-112)) (|:| -1501 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-4169 (((-639 $) |#4| $) 125) (((-639 $) (-639 |#4|) $) 124) (((-639 $) (-639 |#4|) (-639 $)) 123) (((-639 $) |#4| (-639 $)) 122)) (-1997 (($ |#4| $) 117) (($ (-639 |#4|) $) 116)) (-2063 (((-639 |#4|) $) 107)) (-1645 (((-112) |#4| $) 99) (((-112) $) 95)) (-2651 ((|#4| |#4| $) 90)) (-1789 (((-112) $ $) 110)) (-4123 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-554)))) (-2830 (((-112) |#4| $) 100) (((-112) $) 96)) (-1630 ((|#4| |#4| $) 91)) (-1709 (((-1112) $) 10)) (-1421 (((-3 |#4| "failed") $) 84)) (-1963 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-4333 (((-3 $ "failed") $ |#4|) 78)) (-4316 (($ $ |#4|) 77) (((-639 $) |#4| $) 115) (((-639 $) |#4| (-639 $)) 114) (((-639 $) (-639 |#4|) $) 113) (((-639 $) (-639 |#4|) (-639 $)) 112)) (-3008 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) 59 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) 57 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) 56 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-1452 (((-112) $ $) 38)) (-3087 (((-112) $) 41)) (-1663 (($) 40)) (-2250 (((-766) $) 106)) (-1723 (((-766) |#4| $) 54 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) (((-766) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4403)))) (-4220 (($ $) 39)) (-4208 (((-535) $) 69 (|has| |#4| (-610 (-535))))) (-4064 (($ (-639 |#4|)) 60)) (-2316 (($ $ |#3|) 28)) (-2180 (($ $ |#3|) 30)) (-2209 (($ $) 88)) (-1962 (($ $ |#3|) 29)) (-4053 (((-857) $) 11) (((-639 |#4|) $) 37)) (-4157 (((-766) $) 76 (|has| |#3| (-367)))) (-4168 (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2350 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) 98)) (-4125 (((-639 $) |#4| $) 121) (((-639 $) |#4| (-639 $)) 120) (((-639 $) (-639 |#4|) $) 119) (((-639 $) (-639 |#4|) (-639 $)) 118)) (-2879 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4403)))) (-3278 (((-639 |#3|) $) 81)) (-1972 (((-112) |#4| $) 135)) (-3782 (((-112) |#3| $) 80)) (-1733 (((-112) $ $) 6)) (-3492 (((-766) $) 46 (|has| $ (-6 -4403)))))
(((-1064 |#1| |#2| |#3| |#4|) (-139) (-451) (-788) (-845) (-1058 |t#1| |t#2| |t#3|)) (T -1064))
-((-2764 (*1 *2 *3 *1) (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-4079 (*1 *2 *3 *1) (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-4211 (*1 *2 *3 *1) (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-2764 (*1 *2 *1) (-12 (-4 *1 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-3513 (*1 *2 *3 *1) (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-1950 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-3 (-112) (-639 *1))) (-4 *1 (-1064 *4 *5 *6 *3)))) (-2021 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1495 *1)))) (-4 *1 (-1064 *4 *5 *6 *3)))) (-2021 (*1 *2 *3 *1) (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-1814 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)))) (-1609 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-3 *3 (-639 *1))) (-4 *1 (-1064 *4 *5 *6 *3)))) (-1851 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *1)))) (-4 *1 (-1064 *4 *5 *6 *3)))) (-2798 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *1)))) (-4 *1 (-1064 *4 *5 *6 *3)))) (-4376 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)))) (-4376 (*1 *2 *3 *1) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *7)))) (-4376 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *1)) (-5 *3 (-639 *7)) (-4 *1 (-1064 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)))) (-4376 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)))) (-1612 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)))) (-1612 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)))) (-1612 (*1 *2 *3 *1) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *7)))) (-1612 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *1)) (-5 *3 (-639 *7)) (-4 *1 (-1064 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)))) (-1430 (*1 *1 *2 *1) (-12 (-4 *1 (-1064 *3 *4 *5 *2)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-1430 (*1 *1 *2 *1) (-12 (-5 *2 (-639 *6)) (-4 *1 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)))) (-1353 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)))) (-1353 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)))) (-1353 (*1 *2 *3 *1) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *7)))) (-1353 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *1)) (-5 *3 (-639 *7)) (-4 *1 (-1064 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)))) (-2304 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *5 *6 *7 *8)))))
-(-13 (-1200 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -2764 ((-112) |t#4| $)) (-15 -4079 ((-112) |t#4| $)) (-15 -4211 ((-112) |t#4| $)) (-15 -2764 ((-112) $)) (-15 -3513 ((-112) |t#4| $)) (-15 -1950 ((-3 (-112) (-639 $)) |t#4| $)) (-15 -2021 ((-639 (-2 (|:| |val| (-112)) (|:| -1495 $))) |t#4| $)) (-15 -2021 ((-112) |t#4| $)) (-15 -1814 ((-639 $) |t#4| $)) (-15 -1609 ((-3 |t#4| (-639 $)) |t#4| |t#4| $)) (-15 -1851 ((-639 (-2 (|:| |val| |t#4|) (|:| -1495 $))) |t#4| |t#4| $)) (-15 -2798 ((-639 (-2 (|:| |val| |t#4|) (|:| -1495 $))) |t#4| $)) (-15 -4376 ((-639 $) |t#4| $)) (-15 -4376 ((-639 $) (-639 |t#4|) $)) (-15 -4376 ((-639 $) (-639 |t#4|) (-639 $))) (-15 -4376 ((-639 $) |t#4| (-639 $))) (-15 -1612 ((-639 $) |t#4| $)) (-15 -1612 ((-639 $) |t#4| (-639 $))) (-15 -1612 ((-639 $) (-639 |t#4|) $)) (-15 -1612 ((-639 $) (-639 |t#4|) (-639 $))) (-15 -1430 ($ |t#4| $)) (-15 -1430 ($ (-639 |t#4|) $)) (-15 -1353 ((-639 $) |t#4| $)) (-15 -1353 ((-639 $) |t#4| (-639 $))) (-15 -1353 ((-639 $) (-639 |t#4|) $)) (-15 -1353 ((-639 $) (-639 |t#4|) (-639 $))) (-15 -2304 ((-639 $) (-639 |t#4|) (-112)))))
+((-2813 (*1 *2 *3 *1) (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-3189 (*1 *2 *3 *1) (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-1972 (*1 *2 *3 *1) (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-2813 (*1 *2 *1) (-12 (-4 *1 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-2633 (*1 *2 *3 *1) (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-4302 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-3 (-112) (-639 *1))) (-4 *1 (-1064 *4 *5 *6 *3)))) (-3792 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1501 *1)))) (-4 *1 (-1064 *4 *5 *6 *3)))) (-3792 (*1 *2 *3 *1) (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-2334 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)))) (-4093 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-3 *3 (-639 *1))) (-4 *1 (-1064 *4 *5 *6 *3)))) (-2672 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *1)))) (-4 *1 (-1064 *4 *5 *6 *3)))) (-1977 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *1)))) (-4 *1 (-1064 *4 *5 *6 *3)))) (-4169 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)))) (-4169 (*1 *2 *3 *1) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *7)))) (-4169 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *1)) (-5 *3 (-639 *7)) (-4 *1 (-1064 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)))) (-4169 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)))) (-4125 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)))) (-4125 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)))) (-4125 (*1 *2 *3 *1) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *7)))) (-4125 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *1)) (-5 *3 (-639 *7)) (-4 *1 (-1064 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)))) (-1997 (*1 *1 *2 *1) (-12 (-4 *1 (-1064 *3 *4 *5 *2)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-1997 (*1 *1 *2 *1) (-12 (-5 *2 (-639 *6)) (-4 *1 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)))) (-4316 (*1 *2 *3 *1) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)))) (-4316 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)))) (-4316 (*1 *2 *3 *1) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *7)))) (-4316 (*1 *2 *3 *2) (-12 (-5 *2 (-639 *1)) (-5 *3 (-639 *7)) (-4 *1 (-1064 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)))) (-3672 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1064 *5 *6 *7 *8)))))
+(-13 (-1200 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -2813 ((-112) |t#4| $)) (-15 -3189 ((-112) |t#4| $)) (-15 -1972 ((-112) |t#4| $)) (-15 -2813 ((-112) $)) (-15 -2633 ((-112) |t#4| $)) (-15 -4302 ((-3 (-112) (-639 $)) |t#4| $)) (-15 -3792 ((-639 (-2 (|:| |val| (-112)) (|:| -1501 $))) |t#4| $)) (-15 -3792 ((-112) |t#4| $)) (-15 -2334 ((-639 $) |t#4| $)) (-15 -4093 ((-3 |t#4| (-639 $)) |t#4| |t#4| $)) (-15 -2672 ((-639 (-2 (|:| |val| |t#4|) (|:| -1501 $))) |t#4| |t#4| $)) (-15 -1977 ((-639 (-2 (|:| |val| |t#4|) (|:| -1501 $))) |t#4| $)) (-15 -4169 ((-639 $) |t#4| $)) (-15 -4169 ((-639 $) (-639 |t#4|) $)) (-15 -4169 ((-639 $) (-639 |t#4|) (-639 $))) (-15 -4169 ((-639 $) |t#4| (-639 $))) (-15 -4125 ((-639 $) |t#4| $)) (-15 -4125 ((-639 $) |t#4| (-639 $))) (-15 -4125 ((-639 $) (-639 |t#4|) $)) (-15 -4125 ((-639 $) (-639 |t#4|) (-639 $))) (-15 -1997 ($ |t#4| $)) (-15 -1997 ($ (-639 |t#4|) $)) (-15 -4316 ((-639 $) |t#4| $)) (-15 -4316 ((-639 $) |t#4| (-639 $))) (-15 -4316 ((-639 $) (-639 |t#4|) $)) (-15 -4316 ((-639 $) (-639 |t#4|) (-639 $))) (-15 -3672 ((-639 $) (-639 |t#4|) (-112)))))
(((-34) . T) ((-102) . T) ((-609 (-639 |#4|)) . T) ((-609 (-857)) . T) ((-150 |#4|) . T) ((-610 (-535)) |has| |#4| (-610 (-535))) ((-308 |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))) ((-488 |#4|) . T) ((-513 |#4| |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))) ((-971 |#1| |#2| |#3| |#4|) . T) ((-1092) . T) ((-1200 |#1| |#2| |#3| |#4|) . T) ((-1207) . T))
-((-3764 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#5|) 81)) (-3719 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5|) 112)) (-2180 (((-639 |#5|) |#4| |#5|) 70)) (-2354 (((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|) 46) (((-112) |#4| |#5|) 53)) (-3739 (((-1261)) 37)) (-2511 (((-1261)) 26)) (-2245 (((-1261) (-1150) (-1150) (-1150)) 33)) (-4012 (((-1261) (-1150) (-1150) (-1150)) 22)) (-1473 (((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) |#4| |#4| |#5|) 95)) (-3191 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) |#3| (-112)) 106) (((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5| (-112) (-112)) 50)) (-4129 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5|) 101)))
-(((-1065 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4012 ((-1261) (-1150) (-1150) (-1150))) (-15 -2511 ((-1261))) (-15 -2245 ((-1261) (-1150) (-1150) (-1150))) (-15 -3739 ((-1261))) (-15 -1473 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) |#4| |#4| |#5|)) (-15 -3191 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3191 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) |#3| (-112))) (-15 -4129 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5|)) (-15 -3719 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5|)) (-15 -2354 ((-112) |#4| |#5|)) (-15 -2354 ((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|)) (-15 -2180 ((-639 |#5|) |#4| |#5|)) (-15 -3764 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#5|))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|)) (T -1065))
-((-3764 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4)))) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2180 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4)) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2354 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1495 *4)))) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2354 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3719 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4)))) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-4129 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4)))) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3191 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1495 *9)))) (-5 *5 (-112)) (-4 *8 (-1058 *6 *7 *4)) (-4 *9 (-1064 *6 *7 *4 *8)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *4 (-845)) (-5 *2 (-639 (-2 (|:| |val| *8) (|:| -1495 *9)))) (-5 *1 (-1065 *6 *7 *4 *8 *9)))) (-3191 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4)))) (-5 *1 (-1065 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3)))) (-1473 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3739 (*1 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261)) (-5 *1 (-1065 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))) (-2245 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261)) (-5 *1 (-1065 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-2511 (*1 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261)) (-5 *1 (-1065 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))) (-4012 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261)) (-5 *1 (-1065 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
-(-10 -7 (-15 -4012 ((-1261) (-1150) (-1150) (-1150))) (-15 -2511 ((-1261))) (-15 -2245 ((-1261) (-1150) (-1150) (-1150))) (-15 -3739 ((-1261))) (-15 -1473 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) |#4| |#4| |#5|)) (-15 -3191 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3191 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) |#3| (-112))) (-15 -4129 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5|)) (-15 -3719 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5|)) (-15 -2354 ((-112) |#4| |#5|)) (-15 -2354 ((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|)) (-15 -2180 ((-639 |#5|) |#4| |#5|)) (-15 -3764 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#5|)))
-((-4041 (((-112) $ $) NIL)) (-4084 (((-1206) $) 13)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1743 (((-1127) $) 10)) (-4054 (((-857) $) 22) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-3217 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#5|) 81)) (-4054 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5|) 112)) (-1878 (((-639 |#5|) |#4| |#5|) 70)) (-2939 (((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|) 46) (((-112) |#4| |#5|) 53)) (-3005 (((-1261)) 37)) (-2125 (((-1261)) 26)) (-4354 (((-1261) (-1150) (-1150) (-1150)) 33)) (-3845 (((-1261) (-1150) (-1150) (-1150)) 22)) (-2424 (((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) |#4| |#4| |#5|) 95)) (-2580 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) |#3| (-112)) 106) (((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5| (-112) (-112)) 50)) (-2497 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5|) 101)))
+(((-1065 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3845 ((-1261) (-1150) (-1150) (-1150))) (-15 -2125 ((-1261))) (-15 -4354 ((-1261) (-1150) (-1150) (-1150))) (-15 -3005 ((-1261))) (-15 -2424 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) |#4| |#4| |#5|)) (-15 -2580 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2580 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) |#3| (-112))) (-15 -2497 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5|)) (-15 -4054 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5|)) (-15 -2939 ((-112) |#4| |#5|)) (-15 -2939 ((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|)) (-15 -1878 ((-639 |#5|) |#4| |#5|)) (-15 -3217 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#5|))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|)) (T -1065))
+((-3217 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4)))) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-1878 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4)) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2939 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1501 *4)))) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2939 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-4054 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4)))) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2497 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4)))) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2580 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1501 *9)))) (-5 *5 (-112)) (-4 *8 (-1058 *6 *7 *4)) (-4 *9 (-1064 *6 *7 *4 *8)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *4 (-845)) (-5 *2 (-639 (-2 (|:| |val| *8) (|:| -1501 *9)))) (-5 *1 (-1065 *6 *7 *4 *8 *9)))) (-2580 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4)))) (-5 *1 (-1065 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3)))) (-2424 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))) (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3005 (*1 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261)) (-5 *1 (-1065 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))) (-4354 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261)) (-5 *1 (-1065 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-2125 (*1 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261)) (-5 *1 (-1065 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))) (-3845 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261)) (-5 *1 (-1065 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
+(-10 -7 (-15 -3845 ((-1261) (-1150) (-1150) (-1150))) (-15 -2125 ((-1261))) (-15 -4354 ((-1261) (-1150) (-1150) (-1150))) (-15 -3005 ((-1261))) (-15 -2424 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) |#4| |#4| |#5|)) (-15 -2580 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2580 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) |#3| (-112))) (-15 -2497 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5|)) (-15 -4054 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5|)) (-15 -2939 ((-112) |#4| |#5|)) (-15 -2939 ((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|)) (-15 -1878 ((-639 |#5|) |#4| |#5|)) (-15 -3217 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#5|)))
+((-4041 (((-112) $ $) NIL)) (-4084 (((-1206) $) 13)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1743 (((-1127) $) 10)) (-4053 (((-857) $) 22) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-1066) (-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $)) (-15 -4084 ((-1206) $))))) (T -1066))
((-1743 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1066)))) (-4084 (*1 *2 *1) (-12 (-5 *2 (-1206)) (-5 *1 (-1066)))))
(-13 (-1075) (-10 -8 (-15 -1743 ((-1127) $)) (-15 -4084 ((-1206) $))))
-((-4041 (((-112) $ $) NIL)) (-3254 (((-1168) $) 8)) (-2913 (((-1150) $) 16)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 11)) (-1731 (((-112) $ $) 13)))
-(((-1067 |#1|) (-13 (-1092) (-10 -8 (-15 -3254 ((-1168) $)))) (-1168)) (T -1067))
-((-3254 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1067 *3)) (-14 *3 *2))))
-(-13 (-1092) (-10 -8 (-15 -3254 ((-1168) $))))
-((-4041 (((-112) $ $) NIL)) (-3171 (($ $ (-639 (-1168)) (-1 (-112) (-639 |#3|))) 33)) (-2587 (($ |#3| |#3|) 22) (($ |#3| |#3| (-639 (-1168))) 20)) (-4328 ((|#3| $) 13)) (-4048 (((-3 (-293 |#3|) "failed") $) 58)) (-3961 (((-293 |#3|) $) NIL)) (-2368 (((-639 (-1168)) $) 16)) (-3838 (((-887 |#1|) $) 11)) (-4316 ((|#3| $) 12)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2343 ((|#3| $ |#3|) 27) ((|#3| $ |#3| (-916)) 39)) (-4054 (((-857) $) 86) (($ (-293 |#3|)) 21)) (-1731 (((-112) $ $) 36)))
-(((-1068 |#1| |#2| |#3|) (-13 (-1092) (-285 |#3| |#3|) (-1033 (-293 |#3|)) (-10 -8 (-15 -2587 ($ |#3| |#3|)) (-15 -2587 ($ |#3| |#3| (-639 (-1168)))) (-15 -3171 ($ $ (-639 (-1168)) (-1 (-112) (-639 |#3|)))) (-15 -3838 ((-887 |#1|) $)) (-15 -4316 (|#3| $)) (-15 -4328 (|#3| $)) (-15 -2343 (|#3| $ |#3| (-916))) (-15 -2368 ((-639 (-1168)) $)))) (-1092) (-13 (-1044) (-881 |#1|) (-845) (-610 (-887 |#1|))) (-13 (-429 |#2|) (-881 |#1|) (-610 (-887 |#1|)))) (T -1068))
-((-2587 (*1 *1 *2 *2) (-12 (-4 *3 (-1092)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3)))) (-5 *1 (-1068 *3 *4 *2)) (-4 *2 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))))) (-2587 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-639 (-1168))) (-4 *4 (-1092)) (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4)))) (-5 *1 (-1068 *4 *5 *2)) (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))))) (-3171 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-1 (-112) (-639 *6))) (-4 *6 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))) (-4 *4 (-1092)) (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4)))) (-5 *1 (-1068 *4 *5 *6)))) (-3838 (*1 *2 *1) (-12 (-4 *3 (-1092)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 *2))) (-5 *2 (-887 *3)) (-5 *1 (-1068 *3 *4 *5)) (-4 *5 (-13 (-429 *4) (-881 *3) (-610 *2))))) (-4316 (*1 *2 *1) (-12 (-4 *3 (-1092)) (-4 *2 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))) (-5 *1 (-1068 *3 *4 *2)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3)))))) (-4328 (*1 *2 *1) (-12 (-4 *3 (-1092)) (-4 *2 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))) (-5 *1 (-1068 *3 *4 *2)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3)))))) (-2343 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-916)) (-4 *4 (-1092)) (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4)))) (-5 *1 (-1068 *4 *5 *2)) (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))))) (-2368 (*1 *2 *1) (-12 (-4 *3 (-1092)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3)))) (-5 *2 (-639 (-1168))) (-5 *1 (-1068 *3 *4 *5)) (-4 *5 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))))))
-(-13 (-1092) (-285 |#3| |#3|) (-1033 (-293 |#3|)) (-10 -8 (-15 -2587 ($ |#3| |#3|)) (-15 -2587 ($ |#3| |#3| (-639 (-1168)))) (-15 -3171 ($ $ (-639 (-1168)) (-1 (-112) (-639 |#3|)))) (-15 -3838 ((-887 |#1|) $)) (-15 -4316 (|#3| $)) (-15 -4328 (|#3| $)) (-15 -2343 (|#3| $ |#3| (-916))) (-15 -2368 ((-639 (-1168)) $))))
-((-4041 (((-112) $ $) NIL)) (-3139 (($ (-639 (-1068 |#1| |#2| |#3|))) 13)) (-1575 (((-639 (-1068 |#1| |#2| |#3|)) $) 20)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2343 ((|#3| $ |#3|) 23) ((|#3| $ |#3| (-916)) 26)) (-4054 (((-857) $) 16)) (-1731 (((-112) $ $) 19)))
+((-4041 (((-112) $ $) NIL)) (-3253 (((-1168) $) 8)) (-3696 (((-1150) $) 16)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 11)) (-1733 (((-112) $ $) 13)))
+(((-1067 |#1|) (-13 (-1092) (-10 -8 (-15 -3253 ((-1168) $)))) (-1168)) (T -1067))
+((-3253 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1067 *3)) (-14 *3 *2))))
+(-13 (-1092) (-10 -8 (-15 -3253 ((-1168) $))))
+((-4041 (((-112) $ $) NIL)) (-3170 (($ $ (-639 (-1168)) (-1 (-112) (-639 |#3|))) 33)) (-2586 (($ |#3| |#3|) 22) (($ |#3| |#3| (-639 (-1168))) 20)) (-4330 ((|#3| $) 13)) (-4048 (((-3 (-293 |#3|) "failed") $) 58)) (-3960 (((-293 |#3|) $) NIL)) (-3063 (((-639 (-1168)) $) 16)) (-3838 (((-887 |#1|) $) 11)) (-4318 ((|#3| $) 12)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2343 ((|#3| $ |#3|) 27) ((|#3| $ |#3| (-916)) 39)) (-4053 (((-857) $) 86) (($ (-293 |#3|)) 21)) (-1733 (((-112) $ $) 36)))
+(((-1068 |#1| |#2| |#3|) (-13 (-1092) (-285 |#3| |#3|) (-1033 (-293 |#3|)) (-10 -8 (-15 -2586 ($ |#3| |#3|)) (-15 -2586 ($ |#3| |#3| (-639 (-1168)))) (-15 -3170 ($ $ (-639 (-1168)) (-1 (-112) (-639 |#3|)))) (-15 -3838 ((-887 |#1|) $)) (-15 -4318 (|#3| $)) (-15 -4330 (|#3| $)) (-15 -2343 (|#3| $ |#3| (-916))) (-15 -3063 ((-639 (-1168)) $)))) (-1092) (-13 (-1044) (-881 |#1|) (-845) (-610 (-887 |#1|))) (-13 (-429 |#2|) (-881 |#1|) (-610 (-887 |#1|)))) (T -1068))
+((-2586 (*1 *1 *2 *2) (-12 (-4 *3 (-1092)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3)))) (-5 *1 (-1068 *3 *4 *2)) (-4 *2 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))))) (-2586 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-639 (-1168))) (-4 *4 (-1092)) (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4)))) (-5 *1 (-1068 *4 *5 *2)) (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))))) (-3170 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-1 (-112) (-639 *6))) (-4 *6 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))) (-4 *4 (-1092)) (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4)))) (-5 *1 (-1068 *4 *5 *6)))) (-3838 (*1 *2 *1) (-12 (-4 *3 (-1092)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 *2))) (-5 *2 (-887 *3)) (-5 *1 (-1068 *3 *4 *5)) (-4 *5 (-13 (-429 *4) (-881 *3) (-610 *2))))) (-4318 (*1 *2 *1) (-12 (-4 *3 (-1092)) (-4 *2 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))) (-5 *1 (-1068 *3 *4 *2)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3)))))) (-4330 (*1 *2 *1) (-12 (-4 *3 (-1092)) (-4 *2 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))) (-5 *1 (-1068 *3 *4 *2)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3)))))) (-2343 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-916)) (-4 *4 (-1092)) (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4)))) (-5 *1 (-1068 *4 *5 *2)) (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))))) (-3063 (*1 *2 *1) (-12 (-4 *3 (-1092)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3)))) (-5 *2 (-639 (-1168))) (-5 *1 (-1068 *3 *4 *5)) (-4 *5 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))))))
+(-13 (-1092) (-285 |#3| |#3|) (-1033 (-293 |#3|)) (-10 -8 (-15 -2586 ($ |#3| |#3|)) (-15 -2586 ($ |#3| |#3| (-639 (-1168)))) (-15 -3170 ($ $ (-639 (-1168)) (-1 (-112) (-639 |#3|)))) (-15 -3838 ((-887 |#1|) $)) (-15 -4318 (|#3| $)) (-15 -4330 (|#3| $)) (-15 -2343 (|#3| $ |#3| (-916))) (-15 -3063 ((-639 (-1168)) $))))
+((-4041 (((-112) $ $) NIL)) (-3139 (($ (-639 (-1068 |#1| |#2| |#3|))) 13)) (-1575 (((-639 (-1068 |#1| |#2| |#3|)) $) 20)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2343 ((|#3| $ |#3|) 23) ((|#3| $ |#3| (-916)) 26)) (-4053 (((-857) $) 16)) (-1733 (((-112) $ $) 19)))
(((-1069 |#1| |#2| |#3|) (-13 (-1092) (-285 |#3| |#3|) (-10 -8 (-15 -3139 ($ (-639 (-1068 |#1| |#2| |#3|)))) (-15 -1575 ((-639 (-1068 |#1| |#2| |#3|)) $)) (-15 -2343 (|#3| $ |#3| (-916))))) (-1092) (-13 (-1044) (-881 |#1|) (-845) (-610 (-887 |#1|))) (-13 (-429 |#2|) (-881 |#1|) (-610 (-887 |#1|)))) (T -1069))
((-3139 (*1 *1 *2) (-12 (-5 *2 (-639 (-1068 *3 *4 *5))) (-4 *3 (-1092)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3)))) (-4 *5 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))) (-5 *1 (-1069 *3 *4 *5)))) (-1575 (*1 *2 *1) (-12 (-4 *3 (-1092)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3)))) (-5 *2 (-639 (-1068 *3 *4 *5))) (-5 *1 (-1069 *3 *4 *5)) (-4 *5 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))))) (-2343 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-916)) (-4 *4 (-1092)) (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4)))) (-5 *1 (-1069 *4 *5 *2)) (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))))))
(-13 (-1092) (-285 |#3| |#3|) (-10 -8 (-15 -3139 ($ (-639 (-1068 |#1| |#2| |#3|)))) (-15 -1575 ((-639 (-1068 |#1| |#2| |#3|)) $)) (-15 -2343 (|#3| $ |#3| (-916)))))
-((-2707 (((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112)) 74) (((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|))) 76) (((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112)) 75)))
-(((-1070 |#1| |#2|) (-10 -7 (-15 -2707 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112))) (-15 -2707 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)))) (-15 -2707 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112)))) (-13 (-306) (-146)) (-639 (-1168))) (T -1070))
-((-2707 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-5 *2 (-639 (-2 (|:| -1646 (-1164 *5)) (|:| -3593 (-639 (-947 *5)))))) (-5 *1 (-1070 *5 *6)) (-5 *3 (-639 (-947 *5))) (-14 *6 (-639 (-1168))))) (-2707 (*1 *2 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-5 *2 (-639 (-2 (|:| -1646 (-1164 *4)) (|:| -3593 (-639 (-947 *4)))))) (-5 *1 (-1070 *4 *5)) (-5 *3 (-639 (-947 *4))) (-14 *5 (-639 (-1168))))) (-2707 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-5 *2 (-639 (-2 (|:| -1646 (-1164 *5)) (|:| -3593 (-639 (-947 *5)))))) (-5 *1 (-1070 *5 *6)) (-5 *3 (-639 (-947 *5))) (-14 *6 (-639 (-1168))))))
-(-10 -7 (-15 -2707 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112))) (-15 -2707 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)))) (-15 -2707 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112))))
+((-3437 (((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112)) 74) (((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|))) 76) (((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112)) 75)))
+(((-1070 |#1| |#2|) (-10 -7 (-15 -3437 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112))) (-15 -3437 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)))) (-15 -3437 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112)))) (-13 (-306) (-146)) (-639 (-1168))) (T -1070))
+((-3437 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-5 *2 (-639 (-2 (|:| -1333 (-1164 *5)) (|:| -2205 (-639 (-947 *5)))))) (-5 *1 (-1070 *5 *6)) (-5 *3 (-639 (-947 *5))) (-14 *6 (-639 (-1168))))) (-3437 (*1 *2 *3) (-12 (-4 *4 (-13 (-306) (-146))) (-5 *2 (-639 (-2 (|:| -1333 (-1164 *4)) (|:| -2205 (-639 (-947 *4)))))) (-5 *1 (-1070 *4 *5)) (-5 *3 (-639 (-947 *4))) (-14 *5 (-639 (-1168))))) (-3437 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-5 *2 (-639 (-2 (|:| -1333 (-1164 *5)) (|:| -2205 (-639 (-947 *5)))))) (-5 *1 (-1070 *5 *6)) (-5 *3 (-639 (-947 *5))) (-14 *6 (-639 (-1168))))))
+(-10 -7 (-15 -3437 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112))) (-15 -3437 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)))) (-15 -3437 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112))))
((-1635 (((-417 |#3|) |#3|) 18)))
(((-1071 |#1| |#2| |#3|) (-10 -7 (-15 -1635 ((-417 |#3|) |#3|))) (-1232 (-406 (-562))) (-13 (-362) (-146) (-719 (-406 (-562)) |#1|)) (-1232 |#2|)) (T -1071))
((-1635 (*1 *2 *3) (-12 (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-13 (-362) (-146) (-719 (-406 (-562)) *4))) (-5 *2 (-417 *3)) (-5 *1 (-1071 *4 *5 *3)) (-4 *3 (-1232 *5)))))
(-10 -7 (-15 -1635 ((-417 |#3|) |#3|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 126)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-362)))) (-2796 (($ $) NIL (|has| |#1| (-362)))) (-4370 (((-112) $) NIL (|has| |#1| (-362)))) (-1636 (((-683 |#1|) (-1256 $)) NIL) (((-683 |#1|)) 115)) (-1748 ((|#1| $) 119)) (-3984 (((-1180 (-916) (-766)) (-562)) NIL (|has| |#1| (-348)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL (|has| |#1| (-362)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-362)))) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-1382 (((-766)) 40 (|has| |#1| (-367)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-4018 (($ (-1256 |#1|) (-1256 $)) NIL) (($ (-1256 |#1|)) 43)) (-2370 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-348)))) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1958 (((-683 |#1|) $ (-1256 $)) NIL) (((-683 |#1|) $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 106) (((-683 |#1|) (-683 $)) 101)) (-1955 (($ |#2|) 61) (((-3 $ "failed") (-406 |#2|)) NIL (|has| |#1| (-362)))) (-3668 (((-3 $ "failed") $) NIL)) (-2173 (((-916)) 77)) (-1448 (($) 44 (|has| |#1| (-367)))) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-3529 (($) NIL (|has| |#1| (-348)))) (-1322 (((-112) $) NIL (|has| |#1| (-348)))) (-3589 (($ $ (-766)) NIL (|has| |#1| (-348))) (($ $) NIL (|has| |#1| (-348)))) (-2717 (((-112) $) NIL (|has| |#1| (-362)))) (-1900 (((-916) $) NIL (|has| |#1| (-348))) (((-828 (-916)) $) NIL (|has| |#1| (-348)))) (-1957 (((-112) $) NIL)) (-2247 ((|#1| $) NIL)) (-3699 (((-3 $ "failed") $) NIL (|has| |#1| (-348)))) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1565 ((|#2| $) 84 (|has| |#1| (-362)))) (-1999 (((-916) $) 130 (|has| |#1| (-367)))) (-1943 ((|#2| $) 58)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-3729 (($) NIL (|has| |#1| (-348)) CONST)) (-2466 (($ (-916)) 125 (|has| |#1| (-367)))) (-1709 (((-1112) $) NIL)) (-3148 (($) 121)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-3233 (((-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))) NIL (|has| |#1| (-348)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1577 (((-766) $) NIL (|has| |#1| (-362)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-2455 ((|#1| (-1256 $)) NIL) ((|#1|) 109)) (-3362 (((-766) $) NIL (|has| |#1| (-348))) (((-3 (-766) "failed") $ $) NIL (|has| |#1| (-348)))) (-4029 (($ $) NIL (-4037 (-12 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-766)) NIL (-4037 (-12 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-1 |#1| |#1|) (-766)) NIL (|has| |#1| (-362))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-362)))) (-3187 (((-683 |#1|) (-1256 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-362)))) (-2096 ((|#2|) 73)) (-2283 (($) NIL (|has| |#1| (-348)))) (-3593 (((-1256 |#1|) $ (-1256 $)) 89) (((-683 |#1|) (-1256 $) (-1256 $)) NIL) (((-1256 |#1|) $) 71) (((-683 |#1|) (-1256 $)) 85)) (-4208 (((-1256 |#1|) $) NIL) (($ (-1256 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-348)))) (-4054 (((-857) $) 57) (($ (-562)) 53) (($ |#1|) 54) (($ $) NIL (|has| |#1| (-362))) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-362)) (|has| |#1| (-1033 (-406 (-562))))))) (-2805 (($ $) NIL (|has| |#1| (-348))) (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-3376 ((|#2| $) 82)) (-2579 (((-766)) 75)) (-3928 (((-1256 $)) 81)) (-2922 (((-112) $ $) NIL (|has| |#1| (-362)))) (-2286 (($) 30 T CONST)) (-2294 (($) 19 T CONST)) (-3114 (($ $) NIL (-4037 (-12 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-766)) NIL (-4037 (-12 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-1 |#1| |#1|) (-766)) NIL (|has| |#1| (-362))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-362)))) (-1731 (((-112) $ $) 63)) (-1859 (($ $ $) NIL (|has| |#1| (-362)))) (-1848 (($ $) 67) (($ $ $) NIL)) (-1835 (($ $ $) 65)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 51) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 48) (($ (-406 (-562)) $) NIL (|has| |#1| (-362))) (($ $ (-406 (-562))) NIL (|has| |#1| (-362)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 126)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-362)))) (-1965 (($ $) NIL (|has| |#1| (-362)))) (-4102 (((-112) $) NIL (|has| |#1| (-362)))) (-4342 (((-683 |#1|) (-1256 $)) NIL) (((-683 |#1|)) 115)) (-1748 ((|#1| $) 119)) (-1755 (((-1180 (-916) (-766)) (-562)) NIL (|has| |#1| (-348)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL (|has| |#1| (-362)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-1382 (((-766)) 40 (|has| |#1| (-367)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-3916 (($ (-1256 |#1|) (-1256 $)) NIL) (($ (-1256 |#1|)) 43)) (-3082 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-348)))) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-4376 (((-683 |#1|) $ (-1256 $)) NIL) (((-683 |#1|) $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 106) (((-683 |#1|) (-683 $)) 101)) (-1954 (($ |#2|) 61) (((-3 $ "failed") (-406 |#2|)) NIL (|has| |#1| (-362)))) (-1694 (((-3 $ "failed") $) NIL)) (-2172 (((-916)) 77)) (-1447 (($) 44 (|has| |#1| (-367)))) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-2787 (($) NIL (|has| |#1| (-348)))) (-1844 (((-112) $) NIL (|has| |#1| (-348)))) (-2184 (($ $ (-766)) NIL (|has| |#1| (-348))) (($ $) NIL (|has| |#1| (-348)))) (-3521 (((-112) $) NIL (|has| |#1| (-362)))) (-1993 (((-916) $) NIL (|has| |#1| (-348))) (((-828 (-916)) $) NIL (|has| |#1| (-348)))) (-4367 (((-112) $) NIL)) (-4363 ((|#1| $) NIL)) (-3828 (((-3 $ "failed") $) NIL (|has| |#1| (-348)))) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1937 ((|#2| $) 84 (|has| |#1| (-362)))) (-3549 (((-916) $) 130 (|has| |#1| (-367)))) (-1942 ((|#2| $) 58)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-3730 (($) NIL (|has| |#1| (-348)) CONST)) (-2464 (($ (-916)) 125 (|has| |#1| (-367)))) (-1709 (((-1112) $) NIL)) (-3147 (($) 121)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1753 (((-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))) NIL (|has| |#1| (-348)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-2044 (((-766) $) NIL (|has| |#1| (-362)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-2736 ((|#1| (-1256 $)) NIL) ((|#1|) 109)) (-3543 (((-766) $) NIL (|has| |#1| (-348))) (((-3 (-766) "failed") $ $) NIL (|has| |#1| (-348)))) (-4029 (($ $) NIL (-4037 (-12 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-766)) NIL (-4037 (-12 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-1 |#1| |#1|) (-766)) NIL (|has| |#1| (-362))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-362)))) (-2539 (((-683 |#1|) (-1256 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-362)))) (-3371 ((|#2|) 73)) (-1653 (($) NIL (|has| |#1| (-348)))) (-2205 (((-1256 |#1|) $ (-1256 $)) 89) (((-683 |#1|) (-1256 $) (-1256 $)) NIL) (((-1256 |#1|) $) 71) (((-683 |#1|) (-1256 $)) 85)) (-4208 (((-1256 |#1|) $) NIL) (($ (-1256 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (|has| |#1| (-348)))) (-4053 (((-857) $) 57) (($ (-562)) 53) (($ |#1|) 54) (($ $) NIL (|has| |#1| (-362))) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-362)) (|has| |#1| (-1033 (-406 (-562))))))) (-2059 (($ $) NIL (|has| |#1| (-348))) (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-3683 ((|#2| $) 82)) (-1568 (((-766)) 75)) (-4291 (((-1256 $)) 81)) (-3799 (((-112) $ $) NIL (|has| |#1| (-362)))) (-2285 (($) 30 T CONST)) (-2294 (($) 19 T CONST)) (-3113 (($ $) NIL (-4037 (-12 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-766)) NIL (-4037 (-12 (|has| |#1| (-232)) (|has| |#1| (-362))) (|has| |#1| (-348)))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-362)) (|has| |#1| (-895 (-1168))))) (($ $ (-1 |#1| |#1|) (-766)) NIL (|has| |#1| (-362))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-362)))) (-1733 (((-112) $ $) 63)) (-1859 (($ $ $) NIL (|has| |#1| (-362)))) (-1847 (($ $) 67) (($ $ $) NIL)) (-1836 (($ $ $) 65)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 51) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 48) (($ (-406 (-562)) $) NIL (|has| |#1| (-362))) (($ $ (-406 (-562))) NIL (|has| |#1| (-362)))))
(((-1072 |#1| |#2| |#3|) (-719 |#1| |#2|) (-171) (-1232 |#1|) |#2|) (T -1072))
NIL
(-719 |#1| |#2|)
@@ -4395,32 +4395,32 @@ NIL
(((-1073 |#1| |#2| |#3|) (-10 -7 (-15 -1635 ((-417 |#3|) |#3|))) (-1232 (-406 (-947 (-562)))) (-13 (-362) (-146) (-719 (-406 (-947 (-562))) |#1|)) (-1232 |#2|)) (T -1073))
((-1635 (*1 *2 *3) (-12 (-4 *4 (-1232 (-406 (-947 (-562))))) (-4 *5 (-13 (-362) (-146) (-719 (-406 (-947 (-562))) *4))) (-5 *2 (-417 *3)) (-5 *1 (-1073 *4 *5 *3)) (-4 *3 (-1232 *5)))))
(-10 -7 (-15 -1635 ((-417 |#3|) |#3|)))
-((-4041 (((-112) $ $) NIL)) (-1551 (($ $ $) 14)) (-2993 (($ $ $) 15)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4349 (($) 6)) (-4208 (((-1168) $) 18)) (-4054 (((-857) $) 12)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 13)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 8)))
-(((-1074) (-13 (-845) (-610 (-1168)) (-10 -8 (-15 -4349 ($))))) (T -1074))
-((-4349 (*1 *1) (-5 *1 (-1074))))
-(-13 (-845) (-610 (-1168)) (-10 -8 (-15 -4349 ($))))
-((-4041 (((-112) $ $) 7)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-1173)) 16) (((-1173) $) 15)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) NIL)) (-1551 (($ $ $) 14)) (-2993 (($ $ $) 15)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3864 (($) 6)) (-4208 (((-1168) $) 18)) (-4053 (((-857) $) 12)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 13)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 8)))
+(((-1074) (-13 (-845) (-610 (-1168)) (-10 -8 (-15 -3864 ($))))) (T -1074))
+((-3864 (*1 *1) (-5 *1 (-1074))))
+(-13 (-845) (-610 (-1168)) (-10 -8 (-15 -3864 ($))))
+((-4041 (((-112) $ $) 7)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-1173)) 16) (((-1173) $) 15)) (-1733 (((-112) $ $) 6)))
(((-1075) (-139)) (T -1075))
NIL
(-13 (-93))
(((-93) . T) ((-102) . T) ((-612 #0=(-1173)) . T) ((-609 (-857)) . T) ((-609 #0#) . T) ((-489 #0#) . T) ((-1092) . T))
-((-4156 ((|#1| |#1| (-1 (-562) |#1| |#1|)) 23) ((|#1| |#1| (-1 (-112) |#1|)) 19)) (-3411 (((-1261)) 15)) (-1481 (((-639 |#1|)) 9)))
-(((-1076 |#1|) (-10 -7 (-15 -3411 ((-1261))) (-15 -1481 ((-639 |#1|))) (-15 -4156 (|#1| |#1| (-1 (-112) |#1|))) (-15 -4156 (|#1| |#1| (-1 (-562) |#1| |#1|)))) (-131)) (T -1076))
-((-4156 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-562) *2 *2)) (-4 *2 (-131)) (-5 *1 (-1076 *2)))) (-4156 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-131)) (-5 *1 (-1076 *2)))) (-1481 (*1 *2) (-12 (-5 *2 (-639 *3)) (-5 *1 (-1076 *3)) (-4 *3 (-131)))) (-3411 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1076 *3)) (-4 *3 (-131)))))
-(-10 -7 (-15 -3411 ((-1261))) (-15 -1481 ((-639 |#1|))) (-15 -4156 (|#1| |#1| (-1 (-112) |#1|))) (-15 -4156 (|#1| |#1| (-1 (-562) |#1| |#1|))))
-((-3167 (($ (-109) $) 16)) (-2174 (((-3 (-109) "failed") (-1168) $) 15)) (-4307 (($) 7)) (-4299 (($) 17)) (-2714 (($) 18)) (-2992 (((-639 (-174)) $) 10)) (-4054 (((-857) $) 21)))
-(((-1077) (-13 (-609 (-857)) (-10 -8 (-15 -4307 ($)) (-15 -2992 ((-639 (-174)) $)) (-15 -2174 ((-3 (-109) "failed") (-1168) $)) (-15 -3167 ($ (-109) $)) (-15 -4299 ($)) (-15 -2714 ($))))) (T -1077))
-((-4307 (*1 *1) (-5 *1 (-1077))) (-2992 (*1 *2 *1) (-12 (-5 *2 (-639 (-174))) (-5 *1 (-1077)))) (-2174 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-109)) (-5 *1 (-1077)))) (-3167 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1077)))) (-4299 (*1 *1) (-5 *1 (-1077))) (-2714 (*1 *1) (-5 *1 (-1077))))
-(-13 (-609 (-857)) (-10 -8 (-15 -4307 ($)) (-15 -2992 ((-639 (-174)) $)) (-15 -2174 ((-3 (-109) "failed") (-1168) $)) (-15 -3167 ($ (-109) $)) (-15 -4299 ($)) (-15 -2714 ($))))
-((-1902 (((-1256 (-683 |#1|)) (-639 (-683 |#1|))) 42) (((-1256 (-683 (-947 |#1|))) (-639 (-1168)) (-683 (-947 |#1|))) 62) (((-1256 (-683 (-406 (-947 |#1|)))) (-639 (-1168)) (-683 (-406 (-947 |#1|)))) 78)) (-3593 (((-1256 |#1|) (-683 |#1|) (-639 (-683 |#1|))) 36)))
-(((-1078 |#1|) (-10 -7 (-15 -1902 ((-1256 (-683 (-406 (-947 |#1|)))) (-639 (-1168)) (-683 (-406 (-947 |#1|))))) (-15 -1902 ((-1256 (-683 (-947 |#1|))) (-639 (-1168)) (-683 (-947 |#1|)))) (-15 -1902 ((-1256 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -3593 ((-1256 |#1|) (-683 |#1|) (-639 (-683 |#1|))))) (-362)) (T -1078))
-((-3593 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-683 *5))) (-5 *3 (-683 *5)) (-4 *5 (-362)) (-5 *2 (-1256 *5)) (-5 *1 (-1078 *5)))) (-1902 (*1 *2 *3) (-12 (-5 *3 (-639 (-683 *4))) (-4 *4 (-362)) (-5 *2 (-1256 (-683 *4))) (-5 *1 (-1078 *4)))) (-1902 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-1168))) (-4 *5 (-362)) (-5 *2 (-1256 (-683 (-947 *5)))) (-5 *1 (-1078 *5)) (-5 *4 (-683 (-947 *5))))) (-1902 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-1168))) (-4 *5 (-362)) (-5 *2 (-1256 (-683 (-406 (-947 *5))))) (-5 *1 (-1078 *5)) (-5 *4 (-683 (-406 (-947 *5)))))))
-(-10 -7 (-15 -1902 ((-1256 (-683 (-406 (-947 |#1|)))) (-639 (-1168)) (-683 (-406 (-947 |#1|))))) (-15 -1902 ((-1256 (-683 (-947 |#1|))) (-639 (-1168)) (-683 (-947 |#1|)))) (-15 -1902 ((-1256 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -3593 ((-1256 |#1|) (-683 |#1|) (-639 (-683 |#1|)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1880 (((-639 (-766)) $) NIL) (((-639 (-766)) $ (-1168)) NIL)) (-1929 (((-766) $) NIL) (((-766) $ (-1168)) NIL)) (-1402 (((-639 (-1080 (-1168))) $) NIL)) (-1599 (((-1164 $) $ (-1080 (-1168))) NIL) (((-1164 |#1|) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 (-1080 (-1168)))) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-2798 (($ $) NIL (|has| |#1| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3677 (($ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-1080 (-1168)) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL) (((-3 (-1117 |#1| (-1168)) "failed") $) NIL)) (-3961 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-1080 (-1168)) $) NIL) (((-1168) $) NIL) (((-1117 |#1| (-1168)) $) NIL)) (-2835 (($ $ $ (-1080 (-1168))) NIL (|has| |#1| (-171)))) (-1601 (($ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#1| (-451))) (($ $ (-1080 (-1168))) NIL (|has| |#1| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#1| (-904)))) (-3122 (($ $ |#1| (-530 (-1080 (-1168))) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1080 (-1168)) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1080 (-1168)) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1900 (((-766) $ (-1168)) NIL) (((-766) $) NIL)) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-1390 (($ (-1164 |#1|) (-1080 (-1168))) NIL) (($ (-1164 $) (-1080 (-1168))) NIL)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-530 (-1080 (-1168)))) NIL) (($ $ (-1080 (-1168)) (-766)) NIL) (($ $ (-639 (-1080 (-1168))) (-639 (-766))) NIL)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ (-1080 (-1168))) NIL)) (-2076 (((-530 (-1080 (-1168))) $) NIL) (((-766) $ (-1080 (-1168))) NIL) (((-639 (-766)) $ (-639 (-1080 (-1168)))) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2836 (($ (-1 (-530 (-1080 (-1168))) (-530 (-1080 (-1168)))) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-3603 (((-1 $ (-766)) (-1168)) NIL) (((-1 $ (-766)) $) NIL (|has| |#1| (-232)))) (-3372 (((-3 (-1080 (-1168)) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-3736 (((-1080 (-1168)) $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-2913 (((-1150) $) NIL)) (-3349 (((-112) $) NIL)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| (-1080 (-1168))) (|:| -1960 (-766))) "failed") $) NIL)) (-3592 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#1| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1080 (-1168)) |#1|) NIL) (($ $ (-639 (-1080 (-1168))) (-639 |#1|)) NIL) (($ $ (-1080 (-1168)) $) NIL) (($ $ (-639 (-1080 (-1168))) (-639 $)) NIL) (($ $ (-1168) $) NIL (|has| |#1| (-232))) (($ $ (-639 (-1168)) (-639 $)) NIL (|has| |#1| (-232))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-232))) (($ $ (-639 (-1168)) (-639 |#1|)) NIL (|has| |#1| (-232)))) (-2455 (($ $ (-1080 (-1168))) NIL (|has| |#1| (-171)))) (-4029 (($ $ (-1080 (-1168))) NIL) (($ $ (-639 (-1080 (-1168)))) NIL) (($ $ (-1080 (-1168)) (-766)) NIL) (($ $ (-639 (-1080 (-1168))) (-639 (-766))) NIL) (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4333 (((-639 (-1168)) $) NIL)) (-3598 (((-530 (-1080 (-1168))) $) NIL) (((-766) $ (-1080 (-1168))) NIL) (((-639 (-766)) $ (-639 (-1080 (-1168)))) NIL) (((-766) $ (-1168)) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-1080 (-1168)) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-1080 (-1168)) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-1080 (-1168)) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-3900 ((|#1| $) NIL (|has| |#1| (-451))) (($ $ (-1080 (-1168))) NIL (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-1080 (-1168))) NIL) (($ (-1168)) NIL) (($ (-1117 |#1| (-1168))) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-530 (-1080 (-1168)))) NIL) (($ $ (-1080 (-1168)) (-766)) NIL) (($ $ (-639 (-1080 (-1168))) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-1080 (-1168))) NIL) (($ $ (-639 (-1080 (-1168)))) NIL) (($ $ (-1080 (-1168)) (-766)) NIL) (($ $ (-639 (-1080 (-1168))) (-639 (-766))) NIL) (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-2675 ((|#1| |#1| (-1 (-562) |#1| |#1|)) 23) ((|#1| |#1| (-1 (-112) |#1|)) 19)) (-3411 (((-1261)) 15)) (-1481 (((-639 |#1|)) 9)))
+(((-1076 |#1|) (-10 -7 (-15 -3411 ((-1261))) (-15 -1481 ((-639 |#1|))) (-15 -2675 (|#1| |#1| (-1 (-112) |#1|))) (-15 -2675 (|#1| |#1| (-1 (-562) |#1| |#1|)))) (-131)) (T -1076))
+((-2675 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-562) *2 *2)) (-4 *2 (-131)) (-5 *1 (-1076 *2)))) (-2675 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-131)) (-5 *1 (-1076 *2)))) (-1481 (*1 *2) (-12 (-5 *2 (-639 *3)) (-5 *1 (-1076 *3)) (-4 *3 (-131)))) (-3411 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1076 *3)) (-4 *3 (-131)))))
+(-10 -7 (-15 -3411 ((-1261))) (-15 -1481 ((-639 |#1|))) (-15 -2675 (|#1| |#1| (-1 (-112) |#1|))) (-15 -2675 (|#1| |#1| (-1 (-562) |#1| |#1|))))
+((-2371 (($ (-109) $) 16)) (-1817 (((-3 (-109) "failed") (-1168) $) 15)) (-1663 (($) 7)) (-1569 (($) 17)) (-3494 (($) 18)) (-3246 (((-639 (-174)) $) 10)) (-4053 (((-857) $) 21)))
+(((-1077) (-13 (-609 (-857)) (-10 -8 (-15 -1663 ($)) (-15 -3246 ((-639 (-174)) $)) (-15 -1817 ((-3 (-109) "failed") (-1168) $)) (-15 -2371 ($ (-109) $)) (-15 -1569 ($)) (-15 -3494 ($))))) (T -1077))
+((-1663 (*1 *1) (-5 *1 (-1077))) (-3246 (*1 *2 *1) (-12 (-5 *2 (-639 (-174))) (-5 *1 (-1077)))) (-1817 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-109)) (-5 *1 (-1077)))) (-2371 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1077)))) (-1569 (*1 *1) (-5 *1 (-1077))) (-3494 (*1 *1) (-5 *1 (-1077))))
+(-13 (-609 (-857)) (-10 -8 (-15 -1663 ($)) (-15 -3246 ((-639 (-174)) $)) (-15 -1817 ((-3 (-109) "failed") (-1168) $)) (-15 -2371 ($ (-109) $)) (-15 -1569 ($)) (-15 -3494 ($))))
+((-2016 (((-1256 (-683 |#1|)) (-639 (-683 |#1|))) 42) (((-1256 (-683 (-947 |#1|))) (-639 (-1168)) (-683 (-947 |#1|))) 62) (((-1256 (-683 (-406 (-947 |#1|)))) (-639 (-1168)) (-683 (-406 (-947 |#1|)))) 78)) (-2205 (((-1256 |#1|) (-683 |#1|) (-639 (-683 |#1|))) 36)))
+(((-1078 |#1|) (-10 -7 (-15 -2016 ((-1256 (-683 (-406 (-947 |#1|)))) (-639 (-1168)) (-683 (-406 (-947 |#1|))))) (-15 -2016 ((-1256 (-683 (-947 |#1|))) (-639 (-1168)) (-683 (-947 |#1|)))) (-15 -2016 ((-1256 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -2205 ((-1256 |#1|) (-683 |#1|) (-639 (-683 |#1|))))) (-362)) (T -1078))
+((-2205 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-683 *5))) (-5 *3 (-683 *5)) (-4 *5 (-362)) (-5 *2 (-1256 *5)) (-5 *1 (-1078 *5)))) (-2016 (*1 *2 *3) (-12 (-5 *3 (-639 (-683 *4))) (-4 *4 (-362)) (-5 *2 (-1256 (-683 *4))) (-5 *1 (-1078 *4)))) (-2016 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-1168))) (-4 *5 (-362)) (-5 *2 (-1256 (-683 (-947 *5)))) (-5 *1 (-1078 *5)) (-5 *4 (-683 (-947 *5))))) (-2016 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-1168))) (-4 *5 (-362)) (-5 *2 (-1256 (-683 (-406 (-947 *5))))) (-5 *1 (-1078 *5)) (-5 *4 (-683 (-406 (-947 *5)))))))
+(-10 -7 (-15 -2016 ((-1256 (-683 (-406 (-947 |#1|)))) (-639 (-1168)) (-683 (-406 (-947 |#1|))))) (-15 -2016 ((-1256 (-683 (-947 |#1|))) (-639 (-1168)) (-683 (-947 |#1|)))) (-15 -2016 ((-1256 (-683 |#1|)) (-639 (-683 |#1|)))) (-15 -2205 ((-1256 |#1|) (-683 |#1|) (-639 (-683 |#1|)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1759 (((-639 (-766)) $) NIL) (((-639 (-766)) $ (-1168)) NIL)) (-2277 (((-766) $) NIL) (((-766) $ (-1168)) NIL)) (-1401 (((-639 (-1080 (-1168))) $) NIL)) (-1602 (((-1164 $) $ (-1080 (-1168))) NIL) (((-1164 |#1|) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 (-1080 (-1168)))) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1977 (($ $) NIL (|has| |#1| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3611 (($ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-1080 (-1168)) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL) (((-3 (-1117 |#1| (-1168)) "failed") $) NIL)) (-3960 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-1080 (-1168)) $) NIL) (((-1168) $) NIL) (((-1117 |#1| (-1168)) $) NIL)) (-2355 (($ $ $ (-1080 (-1168))) NIL (|has| |#1| (-171)))) (-1600 (($ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#1| (-451))) (($ $ (-1080 (-1168))) NIL (|has| |#1| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#1| (-904)))) (-3066 (($ $ |#1| (-530 (-1080 (-1168))) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1080 (-1168)) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1080 (-1168)) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1993 (((-766) $ (-1168)) NIL) (((-766) $) NIL)) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-1389 (($ (-1164 |#1|) (-1080 (-1168))) NIL) (($ (-1164 $) (-1080 (-1168))) NIL)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-530 (-1080 (-1168)))) NIL) (($ $ (-1080 (-1168)) (-766)) NIL) (($ $ (-639 (-1080 (-1168))) (-639 (-766))) NIL)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ (-1080 (-1168))) NIL)) (-3161 (((-530 (-1080 (-1168))) $) NIL) (((-766) $ (-1080 (-1168))) NIL) (((-639 (-766)) $ (-639 (-1080 (-1168)))) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2363 (($ (-1 (-530 (-1080 (-1168))) (-530 (-1080 (-1168)))) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2298 (((-1 $ (-766)) (-1168)) NIL) (((-1 $ (-766)) $) NIL (|has| |#1| (-232)))) (-3640 (((-3 (-1080 (-1168)) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-3736 (((-1080 (-1168)) $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3696 (((-1150) $) NIL)) (-1611 (((-112) $) NIL)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| (-1080 (-1168))) (|:| -1300 (-766))) "failed") $) NIL)) (-3592 (($ $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#1| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1080 (-1168)) |#1|) NIL) (($ $ (-639 (-1080 (-1168))) (-639 |#1|)) NIL) (($ $ (-1080 (-1168)) $) NIL) (($ $ (-639 (-1080 (-1168))) (-639 $)) NIL) (($ $ (-1168) $) NIL (|has| |#1| (-232))) (($ $ (-639 (-1168)) (-639 $)) NIL (|has| |#1| (-232))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-232))) (($ $ (-639 (-1168)) (-639 |#1|)) NIL (|has| |#1| (-232)))) (-2736 (($ $ (-1080 (-1168))) NIL (|has| |#1| (-171)))) (-4029 (($ $ (-1080 (-1168))) NIL) (($ $ (-639 (-1080 (-1168)))) NIL) (($ $ (-1080 (-1168)) (-766)) NIL) (($ $ (-639 (-1080 (-1168))) (-639 (-766))) NIL) (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3712 (((-639 (-1168)) $) NIL)) (-2250 (((-530 (-1080 (-1168))) $) NIL) (((-766) $ (-1080 (-1168))) NIL) (((-639 (-766)) $ (-639 (-1080 (-1168)))) NIL) (((-766) $ (-1168)) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-1080 (-1168)) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-1080 (-1168)) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-1080 (-1168)) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-2201 ((|#1| $) NIL (|has| |#1| (-451))) (($ $ (-1080 (-1168))) NIL (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-1080 (-1168))) NIL) (($ (-1168)) NIL) (($ (-1117 |#1| (-1168))) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-530 (-1080 (-1168)))) NIL) (($ $ (-1080 (-1168)) (-766)) NIL) (($ $ (-639 (-1080 (-1168))) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-1080 (-1168))) NIL) (($ $ (-639 (-1080 (-1168)))) NIL) (($ $ (-1080 (-1168)) (-766)) NIL) (($ $ (-639 (-1080 (-1168))) (-639 (-766))) NIL) (($ $) NIL (|has| |#1| (-232))) (($ $ (-766)) NIL (|has| |#1| (-232))) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-1079 |#1|) (-13 (-252 |#1| (-1168) (-1080 (-1168)) (-530 (-1080 (-1168)))) (-1033 (-1117 |#1| (-1168)))) (-1044)) (T -1079))
NIL
(-13 (-252 |#1| (-1168) (-1080 (-1168)) (-530 (-1080 (-1168)))) (-1033 (-1117 |#1| (-1168))))
-((-4041 (((-112) $ $) NIL)) (-1929 (((-766) $) NIL)) (-2444 ((|#1| $) 10)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3961 ((|#1| $) NIL)) (-1900 (((-766) $) 11)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3603 (($ |#1| (-766)) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4029 (($ $) NIL) (($ $ (-766)) NIL)) (-4054 (((-857) $) NIL) (($ |#1|) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 15)))
+((-4041 (((-112) $ $) NIL)) (-2277 (((-766) $) NIL)) (-2443 ((|#1| $) 10)) (-4048 (((-3 |#1| "failed") $) NIL)) (-3960 ((|#1| $) NIL)) (-1993 (((-766) $) 11)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-2298 (($ |#1| (-766)) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4029 (($ $) NIL) (($ $ (-766)) NIL)) (-4053 (((-857) $) NIL) (($ |#1|) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 15)))
(((-1080 |#1|) (-265 |#1|) (-845)) (T -1080))
NIL
(-265 |#1|)
@@ -4428,335 +4428,335 @@ NIL
(((-1081 |#1| |#2|) (-10 -7 (-15 -4152 ((-1086 |#2|) (-1 |#2| |#1|) (-1086 |#1|))) (IF (|has| |#1| (-843)) (-15 -4152 ((-639 |#2|) (-1 |#2| |#1|) (-1086 |#1|))) |%noBranch|)) (-1207) (-1207)) (T -1081))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1086 *5)) (-4 *5 (-843)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-639 *6)) (-5 *1 (-1081 *5 *6)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1086 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-1086 *6)) (-5 *1 (-1081 *5 *6)))))
(-10 -7 (-15 -4152 ((-1086 |#2|) (-1 |#2| |#1|) (-1086 |#1|))) (IF (|has| |#1| (-843)) (-15 -4152 ((-639 |#2|) (-1 |#2| |#1|) (-1086 |#1|))) |%noBranch|))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-2177 (((-639 (-1127)) $) 9)) (-1731 (((-112) $ $) NIL)))
-(((-1082) (-13 (-1075) (-10 -8 (-15 -2177 ((-639 (-1127)) $))))) (T -1082))
-((-2177 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-1082)))))
-(-13 (-1075) (-10 -8 (-15 -2177 ((-639 (-1127)) $))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1852 (((-639 (-1127)) $) 9)) (-1733 (((-112) $ $) NIL)))
+(((-1082) (-13 (-1075) (-10 -8 (-15 -1852 ((-639 (-1127)) $))))) (T -1082))
+((-1852 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-1082)))))
+(-13 (-1075) (-10 -8 (-15 -1852 ((-639 (-1127)) $))))
((-4152 (((-1084 |#2|) (-1 |#2| |#1|) (-1084 |#1|)) 19)))
(((-1083 |#1| |#2|) (-10 -7 (-15 -4152 ((-1084 |#2|) (-1 |#2| |#1|) (-1084 |#1|)))) (-1207) (-1207)) (T -1083))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1084 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-1084 *6)) (-5 *1 (-1083 *5 *6)))))
(-10 -7 (-15 -4152 ((-1084 |#2|) (-1 |#2| |#1|) (-1084 |#1|))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2444 (((-1168) $) 11)) (-2669 (((-1086 |#1|) $) 12)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3680 (($ (-1168) (-1086 |#1|)) 10)) (-4054 (((-857) $) 20 (|has| |#1| (-1092)))) (-1731 (((-112) $ $) 15 (|has| |#1| (-1092)))))
-(((-1084 |#1|) (-13 (-1207) (-10 -8 (-15 -3680 ($ (-1168) (-1086 |#1|))) (-15 -2444 ((-1168) $)) (-15 -2669 ((-1086 |#1|) $)) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|))) (-1207)) (T -1084))
-((-3680 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1086 *4)) (-4 *4 (-1207)) (-5 *1 (-1084 *4)))) (-2444 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1084 *3)) (-4 *3 (-1207)))) (-2669 (*1 *2 *1) (-12 (-5 *2 (-1086 *3)) (-5 *1 (-1084 *3)) (-4 *3 (-1207)))))
-(-13 (-1207) (-10 -8 (-15 -3680 ($ (-1168) (-1086 |#1|))) (-15 -2444 ((-1168) $)) (-15 -2669 ((-1086 |#1|) $)) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|)))
-((-2669 (($ |#1| |#1|) 8)) (-2010 ((|#1| $) 11)) (-1751 ((|#1| $) 13)) (-1766 (((-562) $) 9)) (-3712 ((|#1| $) 10)) (-2089 ((|#1| $) 12)) (-4208 (($ |#1|) 6)) (-3864 (($ |#1| |#1|) 15)) (-1483 (($ $ (-562)) 14)))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2443 (((-1168) $) 11)) (-2668 (((-1086 |#1|) $) 12)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3680 (($ (-1168) (-1086 |#1|)) 10)) (-4053 (((-857) $) 20 (|has| |#1| (-1092)))) (-1733 (((-112) $ $) 15 (|has| |#1| (-1092)))))
+(((-1084 |#1|) (-13 (-1207) (-10 -8 (-15 -3680 ($ (-1168) (-1086 |#1|))) (-15 -2443 ((-1168) $)) (-15 -2668 ((-1086 |#1|) $)) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|))) (-1207)) (T -1084))
+((-3680 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1086 *4)) (-4 *4 (-1207)) (-5 *1 (-1084 *4)))) (-2443 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1084 *3)) (-4 *3 (-1207)))) (-2668 (*1 *2 *1) (-12 (-5 *2 (-1086 *3)) (-5 *1 (-1084 *3)) (-4 *3 (-1207)))))
+(-13 (-1207) (-10 -8 (-15 -3680 ($ (-1168) (-1086 |#1|))) (-15 -2443 ((-1168) $)) (-15 -2668 ((-1086 |#1|) $)) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|)))
+((-2668 (($ |#1| |#1|) 8)) (-3665 ((|#1| $) 11)) (-1750 ((|#1| $) 13)) (-1765 (((-562) $) 9)) (-3979 ((|#1| $) 10)) (-2088 ((|#1| $) 12)) (-4208 (($ |#1|) 6)) (-3863 (($ |#1| |#1|) 15)) (-1483 (($ $ (-562)) 14)))
(((-1085 |#1|) (-139) (-1207)) (T -1085))
-((-3864 (*1 *1 *2 *2) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))) (-1483 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-1085 *3)) (-4 *3 (-1207)))) (-1751 (*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))) (-2089 (*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))) (-2010 (*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))) (-3712 (*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))) (-1766 (*1 *2 *1) (-12 (-4 *1 (-1085 *3)) (-4 *3 (-1207)) (-5 *2 (-562)))) (-2669 (*1 *1 *2 *2) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))))
-(-13 (-614 |t#1|) (-10 -8 (-15 -3864 ($ |t#1| |t#1|)) (-15 -1483 ($ $ (-562))) (-15 -1751 (|t#1| $)) (-15 -2089 (|t#1| $)) (-15 -2010 (|t#1| $)) (-15 -3712 (|t#1| $)) (-15 -1766 ((-562) $)) (-15 -2669 ($ |t#1| |t#1|))))
+((-3863 (*1 *1 *2 *2) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))) (-1483 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-1085 *3)) (-4 *3 (-1207)))) (-1750 (*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))) (-2088 (*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))) (-3665 (*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))) (-3979 (*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))) (-1765 (*1 *2 *1) (-12 (-4 *1 (-1085 *3)) (-4 *3 (-1207)) (-5 *2 (-562)))) (-2668 (*1 *1 *2 *2) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))))
+(-13 (-614 |t#1|) (-10 -8 (-15 -3863 ($ |t#1| |t#1|)) (-15 -1483 ($ $ (-562))) (-15 -1750 (|t#1| $)) (-15 -2088 (|t#1| $)) (-15 -3665 (|t#1| $)) (-15 -3979 (|t#1| $)) (-15 -1765 ((-562) $)) (-15 -2668 ($ |t#1| |t#1|))))
(((-614 |#1|) . T))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2669 (($ |#1| |#1|) 15)) (-4152 (((-639 |#1|) (-1 |#1| |#1|) $) 37 (|has| |#1| (-843)))) (-2010 ((|#1| $) 10)) (-1751 ((|#1| $) 9)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1766 (((-562) $) 14)) (-3712 ((|#1| $) 12)) (-2089 ((|#1| $) 11)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3525 (((-639 |#1|) $) 35 (|has| |#1| (-843))) (((-639 |#1|) (-639 $)) 34 (|has| |#1| (-843)))) (-4208 (($ |#1|) 26)) (-4054 (((-857) $) 25 (|has| |#1| (-1092)))) (-3864 (($ |#1| |#1|) 8)) (-1483 (($ $ (-562)) 16)) (-1731 (((-112) $ $) 19 (|has| |#1| (-1092)))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2668 (($ |#1| |#1|) 15)) (-4152 (((-639 |#1|) (-1 |#1| |#1|) $) 37 (|has| |#1| (-843)))) (-3665 ((|#1| $) 10)) (-1750 ((|#1| $) 9)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1765 (((-562) $) 14)) (-3979 ((|#1| $) 12)) (-2088 ((|#1| $) 11)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3525 (((-639 |#1|) $) 35 (|has| |#1| (-843))) (((-639 |#1|) (-639 $)) 34 (|has| |#1| (-843)))) (-4208 (($ |#1|) 26)) (-4053 (((-857) $) 25 (|has| |#1| (-1092)))) (-3863 (($ |#1| |#1|) 8)) (-1483 (($ $ (-562)) 16)) (-1733 (((-112) $ $) 19 (|has| |#1| (-1092)))))
(((-1086 |#1|) (-13 (-1085 |#1|) (-10 -7 (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-1087 |#1| (-639 |#1|))) |%noBranch|))) (-1207)) (T -1086))
NIL
(-13 (-1085 |#1|) (-10 -7 (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-1087 |#1| (-639 |#1|))) |%noBranch|)))
-((-2669 (($ |#1| |#1|) 8)) (-4152 ((|#2| (-1 |#1| |#1|) $) 16)) (-2010 ((|#1| $) 11)) (-1751 ((|#1| $) 13)) (-1766 (((-562) $) 9)) (-3712 ((|#1| $) 10)) (-2089 ((|#1| $) 12)) (-3525 ((|#2| (-639 $)) 18) ((|#2| $) 17)) (-4208 (($ |#1|) 6)) (-3864 (($ |#1| |#1|) 15)) (-1483 (($ $ (-562)) 14)))
+((-2668 (($ |#1| |#1|) 8)) (-4152 ((|#2| (-1 |#1| |#1|) $) 16)) (-3665 ((|#1| $) 11)) (-1750 ((|#1| $) 13)) (-1765 (((-562) $) 9)) (-3979 ((|#1| $) 10)) (-2088 ((|#1| $) 12)) (-3525 ((|#2| (-639 $)) 18) ((|#2| $) 17)) (-4208 (($ |#1|) 6)) (-3863 (($ |#1| |#1|) 15)) (-1483 (($ $ (-562)) 14)))
(((-1087 |#1| |#2|) (-139) (-843) (-1141 |t#1|)) (T -1087))
((-3525 (*1 *2 *3) (-12 (-5 *3 (-639 *1)) (-4 *1 (-1087 *4 *2)) (-4 *4 (-843)) (-4 *2 (-1141 *4)))) (-3525 (*1 *2 *1) (-12 (-4 *1 (-1087 *3 *2)) (-4 *3 (-843)) (-4 *2 (-1141 *3)))) (-4152 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1087 *4 *2)) (-4 *4 (-843)) (-4 *2 (-1141 *4)))))
(-13 (-1085 |t#1|) (-10 -8 (-15 -3525 (|t#2| (-639 $))) (-15 -3525 (|t#2| $)) (-15 -4152 (|t#2| (-1 |t#1| |t#1|) $))))
(((-614 |#1|) . T) ((-1085 |#1|) . T))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1504 (((-1127) $) 12)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 20) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-639 (-1127)) $) 10)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1504 (((-1127) $) 12)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 20) (($ (-1173)) NIL) (((-1173) $) NIL)) (-3265 (((-639 (-1127)) $) 10)) (-1733 (((-112) $ $) NIL)))
(((-1088) (-13 (-1075) (-10 -8 (-15 -3265 ((-639 (-1127)) $)) (-15 -1504 ((-1127) $))))) (T -1088))
((-3265 (*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-1088)))) (-1504 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1088)))))
(-13 (-1075) (-10 -8 (-15 -3265 ((-639 (-1127)) $)) (-15 -1504 ((-1127) $))))
-((-2494 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-2129 (($ $ $) 10)) (-3703 (($ $ $) NIL) (($ $ |#2|) 15)))
-(((-1089 |#1| |#2|) (-10 -8 (-15 -2494 (|#1| |#2| |#1|)) (-15 -2494 (|#1| |#1| |#2|)) (-15 -2494 (|#1| |#1| |#1|)) (-15 -2129 (|#1| |#1| |#1|)) (-15 -3703 (|#1| |#1| |#2|)) (-15 -3703 (|#1| |#1| |#1|))) (-1090 |#2|) (-1092)) (T -1089))
+((-2492 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-2570 (($ $ $) 10)) (-3874 (($ $ $) NIL) (($ $ |#2|) 15)))
+(((-1089 |#1| |#2|) (-10 -8 (-15 -2492 (|#1| |#2| |#1|)) (-15 -2492 (|#1| |#1| |#2|)) (-15 -2492 (|#1| |#1| |#1|)) (-15 -2570 (|#1| |#1| |#1|)) (-15 -3874 (|#1| |#1| |#2|)) (-15 -3874 (|#1| |#1| |#1|))) (-1090 |#2|) (-1092)) (T -1089))
NIL
-(-10 -8 (-15 -2494 (|#1| |#2| |#1|)) (-15 -2494 (|#1| |#1| |#2|)) (-15 -2494 (|#1| |#1| |#1|)) (-15 -2129 (|#1| |#1| |#1|)) (-15 -3703 (|#1| |#1| |#2|)) (-15 -3703 (|#1| |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-2494 (($ $ $) 18) (($ $ |#1|) 17) (($ |#1| $) 16)) (-2129 (($ $ $) 20)) (-2330 (((-112) $ $) 19)) (-4336 (((-112) $ (-766)) 35)) (-1608 (($) 25) (($ (-639 |#1|)) 24)) (-3556 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4402)))) (-1800 (($) 36 T CONST)) (-1459 (($ $) 59 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#1| $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4402)))) (-1720 (((-639 |#1|) $) 43 (|has| $ (-6 -4402)))) (-3027 (((-112) $ $) 28)) (-3292 (((-112) $ (-766)) 34)) (-1912 (((-639 |#1|) $) 44 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 46 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 38)) (-3289 (((-112) $ (-766)) 33)) (-2913 (((-1150) $) 9)) (-4376 (($ $ $) 23)) (-1709 (((-1112) $) 10)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1763 (((-112) (-1 (-112) |#1|) $) 41 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) 50 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 49 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 48 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 (-293 |#1|))) 47 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 29)) (-2974 (((-112) $) 32)) (-4307 (($) 31)) (-3703 (($ $ $) 22) (($ $ |#1|) 21)) (-1723 (((-766) |#1| $) 45 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (((-766) (-1 (-112) |#1|) $) 42 (|has| $ (-6 -4402)))) (-4220 (($ $) 30)) (-4208 (((-535) $) 60 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 51)) (-4054 (((-857) $) 11)) (-1703 (($) 27) (($ (-639 |#1|)) 26)) (-1744 (((-112) (-1 (-112) |#1|) $) 40 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 6)) (-3492 (((-766) $) 37 (|has| $ (-6 -4402)))))
+(-10 -8 (-15 -2492 (|#1| |#2| |#1|)) (-15 -2492 (|#1| |#1| |#2|)) (-15 -2492 (|#1| |#1| |#1|)) (-15 -2570 (|#1| |#1| |#1|)) (-15 -3874 (|#1| |#1| |#2|)) (-15 -3874 (|#1| |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-2492 (($ $ $) 18) (($ $ |#1|) 17) (($ |#1| $) 16)) (-2570 (($ $ $) 20)) (-3938 (((-112) $ $) 19)) (-3735 (((-112) $ (-766)) 35)) (-1607 (($) 25) (($ (-639 |#1|)) 24)) (-3556 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4403)))) (-3329 (($) 36 T CONST)) (-1459 (($ $) 59 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#1| $) 58 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4403)))) (-1720 (((-639 |#1|) $) 43 (|has| $ (-6 -4403)))) (-3528 (((-112) $ $) 28)) (-4172 (((-112) $ (-766)) 34)) (-2123 (((-639 |#1|) $) 44 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 46 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 38)) (-4147 (((-112) $ (-766)) 33)) (-3696 (((-1150) $) 9)) (-4169 (($ $ $) 23)) (-1709 (((-1112) $) 10)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3008 (((-112) (-1 (-112) |#1|) $) 41 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#1|) (-639 |#1|)) 50 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 49 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 48 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 (-293 |#1|))) 47 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 29)) (-3087 (((-112) $) 32)) (-1663 (($) 31)) (-3874 (($ $ $) 22) (($ $ |#1|) 21)) (-1723 (((-766) |#1| $) 45 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (((-766) (-1 (-112) |#1|) $) 42 (|has| $ (-6 -4403)))) (-4220 (($ $) 30)) (-4208 (((-535) $) 60 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 51)) (-4053 (((-857) $) 11)) (-1702 (($) 27) (($ (-639 |#1|)) 26)) (-2879 (((-112) (-1 (-112) |#1|) $) 40 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 6)) (-3492 (((-766) $) 37 (|has| $ (-6 -4403)))))
(((-1090 |#1|) (-139) (-1092)) (T -1090))
-((-3027 (*1 *2 *1 *1) (-12 (-4 *1 (-1090 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))) (-1703 (*1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-1703 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-1090 *3)))) (-1608 (*1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-1608 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-1090 *3)))) (-4376 (*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-3703 (*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-3703 (*1 *1 *1 *2) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-2129 (*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-2330 (*1 *2 *1 *1) (-12 (-4 *1 (-1090 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))) (-2494 (*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-2494 (*1 *1 *1 *2) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-2494 (*1 *1 *2 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))))
-(-13 (-1092) (-150 |t#1|) (-10 -8 (-6 -4392) (-15 -3027 ((-112) $ $)) (-15 -1703 ($)) (-15 -1703 ($ (-639 |t#1|))) (-15 -1608 ($)) (-15 -1608 ($ (-639 |t#1|))) (-15 -4376 ($ $ $)) (-15 -3703 ($ $ $)) (-15 -3703 ($ $ |t#1|)) (-15 -2129 ($ $ $)) (-15 -2330 ((-112) $ $)) (-15 -2494 ($ $ $)) (-15 -2494 ($ $ |t#1|)) (-15 -2494 ($ |t#1| $))))
+((-3528 (*1 *2 *1 *1) (-12 (-4 *1 (-1090 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))) (-1702 (*1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-1702 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-1090 *3)))) (-1607 (*1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-1607 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-1090 *3)))) (-4169 (*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-3874 (*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-3874 (*1 *1 *1 *2) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-2570 (*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-3938 (*1 *2 *1 *1) (-12 (-4 *1 (-1090 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))) (-2492 (*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-2492 (*1 *1 *1 *2) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))) (-2492 (*1 *1 *2 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))))
+(-13 (-1092) (-150 |t#1|) (-10 -8 (-6 -4393) (-15 -3528 ((-112) $ $)) (-15 -1702 ($)) (-15 -1702 ($ (-639 |t#1|))) (-15 -1607 ($)) (-15 -1607 ($ (-639 |t#1|))) (-15 -4169 ($ $ $)) (-15 -3874 ($ $ $)) (-15 -3874 ($ $ |t#1|)) (-15 -2570 ($ $ $)) (-15 -3938 ((-112) $ $)) (-15 -2492 ($ $ $)) (-15 -2492 ($ $ |t#1|)) (-15 -2492 ($ |t#1| $))))
(((-34) . T) ((-102) . T) ((-609 (-857)) . T) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) . T) ((-1207) . T))
-((-2913 (((-1150) $) 10)) (-1709 (((-1112) $) 8)))
-(((-1091 |#1|) (-10 -8 (-15 -2913 ((-1150) |#1|)) (-15 -1709 ((-1112) |#1|))) (-1092)) (T -1091))
+((-3696 (((-1150) $) 10)) (-1709 (((-1112) $) 8)))
+(((-1091 |#1|) (-10 -8 (-15 -3696 ((-1150) |#1|)) (-15 -1709 ((-1112) |#1|))) (-1092)) (T -1091))
NIL
-(-10 -8 (-15 -2913 ((-1150) |#1|)) (-15 -1709 ((-1112) |#1|)))
-((-4041 (((-112) $ $) 7)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1731 (((-112) $ $) 6)))
+(-10 -8 (-15 -3696 ((-1150) |#1|)) (-15 -1709 ((-1112) |#1|)))
+((-4041 (((-112) $ $) 7)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1733 (((-112) $ $) 6)))
(((-1092) (-139)) (T -1092))
-((-1709 (*1 *2 *1) (-12 (-4 *1 (-1092)) (-5 *2 (-1112)))) (-2913 (*1 *2 *1) (-12 (-4 *1 (-1092)) (-5 *2 (-1150)))))
-(-13 (-102) (-609 (-857)) (-10 -8 (-15 -1709 ((-1112) $)) (-15 -2913 ((-1150) $))))
+((-1709 (*1 *2 *1) (-12 (-4 *1 (-1092)) (-5 *2 (-1112)))) (-3696 (*1 *2 *1) (-12 (-4 *1 (-1092)) (-5 *2 (-1150)))))
+(-13 (-102) (-609 (-857)) (-10 -8 (-15 -1709 ((-1112) $)) (-15 -3696 ((-1150) $))))
(((-102) . T) ((-609 (-857)) . T))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) 30)) (-1936 (($ (-639 (-916))) 52)) (-2489 (((-3 $ "failed") $ (-916) (-916)) 58)) (-1448 (($) 32)) (-1669 (((-112) (-916) $) 35)) (-1999 (((-916) $) 50)) (-2913 (((-1150) $) NIL)) (-2466 (($ (-916)) 31)) (-4146 (((-3 $ "failed") $ (-916)) 55)) (-1709 (((-1112) $) NIL)) (-3370 (((-1256 $)) 40)) (-3885 (((-639 (-916)) $) 24)) (-3756 (((-766) $ (-916) (-916)) 56)) (-4054 (((-857) $) 29)) (-1731 (((-112) $ $) 21)))
-(((-1093 |#1| |#2|) (-13 (-367) (-10 -8 (-15 -4146 ((-3 $ "failed") $ (-916))) (-15 -2489 ((-3 $ "failed") $ (-916) (-916))) (-15 -3885 ((-639 (-916)) $)) (-15 -1936 ($ (-639 (-916)))) (-15 -3370 ((-1256 $))) (-15 -1669 ((-112) (-916) $)) (-15 -3756 ((-766) $ (-916) (-916))))) (-916) (-916)) (T -1093))
-((-4146 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-916)) (-5 *1 (-1093 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2489 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-916)) (-5 *1 (-1093 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-3885 (*1 *2 *1) (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1093 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))) (-1936 (*1 *1 *2) (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1093 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))) (-3370 (*1 *2) (-12 (-5 *2 (-1256 (-1093 *3 *4))) (-5 *1 (-1093 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))) (-1669 (*1 *2 *3 *1) (-12 (-5 *3 (-916)) (-5 *2 (-112)) (-5 *1 (-1093 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-3756 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-916)) (-5 *2 (-766)) (-5 *1 (-1093 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-13 (-367) (-10 -8 (-15 -4146 ((-3 $ "failed") $ (-916))) (-15 -2489 ((-3 $ "failed") $ (-916) (-916))) (-15 -3885 ((-639 (-916)) $)) (-15 -1936 ($ (-639 (-916)))) (-15 -3370 ((-1256 $))) (-15 -1669 ((-112) (-916) $)) (-15 -3756 ((-766) $ (-916) (-916)))))
-((-4041 (((-112) $ $) NIL)) (-3721 (($) NIL (|has| |#1| (-367)))) (-2494 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 73)) (-2129 (($ $ $) 71)) (-2330 (((-112) $ $) 72)) (-4336 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-1608 (($ (-639 |#1|)) NIL) (($) 13)) (-3111 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4000 (($ |#1| $) 67 (|has| $ (-6 -4402))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4402)))) (-1448 (($) NIL (|has| |#1| (-367)))) (-1720 (((-639 |#1|) $) 19 (|has| $ (-6 -4402)))) (-3027 (((-112) $ $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-1551 ((|#1| $) 57 (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 66 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2993 ((|#1| $) 55 (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 34)) (-1999 (((-916) $) NIL (|has| |#1| (-367)))) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-4376 (($ $ $) 69)) (-3262 ((|#1| $) 25)) (-4300 (($ |#1| $) 65)) (-2466 (($ (-916)) NIL (|has| |#1| (-367)))) (-1709 (((-1112) $) NIL)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 31)) (-1904 ((|#1| $) 27)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 21)) (-4307 (($) 11)) (-3703 (($ $ |#1|) NIL) (($ $ $) 70)) (-3564 (($) NIL) (($ (-639 |#1|)) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) 16)) (-4208 (((-535) $) 52 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 61)) (-2449 (($ $) NIL (|has| |#1| (-367)))) (-4054 (((-857) $) NIL)) (-4234 (((-766) $) NIL)) (-1703 (($ (-639 |#1|)) NIL) (($) 12)) (-1932 (($ (-639 |#1|)) NIL)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 54)) (-3492 (((-766) $) 10 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) 30)) (-4176 (($ (-639 (-916))) 52)) (-1897 (((-3 $ "failed") $ (-916) (-916)) 58)) (-1447 (($) 32)) (-1572 (((-112) (-916) $) 35)) (-3549 (((-916) $) 50)) (-3696 (((-1150) $) NIL)) (-2464 (($ (-916)) 31)) (-2625 (((-3 $ "failed") $ (-916)) 55)) (-1709 (((-1112) $) NIL)) (-3618 (((-1256 $)) 40)) (-2048 (((-639 (-916)) $) 24)) (-3756 (((-766) $ (-916) (-916)) 56)) (-4053 (((-857) $) 29)) (-1733 (((-112) $ $) 21)))
+(((-1093 |#1| |#2|) (-13 (-367) (-10 -8 (-15 -2625 ((-3 $ "failed") $ (-916))) (-15 -1897 ((-3 $ "failed") $ (-916) (-916))) (-15 -2048 ((-639 (-916)) $)) (-15 -4176 ($ (-639 (-916)))) (-15 -3618 ((-1256 $))) (-15 -1572 ((-112) (-916) $)) (-15 -3756 ((-766) $ (-916) (-916))))) (-916) (-916)) (T -1093))
+((-2625 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-916)) (-5 *1 (-1093 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-1897 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-916)) (-5 *1 (-1093 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2048 (*1 *2 *1) (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1093 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))) (-4176 (*1 *1 *2) (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1093 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))) (-3618 (*1 *2) (-12 (-5 *2 (-1256 (-1093 *3 *4))) (-5 *1 (-1093 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916)))) (-1572 (*1 *2 *3 *1) (-12 (-5 *3 (-916)) (-5 *2 (-112)) (-5 *1 (-1093 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-3756 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-916)) (-5 *2 (-766)) (-5 *1 (-1093 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-13 (-367) (-10 -8 (-15 -2625 ((-3 $ "failed") $ (-916))) (-15 -1897 ((-3 $ "failed") $ (-916) (-916))) (-15 -2048 ((-639 (-916)) $)) (-15 -4176 ($ (-639 (-916)))) (-15 -3618 ((-1256 $))) (-15 -1572 ((-112) (-916) $)) (-15 -3756 ((-766) $ (-916) (-916)))))
+((-4041 (((-112) $ $) NIL)) (-4076 (($) NIL (|has| |#1| (-367)))) (-2492 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 73)) (-2570 (($ $ $) 71)) (-3938 (((-112) $ $) 72)) (-3735 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| |#1| (-367)))) (-1607 (($ (-639 |#1|)) NIL) (($) 13)) (-2968 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-3729 (($ |#1| $) 67 (|has| $ (-6 -4403))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4403)))) (-1447 (($) NIL (|has| |#1| (-367)))) (-1720 (((-639 |#1|) $) 19 (|has| $ (-6 -4403)))) (-3528 (((-112) $ $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1551 ((|#1| $) 57 (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 66 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2993 ((|#1| $) 55 (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 34)) (-3549 (((-916) $) NIL (|has| |#1| (-367)))) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-4169 (($ $ $) 69)) (-2078 ((|#1| $) 25)) (-1581 (($ |#1| $) 65)) (-2464 (($ (-916)) NIL (|has| |#1| (-367)))) (-1709 (((-1112) $) NIL)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 31)) (-2038 ((|#1| $) 27)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 21)) (-1663 (($) 11)) (-3874 (($ $ |#1|) NIL) (($ $ $) 70)) (-1932 (($) NIL) (($ (-639 |#1|)) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) 16)) (-4208 (((-535) $) 52 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 61)) (-2695 (($ $) NIL (|has| |#1| (-367)))) (-4053 (((-857) $) NIL)) (-2186 (((-766) $) NIL)) (-1702 (($ (-639 |#1|)) NIL) (($) 12)) (-4131 (($ (-639 |#1|)) NIL)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 54)) (-3492 (((-766) $) 10 (|has| $ (-6 -4403)))))
(((-1094 |#1|) (-424 |#1|) (-1092)) (T -1094))
NIL
(-424 |#1|)
-((-4041 (((-112) $ $) 7)) (-1873 (((-112) $) 32)) (-1730 ((|#2| $) 27)) (-2186 (((-112) $) 33)) (-3596 ((|#1| $) 28)) (-3155 (((-112) $) 35)) (-4060 (((-112) $) 37)) (-1661 (((-112) $) 34)) (-2913 (((-1150) $) 9)) (-3377 (((-112) $) 31)) (-1757 ((|#3| $) 26)) (-1709 (((-1112) $) 10)) (-3715 (((-112) $) 30)) (-4235 ((|#4| $) 25)) (-2404 ((|#5| $) 24)) (-3342 (((-112) $ $) 38)) (-2343 (($ $ (-562)) 20) (($ $ (-639 (-562))) 19)) (-1716 (((-639 $) $) 29)) (-4208 (($ |#1|) 44) (($ |#2|) 43) (($ |#3|) 42) (($ |#4|) 41) (($ |#5|) 40) (($ (-639 $)) 39)) (-4054 (((-857) $) 11)) (-3740 (($ $) 22)) (-3728 (($ $) 23)) (-2849 (((-112) $) 36)) (-1731 (((-112) $ $) 6)) (-3492 (((-562) $) 21)))
+((-4041 (((-112) $ $) 7)) (-1681 (((-112) $) 32)) (-1729 ((|#2| $) 27)) (-1950 (((-112) $) 33)) (-3596 ((|#1| $) 28)) (-3391 (((-112) $) 35)) (-3032 (((-112) $) 37)) (-1498 (((-112) $) 34)) (-3696 (((-1150) $) 9)) (-3693 (((-112) $) 31)) (-1757 ((|#3| $) 26)) (-1709 (((-1112) $) 10)) (-4014 (((-112) $) 30)) (-4237 ((|#4| $) 25)) (-2400 ((|#5| $) 24)) (-3339 (((-112) $ $) 38)) (-2343 (($ $ (-562)) 20) (($ $ (-639 (-562))) 19)) (-1716 (((-639 $) $) 29)) (-4208 (($ |#1|) 44) (($ |#2|) 43) (($ |#3|) 42) (($ |#4|) 41) (($ |#5|) 40) (($ (-639 $)) 39)) (-4053 (((-857) $) 11)) (-3740 (($ $) 22)) (-3728 (($ $) 23)) (-4301 (((-112) $) 36)) (-1733 (((-112) $ $) 6)) (-3492 (((-562) $) 21)))
(((-1095 |#1| |#2| |#3| |#4| |#5|) (-139) (-1092) (-1092) (-1092) (-1092) (-1092)) (T -1095))
-((-3342 (*1 *2 *1 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-4060 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-2849 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-3155 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-1661 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-2186 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-1873 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-3377 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-3715 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-1716 (*1 *2 *1) (-12 (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-639 *1)) (-4 *1 (-1095 *3 *4 *5 *6 *7)))) (-3596 (*1 *2 *1) (-12 (-4 *1 (-1095 *2 *3 *4 *5 *6)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))) (-1730 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *2 *4 *5 *6)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))) (-1757 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *2 *5 *6)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))) (-4235 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *2 *6)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))) (-2404 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *2)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))) (-3728 (*1 *1 *1) (-12 (-4 *1 (-1095 *2 *3 *4 *5 *6)) (-4 *2 (-1092)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)))) (-3740 (*1 *1 *1) (-12 (-4 *1 (-1095 *2 *3 *4 *5 *6)) (-4 *2 (-1092)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)))) (-3492 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-562)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)))))
-(-13 (-1092) (-614 |t#1|) (-614 |t#2|) (-614 |t#3|) (-614 |t#4|) (-614 |t#4|) (-614 |t#5|) (-614 (-639 $)) (-10 -8 (-15 -3342 ((-112) $ $)) (-15 -4060 ((-112) $)) (-15 -2849 ((-112) $)) (-15 -3155 ((-112) $)) (-15 -1661 ((-112) $)) (-15 -2186 ((-112) $)) (-15 -1873 ((-112) $)) (-15 -3377 ((-112) $)) (-15 -3715 ((-112) $)) (-15 -1716 ((-639 $) $)) (-15 -3596 (|t#1| $)) (-15 -1730 (|t#2| $)) (-15 -1757 (|t#3| $)) (-15 -4235 (|t#4| $)) (-15 -2404 (|t#5| $)) (-15 -3728 ($ $)) (-15 -3740 ($ $)) (-15 -3492 ((-562) $)) (-15 -2343 ($ $ (-562))) (-15 -2343 ($ $ (-639 (-562))))))
+((-3339 (*1 *2 *1 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-3032 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-4301 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-3391 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-1498 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-1950 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-1681 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-3693 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-4014 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))) (-1716 (*1 *2 *1) (-12 (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-639 *1)) (-4 *1 (-1095 *3 *4 *5 *6 *7)))) (-3596 (*1 *2 *1) (-12 (-4 *1 (-1095 *2 *3 *4 *5 *6)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))) (-1729 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *2 *4 *5 *6)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))) (-1757 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *2 *5 *6)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))) (-4237 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *2 *6)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))) (-2400 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *2)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))) (-3728 (*1 *1 *1) (-12 (-4 *1 (-1095 *2 *3 *4 *5 *6)) (-4 *2 (-1092)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)))) (-3740 (*1 *1 *1) (-12 (-4 *1 (-1095 *2 *3 *4 *5 *6)) (-4 *2 (-1092)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)))) (-3492 (*1 *2 *1) (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-562)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)))))
+(-13 (-1092) (-614 |t#1|) (-614 |t#2|) (-614 |t#3|) (-614 |t#4|) (-614 |t#4|) (-614 |t#5|) (-614 (-639 $)) (-10 -8 (-15 -3339 ((-112) $ $)) (-15 -3032 ((-112) $)) (-15 -4301 ((-112) $)) (-15 -3391 ((-112) $)) (-15 -1498 ((-112) $)) (-15 -1950 ((-112) $)) (-15 -1681 ((-112) $)) (-15 -3693 ((-112) $)) (-15 -4014 ((-112) $)) (-15 -1716 ((-639 $) $)) (-15 -3596 (|t#1| $)) (-15 -1729 (|t#2| $)) (-15 -1757 (|t#3| $)) (-15 -4237 (|t#4| $)) (-15 -2400 (|t#5| $)) (-15 -3728 ($ $)) (-15 -3740 ($ $)) (-15 -3492 ((-562) $)) (-15 -2343 ($ $ (-562))) (-15 -2343 ($ $ (-639 (-562))))))
(((-102) . T) ((-609 (-857)) . T) ((-614 (-639 $)) . T) ((-614 |#1|) . T) ((-614 |#2|) . T) ((-614 |#3|) . T) ((-614 |#4|) . T) ((-614 |#5|) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1873 (((-112) $) NIL)) (-1730 (((-1168) $) NIL)) (-2186 (((-112) $) NIL)) (-3596 (((-1150) $) NIL)) (-3155 (((-112) $) NIL)) (-4060 (((-112) $) NIL)) (-1661 (((-112) $) NIL)) (-2913 (((-1150) $) NIL)) (-3377 (((-112) $) NIL)) (-1757 (((-562) $) NIL)) (-1709 (((-1112) $) NIL)) (-3715 (((-112) $) NIL)) (-4235 (((-224) $) NIL)) (-2404 (((-857) $) NIL)) (-3342 (((-112) $ $) NIL)) (-2343 (($ $ (-562)) NIL) (($ $ (-639 (-562))) NIL)) (-1716 (((-639 $) $) NIL)) (-4208 (($ (-1150)) NIL) (($ (-1168)) NIL) (($ (-562)) NIL) (($ (-224)) NIL) (($ (-857)) NIL) (($ (-639 $)) NIL)) (-4054 (((-857) $) NIL)) (-3740 (($ $) NIL)) (-3728 (($ $) NIL)) (-2849 (((-112) $) NIL)) (-1731 (((-112) $ $) NIL)) (-3492 (((-562) $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-1681 (((-112) $) NIL)) (-1729 (((-1168) $) NIL)) (-1950 (((-112) $) NIL)) (-3596 (((-1150) $) NIL)) (-3391 (((-112) $) NIL)) (-3032 (((-112) $) NIL)) (-1498 (((-112) $) NIL)) (-3696 (((-1150) $) NIL)) (-3693 (((-112) $) NIL)) (-1757 (((-562) $) NIL)) (-1709 (((-1112) $) NIL)) (-4014 (((-112) $) NIL)) (-4237 (((-224) $) NIL)) (-2400 (((-857) $) NIL)) (-3339 (((-112) $ $) NIL)) (-2343 (($ $ (-562)) NIL) (($ $ (-639 (-562))) NIL)) (-1716 (((-639 $) $) NIL)) (-4208 (($ (-1150)) NIL) (($ (-1168)) NIL) (($ (-562)) NIL) (($ (-224)) NIL) (($ (-857)) NIL) (($ (-639 $)) NIL)) (-4053 (((-857) $) NIL)) (-3740 (($ $) NIL)) (-3728 (($ $) NIL)) (-4301 (((-112) $) NIL)) (-1733 (((-112) $ $) NIL)) (-3492 (((-562) $) NIL)))
(((-1096) (-1095 (-1150) (-1168) (-562) (-224) (-857))) (T -1096))
NIL
(-1095 (-1150) (-1168) (-562) (-224) (-857))
-((-4041 (((-112) $ $) NIL)) (-1873 (((-112) $) 39)) (-1730 ((|#2| $) 42)) (-2186 (((-112) $) 18)) (-3596 ((|#1| $) 19)) (-3155 (((-112) $) 37)) (-4060 (((-112) $) 14)) (-1661 (((-112) $) 38)) (-2913 (((-1150) $) NIL)) (-3377 (((-112) $) 40)) (-1757 ((|#3| $) 44)) (-1709 (((-1112) $) NIL)) (-3715 (((-112) $) 41)) (-4235 ((|#4| $) 43)) (-2404 ((|#5| $) 45)) (-3342 (((-112) $ $) 36)) (-2343 (($ $ (-562)) 56) (($ $ (-639 (-562))) 58)) (-1716 (((-639 $) $) 24)) (-4208 (($ |#1|) 47) (($ |#2|) 48) (($ |#3|) 49) (($ |#4|) 50) (($ |#5|) 51) (($ (-639 $)) 46)) (-4054 (((-857) $) 25)) (-3740 (($ $) 23)) (-3728 (($ $) 52)) (-2849 (((-112) $) 21)) (-1731 (((-112) $ $) 35)) (-3492 (((-562) $) 54)))
+((-4041 (((-112) $ $) NIL)) (-1681 (((-112) $) 39)) (-1729 ((|#2| $) 42)) (-1950 (((-112) $) 18)) (-3596 ((|#1| $) 19)) (-3391 (((-112) $) 37)) (-3032 (((-112) $) 14)) (-1498 (((-112) $) 38)) (-3696 (((-1150) $) NIL)) (-3693 (((-112) $) 40)) (-1757 ((|#3| $) 44)) (-1709 (((-1112) $) NIL)) (-4014 (((-112) $) 41)) (-4237 ((|#4| $) 43)) (-2400 ((|#5| $) 45)) (-3339 (((-112) $ $) 36)) (-2343 (($ $ (-562)) 56) (($ $ (-639 (-562))) 58)) (-1716 (((-639 $) $) 24)) (-4208 (($ |#1|) 47) (($ |#2|) 48) (($ |#3|) 49) (($ |#4|) 50) (($ |#5|) 51) (($ (-639 $)) 46)) (-4053 (((-857) $) 25)) (-3740 (($ $) 23)) (-3728 (($ $) 52)) (-4301 (((-112) $) 21)) (-1733 (((-112) $ $) 35)) (-3492 (((-562) $) 54)))
(((-1097 |#1| |#2| |#3| |#4| |#5|) (-1095 |#1| |#2| |#3| |#4| |#5|) (-1092) (-1092) (-1092) (-1092) (-1092)) (T -1097))
NIL
(-1095 |#1| |#2| |#3| |#4| |#5|)
-((-3219 (((-1261) $) 23)) (-1332 (($ (-1168) (-433) |#2|) 11)) (-4054 (((-857) $) 16)))
+((-3218 (((-1261) $) 23)) (-1332 (($ (-1168) (-433) |#2|) 11)) (-4053 (((-857) $) 16)))
(((-1098 |#1| |#2|) (-13 (-394) (-10 -8 (-15 -1332 ($ (-1168) (-433) |#2|)))) (-845) (-429 |#1|)) (T -1098))
((-1332 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1168)) (-5 *3 (-433)) (-4 *5 (-845)) (-5 *1 (-1098 *5 *4)) (-4 *4 (-429 *5)))))
(-13 (-394) (-10 -8 (-15 -1332 ($ (-1168) (-433) |#2|))))
-((-3675 (((-112) |#5| |#5|) 37)) (-1561 (((-112) |#5| |#5|) 51)) (-3934 (((-112) |#5| (-639 |#5|)) 74) (((-112) |#5| |#5|) 60)) (-3097 (((-112) (-639 |#4|) (-639 |#4|)) 57)) (-4225 (((-112) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) 62)) (-3098 (((-1261)) 33)) (-2498 (((-1261) (-1150) (-1150) (-1150)) 29)) (-2543 (((-639 |#5|) (-639 |#5|)) 81)) (-3963 (((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)))) 79)) (-3674 (((-639 (-2 (|:| -3342 (-639 |#4|)) (|:| -1495 |#5|) (|:| |ineq| (-639 |#4|)))) (-639 |#4|) (-639 |#5|) (-112) (-112)) 101)) (-1903 (((-112) |#5| |#5|) 46)) (-4187 (((-3 (-112) "failed") |#5| |#5|) 70)) (-2768 (((-112) (-639 |#4|) (-639 |#4|)) 56)) (-2697 (((-112) (-639 |#4|) (-639 |#4|)) 58)) (-1408 (((-112) (-639 |#4|) (-639 |#4|)) 59)) (-3246 (((-3 (-2 (|:| -3342 (-639 |#4|)) (|:| -1495 |#5|) (|:| |ineq| (-639 |#4|))) "failed") (-639 |#4|) |#5| (-639 |#4|) (-112) (-112) (-112) (-112) (-112)) 97)) (-3347 (((-639 |#5|) (-639 |#5|)) 42)))
-(((-1099 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2498 ((-1261) (-1150) (-1150) (-1150))) (-15 -3098 ((-1261))) (-15 -3675 ((-112) |#5| |#5|)) (-15 -3347 ((-639 |#5|) (-639 |#5|))) (-15 -1903 ((-112) |#5| |#5|)) (-15 -1561 ((-112) |#5| |#5|)) (-15 -3097 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2768 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2697 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -1408 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -4187 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3934 ((-112) |#5| |#5|)) (-15 -3934 ((-112) |#5| (-639 |#5|))) (-15 -2543 ((-639 |#5|) (-639 |#5|))) (-15 -4225 ((-112) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)))) (-15 -3963 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) (-15 -3674 ((-639 (-2 (|:| -3342 (-639 |#4|)) (|:| -1495 |#5|) (|:| |ineq| (-639 |#4|)))) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -3246 ((-3 (-2 (|:| -3342 (-639 |#4|)) (|:| -1495 |#5|) (|:| |ineq| (-639 |#4|))) "failed") (-639 |#4|) |#5| (-639 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|)) (T -1099))
-((-3246 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *9 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| -3342 (-639 *9)) (|:| -1495 *4) (|:| |ineq| (-639 *9)))) (-5 *1 (-1099 *6 *7 *8 *9 *4)) (-5 *3 (-639 *9)) (-4 *4 (-1064 *6 *7 *8 *9)))) (-3674 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-639 *10)) (-5 *5 (-112)) (-4 *10 (-1064 *6 *7 *8 *9)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *9 (-1058 *6 *7 *8)) (-5 *2 (-639 (-2 (|:| -3342 (-639 *9)) (|:| -1495 *10) (|:| |ineq| (-639 *9))))) (-5 *1 (-1099 *6 *7 *8 *9 *10)) (-5 *3 (-639 *9)))) (-3963 (*1 *2 *2) (-12 (-5 *2 (-639 (-2 (|:| |val| (-639 *6)) (|:| -1495 *7)))) (-4 *6 (-1058 *3 *4 *5)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-1099 *3 *4 *5 *6 *7)))) (-4225 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1495 *8))) (-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1064 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *8)))) (-2543 (*1 *2 *2) (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *1 (-1099 *3 *4 *5 *6 *7)))) (-3934 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1099 *5 *6 *7 *8 *3)))) (-3934 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-4187 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-1408 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-2697 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-2768 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-3097 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-1561 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-1903 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-3347 (*1 *2 *2) (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *1 (-1099 *3 *4 *5 *6 *7)))) (-3675 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-3098 (*1 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261)) (-5 *1 (-1099 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))) (-2498 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261)) (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2498 ((-1261) (-1150) (-1150) (-1150))) (-15 -3098 ((-1261))) (-15 -3675 ((-112) |#5| |#5|)) (-15 -3347 ((-639 |#5|) (-639 |#5|))) (-15 -1903 ((-112) |#5| |#5|)) (-15 -1561 ((-112) |#5| |#5|)) (-15 -3097 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2768 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2697 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -1408 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -4187 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3934 ((-112) |#5| |#5|)) (-15 -3934 ((-112) |#5| (-639 |#5|))) (-15 -2543 ((-639 |#5|) (-639 |#5|))) (-15 -4225 ((-112) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)))) (-15 -3963 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) (-15 -3674 ((-639 (-2 (|:| -3342 (-639 |#4|)) (|:| -1495 |#5|) (|:| |ineq| (-639 |#4|)))) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -3246 ((-3 (-2 (|:| -3342 (-639 |#4|)) (|:| -1495 |#5|) (|:| |ineq| (-639 |#4|))) "failed") (-639 |#4|) |#5| (-639 |#4|) (-112) (-112) (-112) (-112) (-112))))
-((-1780 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#5|) 95)) (-4072 (((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) |#4| |#4| |#5|) 71)) (-3711 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5|) 89)) (-2038 (((-639 |#5|) |#4| |#5|) 109)) (-2462 (((-639 |#5|) |#4| |#5|) 116)) (-3205 (((-639 |#5|) |#4| |#5|) 117)) (-3373 (((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|) 96)) (-3808 (((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|) 115)) (-1350 (((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|) 46) (((-112) |#4| |#5|) 53)) (-2506 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) |#3| (-112)) 83) (((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5| (-112) (-112)) 50)) (-2228 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5|) 78)) (-3739 (((-1261)) 37)) (-2511 (((-1261)) 26)) (-2245 (((-1261) (-1150) (-1150) (-1150)) 33)) (-4012 (((-1261) (-1150) (-1150) (-1150)) 22)))
-(((-1100 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4012 ((-1261) (-1150) (-1150) (-1150))) (-15 -2511 ((-1261))) (-15 -2245 ((-1261) (-1150) (-1150) (-1150))) (-15 -3739 ((-1261))) (-15 -4072 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) |#4| |#4| |#5|)) (-15 -2506 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2506 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) |#3| (-112))) (-15 -2228 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5|)) (-15 -3711 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5|)) (-15 -1350 ((-112) |#4| |#5|)) (-15 -3373 ((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|)) (-15 -2038 ((-639 |#5|) |#4| |#5|)) (-15 -3808 ((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|)) (-15 -2462 ((-639 |#5|) |#4| |#5|)) (-15 -1350 ((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|)) (-15 -3205 ((-639 |#5|) |#4| |#5|)) (-15 -1780 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#5|))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|)) (T -1100))
-((-1780 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3205 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4)) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-1350 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1495 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2462 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4)) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3808 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1495 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2038 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4)) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3373 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1495 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-1350 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3711 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2228 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2506 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1495 *9)))) (-5 *5 (-112)) (-4 *8 (-1058 *6 *7 *4)) (-4 *9 (-1064 *6 *7 *4 *8)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *4 (-845)) (-5 *2 (-639 (-2 (|:| |val| *8) (|:| -1495 *9)))) (-5 *1 (-1100 *6 *7 *4 *8 *9)))) (-2506 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4)))) (-5 *1 (-1100 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3)))) (-4072 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3739 (*1 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261)) (-5 *1 (-1100 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))) (-2245 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-2511 (*1 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261)) (-5 *1 (-1100 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))) (-4012 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
-(-10 -7 (-15 -4012 ((-1261) (-1150) (-1150) (-1150))) (-15 -2511 ((-1261))) (-15 -2245 ((-1261) (-1150) (-1150) (-1150))) (-15 -3739 ((-1261))) (-15 -4072 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) |#4| |#4| |#5|)) (-15 -2506 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2506 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) |#3| (-112))) (-15 -2228 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5|)) (-15 -3711 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#4| |#5|)) (-15 -1350 ((-112) |#4| |#5|)) (-15 -3373 ((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|)) (-15 -2038 ((-639 |#5|) |#4| |#5|)) (-15 -3808 ((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|)) (-15 -2462 ((-639 |#5|) |#4| |#5|)) (-15 -1350 ((-639 (-2 (|:| |val| (-112)) (|:| -1495 |#5|))) |#4| |#5|)) (-15 -3205 ((-639 |#5|) |#4| |#5|)) (-15 -1780 ((-639 (-2 (|:| |val| |#4|) (|:| -1495 |#5|))) |#4| |#5|)))
-((-4041 (((-112) $ $) 7)) (-2560 (((-639 (-2 (|:| -1450 $) (|:| -3316 (-639 |#4|)))) (-639 |#4|)) 85)) (-2304 (((-639 $) (-639 |#4|)) 86) (((-639 $) (-639 |#4|) (-112)) 111)) (-1402 (((-639 |#3|) $) 33)) (-4170 (((-112) $) 26)) (-4274 (((-112) $) 17 (|has| |#1| (-554)))) (-4377 (((-112) |#4| $) 101) (((-112) $) 97)) (-3049 ((|#4| |#4| $) 92)) (-2798 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 $))) |#4| $) 126)) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |#3|) 27)) (-4336 (((-112) $ (-766)) 44)) (-3556 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4402))) (((-3 |#4| "failed") $ |#3|) 79)) (-1800 (($) 45 T CONST)) (-2207 (((-112) $) 22 (|has| |#1| (-554)))) (-1920 (((-112) $ $) 24 (|has| |#1| (-554)))) (-3852 (((-112) $ $) 23 (|has| |#1| (-554)))) (-2539 (((-112) $) 25 (|has| |#1| (-554)))) (-2839 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3884 (((-639 |#4|) (-639 |#4|) $) 18 (|has| |#1| (-554)))) (-2540 (((-639 |#4|) (-639 |#4|) $) 19 (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 36)) (-3961 (($ (-639 |#4|)) 35)) (-1434 (((-3 $ "failed") $) 82)) (-2387 ((|#4| |#4| $) 89)) (-1459 (($ $) 68 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#4| $) 67 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4402)))) (-2264 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-554)))) (-4091 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3595 ((|#4| |#4| $) 87)) (-1955 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4402))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4402))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2267 (((-2 (|:| -1450 (-639 |#4|)) (|:| -3316 (-639 |#4|))) $) 105)) (-4079 (((-112) |#4| $) 136)) (-3513 (((-112) |#4| $) 133)) (-2764 (((-112) |#4| $) 137) (((-112) $) 134)) (-1720 (((-639 |#4|) $) 52 (|has| $ (-6 -4402)))) (-2573 (((-112) |#4| $) 104) (((-112) $) 103)) (-4339 ((|#3| $) 34)) (-3292 (((-112) $ (-766)) 43)) (-1912 (((-639 |#4|) $) 53 (|has| $ (-6 -4402)))) (-1669 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#4| |#4|) $) 47)) (-3754 (((-639 |#3|) $) 32)) (-2071 (((-112) |#3| $) 31)) (-3289 (((-112) $ (-766)) 42)) (-2913 (((-1150) $) 9)) (-1609 (((-3 |#4| (-639 $)) |#4| |#4| $) 128)) (-1851 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 $))) |#4| |#4| $) 127)) (-1504 (((-3 |#4| "failed") $) 83)) (-1814 (((-639 $) |#4| $) 129)) (-1950 (((-3 (-112) (-639 $)) |#4| $) 132)) (-2021 (((-639 (-2 (|:| |val| (-112)) (|:| -1495 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-4376 (((-639 $) |#4| $) 125) (((-639 $) (-639 |#4|) $) 124) (((-639 $) (-639 |#4|) (-639 $)) 123) (((-639 $) |#4| (-639 $)) 122)) (-1430 (($ |#4| $) 117) (($ (-639 |#4|) $) 116)) (-3576 (((-639 |#4|) $) 107)) (-2890 (((-112) |#4| $) 99) (((-112) $) 95)) (-1849 ((|#4| |#4| $) 90)) (-1408 (((-112) $ $) 110)) (-3725 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-554)))) (-2766 (((-112) |#4| $) 100) (((-112) $) 96)) (-1532 ((|#4| |#4| $) 91)) (-1709 (((-1112) $) 10)) (-1421 (((-3 |#4| "failed") $) 84)) (-3251 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3310 (((-3 $ "failed") $ |#4|) 78)) (-1353 (($ $ |#4|) 77) (((-639 $) |#4| $) 115) (((-639 $) |#4| (-639 $)) 114) (((-639 $) (-639 |#4|) $) 113) (((-639 $) (-639 |#4|) (-639 $)) 112)) (-1763 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) 59 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) 57 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) 56 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-3336 (((-112) $ $) 38)) (-2974 (((-112) $) 41)) (-4307 (($) 40)) (-3598 (((-766) $) 106)) (-1723 (((-766) |#4| $) 54 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) (((-766) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4402)))) (-4220 (($ $) 39)) (-4208 (((-535) $) 69 (|has| |#4| (-610 (-535))))) (-4066 (($ (-639 |#4|)) 60)) (-1812 (($ $ |#3|) 28)) (-3274 (($ $ |#3|) 30)) (-3277 (($ $) 88)) (-1568 (($ $ |#3|) 29)) (-4054 (((-857) $) 11) (((-639 |#4|) $) 37)) (-3730 (((-766) $) 76 (|has| |#3| (-367)))) (-2652 (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-4252 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) 98)) (-1612 (((-639 $) |#4| $) 121) (((-639 $) |#4| (-639 $)) 120) (((-639 $) (-639 |#4|) $) 119) (((-639 $) (-639 |#4|) (-639 $)) 118)) (-1744 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4402)))) (-4089 (((-639 |#3|) $) 81)) (-4211 (((-112) |#4| $) 135)) (-3694 (((-112) |#3| $) 80)) (-1731 (((-112) $ $) 6)) (-3492 (((-766) $) 46 (|has| $ (-6 -4402)))))
+((-3590 (((-112) |#5| |#5|) 37)) (-1914 (((-112) |#5| |#5|) 51)) (-4346 (((-112) |#5| (-639 |#5|)) 74) (((-112) |#5| |#5|) 60)) (-4077 (((-112) (-639 |#4|) (-639 |#4|)) 57)) (-2097 (((-112) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) 62)) (-4089 (((-1261)) 33)) (-1983 (((-1261) (-1150) (-1150) (-1150)) 29)) (-4257 (((-639 |#5|) (-639 |#5|)) 81)) (-1550 (((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)))) 79)) (-3579 (((-639 (-2 (|:| -3339 (-639 |#4|)) (|:| -1501 |#5|) (|:| |ineq| (-639 |#4|)))) (-639 |#4|) (-639 |#5|) (-112) (-112)) 101)) (-2027 (((-112) |#5| |#5|) 46)) (-2916 (((-3 (-112) "failed") |#5| |#5|) 70)) (-2838 (((-112) (-639 |#4|) (-639 |#4|)) 56)) (-3338 (((-112) (-639 |#4|) (-639 |#4|)) 58)) (-1789 (((-112) (-639 |#4|) (-639 |#4|)) 59)) (-1902 (((-3 (-2 (|:| -3339 (-639 |#4|)) (|:| -1501 |#5|) (|:| |ineq| (-639 |#4|))) "failed") (-639 |#4|) |#5| (-639 |#4|) (-112) (-112) (-112) (-112) (-112)) 97)) (-1586 (((-639 |#5|) (-639 |#5|)) 42)))
+(((-1099 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1983 ((-1261) (-1150) (-1150) (-1150))) (-15 -4089 ((-1261))) (-15 -3590 ((-112) |#5| |#5|)) (-15 -1586 ((-639 |#5|) (-639 |#5|))) (-15 -2027 ((-112) |#5| |#5|)) (-15 -1914 ((-112) |#5| |#5|)) (-15 -4077 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2838 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -3338 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -1789 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2916 ((-3 (-112) "failed") |#5| |#5|)) (-15 -4346 ((-112) |#5| |#5|)) (-15 -4346 ((-112) |#5| (-639 |#5|))) (-15 -4257 ((-639 |#5|) (-639 |#5|))) (-15 -2097 ((-112) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)))) (-15 -1550 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) (-15 -3579 ((-639 (-2 (|:| -3339 (-639 |#4|)) (|:| -1501 |#5|) (|:| |ineq| (-639 |#4|)))) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -1902 ((-3 (-2 (|:| -3339 (-639 |#4|)) (|:| -1501 |#5|) (|:| |ineq| (-639 |#4|))) "failed") (-639 |#4|) |#5| (-639 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|)) (T -1099))
+((-1902 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *9 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| -3339 (-639 *9)) (|:| -1501 *4) (|:| |ineq| (-639 *9)))) (-5 *1 (-1099 *6 *7 *8 *9 *4)) (-5 *3 (-639 *9)) (-4 *4 (-1064 *6 *7 *8 *9)))) (-3579 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-639 *10)) (-5 *5 (-112)) (-4 *10 (-1064 *6 *7 *8 *9)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *9 (-1058 *6 *7 *8)) (-5 *2 (-639 (-2 (|:| -3339 (-639 *9)) (|:| -1501 *10) (|:| |ineq| (-639 *9))))) (-5 *1 (-1099 *6 *7 *8 *9 *10)) (-5 *3 (-639 *9)))) (-1550 (*1 *2 *2) (-12 (-5 *2 (-639 (-2 (|:| |val| (-639 *6)) (|:| -1501 *7)))) (-4 *6 (-1058 *3 *4 *5)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-1099 *3 *4 *5 *6 *7)))) (-2097 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1501 *8))) (-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1064 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *8)))) (-4257 (*1 *2 *2) (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *1 (-1099 *3 *4 *5 *6 *7)))) (-4346 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1099 *5 *6 *7 *8 *3)))) (-4346 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-2916 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-1789 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-3338 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-2838 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-4077 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-1914 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-2027 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-1586 (*1 *2 *2) (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *1 (-1099 *3 *4 *5 *6 *7)))) (-3590 (*1 *2 *3 *3) (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))) (-4089 (*1 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261)) (-5 *1 (-1099 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))) (-1983 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261)) (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1983 ((-1261) (-1150) (-1150) (-1150))) (-15 -4089 ((-1261))) (-15 -3590 ((-112) |#5| |#5|)) (-15 -1586 ((-639 |#5|) (-639 |#5|))) (-15 -2027 ((-112) |#5| |#5|)) (-15 -1914 ((-112) |#5| |#5|)) (-15 -4077 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2838 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -3338 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -1789 ((-112) (-639 |#4|) (-639 |#4|))) (-15 -2916 ((-3 (-112) "failed") |#5| |#5|)) (-15 -4346 ((-112) |#5| |#5|)) (-15 -4346 ((-112) |#5| (-639 |#5|))) (-15 -4257 ((-639 |#5|) (-639 |#5|))) (-15 -2097 ((-112) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)))) (-15 -1550 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) (-15 -3579 ((-639 (-2 (|:| -3339 (-639 |#4|)) (|:| -1501 |#5|) (|:| |ineq| (-639 |#4|)))) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -1902 ((-3 (-2 (|:| -3339 (-639 |#4|)) (|:| -1501 |#5|) (|:| |ineq| (-639 |#4|))) "failed") (-639 |#4|) |#5| (-639 |#4|) (-112) (-112) (-112) (-112) (-112))))
+((-3155 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#5|) 95)) (-3140 (((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) |#4| |#4| |#5|) 71)) (-3968 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5|) 89)) (-3977 (((-639 |#5|) |#4| |#5|) 109)) (-2807 (((-639 |#5|) |#4| |#5|) 116)) (-2701 (((-639 |#5|) |#4| |#5|) 117)) (-3651 (((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|) 96)) (-2479 (((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|) 115)) (-2212 (((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|) 46) (((-112) |#4| |#5|) 53)) (-2074 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) |#3| (-112)) 83) (((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5| (-112) (-112)) 50)) (-4204 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5|) 78)) (-3005 (((-1261)) 37)) (-2125 (((-1261)) 26)) (-4354 (((-1261) (-1150) (-1150) (-1150)) 33)) (-3845 (((-1261) (-1150) (-1150) (-1150)) 22)))
+(((-1100 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3845 ((-1261) (-1150) (-1150) (-1150))) (-15 -2125 ((-1261))) (-15 -4354 ((-1261) (-1150) (-1150) (-1150))) (-15 -3005 ((-1261))) (-15 -3140 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) |#4| |#4| |#5|)) (-15 -2074 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2074 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) |#3| (-112))) (-15 -4204 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5|)) (-15 -3968 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5|)) (-15 -2212 ((-112) |#4| |#5|)) (-15 -3651 ((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|)) (-15 -3977 ((-639 |#5|) |#4| |#5|)) (-15 -2479 ((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|)) (-15 -2807 ((-639 |#5|) |#4| |#5|)) (-15 -2212 ((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|)) (-15 -2701 ((-639 |#5|) |#4| |#5|)) (-15 -3155 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#5|))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1064 |#1| |#2| |#3| |#4|)) (T -1100))
+((-3155 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2701 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4)) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2212 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1501 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2807 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4)) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2479 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1501 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3977 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4)) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3651 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1501 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2212 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3968 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-4204 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-2074 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1501 *9)))) (-5 *5 (-112)) (-4 *8 (-1058 *6 *7 *4)) (-4 *9 (-1064 *6 *7 *4 *8)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *4 (-845)) (-5 *2 (-639 (-2 (|:| |val| *8) (|:| -1501 *9)))) (-5 *1 (-1100 *6 *7 *4 *8 *9)))) (-2074 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4)))) (-5 *1 (-1100 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3)))) (-3140 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))) (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))) (-3005 (*1 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261)) (-5 *1 (-1100 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))) (-4354 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))) (-2125 (*1 *2) (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261)) (-5 *1 (-1100 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))) (-3845 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261)) (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
+(-10 -7 (-15 -3845 ((-1261) (-1150) (-1150) (-1150))) (-15 -2125 ((-1261))) (-15 -4354 ((-1261) (-1150) (-1150) (-1150))) (-15 -3005 ((-1261))) (-15 -3140 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) |#4| |#4| |#5|)) (-15 -2074 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -2074 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) |#3| (-112))) (-15 -4204 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5|)) (-15 -3968 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#4| |#5|)) (-15 -2212 ((-112) |#4| |#5|)) (-15 -3651 ((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|)) (-15 -3977 ((-639 |#5|) |#4| |#5|)) (-15 -2479 ((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|)) (-15 -2807 ((-639 |#5|) |#4| |#5|)) (-15 -2212 ((-639 (-2 (|:| |val| (-112)) (|:| -1501 |#5|))) |#4| |#5|)) (-15 -2701 ((-639 |#5|) |#4| |#5|)) (-15 -3155 ((-639 (-2 (|:| |val| |#4|) (|:| -1501 |#5|))) |#4| |#5|)))
+((-4041 (((-112) $ $) 7)) (-1330 (((-639 (-2 (|:| -1449 $) (|:| -3315 (-639 |#4|)))) (-639 |#4|)) 85)) (-3672 (((-639 $) (-639 |#4|)) 86) (((-639 $) (-639 |#4|) (-112)) 111)) (-1401 (((-639 |#3|) $) 33)) (-2799 (((-112) $) 26)) (-4370 (((-112) $) 17 (|has| |#1| (-554)))) (-4177 (((-112) |#4| $) 101) (((-112) $) 97)) (-3623 ((|#4| |#4| $) 92)) (-1977 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 $))) |#4| $) 126)) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |#3|) 27)) (-3735 (((-112) $ (-766)) 44)) (-3556 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4403))) (((-3 |#4| "failed") $ |#3|) 79)) (-3329 (($) 45 T CONST)) (-2169 (((-112) $) 22 (|has| |#1| (-554)))) (-2183 (((-112) $ $) 24 (|has| |#1| (-554)))) (-2864 (((-112) $ $) 23 (|has| |#1| (-554)))) (-4219 (((-112) $) 25 (|has| |#1| (-554)))) (-4227 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-2037 (((-639 |#4|) (-639 |#4|) $) 18 (|has| |#1| (-554)))) (-4230 (((-639 |#4|) (-639 |#4|) $) 19 (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 36)) (-3960 (($ (-639 |#4|)) 35)) (-1434 (((-3 $ "failed") $) 82)) (-3255 ((|#4| |#4| $) 89)) (-1459 (($ $) 68 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#4| $) 67 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4403)))) (-1441 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-554)))) (-3300 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-2227 ((|#4| |#4| $) 87)) (-1954 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4403))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4403))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-1471 (((-2 (|:| -1449 (-639 |#4|)) (|:| -3315 (-639 |#4|))) $) 105)) (-3189 (((-112) |#4| $) 136)) (-2633 (((-112) |#4| $) 133)) (-2813 (((-112) |#4| $) 137) (((-112) $) 134)) (-1720 (((-639 |#4|) $) 52 (|has| $ (-6 -4403)))) (-1493 (((-112) |#4| $) 104) (((-112) $) 103)) (-3761 ((|#3| $) 34)) (-4172 (((-112) $ (-766)) 43)) (-2123 (((-639 |#4|) $) 53 (|has| $ (-6 -4403)))) (-1572 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#4| |#4|) $) 47)) (-3133 (((-639 |#3|) $) 32)) (-3112 (((-112) |#3| $) 31)) (-4147 (((-112) $ (-766)) 42)) (-3696 (((-1150) $) 9)) (-4093 (((-3 |#4| (-639 $)) |#4| |#4| $) 128)) (-2672 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 $))) |#4| |#4| $) 127)) (-1504 (((-3 |#4| "failed") $) 83)) (-2334 (((-639 $) |#4| $) 129)) (-4302 (((-3 (-112) (-639 $)) |#4| $) 132)) (-3792 (((-639 (-2 (|:| |val| (-112)) (|:| -1501 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-4169 (((-639 $) |#4| $) 125) (((-639 $) (-639 |#4|) $) 124) (((-639 $) (-639 |#4|) (-639 $)) 123) (((-639 $) |#4| (-639 $)) 122)) (-1997 (($ |#4| $) 117) (($ (-639 |#4|) $) 116)) (-2063 (((-639 |#4|) $) 107)) (-1645 (((-112) |#4| $) 99) (((-112) $) 95)) (-2651 ((|#4| |#4| $) 90)) (-1789 (((-112) $ $) 110)) (-4123 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-554)))) (-2830 (((-112) |#4| $) 100) (((-112) $) 96)) (-1630 ((|#4| |#4| $) 91)) (-1709 (((-1112) $) 10)) (-1421 (((-3 |#4| "failed") $) 84)) (-1963 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-4333 (((-3 $ "failed") $ |#4|) 78)) (-4316 (($ $ |#4|) 77) (((-639 $) |#4| $) 115) (((-639 $) |#4| (-639 $)) 114) (((-639 $) (-639 |#4|) $) 113) (((-639 $) (-639 |#4|) (-639 $)) 112)) (-3008 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) 59 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) 57 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) 56 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-1452 (((-112) $ $) 38)) (-3087 (((-112) $) 41)) (-1663 (($) 40)) (-2250 (((-766) $) 106)) (-1723 (((-766) |#4| $) 54 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) (((-766) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4403)))) (-4220 (($ $) 39)) (-4208 (((-535) $) 69 (|has| |#4| (-610 (-535))))) (-4064 (($ (-639 |#4|)) 60)) (-2316 (($ $ |#3|) 28)) (-2180 (($ $ |#3|) 30)) (-2209 (($ $) 88)) (-1962 (($ $ |#3|) 29)) (-4053 (((-857) $) 11) (((-639 |#4|) $) 37)) (-4157 (((-766) $) 76 (|has| |#3| (-367)))) (-4168 (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2350 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) 98)) (-4125 (((-639 $) |#4| $) 121) (((-639 $) |#4| (-639 $)) 120) (((-639 $) (-639 |#4|) $) 119) (((-639 $) (-639 |#4|) (-639 $)) 118)) (-2879 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4403)))) (-3278 (((-639 |#3|) $) 81)) (-1972 (((-112) |#4| $) 135)) (-3782 (((-112) |#3| $) 80)) (-1733 (((-112) $ $) 6)) (-3492 (((-766) $) 46 (|has| $ (-6 -4403)))))
(((-1101 |#1| |#2| |#3| |#4|) (-139) (-451) (-788) (-845) (-1058 |t#1| |t#2| |t#3|)) (T -1101))
NIL
(-13 (-1064 |t#1| |t#2| |t#3| |t#4|))
(((-34) . T) ((-102) . T) ((-609 (-639 |#4|)) . T) ((-609 (-857)) . T) ((-150 |#4|) . T) ((-610 (-535)) |has| |#4| (-610 (-535))) ((-308 |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))) ((-488 |#4|) . T) ((-513 |#4| |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))) ((-971 |#1| |#2| |#3| |#4|) . T) ((-1064 |#1| |#2| |#3| |#4|) . T) ((-1092) . T) ((-1200 |#1| |#2| |#3| |#4|) . T) ((-1207) . T))
-((-2896 (((-639 (-562)) (-562) (-562) (-562)) 22)) (-3115 (((-639 (-562)) (-562) (-562) (-562)) 12)) (-1508 (((-639 (-562)) (-562) (-562) (-562)) 18)) (-1734 (((-562) (-562) (-562)) 9)) (-4115 (((-1256 (-562)) (-639 (-562)) (-1256 (-562)) (-562)) 45) (((-1256 (-562)) (-1256 (-562)) (-1256 (-562)) (-562)) 40)) (-2486 (((-639 (-562)) (-639 (-562)) (-639 (-562)) (-112)) 27)) (-1519 (((-683 (-562)) (-639 (-562)) (-639 (-562)) (-683 (-562))) 44)) (-3992 (((-683 (-562)) (-639 (-562)) (-639 (-562))) 32)) (-4317 (((-639 (-683 (-562))) (-639 (-562))) 34)) (-2877 (((-639 (-562)) (-639 (-562)) (-639 (-562)) (-683 (-562))) 48)) (-1455 (((-683 (-562)) (-639 (-562)) (-639 (-562)) (-639 (-562))) 56)))
-(((-1102) (-10 -7 (-15 -1455 ((-683 (-562)) (-639 (-562)) (-639 (-562)) (-639 (-562)))) (-15 -2877 ((-639 (-562)) (-639 (-562)) (-639 (-562)) (-683 (-562)))) (-15 -4317 ((-639 (-683 (-562))) (-639 (-562)))) (-15 -3992 ((-683 (-562)) (-639 (-562)) (-639 (-562)))) (-15 -1519 ((-683 (-562)) (-639 (-562)) (-639 (-562)) (-683 (-562)))) (-15 -2486 ((-639 (-562)) (-639 (-562)) (-639 (-562)) (-112))) (-15 -4115 ((-1256 (-562)) (-1256 (-562)) (-1256 (-562)) (-562))) (-15 -4115 ((-1256 (-562)) (-639 (-562)) (-1256 (-562)) (-562))) (-15 -1734 ((-562) (-562) (-562))) (-15 -1508 ((-639 (-562)) (-562) (-562) (-562))) (-15 -3115 ((-639 (-562)) (-562) (-562) (-562))) (-15 -2896 ((-639 (-562)) (-562) (-562) (-562))))) (T -1102))
-((-2896 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-1102)) (-5 *3 (-562)))) (-3115 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-1102)) (-5 *3 (-562)))) (-1508 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-1102)) (-5 *3 (-562)))) (-1734 (*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1102)))) (-4115 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1256 (-562))) (-5 *3 (-639 (-562))) (-5 *4 (-562)) (-5 *1 (-1102)))) (-4115 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1256 (-562))) (-5 *3 (-562)) (-5 *1 (-1102)))) (-2486 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-639 (-562))) (-5 *3 (-112)) (-5 *1 (-1102)))) (-1519 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-683 (-562))) (-5 *3 (-639 (-562))) (-5 *1 (-1102)))) (-3992 (*1 *2 *3 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-1102)))) (-4317 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-639 (-683 (-562)))) (-5 *1 (-1102)))) (-2877 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-639 (-562))) (-5 *3 (-683 (-562))) (-5 *1 (-1102)))) (-1455 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-1102)))))
-(-10 -7 (-15 -1455 ((-683 (-562)) (-639 (-562)) (-639 (-562)) (-639 (-562)))) (-15 -2877 ((-639 (-562)) (-639 (-562)) (-639 (-562)) (-683 (-562)))) (-15 -4317 ((-639 (-683 (-562))) (-639 (-562)))) (-15 -3992 ((-683 (-562)) (-639 (-562)) (-639 (-562)))) (-15 -1519 ((-683 (-562)) (-639 (-562)) (-639 (-562)) (-683 (-562)))) (-15 -2486 ((-639 (-562)) (-639 (-562)) (-639 (-562)) (-112))) (-15 -4115 ((-1256 (-562)) (-1256 (-562)) (-1256 (-562)) (-562))) (-15 -4115 ((-1256 (-562)) (-639 (-562)) (-1256 (-562)) (-562))) (-15 -1734 ((-562) (-562) (-562))) (-15 -1508 ((-639 (-562)) (-562) (-562) (-562))) (-15 -3115 ((-639 (-562)) (-562) (-562) (-562))) (-15 -2896 ((-639 (-562)) (-562) (-562) (-562))))
+((-1717 (((-639 (-562)) (-562) (-562) (-562)) 22)) (-3003 (((-639 (-562)) (-562) (-562) (-562)) 12)) (-2635 (((-639 (-562)) (-562) (-562) (-562)) 18)) (-3983 (((-562) (-562) (-562)) 9)) (-3496 (((-1256 (-562)) (-639 (-562)) (-1256 (-562)) (-562)) 45) (((-1256 (-562)) (-1256 (-562)) (-1256 (-562)) (-562)) 40)) (-1872 (((-639 (-562)) (-639 (-562)) (-639 (-562)) (-112)) 27)) (-2739 (((-683 (-562)) (-639 (-562)) (-639 (-562)) (-683 (-562))) 44)) (-3654 (((-683 (-562)) (-639 (-562)) (-639 (-562))) 32)) (-1751 (((-639 (-683 (-562))) (-639 (-562))) 34)) (-1514 (((-639 (-562)) (-639 (-562)) (-639 (-562)) (-683 (-562))) 48)) (-2321 (((-683 (-562)) (-639 (-562)) (-639 (-562)) (-639 (-562))) 56)))
+(((-1102) (-10 -7 (-15 -2321 ((-683 (-562)) (-639 (-562)) (-639 (-562)) (-639 (-562)))) (-15 -1514 ((-639 (-562)) (-639 (-562)) (-639 (-562)) (-683 (-562)))) (-15 -1751 ((-639 (-683 (-562))) (-639 (-562)))) (-15 -3654 ((-683 (-562)) (-639 (-562)) (-639 (-562)))) (-15 -2739 ((-683 (-562)) (-639 (-562)) (-639 (-562)) (-683 (-562)))) (-15 -1872 ((-639 (-562)) (-639 (-562)) (-639 (-562)) (-112))) (-15 -3496 ((-1256 (-562)) (-1256 (-562)) (-1256 (-562)) (-562))) (-15 -3496 ((-1256 (-562)) (-639 (-562)) (-1256 (-562)) (-562))) (-15 -3983 ((-562) (-562) (-562))) (-15 -2635 ((-639 (-562)) (-562) (-562) (-562))) (-15 -3003 ((-639 (-562)) (-562) (-562) (-562))) (-15 -1717 ((-639 (-562)) (-562) (-562) (-562))))) (T -1102))
+((-1717 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-1102)) (-5 *3 (-562)))) (-3003 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-1102)) (-5 *3 (-562)))) (-2635 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-1102)) (-5 *3 (-562)))) (-3983 (*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1102)))) (-3496 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1256 (-562))) (-5 *3 (-639 (-562))) (-5 *4 (-562)) (-5 *1 (-1102)))) (-3496 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1256 (-562))) (-5 *3 (-562)) (-5 *1 (-1102)))) (-1872 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-639 (-562))) (-5 *3 (-112)) (-5 *1 (-1102)))) (-2739 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-683 (-562))) (-5 *3 (-639 (-562))) (-5 *1 (-1102)))) (-3654 (*1 *2 *3 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-1102)))) (-1751 (*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-639 (-683 (-562)))) (-5 *1 (-1102)))) (-1514 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-639 (-562))) (-5 *3 (-683 (-562))) (-5 *1 (-1102)))) (-2321 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-1102)))))
+(-10 -7 (-15 -2321 ((-683 (-562)) (-639 (-562)) (-639 (-562)) (-639 (-562)))) (-15 -1514 ((-639 (-562)) (-639 (-562)) (-639 (-562)) (-683 (-562)))) (-15 -1751 ((-639 (-683 (-562))) (-639 (-562)))) (-15 -3654 ((-683 (-562)) (-639 (-562)) (-639 (-562)))) (-15 -2739 ((-683 (-562)) (-639 (-562)) (-639 (-562)) (-683 (-562)))) (-15 -1872 ((-639 (-562)) (-639 (-562)) (-639 (-562)) (-112))) (-15 -3496 ((-1256 (-562)) (-1256 (-562)) (-1256 (-562)) (-562))) (-15 -3496 ((-1256 (-562)) (-639 (-562)) (-1256 (-562)) (-562))) (-15 -3983 ((-562) (-562) (-562))) (-15 -2635 ((-639 (-562)) (-562) (-562) (-562))) (-15 -3003 ((-639 (-562)) (-562) (-562) (-562))) (-15 -1717 ((-639 (-562)) (-562) (-562) (-562))))
((** (($ $ (-916)) 10)))
(((-1103 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-916)))) (-1104)) (T -1103))
NIL
(-10 -8 (-15 ** (|#1| |#1| (-916))))
-((-4041 (((-112) $ $) 7)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1731 (((-112) $ $) 6)) (** (($ $ (-916)) 13)) (* (($ $ $) 14)))
+((-4041 (((-112) $ $) 7)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1733 (((-112) $ $) 6)) (** (($ $ (-916)) 13)) (* (($ $ $) 14)))
(((-1104) (-139)) (T -1104))
((* (*1 *1 *1 *1) (-4 *1 (-1104))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1104)) (-5 *2 (-916)))))
(-13 (-1092) (-10 -8 (-15 * ($ $ $)) (-15 ** ($ $ (-916)))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL (|has| |#3| (-1092)))) (-1952 (((-112) $) NIL (|has| |#3| (-130)))) (-3901 (($ (-916)) NIL (|has| |#3| (-1044)))) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-3659 (($ $ $) NIL (|has| |#3| (-788)))) (-3214 (((-3 $ "failed") $ $) NIL (|has| |#3| (-130)))) (-4336 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| |#3| (-367)))) (-2277 (((-562) $) NIL (|has| |#3| (-843)))) (-4200 ((|#3| $ (-562) |#3|) NIL (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1092)))) (-3961 (((-562) $) NIL (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092)))) (((-406 (-562)) $) NIL (-12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092)))) ((|#3| $) NIL (|has| |#3| (-1092)))) (-2406 (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044)))) (((-2 (|:| -1545 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 $) (-1256 $)) NIL (|has| |#3| (-1044))) (((-683 |#3|) (-683 $)) NIL (|has| |#3| (-1044)))) (-3668 (((-3 $ "failed") $) NIL (|has| |#3| (-721)))) (-1448 (($) NIL (|has| |#3| (-367)))) (-1505 ((|#3| $ (-562) |#3|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#3| $ (-562)) 12)) (-3519 (((-112) $) NIL (|has| |#3| (-843)))) (-1720 (((-639 |#3|) $) NIL (|has| $ (-6 -4402)))) (-1957 (((-112) $) NIL (|has| |#3| (-721)))) (-3392 (((-112) $) NIL (|has| |#3| (-843)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1912 (((-639 |#3|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#3| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1490 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#3| |#3|) $) NIL)) (-1999 (((-916) $) NIL (|has| |#3| (-367)))) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#3| (-1092)))) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-2466 (($ (-916)) NIL (|has| |#3| (-367)))) (-1709 (((-1112) $) NIL (|has| |#3| (-1092)))) (-1421 ((|#3| $) NIL (|has| (-562) (-845)))) (-2716 (($ $ |#3|) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#3|))) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-293 |#3|)) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-639 |#3|) (-639 |#3|)) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#3| (-1092))))) (-2411 (((-639 |#3|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#3| $ (-562) |#3|) NIL) ((|#3| $ (-562)) NIL)) (-4177 ((|#3| $ $) NIL (|has| |#3| (-1044)))) (-1679 (($ (-1256 |#3|)) NIL)) (-3627 (((-133)) NIL (|has| |#3| (-362)))) (-4029 (($ $) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1 |#3| |#3|) (-766)) NIL (|has| |#3| (-1044))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1044)))) (-1723 (((-766) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4402))) (((-766) |#3| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#3| (-1092))))) (-4220 (($ $) NIL)) (-4054 (((-1256 |#3|) $) NIL) (($ (-562)) NIL (-4037 (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092))) (|has| |#3| (-1044)))) (($ (-406 (-562))) NIL (-12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092)))) (($ |#3|) NIL (|has| |#3| (-1092))) (((-857) $) NIL (|has| |#3| (-609 (-857))))) (-2579 (((-766)) NIL (|has| |#3| (-1044)))) (-1744 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4402)))) (-3526 (($ $) NIL (|has| |#3| (-843)))) (-2286 (($) NIL (|has| |#3| (-130)) CONST)) (-2294 (($) NIL (|has| |#3| (-721)) CONST)) (-3114 (($ $) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1 |#3| |#3|) (-766)) NIL (|has| |#3| (-1044))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1044)))) (-1798 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1772 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1731 (((-112) $ $) NIL (|has| |#3| (-1092)))) (-1785 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1759 (((-112) $ $) 17 (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1859 (($ $ |#3|) NIL (|has| |#3| (-362)))) (-1848 (($ $ $) NIL (|has| |#3| (-1044))) (($ $) NIL (|has| |#3| (-1044)))) (-1835 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-766)) NIL (|has| |#3| (-721))) (($ $ (-916)) NIL (|has| |#3| (-721)))) (* (($ (-562) $) NIL (|has| |#3| (-1044))) (($ $ $) NIL (|has| |#3| (-721))) (($ $ |#3|) NIL (|has| |#3| (-721))) (($ |#3| $) NIL (|has| |#3| (-721))) (($ (-766) $) NIL (|has| |#3| (-130))) (($ (-916) $) NIL (|has| |#3| (-25)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL (|has| |#3| (-1092)))) (-4325 (((-112) $) NIL (|has| |#3| (-130)))) (-2211 (($ (-916)) NIL (|has| |#3| (-1044)))) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1593 (($ $ $) NIL (|has| |#3| (-788)))) (-2781 (((-3 $ "failed") $ $) NIL (|has| |#3| (-130)))) (-3735 (((-112) $ (-766)) NIL)) (-1382 (((-766)) NIL (|has| |#3| (-367)))) (-1587 (((-562) $) NIL (|has| |#3| (-843)))) (-4200 ((|#3| $ (-562) |#3|) NIL (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1092)))) (-3960 (((-562) $) NIL (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092)))) (((-406 (-562)) $) NIL (-12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092)))) ((|#3| $) NIL (|has| |#3| (-1092)))) (-3449 (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#3| (-635 (-562))) (|has| |#3| (-1044)))) (((-2 (|:| -1767 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 $) (-1256 $)) NIL (|has| |#3| (-1044))) (((-683 |#3|) (-683 $)) NIL (|has| |#3| (-1044)))) (-1694 (((-3 $ "failed") $) NIL (|has| |#3| (-721)))) (-1447 (($) NIL (|has| |#3| (-367)))) (-1507 ((|#3| $ (-562) |#3|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#3| $ (-562)) 12)) (-2696 (((-112) $) NIL (|has| |#3| (-843)))) (-1720 (((-639 |#3|) $) NIL (|has| $ (-6 -4403)))) (-4367 (((-112) $) NIL (|has| |#3| (-721)))) (-3855 (((-112) $) NIL (|has| |#3| (-843)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-2123 (((-639 |#3|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#3| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1491 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#3| |#3|) $) NIL)) (-3549 (((-916) $) NIL (|has| |#3| (-367)))) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#3| (-1092)))) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-2464 (($ (-916)) NIL (|has| |#3| (-367)))) (-1709 (((-1112) $) NIL (|has| |#3| (-1092)))) (-1421 ((|#3| $) NIL (|has| (-562) (-845)))) (-3510 (($ $ |#3|) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#3|))) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-293 |#3|)) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092)))) (($ $ (-639 |#3|) (-639 |#3|)) NIL (-12 (|has| |#3| (-308 |#3|)) (|has| |#3| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#3| (-1092))))) (-2366 (((-639 |#3|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#3| $ (-562) |#3|) NIL) ((|#3| $ (-562)) NIL)) (-2852 ((|#3| $ $) NIL (|has| |#3| (-1044)))) (-1678 (($ (-1256 |#3|)) NIL)) (-4340 (((-133)) NIL (|has| |#3| (-362)))) (-4029 (($ $) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1 |#3| |#3|) (-766)) NIL (|has| |#3| (-1044))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1044)))) (-1723 (((-766) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4403))) (((-766) |#3| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#3| (-1092))))) (-4220 (($ $) NIL)) (-4053 (((-1256 |#3|) $) NIL) (($ (-562)) NIL (-4037 (-12 (|has| |#3| (-1033 (-562))) (|has| |#3| (-1092))) (|has| |#3| (-1044)))) (($ (-406 (-562))) NIL (-12 (|has| |#3| (-1033 (-406 (-562)))) (|has| |#3| (-1092)))) (($ |#3|) NIL (|has| |#3| (-1092))) (((-857) $) NIL (|has| |#3| (-609 (-857))))) (-1568 (((-766)) NIL (|has| |#3| (-1044)))) (-2879 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4403)))) (-2757 (($ $) NIL (|has| |#3| (-843)))) (-2285 (($) NIL (|has| |#3| (-130)) CONST)) (-2294 (($) NIL (|has| |#3| (-721)) CONST)) (-3113 (($ $) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))) (($ $ (-766)) NIL (-12 (|has| |#3| (-232)) (|has| |#3| (-1044)))) (($ $ (-1168)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#3| (-895 (-1168))) (|has| |#3| (-1044)))) (($ $ (-1 |#3| |#3|) (-766)) NIL (|has| |#3| (-1044))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1044)))) (-1798 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1771 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1733 (((-112) $ $) NIL (|has| |#3| (-1092)))) (-1785 (((-112) $ $) NIL (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1761 (((-112) $ $) 17 (-4037 (|has| |#3| (-788)) (|has| |#3| (-843))))) (-1859 (($ $ |#3|) NIL (|has| |#3| (-362)))) (-1847 (($ $ $) NIL (|has| |#3| (-1044))) (($ $) NIL (|has| |#3| (-1044)))) (-1836 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-766)) NIL (|has| |#3| (-721))) (($ $ (-916)) NIL (|has| |#3| (-721)))) (* (($ (-562) $) NIL (|has| |#3| (-1044))) (($ $ $) NIL (|has| |#3| (-721))) (($ $ |#3|) NIL (|has| |#3| (-721))) (($ |#3| $) NIL (|has| |#3| (-721))) (($ (-766) $) NIL (|has| |#3| (-130))) (($ (-916) $) NIL (|has| |#3| (-25)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-1105 |#1| |#2| |#3|) (-237 |#1| |#3|) (-766) (-766) (-788)) (T -1105))
NIL
(-237 |#1| |#3|)
-((-1528 (((-639 (-1229 |#2| |#1|)) (-1229 |#2| |#1|) (-1229 |#2| |#1|)) 36)) (-4306 (((-562) (-1229 |#2| |#1|)) 68 (|has| |#1| (-451)))) (-3238 (((-562) (-1229 |#2| |#1|)) 53)) (-3140 (((-639 (-1229 |#2| |#1|)) (-1229 |#2| |#1|) (-1229 |#2| |#1|)) 44)) (-1769 (((-562) (-1229 |#2| |#1|) (-1229 |#2| |#1|)) 67 (|has| |#1| (-451)))) (-4073 (((-639 |#1|) (-1229 |#2| |#1|) (-1229 |#2| |#1|)) 47)) (-3578 (((-562) (-1229 |#2| |#1|) (-1229 |#2| |#1|)) 52)))
-(((-1106 |#1| |#2|) (-10 -7 (-15 -1528 ((-639 (-1229 |#2| |#1|)) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -3140 ((-639 (-1229 |#2| |#1|)) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -4073 ((-639 |#1|) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -3578 ((-562) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -3238 ((-562) (-1229 |#2| |#1|))) (IF (|has| |#1| (-451)) (PROGN (-15 -1769 ((-562) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -4306 ((-562) (-1229 |#2| |#1|)))) |%noBranch|)) (-815) (-1168)) (T -1106))
-((-4306 (*1 *2 *3) (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-451)) (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))) (-1769 (*1 *2 *3 *3) (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-451)) (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))) (-3238 (*1 *2 *3) (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))) (-3578 (*1 *2 *3 *3) (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))) (-4073 (*1 *2 *3 *3) (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-639 *4)) (-5 *1 (-1106 *4 *5)))) (-3140 (*1 *2 *3 *3) (-12 (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-639 (-1229 *5 *4))) (-5 *1 (-1106 *4 *5)) (-5 *3 (-1229 *5 *4)))) (-1528 (*1 *2 *3 *3) (-12 (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-639 (-1229 *5 *4))) (-5 *1 (-1106 *4 *5)) (-5 *3 (-1229 *5 *4)))))
-(-10 -7 (-15 -1528 ((-639 (-1229 |#2| |#1|)) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -3140 ((-639 (-1229 |#2| |#1|)) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -4073 ((-639 |#1|) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -3578 ((-562) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -3238 ((-562) (-1229 |#2| |#1|))) (IF (|has| |#1| (-451)) (PROGN (-15 -1769 ((-562) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -4306 ((-562) (-1229 |#2| |#1|)))) |%noBranch|))
-((-4041 (((-112) $ $) NIL)) (-4008 (($ (-505) (-1110)) 14)) (-2845 (((-1110) $) 20)) (-3254 (((-505) $) 17)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 28) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-1107) (-13 (-1075) (-10 -8 (-15 -4008 ($ (-505) (-1110))) (-15 -3254 ((-505) $)) (-15 -2845 ((-1110) $))))) (T -1107))
-((-4008 (*1 *1 *2 *3) (-12 (-5 *2 (-505)) (-5 *3 (-1110)) (-5 *1 (-1107)))) (-3254 (*1 *2 *1) (-12 (-5 *2 (-505)) (-5 *1 (-1107)))) (-2845 (*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-1107)))))
-(-13 (-1075) (-10 -8 (-15 -4008 ($ (-505) (-1110))) (-15 -3254 ((-505) $)) (-15 -2845 ((-1110) $))))
-((-2277 (((-3 (-562) "failed") |#2| (-1168) |#2| (-1150)) 17) (((-3 (-562) "failed") |#2| (-1168) (-838 |#2|)) 15) (((-3 (-562) "failed") |#2|) 54)))
-(((-1108 |#1| |#2|) (-10 -7 (-15 -2277 ((-3 (-562) "failed") |#2|)) (-15 -2277 ((-3 (-562) "failed") |#2| (-1168) (-838 |#2|))) (-15 -2277 ((-3 (-562) "failed") |#2| (-1168) |#2| (-1150)))) (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)) (-451)) (-13 (-27) (-1192) (-429 |#1|))) (T -1108))
-((-2277 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-1150)) (-4 *6 (-13 (-554) (-845) (-1033 *2) (-635 *2) (-451))) (-5 *2 (-562)) (-5 *1 (-1108 *6 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *6))))) (-2277 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-838 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-554) (-845) (-1033 *2) (-635 *2) (-451))) (-5 *2 (-562)) (-5 *1 (-1108 *6 *3)))) (-2277 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-554) (-845) (-1033 *2) (-635 *2) (-451))) (-5 *2 (-562)) (-5 *1 (-1108 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))))
-(-10 -7 (-15 -2277 ((-3 (-562) "failed") |#2|)) (-15 -2277 ((-3 (-562) "failed") |#2| (-1168) (-838 |#2|))) (-15 -2277 ((-3 (-562) "failed") |#2| (-1168) |#2| (-1150))))
-((-2277 (((-3 (-562) "failed") (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|)) (-1150)) 35) (((-3 (-562) "failed") (-406 (-947 |#1|)) (-1168) (-838 (-406 (-947 |#1|)))) 30) (((-3 (-562) "failed") (-406 (-947 |#1|))) 13)))
-(((-1109 |#1|) (-10 -7 (-15 -2277 ((-3 (-562) "failed") (-406 (-947 |#1|)))) (-15 -2277 ((-3 (-562) "failed") (-406 (-947 |#1|)) (-1168) (-838 (-406 (-947 |#1|))))) (-15 -2277 ((-3 (-562) "failed") (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|)) (-1150)))) (-451)) (T -1109))
-((-2277 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-406 (-947 *6))) (-5 *4 (-1168)) (-5 *5 (-1150)) (-4 *6 (-451)) (-5 *2 (-562)) (-5 *1 (-1109 *6)))) (-2277 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-838 (-406 (-947 *6)))) (-5 *3 (-406 (-947 *6))) (-4 *6 (-451)) (-5 *2 (-562)) (-5 *1 (-1109 *6)))) (-2277 (*1 *2 *3) (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-451)) (-5 *2 (-562)) (-5 *1 (-1109 *4)))))
-(-10 -7 (-15 -2277 ((-3 (-562) "failed") (-406 (-947 |#1|)))) (-15 -2277 ((-3 (-562) "failed") (-406 (-947 |#1|)) (-1168) (-838 (-406 (-947 |#1|))))) (-15 -2277 ((-3 (-562) "failed") (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|)) (-1150))))
-((-4041 (((-112) $ $) NIL)) (-4084 (((-1173) $) 10)) (-4020 (((-639 (-1173)) $) 11)) (-2845 (($ (-639 (-1173)) (-1173)) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 22)) (-1731 (((-112) $ $) 14)))
-(((-1110) (-13 (-1092) (-10 -8 (-15 -2845 ($ (-639 (-1173)) (-1173))) (-15 -4084 ((-1173) $)) (-15 -4020 ((-639 (-1173)) $))))) (T -1110))
-((-2845 (*1 *1 *2 *3) (-12 (-5 *2 (-639 (-1173))) (-5 *3 (-1173)) (-5 *1 (-1110)))) (-4084 (*1 *2 *1) (-12 (-5 *2 (-1173)) (-5 *1 (-1110)))) (-4020 (*1 *2 *1) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-1110)))))
-(-13 (-1092) (-10 -8 (-15 -2845 ($ (-639 (-1173)) (-1173))) (-15 -4084 ((-1173) $)) (-15 -4020 ((-639 (-1173)) $))))
-((-4120 (((-315 (-562)) (-48)) 12)))
-(((-1111) (-10 -7 (-15 -4120 ((-315 (-562)) (-48))))) (T -1111))
-((-4120 (*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-315 (-562))) (-5 *1 (-1111)))))
-(-10 -7 (-15 -4120 ((-315 (-562)) (-48))))
-((-4041 (((-112) $ $) NIL)) (-3295 (($ $) 40)) (-1952 (((-112) $) 64)) (-2265 (($ $ $) 47)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 89)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-1685 (($ $ $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-4375 (($ $ $ $) 74)) (-2798 (($ $) NIL)) (-2921 (((-417 $) $) NIL)) (-2569 (((-112) $ $) NIL)) (-1382 (((-766)) 76)) (-2277 (((-562) $) NIL)) (-3358 (($ $ $) 71)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL)) (-3961 (((-562) $) NIL)) (-1811 (($ $ $) 58)) (-2406 (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 83) (((-683 (-562)) (-683 $)) 27)) (-3668 (((-3 $ "failed") $) NIL)) (-1726 (((-3 (-406 (-562)) "failed") $) NIL)) (-3035 (((-112) $) NIL)) (-1291 (((-406 (-562)) $) NIL)) (-1448 (($) 86) (($ $) 87)) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL)) (-2717 (((-112) $) NIL)) (-3854 (($ $ $ $) NIL)) (-1292 (($ $ $) 84)) (-3519 (((-112) $) NIL)) (-2794 (($ $ $) NIL)) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL)) (-1957 (((-112) $) 65)) (-3130 (((-112) $) 63)) (-2236 (($ $) 41)) (-3699 (((-3 $ "failed") $) NIL)) (-3392 (((-112) $) 75)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2504 (($ $ $ $) 72)) (-1551 (($ $ $) 67) (($) 38 T CONST)) (-2993 (($ $ $) 66) (($) 37 T CONST)) (-3930 (($ $) NIL)) (-1999 (((-916) $) 79)) (-3641 (($ $) 70)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-2913 (((-1150) $) NIL)) (-1809 (($ $ $) NIL)) (-3729 (($) NIL T CONST)) (-2466 (($ (-916)) 78)) (-4137 (($ $) 49)) (-1709 (((-1112) $) 69)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) 61) (($ (-639 $)) NIL)) (-1351 (($ $) NIL)) (-1635 (((-417 $) $) NIL)) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-3803 (((-112) $) NIL)) (-1577 (((-766) $) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 60)) (-4029 (($ $ (-766)) NIL) (($ $) NIL)) (-2372 (($ $) 50)) (-4220 (($ $) NIL)) (-4208 (((-562) $) 31) (((-535) $) NIL) (((-887 (-562)) $) NIL) (((-378) $) NIL) (((-224) $) NIL)) (-4054 (((-857) $) 30) (($ (-562)) 85) (($ $) NIL) (($ (-562)) 85)) (-2579 (((-766)) NIL)) (-2929 (((-112) $ $) NIL)) (-3261 (($ $ $) NIL)) (-3241 (($) 36)) (-2922 (((-112) $ $) NIL)) (-3131 (($ $ $ $) 73)) (-3526 (($ $) 62)) (-2308 (($ $ $) 43)) (-2286 (($) 34 T CONST)) (-2937 (($ $ $) 46)) (-2294 (($) 35 T CONST)) (-2833 (((-1150) $) 20) (((-1150) $ (-112)) 22) (((-1261) (-817) $) 23) (((-1261) (-817) $ (-112)) 24)) (-2945 (($ $) 44)) (-3114 (($ $ (-766)) NIL) (($ $) NIL)) (-2926 (($ $ $) 45)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 39)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 48)) (-2298 (($ $ $) 42)) (-1848 (($ $) 51) (($ $ $) 53)) (-1835 (($ $ $) 52)) (** (($ $ (-916)) NIL) (($ $ (-766)) 56)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 33) (($ $ $) 54)))
-(((-1112) (-13 (-544) (-839) (-655) (-823) (-10 -8 (-6 -4389) (-6 -4394) (-6 -4390) (-15 -2236 ($ $)) (-15 -2265 ($ $ $)) (-15 -2945 ($ $)) (-15 -2926 ($ $ $)) (-15 -2937 ($ $ $))))) (T -1112))
-((-2236 (*1 *1 *1) (-5 *1 (-1112))) (-2265 (*1 *1 *1 *1) (-5 *1 (-1112))) (-2945 (*1 *1 *1) (-5 *1 (-1112))) (-2926 (*1 *1 *1 *1) (-5 *1 (-1112))) (-2937 (*1 *1 *1 *1) (-5 *1 (-1112))))
-(-13 (-544) (-839) (-655) (-823) (-10 -8 (-6 -4389) (-6 -4394) (-6 -4390) (-15 -2236 ($ $)) (-15 -2265 ($ $ $)) (-15 -2945 ($ $)) (-15 -2926 ($ $ $)) (-15 -2937 ($ $ $))))
+((-2800 (((-639 (-1229 |#2| |#1|)) (-1229 |#2| |#1|) (-1229 |#2| |#1|)) 36)) (-1650 (((-562) (-1229 |#2| |#1|)) 68 (|has| |#1| (-451)))) (-1818 (((-562) (-1229 |#2| |#1|)) 53)) (-3237 (((-639 (-1229 |#2| |#1|)) (-1229 |#2| |#1|) (-1229 |#2| |#1|)) 44)) (-3061 (((-562) (-1229 |#2| |#1|) (-1229 |#2| |#1|)) 67 (|has| |#1| (-451)))) (-3150 (((-639 |#1|) (-1229 |#2| |#1|) (-1229 |#2| |#1|)) 47)) (-2085 (((-562) (-1229 |#2| |#1|) (-1229 |#2| |#1|)) 52)))
+(((-1106 |#1| |#2|) (-10 -7 (-15 -2800 ((-639 (-1229 |#2| |#1|)) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -3237 ((-639 (-1229 |#2| |#1|)) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -3150 ((-639 |#1|) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -2085 ((-562) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -1818 ((-562) (-1229 |#2| |#1|))) (IF (|has| |#1| (-451)) (PROGN (-15 -3061 ((-562) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -1650 ((-562) (-1229 |#2| |#1|)))) |%noBranch|)) (-815) (-1168)) (T -1106))
+((-1650 (*1 *2 *3) (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-451)) (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))) (-3061 (*1 *2 *3 *3) (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-451)) (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))) (-1818 (*1 *2 *3) (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))) (-2085 (*1 *2 *3 *3) (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))) (-3150 (*1 *2 *3 *3) (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-639 *4)) (-5 *1 (-1106 *4 *5)))) (-3237 (*1 *2 *3 *3) (-12 (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-639 (-1229 *5 *4))) (-5 *1 (-1106 *4 *5)) (-5 *3 (-1229 *5 *4)))) (-2800 (*1 *2 *3 *3) (-12 (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-639 (-1229 *5 *4))) (-5 *1 (-1106 *4 *5)) (-5 *3 (-1229 *5 *4)))))
+(-10 -7 (-15 -2800 ((-639 (-1229 |#2| |#1|)) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -3237 ((-639 (-1229 |#2| |#1|)) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -3150 ((-639 |#1|) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -2085 ((-562) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -1818 ((-562) (-1229 |#2| |#1|))) (IF (|has| |#1| (-451)) (PROGN (-15 -3061 ((-562) (-1229 |#2| |#1|) (-1229 |#2| |#1|))) (-15 -1650 ((-562) (-1229 |#2| |#1|)))) |%noBranch|))
+((-4041 (((-112) $ $) NIL)) (-3800 (($ (-505) (-1110)) 14)) (-2844 (((-1110) $) 20)) (-3253 (((-505) $) 17)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 28) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-1107) (-13 (-1075) (-10 -8 (-15 -3800 ($ (-505) (-1110))) (-15 -3253 ((-505) $)) (-15 -2844 ((-1110) $))))) (T -1107))
+((-3800 (*1 *1 *2 *3) (-12 (-5 *2 (-505)) (-5 *3 (-1110)) (-5 *1 (-1107)))) (-3253 (*1 *2 *1) (-12 (-5 *2 (-505)) (-5 *1 (-1107)))) (-2844 (*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-1107)))))
+(-13 (-1075) (-10 -8 (-15 -3800 ($ (-505) (-1110))) (-15 -3253 ((-505) $)) (-15 -2844 ((-1110) $))))
+((-1587 (((-3 (-562) "failed") |#2| (-1168) |#2| (-1150)) 17) (((-3 (-562) "failed") |#2| (-1168) (-838 |#2|)) 15) (((-3 (-562) "failed") |#2|) 54)))
+(((-1108 |#1| |#2|) (-10 -7 (-15 -1587 ((-3 (-562) "failed") |#2|)) (-15 -1587 ((-3 (-562) "failed") |#2| (-1168) (-838 |#2|))) (-15 -1587 ((-3 (-562) "failed") |#2| (-1168) |#2| (-1150)))) (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)) (-451)) (-13 (-27) (-1192) (-429 |#1|))) (T -1108))
+((-1587 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-1150)) (-4 *6 (-13 (-554) (-845) (-1033 *2) (-635 *2) (-451))) (-5 *2 (-562)) (-5 *1 (-1108 *6 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *6))))) (-1587 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-838 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *6))) (-4 *6 (-13 (-554) (-845) (-1033 *2) (-635 *2) (-451))) (-5 *2 (-562)) (-5 *1 (-1108 *6 *3)))) (-1587 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-554) (-845) (-1033 *2) (-635 *2) (-451))) (-5 *2 (-562)) (-5 *1 (-1108 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))))
+(-10 -7 (-15 -1587 ((-3 (-562) "failed") |#2|)) (-15 -1587 ((-3 (-562) "failed") |#2| (-1168) (-838 |#2|))) (-15 -1587 ((-3 (-562) "failed") |#2| (-1168) |#2| (-1150))))
+((-1587 (((-3 (-562) "failed") (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|)) (-1150)) 35) (((-3 (-562) "failed") (-406 (-947 |#1|)) (-1168) (-838 (-406 (-947 |#1|)))) 30) (((-3 (-562) "failed") (-406 (-947 |#1|))) 13)))
+(((-1109 |#1|) (-10 -7 (-15 -1587 ((-3 (-562) "failed") (-406 (-947 |#1|)))) (-15 -1587 ((-3 (-562) "failed") (-406 (-947 |#1|)) (-1168) (-838 (-406 (-947 |#1|))))) (-15 -1587 ((-3 (-562) "failed") (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|)) (-1150)))) (-451)) (T -1109))
+((-1587 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-406 (-947 *6))) (-5 *4 (-1168)) (-5 *5 (-1150)) (-4 *6 (-451)) (-5 *2 (-562)) (-5 *1 (-1109 *6)))) (-1587 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-838 (-406 (-947 *6)))) (-5 *3 (-406 (-947 *6))) (-4 *6 (-451)) (-5 *2 (-562)) (-5 *1 (-1109 *6)))) (-1587 (*1 *2 *3) (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-451)) (-5 *2 (-562)) (-5 *1 (-1109 *4)))))
+(-10 -7 (-15 -1587 ((-3 (-562) "failed") (-406 (-947 |#1|)))) (-15 -1587 ((-3 (-562) "failed") (-406 (-947 |#1|)) (-1168) (-838 (-406 (-947 |#1|))))) (-15 -1587 ((-3 (-562) "failed") (-406 (-947 |#1|)) (-1168) (-406 (-947 |#1|)) (-1150))))
+((-4041 (((-112) $ $) NIL)) (-4084 (((-1173) $) 10)) (-4017 (((-639 (-1173)) $) 11)) (-2844 (($ (-639 (-1173)) (-1173)) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 22)) (-1733 (((-112) $ $) 14)))
+(((-1110) (-13 (-1092) (-10 -8 (-15 -2844 ($ (-639 (-1173)) (-1173))) (-15 -4084 ((-1173) $)) (-15 -4017 ((-639 (-1173)) $))))) (T -1110))
+((-2844 (*1 *1 *2 *3) (-12 (-5 *2 (-639 (-1173))) (-5 *3 (-1173)) (-5 *1 (-1110)))) (-4084 (*1 *2 *1) (-12 (-5 *2 (-1173)) (-5 *1 (-1110)))) (-4017 (*1 *2 *1) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-1110)))))
+(-13 (-1092) (-10 -8 (-15 -2844 ($ (-639 (-1173)) (-1173))) (-15 -4084 ((-1173) $)) (-15 -4017 ((-639 (-1173)) $))))
+((-3537 (((-315 (-562)) (-48)) 12)))
+(((-1111) (-10 -7 (-15 -3537 ((-315 (-562)) (-48))))) (T -1111))
+((-3537 (*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-315 (-562))) (-5 *1 (-1111)))))
+(-10 -7 (-15 -3537 ((-315 (-562)) (-48))))
+((-4041 (((-112) $ $) NIL)) (-3294 (($ $) 40)) (-4325 (((-112) $) 64)) (-2264 (($ $ $) 47)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 89)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-3544 (($ $ $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-4158 (($ $ $ $) 74)) (-1977 (($ $) NIL)) (-3788 (((-417 $) $) NIL)) (-1436 (((-112) $ $) NIL)) (-1382 (((-766)) 76)) (-1587 (((-562) $) NIL)) (-3355 (($ $ $) 71)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL)) (-3960 (((-562) $) NIL)) (-1810 (($ $ $) 58)) (-3449 (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 83) (((-683 (-562)) (-683 $)) 27)) (-1694 (((-3 $ "failed") $) NIL)) (-3913 (((-3 (-406 (-562)) "failed") $) NIL)) (-3498 (((-112) $) NIL)) (-3854 (((-406 (-562)) $) NIL)) (-1447 (($) 86) (($ $) 87)) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL)) (-3521 (((-112) $) NIL)) (-2877 (($ $ $ $) NIL)) (-3867 (($ $ $) 84)) (-2696 (((-112) $) NIL)) (-1940 (($ $ $) NIL)) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL)) (-4367 (((-112) $) 65)) (-3152 (((-112) $) 63)) (-2234 (($ $) 41)) (-3828 (((-3 $ "failed") $) NIL)) (-3855 (((-112) $) 75)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2051 (($ $ $ $) 72)) (-1551 (($ $ $) 67) (($) 38 T CONST)) (-2993 (($ $ $) 66) (($) 37 T CONST)) (-3930 (($ $) NIL)) (-3549 (((-916) $) 79)) (-3641 (($ $) 70)) (-1564 (($ $ $) NIL) (($ (-639 $)) NIL)) (-3696 (((-1150) $) NIL)) (-2296 (($ $ $) NIL)) (-3730 (($) NIL T CONST)) (-2464 (($ (-916)) 78)) (-4137 (($ $) 49)) (-1709 (((-1112) $) 69)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL)) (-1606 (($ $ $) 61) (($ (-639 $)) NIL)) (-3350 (($ $) NIL)) (-1635 (((-417 $) $) NIL)) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL)) (-1762 (((-3 $ "failed") $ $) NIL)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL)) (-2438 (((-112) $) NIL)) (-2044 (((-766) $) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 60)) (-4029 (($ $ (-766)) NIL) (($ $) NIL)) (-2369 (($ $) 50)) (-4220 (($ $) NIL)) (-4208 (((-562) $) 31) (((-535) $) NIL) (((-887 (-562)) $) NIL) (((-378) $) NIL) (((-224) $) NIL)) (-4053 (((-857) $) 30) (($ (-562)) 85) (($ $) NIL) (($ (-562)) 85)) (-1568 (((-766)) NIL)) (-3869 (((-112) $ $) NIL)) (-2068 (($ $ $) NIL)) (-3240 (($) 36)) (-3799 (((-112) $ $) NIL)) (-3160 (($ $ $ $) 73)) (-2757 (($ $) 62)) (-2306 (($ $ $) 43)) (-2285 (($) 34 T CONST)) (-2935 (($ $ $) 46)) (-2294 (($) 35 T CONST)) (-2332 (((-1150) $) 20) (((-1150) $ (-112)) 22) (((-1261) (-817) $) 23) (((-1261) (-817) $ (-112)) 24)) (-2943 (($ $) 44)) (-3113 (($ $ (-766)) NIL) (($ $) NIL)) (-2927 (($ $ $) 45)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 39)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 48)) (-2297 (($ $ $) 42)) (-1847 (($ $) 51) (($ $ $) 53)) (-1836 (($ $ $) 52)) (** (($ $ (-916)) NIL) (($ $ (-766)) 56)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 33) (($ $ $) 54)))
+(((-1112) (-13 (-544) (-839) (-655) (-823) (-10 -8 (-6 -4390) (-6 -4395) (-6 -4391) (-15 -2234 ($ $)) (-15 -2264 ($ $ $)) (-15 -2943 ($ $)) (-15 -2927 ($ $ $)) (-15 -2935 ($ $ $))))) (T -1112))
+((-2234 (*1 *1 *1) (-5 *1 (-1112))) (-2264 (*1 *1 *1 *1) (-5 *1 (-1112))) (-2943 (*1 *1 *1) (-5 *1 (-1112))) (-2927 (*1 *1 *1 *1) (-5 *1 (-1112))) (-2935 (*1 *1 *1 *1) (-5 *1 (-1112))))
+(-13 (-544) (-839) (-655) (-823) (-10 -8 (-6 -4390) (-6 -4395) (-6 -4391) (-15 -2234 ($ $)) (-15 -2264 ($ $ $)) (-15 -2943 ($ $)) (-15 -2927 ($ $ $)) (-15 -2935 ($ $ $))))
((|Integer|) (SMINTP |#1|))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2775 ((|#1| $) 44)) (-4336 (((-112) $ (-766)) 8)) (-1800 (($) 7 T CONST)) (-2737 ((|#1| |#1| $) 46)) (-3064 ((|#1| $) 45)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3262 ((|#1| $) 39)) (-4300 (($ |#1| $) 40)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1904 ((|#1| $) 41)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2193 (((-766) $) 43)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1932 (($ (-639 |#1|)) 42)) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2774 ((|#1| $) 44)) (-3735 (((-112) $ (-766)) 8)) (-3329 (($) 7 T CONST)) (-2571 ((|#1| |#1| $) 46)) (-3767 ((|#1| $) 45)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-2078 ((|#1| $) 39)) (-1581 (($ |#1| $) 40)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-2038 ((|#1| $) 41)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2191 (((-766) $) 43)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-4131 (($ (-639 |#1|)) 42)) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-1113 |#1|) (-139) (-1207)) (T -1113))
-((-2737 (*1 *2 *2 *1) (-12 (-4 *1 (-1113 *2)) (-4 *2 (-1207)))) (-3064 (*1 *2 *1) (-12 (-4 *1 (-1113 *2)) (-4 *2 (-1207)))) (-2775 (*1 *2 *1) (-12 (-4 *1 (-1113 *2)) (-4 *2 (-1207)))) (-2193 (*1 *2 *1) (-12 (-4 *1 (-1113 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4402) (-15 -2737 (|t#1| |t#1| $)) (-15 -3064 (|t#1| $)) (-15 -2775 (|t#1| $)) (-15 -2193 ((-766) $))))
+((-2571 (*1 *2 *2 *1) (-12 (-4 *1 (-1113 *2)) (-4 *2 (-1207)))) (-3767 (*1 *2 *1) (-12 (-4 *1 (-1113 *2)) (-4 *2 (-1207)))) (-2774 (*1 *2 *1) (-12 (-4 *1 (-1113 *2)) (-4 *2 (-1207)))) (-2191 (*1 *2 *1) (-12 (-4 *1 (-1113 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4403) (-15 -2571 (|t#1| |t#1| $)) (-15 -3767 (|t#1| $)) (-15 -2774 (|t#1| $)) (-15 -2191 ((-766) $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
-((-1748 ((|#3| $) 76)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#3| "failed") $) 40)) (-3961 (((-562) $) NIL) (((-406 (-562)) $) NIL) ((|#3| $) 37)) (-2406 (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-2 (|:| -1545 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 $) (-1256 $)) 73) (((-683 |#3|) (-683 $)) 65)) (-4029 (($ $ (-1 |#3| |#3|)) 19) (($ $ (-1 |#3| |#3|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL) (($ $ (-766)) NIL) (($ $) NIL)) (-3436 ((|#3| $) 78)) (-3798 ((|#4| $) 32)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL) (($ |#3|) 16)) (** (($ $ (-916)) NIL) (($ $ (-766)) 15) (($ $ (-562)) 82)))
-(((-1114 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-562))) (-15 -3436 (|#3| |#1|)) (-15 -1748 (|#3| |#1|)) (-15 -3798 (|#4| |#1|)) (-15 -2406 ((-683 |#3|) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-683 (-562)) (-683 |#1|))) (-15 -4054 (|#1| |#3|)) (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -3961 (|#3| |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|) (-766))) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4054 (|#1| (-562))) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916))) (-15 -4054 ((-857) |#1|))) (-1115 |#2| |#3| |#4| |#5|) (-766) (-1044) (-237 |#2| |#3|) (-237 |#2| |#3|)) (T -1114))
+((-1748 ((|#3| $) 76)) (-4048 (((-3 (-562) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 |#3| "failed") $) 40)) (-3960 (((-562) $) NIL) (((-406 (-562)) $) NIL) ((|#3| $) 37)) (-3449 (((-683 (-562)) (-683 $)) NIL) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL) (((-2 (|:| -1767 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 $) (-1256 $)) 73) (((-683 |#3|) (-683 $)) 65)) (-4029 (($ $ (-1 |#3| |#3|)) 19) (($ $ (-1 |#3| |#3|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168)) NIL) (($ $ (-766)) NIL) (($ $) NIL)) (-3042 ((|#3| $) 78)) (-2399 ((|#4| $) 32)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ (-406 (-562))) NIL) (($ |#3|) 16)) (** (($ $ (-916)) NIL) (($ $ (-766)) 15) (($ $ (-562)) 82)))
+(((-1114 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-562))) (-15 -3042 (|#3| |#1|)) (-15 -1748 (|#3| |#1|)) (-15 -2399 (|#4| |#1|)) (-15 -3449 ((-683 |#3|) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-683 (-562)) (-683 |#1|))) (-15 -4053 (|#1| |#3|)) (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -3960 (|#3| |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|) (-766))) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4053 (|#1| (-562))) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916))) (-15 -4053 ((-857) |#1|))) (-1115 |#2| |#3| |#4| |#5|) (-766) (-1044) (-237 |#2| |#3|) (-237 |#2| |#3|)) (T -1114))
NIL
-(-10 -8 (-15 ** (|#1| |#1| (-562))) (-15 -3436 (|#3| |#1|)) (-15 -1748 (|#3| |#1|)) (-15 -3798 (|#4| |#1|)) (-15 -2406 ((-683 |#3|) (-683 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -2406 ((-683 (-562)) (-683 |#1|))) (-15 -4054 (|#1| |#3|)) (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -3961 (|#3| |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|) (-766))) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4054 (|#1| (-562))) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916))) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1748 ((|#2| $) 71)) (-2952 (((-112) $) 111)) (-3214 (((-3 $ "failed") $ $) 19)) (-3220 (((-112) $) 109)) (-4336 (((-112) $ (-766)) 101)) (-2554 (($ |#2|) 74)) (-1800 (($) 17 T CONST)) (-2522 (($ $) 128 (|has| |#2| (-306)))) (-3796 ((|#3| $ (-562)) 123)) (-4048 (((-3 (-562) "failed") $) 86 (|has| |#2| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 83 (|has| |#2| (-1033 (-406 (-562))))) (((-3 |#2| "failed") $) 80)) (-3961 (((-562) $) 85 (|has| |#2| (-1033 (-562)))) (((-406 (-562)) $) 82 (|has| |#2| (-1033 (-406 (-562))))) ((|#2| $) 81)) (-2406 (((-683 (-562)) (-683 $)) 78 (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 77 (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) 76) (((-683 |#2|) (-683 $)) 75)) (-3668 (((-3 $ "failed") $) 33)) (-2173 (((-766) $) 129 (|has| |#2| (-554)))) (-1420 ((|#2| $ (-562) (-562)) 121)) (-1720 (((-639 |#2|) $) 94 (|has| $ (-6 -4402)))) (-1957 (((-112) $) 31)) (-3922 (((-766) $) 130 (|has| |#2| (-554)))) (-2318 (((-639 |#4|) $) 131 (|has| |#2| (-554)))) (-2699 (((-766) $) 117)) (-2709 (((-766) $) 118)) (-3292 (((-112) $ (-766)) 102)) (-2280 ((|#2| $) 66 (|has| |#2| (-6 (-4404 "*"))))) (-2783 (((-562) $) 113)) (-4217 (((-562) $) 115)) (-1912 (((-639 |#2|) $) 93 (|has| $ (-6 -4402)))) (-1669 (((-112) |#2| $) 91 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4402))))) (-4088 (((-562) $) 114)) (-2453 (((-562) $) 116)) (-2885 (($ (-639 (-639 |#2|))) 108)) (-1490 (($ (-1 |#2| |#2|) $) 98 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#2| |#2| |#2|) $ $) 125) (($ (-1 |#2| |#2|) $) 99)) (-2824 (((-639 (-639 |#2|)) $) 119)) (-3289 (((-112) $ (-766)) 103)) (-2913 (((-1150) $) 9)) (-3494 (((-3 $ "failed") $) 65 (|has| |#2| (-362)))) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ |#2|) 126 (|has| |#2| (-554)))) (-1763 (((-112) (-1 (-112) |#2|) $) 96 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#2|))) 90 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) 89 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) 88 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) 87 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) 107)) (-2974 (((-112) $) 104)) (-4307 (($) 105)) (-2343 ((|#2| $ (-562) (-562) |#2|) 122) ((|#2| $ (-562) (-562)) 120)) (-4029 (($ $ (-1 |#2| |#2|)) 52) (($ $ (-1 |#2| |#2|) (-766)) 51) (($ $ (-639 (-1168)) (-639 (-766))) 44 (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) 43 (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) 42 (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) 41 (|has| |#2| (-895 (-1168)))) (($ $ (-766)) 39 (|has| |#2| (-232))) (($ $) 37 (|has| |#2| (-232)))) (-3436 ((|#2| $) 70)) (-3448 (($ (-639 |#2|)) 73)) (-1544 (((-112) $) 110)) (-3798 ((|#3| $) 72)) (-3770 ((|#2| $) 67 (|has| |#2| (-6 (-4404 "*"))))) (-1723 (((-766) (-1 (-112) |#2|) $) 95 (|has| $ (-6 -4402))) (((-766) |#2| $) 92 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 106)) (-2211 ((|#4| $ (-562)) 124)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 84 (|has| |#2| (-1033 (-406 (-562))))) (($ |#2|) 79)) (-2579 (((-766)) 28)) (-1744 (((-112) (-1 (-112) |#2|) $) 97 (|has| $ (-6 -4402)))) (-1335 (((-112) $) 112)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-1 |#2| |#2|)) 50) (($ $ (-1 |#2| |#2|) (-766)) 49) (($ $ (-639 (-1168)) (-639 (-766))) 48 (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) 47 (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) 46 (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) 45 (|has| |#2| (-895 (-1168)))) (($ $ (-766)) 40 (|has| |#2| (-232))) (($ $) 38 (|has| |#2| (-232)))) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#2|) 127 (|has| |#2| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 64 (|has| |#2| (-362)))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#2|) 133) (($ |#2| $) 132) ((|#4| $ |#4|) 69) ((|#3| |#3| $) 68)) (-3492 (((-766) $) 100 (|has| $ (-6 -4402)))))
+(-10 -8 (-15 ** (|#1| |#1| (-562))) (-15 -3042 (|#3| |#1|)) (-15 -1748 (|#3| |#1|)) (-15 -2399 (|#4| |#1|)) (-15 -3449 ((-683 |#3|) (-683 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 |#3|)) (|:| |vec| (-1256 |#3|))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 |#1|) (-1256 |#1|))) (-15 -3449 ((-683 (-562)) (-683 |#1|))) (-15 -4053 (|#1| |#3|)) (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -3960 (|#3| |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|) (-766))) (-15 -4029 (|#1| |#1| (-1 |#3| |#3|))) (-15 -4053 (|#1| (-562))) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916))) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-1748 ((|#2| $) 71)) (-4097 (((-112) $) 111)) (-2781 (((-3 $ "failed") $ $) 19)) (-2819 (((-112) $) 109)) (-3735 (((-112) $ (-766)) 101)) (-4369 (($ |#2|) 74)) (-3329 (($) 17 T CONST)) (-2239 (($ $) 128 (|has| |#2| (-306)))) (-3511 ((|#3| $ (-562)) 123)) (-4048 (((-3 (-562) "failed") $) 86 (|has| |#2| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) 83 (|has| |#2| (-1033 (-406 (-562))))) (((-3 |#2| "failed") $) 80)) (-3960 (((-562) $) 85 (|has| |#2| (-1033 (-562)))) (((-406 (-562)) $) 82 (|has| |#2| (-1033 (-406 (-562))))) ((|#2| $) 81)) (-3449 (((-683 (-562)) (-683 $)) 78 (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 77 (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) 76) (((-683 |#2|) (-683 $)) 75)) (-1694 (((-3 $ "failed") $) 33)) (-2172 (((-766) $) 129 (|has| |#2| (-554)))) (-1420 ((|#2| $ (-562) (-562)) 121)) (-1720 (((-639 |#2|) $) 94 (|has| $ (-6 -4403)))) (-4367 (((-112) $) 31)) (-4244 (((-766) $) 130 (|has| |#2| (-554)))) (-3821 (((-639 |#4|) $) 131 (|has| |#2| (-554)))) (-2698 (((-766) $) 117)) (-2708 (((-766) $) 118)) (-4172 (((-112) $ (-766)) 102)) (-1622 ((|#2| $) 66 (|has| |#2| (-6 (-4405 "*"))))) (-1808 (((-562) $) 113)) (-2028 (((-562) $) 115)) (-2123 (((-639 |#2|) $) 93 (|has| $ (-6 -4403)))) (-1572 (((-112) |#2| $) 91 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4403))))) (-3269 (((-562) $) 114)) (-2727 (((-562) $) 116)) (-2884 (($ (-639 (-639 |#2|))) 108)) (-1491 (($ (-1 |#2| |#2|) $) 98 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#2| |#2| |#2|) $ $) 125) (($ (-1 |#2| |#2|) $) 99)) (-2247 (((-639 (-639 |#2|)) $) 119)) (-4147 (((-112) $ (-766)) 103)) (-3696 (((-1150) $) 9)) (-2463 (((-3 $ "failed") $) 65 (|has| |#2| (-362)))) (-1709 (((-1112) $) 10)) (-1762 (((-3 $ "failed") $ |#2|) 126 (|has| |#2| (-554)))) (-3008 (((-112) (-1 (-112) |#2|) $) 96 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#2|))) 90 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) 89 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) 88 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) 87 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) 107)) (-3087 (((-112) $) 104)) (-1663 (($) 105)) (-2343 ((|#2| $ (-562) (-562) |#2|) 122) ((|#2| $ (-562) (-562)) 120)) (-4029 (($ $ (-1 |#2| |#2|)) 52) (($ $ (-1 |#2| |#2|) (-766)) 51) (($ $ (-639 (-1168)) (-639 (-766))) 44 (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) 43 (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) 42 (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) 41 (|has| |#2| (-895 (-1168)))) (($ $ (-766)) 39 (|has| |#2| (-232))) (($ $) 37 (|has| |#2| (-232)))) (-3042 ((|#2| $) 70)) (-3168 (($ (-639 |#2|)) 73)) (-1752 (((-112) $) 110)) (-2399 ((|#3| $) 72)) (-3282 ((|#2| $) 67 (|has| |#2| (-6 (-4405 "*"))))) (-1723 (((-766) (-1 (-112) |#2|) $) 95 (|has| $ (-6 -4403))) (((-766) |#2| $) 92 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 106)) (-2208 ((|#4| $ (-562)) 124)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 84 (|has| |#2| (-1033 (-406 (-562))))) (($ |#2|) 79)) (-1568 (((-766)) 28)) (-2879 (((-112) (-1 (-112) |#2|) $) 97 (|has| $ (-6 -4403)))) (-1996 (((-112) $) 112)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-1 |#2| |#2|)) 50) (($ $ (-1 |#2| |#2|) (-766)) 49) (($ $ (-639 (-1168)) (-639 (-766))) 48 (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) 47 (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) 46 (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) 45 (|has| |#2| (-895 (-1168)))) (($ $ (-766)) 40 (|has| |#2| (-232))) (($ $) 38 (|has| |#2| (-232)))) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#2|) 127 (|has| |#2| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 64 (|has| |#2| (-362)))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#2|) 133) (($ |#2| $) 132) ((|#4| $ |#4|) 69) ((|#3| |#3| $) 68)) (-3492 (((-766) $) 100 (|has| $ (-6 -4403)))))
(((-1115 |#1| |#2| |#3| |#4|) (-139) (-766) (-1044) (-237 |t#1| |t#2|) (-237 |t#1| |t#2|)) (T -1115))
-((-2554 (*1 *1 *2) (-12 (-4 *2 (-1044)) (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2)) (-4 *5 (-237 *3 *2)))) (-3448 (*1 *1 *2) (-12 (-5 *2 (-639 *4)) (-4 *4 (-1044)) (-4 *1 (-1115 *3 *4 *5 *6)) (-4 *5 (-237 *3 *4)) (-4 *6 (-237 *3 *4)))) (-3798 (*1 *2 *1) (-12 (-4 *1 (-1115 *3 *4 *2 *5)) (-4 *4 (-1044)) (-4 *5 (-237 *3 *4)) (-4 *2 (-237 *3 *4)))) (-1748 (*1 *2 *1) (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2)) (-4 *5 (-237 *3 *2)) (-4 *2 (-1044)))) (-3436 (*1 *2 *1) (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2)) (-4 *5 (-237 *3 *2)) (-4 *2 (-1044)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1115 *3 *4 *5 *2)) (-4 *4 (-1044)) (-4 *5 (-237 *3 *4)) (-4 *2 (-237 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1115 *3 *4 *2 *5)) (-4 *4 (-1044)) (-4 *2 (-237 *3 *4)) (-4 *5 (-237 *3 *4)))) (-3770 (*1 *2 *1) (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2)) (-4 *5 (-237 *3 *2)) (|has| *2 (-6 (-4404 "*"))) (-4 *2 (-1044)))) (-2280 (*1 *2 *1) (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2)) (-4 *5 (-237 *3 *2)) (|has| *2 (-6 (-4404 "*"))) (-4 *2 (-1044)))) (-3494 (*1 *1 *1) (|partial| -12 (-4 *1 (-1115 *2 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-237 *2 *3)) (-4 *5 (-237 *2 *3)) (-4 *3 (-362)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-1115 *3 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-237 *3 *4)) (-4 *6 (-237 *3 *4)) (-4 *4 (-362)))))
-(-13 (-230 |t#2|) (-111 |t#2| |t#2|) (-1047 |t#1| |t#1| |t#2| |t#3| |t#4|) (-410 |t#2|) (-376 |t#2|) (-10 -8 (IF (|has| |t#2| (-171)) (-6 (-712 |t#2|)) |%noBranch|) (-15 -2554 ($ |t#2|)) (-15 -3448 ($ (-639 |t#2|))) (-15 -3798 (|t#3| $)) (-15 -1748 (|t#2| $)) (-15 -3436 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4404 "*"))) (PROGN (-6 (-38 |t#2|)) (-15 -3770 (|t#2| $)) (-15 -2280 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-362)) (PROGN (-15 -3494 ((-3 $ "failed") $)) (-15 ** ($ $ (-562)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-38 |#2|) |has| |#2| (-6 (-4404 "*"))) ((-102) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-612 #0=(-406 (-562))) |has| |#2| (-1033 (-406 (-562)))) ((-612 (-562)) . T) ((-612 |#2|) . T) ((-609 (-857)) . T) ((-230 |#2|) . T) ((-232) |has| |#2| (-232)) ((-308 |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-376 |#2|) . T) ((-410 |#2|) . T) ((-488 |#2|) . T) ((-513 |#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-642 |#2|) . T) ((-642 $) . T) ((-635 (-562)) |has| |#2| (-635 (-562))) ((-635 |#2|) . T) ((-712 |#2|) -4037 (|has| |#2| (-171)) (|has| |#2| (-6 (-4404 "*")))) ((-721) . T) ((-895 (-1168)) |has| |#2| (-895 (-1168))) ((-1047 |#1| |#1| |#2| |#3| |#4|) . T) ((-1033 #0#) |has| |#2| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#2| (-1033 (-562))) ((-1033 |#2|) . T) ((-1050 |#2|) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1207) . T))
-((-3339 ((|#4| |#4|) 70)) (-2175 ((|#4| |#4|) 65)) (-1393 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3928 (-639 |#3|))) |#4| |#3|) 78)) (-1867 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 69)) (-3667 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 67)))
-(((-1116 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2175 (|#4| |#4|)) (-15 -3667 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -3339 (|#4| |#4|)) (-15 -1867 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -1393 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3928 (-639 |#3|))) |#4| |#3|))) (-306) (-372 |#1|) (-372 |#1|) (-681 |#1| |#2| |#3|)) (T -1116))
-((-1393 (*1 *2 *3 *4) (-12 (-4 *5 (-306)) (-4 *6 (-372 *5)) (-4 *4 (-372 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4)))) (-5 *1 (-1116 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4)))) (-1867 (*1 *2 *3) (-12 (-4 *4 (-306)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1116 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-3339 (*1 *2 *2) (-12 (-4 *3 (-306)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-1116 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-3667 (*1 *2 *3) (-12 (-4 *4 (-306)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1116 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-2175 (*1 *2 *2) (-12 (-4 *3 (-306)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-1116 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
-(-10 -7 (-15 -2175 (|#4| |#4|)) (-15 -3667 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -3339 (|#4| |#4|)) (-15 -1867 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -1393 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3928 (-639 |#3|))) |#4| |#3|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 17)) (-1402 (((-639 |#2|) $) 158)) (-1599 (((-1164 $) $ |#2|) 53) (((-1164 |#1|) $) 42)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 107 (|has| |#1| (-554)))) (-2796 (($ $) 109 (|has| |#1| (-554)))) (-4370 (((-112) $) 111 (|has| |#1| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 |#2|)) 191)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-2798 (($ $) NIL (|has| |#1| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 155) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 |#2| "failed") $) NIL)) (-3961 ((|#1| $) 153) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) ((|#2| $) NIL)) (-2835 (($ $ $ |#2|) NIL (|has| |#1| (-171)))) (-1601 (($ $) 195)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) 81)) (-1498 (($ $) NIL (|has| |#1| (-451))) (($ $ |#2|) NIL (|has| |#1| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#1| (-904)))) (-3122 (($ $ |#1| (-530 |#2|) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| |#1| (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| |#1| (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-1957 (((-112) $) 19)) (-1694 (((-766) $) 26)) (-1390 (($ (-1164 |#1|) |#2|) 47) (($ (-1164 $) |#2|) 63)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) 32)) (-1378 (($ |#1| (-530 |#2|)) 70) (($ $ |#2| (-766)) 51) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ |#2|) NIL)) (-2076 (((-530 |#2|) $) 185) (((-766) $ |#2|) 186) (((-639 (-766)) $ (-639 |#2|)) 187)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2836 (($ (-1 (-530 |#2|) (-530 |#2|)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) 119)) (-3372 (((-3 |#2| "failed") $) 160)) (-1560 (($ $) 194)) (-1573 ((|#1| $) 36)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-2913 (((-1150) $) NIL)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| |#2|) (|:| -1960 (-766))) "failed") $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) 33)) (-1547 ((|#1| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 137 (|has| |#1| (-451)))) (-1606 (($ (-639 $)) 142 (|has| |#1| (-451))) (($ $ $) 129 (|has| |#1| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) 117 (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ |#2| |#1|) 163) (($ $ (-639 |#2|) (-639 |#1|)) 176) (($ $ |#2| $) 162) (($ $ (-639 |#2|) (-639 $)) 175)) (-2455 (($ $ |#2|) NIL (|has| |#1| (-171)))) (-4029 (($ $ |#2|) 193) (($ $ (-639 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-3598 (((-530 |#2|) $) 181) (((-766) $ |#2|) 177) (((-639 (-766)) $ (-639 |#2|)) 179)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| |#1| (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| |#1| (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| |#1| (-610 (-535))) (|has| |#2| (-610 (-535)))))) (-3900 ((|#1| $) 125 (|has| |#1| (-451))) (($ $ |#2|) 128 (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4054 (((-857) $) 148) (($ (-562)) 75) (($ |#1|) 76) (($ |#2|) 28) (($ $) NIL (|has| |#1| (-554))) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-4358 (((-639 |#1|) $) 151)) (-3906 ((|#1| $ (-530 |#2|)) 72) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) 78)) (-3548 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-2922 (((-112) $ $) 114 (|has| |#1| (-554)))) (-2286 (($) 12 T CONST)) (-2294 (($) 14 T CONST)) (-3114 (($ $ |#2|) NIL) (($ $ (-639 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) 96)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) 123 (|has| |#1| (-362)))) (-1848 (($ $) 84) (($ $ $) 94)) (-1835 (($ $ $) 48)) (** (($ $ (-916)) 101) (($ $ (-766)) 99)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 87) (($ $ $) 64) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 89) (($ $ |#1|) NIL)))
+((-4369 (*1 *1 *2) (-12 (-4 *2 (-1044)) (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2)) (-4 *5 (-237 *3 *2)))) (-3168 (*1 *1 *2) (-12 (-5 *2 (-639 *4)) (-4 *4 (-1044)) (-4 *1 (-1115 *3 *4 *5 *6)) (-4 *5 (-237 *3 *4)) (-4 *6 (-237 *3 *4)))) (-2399 (*1 *2 *1) (-12 (-4 *1 (-1115 *3 *4 *2 *5)) (-4 *4 (-1044)) (-4 *5 (-237 *3 *4)) (-4 *2 (-237 *3 *4)))) (-1748 (*1 *2 *1) (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2)) (-4 *5 (-237 *3 *2)) (-4 *2 (-1044)))) (-3042 (*1 *2 *1) (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2)) (-4 *5 (-237 *3 *2)) (-4 *2 (-1044)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1115 *3 *4 *5 *2)) (-4 *4 (-1044)) (-4 *5 (-237 *3 *4)) (-4 *2 (-237 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1115 *3 *4 *2 *5)) (-4 *4 (-1044)) (-4 *2 (-237 *3 *4)) (-4 *5 (-237 *3 *4)))) (-3282 (*1 *2 *1) (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2)) (-4 *5 (-237 *3 *2)) (|has| *2 (-6 (-4405 "*"))) (-4 *2 (-1044)))) (-1622 (*1 *2 *1) (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2)) (-4 *5 (-237 *3 *2)) (|has| *2 (-6 (-4405 "*"))) (-4 *2 (-1044)))) (-2463 (*1 *1 *1) (|partial| -12 (-4 *1 (-1115 *2 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-237 *2 *3)) (-4 *5 (-237 *2 *3)) (-4 *3 (-362)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-1115 *3 *4 *5 *6)) (-4 *4 (-1044)) (-4 *5 (-237 *3 *4)) (-4 *6 (-237 *3 *4)) (-4 *4 (-362)))))
+(-13 (-230 |t#2|) (-111 |t#2| |t#2|) (-1047 |t#1| |t#1| |t#2| |t#3| |t#4|) (-410 |t#2|) (-376 |t#2|) (-10 -8 (IF (|has| |t#2| (-171)) (-6 (-712 |t#2|)) |%noBranch|) (-15 -4369 ($ |t#2|)) (-15 -3168 ($ (-639 |t#2|))) (-15 -2399 (|t#3| $)) (-15 -1748 (|t#2| $)) (-15 -3042 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4405 "*"))) (PROGN (-6 (-38 |t#2|)) (-15 -3282 (|t#2| $)) (-15 -1622 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-362)) (PROGN (-15 -2463 ((-3 $ "failed") $)) (-15 ** ($ $ (-562)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-38 |#2|) |has| |#2| (-6 (-4405 "*"))) ((-102) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-612 #0=(-406 (-562))) |has| |#2| (-1033 (-406 (-562)))) ((-612 (-562)) . T) ((-612 |#2|) . T) ((-609 (-857)) . T) ((-230 |#2|) . T) ((-232) |has| |#2| (-232)) ((-308 |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-376 |#2|) . T) ((-410 |#2|) . T) ((-488 |#2|) . T) ((-513 |#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-642 |#2|) . T) ((-642 $) . T) ((-635 (-562)) |has| |#2| (-635 (-562))) ((-635 |#2|) . T) ((-712 |#2|) -4037 (|has| |#2| (-171)) (|has| |#2| (-6 (-4405 "*")))) ((-721) . T) ((-895 (-1168)) |has| |#2| (-895 (-1168))) ((-1047 |#1| |#1| |#2| |#3| |#4|) . T) ((-1033 #0#) |has| |#2| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#2| (-1033 (-562))) ((-1033 |#2|) . T) ((-1050 |#2|) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1207) . T))
+((-1500 ((|#4| |#4|) 70)) (-1829 ((|#4| |#4|) 65)) (-3876 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4291 (-639 |#3|))) |#4| |#3|) 78)) (-2823 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 69)) (-1683 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 67)))
+(((-1116 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1829 (|#4| |#4|)) (-15 -1683 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -1500 (|#4| |#4|)) (-15 -2823 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -3876 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4291 (-639 |#3|))) |#4| |#3|))) (-306) (-372 |#1|) (-372 |#1|) (-681 |#1| |#2| |#3|)) (T -1116))
+((-3876 (*1 *2 *3 *4) (-12 (-4 *5 (-306)) (-4 *6 (-372 *5)) (-4 *4 (-372 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4)))) (-5 *1 (-1116 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4)))) (-2823 (*1 *2 *3) (-12 (-4 *4 (-306)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1116 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-1500 (*1 *2 *2) (-12 (-4 *3 (-306)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-1116 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-1683 (*1 *2 *3) (-12 (-4 *4 (-306)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1116 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))) (-1829 (*1 *2 *2) (-12 (-4 *3 (-306)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-1116 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
+(-10 -7 (-15 -1829 (|#4| |#4|)) (-15 -1683 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -1500 (|#4| |#4|)) (-15 -2823 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -3876 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -4291 (-639 |#3|))) |#4| |#3|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 17)) (-1401 (((-639 |#2|) $) 158)) (-1602 (((-1164 $) $ |#2|) 53) (((-1164 |#1|) $) 42)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 107 (|has| |#1| (-554)))) (-1965 (($ $) 109 (|has| |#1| (-554)))) (-4102 (((-112) $) 111 (|has| |#1| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 |#2|)) 191)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1977 (($ $) NIL (|has| |#1| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) 155) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 |#2| "failed") $) NIL)) (-3960 ((|#1| $) 153) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) ((|#2| $) NIL)) (-2355 (($ $ $ |#2|) NIL (|has| |#1| (-171)))) (-1600 (($ $) 195)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) 81)) (-2578 (($ $) NIL (|has| |#1| (-451))) (($ $ |#2|) NIL (|has| |#1| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#1| (-904)))) (-3066 (($ $ |#1| (-530 |#2|) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| |#1| (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| |#1| (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-4367 (((-112) $) 19)) (-3627 (((-766) $) 26)) (-1389 (($ (-1164 |#1|) |#2|) 47) (($ (-1164 $) |#2|) 63)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) 32)) (-1377 (($ |#1| (-530 |#2|)) 70) (($ $ |#2| (-766)) 51) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ |#2|) NIL)) (-3161 (((-530 |#2|) $) 185) (((-766) $ |#2|) 186) (((-639 (-766)) $ (-639 |#2|)) 187)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2363 (($ (-1 (-530 |#2|) (-530 |#2|)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) 119)) (-3640 (((-3 |#2| "failed") $) 160)) (-1560 (($ $) 194)) (-1573 ((|#1| $) 36)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3696 (((-1150) $) NIL)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| |#2|) (|:| -1300 (-766))) "failed") $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) 33)) (-1547 ((|#1| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 137 (|has| |#1| (-451)))) (-1606 (($ (-639 $)) 142 (|has| |#1| (-451))) (($ $ $) 129 (|has| |#1| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#1| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-904)))) (-1762 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ $) 117 (|has| |#1| (-554)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ |#2| |#1|) 163) (($ $ (-639 |#2|) (-639 |#1|)) 176) (($ $ |#2| $) 162) (($ $ (-639 |#2|) (-639 $)) 175)) (-2736 (($ $ |#2|) NIL (|has| |#1| (-171)))) (-4029 (($ $ |#2|) 193) (($ $ (-639 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-2250 (((-530 |#2|) $) 181) (((-766) $ |#2|) 177) (((-639 (-766)) $ (-639 |#2|)) 179)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| |#1| (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| |#1| (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| |#1| (-610 (-535))) (|has| |#2| (-610 (-535)))))) (-2201 ((|#1| $) 125 (|has| |#1| (-451))) (($ $ |#2|) 128 (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-4053 (((-857) $) 148) (($ (-562)) 75) (($ |#1|) 76) (($ |#2|) 28) (($ $) NIL (|has| |#1| (-554))) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-3969 (((-639 |#1|) $) 151)) (-2266 ((|#1| $ (-530 |#2|)) 72) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) 78)) (-1760 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-3799 (((-112) $ $) 114 (|has| |#1| (-554)))) (-2285 (($) 12 T CONST)) (-2294 (($) 14 T CONST)) (-3113 (($ $ |#2|) NIL) (($ $ (-639 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) 96)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) 123 (|has| |#1| (-362)))) (-1847 (($ $) 84) (($ $ $) 94)) (-1836 (($ $ $) 48)) (** (($ $ (-916)) 101) (($ $ (-766)) 99)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 87) (($ $ $) 64) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 89) (($ $ |#1|) NIL)))
(((-1117 |#1| |#2|) (-944 |#1| (-530 |#2|) |#2|) (-1044) (-845)) (T -1117))
NIL
(-944 |#1| (-530 |#2|) |#2|)
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1402 (((-639 |#2|) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-2988 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) 116 (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1643 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4207 (($ $) 136 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 112 (|has| |#1| (-38 (-406 (-562)))))) (-3014 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) 120 (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) NIL T CONST)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1454 (((-947 |#1|) $ (-766)) NIL) (((-947 |#1|) $ (-766) (-766)) NIL)) (-1756 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-766) $ |#2|) NIL) (((-766) $ |#2| (-766)) NIL)) (-1957 (((-112) $) NIL)) (-1891 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3536 (((-112) $) NIL)) (-1378 (($ $ (-639 |#2|) (-639 (-530 |#2|))) NIL) (($ $ |#2| (-530 |#2|)) NIL) (($ |#1| (-530 |#2|)) NIL) (($ $ |#2| (-766)) 55) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4365 (($ $) 110 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-2667 (($ $ |#2|) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ |#2| |#1|) 163 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-2345 (($ (-1 $) |#2| |#1|) 162 (|has| |#1| (-38 (-406 (-562)))))) (-1353 (($ $ (-766)) 13)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3430 (($ $) 108 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (($ $ |#2| $) 94) (($ $ (-639 |#2|) (-639 $)) 87) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL)) (-4029 (($ $ |#2|) 97) (($ $ (-639 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-3598 (((-530 |#2|) $) NIL)) (-3198 (((-1 (-1148 |#3|) |#3|) (-639 |#2|) (-639 (-1148 |#3|))) 76)) (-3023 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 122 (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 118 (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) 138 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 114 (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) 15)) (-4054 (((-857) $) 179) (($ (-562)) NIL) (($ |#1|) 40 (|has| |#1| (-171))) (($ $) NIL (|has| |#1| (-554))) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#2|) 62) (($ |#3|) 60)) (-3906 ((|#1| $ (-530 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL) ((|#3| $ (-766)) 38)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-3055 (($ $) 152 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 128 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) 148 (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) 124 (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) 156 (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-1566 (($ $) 158 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 134 (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) 154 (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) 150 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 126 (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) 47 T CONST)) (-2294 (($) 54 T CONST)) (-3114 (($ $ |#2|) NIL) (($ $ (-639 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) 181 (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 58)) (** (($ $ (-916)) NIL) (($ $ (-766)) 67) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 100 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 57) (($ $ (-406 (-562))) 105 (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) 103 (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 43) (($ $ |#1|) 44) (($ |#3| $) 42)))
-(((-1118 |#1| |#2| |#3|) (-13 (-735 |#1| |#2|) (-10 -8 (-15 -3906 (|#3| $ (-766))) (-15 -4054 ($ |#2|)) (-15 -4054 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -3198 ((-1 (-1148 |#3|) |#3|) (-639 |#2|) (-639 (-1148 |#3|)))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -2667 ($ $ |#2| |#1|)) (-15 -2345 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-1044) (-845) (-944 |#1| (-530 |#2|) |#2|)) (T -1118))
-((-3906 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *2 (-944 *4 (-530 *5) *5)) (-5 *1 (-1118 *4 *5 *2)) (-4 *4 (-1044)) (-4 *5 (-845)))) (-4054 (*1 *1 *2) (-12 (-4 *3 (-1044)) (-4 *2 (-845)) (-5 *1 (-1118 *3 *2 *4)) (-4 *4 (-944 *3 (-530 *2) *2)))) (-4054 (*1 *1 *2) (-12 (-4 *3 (-1044)) (-4 *4 (-845)) (-5 *1 (-1118 *3 *4 *2)) (-4 *2 (-944 *3 (-530 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-845)) (-5 *1 (-1118 *3 *4 *2)) (-4 *2 (-944 *3 (-530 *4) *4)))) (-3198 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 (-1148 *7))) (-4 *6 (-845)) (-4 *7 (-944 *5 (-530 *6) *6)) (-4 *5 (-1044)) (-5 *2 (-1 (-1148 *7) *7)) (-5 *1 (-1118 *5 *6 *7)))) (-2667 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-4 *2 (-845)) (-5 *1 (-1118 *3 *2 *4)) (-4 *4 (-944 *3 (-530 *2) *2)))) (-2345 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1118 *4 *3 *5))) (-4 *4 (-38 (-406 (-562)))) (-4 *4 (-1044)) (-4 *3 (-845)) (-5 *1 (-1118 *4 *3 *5)) (-4 *5 (-944 *4 (-530 *3) *3)))))
-(-13 (-735 |#1| |#2|) (-10 -8 (-15 -3906 (|#3| $ (-766))) (-15 -4054 ($ |#2|)) (-15 -4054 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -3198 ((-1 (-1148 |#3|) |#3|) (-639 |#2|) (-639 (-1148 |#3|)))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -2667 ($ $ |#2| |#1|)) (-15 -2345 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
-((-4041 (((-112) $ $) 7)) (-2560 (((-639 (-2 (|:| -1450 $) (|:| -3316 (-639 |#4|)))) (-639 |#4|)) 85)) (-2304 (((-639 $) (-639 |#4|)) 86) (((-639 $) (-639 |#4|) (-112)) 111)) (-1402 (((-639 |#3|) $) 33)) (-4170 (((-112) $) 26)) (-4274 (((-112) $) 17 (|has| |#1| (-554)))) (-4377 (((-112) |#4| $) 101) (((-112) $) 97)) (-3049 ((|#4| |#4| $) 92)) (-2798 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 $))) |#4| $) 126)) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |#3|) 27)) (-4336 (((-112) $ (-766)) 44)) (-3556 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4402))) (((-3 |#4| "failed") $ |#3|) 79)) (-1800 (($) 45 T CONST)) (-2207 (((-112) $) 22 (|has| |#1| (-554)))) (-1920 (((-112) $ $) 24 (|has| |#1| (-554)))) (-3852 (((-112) $ $) 23 (|has| |#1| (-554)))) (-2539 (((-112) $) 25 (|has| |#1| (-554)))) (-2839 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3884 (((-639 |#4|) (-639 |#4|) $) 18 (|has| |#1| (-554)))) (-2540 (((-639 |#4|) (-639 |#4|) $) 19 (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 36)) (-3961 (($ (-639 |#4|)) 35)) (-1434 (((-3 $ "failed") $) 82)) (-2387 ((|#4| |#4| $) 89)) (-1459 (($ $) 68 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#4| $) 67 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4402)))) (-2264 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-554)))) (-4091 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3595 ((|#4| |#4| $) 87)) (-1955 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4402))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4402))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2267 (((-2 (|:| -1450 (-639 |#4|)) (|:| -3316 (-639 |#4|))) $) 105)) (-4079 (((-112) |#4| $) 136)) (-3513 (((-112) |#4| $) 133)) (-2764 (((-112) |#4| $) 137) (((-112) $) 134)) (-1720 (((-639 |#4|) $) 52 (|has| $ (-6 -4402)))) (-2573 (((-112) |#4| $) 104) (((-112) $) 103)) (-4339 ((|#3| $) 34)) (-3292 (((-112) $ (-766)) 43)) (-1912 (((-639 |#4|) $) 53 (|has| $ (-6 -4402)))) (-1669 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#4| |#4|) $) 47)) (-3754 (((-639 |#3|) $) 32)) (-2071 (((-112) |#3| $) 31)) (-3289 (((-112) $ (-766)) 42)) (-2913 (((-1150) $) 9)) (-1609 (((-3 |#4| (-639 $)) |#4| |#4| $) 128)) (-1851 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 $))) |#4| |#4| $) 127)) (-1504 (((-3 |#4| "failed") $) 83)) (-1814 (((-639 $) |#4| $) 129)) (-1950 (((-3 (-112) (-639 $)) |#4| $) 132)) (-2021 (((-639 (-2 (|:| |val| (-112)) (|:| -1495 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-4376 (((-639 $) |#4| $) 125) (((-639 $) (-639 |#4|) $) 124) (((-639 $) (-639 |#4|) (-639 $)) 123) (((-639 $) |#4| (-639 $)) 122)) (-1430 (($ |#4| $) 117) (($ (-639 |#4|) $) 116)) (-3576 (((-639 |#4|) $) 107)) (-2890 (((-112) |#4| $) 99) (((-112) $) 95)) (-1849 ((|#4| |#4| $) 90)) (-1408 (((-112) $ $) 110)) (-3725 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-554)))) (-2766 (((-112) |#4| $) 100) (((-112) $) 96)) (-1532 ((|#4| |#4| $) 91)) (-1709 (((-1112) $) 10)) (-1421 (((-3 |#4| "failed") $) 84)) (-3251 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3310 (((-3 $ "failed") $ |#4|) 78)) (-1353 (($ $ |#4|) 77) (((-639 $) |#4| $) 115) (((-639 $) |#4| (-639 $)) 114) (((-639 $) (-639 |#4|) $) 113) (((-639 $) (-639 |#4|) (-639 $)) 112)) (-1763 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) 59 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) 57 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) 56 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-3336 (((-112) $ $) 38)) (-2974 (((-112) $) 41)) (-4307 (($) 40)) (-3598 (((-766) $) 106)) (-1723 (((-766) |#4| $) 54 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) (((-766) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4402)))) (-4220 (($ $) 39)) (-4208 (((-535) $) 69 (|has| |#4| (-610 (-535))))) (-4066 (($ (-639 |#4|)) 60)) (-1812 (($ $ |#3|) 28)) (-3274 (($ $ |#3|) 30)) (-3277 (($ $) 88)) (-1568 (($ $ |#3|) 29)) (-4054 (((-857) $) 11) (((-639 |#4|) $) 37)) (-3730 (((-766) $) 76 (|has| |#3| (-367)))) (-2652 (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-4252 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) 98)) (-1612 (((-639 $) |#4| $) 121) (((-639 $) |#4| (-639 $)) 120) (((-639 $) (-639 |#4|) $) 119) (((-639 $) (-639 |#4|) (-639 $)) 118)) (-1744 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4402)))) (-4089 (((-639 |#3|) $) 81)) (-4211 (((-112) |#4| $) 135)) (-3694 (((-112) |#3| $) 80)) (-1731 (((-112) $ $) 6)) (-3492 (((-766) $) 46 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1401 (((-639 |#2|) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-2987 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) 116 (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1644 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4206 (($ $) 136 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 112 (|has| |#1| (-38 (-406 (-562)))))) (-3013 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) 120 (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) NIL T CONST)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1455 (((-947 |#1|) $ (-766)) NIL) (((-947 |#1|) $ (-766) (-766)) NIL)) (-2965 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-766) $ |#2|) NIL) (((-766) $ |#2| (-766)) NIL)) (-4367 (((-112) $) NIL)) (-1895 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2833 (((-112) $) NIL)) (-1377 (($ $ (-639 |#2|) (-639 (-530 |#2|))) NIL) (($ $ |#2| (-530 |#2|)) NIL) (($ |#1| (-530 |#2|)) NIL) (($ $ |#2| (-766)) 55) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4366 (($ $) 110 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-3081 (($ $ |#2|) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ |#2| |#1|) 163 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-4096 (($ (-1 $) |#2| |#1|) 162 (|has| |#1| (-38 (-406 (-562)))))) (-4316 (($ $ (-766)) 13)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3430 (($ $) 108 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (($ $ |#2| $) 94) (($ $ (-639 |#2|) (-639 $)) 87) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL)) (-4029 (($ $ |#2|) 97) (($ $ (-639 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-2250 (((-530 |#2|) $) NIL)) (-2628 (((-1 (-1148 |#3|) |#3|) (-639 |#2|) (-639 (-1148 |#3|))) 76)) (-3022 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 122 (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 118 (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) 138 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 114 (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) 15)) (-4053 (((-857) $) 179) (($ (-562)) NIL) (($ |#1|) 40 (|has| |#1| (-171))) (($ $) NIL (|has| |#1| (-554))) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#2|) 62) (($ |#3|) 60)) (-2266 ((|#1| $ (-530 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL) ((|#3| $ (-766)) 38)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-3054 (($ $) 152 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 128 (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) 148 (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) 124 (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) 156 (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-1567 (($ $) 158 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 134 (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) 154 (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) 150 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 126 (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) 47 T CONST)) (-2294 (($) 54 T CONST)) (-3113 (($ $ |#2|) NIL) (($ $ (-639 |#2|)) NIL) (($ $ |#2| (-766)) NIL) (($ $ (-639 |#2|) (-639 (-766))) NIL)) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) 181 (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 58)) (** (($ $ (-916)) NIL) (($ $ (-766)) 67) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 100 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 57) (($ $ (-406 (-562))) 105 (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) 103 (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 43) (($ $ |#1|) 44) (($ |#3| $) 42)))
+(((-1118 |#1| |#2| |#3|) (-13 (-735 |#1| |#2|) (-10 -8 (-15 -2266 (|#3| $ (-766))) (-15 -4053 ($ |#2|)) (-15 -4053 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -2628 ((-1 (-1148 |#3|) |#3|) (-639 |#2|) (-639 (-1148 |#3|)))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -3081 ($ $ |#2| |#1|)) (-15 -4096 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-1044) (-845) (-944 |#1| (-530 |#2|) |#2|)) (T -1118))
+((-2266 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *2 (-944 *4 (-530 *5) *5)) (-5 *1 (-1118 *4 *5 *2)) (-4 *4 (-1044)) (-4 *5 (-845)))) (-4053 (*1 *1 *2) (-12 (-4 *3 (-1044)) (-4 *2 (-845)) (-5 *1 (-1118 *3 *2 *4)) (-4 *4 (-944 *3 (-530 *2) *2)))) (-4053 (*1 *1 *2) (-12 (-4 *3 (-1044)) (-4 *4 (-845)) (-5 *1 (-1118 *3 *4 *2)) (-4 *2 (-944 *3 (-530 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-1044)) (-4 *4 (-845)) (-5 *1 (-1118 *3 *4 *2)) (-4 *2 (-944 *3 (-530 *4) *4)))) (-2628 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 (-1148 *7))) (-4 *6 (-845)) (-4 *7 (-944 *5 (-530 *6) *6)) (-4 *5 (-1044)) (-5 *2 (-1 (-1148 *7) *7)) (-5 *1 (-1118 *5 *6 *7)))) (-3081 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-4 *2 (-845)) (-5 *1 (-1118 *3 *2 *4)) (-4 *4 (-944 *3 (-530 *2) *2)))) (-4096 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1118 *4 *3 *5))) (-4 *4 (-38 (-406 (-562)))) (-4 *4 (-1044)) (-4 *3 (-845)) (-5 *1 (-1118 *4 *3 *5)) (-4 *5 (-944 *4 (-530 *3) *3)))))
+(-13 (-735 |#1| |#2|) (-10 -8 (-15 -2266 (|#3| $ (-766))) (-15 -4053 ($ |#2|)) (-15 -4053 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -2628 ((-1 (-1148 |#3|) |#3|) (-639 |#2|) (-639 (-1148 |#3|)))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -3081 ($ $ |#2| |#1|)) (-15 -4096 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
+((-4041 (((-112) $ $) 7)) (-1330 (((-639 (-2 (|:| -1449 $) (|:| -3315 (-639 |#4|)))) (-639 |#4|)) 85)) (-3672 (((-639 $) (-639 |#4|)) 86) (((-639 $) (-639 |#4|) (-112)) 111)) (-1401 (((-639 |#3|) $) 33)) (-2799 (((-112) $) 26)) (-4370 (((-112) $) 17 (|has| |#1| (-554)))) (-4177 (((-112) |#4| $) 101) (((-112) $) 97)) (-3623 ((|#4| |#4| $) 92)) (-1977 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 $))) |#4| $) 126)) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |#3|) 27)) (-3735 (((-112) $ (-766)) 44)) (-3556 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4403))) (((-3 |#4| "failed") $ |#3|) 79)) (-3329 (($) 45 T CONST)) (-2169 (((-112) $) 22 (|has| |#1| (-554)))) (-2183 (((-112) $ $) 24 (|has| |#1| (-554)))) (-2864 (((-112) $ $) 23 (|has| |#1| (-554)))) (-4219 (((-112) $) 25 (|has| |#1| (-554)))) (-4227 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-2037 (((-639 |#4|) (-639 |#4|) $) 18 (|has| |#1| (-554)))) (-4230 (((-639 |#4|) (-639 |#4|) $) 19 (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 36)) (-3960 (($ (-639 |#4|)) 35)) (-1434 (((-3 $ "failed") $) 82)) (-3255 ((|#4| |#4| $) 89)) (-1459 (($ $) 68 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#4| $) 67 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4403)))) (-1441 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-554)))) (-3300 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-2227 ((|#4| |#4| $) 87)) (-1954 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4403))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4403))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-1471 (((-2 (|:| -1449 (-639 |#4|)) (|:| -3315 (-639 |#4|))) $) 105)) (-3189 (((-112) |#4| $) 136)) (-2633 (((-112) |#4| $) 133)) (-2813 (((-112) |#4| $) 137) (((-112) $) 134)) (-1720 (((-639 |#4|) $) 52 (|has| $ (-6 -4403)))) (-1493 (((-112) |#4| $) 104) (((-112) $) 103)) (-3761 ((|#3| $) 34)) (-4172 (((-112) $ (-766)) 43)) (-2123 (((-639 |#4|) $) 53 (|has| $ (-6 -4403)))) (-1572 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#4| |#4|) $) 47)) (-3133 (((-639 |#3|) $) 32)) (-3112 (((-112) |#3| $) 31)) (-4147 (((-112) $ (-766)) 42)) (-3696 (((-1150) $) 9)) (-4093 (((-3 |#4| (-639 $)) |#4| |#4| $) 128)) (-2672 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 $))) |#4| |#4| $) 127)) (-1504 (((-3 |#4| "failed") $) 83)) (-2334 (((-639 $) |#4| $) 129)) (-4302 (((-3 (-112) (-639 $)) |#4| $) 132)) (-3792 (((-639 (-2 (|:| |val| (-112)) (|:| -1501 $))) |#4| $) 131) (((-112) |#4| $) 130)) (-4169 (((-639 $) |#4| $) 125) (((-639 $) (-639 |#4|) $) 124) (((-639 $) (-639 |#4|) (-639 $)) 123) (((-639 $) |#4| (-639 $)) 122)) (-1997 (($ |#4| $) 117) (($ (-639 |#4|) $) 116)) (-2063 (((-639 |#4|) $) 107)) (-1645 (((-112) |#4| $) 99) (((-112) $) 95)) (-2651 ((|#4| |#4| $) 90)) (-1789 (((-112) $ $) 110)) (-4123 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-554)))) (-2830 (((-112) |#4| $) 100) (((-112) $) 96)) (-1630 ((|#4| |#4| $) 91)) (-1709 (((-1112) $) 10)) (-1421 (((-3 |#4| "failed") $) 84)) (-1963 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-4333 (((-3 $ "failed") $ |#4|) 78)) (-4316 (($ $ |#4|) 77) (((-639 $) |#4| $) 115) (((-639 $) |#4| (-639 $)) 114) (((-639 $) (-639 |#4|) $) 113) (((-639 $) (-639 |#4|) (-639 $)) 112)) (-3008 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) 59 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) 57 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) 56 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-1452 (((-112) $ $) 38)) (-3087 (((-112) $) 41)) (-1663 (($) 40)) (-2250 (((-766) $) 106)) (-1723 (((-766) |#4| $) 54 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) (((-766) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4403)))) (-4220 (($ $) 39)) (-4208 (((-535) $) 69 (|has| |#4| (-610 (-535))))) (-4064 (($ (-639 |#4|)) 60)) (-2316 (($ $ |#3|) 28)) (-2180 (($ $ |#3|) 30)) (-2209 (($ $) 88)) (-1962 (($ $ |#3|) 29)) (-4053 (((-857) $) 11) (((-639 |#4|) $) 37)) (-4157 (((-766) $) 76 (|has| |#3| (-367)))) (-4168 (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2350 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) 98)) (-4125 (((-639 $) |#4| $) 121) (((-639 $) |#4| (-639 $)) 120) (((-639 $) (-639 |#4|) $) 119) (((-639 $) (-639 |#4|) (-639 $)) 118)) (-2879 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4403)))) (-3278 (((-639 |#3|) $) 81)) (-1972 (((-112) |#4| $) 135)) (-3782 (((-112) |#3| $) 80)) (-1733 (((-112) $ $) 6)) (-3492 (((-766) $) 46 (|has| $ (-6 -4403)))))
(((-1119 |#1| |#2| |#3| |#4|) (-139) (-451) (-788) (-845) (-1058 |t#1| |t#2| |t#3|)) (T -1119))
NIL
(-13 (-1101 |t#1| |t#2| |t#3| |t#4|) (-779 |t#1| |t#2| |t#3| |t#4|))
(((-34) . T) ((-102) . T) ((-609 (-639 |#4|)) . T) ((-609 (-857)) . T) ((-150 |#4|) . T) ((-610 (-535)) |has| |#4| (-610 (-535))) ((-308 |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))) ((-488 |#4|) . T) ((-513 |#4| |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))) ((-779 |#1| |#2| |#3| |#4|) . T) ((-971 |#1| |#2| |#3| |#4|) . T) ((-1064 |#1| |#2| |#3| |#4|) . T) ((-1092) . T) ((-1101 |#1| |#2| |#3| |#4|) . T) ((-1200 |#1| |#2| |#3| |#4|) . T) ((-1207) . T))
-((-4351 (((-639 |#2|) |#1|) 12)) (-3904 (((-639 |#2|) |#2| |#2| |#2| |#2| |#2|) 38) (((-639 |#2|) |#1|) 49)) (-2638 (((-639 |#2|) |#2| |#2| |#2|) 36) (((-639 |#2|) |#1|) 47)) (-2106 ((|#2| |#1|) 43)) (-3897 (((-2 (|:| |solns| (-639 |#2|)) (|:| |maps| (-639 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 17)) (-1427 (((-639 |#2|) |#2| |#2|) 35) (((-639 |#2|) |#1|) 46)) (-4289 (((-639 |#2|) |#2| |#2| |#2| |#2|) 37) (((-639 |#2|) |#1|) 48)) (-2446 ((|#2| |#2| |#2| |#2| |#2| |#2|) 42)) (-3748 ((|#2| |#2| |#2| |#2|) 40)) (-2290 ((|#2| |#2| |#2|) 39)) (-2055 ((|#2| |#2| |#2| |#2| |#2|) 41)))
-(((-1120 |#1| |#2|) (-10 -7 (-15 -4351 ((-639 |#2|) |#1|)) (-15 -2106 (|#2| |#1|)) (-15 -3897 ((-2 (|:| |solns| (-639 |#2|)) (|:| |maps| (-639 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -1427 ((-639 |#2|) |#1|)) (-15 -2638 ((-639 |#2|) |#1|)) (-15 -4289 ((-639 |#2|) |#1|)) (-15 -3904 ((-639 |#2|) |#1|)) (-15 -1427 ((-639 |#2|) |#2| |#2|)) (-15 -2638 ((-639 |#2|) |#2| |#2| |#2|)) (-15 -4289 ((-639 |#2|) |#2| |#2| |#2| |#2|)) (-15 -3904 ((-639 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -2290 (|#2| |#2| |#2|)) (-15 -3748 (|#2| |#2| |#2| |#2|)) (-15 -2055 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2446 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1232 |#2|) (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (T -1120))
-((-2446 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))) (-2055 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))) (-3748 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))) (-2290 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))) (-3904 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))) (-4289 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))) (-2638 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))) (-1427 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))) (-3904 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4)))) (-4289 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4)))) (-2638 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4)))) (-1427 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4)))) (-3897 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-2 (|:| |solns| (-639 *5)) (|:| |maps| (-639 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1120 *3 *5)) (-4 *3 (-1232 *5)))) (-2106 (*1 *2 *3) (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))) (-4351 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4)))))
-(-10 -7 (-15 -4351 ((-639 |#2|) |#1|)) (-15 -2106 (|#2| |#1|)) (-15 -3897 ((-2 (|:| |solns| (-639 |#2|)) (|:| |maps| (-639 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -1427 ((-639 |#2|) |#1|)) (-15 -2638 ((-639 |#2|) |#1|)) (-15 -4289 ((-639 |#2|) |#1|)) (-15 -3904 ((-639 |#2|) |#1|)) (-15 -1427 ((-639 |#2|) |#2| |#2|)) (-15 -2638 ((-639 |#2|) |#2| |#2| |#2|)) (-15 -4289 ((-639 |#2|) |#2| |#2| |#2| |#2|)) (-15 -3904 ((-639 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -2290 (|#2| |#2| |#2|)) (-15 -3748 (|#2| |#2| |#2| |#2|)) (-15 -2055 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2446 (|#2| |#2| |#2| |#2| |#2| |#2|)))
-((-4069 (((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-406 (-947 |#1|))))) 95) (((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-406 (-947 |#1|)))) (-639 (-1168))) 94) (((-639 (-639 (-293 (-315 |#1|)))) (-639 (-406 (-947 |#1|)))) 92) (((-639 (-639 (-293 (-315 |#1|)))) (-639 (-406 (-947 |#1|))) (-639 (-1168))) 90) (((-639 (-293 (-315 |#1|))) (-293 (-406 (-947 |#1|)))) 75) (((-639 (-293 (-315 |#1|))) (-293 (-406 (-947 |#1|))) (-1168)) 76) (((-639 (-293 (-315 |#1|))) (-406 (-947 |#1|))) 70) (((-639 (-293 (-315 |#1|))) (-406 (-947 |#1|)) (-1168)) 59)) (-3762 (((-639 (-639 (-315 |#1|))) (-639 (-406 (-947 |#1|))) (-639 (-1168))) 88) (((-639 (-315 |#1|)) (-406 (-947 |#1|)) (-1168)) 43)) (-4303 (((-1157 (-639 (-315 |#1|)) (-639 (-293 (-315 |#1|)))) (-406 (-947 |#1|)) (-1168)) 98) (((-1157 (-639 (-315 |#1|)) (-639 (-293 (-315 |#1|)))) (-293 (-406 (-947 |#1|))) (-1168)) 97)))
-(((-1121 |#1|) (-10 -7 (-15 -4069 ((-639 (-293 (-315 |#1|))) (-406 (-947 |#1|)) (-1168))) (-15 -4069 ((-639 (-293 (-315 |#1|))) (-406 (-947 |#1|)))) (-15 -4069 ((-639 (-293 (-315 |#1|))) (-293 (-406 (-947 |#1|))) (-1168))) (-15 -4069 ((-639 (-293 (-315 |#1|))) (-293 (-406 (-947 |#1|))))) (-15 -4069 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -4069 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-406 (-947 |#1|))))) (-15 -4069 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-406 (-947 |#1|)))) (-639 (-1168)))) (-15 -4069 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-406 (-947 |#1|)))))) (-15 -3762 ((-639 (-315 |#1|)) (-406 (-947 |#1|)) (-1168))) (-15 -3762 ((-639 (-639 (-315 |#1|))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -4303 ((-1157 (-639 (-315 |#1|)) (-639 (-293 (-315 |#1|)))) (-293 (-406 (-947 |#1|))) (-1168))) (-15 -4303 ((-1157 (-639 (-315 |#1|)) (-639 (-293 (-315 |#1|)))) (-406 (-947 |#1|)) (-1168)))) (-13 (-306) (-845) (-146))) (T -1121))
-((-4303 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-1157 (-639 (-315 *5)) (-639 (-293 (-315 *5))))) (-5 *1 (-1121 *5)))) (-4303 (*1 *2 *3 *4) (-12 (-5 *3 (-293 (-406 (-947 *5)))) (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-1157 (-639 (-315 *5)) (-639 (-293 (-315 *5))))) (-5 *1 (-1121 *5)))) (-3762 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168))) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-639 (-315 *5)))) (-5 *1 (-1121 *5)))) (-3762 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-315 *5))) (-5 *1 (-1121 *5)))) (-4069 (*1 *2 *3) (-12 (-5 *3 (-639 (-293 (-406 (-947 *4))))) (-4 *4 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-639 (-293 (-315 *4))))) (-5 *1 (-1121 *4)))) (-4069 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-293 (-406 (-947 *5))))) (-5 *4 (-639 (-1168))) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-639 (-293 (-315 *5))))) (-5 *1 (-1121 *5)))) (-4069 (*1 *2 *3) (-12 (-5 *3 (-639 (-406 (-947 *4)))) (-4 *4 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-639 (-293 (-315 *4))))) (-5 *1 (-1121 *4)))) (-4069 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168))) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-639 (-293 (-315 *5))))) (-5 *1 (-1121 *5)))) (-4069 (*1 *2 *3) (-12 (-5 *3 (-293 (-406 (-947 *4)))) (-4 *4 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1121 *4)))) (-4069 (*1 *2 *3 *4) (-12 (-5 *3 (-293 (-406 (-947 *5)))) (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *5)))) (-5 *1 (-1121 *5)))) (-4069 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1121 *4)))) (-4069 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *5)))) (-5 *1 (-1121 *5)))))
-(-10 -7 (-15 -4069 ((-639 (-293 (-315 |#1|))) (-406 (-947 |#1|)) (-1168))) (-15 -4069 ((-639 (-293 (-315 |#1|))) (-406 (-947 |#1|)))) (-15 -4069 ((-639 (-293 (-315 |#1|))) (-293 (-406 (-947 |#1|))) (-1168))) (-15 -4069 ((-639 (-293 (-315 |#1|))) (-293 (-406 (-947 |#1|))))) (-15 -4069 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -4069 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-406 (-947 |#1|))))) (-15 -4069 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-406 (-947 |#1|)))) (-639 (-1168)))) (-15 -4069 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-406 (-947 |#1|)))))) (-15 -3762 ((-639 (-315 |#1|)) (-406 (-947 |#1|)) (-1168))) (-15 -3762 ((-639 (-639 (-315 |#1|))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -4303 ((-1157 (-639 (-315 |#1|)) (-639 (-293 (-315 |#1|)))) (-293 (-406 (-947 |#1|))) (-1168))) (-15 -4303 ((-1157 (-639 (-315 |#1|)) (-639 (-293 (-315 |#1|)))) (-406 (-947 |#1|)) (-1168))))
-((-2661 (((-406 (-1164 (-315 |#1|))) (-1256 (-315 |#1|)) (-406 (-1164 (-315 |#1|))) (-562)) 29)) (-4090 (((-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|)))) 40)))
-(((-1122 |#1|) (-10 -7 (-15 -4090 ((-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))))) (-15 -2661 ((-406 (-1164 (-315 |#1|))) (-1256 (-315 |#1|)) (-406 (-1164 (-315 |#1|))) (-562)))) (-13 (-554) (-845))) (T -1122))
-((-2661 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-406 (-1164 (-315 *5)))) (-5 *3 (-1256 (-315 *5))) (-5 *4 (-562)) (-4 *5 (-13 (-554) (-845))) (-5 *1 (-1122 *5)))) (-4090 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-406 (-1164 (-315 *3)))) (-4 *3 (-13 (-554) (-845))) (-5 *1 (-1122 *3)))))
-(-10 -7 (-15 -4090 ((-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))))) (-15 -2661 ((-406 (-1164 (-315 |#1|))) (-1256 (-315 |#1|)) (-406 (-1164 (-315 |#1|))) (-562))))
-((-4351 (((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-315 |#1|))) (-639 (-1168))) 222) (((-639 (-293 (-315 |#1|))) (-315 |#1|) (-1168)) 20) (((-639 (-293 (-315 |#1|))) (-293 (-315 |#1|)) (-1168)) 26) (((-639 (-293 (-315 |#1|))) (-293 (-315 |#1|))) 25) (((-639 (-293 (-315 |#1|))) (-315 |#1|)) 21)))
-(((-1123 |#1|) (-10 -7 (-15 -4351 ((-639 (-293 (-315 |#1|))) (-315 |#1|))) (-15 -4351 ((-639 (-293 (-315 |#1|))) (-293 (-315 |#1|)))) (-15 -4351 ((-639 (-293 (-315 |#1|))) (-293 (-315 |#1|)) (-1168))) (-15 -4351 ((-639 (-293 (-315 |#1|))) (-315 |#1|) (-1168))) (-15 -4351 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-315 |#1|))) (-639 (-1168))))) (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (T -1123))
-((-4351 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-1168))) (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-639 (-639 (-293 (-315 *5))))) (-5 *1 (-1123 *5)) (-5 *3 (-639 (-293 (-315 *5)))))) (-4351 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-639 (-293 (-315 *5)))) (-5 *1 (-1123 *5)) (-5 *3 (-315 *5)))) (-4351 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-639 (-293 (-315 *5)))) (-5 *1 (-1123 *5)) (-5 *3 (-293 (-315 *5))))) (-4351 (*1 *2 *3) (-12 (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1123 *4)) (-5 *3 (-293 (-315 *4))))) (-4351 (*1 *2 *3) (-12 (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1123 *4)) (-5 *3 (-315 *4)))))
-(-10 -7 (-15 -4351 ((-639 (-293 (-315 |#1|))) (-315 |#1|))) (-15 -4351 ((-639 (-293 (-315 |#1|))) (-293 (-315 |#1|)))) (-15 -4351 ((-639 (-293 (-315 |#1|))) (-293 (-315 |#1|)) (-1168))) (-15 -4351 ((-639 (-293 (-315 |#1|))) (-315 |#1|) (-1168))) (-15 -4351 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-315 |#1|))) (-639 (-1168)))))
-((-4107 ((|#2| |#2|) 20 (|has| |#1| (-845))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 17)) (-4345 ((|#2| |#2|) 19 (|has| |#1| (-845))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 16)))
-(((-1124 |#1| |#2|) (-10 -7 (-15 -4345 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -4107 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-845)) (PROGN (-15 -4345 (|#2| |#2|)) (-15 -4107 (|#2| |#2|))) |%noBranch|)) (-1207) (-13 (-600 (-562) |#1|) (-10 -7 (-6 -4402) (-6 -4403)))) (T -1124))
-((-4107 (*1 *2 *2) (-12 (-4 *3 (-845)) (-4 *3 (-1207)) (-5 *1 (-1124 *3 *2)) (-4 *2 (-13 (-600 (-562) *3) (-10 -7 (-6 -4402) (-6 -4403)))))) (-4345 (*1 *2 *2) (-12 (-4 *3 (-845)) (-4 *3 (-1207)) (-5 *1 (-1124 *3 *2)) (-4 *2 (-13 (-600 (-562) *3) (-10 -7 (-6 -4402) (-6 -4403)))))) (-4107 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-1124 *4 *2)) (-4 *2 (-13 (-600 (-562) *4) (-10 -7 (-6 -4402) (-6 -4403)))))) (-4345 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-1124 *4 *2)) (-4 *2 (-13 (-600 (-562) *4) (-10 -7 (-6 -4402) (-6 -4403)))))))
-(-10 -7 (-15 -4345 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -4107 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-845)) (PROGN (-15 -4345 (|#2| |#2|)) (-15 -4107 (|#2| |#2|))) |%noBranch|))
-((-4041 (((-112) $ $) NIL)) (-3110 (((-1156 3 |#1|) $) 107)) (-2616 (((-112) $) 72)) (-2338 (($ $ (-639 (-938 |#1|))) 20) (($ $ (-639 (-639 |#1|))) 75) (($ (-639 (-938 |#1|))) 74) (((-639 (-938 |#1|)) $) 73)) (-2376 (((-112) $) 41)) (-1460 (($ $ (-938 |#1|)) 46) (($ $ (-639 |#1|)) 51) (($ $ (-766)) 53) (($ (-938 |#1|)) 47) (((-938 |#1|) $) 45)) (-3231 (((-2 (|:| -2865 (-766)) (|:| |curves| (-766)) (|:| |polygons| (-766)) (|:| |constructs| (-766))) $) 105)) (-4172 (((-766) $) 26)) (-3684 (((-766) $) 25)) (-1754 (($ $ (-766) (-938 |#1|)) 39)) (-3855 (((-112) $) 82)) (-2378 (($ $ (-639 (-639 (-938 |#1|))) (-639 (-170)) (-170)) 89) (($ $ (-639 (-639 (-639 |#1|))) (-639 (-170)) (-170)) 91) (($ $ (-639 (-639 (-938 |#1|))) (-112) (-112)) 85) (($ $ (-639 (-639 (-639 |#1|))) (-112) (-112)) 93) (($ (-639 (-639 (-938 |#1|)))) 86) (($ (-639 (-639 (-938 |#1|))) (-112) (-112)) 87) (((-639 (-639 (-938 |#1|))) $) 84)) (-1610 (($ (-639 $)) 28) (($ $ $) 29)) (-3359 (((-639 (-170)) $) 102)) (-1663 (((-639 (-938 |#1|)) $) 96)) (-2919 (((-639 (-639 (-170))) $) 101)) (-2620 (((-639 (-639 (-639 (-938 |#1|)))) $) NIL)) (-4191 (((-639 (-639 (-639 (-766)))) $) 99)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4236 (((-766) $ (-639 (-938 |#1|))) 37)) (-2060 (((-112) $) 54)) (-1539 (($ $ (-639 (-938 |#1|))) 56) (($ $ (-639 (-639 |#1|))) 62) (($ (-639 (-938 |#1|))) 57) (((-639 (-938 |#1|)) $) 55)) (-3222 (($) 23) (($ (-1156 3 |#1|)) 24)) (-4220 (($ $) 35)) (-2895 (((-639 $) $) 34)) (-3586 (($ (-639 $)) 31)) (-2702 (((-639 $) $) 33)) (-4054 (((-857) $) 111)) (-3840 (((-112) $) 64)) (-3484 (($ $ (-639 (-938 |#1|))) 66) (($ $ (-639 (-639 |#1|))) 69) (($ (-639 (-938 |#1|))) 67) (((-639 (-938 |#1|)) $) 65)) (-2588 (($ $) 106)) (-1731 (((-112) $ $) NIL)))
+((-3888 (((-639 |#2|) |#1|) 12)) (-2246 (((-639 |#2|) |#2| |#2| |#2| |#2| |#2|) 38) (((-639 |#2|) |#1|) 49)) (-4027 (((-639 |#2|) |#2| |#2| |#2|) 36) (((-639 |#2|) |#1|) 47)) (-2341 ((|#2| |#1|) 43)) (-2171 (((-2 (|:| |solns| (-639 |#2|)) (|:| |maps| (-639 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 17)) (-1428 (((-639 |#2|) |#2| |#2|) 35) (((-639 |#2|) |#1|) 46)) (-1437 (((-639 |#2|) |#2| |#2| |#2| |#2|) 37) (((-639 |#2|) |#1|) 48)) (-2663 ((|#2| |#2| |#2| |#2| |#2| |#2|) 42)) (-3080 ((|#2| |#2| |#2| |#2|) 40)) (-3545 ((|#2| |#2| |#2|) 39)) (-2944 ((|#2| |#2| |#2| |#2| |#2|) 41)))
+(((-1120 |#1| |#2|) (-10 -7 (-15 -3888 ((-639 |#2|) |#1|)) (-15 -2341 (|#2| |#1|)) (-15 -2171 ((-2 (|:| |solns| (-639 |#2|)) (|:| |maps| (-639 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -1428 ((-639 |#2|) |#1|)) (-15 -4027 ((-639 |#2|) |#1|)) (-15 -1437 ((-639 |#2|) |#1|)) (-15 -2246 ((-639 |#2|) |#1|)) (-15 -1428 ((-639 |#2|) |#2| |#2|)) (-15 -4027 ((-639 |#2|) |#2| |#2| |#2|)) (-15 -1437 ((-639 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2246 ((-639 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -3545 (|#2| |#2| |#2|)) (-15 -3080 (|#2| |#2| |#2| |#2|)) (-15 -2944 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2663 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1232 |#2|) (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (T -1120))
+((-2663 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))) (-2944 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))) (-3080 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))) (-3545 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))) (-2246 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))) (-1437 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))) (-4027 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))) (-1428 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))) (-2246 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4)))) (-1437 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4)))) (-4027 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4)))) (-1428 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4)))) (-2171 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-2 (|:| |solns| (-639 *5)) (|:| |maps| (-639 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1120 *3 *5)) (-4 *3 (-1232 *5)))) (-2341 (*1 *2 *3) (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))) (-3888 (*1 *2 *3) (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562))))))) (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4)))))
+(-10 -7 (-15 -3888 ((-639 |#2|) |#1|)) (-15 -2341 (|#2| |#1|)) (-15 -2171 ((-2 (|:| |solns| (-639 |#2|)) (|:| |maps| (-639 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -1428 ((-639 |#2|) |#1|)) (-15 -4027 ((-639 |#2|) |#1|)) (-15 -1437 ((-639 |#2|) |#1|)) (-15 -2246 ((-639 |#2|) |#1|)) (-15 -1428 ((-639 |#2|) |#2| |#2|)) (-15 -4027 ((-639 |#2|) |#2| |#2| |#2|)) (-15 -1437 ((-639 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2246 ((-639 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -3545 (|#2| |#2| |#2|)) (-15 -3080 (|#2| |#2| |#2| |#2|)) (-15 -2944 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2663 (|#2| |#2| |#2| |#2| |#2| |#2|)))
+((-3109 (((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-406 (-947 |#1|))))) 95) (((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-406 (-947 |#1|)))) (-639 (-1168))) 94) (((-639 (-639 (-293 (-315 |#1|)))) (-639 (-406 (-947 |#1|)))) 92) (((-639 (-639 (-293 (-315 |#1|)))) (-639 (-406 (-947 |#1|))) (-639 (-1168))) 90) (((-639 (-293 (-315 |#1|))) (-293 (-406 (-947 |#1|)))) 75) (((-639 (-293 (-315 |#1|))) (-293 (-406 (-947 |#1|))) (-1168)) 76) (((-639 (-293 (-315 |#1|))) (-406 (-947 |#1|))) 70) (((-639 (-293 (-315 |#1|))) (-406 (-947 |#1|)) (-1168)) 59)) (-3194 (((-639 (-639 (-315 |#1|))) (-639 (-406 (-947 |#1|))) (-639 (-1168))) 88) (((-639 (-315 |#1|)) (-406 (-947 |#1|)) (-1168)) 43)) (-1619 (((-1157 (-639 (-315 |#1|)) (-639 (-293 (-315 |#1|)))) (-406 (-947 |#1|)) (-1168)) 98) (((-1157 (-639 (-315 |#1|)) (-639 (-293 (-315 |#1|)))) (-293 (-406 (-947 |#1|))) (-1168)) 97)))
+(((-1121 |#1|) (-10 -7 (-15 -3109 ((-639 (-293 (-315 |#1|))) (-406 (-947 |#1|)) (-1168))) (-15 -3109 ((-639 (-293 (-315 |#1|))) (-406 (-947 |#1|)))) (-15 -3109 ((-639 (-293 (-315 |#1|))) (-293 (-406 (-947 |#1|))) (-1168))) (-15 -3109 ((-639 (-293 (-315 |#1|))) (-293 (-406 (-947 |#1|))))) (-15 -3109 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -3109 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-406 (-947 |#1|))))) (-15 -3109 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-406 (-947 |#1|)))) (-639 (-1168)))) (-15 -3109 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-406 (-947 |#1|)))))) (-15 -3194 ((-639 (-315 |#1|)) (-406 (-947 |#1|)) (-1168))) (-15 -3194 ((-639 (-639 (-315 |#1|))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -1619 ((-1157 (-639 (-315 |#1|)) (-639 (-293 (-315 |#1|)))) (-293 (-406 (-947 |#1|))) (-1168))) (-15 -1619 ((-1157 (-639 (-315 |#1|)) (-639 (-293 (-315 |#1|)))) (-406 (-947 |#1|)) (-1168)))) (-13 (-306) (-845) (-146))) (T -1121))
+((-1619 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-1157 (-639 (-315 *5)) (-639 (-293 (-315 *5))))) (-5 *1 (-1121 *5)))) (-1619 (*1 *2 *3 *4) (-12 (-5 *3 (-293 (-406 (-947 *5)))) (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-1157 (-639 (-315 *5)) (-639 (-293 (-315 *5))))) (-5 *1 (-1121 *5)))) (-3194 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168))) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-639 (-315 *5)))) (-5 *1 (-1121 *5)))) (-3194 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-315 *5))) (-5 *1 (-1121 *5)))) (-3109 (*1 *2 *3) (-12 (-5 *3 (-639 (-293 (-406 (-947 *4))))) (-4 *4 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-639 (-293 (-315 *4))))) (-5 *1 (-1121 *4)))) (-3109 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-293 (-406 (-947 *5))))) (-5 *4 (-639 (-1168))) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-639 (-293 (-315 *5))))) (-5 *1 (-1121 *5)))) (-3109 (*1 *2 *3) (-12 (-5 *3 (-639 (-406 (-947 *4)))) (-4 *4 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-639 (-293 (-315 *4))))) (-5 *1 (-1121 *4)))) (-3109 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168))) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-639 (-293 (-315 *5))))) (-5 *1 (-1121 *5)))) (-3109 (*1 *2 *3) (-12 (-5 *3 (-293 (-406 (-947 *4)))) (-4 *4 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1121 *4)))) (-3109 (*1 *2 *3 *4) (-12 (-5 *3 (-293 (-406 (-947 *5)))) (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *5)))) (-5 *1 (-1121 *5)))) (-3109 (*1 *2 *3) (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1121 *4)))) (-3109 (*1 *2 *3 *4) (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *5)))) (-5 *1 (-1121 *5)))))
+(-10 -7 (-15 -3109 ((-639 (-293 (-315 |#1|))) (-406 (-947 |#1|)) (-1168))) (-15 -3109 ((-639 (-293 (-315 |#1|))) (-406 (-947 |#1|)))) (-15 -3109 ((-639 (-293 (-315 |#1|))) (-293 (-406 (-947 |#1|))) (-1168))) (-15 -3109 ((-639 (-293 (-315 |#1|))) (-293 (-406 (-947 |#1|))))) (-15 -3109 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -3109 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-406 (-947 |#1|))))) (-15 -3109 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-406 (-947 |#1|)))) (-639 (-1168)))) (-15 -3109 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-406 (-947 |#1|)))))) (-15 -3194 ((-639 (-315 |#1|)) (-406 (-947 |#1|)) (-1168))) (-15 -3194 ((-639 (-639 (-315 |#1|))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -1619 ((-1157 (-639 (-315 |#1|)) (-639 (-293 (-315 |#1|)))) (-293 (-406 (-947 |#1|))) (-1168))) (-15 -1619 ((-1157 (-639 (-315 |#1|)) (-639 (-293 (-315 |#1|)))) (-406 (-947 |#1|)) (-1168))))
+((-3017 (((-406 (-1164 (-315 |#1|))) (-1256 (-315 |#1|)) (-406 (-1164 (-315 |#1|))) (-562)) 29)) (-3288 (((-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|)))) 40)))
+(((-1122 |#1|) (-10 -7 (-15 -3288 ((-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))))) (-15 -3017 ((-406 (-1164 (-315 |#1|))) (-1256 (-315 |#1|)) (-406 (-1164 (-315 |#1|))) (-562)))) (-13 (-554) (-845))) (T -1122))
+((-3017 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-406 (-1164 (-315 *5)))) (-5 *3 (-1256 (-315 *5))) (-5 *4 (-562)) (-4 *5 (-13 (-554) (-845))) (-5 *1 (-1122 *5)))) (-3288 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-406 (-1164 (-315 *3)))) (-4 *3 (-13 (-554) (-845))) (-5 *1 (-1122 *3)))))
+(-10 -7 (-15 -3288 ((-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))) (-406 (-1164 (-315 |#1|))))) (-15 -3017 ((-406 (-1164 (-315 |#1|))) (-1256 (-315 |#1|)) (-406 (-1164 (-315 |#1|))) (-562))))
+((-3888 (((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-315 |#1|))) (-639 (-1168))) 222) (((-639 (-293 (-315 |#1|))) (-315 |#1|) (-1168)) 20) (((-639 (-293 (-315 |#1|))) (-293 (-315 |#1|)) (-1168)) 26) (((-639 (-293 (-315 |#1|))) (-293 (-315 |#1|))) 25) (((-639 (-293 (-315 |#1|))) (-315 |#1|)) 21)))
+(((-1123 |#1|) (-10 -7 (-15 -3888 ((-639 (-293 (-315 |#1|))) (-315 |#1|))) (-15 -3888 ((-639 (-293 (-315 |#1|))) (-293 (-315 |#1|)))) (-15 -3888 ((-639 (-293 (-315 |#1|))) (-293 (-315 |#1|)) (-1168))) (-15 -3888 ((-639 (-293 (-315 |#1|))) (-315 |#1|) (-1168))) (-15 -3888 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-315 |#1|))) (-639 (-1168))))) (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (T -1123))
+((-3888 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-1168))) (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-639 (-639 (-293 (-315 *5))))) (-5 *1 (-1123 *5)) (-5 *3 (-639 (-293 (-315 *5)))))) (-3888 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-639 (-293 (-315 *5)))) (-5 *1 (-1123 *5)) (-5 *3 (-315 *5)))) (-3888 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-639 (-293 (-315 *5)))) (-5 *1 (-1123 *5)) (-5 *3 (-293 (-315 *5))))) (-3888 (*1 *2 *3) (-12 (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1123 *4)) (-5 *3 (-293 (-315 *4))))) (-3888 (*1 *2 *3) (-12 (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146))) (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1123 *4)) (-5 *3 (-315 *4)))))
+(-10 -7 (-15 -3888 ((-639 (-293 (-315 |#1|))) (-315 |#1|))) (-15 -3888 ((-639 (-293 (-315 |#1|))) (-293 (-315 |#1|)))) (-15 -3888 ((-639 (-293 (-315 |#1|))) (-293 (-315 |#1|)) (-1168))) (-15 -3888 ((-639 (-293 (-315 |#1|))) (-315 |#1|) (-1168))) (-15 -3888 ((-639 (-639 (-293 (-315 |#1|)))) (-639 (-293 (-315 |#1|))) (-639 (-1168)))))
+((-3450 ((|#2| |#2|) 20 (|has| |#1| (-845))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 17)) (-3829 ((|#2| |#2|) 19 (|has| |#1| (-845))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 16)))
+(((-1124 |#1| |#2|) (-10 -7 (-15 -3829 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -3450 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-845)) (PROGN (-15 -3829 (|#2| |#2|)) (-15 -3450 (|#2| |#2|))) |%noBranch|)) (-1207) (-13 (-600 (-562) |#1|) (-10 -7 (-6 -4403) (-6 -4404)))) (T -1124))
+((-3450 (*1 *2 *2) (-12 (-4 *3 (-845)) (-4 *3 (-1207)) (-5 *1 (-1124 *3 *2)) (-4 *2 (-13 (-600 (-562) *3) (-10 -7 (-6 -4403) (-6 -4404)))))) (-3829 (*1 *2 *2) (-12 (-4 *3 (-845)) (-4 *3 (-1207)) (-5 *1 (-1124 *3 *2)) (-4 *2 (-13 (-600 (-562) *3) (-10 -7 (-6 -4403) (-6 -4404)))))) (-3450 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-1124 *4 *2)) (-4 *2 (-13 (-600 (-562) *4) (-10 -7 (-6 -4403) (-6 -4404)))))) (-3829 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-1124 *4 *2)) (-4 *2 (-13 (-600 (-562) *4) (-10 -7 (-6 -4403) (-6 -4404)))))))
+(-10 -7 (-15 -3829 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -3450 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-845)) (PROGN (-15 -3829 (|#2| |#2|)) (-15 -3450 (|#2| |#2|))) |%noBranch|))
+((-4041 (((-112) $ $) NIL)) (-2962 (((-1156 3 |#1|) $) 107)) (-3770 (((-112) $) 72)) (-4020 (($ $ (-639 (-938 |#1|))) 20) (($ $ (-639 (-639 |#1|))) 75) (($ (-639 (-938 |#1|))) 74) (((-639 (-938 |#1|)) $) 73)) (-3138 (((-112) $) 41)) (-1460 (($ $ (-938 |#1|)) 46) (($ $ (-639 |#1|)) 51) (($ $ (-766)) 53) (($ (-938 |#1|)) 47) (((-938 |#1|) $) 45)) (-3230 (((-2 (|:| -1358 (-766)) (|:| |curves| (-766)) (|:| |polygons| (-766)) (|:| |constructs| (-766))) $) 105)) (-2817 (((-766) $) 26)) (-3668 (((-766) $) 25)) (-2948 (($ $ (-766) (-938 |#1|)) 39)) (-2888 (((-112) $) 82)) (-3157 (($ $ (-639 (-639 (-938 |#1|))) (-639 (-170)) (-170)) 89) (($ $ (-639 (-639 (-639 |#1|))) (-639 (-170)) (-170)) 91) (($ $ (-639 (-639 (-938 |#1|))) (-112) (-112)) 85) (($ $ (-639 (-639 (-639 |#1|))) (-112) (-112)) 93) (($ (-639 (-639 (-938 |#1|)))) 86) (($ (-639 (-639 (-938 |#1|))) (-112) (-112)) 87) (((-639 (-639 (-938 |#1|))) $) 84)) (-4103 (($ (-639 $)) 28) (($ $ $) 29)) (-3514 (((-639 (-170)) $) 102)) (-1662 (((-639 (-938 |#1|)) $) 96)) (-3765 (((-639 (-639 (-170))) $) 101)) (-3816 (((-639 (-639 (-639 (-938 |#1|)))) $) NIL)) (-2951 (((-639 (-639 (-639 (-766)))) $) 99)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2196 (((-766) $ (-639 (-938 |#1|))) 37)) (-2990 (((-112) $) 54)) (-1698 (($ $ (-639 (-938 |#1|))) 56) (($ $ (-639 (-639 |#1|))) 62) (($ (-639 (-938 |#1|))) 57) (((-639 (-938 |#1|)) $) 55)) (-2835 (($) 23) (($ (-1156 3 |#1|)) 24)) (-4220 (($ $) 35)) (-1703 (((-639 $) $) 34)) (-2155 (($ (-639 $)) 31)) (-3383 (((-639 $) $) 33)) (-4053 (((-857) $) 111)) (-2763 (((-112) $) 64)) (-2377 (($ $ (-639 (-938 |#1|))) 66) (($ $ (-639 (-639 |#1|))) 69) (($ (-639 (-938 |#1|))) 67) (((-639 (-938 |#1|)) $) 65)) (-1661 (($ $) 106)) (-1733 (((-112) $ $) NIL)))
(((-1125 |#1|) (-1126 |#1|) (-1044)) (T -1125))
NIL
(-1126 |#1|)
-((-4041 (((-112) $ $) 7)) (-3110 (((-1156 3 |#1|) $) 13)) (-2616 (((-112) $) 29)) (-2338 (($ $ (-639 (-938 |#1|))) 33) (($ $ (-639 (-639 |#1|))) 32) (($ (-639 (-938 |#1|))) 31) (((-639 (-938 |#1|)) $) 30)) (-2376 (((-112) $) 44)) (-1460 (($ $ (-938 |#1|)) 49) (($ $ (-639 |#1|)) 48) (($ $ (-766)) 47) (($ (-938 |#1|)) 46) (((-938 |#1|) $) 45)) (-3231 (((-2 (|:| -2865 (-766)) (|:| |curves| (-766)) (|:| |polygons| (-766)) (|:| |constructs| (-766))) $) 15)) (-4172 (((-766) $) 58)) (-3684 (((-766) $) 59)) (-1754 (($ $ (-766) (-938 |#1|)) 50)) (-3855 (((-112) $) 21)) (-2378 (($ $ (-639 (-639 (-938 |#1|))) (-639 (-170)) (-170)) 28) (($ $ (-639 (-639 (-639 |#1|))) (-639 (-170)) (-170)) 27) (($ $ (-639 (-639 (-938 |#1|))) (-112) (-112)) 26) (($ $ (-639 (-639 (-639 |#1|))) (-112) (-112)) 25) (($ (-639 (-639 (-938 |#1|)))) 24) (($ (-639 (-639 (-938 |#1|))) (-112) (-112)) 23) (((-639 (-639 (-938 |#1|))) $) 22)) (-1610 (($ (-639 $)) 57) (($ $ $) 56)) (-3359 (((-639 (-170)) $) 16)) (-1663 (((-639 (-938 |#1|)) $) 20)) (-2919 (((-639 (-639 (-170))) $) 17)) (-2620 (((-639 (-639 (-639 (-938 |#1|)))) $) 18)) (-4191 (((-639 (-639 (-639 (-766)))) $) 19)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4236 (((-766) $ (-639 (-938 |#1|))) 51)) (-2060 (((-112) $) 39)) (-1539 (($ $ (-639 (-938 |#1|))) 43) (($ $ (-639 (-639 |#1|))) 42) (($ (-639 (-938 |#1|))) 41) (((-639 (-938 |#1|)) $) 40)) (-3222 (($) 61) (($ (-1156 3 |#1|)) 60)) (-4220 (($ $) 52)) (-2895 (((-639 $) $) 53)) (-3586 (($ (-639 $)) 55)) (-2702 (((-639 $) $) 54)) (-4054 (((-857) $) 11)) (-3840 (((-112) $) 34)) (-3484 (($ $ (-639 (-938 |#1|))) 38) (($ $ (-639 (-639 |#1|))) 37) (($ (-639 (-938 |#1|))) 36) (((-639 (-938 |#1|)) $) 35)) (-2588 (($ $) 14)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) 7)) (-2962 (((-1156 3 |#1|) $) 13)) (-3770 (((-112) $) 29)) (-4020 (($ $ (-639 (-938 |#1|))) 33) (($ $ (-639 (-639 |#1|))) 32) (($ (-639 (-938 |#1|))) 31) (((-639 (-938 |#1|)) $) 30)) (-3138 (((-112) $) 44)) (-1460 (($ $ (-938 |#1|)) 49) (($ $ (-639 |#1|)) 48) (($ $ (-766)) 47) (($ (-938 |#1|)) 46) (((-938 |#1|) $) 45)) (-3230 (((-2 (|:| -1358 (-766)) (|:| |curves| (-766)) (|:| |polygons| (-766)) (|:| |constructs| (-766))) $) 15)) (-2817 (((-766) $) 58)) (-3668 (((-766) $) 59)) (-2948 (($ $ (-766) (-938 |#1|)) 50)) (-2888 (((-112) $) 21)) (-3157 (($ $ (-639 (-639 (-938 |#1|))) (-639 (-170)) (-170)) 28) (($ $ (-639 (-639 (-639 |#1|))) (-639 (-170)) (-170)) 27) (($ $ (-639 (-639 (-938 |#1|))) (-112) (-112)) 26) (($ $ (-639 (-639 (-639 |#1|))) (-112) (-112)) 25) (($ (-639 (-639 (-938 |#1|)))) 24) (($ (-639 (-639 (-938 |#1|))) (-112) (-112)) 23) (((-639 (-639 (-938 |#1|))) $) 22)) (-4103 (($ (-639 $)) 57) (($ $ $) 56)) (-3514 (((-639 (-170)) $) 16)) (-1662 (((-639 (-938 |#1|)) $) 20)) (-3765 (((-639 (-639 (-170))) $) 17)) (-3816 (((-639 (-639 (-639 (-938 |#1|)))) $) 18)) (-2951 (((-639 (-639 (-639 (-766)))) $) 19)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2196 (((-766) $ (-639 (-938 |#1|))) 51)) (-2990 (((-112) $) 39)) (-1698 (($ $ (-639 (-938 |#1|))) 43) (($ $ (-639 (-639 |#1|))) 42) (($ (-639 (-938 |#1|))) 41) (((-639 (-938 |#1|)) $) 40)) (-2835 (($) 61) (($ (-1156 3 |#1|)) 60)) (-4220 (($ $) 52)) (-1703 (((-639 $) $) 53)) (-2155 (($ (-639 $)) 55)) (-3383 (((-639 $) $) 54)) (-4053 (((-857) $) 11)) (-2763 (((-112) $) 34)) (-2377 (($ $ (-639 (-938 |#1|))) 38) (($ $ (-639 (-639 |#1|))) 37) (($ (-639 (-938 |#1|))) 36) (((-639 (-938 |#1|)) $) 35)) (-1661 (($ $) 14)) (-1733 (((-112) $ $) 6)))
(((-1126 |#1|) (-139) (-1044)) (T -1126))
-((-4054 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-857)))) (-3222 (*1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044)))) (-3222 (*1 *1 *2) (-12 (-5 *2 (-1156 3 *3)) (-4 *3 (-1044)) (-4 *1 (-1126 *3)))) (-3684 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))) (-4172 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))) (-1610 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-1610 (*1 *1 *1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044)))) (-3586 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-2702 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)))) (-2895 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)))) (-4220 (*1 *1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044)))) (-4236 (*1 *2 *1 *3) (-12 (-5 *3 (-639 (-938 *4))) (-4 *1 (-1126 *4)) (-4 *4 (-1044)) (-5 *2 (-766)))) (-1754 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *3 (-938 *4)) (-4 *1 (-1126 *4)) (-4 *4 (-1044)))) (-1460 (*1 *1 *1 *2) (-12 (-5 *2 (-938 *3)) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-1460 (*1 *1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-1460 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-1460 (*1 *1 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-1044)) (-4 *1 (-1126 *3)))) (-1460 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-938 *3)))) (-2376 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))) (-1539 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-938 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-1539 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-1539 (*1 *1 *2) (-12 (-5 *2 (-639 (-938 *3))) (-4 *3 (-1044)) (-4 *1 (-1126 *3)))) (-1539 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3))))) (-2060 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))) (-3484 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-938 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-3484 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-3484 (*1 *1 *2) (-12 (-5 *2 (-639 (-938 *3))) (-4 *3 (-1044)) (-4 *1 (-1126 *3)))) (-3484 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3))))) (-3840 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))) (-2338 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-938 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-2338 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-2338 (*1 *1 *2) (-12 (-5 *2 (-639 (-938 *3))) (-4 *3 (-1044)) (-4 *1 (-1126 *3)))) (-2338 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3))))) (-2616 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))) (-2378 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-639 (-639 (-938 *5)))) (-5 *3 (-639 (-170))) (-5 *4 (-170)) (-4 *1 (-1126 *5)) (-4 *5 (-1044)))) (-2378 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-639 (-639 (-639 *5)))) (-5 *3 (-639 (-170))) (-5 *4 (-170)) (-4 *1 (-1126 *5)) (-4 *5 (-1044)))) (-2378 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-639 (-639 (-938 *4)))) (-5 *3 (-112)) (-4 *1 (-1126 *4)) (-4 *4 (-1044)))) (-2378 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-639 (-639 (-639 *4)))) (-5 *3 (-112)) (-4 *1 (-1126 *4)) (-4 *4 (-1044)))) (-2378 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 (-938 *3)))) (-4 *3 (-1044)) (-4 *1 (-1126 *3)))) (-2378 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-639 (-639 (-938 *4)))) (-5 *3 (-112)) (-4 *4 (-1044)) (-4 *1 (-1126 *4)))) (-2378 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-639 (-938 *3)))))) (-3855 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))) (-1663 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3))))) (-4191 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-639 (-639 (-766))))))) (-2620 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-639 (-639 (-938 *3))))))) (-2919 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-639 (-170)))))) (-3359 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-170))))) (-3231 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| -2865 (-766)) (|:| |curves| (-766)) (|:| |polygons| (-766)) (|:| |constructs| (-766)))))) (-2588 (*1 *1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044)))) (-3110 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-1156 3 *3)))))
-(-13 (-1092) (-10 -8 (-15 -3222 ($)) (-15 -3222 ($ (-1156 3 |t#1|))) (-15 -3684 ((-766) $)) (-15 -4172 ((-766) $)) (-15 -1610 ($ (-639 $))) (-15 -1610 ($ $ $)) (-15 -3586 ($ (-639 $))) (-15 -2702 ((-639 $) $)) (-15 -2895 ((-639 $) $)) (-15 -4220 ($ $)) (-15 -4236 ((-766) $ (-639 (-938 |t#1|)))) (-15 -1754 ($ $ (-766) (-938 |t#1|))) (-15 -1460 ($ $ (-938 |t#1|))) (-15 -1460 ($ $ (-639 |t#1|))) (-15 -1460 ($ $ (-766))) (-15 -1460 ($ (-938 |t#1|))) (-15 -1460 ((-938 |t#1|) $)) (-15 -2376 ((-112) $)) (-15 -1539 ($ $ (-639 (-938 |t#1|)))) (-15 -1539 ($ $ (-639 (-639 |t#1|)))) (-15 -1539 ($ (-639 (-938 |t#1|)))) (-15 -1539 ((-639 (-938 |t#1|)) $)) (-15 -2060 ((-112) $)) (-15 -3484 ($ $ (-639 (-938 |t#1|)))) (-15 -3484 ($ $ (-639 (-639 |t#1|)))) (-15 -3484 ($ (-639 (-938 |t#1|)))) (-15 -3484 ((-639 (-938 |t#1|)) $)) (-15 -3840 ((-112) $)) (-15 -2338 ($ $ (-639 (-938 |t#1|)))) (-15 -2338 ($ $ (-639 (-639 |t#1|)))) (-15 -2338 ($ (-639 (-938 |t#1|)))) (-15 -2338 ((-639 (-938 |t#1|)) $)) (-15 -2616 ((-112) $)) (-15 -2378 ($ $ (-639 (-639 (-938 |t#1|))) (-639 (-170)) (-170))) (-15 -2378 ($ $ (-639 (-639 (-639 |t#1|))) (-639 (-170)) (-170))) (-15 -2378 ($ $ (-639 (-639 (-938 |t#1|))) (-112) (-112))) (-15 -2378 ($ $ (-639 (-639 (-639 |t#1|))) (-112) (-112))) (-15 -2378 ($ (-639 (-639 (-938 |t#1|))))) (-15 -2378 ($ (-639 (-639 (-938 |t#1|))) (-112) (-112))) (-15 -2378 ((-639 (-639 (-938 |t#1|))) $)) (-15 -3855 ((-112) $)) (-15 -1663 ((-639 (-938 |t#1|)) $)) (-15 -4191 ((-639 (-639 (-639 (-766)))) $)) (-15 -2620 ((-639 (-639 (-639 (-938 |t#1|)))) $)) (-15 -2919 ((-639 (-639 (-170))) $)) (-15 -3359 ((-639 (-170)) $)) (-15 -3231 ((-2 (|:| -2865 (-766)) (|:| |curves| (-766)) (|:| |polygons| (-766)) (|:| |constructs| (-766))) $)) (-15 -2588 ($ $)) (-15 -3110 ((-1156 3 |t#1|) $)) (-15 -4054 ((-857) $))))
+((-4053 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-857)))) (-2835 (*1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044)))) (-2835 (*1 *1 *2) (-12 (-5 *2 (-1156 3 *3)) (-4 *3 (-1044)) (-4 *1 (-1126 *3)))) (-3668 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))) (-2817 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))) (-4103 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-4103 (*1 *1 *1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044)))) (-2155 (*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-3383 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)))) (-1703 (*1 *2 *1) (-12 (-4 *3 (-1044)) (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)))) (-4220 (*1 *1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044)))) (-2196 (*1 *2 *1 *3) (-12 (-5 *3 (-639 (-938 *4))) (-4 *1 (-1126 *4)) (-4 *4 (-1044)) (-5 *2 (-766)))) (-2948 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *3 (-938 *4)) (-4 *1 (-1126 *4)) (-4 *4 (-1044)))) (-1460 (*1 *1 *1 *2) (-12 (-5 *2 (-938 *3)) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-1460 (*1 *1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-1460 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-1460 (*1 *1 *2) (-12 (-5 *2 (-938 *3)) (-4 *3 (-1044)) (-4 *1 (-1126 *3)))) (-1460 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-938 *3)))) (-3138 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))) (-1698 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-938 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-1698 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-1698 (*1 *1 *2) (-12 (-5 *2 (-639 (-938 *3))) (-4 *3 (-1044)) (-4 *1 (-1126 *3)))) (-1698 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3))))) (-2990 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))) (-2377 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-938 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-2377 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-2377 (*1 *1 *2) (-12 (-5 *2 (-639 (-938 *3))) (-4 *3 (-1044)) (-4 *1 (-1126 *3)))) (-2377 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3))))) (-2763 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))) (-4020 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-938 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-4020 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))) (-4020 (*1 *1 *2) (-12 (-5 *2 (-639 (-938 *3))) (-4 *3 (-1044)) (-4 *1 (-1126 *3)))) (-4020 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3))))) (-3770 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))) (-3157 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-639 (-639 (-938 *5)))) (-5 *3 (-639 (-170))) (-5 *4 (-170)) (-4 *1 (-1126 *5)) (-4 *5 (-1044)))) (-3157 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-639 (-639 (-639 *5)))) (-5 *3 (-639 (-170))) (-5 *4 (-170)) (-4 *1 (-1126 *5)) (-4 *5 (-1044)))) (-3157 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-639 (-639 (-938 *4)))) (-5 *3 (-112)) (-4 *1 (-1126 *4)) (-4 *4 (-1044)))) (-3157 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-639 (-639 (-639 *4)))) (-5 *3 (-112)) (-4 *1 (-1126 *4)) (-4 *4 (-1044)))) (-3157 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 (-938 *3)))) (-4 *3 (-1044)) (-4 *1 (-1126 *3)))) (-3157 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-639 (-639 (-938 *4)))) (-5 *3 (-112)) (-4 *4 (-1044)) (-4 *1 (-1126 *4)))) (-3157 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-639 (-938 *3)))))) (-2888 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))) (-1662 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3))))) (-2951 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-639 (-639 (-766))))))) (-3816 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-639 (-639 (-938 *3))))))) (-3765 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-639 (-170)))))) (-3514 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-170))))) (-3230 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| -1358 (-766)) (|:| |curves| (-766)) (|:| |polygons| (-766)) (|:| |constructs| (-766)))))) (-1661 (*1 *1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044)))) (-2962 (*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-1156 3 *3)))))
+(-13 (-1092) (-10 -8 (-15 -2835 ($)) (-15 -2835 ($ (-1156 3 |t#1|))) (-15 -3668 ((-766) $)) (-15 -2817 ((-766) $)) (-15 -4103 ($ (-639 $))) (-15 -4103 ($ $ $)) (-15 -2155 ($ (-639 $))) (-15 -3383 ((-639 $) $)) (-15 -1703 ((-639 $) $)) (-15 -4220 ($ $)) (-15 -2196 ((-766) $ (-639 (-938 |t#1|)))) (-15 -2948 ($ $ (-766) (-938 |t#1|))) (-15 -1460 ($ $ (-938 |t#1|))) (-15 -1460 ($ $ (-639 |t#1|))) (-15 -1460 ($ $ (-766))) (-15 -1460 ($ (-938 |t#1|))) (-15 -1460 ((-938 |t#1|) $)) (-15 -3138 ((-112) $)) (-15 -1698 ($ $ (-639 (-938 |t#1|)))) (-15 -1698 ($ $ (-639 (-639 |t#1|)))) (-15 -1698 ($ (-639 (-938 |t#1|)))) (-15 -1698 ((-639 (-938 |t#1|)) $)) (-15 -2990 ((-112) $)) (-15 -2377 ($ $ (-639 (-938 |t#1|)))) (-15 -2377 ($ $ (-639 (-639 |t#1|)))) (-15 -2377 ($ (-639 (-938 |t#1|)))) (-15 -2377 ((-639 (-938 |t#1|)) $)) (-15 -2763 ((-112) $)) (-15 -4020 ($ $ (-639 (-938 |t#1|)))) (-15 -4020 ($ $ (-639 (-639 |t#1|)))) (-15 -4020 ($ (-639 (-938 |t#1|)))) (-15 -4020 ((-639 (-938 |t#1|)) $)) (-15 -3770 ((-112) $)) (-15 -3157 ($ $ (-639 (-639 (-938 |t#1|))) (-639 (-170)) (-170))) (-15 -3157 ($ $ (-639 (-639 (-639 |t#1|))) (-639 (-170)) (-170))) (-15 -3157 ($ $ (-639 (-639 (-938 |t#1|))) (-112) (-112))) (-15 -3157 ($ $ (-639 (-639 (-639 |t#1|))) (-112) (-112))) (-15 -3157 ($ (-639 (-639 (-938 |t#1|))))) (-15 -3157 ($ (-639 (-639 (-938 |t#1|))) (-112) (-112))) (-15 -3157 ((-639 (-639 (-938 |t#1|))) $)) (-15 -2888 ((-112) $)) (-15 -1662 ((-639 (-938 |t#1|)) $)) (-15 -2951 ((-639 (-639 (-639 (-766)))) $)) (-15 -3816 ((-639 (-639 (-639 (-938 |t#1|)))) $)) (-15 -3765 ((-639 (-639 (-170))) $)) (-15 -3514 ((-639 (-170)) $)) (-15 -3230 ((-2 (|:| -1358 (-766)) (|:| |curves| (-766)) (|:| |polygons| (-766)) (|:| |constructs| (-766))) $)) (-15 -1661 ($ $)) (-15 -2962 ((-1156 3 |t#1|) $)) (-15 -4053 ((-857) $))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 176) (($ (-1173)) NIL) (((-1173) $) 7)) (-2276 (((-112) $ (|[\|\|]| (-523))) 17) (((-112) $ (|[\|\|]| (-217))) 21) (((-112) $ (|[\|\|]| (-670))) 25) (((-112) $ (|[\|\|]| (-1266))) 29) (((-112) $ (|[\|\|]| (-137))) 33) (((-112) $ (|[\|\|]| (-132))) 37) (((-112) $ (|[\|\|]| (-1107))) 41) (((-112) $ (|[\|\|]| (-96))) 45) (((-112) $ (|[\|\|]| (-675))) 49) (((-112) $ (|[\|\|]| (-516))) 53) (((-112) $ (|[\|\|]| (-1059))) 57) (((-112) $ (|[\|\|]| (-1267))) 61) (((-112) $ (|[\|\|]| (-524))) 65) (((-112) $ (|[\|\|]| (-153))) 69) (((-112) $ (|[\|\|]| (-665))) 73) (((-112) $ (|[\|\|]| (-310))) 77) (((-112) $ (|[\|\|]| (-1031))) 81) (((-112) $ (|[\|\|]| (-179))) 85) (((-112) $ (|[\|\|]| (-965))) 89) (((-112) $ (|[\|\|]| (-1066))) 93) (((-112) $ (|[\|\|]| (-1082))) 97) (((-112) $ (|[\|\|]| (-1088))) 101) (((-112) $ (|[\|\|]| (-622))) 105) (((-112) $ (|[\|\|]| (-1158))) 109) (((-112) $ (|[\|\|]| (-155))) 113) (((-112) $ (|[\|\|]| (-136))) 117) (((-112) $ (|[\|\|]| (-477))) 121) (((-112) $ (|[\|\|]| (-589))) 125) (((-112) $ (|[\|\|]| (-505))) 131) (((-112) $ (|[\|\|]| (-1150))) 135) (((-112) $ (|[\|\|]| (-562))) 139)) (-4247 (((-523) $) 18) (((-217) $) 22) (((-670) $) 26) (((-1266) $) 30) (((-137) $) 34) (((-132) $) 38) (((-1107) $) 42) (((-96) $) 46) (((-675) $) 50) (((-516) $) 54) (((-1059) $) 58) (((-1267) $) 62) (((-524) $) 66) (((-153) $) 70) (((-665) $) 74) (((-310) $) 78) (((-1031) $) 82) (((-179) $) 86) (((-965) $) 90) (((-1066) $) 94) (((-1082) $) 98) (((-1088) $) 102) (((-622) $) 106) (((-1158) $) 110) (((-155) $) 114) (((-136) $) 118) (((-477) $) 122) (((-589) $) 126) (((-505) $) 132) (((-1150) $) 136) (((-562) $) 140)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 176) (($ (-1173)) NIL) (((-1173) $) 7)) (-2276 (((-112) $ (|[\|\|]| (-523))) 17) (((-112) $ (|[\|\|]| (-217))) 21) (((-112) $ (|[\|\|]| (-670))) 25) (((-112) $ (|[\|\|]| (-1266))) 29) (((-112) $ (|[\|\|]| (-137))) 33) (((-112) $ (|[\|\|]| (-132))) 37) (((-112) $ (|[\|\|]| (-1107))) 41) (((-112) $ (|[\|\|]| (-96))) 45) (((-112) $ (|[\|\|]| (-675))) 49) (((-112) $ (|[\|\|]| (-516))) 53) (((-112) $ (|[\|\|]| (-1059))) 57) (((-112) $ (|[\|\|]| (-1267))) 61) (((-112) $ (|[\|\|]| (-524))) 65) (((-112) $ (|[\|\|]| (-153))) 69) (((-112) $ (|[\|\|]| (-665))) 73) (((-112) $ (|[\|\|]| (-310))) 77) (((-112) $ (|[\|\|]| (-1031))) 81) (((-112) $ (|[\|\|]| (-179))) 85) (((-112) $ (|[\|\|]| (-965))) 89) (((-112) $ (|[\|\|]| (-1066))) 93) (((-112) $ (|[\|\|]| (-1082))) 97) (((-112) $ (|[\|\|]| (-1088))) 101) (((-112) $ (|[\|\|]| (-622))) 105) (((-112) $ (|[\|\|]| (-1158))) 109) (((-112) $ (|[\|\|]| (-155))) 113) (((-112) $ (|[\|\|]| (-136))) 117) (((-112) $ (|[\|\|]| (-477))) 121) (((-112) $ (|[\|\|]| (-589))) 125) (((-112) $ (|[\|\|]| (-505))) 131) (((-112) $ (|[\|\|]| (-1150))) 135) (((-112) $ (|[\|\|]| (-562))) 139)) (-4248 (((-523) $) 18) (((-217) $) 22) (((-670) $) 26) (((-1266) $) 30) (((-137) $) 34) (((-132) $) 38) (((-1107) $) 42) (((-96) $) 46) (((-675) $) 50) (((-516) $) 54) (((-1059) $) 58) (((-1267) $) 62) (((-524) $) 66) (((-153) $) 70) (((-665) $) 74) (((-310) $) 78) (((-1031) $) 82) (((-179) $) 86) (((-965) $) 90) (((-1066) $) 94) (((-1082) $) 98) (((-1088) $) 102) (((-622) $) 106) (((-1158) $) 110) (((-155) $) 114) (((-136) $) 118) (((-477) $) 122) (((-589) $) 126) (((-505) $) 132) (((-1150) $) 136) (((-562) $) 140)) (-1733 (((-112) $ $) NIL)))
(((-1127) (-1129)) (T -1127))
NIL
(-1129)
-((-2358 (((-639 (-1173)) (-1150)) 9)))
-(((-1128) (-10 -7 (-15 -2358 ((-639 (-1173)) (-1150))))) (T -1128))
-((-2358 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-639 (-1173))) (-5 *1 (-1128)))))
-(-10 -7 (-15 -2358 ((-639 (-1173)) (-1150))))
-((-4041 (((-112) $ $) 7)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-1173)) 16) (((-1173) $) 15)) (-2276 (((-112) $ (|[\|\|]| (-523))) 80) (((-112) $ (|[\|\|]| (-217))) 78) (((-112) $ (|[\|\|]| (-670))) 76) (((-112) $ (|[\|\|]| (-1266))) 74) (((-112) $ (|[\|\|]| (-137))) 72) (((-112) $ (|[\|\|]| (-132))) 70) (((-112) $ (|[\|\|]| (-1107))) 68) (((-112) $ (|[\|\|]| (-96))) 66) (((-112) $ (|[\|\|]| (-675))) 64) (((-112) $ (|[\|\|]| (-516))) 62) (((-112) $ (|[\|\|]| (-1059))) 60) (((-112) $ (|[\|\|]| (-1267))) 58) (((-112) $ (|[\|\|]| (-524))) 56) (((-112) $ (|[\|\|]| (-153))) 54) (((-112) $ (|[\|\|]| (-665))) 52) (((-112) $ (|[\|\|]| (-310))) 50) (((-112) $ (|[\|\|]| (-1031))) 48) (((-112) $ (|[\|\|]| (-179))) 46) (((-112) $ (|[\|\|]| (-965))) 44) (((-112) $ (|[\|\|]| (-1066))) 42) (((-112) $ (|[\|\|]| (-1082))) 40) (((-112) $ (|[\|\|]| (-1088))) 38) (((-112) $ (|[\|\|]| (-622))) 36) (((-112) $ (|[\|\|]| (-1158))) 34) (((-112) $ (|[\|\|]| (-155))) 32) (((-112) $ (|[\|\|]| (-136))) 30) (((-112) $ (|[\|\|]| (-477))) 28) (((-112) $ (|[\|\|]| (-589))) 26) (((-112) $ (|[\|\|]| (-505))) 24) (((-112) $ (|[\|\|]| (-1150))) 22) (((-112) $ (|[\|\|]| (-562))) 20)) (-4247 (((-523) $) 79) (((-217) $) 77) (((-670) $) 75) (((-1266) $) 73) (((-137) $) 71) (((-132) $) 69) (((-1107) $) 67) (((-96) $) 65) (((-675) $) 63) (((-516) $) 61) (((-1059) $) 59) (((-1267) $) 57) (((-524) $) 55) (((-153) $) 53) (((-665) $) 51) (((-310) $) 49) (((-1031) $) 47) (((-179) $) 45) (((-965) $) 43) (((-1066) $) 41) (((-1082) $) 39) (((-1088) $) 37) (((-622) $) 35) (((-1158) $) 33) (((-155) $) 31) (((-136) $) 29) (((-477) $) 27) (((-589) $) 25) (((-505) $) 23) (((-1150) $) 21) (((-562) $) 19)) (-1731 (((-112) $ $) 6)))
+((-2357 (((-639 (-1173)) (-1150)) 9)))
+(((-1128) (-10 -7 (-15 -2357 ((-639 (-1173)) (-1150))))) (T -1128))
+((-2357 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-639 (-1173))) (-5 *1 (-1128)))))
+(-10 -7 (-15 -2357 ((-639 (-1173)) (-1150))))
+((-4041 (((-112) $ $) 7)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-1173)) 16) (((-1173) $) 15)) (-2276 (((-112) $ (|[\|\|]| (-523))) 80) (((-112) $ (|[\|\|]| (-217))) 78) (((-112) $ (|[\|\|]| (-670))) 76) (((-112) $ (|[\|\|]| (-1266))) 74) (((-112) $ (|[\|\|]| (-137))) 72) (((-112) $ (|[\|\|]| (-132))) 70) (((-112) $ (|[\|\|]| (-1107))) 68) (((-112) $ (|[\|\|]| (-96))) 66) (((-112) $ (|[\|\|]| (-675))) 64) (((-112) $ (|[\|\|]| (-516))) 62) (((-112) $ (|[\|\|]| (-1059))) 60) (((-112) $ (|[\|\|]| (-1267))) 58) (((-112) $ (|[\|\|]| (-524))) 56) (((-112) $ (|[\|\|]| (-153))) 54) (((-112) $ (|[\|\|]| (-665))) 52) (((-112) $ (|[\|\|]| (-310))) 50) (((-112) $ (|[\|\|]| (-1031))) 48) (((-112) $ (|[\|\|]| (-179))) 46) (((-112) $ (|[\|\|]| (-965))) 44) (((-112) $ (|[\|\|]| (-1066))) 42) (((-112) $ (|[\|\|]| (-1082))) 40) (((-112) $ (|[\|\|]| (-1088))) 38) (((-112) $ (|[\|\|]| (-622))) 36) (((-112) $ (|[\|\|]| (-1158))) 34) (((-112) $ (|[\|\|]| (-155))) 32) (((-112) $ (|[\|\|]| (-136))) 30) (((-112) $ (|[\|\|]| (-477))) 28) (((-112) $ (|[\|\|]| (-589))) 26) (((-112) $ (|[\|\|]| (-505))) 24) (((-112) $ (|[\|\|]| (-1150))) 22) (((-112) $ (|[\|\|]| (-562))) 20)) (-4248 (((-523) $) 79) (((-217) $) 77) (((-670) $) 75) (((-1266) $) 73) (((-137) $) 71) (((-132) $) 69) (((-1107) $) 67) (((-96) $) 65) (((-675) $) 63) (((-516) $) 61) (((-1059) $) 59) (((-1267) $) 57) (((-524) $) 55) (((-153) $) 53) (((-665) $) 51) (((-310) $) 49) (((-1031) $) 47) (((-179) $) 45) (((-965) $) 43) (((-1066) $) 41) (((-1082) $) 39) (((-1088) $) 37) (((-622) $) 35) (((-1158) $) 33) (((-155) $) 31) (((-136) $) 29) (((-477) $) 27) (((-589) $) 25) (((-505) $) 23) (((-1150) $) 21) (((-562) $) 19)) (-1733 (((-112) $ $) 6)))
(((-1129) (-139)) (T -1129))
-((-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-523))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-523)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-217))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-217)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-670))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-670)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1266))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1266)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-137))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-137)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-132))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-132)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1107))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1107)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-96))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-96)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-675))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-675)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-516))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-516)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1059))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1059)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1267))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1267)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-524))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-524)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-153))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-153)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-665))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-665)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-310))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-310)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1031))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1031)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-179))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-179)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-965))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-965)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1066))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1066)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1082))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1082)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1088))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1088)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-622))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-622)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1158))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1158)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-155))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-155)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-136))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-136)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-477))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-477)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-589))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-589)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-505))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-505)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1150))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1150)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-562))) (-5 *2 (-112)))) (-4247 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-562)))))
-(-13 (-1075) (-1251) (-10 -8 (-15 -2276 ((-112) $ (|[\|\|]| (-523)))) (-15 -4247 ((-523) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-217)))) (-15 -4247 ((-217) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-670)))) (-15 -4247 ((-670) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1266)))) (-15 -4247 ((-1266) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-137)))) (-15 -4247 ((-137) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-132)))) (-15 -4247 ((-132) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1107)))) (-15 -4247 ((-1107) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-96)))) (-15 -4247 ((-96) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-675)))) (-15 -4247 ((-675) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-516)))) (-15 -4247 ((-516) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1059)))) (-15 -4247 ((-1059) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1267)))) (-15 -4247 ((-1267) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-524)))) (-15 -4247 ((-524) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-153)))) (-15 -4247 ((-153) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-665)))) (-15 -4247 ((-665) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-310)))) (-15 -4247 ((-310) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1031)))) (-15 -4247 ((-1031) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-179)))) (-15 -4247 ((-179) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-965)))) (-15 -4247 ((-965) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1066)))) (-15 -4247 ((-1066) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1082)))) (-15 -4247 ((-1082) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1088)))) (-15 -4247 ((-1088) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-622)))) (-15 -4247 ((-622) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1158)))) (-15 -4247 ((-1158) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-155)))) (-15 -4247 ((-155) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-136)))) (-15 -4247 ((-136) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-477)))) (-15 -4247 ((-477) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-589)))) (-15 -4247 ((-589) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-505)))) (-15 -4247 ((-505) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1150)))) (-15 -4247 ((-1150) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-562)))) (-15 -4247 ((-562) $))))
+((-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-523))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-523)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-217))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-217)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-670))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-670)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1266))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1266)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-137))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-137)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-132))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-132)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1107))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1107)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-96))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-96)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-675))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-675)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-516))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-516)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1059))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1059)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1267))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1267)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-524))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-524)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-153))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-153)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-665))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-665)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-310))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-310)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1031))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1031)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-179))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-179)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-965))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-965)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1066))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1066)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1082))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1082)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1088))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1088)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-622))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-622)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1158))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1158)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-155))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-155)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-136))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-136)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-477))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-477)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-589))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-589)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-505))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-505)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-1150))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1150)))) (-2276 (*1 *2 *1 *3) (-12 (-4 *1 (-1129)) (-5 *3 (|[\|\|]| (-562))) (-5 *2 (-112)))) (-4248 (*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-562)))))
+(-13 (-1075) (-1251) (-10 -8 (-15 -2276 ((-112) $ (|[\|\|]| (-523)))) (-15 -4248 ((-523) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-217)))) (-15 -4248 ((-217) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-670)))) (-15 -4248 ((-670) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1266)))) (-15 -4248 ((-1266) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-137)))) (-15 -4248 ((-137) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-132)))) (-15 -4248 ((-132) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1107)))) (-15 -4248 ((-1107) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-96)))) (-15 -4248 ((-96) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-675)))) (-15 -4248 ((-675) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-516)))) (-15 -4248 ((-516) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1059)))) (-15 -4248 ((-1059) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1267)))) (-15 -4248 ((-1267) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-524)))) (-15 -4248 ((-524) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-153)))) (-15 -4248 ((-153) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-665)))) (-15 -4248 ((-665) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-310)))) (-15 -4248 ((-310) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1031)))) (-15 -4248 ((-1031) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-179)))) (-15 -4248 ((-179) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-965)))) (-15 -4248 ((-965) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1066)))) (-15 -4248 ((-1066) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1082)))) (-15 -4248 ((-1082) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1088)))) (-15 -4248 ((-1088) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-622)))) (-15 -4248 ((-622) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1158)))) (-15 -4248 ((-1158) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-155)))) (-15 -4248 ((-155) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-136)))) (-15 -4248 ((-136) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-477)))) (-15 -4248 ((-477) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-589)))) (-15 -4248 ((-589) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-505)))) (-15 -4248 ((-505) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-1150)))) (-15 -4248 ((-1150) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-562)))) (-15 -4248 ((-562) $))))
(((-93) . T) ((-102) . T) ((-612 #0=(-1173)) . T) ((-609 (-857)) . T) ((-609 #0#) . T) ((-489 #0#) . T) ((-1092) . T) ((-1075) . T) ((-1251) . T))
-((-4028 (((-1261) (-639 (-857))) 23) (((-1261) (-857)) 22)) (-1437 (((-1261) (-639 (-857))) 21) (((-1261) (-857)) 20)) (-3219 (((-1261) (-639 (-857))) 19) (((-1261) (-857)) 11) (((-1261) (-1150) (-857)) 17)))
-(((-1130) (-10 -7 (-15 -3219 ((-1261) (-1150) (-857))) (-15 -3219 ((-1261) (-857))) (-15 -1437 ((-1261) (-857))) (-15 -4028 ((-1261) (-857))) (-15 -3219 ((-1261) (-639 (-857)))) (-15 -1437 ((-1261) (-639 (-857)))) (-15 -4028 ((-1261) (-639 (-857)))))) (T -1130))
-((-4028 (*1 *2 *3) (-12 (-5 *3 (-639 (-857))) (-5 *2 (-1261)) (-5 *1 (-1130)))) (-1437 (*1 *2 *3) (-12 (-5 *3 (-639 (-857))) (-5 *2 (-1261)) (-5 *1 (-1130)))) (-3219 (*1 *2 *3) (-12 (-5 *3 (-639 (-857))) (-5 *2 (-1261)) (-5 *1 (-1130)))) (-4028 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130)))) (-1437 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130)))) (-3219 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130)))) (-3219 (*1 *2 *3 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130)))))
-(-10 -7 (-15 -3219 ((-1261) (-1150) (-857))) (-15 -3219 ((-1261) (-857))) (-15 -1437 ((-1261) (-857))) (-15 -4028 ((-1261) (-857))) (-15 -3219 ((-1261) (-639 (-857)))) (-15 -1437 ((-1261) (-639 (-857)))) (-15 -4028 ((-1261) (-639 (-857)))))
-((-4230 (($ $ $) 10)) (-2791 (($ $) 9)) (-3690 (($ $ $) 13)) (-1868 (($ $ $) 15)) (-4266 (($ $ $) 12)) (-3350 (($ $ $) 14)) (-2190 (($ $) 17)) (-3402 (($ $) 16)) (-3526 (($ $) 6)) (-3819 (($ $ $) 11) (($ $) 7)) (-2088 (($ $ $) 8)))
+((-3998 (((-1261) (-639 (-857))) 23) (((-1261) (-857)) 22)) (-2043 (((-1261) (-639 (-857))) 21) (((-1261) (-857)) 20)) (-3218 (((-1261) (-639 (-857))) 19) (((-1261) (-857)) 11) (((-1261) (-1150) (-857)) 17)))
+(((-1130) (-10 -7 (-15 -3218 ((-1261) (-1150) (-857))) (-15 -3218 ((-1261) (-857))) (-15 -2043 ((-1261) (-857))) (-15 -3998 ((-1261) (-857))) (-15 -3218 ((-1261) (-639 (-857)))) (-15 -2043 ((-1261) (-639 (-857)))) (-15 -3998 ((-1261) (-639 (-857)))))) (T -1130))
+((-3998 (*1 *2 *3) (-12 (-5 *3 (-639 (-857))) (-5 *2 (-1261)) (-5 *1 (-1130)))) (-2043 (*1 *2 *3) (-12 (-5 *3 (-639 (-857))) (-5 *2 (-1261)) (-5 *1 (-1130)))) (-3218 (*1 *2 *3) (-12 (-5 *3 (-639 (-857))) (-5 *2 (-1261)) (-5 *1 (-1130)))) (-3998 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130)))) (-2043 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130)))) (-3218 (*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130)))) (-3218 (*1 *2 *3 *4) (-12 (-5 *3 (-1150)) (-5 *4 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130)))))
+(-10 -7 (-15 -3218 ((-1261) (-1150) (-857))) (-15 -3218 ((-1261) (-857))) (-15 -2043 ((-1261) (-857))) (-15 -3998 ((-1261) (-857))) (-15 -3218 ((-1261) (-639 (-857)))) (-15 -2043 ((-1261) (-639 (-857)))) (-15 -3998 ((-1261) (-639 (-857)))))
+((-2146 (($ $ $) 10)) (-1904 (($ $) 9)) (-3733 (($ $ $) 13)) (-2831 (($ $ $) 15)) (-4287 (($ $ $) 12)) (-1623 (($ $ $) 14)) (-2001 (($ $) 17)) (-3950 (($ $) 16)) (-2757 (($ $) 6)) (-2582 (($ $ $) 11) (($ $) 7)) (-3291 (($ $ $) 8)))
(((-1131) (-139)) (T -1131))
-((-2190 (*1 *1 *1) (-4 *1 (-1131))) (-3402 (*1 *1 *1) (-4 *1 (-1131))) (-1868 (*1 *1 *1 *1) (-4 *1 (-1131))) (-3350 (*1 *1 *1 *1) (-4 *1 (-1131))) (-3690 (*1 *1 *1 *1) (-4 *1 (-1131))) (-4266 (*1 *1 *1 *1) (-4 *1 (-1131))) (-3819 (*1 *1 *1 *1) (-4 *1 (-1131))) (-4230 (*1 *1 *1 *1) (-4 *1 (-1131))) (-2791 (*1 *1 *1) (-4 *1 (-1131))) (-2088 (*1 *1 *1 *1) (-4 *1 (-1131))) (-3819 (*1 *1 *1) (-4 *1 (-1131))) (-3526 (*1 *1 *1) (-4 *1 (-1131))))
-(-13 (-10 -8 (-15 -3526 ($ $)) (-15 -3819 ($ $)) (-15 -2088 ($ $ $)) (-15 -2791 ($ $)) (-15 -4230 ($ $ $)) (-15 -3819 ($ $ $)) (-15 -4266 ($ $ $)) (-15 -3690 ($ $ $)) (-15 -3350 ($ $ $)) (-15 -1868 ($ $ $)) (-15 -3402 ($ $)) (-15 -2190 ($ $))))
-((-4041 (((-112) $ $) 42)) (-2534 ((|#1| $) 16)) (-3880 (((-112) $ $ (-1 (-112) |#2| |#2|)) 37)) (-3981 (((-112) $) 18)) (-2248 (($ $ |#1|) 29)) (-3552 (($ $ (-112)) 31)) (-2883 (($ $) 32)) (-3501 (($ $ |#2|) 30)) (-2913 (((-1150) $) NIL)) (-3043 (((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|)) 36)) (-1709 (((-1112) $) NIL)) (-2974 (((-112) $) 15)) (-4307 (($) 11)) (-4220 (($ $) 28)) (-4066 (($ |#1| |#2| (-112)) 19) (($ |#1| |#2|) 20) (($ (-2 (|:| |val| |#1|) (|:| -1495 |#2|))) 22) (((-639 $) (-639 (-2 (|:| |val| |#1|) (|:| -1495 |#2|)))) 25) (((-639 $) |#1| (-639 |#2|)) 27)) (-3317 ((|#2| $) 17)) (-4054 (((-857) $) 51)) (-1731 (((-112) $ $) 40)))
-(((-1132 |#1| |#2|) (-13 (-1092) (-10 -8 (-15 -4307 ($)) (-15 -2974 ((-112) $)) (-15 -2534 (|#1| $)) (-15 -3317 (|#2| $)) (-15 -3981 ((-112) $)) (-15 -4066 ($ |#1| |#2| (-112))) (-15 -4066 ($ |#1| |#2|)) (-15 -4066 ($ (-2 (|:| |val| |#1|) (|:| -1495 |#2|)))) (-15 -4066 ((-639 $) (-639 (-2 (|:| |val| |#1|) (|:| -1495 |#2|))))) (-15 -4066 ((-639 $) |#1| (-639 |#2|))) (-15 -4220 ($ $)) (-15 -2248 ($ $ |#1|)) (-15 -3501 ($ $ |#2|)) (-15 -3552 ($ $ (-112))) (-15 -2883 ($ $)) (-15 -3043 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -3880 ((-112) $ $ (-1 (-112) |#2| |#2|))))) (-13 (-1092) (-34)) (-13 (-1092) (-34))) (T -1132))
-((-4307 (*1 *1) (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-2974 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))))) (-2534 (*1 *2 *1) (-12 (-4 *2 (-13 (-1092) (-34))) (-5 *1 (-1132 *2 *3)) (-4 *3 (-13 (-1092) (-34))))) (-3317 (*1 *2 *1) (-12 (-4 *2 (-13 (-1092) (-34))) (-5 *1 (-1132 *3 *2)) (-4 *3 (-13 (-1092) (-34))))) (-3981 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))))) (-4066 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-4066 (*1 *1 *2 *3) (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-4066 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -1495 *4))) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1132 *3 *4)))) (-4066 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| |val| *4) (|:| -1495 *5)))) (-4 *4 (-13 (-1092) (-34))) (-4 *5 (-13 (-1092) (-34))) (-5 *2 (-639 (-1132 *4 *5))) (-5 *1 (-1132 *4 *5)))) (-4066 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *5)) (-4 *5 (-13 (-1092) (-34))) (-5 *2 (-639 (-1132 *3 *5))) (-5 *1 (-1132 *3 *5)) (-4 *3 (-13 (-1092) (-34))))) (-4220 (*1 *1 *1) (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-2248 (*1 *1 *1 *2) (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-3501 (*1 *1 *1 *2) (-12 (-5 *1 (-1132 *3 *2)) (-4 *3 (-13 (-1092) (-34))) (-4 *2 (-13 (-1092) (-34))))) (-3552 (*1 *1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))))) (-2883 (*1 *1 *1) (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-3043 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1092) (-34))) (-4 *6 (-13 (-1092) (-34))) (-5 *2 (-112)) (-5 *1 (-1132 *5 *6)))) (-3880 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1092) (-34))) (-5 *2 (-112)) (-5 *1 (-1132 *4 *5)) (-4 *4 (-13 (-1092) (-34))))))
-(-13 (-1092) (-10 -8 (-15 -4307 ($)) (-15 -2974 ((-112) $)) (-15 -2534 (|#1| $)) (-15 -3317 (|#2| $)) (-15 -3981 ((-112) $)) (-15 -4066 ($ |#1| |#2| (-112))) (-15 -4066 ($ |#1| |#2|)) (-15 -4066 ($ (-2 (|:| |val| |#1|) (|:| -1495 |#2|)))) (-15 -4066 ((-639 $) (-639 (-2 (|:| |val| |#1|) (|:| -1495 |#2|))))) (-15 -4066 ((-639 $) |#1| (-639 |#2|))) (-15 -4220 ($ $)) (-15 -2248 ($ $ |#1|)) (-15 -3501 ($ $ |#2|)) (-15 -3552 ($ $ (-112))) (-15 -2883 ($ $)) (-15 -3043 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -3880 ((-112) $ $ (-1 (-112) |#2| |#2|)))))
-((-4041 (((-112) $ $) NIL (|has| (-1132 |#1| |#2|) (-1092)))) (-2534 (((-1132 |#1| |#2|) $) 26)) (-2109 (($ $) 76)) (-1700 (((-112) (-1132 |#1| |#2|) $ (-1 (-112) |#2| |#2|)) 85)) (-2084 (($ $ $ (-639 (-1132 |#1| |#2|))) 90) (($ $ $ (-639 (-1132 |#1| |#2|)) (-1 (-112) |#2| |#2|)) 91)) (-4336 (((-112) $ (-766)) NIL)) (-1512 (((-1132 |#1| |#2|) $ (-1132 |#1| |#2|)) 43 (|has| $ (-6 -4403)))) (-4200 (((-1132 |#1| |#2|) $ "value" (-1132 |#1| |#2|)) NIL (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) 41 (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-3794 (((-639 (-2 (|:| |val| |#1|) (|:| -1495 |#2|))) $) 80)) (-4000 (($ (-1132 |#1| |#2|) $) 39)) (-1475 (($ (-1132 |#1| |#2|) $) 31)) (-1720 (((-639 (-1132 |#1| |#2|)) $) NIL (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) 51)) (-3460 (((-112) (-1132 |#1| |#2|) $) 82)) (-4379 (((-112) $ $) NIL (|has| (-1132 |#1| |#2|) (-1092)))) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 (-1132 |#1| |#2|)) $) 55 (|has| $ (-6 -4402)))) (-1669 (((-112) (-1132 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-1132 |#1| |#2|) (-1092))))) (-1490 (($ (-1 (-1132 |#1| |#2|) (-1132 |#1| |#2|)) $) 47 (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-1132 |#1| |#2|) (-1132 |#1| |#2|)) $) 46)) (-3289 (((-112) $ (-766)) NIL)) (-4007 (((-639 (-1132 |#1| |#2|)) $) 53)) (-3449 (((-112) $) 42)) (-2913 (((-1150) $) NIL (|has| (-1132 |#1| |#2|) (-1092)))) (-1709 (((-1112) $) NIL (|has| (-1132 |#1| |#2|) (-1092)))) (-3723 (((-3 $ "failed") $) 75)) (-1763 (((-112) (-1 (-112) (-1132 |#1| |#2|)) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-1132 |#1| |#2|)))) NIL (-12 (|has| (-1132 |#1| |#2|) (-308 (-1132 |#1| |#2|))) (|has| (-1132 |#1| |#2|) (-1092)))) (($ $ (-293 (-1132 |#1| |#2|))) NIL (-12 (|has| (-1132 |#1| |#2|) (-308 (-1132 |#1| |#2|))) (|has| (-1132 |#1| |#2|) (-1092)))) (($ $ (-1132 |#1| |#2|) (-1132 |#1| |#2|)) NIL (-12 (|has| (-1132 |#1| |#2|) (-308 (-1132 |#1| |#2|))) (|has| (-1132 |#1| |#2|) (-1092)))) (($ $ (-639 (-1132 |#1| |#2|)) (-639 (-1132 |#1| |#2|))) NIL (-12 (|has| (-1132 |#1| |#2|) (-308 (-1132 |#1| |#2|))) (|has| (-1132 |#1| |#2|) (-1092))))) (-3336 (((-112) $ $) 50)) (-2974 (((-112) $) 23)) (-4307 (($) 25)) (-2343 (((-1132 |#1| |#2|) $ "value") NIL)) (-2568 (((-562) $ $) NIL)) (-2424 (((-112) $) 44)) (-1723 (((-766) (-1 (-112) (-1132 |#1| |#2|)) $) NIL (|has| $ (-6 -4402))) (((-766) (-1132 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-1132 |#1| |#2|) (-1092))))) (-4220 (($ $) 49)) (-4066 (($ (-1132 |#1| |#2|)) 10) (($ |#1| |#2| (-639 $)) 13) (($ |#1| |#2| (-639 (-1132 |#1| |#2|))) 15) (($ |#1| |#2| |#1| (-639 |#2|)) 18)) (-3777 (((-639 |#2|) $) 81)) (-4054 (((-857) $) 73 (|has| (-1132 |#1| |#2|) (-609 (-857))))) (-2906 (((-639 $) $) 29)) (-4055 (((-112) $ $) NIL (|has| (-1132 |#1| |#2|) (-1092)))) (-1744 (((-112) (-1 (-112) (-1132 |#1| |#2|)) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 64 (|has| (-1132 |#1| |#2|) (-1092)))) (-3492 (((-766) $) 58 (|has| $ (-6 -4402)))))
-(((-1133 |#1| |#2|) (-13 (-1005 (-1132 |#1| |#2|)) (-10 -8 (-6 -4403) (-6 -4402) (-15 -3723 ((-3 $ "failed") $)) (-15 -2109 ($ $)) (-15 -4066 ($ (-1132 |#1| |#2|))) (-15 -4066 ($ |#1| |#2| (-639 $))) (-15 -4066 ($ |#1| |#2| (-639 (-1132 |#1| |#2|)))) (-15 -4066 ($ |#1| |#2| |#1| (-639 |#2|))) (-15 -3777 ((-639 |#2|) $)) (-15 -3794 ((-639 (-2 (|:| |val| |#1|) (|:| -1495 |#2|))) $)) (-15 -3460 ((-112) (-1132 |#1| |#2|) $)) (-15 -1700 ((-112) (-1132 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1475 ($ (-1132 |#1| |#2|) $)) (-15 -4000 ($ (-1132 |#1| |#2|) $)) (-15 -2084 ($ $ $ (-639 (-1132 |#1| |#2|)))) (-15 -2084 ($ $ $ (-639 (-1132 |#1| |#2|)) (-1 (-112) |#2| |#2|))))) (-13 (-1092) (-34)) (-13 (-1092) (-34))) (T -1133))
-((-3723 (*1 *1 *1) (|partial| -12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-2109 (*1 *1 *1) (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-4066 (*1 *1 *2) (-12 (-5 *2 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))) (-4066 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-639 (-1133 *2 *3))) (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-4066 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-639 (-1132 *2 *3))) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))) (-5 *1 (-1133 *2 *3)))) (-4066 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-13 (-1092) (-34))) (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1092) (-34))))) (-3777 (*1 *2 *1) (-12 (-5 *2 (-639 *4)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))))) (-3794 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4)))) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))))) (-3460 (*1 *2 *3 *1) (-12 (-5 *3 (-1132 *4 *5)) (-4 *4 (-13 (-1092) (-34))) (-4 *5 (-13 (-1092) (-34))) (-5 *2 (-112)) (-5 *1 (-1133 *4 *5)))) (-1700 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1132 *5 *6)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1092) (-34))) (-4 *6 (-13 (-1092) (-34))) (-5 *2 (-112)) (-5 *1 (-1133 *5 *6)))) (-1475 (*1 *1 *2 *1) (-12 (-5 *2 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))) (-4000 (*1 *1 *2 *1) (-12 (-5 *2 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))) (-2084 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-639 (-1132 *3 *4))) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))) (-2084 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-1132 *4 *5))) (-5 *3 (-1 (-112) *5 *5)) (-4 *4 (-13 (-1092) (-34))) (-4 *5 (-13 (-1092) (-34))) (-5 *1 (-1133 *4 *5)))))
-(-13 (-1005 (-1132 |#1| |#2|)) (-10 -8 (-6 -4403) (-6 -4402) (-15 -3723 ((-3 $ "failed") $)) (-15 -2109 ($ $)) (-15 -4066 ($ (-1132 |#1| |#2|))) (-15 -4066 ($ |#1| |#2| (-639 $))) (-15 -4066 ($ |#1| |#2| (-639 (-1132 |#1| |#2|)))) (-15 -4066 ($ |#1| |#2| |#1| (-639 |#2|))) (-15 -3777 ((-639 |#2|) $)) (-15 -3794 ((-639 (-2 (|:| |val| |#1|) (|:| -1495 |#2|))) $)) (-15 -3460 ((-112) (-1132 |#1| |#2|) $)) (-15 -1700 ((-112) (-1132 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1475 ($ (-1132 |#1| |#2|) $)) (-15 -4000 ($ (-1132 |#1| |#2|) $)) (-15 -2084 ($ $ $ (-639 (-1132 |#1| |#2|)))) (-15 -2084 ($ $ $ (-639 (-1132 |#1| |#2|)) (-1 (-112) |#2| |#2|)))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-2529 (($ $) NIL)) (-1748 ((|#2| $) NIL)) (-2952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2203 (($ (-683 |#2|)) 50)) (-3220 (((-112) $) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-2554 (($ |#2|) 10)) (-1800 (($) NIL T CONST)) (-2522 (($ $) 63 (|has| |#2| (-306)))) (-3796 (((-239 |#1| |#2|) $ (-562)) 36)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 |#2| "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) ((|#2| $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) 77)) (-2173 (((-766) $) 65 (|has| |#2| (-554)))) (-1420 ((|#2| $ (-562) (-562)) NIL)) (-1720 (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1957 (((-112) $) NIL)) (-3922 (((-766) $) 67 (|has| |#2| (-554)))) (-2318 (((-639 (-239 |#1| |#2|)) $) 71 (|has| |#2| (-554)))) (-2699 (((-766) $) NIL)) (-1458 (($ |#2|) 20)) (-2709 (((-766) $) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-2280 ((|#2| $) 61 (|has| |#2| (-6 (-4404 "*"))))) (-2783 (((-562) $) NIL)) (-4217 (((-562) $) NIL)) (-1912 (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-4088 (((-562) $) NIL)) (-2453 (((-562) $) NIL)) (-2885 (($ (-639 (-639 |#2|))) 31)) (-1490 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2824 (((-639 (-639 |#2|)) $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-3494 (((-3 $ "failed") $) 74 (|has| |#2| (-362)))) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554)))) (-1763 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#2| $ (-562) (-562) |#2|) NIL) ((|#2| $ (-562) (-562)) NIL)) (-4029 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $) NIL (|has| |#2| (-232)))) (-3436 ((|#2| $) NIL)) (-3448 (($ (-639 |#2|)) 44)) (-1544 (((-112) $) NIL)) (-3798 (((-239 |#1| |#2|) $) NIL)) (-3770 ((|#2| $) 59 (|has| |#2| (-6 (-4404 "*"))))) (-1723 (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-4220 (($ $) NIL)) (-4208 (((-535) $) 86 (|has| |#2| (-610 (-535))))) (-2211 (((-239 |#1| |#2|) $ (-562)) 38)) (-4054 (((-857) $) 41) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#2| (-1033 (-406 (-562))))) (($ |#2|) NIL) (((-683 |#2|) $) 46)) (-2579 (((-766)) 18)) (-1744 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1335 (((-112) $) NIL)) (-2286 (($) 12 T CONST)) (-2294 (($) 15 T CONST)) (-3114 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $) NIL (|has| |#2| (-232)))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) 57) (($ $ (-562)) 76 (|has| |#2| (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-239 |#1| |#2|) $ (-239 |#1| |#2|)) 53) (((-239 |#1| |#2|) (-239 |#1| |#2|) $) 55)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-1134 |#1| |#2|) (-13 (-1115 |#1| |#2| (-239 |#1| |#2|) (-239 |#1| |#2|)) (-609 (-683 |#2|)) (-10 -8 (-15 -1458 ($ |#2|)) (-15 -2529 ($ $)) (-15 -2203 ($ (-683 |#2|))) (IF (|has| |#2| (-6 (-4404 "*"))) (-6 -4391) |%noBranch|) (IF (|has| |#2| (-6 (-4404 "*"))) (IF (|has| |#2| (-6 -4399)) (-6 -4399) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|))) (-766) (-1044)) (T -1134))
-((-1458 (*1 *1 *2) (-12 (-5 *1 (-1134 *3 *2)) (-14 *3 (-766)) (-4 *2 (-1044)))) (-2529 (*1 *1 *1) (-12 (-5 *1 (-1134 *2 *3)) (-14 *2 (-766)) (-4 *3 (-1044)))) (-2203 (*1 *1 *2) (-12 (-5 *2 (-683 *4)) (-4 *4 (-1044)) (-5 *1 (-1134 *3 *4)) (-14 *3 (-766)))))
-(-13 (-1115 |#1| |#2| (-239 |#1| |#2|) (-239 |#1| |#2|)) (-609 (-683 |#2|)) (-10 -8 (-15 -1458 ($ |#2|)) (-15 -2529 ($ $)) (-15 -2203 ($ (-683 |#2|))) (IF (|has| |#2| (-6 (-4404 "*"))) (-6 -4391) |%noBranch|) (IF (|has| |#2| (-6 (-4404 "*"))) (IF (|has| |#2| (-6 -4399)) (-6 -4399) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|)))
-((-1576 (($ $) 19)) (-3398 (($ $ (-143)) 10) (($ $ (-140)) 14)) (-3847 (((-112) $ $) 24)) (-3141 (($ $) 17)) (-2343 (((-143) $ (-562) (-143)) NIL) (((-143) $ (-562)) NIL) (($ $ (-1223 (-562))) NIL) (($ $ $) 29)) (-4054 (($ (-143)) 27) (((-857) $) NIL)))
-(((-1135 |#1|) (-10 -8 (-15 -4054 ((-857) |#1|)) (-15 -2343 (|#1| |#1| |#1|)) (-15 -3398 (|#1| |#1| (-140))) (-15 -3398 (|#1| |#1| (-143))) (-15 -4054 (|#1| (-143))) (-15 -3847 ((-112) |#1| |#1|)) (-15 -1576 (|#1| |#1|)) (-15 -3141 (|#1| |#1|)) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -2343 ((-143) |#1| (-562))) (-15 -2343 ((-143) |#1| (-562) (-143)))) (-1136)) (T -1135))
-NIL
-(-10 -8 (-15 -4054 ((-857) |#1|)) (-15 -2343 (|#1| |#1| |#1|)) (-15 -3398 (|#1| |#1| (-140))) (-15 -3398 (|#1| |#1| (-143))) (-15 -4054 (|#1| (-143))) (-15 -3847 ((-112) |#1| |#1|)) (-15 -1576 (|#1| |#1|)) (-15 -3141 (|#1| |#1|)) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -2343 ((-143) |#1| (-562))) (-15 -2343 ((-143) |#1| (-562) (-143))))
-((-4041 (((-112) $ $) 19 (|has| (-143) (-1092)))) (-2744 (($ $) 120)) (-1576 (($ $) 121)) (-3398 (($ $ (-143)) 108) (($ $ (-140)) 107)) (-3052 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4403)))) (-3824 (((-112) $ $) 118)) (-3801 (((-112) $ $ (-562)) 117)) (-2176 (((-639 $) $ (-143)) 110) (((-639 $) $ (-140)) 109)) (-1399 (((-112) (-1 (-112) (-143) (-143)) $) 98) (((-112) $) 92 (|has| (-143) (-845)))) (-3381 (($ (-1 (-112) (-143) (-143)) $) 89 (|has| $ (-6 -4403))) (($ $) 88 (-12 (|has| (-143) (-845)) (|has| $ (-6 -4403))))) (-1395 (($ (-1 (-112) (-143) (-143)) $) 99) (($ $) 93 (|has| (-143) (-845)))) (-4336 (((-112) $ (-766)) 8)) (-4200 (((-143) $ (-562) (-143)) 52 (|has| $ (-6 -4403))) (((-143) $ (-1223 (-562)) (-143)) 58 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-143)) $) 75 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-1968 (($ $ (-143)) 104) (($ $ (-140)) 103)) (-2447 (($ $) 90 (|has| $ (-6 -4403)))) (-2677 (($ $) 100)) (-3944 (($ $ (-1223 (-562)) $) 114)) (-1459 (($ $) 78 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ (-143) $) 77 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) (-143)) $) 74 (|has| $ (-6 -4402)))) (-1955 (((-143) (-1 (-143) (-143) (-143)) $ (-143) (-143)) 76 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4402)))) (((-143) (-1 (-143) (-143) (-143)) $ (-143)) 73 (|has| $ (-6 -4402))) (((-143) (-1 (-143) (-143) (-143)) $) 72 (|has| $ (-6 -4402)))) (-1505 (((-143) $ (-562) (-143)) 53 (|has| $ (-6 -4403)))) (-1420 (((-143) $ (-562)) 51)) (-3847 (((-112) $ $) 119)) (-4264 (((-562) (-1 (-112) (-143)) $) 97) (((-562) (-143) $) 96 (|has| (-143) (-1092))) (((-562) (-143) $ (-562)) 95 (|has| (-143) (-1092))) (((-562) $ $ (-562)) 113) (((-562) (-140) $ (-562)) 112)) (-1720 (((-639 (-143)) $) 30 (|has| $ (-6 -4402)))) (-1458 (($ (-766) (-143)) 69)) (-3292 (((-112) $ (-766)) 9)) (-4197 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 87 (|has| (-143) (-845)))) (-1610 (($ (-1 (-112) (-143) (-143)) $ $) 101) (($ $ $) 94 (|has| (-143) (-845)))) (-1912 (((-639 (-143)) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) (-143) $) 27 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 86 (|has| (-143) (-845)))) (-4263 (((-112) $ $ (-143)) 115)) (-3789 (((-766) $ $ (-143)) 116)) (-1490 (($ (-1 (-143) (-143)) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-143) (-143)) $) 35) (($ (-1 (-143) (-143) (-143)) $ $) 64)) (-1614 (($ $) 122)) (-3141 (($ $) 123)) (-3289 (((-112) $ (-766)) 10)) (-1980 (($ $ (-143)) 106) (($ $ (-140)) 105)) (-2913 (((-1150) $) 22 (|has| (-143) (-1092)))) (-3297 (($ (-143) $ (-562)) 60) (($ $ $ (-562)) 59)) (-2093 (((-639 (-562)) $) 46)) (-1570 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| (-143) (-1092)))) (-1421 (((-143) $) 42 (|has| (-562) (-845)))) (-3251 (((-3 (-143) "failed") (-1 (-112) (-143)) $) 71)) (-2716 (($ $ (-143)) 41 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) (-143)) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-143)))) 26 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-293 (-143))) 25 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-143) (-143)) 24 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-639 (-143)) (-639 (-143))) 23 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) (-143) $) 45 (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-2411 (((-639 (-143)) $) 48)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 (((-143) $ (-562) (-143)) 50) (((-143) $ (-562)) 49) (($ $ (-1223 (-562))) 63) (($ $ $) 102)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1723 (((-766) (-1 (-112) (-143)) $) 31 (|has| $ (-6 -4402))) (((-766) (-143) $) 28 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4402))))) (-1853 (($ $ $ (-562)) 91 (|has| $ (-6 -4403)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| (-143) (-610 (-535))))) (-4066 (($ (-639 (-143))) 70)) (-2767 (($ $ (-143)) 68) (($ (-143) $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4054 (($ (-143)) 111) (((-857) $) 18 (|has| (-143) (-609 (-857))))) (-1744 (((-112) (-1 (-112) (-143)) $) 33 (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) 84 (|has| (-143) (-845)))) (-1772 (((-112) $ $) 83 (|has| (-143) (-845)))) (-1731 (((-112) $ $) 20 (|has| (-143) (-1092)))) (-1785 (((-112) $ $) 85 (|has| (-143) (-845)))) (-1759 (((-112) $ $) 82 (|has| (-143) (-845)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-2001 (*1 *1 *1) (-4 *1 (-1131))) (-3950 (*1 *1 *1) (-4 *1 (-1131))) (-2831 (*1 *1 *1 *1) (-4 *1 (-1131))) (-1623 (*1 *1 *1 *1) (-4 *1 (-1131))) (-3733 (*1 *1 *1 *1) (-4 *1 (-1131))) (-4287 (*1 *1 *1 *1) (-4 *1 (-1131))) (-2582 (*1 *1 *1 *1) (-4 *1 (-1131))) (-2146 (*1 *1 *1 *1) (-4 *1 (-1131))) (-1904 (*1 *1 *1) (-4 *1 (-1131))) (-3291 (*1 *1 *1 *1) (-4 *1 (-1131))) (-2582 (*1 *1 *1) (-4 *1 (-1131))) (-2757 (*1 *1 *1) (-4 *1 (-1131))))
+(-13 (-10 -8 (-15 -2757 ($ $)) (-15 -2582 ($ $)) (-15 -3291 ($ $ $)) (-15 -1904 ($ $)) (-15 -2146 ($ $ $)) (-15 -2582 ($ $ $)) (-15 -4287 ($ $ $)) (-15 -3733 ($ $ $)) (-15 -1623 ($ $ $)) (-15 -2831 ($ $ $)) (-15 -3950 ($ $)) (-15 -2001 ($ $))))
+((-4041 (((-112) $ $) 42)) (-2533 ((|#1| $) 16)) (-2002 (((-112) $ $ (-1 (-112) |#2| |#2|)) 37)) (-3981 (((-112) $) 18)) (-4373 (($ $ |#1|) 29)) (-1811 (($ $ (-112)) 31)) (-1576 (($ $) 32)) (-2536 (($ $ |#2|) 30)) (-3696 (((-1150) $) NIL)) (-3578 (((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|)) 36)) (-1709 (((-1112) $) NIL)) (-3087 (((-112) $) 15)) (-1663 (($) 11)) (-4220 (($ $) 28)) (-4064 (($ |#1| |#2| (-112)) 19) (($ |#1| |#2|) 20) (($ (-2 (|:| |val| |#1|) (|:| -1501 |#2|))) 22) (((-639 $) (-639 (-2 (|:| |val| |#1|) (|:| -1501 |#2|)))) 25) (((-639 $) |#1| (-639 |#2|)) 27)) (-3316 ((|#2| $) 17)) (-4053 (((-857) $) 51)) (-1733 (((-112) $ $) 40)))
+(((-1132 |#1| |#2|) (-13 (-1092) (-10 -8 (-15 -1663 ($)) (-15 -3087 ((-112) $)) (-15 -2533 (|#1| $)) (-15 -3316 (|#2| $)) (-15 -3981 ((-112) $)) (-15 -4064 ($ |#1| |#2| (-112))) (-15 -4064 ($ |#1| |#2|)) (-15 -4064 ($ (-2 (|:| |val| |#1|) (|:| -1501 |#2|)))) (-15 -4064 ((-639 $) (-639 (-2 (|:| |val| |#1|) (|:| -1501 |#2|))))) (-15 -4064 ((-639 $) |#1| (-639 |#2|))) (-15 -4220 ($ $)) (-15 -4373 ($ $ |#1|)) (-15 -2536 ($ $ |#2|)) (-15 -1811 ($ $ (-112))) (-15 -1576 ($ $)) (-15 -3578 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -2002 ((-112) $ $ (-1 (-112) |#2| |#2|))))) (-13 (-1092) (-34)) (-13 (-1092) (-34))) (T -1132))
+((-1663 (*1 *1) (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-3087 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))))) (-2533 (*1 *2 *1) (-12 (-4 *2 (-13 (-1092) (-34))) (-5 *1 (-1132 *2 *3)) (-4 *3 (-13 (-1092) (-34))))) (-3316 (*1 *2 *1) (-12 (-4 *2 (-13 (-1092) (-34))) (-5 *1 (-1132 *3 *2)) (-4 *3 (-13 (-1092) (-34))))) (-3981 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))))) (-4064 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-4064 (*1 *1 *2 *3) (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-4064 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -1501 *4))) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1132 *3 *4)))) (-4064 (*1 *2 *3) (-12 (-5 *3 (-639 (-2 (|:| |val| *4) (|:| -1501 *5)))) (-4 *4 (-13 (-1092) (-34))) (-4 *5 (-13 (-1092) (-34))) (-5 *2 (-639 (-1132 *4 *5))) (-5 *1 (-1132 *4 *5)))) (-4064 (*1 *2 *3 *4) (-12 (-5 *4 (-639 *5)) (-4 *5 (-13 (-1092) (-34))) (-5 *2 (-639 (-1132 *3 *5))) (-5 *1 (-1132 *3 *5)) (-4 *3 (-13 (-1092) (-34))))) (-4220 (*1 *1 *1) (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-4373 (*1 *1 *1 *2) (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-2536 (*1 *1 *1 *2) (-12 (-5 *1 (-1132 *3 *2)) (-4 *3 (-13 (-1092) (-34))) (-4 *2 (-13 (-1092) (-34))))) (-1811 (*1 *1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))))) (-1576 (*1 *1 *1) (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-3578 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1092) (-34))) (-4 *6 (-13 (-1092) (-34))) (-5 *2 (-112)) (-5 *1 (-1132 *5 *6)))) (-2002 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1092) (-34))) (-5 *2 (-112)) (-5 *1 (-1132 *4 *5)) (-4 *4 (-13 (-1092) (-34))))))
+(-13 (-1092) (-10 -8 (-15 -1663 ($)) (-15 -3087 ((-112) $)) (-15 -2533 (|#1| $)) (-15 -3316 (|#2| $)) (-15 -3981 ((-112) $)) (-15 -4064 ($ |#1| |#2| (-112))) (-15 -4064 ($ |#1| |#2|)) (-15 -4064 ($ (-2 (|:| |val| |#1|) (|:| -1501 |#2|)))) (-15 -4064 ((-639 $) (-639 (-2 (|:| |val| |#1|) (|:| -1501 |#2|))))) (-15 -4064 ((-639 $) |#1| (-639 |#2|))) (-15 -4220 ($ $)) (-15 -4373 ($ $ |#1|)) (-15 -2536 ($ $ |#2|)) (-15 -1811 ($ $ (-112))) (-15 -1576 ($ $)) (-15 -3578 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -2002 ((-112) $ $ (-1 (-112) |#2| |#2|)))))
+((-4041 (((-112) $ $) NIL (|has| (-1132 |#1| |#2|) (-1092)))) (-2533 (((-1132 |#1| |#2|) $) 26)) (-2372 (($ $) 76)) (-3692 (((-112) (-1132 |#1| |#2|) $ (-1 (-112) |#2| |#2|)) 85)) (-3248 (($ $ $ (-639 (-1132 |#1| |#2|))) 90) (($ $ $ (-639 (-1132 |#1| |#2|)) (-1 (-112) |#2| |#2|)) 91)) (-3735 (((-112) $ (-766)) NIL)) (-2677 (((-1132 |#1| |#2|) $ (-1132 |#1| |#2|)) 43 (|has| $ (-6 -4404)))) (-4200 (((-1132 |#1| |#2|) $ "value" (-1132 |#1| |#2|)) NIL (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) 41 (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-3794 (((-639 (-2 (|:| |val| |#1|) (|:| -1501 |#2|))) $) 80)) (-3729 (($ (-1132 |#1| |#2|) $) 39)) (-1475 (($ (-1132 |#1| |#2|) $) 31)) (-1720 (((-639 (-1132 |#1| |#2|)) $) NIL (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) 51)) (-3298 (((-112) (-1132 |#1| |#2|) $) 82)) (-4188 (((-112) $ $) NIL (|has| (-1132 |#1| |#2|) (-1092)))) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 (-1132 |#1| |#2|)) $) 55 (|has| $ (-6 -4403)))) (-1572 (((-112) (-1132 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-1132 |#1| |#2|) (-1092))))) (-1491 (($ (-1 (-1132 |#1| |#2|) (-1132 |#1| |#2|)) $) 47 (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-1132 |#1| |#2|) (-1132 |#1| |#2|)) $) 46)) (-4147 (((-112) $ (-766)) NIL)) (-4008 (((-639 (-1132 |#1| |#2|)) $) 53)) (-3179 (((-112) $) 42)) (-3696 (((-1150) $) NIL (|has| (-1132 |#1| |#2|) (-1092)))) (-1709 (((-1112) $) NIL (|has| (-1132 |#1| |#2|) (-1092)))) (-4101 (((-3 $ "failed") $) 75)) (-3008 (((-112) (-1 (-112) (-1132 |#1| |#2|)) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-1132 |#1| |#2|)))) NIL (-12 (|has| (-1132 |#1| |#2|) (-308 (-1132 |#1| |#2|))) (|has| (-1132 |#1| |#2|) (-1092)))) (($ $ (-293 (-1132 |#1| |#2|))) NIL (-12 (|has| (-1132 |#1| |#2|) (-308 (-1132 |#1| |#2|))) (|has| (-1132 |#1| |#2|) (-1092)))) (($ $ (-1132 |#1| |#2|) (-1132 |#1| |#2|)) NIL (-12 (|has| (-1132 |#1| |#2|) (-308 (-1132 |#1| |#2|))) (|has| (-1132 |#1| |#2|) (-1092)))) (($ $ (-639 (-1132 |#1| |#2|)) (-639 (-1132 |#1| |#2|))) NIL (-12 (|has| (-1132 |#1| |#2|) (-308 (-1132 |#1| |#2|))) (|has| (-1132 |#1| |#2|) (-1092))))) (-1452 (((-112) $ $) 50)) (-3087 (((-112) $) 23)) (-1663 (($) 25)) (-2343 (((-1132 |#1| |#2|) $ "value") NIL)) (-1423 (((-562) $ $) NIL)) (-2473 (((-112) $) 44)) (-1723 (((-766) (-1 (-112) (-1132 |#1| |#2|)) $) NIL (|has| $ (-6 -4403))) (((-766) (-1132 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-1132 |#1| |#2|) (-1092))))) (-4220 (($ $) 49)) (-4064 (($ (-1132 |#1| |#2|)) 10) (($ |#1| |#2| (-639 $)) 13) (($ |#1| |#2| (-639 (-1132 |#1| |#2|))) 15) (($ |#1| |#2| |#1| (-639 |#2|)) 18)) (-3777 (((-639 |#2|) $) 81)) (-4053 (((-857) $) 73 (|has| (-1132 |#1| |#2|) (-609 (-857))))) (-3643 (((-639 $) $) 29)) (-2985 (((-112) $ $) NIL (|has| (-1132 |#1| |#2|) (-1092)))) (-2879 (((-112) (-1 (-112) (-1132 |#1| |#2|)) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 64 (|has| (-1132 |#1| |#2|) (-1092)))) (-3492 (((-766) $) 58 (|has| $ (-6 -4403)))))
+(((-1133 |#1| |#2|) (-13 (-1005 (-1132 |#1| |#2|)) (-10 -8 (-6 -4404) (-6 -4403) (-15 -4101 ((-3 $ "failed") $)) (-15 -2372 ($ $)) (-15 -4064 ($ (-1132 |#1| |#2|))) (-15 -4064 ($ |#1| |#2| (-639 $))) (-15 -4064 ($ |#1| |#2| (-639 (-1132 |#1| |#2|)))) (-15 -4064 ($ |#1| |#2| |#1| (-639 |#2|))) (-15 -3777 ((-639 |#2|) $)) (-15 -3794 ((-639 (-2 (|:| |val| |#1|) (|:| -1501 |#2|))) $)) (-15 -3298 ((-112) (-1132 |#1| |#2|) $)) (-15 -3692 ((-112) (-1132 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1475 ($ (-1132 |#1| |#2|) $)) (-15 -3729 ($ (-1132 |#1| |#2|) $)) (-15 -3248 ($ $ $ (-639 (-1132 |#1| |#2|)))) (-15 -3248 ($ $ $ (-639 (-1132 |#1| |#2|)) (-1 (-112) |#2| |#2|))))) (-13 (-1092) (-34)) (-13 (-1092) (-34))) (T -1133))
+((-4101 (*1 *1 *1) (|partial| -12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-2372 (*1 *1 *1) (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-4064 (*1 *1 *2) (-12 (-5 *2 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))) (-4064 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-639 (-1133 *2 *3))) (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))))) (-4064 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-639 (-1132 *2 *3))) (-4 *2 (-13 (-1092) (-34))) (-4 *3 (-13 (-1092) (-34))) (-5 *1 (-1133 *2 *3)))) (-4064 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-639 *3)) (-4 *3 (-13 (-1092) (-34))) (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1092) (-34))))) (-3777 (*1 *2 *1) (-12 (-5 *2 (-639 *4)) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))))) (-3794 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4)))) (-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))))) (-3298 (*1 *2 *3 *1) (-12 (-5 *3 (-1132 *4 *5)) (-4 *4 (-13 (-1092) (-34))) (-4 *5 (-13 (-1092) (-34))) (-5 *2 (-112)) (-5 *1 (-1133 *4 *5)))) (-3692 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1132 *5 *6)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1092) (-34))) (-4 *6 (-13 (-1092) (-34))) (-5 *2 (-112)) (-5 *1 (-1133 *5 *6)))) (-1475 (*1 *1 *2 *1) (-12 (-5 *2 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))) (-3729 (*1 *1 *2 *1) (-12 (-5 *2 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))) (-3248 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-639 (-1132 *3 *4))) (-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))) (-3248 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-1132 *4 *5))) (-5 *3 (-1 (-112) *5 *5)) (-4 *4 (-13 (-1092) (-34))) (-4 *5 (-13 (-1092) (-34))) (-5 *1 (-1133 *4 *5)))))
+(-13 (-1005 (-1132 |#1| |#2|)) (-10 -8 (-6 -4404) (-6 -4403) (-15 -4101 ((-3 $ "failed") $)) (-15 -2372 ($ $)) (-15 -4064 ($ (-1132 |#1| |#2|))) (-15 -4064 ($ |#1| |#2| (-639 $))) (-15 -4064 ($ |#1| |#2| (-639 (-1132 |#1| |#2|)))) (-15 -4064 ($ |#1| |#2| |#1| (-639 |#2|))) (-15 -3777 ((-639 |#2|) $)) (-15 -3794 ((-639 (-2 (|:| |val| |#1|) (|:| -1501 |#2|))) $)) (-15 -3298 ((-112) (-1132 |#1| |#2|) $)) (-15 -3692 ((-112) (-1132 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1475 ($ (-1132 |#1| |#2|) $)) (-15 -3729 ($ (-1132 |#1| |#2|) $)) (-15 -3248 ($ $ $ (-639 (-1132 |#1| |#2|)))) (-15 -3248 ($ $ $ (-639 (-1132 |#1| |#2|)) (-1 (-112) |#2| |#2|)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2309 (($ $) NIL)) (-1748 ((|#2| $) NIL)) (-4097 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-2130 (($ (-683 |#2|)) 50)) (-2819 (((-112) $) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-4369 (($ |#2|) 10)) (-3329 (($) NIL T CONST)) (-2239 (($ $) 63 (|has| |#2| (-306)))) (-3511 (((-239 |#1| |#2|) $ (-562)) 36)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 |#2| "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) ((|#2| $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) 77)) (-2172 (((-766) $) 65 (|has| |#2| (-554)))) (-1420 ((|#2| $ (-562) (-562)) NIL)) (-1720 (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-4367 (((-112) $) NIL)) (-4244 (((-766) $) 67 (|has| |#2| (-554)))) (-3821 (((-639 (-239 |#1| |#2|)) $) 71 (|has| |#2| (-554)))) (-2698 (((-766) $) NIL)) (-1458 (($ |#2|) 20)) (-2708 (((-766) $) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1622 ((|#2| $) 61 (|has| |#2| (-6 (-4405 "*"))))) (-1808 (((-562) $) NIL)) (-2028 (((-562) $) NIL)) (-2123 (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-3269 (((-562) $) NIL)) (-2727 (((-562) $) NIL)) (-2884 (($ (-639 (-639 |#2|))) 31)) (-1491 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2247 (((-639 (-639 |#2|)) $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-2463 (((-3 $ "failed") $) 74 (|has| |#2| (-362)))) (-1709 (((-1112) $) NIL)) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554)))) (-3008 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#2| $ (-562) (-562) |#2|) NIL) ((|#2| $ (-562) (-562)) NIL)) (-4029 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $) NIL (|has| |#2| (-232)))) (-3042 ((|#2| $) NIL)) (-3168 (($ (-639 |#2|)) 44)) (-1752 (((-112) $) NIL)) (-2399 (((-239 |#1| |#2|) $) NIL)) (-3282 ((|#2| $) 59 (|has| |#2| (-6 (-4405 "*"))))) (-1723 (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-4220 (($ $) NIL)) (-4208 (((-535) $) 86 (|has| |#2| (-610 (-535))))) (-2208 (((-239 |#1| |#2|) $ (-562)) 38)) (-4053 (((-857) $) 41) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#2| (-1033 (-406 (-562))))) (($ |#2|) NIL) (((-683 |#2|) $) 46)) (-1568 (((-766)) 18)) (-2879 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1996 (((-112) $) NIL)) (-2285 (($) 12 T CONST)) (-2294 (($) 15 T CONST)) (-3113 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-766)) NIL (|has| |#2| (-232))) (($ $) NIL (|has| |#2| (-232)))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) 57) (($ $ (-562)) 76 (|has| |#2| (-362)))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-239 |#1| |#2|) $ (-239 |#1| |#2|)) 53) (((-239 |#1| |#2|) (-239 |#1| |#2|) $) 55)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-1134 |#1| |#2|) (-13 (-1115 |#1| |#2| (-239 |#1| |#2|) (-239 |#1| |#2|)) (-609 (-683 |#2|)) (-10 -8 (-15 -1458 ($ |#2|)) (-15 -2309 ($ $)) (-15 -2130 ($ (-683 |#2|))) (IF (|has| |#2| (-6 (-4405 "*"))) (-6 -4392) |%noBranch|) (IF (|has| |#2| (-6 (-4405 "*"))) (IF (|has| |#2| (-6 -4400)) (-6 -4400) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|))) (-766) (-1044)) (T -1134))
+((-1458 (*1 *1 *2) (-12 (-5 *1 (-1134 *3 *2)) (-14 *3 (-766)) (-4 *2 (-1044)))) (-2309 (*1 *1 *1) (-12 (-5 *1 (-1134 *2 *3)) (-14 *2 (-766)) (-4 *3 (-1044)))) (-2130 (*1 *1 *2) (-12 (-5 *2 (-683 *4)) (-4 *4 (-1044)) (-5 *1 (-1134 *3 *4)) (-14 *3 (-766)))))
+(-13 (-1115 |#1| |#2| (-239 |#1| |#2|) (-239 |#1| |#2|)) (-609 (-683 |#2|)) (-10 -8 (-15 -1458 ($ |#2|)) (-15 -2309 ($ $)) (-15 -2130 ($ (-683 |#2|))) (IF (|has| |#2| (-6 (-4405 "*"))) (-6 -4392) |%noBranch|) (IF (|has| |#2| (-6 (-4405 "*"))) (IF (|has| |#2| (-6 -4400)) (-6 -4400) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-610 (-535))) (-6 (-610 (-535))) |%noBranch|)))
+((-2033 (($ $) 19)) (-3904 (($ $ (-143)) 10) (($ $ (-140)) 14)) (-3847 (((-112) $ $) 24)) (-3249 (($ $) 17)) (-2343 (((-143) $ (-562) (-143)) NIL) (((-143) $ (-562)) NIL) (($ $ (-1223 (-562))) NIL) (($ $ $) 29)) (-4053 (($ (-143)) 27) (((-857) $) NIL)))
+(((-1135 |#1|) (-10 -8 (-15 -4053 ((-857) |#1|)) (-15 -2343 (|#1| |#1| |#1|)) (-15 -3904 (|#1| |#1| (-140))) (-15 -3904 (|#1| |#1| (-143))) (-15 -4053 (|#1| (-143))) (-15 -3847 ((-112) |#1| |#1|)) (-15 -2033 (|#1| |#1|)) (-15 -3249 (|#1| |#1|)) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -2343 ((-143) |#1| (-562))) (-15 -2343 ((-143) |#1| (-562) (-143)))) (-1136)) (T -1135))
+NIL
+(-10 -8 (-15 -4053 ((-857) |#1|)) (-15 -2343 (|#1| |#1| |#1|)) (-15 -3904 (|#1| |#1| (-140))) (-15 -3904 (|#1| |#1| (-143))) (-15 -4053 (|#1| (-143))) (-15 -3847 ((-112) |#1| |#1|)) (-15 -2033 (|#1| |#1|)) (-15 -3249 (|#1| |#1|)) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -2343 ((-143) |#1| (-562))) (-15 -2343 ((-143) |#1| (-562) (-143))))
+((-4041 (((-112) $ $) 19 (|has| (-143) (-1092)))) (-2629 (($ $) 120)) (-2033 (($ $) 121)) (-3904 (($ $ (-143)) 108) (($ $ (-140)) 107)) (-3655 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4404)))) (-3824 (((-112) $ $) 118)) (-3801 (((-112) $ $ (-562)) 117)) (-1841 (((-639 $) $ (-143)) 110) (((-639 $) $ (-140)) 109)) (-1706 (((-112) (-1 (-112) (-143) (-143)) $) 98) (((-112) $) 92 (|has| (-143) (-845)))) (-3737 (($ (-1 (-112) (-143) (-143)) $) 89 (|has| $ (-6 -4404))) (($ $) 88 (-12 (|has| (-143) (-845)) (|has| $ (-6 -4404))))) (-1395 (($ (-1 (-112) (-143) (-143)) $) 99) (($ $) 93 (|has| (-143) (-845)))) (-3735 (((-112) $ (-766)) 8)) (-4200 (((-143) $ (-562) (-143)) 52 (|has| $ (-6 -4404))) (((-143) $ (-1223 (-562)) (-143)) 58 (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) (-143)) $) 75 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-1967 (($ $ (-143)) 104) (($ $ (-140)) 103)) (-2673 (($ $) 90 (|has| $ (-6 -4404)))) (-2676 (($ $) 100)) (-1348 (($ $ (-1223 (-562)) $) 114)) (-1459 (($ $) 78 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ (-143) $) 77 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) (-143)) $) 74 (|has| $ (-6 -4403)))) (-1954 (((-143) (-1 (-143) (-143) (-143)) $ (-143) (-143)) 76 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4403)))) (((-143) (-1 (-143) (-143) (-143)) $ (-143)) 73 (|has| $ (-6 -4403))) (((-143) (-1 (-143) (-143) (-143)) $) 72 (|has| $ (-6 -4403)))) (-1507 (((-143) $ (-562) (-143)) 53 (|has| $ (-6 -4404)))) (-1420 (((-143) $ (-562)) 51)) (-3847 (((-112) $ $) 119)) (-4265 (((-562) (-1 (-112) (-143)) $) 97) (((-562) (-143) $) 96 (|has| (-143) (-1092))) (((-562) (-143) $ (-562)) 95 (|has| (-143) (-1092))) (((-562) $ $ (-562)) 113) (((-562) (-140) $ (-562)) 112)) (-1720 (((-639 (-143)) $) 30 (|has| $ (-6 -4403)))) (-1458 (($ (-766) (-143)) 69)) (-4172 (((-112) $ (-766)) 9)) (-1849 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 87 (|has| (-143) (-845)))) (-4103 (($ (-1 (-112) (-143) (-143)) $ $) 101) (($ $ $) 94 (|has| (-143) (-845)))) (-2123 (((-639 (-143)) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) (-143) $) 27 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 86 (|has| (-143) (-845)))) (-4264 (((-112) $ $ (-143)) 115)) (-3789 (((-766) $ $ (-143)) 116)) (-1491 (($ (-1 (-143) (-143)) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-143) (-143)) $) 35) (($ (-1 (-143) (-143) (-143)) $ $) 64)) (-4145 (($ $) 122)) (-3249 (($ $) 123)) (-4147 (((-112) $ (-766)) 10)) (-1979 (($ $ (-143)) 106) (($ $ (-140)) 105)) (-3696 (((-1150) $) 22 (|has| (-143) (-1092)))) (-3295 (($ (-143) $ (-562)) 60) (($ $ $ (-562)) 59)) (-3336 (((-639 (-562)) $) 46)) (-1987 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| (-143) (-1092)))) (-1421 (((-143) $) 42 (|has| (-562) (-845)))) (-1963 (((-3 (-143) "failed") (-1 (-112) (-143)) $) 71)) (-3510 (($ $ (-143)) 41 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) (-143)) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-143)))) 26 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-293 (-143))) 25 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-143) (-143)) 24 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-639 (-143)) (-639 (-143))) 23 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) (-143) $) 45 (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-2366 (((-639 (-143)) $) 48)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 (((-143) $ (-562) (-143)) 50) (((-143) $ (-562)) 49) (($ $ (-1223 (-562))) 63) (($ $ $) 102)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1723 (((-766) (-1 (-112) (-143)) $) 31 (|has| $ (-6 -4403))) (((-766) (-143) $) 28 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4403))))) (-2694 (($ $ $ (-562)) 91 (|has| $ (-6 -4404)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| (-143) (-610 (-535))))) (-4064 (($ (-639 (-143))) 70)) (-2767 (($ $ (-143)) 68) (($ (-143) $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4053 (($ (-143)) 111) (((-857) $) 18 (|has| (-143) (-609 (-857))))) (-2879 (((-112) (-1 (-112) (-143)) $) 33 (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) 84 (|has| (-143) (-845)))) (-1771 (((-112) $ $) 83 (|has| (-143) (-845)))) (-1733 (((-112) $ $) 20 (|has| (-143) (-1092)))) (-1785 (((-112) $ $) 85 (|has| (-143) (-845)))) (-1761 (((-112) $ $) 82 (|has| (-143) (-845)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-1136) (-139)) (T -1136))
-((-3141 (*1 *1 *1) (-4 *1 (-1136))) (-1614 (*1 *1 *1) (-4 *1 (-1136))) (-1576 (*1 *1 *1) (-4 *1 (-1136))) (-2744 (*1 *1 *1) (-4 *1 (-1136))) (-3847 (*1 *2 *1 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-112)))) (-3824 (*1 *2 *1 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-112)))) (-3801 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (-562)) (-5 *2 (-112)))) (-3789 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (-143)) (-5 *2 (-766)))) (-4263 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (-143)) (-5 *2 (-112)))) (-3944 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1223 (-562))))) (-4264 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-562)))) (-4264 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-562)) (-5 *3 (-140)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-143)) (-4 *1 (-1136)))) (-2176 (*1 *2 *1 *3) (-12 (-5 *3 (-143)) (-5 *2 (-639 *1)) (-4 *1 (-1136)))) (-2176 (*1 *2 *1 *3) (-12 (-5 *3 (-140)) (-5 *2 (-639 *1)) (-4 *1 (-1136)))) (-3398 (*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-143)))) (-3398 (*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-140)))) (-1980 (*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-143)))) (-1980 (*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-140)))) (-1968 (*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-143)))) (-1968 (*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-140)))) (-2343 (*1 *1 *1 *1) (-4 *1 (-1136))))
-(-13 (-19 (-143)) (-10 -8 (-15 -3141 ($ $)) (-15 -1614 ($ $)) (-15 -1576 ($ $)) (-15 -2744 ($ $)) (-15 -3847 ((-112) $ $)) (-15 -3824 ((-112) $ $)) (-15 -3801 ((-112) $ $ (-562))) (-15 -3789 ((-766) $ $ (-143))) (-15 -4263 ((-112) $ $ (-143))) (-15 -3944 ($ $ (-1223 (-562)) $)) (-15 -4264 ((-562) $ $ (-562))) (-15 -4264 ((-562) (-140) $ (-562))) (-15 -4054 ($ (-143))) (-15 -2176 ((-639 $) $ (-143))) (-15 -2176 ((-639 $) $ (-140))) (-15 -3398 ($ $ (-143))) (-15 -3398 ($ $ (-140))) (-15 -1980 ($ $ (-143))) (-15 -1980 ($ $ (-140))) (-15 -1968 ($ $ (-143))) (-15 -1968 ($ $ (-140))) (-15 -2343 ($ $ $))))
+((-3249 (*1 *1 *1) (-4 *1 (-1136))) (-4145 (*1 *1 *1) (-4 *1 (-1136))) (-2033 (*1 *1 *1) (-4 *1 (-1136))) (-2629 (*1 *1 *1) (-4 *1 (-1136))) (-3847 (*1 *2 *1 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-112)))) (-3824 (*1 *2 *1 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-112)))) (-3801 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (-562)) (-5 *2 (-112)))) (-3789 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (-143)) (-5 *2 (-766)))) (-4264 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (-143)) (-5 *2 (-112)))) (-1348 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1223 (-562))))) (-4265 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-562)))) (-4265 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-562)) (-5 *3 (-140)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-143)) (-4 *1 (-1136)))) (-1841 (*1 *2 *1 *3) (-12 (-5 *3 (-143)) (-5 *2 (-639 *1)) (-4 *1 (-1136)))) (-1841 (*1 *2 *1 *3) (-12 (-5 *3 (-140)) (-5 *2 (-639 *1)) (-4 *1 (-1136)))) (-3904 (*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-143)))) (-3904 (*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-140)))) (-1979 (*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-143)))) (-1979 (*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-140)))) (-1967 (*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-143)))) (-1967 (*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-140)))) (-2343 (*1 *1 *1 *1) (-4 *1 (-1136))))
+(-13 (-19 (-143)) (-10 -8 (-15 -3249 ($ $)) (-15 -4145 ($ $)) (-15 -2033 ($ $)) (-15 -2629 ($ $)) (-15 -3847 ((-112) $ $)) (-15 -3824 ((-112) $ $)) (-15 -3801 ((-112) $ $ (-562))) (-15 -3789 ((-766) $ $ (-143))) (-15 -4264 ((-112) $ $ (-143))) (-15 -1348 ($ $ (-1223 (-562)) $)) (-15 -4265 ((-562) $ $ (-562))) (-15 -4265 ((-562) (-140) $ (-562))) (-15 -4053 ($ (-143))) (-15 -1841 ((-639 $) $ (-143))) (-15 -1841 ((-639 $) $ (-140))) (-15 -3904 ($ $ (-143))) (-15 -3904 ($ $ (-140))) (-15 -1979 ($ $ (-143))) (-15 -1979 ($ $ (-140))) (-15 -1967 ($ $ (-143))) (-15 -1967 ($ $ (-140))) (-15 -2343 ($ $ $))))
(((-34) . T) ((-102) -4037 (|has| (-143) (-1092)) (|has| (-143) (-845))) ((-609 (-857)) -4037 (|has| (-143) (-1092)) (|has| (-143) (-845)) (|has| (-143) (-609 (-857)))) ((-150 #0=(-143)) . T) ((-610 (-535)) |has| (-143) (-610 (-535))) ((-285 #1=(-562) #0#) . T) ((-287 #1# #0#) . T) ((-308 #0#) -12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))) ((-372 #0#) . T) ((-488 #0#) . T) ((-600 #1# #0#) . T) ((-513 #0# #0#) -12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))) ((-645 #0#) . T) ((-19 #0#) . T) ((-845) |has| (-143) (-845)) ((-1092) -4037 (|has| (-143) (-1092)) (|has| (-143) (-845))) ((-1207) . T))
-((-3612 (((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-639 |#4|) (-639 |#5|) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) (-766)) 93)) (-3223 (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|) 55) (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766)) 54)) (-4192 (((-1261) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-766)) 85)) (-2793 (((-766) (-639 |#4|) (-639 |#5|)) 27)) (-3467 (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766)) 56) (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766) (-112)) 58)) (-2018 (((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112) (-112) (-112) (-112)) 76) (((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112)) 77)) (-4208 (((-1150) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) 80)) (-1456 (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|) 53)) (-2903 (((-766) (-639 |#4|) (-639 |#5|)) 19)))
-(((-1137 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2903 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -2793 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -1456 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|)) (-15 -3223 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766))) (-15 -3223 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|)) (-15 -3467 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766) (-112))) (-15 -3467 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766))) (-15 -3467 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|)) (-15 -2018 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -2018 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -3612 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-639 |#4|) (-639 |#5|) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) (-766))) (-15 -4208 ((-1150) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)))) (-15 -4192 ((-1261) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-766)))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1101 |#1| |#2| |#3| |#4|)) (T -1137))
-((-4192 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1495 *9)))) (-5 *4 (-766)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-1261)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1495 *8))) (-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1101 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1150)) (-5 *1 (-1137 *4 *5 *6 *7 *8)))) (-3612 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-639 *11)) (|:| |todo| (-639 (-2 (|:| |val| *3) (|:| -1495 *11)))))) (-5 *6 (-766)) (-5 *2 (-639 (-2 (|:| |val| (-639 *10)) (|:| -1495 *11)))) (-5 *3 (-639 *10)) (-5 *4 (-639 *11)) (-4 *10 (-1058 *7 *8 *9)) (-4 *11 (-1101 *7 *8 *9 *10)) (-4 *7 (-451)) (-4 *8 (-788)) (-4 *9 (-845)) (-5 *1 (-1137 *7 *8 *9 *10 *11)))) (-2018 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))) (-2018 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))) (-3467 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))))) (-5 *1 (-1137 *5 *6 *7 *3 *4)) (-4 *4 (-1101 *5 *6 *7 *3)))) (-3467 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))))) (-5 *1 (-1137 *6 *7 *8 *3 *4)) (-4 *4 (-1101 *6 *7 *8 *3)))) (-3467 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-766)) (-5 *6 (-112)) (-4 *7 (-451)) (-4 *8 (-788)) (-4 *9 (-845)) (-4 *3 (-1058 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))))) (-5 *1 (-1137 *7 *8 *9 *3 *4)) (-4 *4 (-1101 *7 *8 *9 *3)))) (-3223 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))))) (-5 *1 (-1137 *5 *6 *7 *3 *4)) (-4 *4 (-1101 *5 *6 *7 *3)))) (-3223 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))))) (-5 *1 (-1137 *6 *7 *8 *3 *4)) (-4 *4 (-1101 *6 *7 *8 *3)))) (-1456 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4)))))) (-5 *1 (-1137 *5 *6 *7 *3 *4)) (-4 *4 (-1101 *5 *6 *7 *3)))) (-2793 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))) (-2903 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -2903 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -2793 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -1456 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|)) (-15 -3223 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766))) (-15 -3223 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|)) (-15 -3467 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766) (-112))) (-15 -3467 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5| (-766))) (-15 -3467 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) |#4| |#5|)) (-15 -2018 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -2018 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -3612 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-639 |#4|) (-639 |#5|) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))))) (-766))) (-15 -4208 ((-1150) (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|)))) (-15 -4192 ((-1261) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1495 |#5|))) (-766))))
-((-4041 (((-112) $ $) NIL)) (-2560 (((-639 (-2 (|:| -1450 $) (|:| -3316 (-639 |#4|)))) (-639 |#4|)) NIL)) (-2304 (((-639 $) (-639 |#4|)) 110) (((-639 $) (-639 |#4|) (-112)) 111) (((-639 $) (-639 |#4|) (-112) (-112)) 109) (((-639 $) (-639 |#4|) (-112) (-112) (-112) (-112)) 112)) (-1402 (((-639 |#3|) $) NIL)) (-4170 (((-112) $) NIL)) (-4274 (((-112) $) NIL (|has| |#1| (-554)))) (-4377 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3049 ((|#4| |#4| $) NIL)) (-2798 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 $))) |#4| $) 84)) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |#3|) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-3556 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402))) (((-3 |#4| "failed") $ |#3|) 62)) (-1800 (($) NIL T CONST)) (-2207 (((-112) $) 27 (|has| |#1| (-554)))) (-1920 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3852 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2539 (((-112) $) NIL (|has| |#1| (-554)))) (-2839 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3884 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-2540 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) NIL)) (-3961 (($ (-639 |#4|)) NIL)) (-1434 (((-3 $ "failed") $) 40)) (-2387 ((|#4| |#4| $) 65)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-1475 (($ |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-2264 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 78 (|has| |#1| (-554)))) (-4091 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3595 ((|#4| |#4| $) NIL)) (-1955 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4402))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4402))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2267 (((-2 (|:| -1450 (-639 |#4|)) (|:| -3316 (-639 |#4|))) $) NIL)) (-4079 (((-112) |#4| $) NIL)) (-3513 (((-112) |#4| $) NIL)) (-2764 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3383 (((-2 (|:| |val| (-639 |#4|)) (|:| |towers| (-639 $))) (-639 |#4|) (-112) (-112)) 124)) (-1720 (((-639 |#4|) $) 17 (|has| $ (-6 -4402)))) (-2573 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4339 ((|#3| $) 34)) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#4|) $) 18 (|has| $ (-6 -4402)))) (-1669 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-1490 (($ (-1 |#4| |#4|) $) 24 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#4| |#4|) $) 22)) (-3754 (((-639 |#3|) $) NIL)) (-2071 (((-112) |#3| $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-1609 (((-3 |#4| (-639 $)) |#4| |#4| $) NIL)) (-1851 (((-639 (-2 (|:| |val| |#4|) (|:| -1495 $))) |#4| |#4| $) 103)) (-1504 (((-3 |#4| "failed") $) 38)) (-1814 (((-639 $) |#4| $) 88)) (-1950 (((-3 (-112) (-639 $)) |#4| $) NIL)) (-2021 (((-639 (-2 (|:| |val| (-112)) (|:| -1495 $))) |#4| $) 98) (((-112) |#4| $) 53)) (-4376 (((-639 $) |#4| $) 107) (((-639 $) (-639 |#4|) $) NIL) (((-639 $) (-639 |#4|) (-639 $)) 108) (((-639 $) |#4| (-639 $)) NIL)) (-1930 (((-639 $) (-639 |#4|) (-112) (-112) (-112)) 119)) (-1430 (($ |#4| $) 75) (($ (-639 |#4|) $) 76) (((-639 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 74)) (-3576 (((-639 |#4|) $) NIL)) (-2890 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1849 ((|#4| |#4| $) NIL)) (-1408 (((-112) $ $) NIL)) (-3725 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-2766 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1532 ((|#4| |#4| $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-3 |#4| "failed") $) 36)) (-3251 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3310 (((-3 $ "failed") $ |#4|) 48)) (-1353 (($ $ |#4|) NIL) (((-639 $) |#4| $) 90) (((-639 $) |#4| (-639 $)) NIL) (((-639 $) (-639 |#4|) $) NIL) (((-639 $) (-639 |#4|) (-639 $)) 86)) (-1763 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 16)) (-4307 (($) 14)) (-3598 (((-766) $) NIL)) (-1723 (((-766) |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) (((-766) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) 13)) (-4208 (((-535) $) NIL (|has| |#4| (-610 (-535))))) (-4066 (($ (-639 |#4|)) 21)) (-1812 (($ $ |#3|) 43)) (-3274 (($ $ |#3|) 44)) (-3277 (($ $) NIL)) (-1568 (($ $ |#3|) NIL)) (-4054 (((-857) $) 32) (((-639 |#4|) $) 41)) (-3730 (((-766) $) NIL (|has| |#3| (-367)))) (-2652 (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4252 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) NIL)) (-1612 (((-639 $) |#4| $) 54) (((-639 $) |#4| (-639 $)) NIL) (((-639 $) (-639 |#4|) $) NIL) (((-639 $) (-639 |#4|) (-639 $)) NIL)) (-1744 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-4089 (((-639 |#3|) $) NIL)) (-4211 (((-112) |#4| $) NIL)) (-3694 (((-112) |#3| $) 61)) (-1731 (((-112) $ $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-1138 |#1| |#2| |#3| |#4|) (-13 (-1101 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1430 ((-639 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2304 ((-639 $) (-639 |#4|) (-112) (-112))) (-15 -2304 ((-639 $) (-639 |#4|) (-112) (-112) (-112) (-112))) (-15 -1930 ((-639 $) (-639 |#4|) (-112) (-112) (-112))) (-15 -3383 ((-2 (|:| |val| (-639 |#4|)) (|:| |towers| (-639 $))) (-639 |#4|) (-112) (-112))))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|)) (T -1138))
-((-1430 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1138 *5 *6 *7 *3))) (-5 *1 (-1138 *5 *6 *7 *3)) (-4 *3 (-1058 *5 *6 *7)))) (-2304 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1138 *5 *6 *7 *8))) (-5 *1 (-1138 *5 *6 *7 *8)))) (-2304 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1138 *5 *6 *7 *8))) (-5 *1 (-1138 *5 *6 *7 *8)))) (-1930 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1138 *5 *6 *7 *8))) (-5 *1 (-1138 *5 *6 *7 *8)))) (-3383 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-639 *8)) (|:| |towers| (-639 (-1138 *5 *6 *7 *8))))) (-5 *1 (-1138 *5 *6 *7 *8)) (-5 *3 (-639 *8)))))
-(-13 (-1101 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1430 ((-639 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -2304 ((-639 $) (-639 |#4|) (-112) (-112))) (-15 -2304 ((-639 $) (-639 |#4|) (-112) (-112) (-112) (-112))) (-15 -1930 ((-639 $) (-639 |#4|) (-112) (-112) (-112))) (-15 -3383 ((-2 (|:| |val| (-639 |#4|)) (|:| |towers| (-639 $))) (-639 |#4|) (-112) (-112)))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2775 ((|#1| $) 34)) (-2440 (($ (-639 |#1|)) 39)) (-4336 (((-112) $ (-766)) NIL)) (-1800 (($) NIL T CONST)) (-2737 ((|#1| |#1| $) 36)) (-3064 ((|#1| $) 32)) (-1720 (((-639 |#1|) $) 18 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1490 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 22)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3262 ((|#1| $) 35)) (-4300 (($ |#1| $) 37)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1904 ((|#1| $) 33)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 31)) (-4307 (($) 38)) (-2193 (((-766) $) 29)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) 27)) (-4054 (((-857) $) 14 (|has| |#1| (-609 (-857))))) (-1932 (($ (-639 |#1|)) NIL)) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 17 (|has| |#1| (-1092)))) (-3492 (((-766) $) 30 (|has| $ (-6 -4402)))))
-(((-1139 |#1|) (-13 (-1113 |#1|) (-10 -8 (-15 -2440 ($ (-639 |#1|))))) (-1207)) (T -1139))
-((-2440 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-1139 *3)))))
-(-13 (-1113 |#1|) (-10 -8 (-15 -2440 ($ (-639 |#1|)))))
-((-4200 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1223 (-562)) |#2|) 43) ((|#2| $ (-562) |#2|) 40)) (-3266 (((-112) $) 11)) (-1490 (($ (-1 |#2| |#2|) $) 38)) (-1421 ((|#2| $) NIL) (($ $ (-766)) 16)) (-2716 (($ $ |#2|) 39)) (-2017 (((-112) $) 10)) (-2343 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1223 (-562))) 30) ((|#2| $ (-562)) 22) ((|#2| $ (-562) |#2|) NIL)) (-4142 (($ $ $) 46) (($ $ |#2|) NIL)) (-2767 (($ $ $) 32) (($ |#2| $) NIL) (($ (-639 $)) 35) (($ $ |#2|) NIL)))
-(((-1140 |#1| |#2|) (-10 -8 (-15 -3266 ((-112) |#1|)) (-15 -2017 ((-112) |#1|)) (-15 -4200 (|#2| |#1| (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562))) (-15 -2716 (|#1| |#1| |#2|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -4200 (|#2| |#1| (-1223 (-562)) |#2|)) (-15 -4200 (|#2| |#1| "last" |#2|)) (-15 -4200 (|#1| |#1| "rest" |#1|)) (-15 -4200 (|#2| |#1| "first" |#2|)) (-15 -4142 (|#1| |#1| |#2|)) (-15 -4142 (|#1| |#1| |#1|)) (-15 -2343 (|#2| |#1| "last")) (-15 -2343 (|#1| |#1| "rest")) (-15 -1421 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "first")) (-15 -1421 (|#2| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#1|)) (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -2343 (|#2| |#1| "value")) (-15 -1490 (|#1| (-1 |#2| |#2|) |#1|))) (-1141 |#2|) (-1207)) (T -1140))
-NIL
-(-10 -8 (-15 -3266 ((-112) |#1|)) (-15 -2017 ((-112) |#1|)) (-15 -4200 (|#2| |#1| (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562))) (-15 -2716 (|#1| |#1| |#2|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -4200 (|#2| |#1| (-1223 (-562)) |#2|)) (-15 -4200 (|#2| |#1| "last" |#2|)) (-15 -4200 (|#1| |#1| "rest" |#1|)) (-15 -4200 (|#2| |#1| "first" |#2|)) (-15 -4142 (|#1| |#1| |#2|)) (-15 -4142 (|#1| |#1| |#1|)) (-15 -2343 (|#2| |#1| "last")) (-15 -2343 (|#1| |#1| "rest")) (-15 -1421 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "first")) (-15 -1421 (|#2| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#1|)) (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -2343 (|#2| |#1| "value")) (-15 -1490 (|#1| (-1 |#2| |#2|) |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2534 ((|#1| $) 48)) (-2359 ((|#1| $) 65)) (-3121 (($ $) 67)) (-3052 (((-1261) $ (-562) (-562)) 97 (|has| $ (-6 -4403)))) (-2254 (($ $ (-562)) 52 (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) 8)) (-1512 ((|#1| $ |#1|) 39 (|has| $ (-6 -4403)))) (-3012 (($ $ $) 56 (|has| $ (-6 -4403)))) (-3950 ((|#1| $ |#1|) 54 (|has| $ (-6 -4403)))) (-2687 ((|#1| $ |#1|) 58 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4403))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4403))) (($ $ "rest" $) 55 (|has| $ (-6 -4403))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) 117 (|has| $ (-6 -4403))) ((|#1| $ (-562) |#1|) 86 (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) 41 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 102 (|has| $ (-6 -4402)))) (-2350 ((|#1| $) 66)) (-1800 (($) 7 T CONST)) (-1434 (($ $) 73) (($ $ (-766)) 71)) (-1459 (($ $) 99 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4402))) (($ |#1| $) 100 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1505 ((|#1| $ (-562) |#1|) 85 (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) 87)) (-3266 (((-112) $) 83)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) 50)) (-4379 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-1458 (($ (-766) |#1|) 108)) (-3292 (((-112) $ (-766)) 9)) (-4197 (((-562) $) 95 (|has| (-562) (-845)))) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 94 (|has| (-562) (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-3289 (((-112) $ (-766)) 10)) (-4007 (((-639 |#1|) $) 45)) (-3449 (((-112) $) 49)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1504 ((|#1| $) 70) (($ $ (-766)) 68)) (-3297 (($ $ $ (-562)) 116) (($ |#1| $ (-562)) 115)) (-2093 (((-639 (-562)) $) 92)) (-1570 (((-112) (-562) $) 91)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 76) (($ $ (-766)) 74)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-2716 (($ $ |#1|) 96 (|has| $ (-6 -4403)))) (-2017 (((-112) $) 84)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) 90)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1223 (-562))) 112) ((|#1| $ (-562)) 89) ((|#1| $ (-562) |#1|) 88)) (-2568 (((-562) $ $) 44)) (-2880 (($ $ (-1223 (-562))) 114) (($ $ (-562)) 113)) (-2424 (((-112) $) 46)) (-2613 (($ $) 62)) (-4327 (($ $) 59 (|has| $ (-6 -4403)))) (-2296 (((-766) $) 63)) (-3913 (($ $) 64)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 98 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 107)) (-4142 (($ $ $) 61 (|has| $ (-6 -4403))) (($ $ |#1|) 60 (|has| $ (-6 -4403)))) (-2767 (($ $ $) 78) (($ |#1| $) 77) (($ (-639 $)) 110) (($ $ |#1|) 109)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) 51)) (-4055 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4211 (((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-639 |#4|) (-639 |#5|) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) (-766)) 93)) (-2846 (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|) 55) (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766)) 54)) (-4192 (((-1261) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-766)) 85)) (-1930 (((-766) (-639 |#4|) (-639 |#5|)) 27)) (-3341 (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|) 57) (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766)) 56) (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766) (-112)) 58)) (-3758 (((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112) (-112) (-112) (-112)) 76) (((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112)) 77)) (-4208 (((-1150) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) 80)) (-2329 (((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|) 53)) (-3608 (((-766) (-639 |#4|) (-639 |#5|)) 19)))
+(((-1137 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3608 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -1930 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -2329 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|)) (-15 -2846 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766))) (-15 -2846 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|)) (-15 -3341 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766) (-112))) (-15 -3341 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766))) (-15 -3341 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|)) (-15 -3758 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -3758 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4211 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-639 |#4|) (-639 |#5|) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) (-766))) (-15 -4208 ((-1150) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)))) (-15 -4192 ((-1261) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-766)))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|) (-1101 |#1| |#2| |#3| |#4|)) (T -1137))
+((-4192 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1501 *9)))) (-5 *4 (-766)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-1261)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1501 *8))) (-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1101 *4 *5 *6 *7)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1150)) (-5 *1 (-1137 *4 *5 *6 *7 *8)))) (-4211 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-639 *11)) (|:| |todo| (-639 (-2 (|:| |val| *3) (|:| -1501 *11)))))) (-5 *6 (-766)) (-5 *2 (-639 (-2 (|:| |val| (-639 *10)) (|:| -1501 *11)))) (-5 *3 (-639 *10)) (-5 *4 (-639 *11)) (-4 *10 (-1058 *7 *8 *9)) (-4 *11 (-1101 *7 *8 *9 *10)) (-4 *7 (-451)) (-4 *8 (-788)) (-4 *9 (-845)) (-5 *1 (-1137 *7 *8 *9 *10 *11)))) (-3758 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))) (-3758 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))) (-3341 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))))) (-5 *1 (-1137 *5 *6 *7 *3 *4)) (-4 *4 (-1101 *5 *6 *7 *3)))) (-3341 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))))) (-5 *1 (-1137 *6 *7 *8 *3 *4)) (-4 *4 (-1101 *6 *7 *8 *3)))) (-3341 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-766)) (-5 *6 (-112)) (-4 *7 (-451)) (-4 *8 (-788)) (-4 *9 (-845)) (-4 *3 (-1058 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))))) (-5 *1 (-1137 *7 *8 *9 *3 *4)) (-4 *4 (-1101 *7 *8 *9 *3)))) (-2846 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))))) (-5 *1 (-1137 *5 *6 *7 *3 *4)) (-4 *4 (-1101 *5 *6 *7 *3)))) (-2846 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *3 (-1058 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))))) (-5 *1 (-1137 *6 *7 *8 *3 *4)) (-4 *4 (-1101 *6 *7 *8 *3)))) (-2329 (*1 *2 *3 *4) (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-639 *4)) (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4)))))) (-5 *1 (-1137 *5 *6 *7 *3 *4)) (-4 *4 (-1101 *5 *6 *7 *3)))) (-1930 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))) (-3608 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -3608 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -1930 ((-766) (-639 |#4|) (-639 |#5|))) (-15 -2329 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|)) (-15 -2846 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766))) (-15 -2846 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|)) (-15 -3341 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766) (-112))) (-15 -3341 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5| (-766))) (-15 -3341 ((-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) |#4| |#5|)) (-15 -3758 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112))) (-15 -3758 ((-639 |#5|) (-639 |#4|) (-639 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4211 ((-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-639 |#4|) (-639 |#5|) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-2 (|:| |done| (-639 |#5|)) (|:| |todo| (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))))) (-766))) (-15 -4208 ((-1150) (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|)))) (-15 -4192 ((-1261) (-639 (-2 (|:| |val| (-639 |#4|)) (|:| -1501 |#5|))) (-766))))
+((-4041 (((-112) $ $) NIL)) (-1330 (((-639 (-2 (|:| -1449 $) (|:| -3315 (-639 |#4|)))) (-639 |#4|)) NIL)) (-3672 (((-639 $) (-639 |#4|)) 110) (((-639 $) (-639 |#4|) (-112)) 111) (((-639 $) (-639 |#4|) (-112) (-112)) 109) (((-639 $) (-639 |#4|) (-112) (-112) (-112) (-112)) 112)) (-1401 (((-639 |#3|) $) NIL)) (-2799 (((-112) $) NIL)) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-4177 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3623 ((|#4| |#4| $) NIL)) (-1977 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 $))) |#4| $) 84)) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |#3|) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-3556 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403))) (((-3 |#4| "failed") $ |#3|) 62)) (-3329 (($) NIL T CONST)) (-2169 (((-112) $) 27 (|has| |#1| (-554)))) (-2183 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2864 (((-112) $ $) NIL (|has| |#1| (-554)))) (-4219 (((-112) $) NIL (|has| |#1| (-554)))) (-4227 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2037 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4230 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) NIL)) (-3960 (($ (-639 |#4|)) NIL)) (-1434 (((-3 $ "failed") $) 40)) (-3255 ((|#4| |#4| $) 65)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-1475 (($ |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-1441 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 78 (|has| |#1| (-554)))) (-3300 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-2227 ((|#4| |#4| $) NIL)) (-1954 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4403))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4403))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1471 (((-2 (|:| -1449 (-639 |#4|)) (|:| -3315 (-639 |#4|))) $) NIL)) (-3189 (((-112) |#4| $) NIL)) (-2633 (((-112) |#4| $) NIL)) (-2813 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3764 (((-2 (|:| |val| (-639 |#4|)) (|:| |towers| (-639 $))) (-639 |#4|) (-112) (-112)) 124)) (-1720 (((-639 |#4|) $) 17 (|has| $ (-6 -4403)))) (-1493 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3761 ((|#3| $) 34)) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#4|) $) 18 (|has| $ (-6 -4403)))) (-1572 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-1491 (($ (-1 |#4| |#4|) $) 24 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#4| |#4|) $) 22)) (-3133 (((-639 |#3|) $) NIL)) (-3112 (((-112) |#3| $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-4093 (((-3 |#4| (-639 $)) |#4| |#4| $) NIL)) (-2672 (((-639 (-2 (|:| |val| |#4|) (|:| -1501 $))) |#4| |#4| $) 103)) (-1504 (((-3 |#4| "failed") $) 38)) (-2334 (((-639 $) |#4| $) 88)) (-4302 (((-3 (-112) (-639 $)) |#4| $) NIL)) (-3792 (((-639 (-2 (|:| |val| (-112)) (|:| -1501 $))) |#4| $) 98) (((-112) |#4| $) 53)) (-4169 (((-639 $) |#4| $) 107) (((-639 $) (-639 |#4|) $) NIL) (((-639 $) (-639 |#4|) (-639 $)) 108) (((-639 $) |#4| (-639 $)) NIL)) (-4110 (((-639 $) (-639 |#4|) (-112) (-112) (-112)) 119)) (-1997 (($ |#4| $) 75) (($ (-639 |#4|) $) 76) (((-639 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 74)) (-2063 (((-639 |#4|) $) NIL)) (-1645 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2651 ((|#4| |#4| $) NIL)) (-1789 (((-112) $ $) NIL)) (-4123 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-2830 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1630 ((|#4| |#4| $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-3 |#4| "failed") $) 36)) (-1963 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-4333 (((-3 $ "failed") $ |#4|) 48)) (-4316 (($ $ |#4|) NIL) (((-639 $) |#4| $) 90) (((-639 $) |#4| (-639 $)) NIL) (((-639 $) (-639 |#4|) $) NIL) (((-639 $) (-639 |#4|) (-639 $)) 86)) (-3008 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 16)) (-1663 (($) 14)) (-2250 (((-766) $) NIL)) (-1723 (((-766) |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) (((-766) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) 13)) (-4208 (((-535) $) NIL (|has| |#4| (-610 (-535))))) (-4064 (($ (-639 |#4|)) 21)) (-2316 (($ $ |#3|) 43)) (-2180 (($ $ |#3|) 44)) (-2209 (($ $) NIL)) (-1962 (($ $ |#3|) NIL)) (-4053 (((-857) $) 32) (((-639 |#4|) $) 41)) (-4157 (((-766) $) NIL (|has| |#3| (-367)))) (-4168 (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2350 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) NIL)) (-4125 (((-639 $) |#4| $) 54) (((-639 $) |#4| (-639 $)) NIL) (((-639 $) (-639 |#4|) $) NIL) (((-639 $) (-639 |#4|) (-639 $)) NIL)) (-2879 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-3278 (((-639 |#3|) $) NIL)) (-1972 (((-112) |#4| $) NIL)) (-3782 (((-112) |#3| $) 61)) (-1733 (((-112) $ $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-1138 |#1| |#2| |#3| |#4|) (-13 (-1101 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1997 ((-639 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3672 ((-639 $) (-639 |#4|) (-112) (-112))) (-15 -3672 ((-639 $) (-639 |#4|) (-112) (-112) (-112) (-112))) (-15 -4110 ((-639 $) (-639 |#4|) (-112) (-112) (-112))) (-15 -3764 ((-2 (|:| |val| (-639 |#4|)) (|:| |towers| (-639 $))) (-639 |#4|) (-112) (-112))))) (-451) (-788) (-845) (-1058 |#1| |#2| |#3|)) (T -1138))
+((-1997 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1138 *5 *6 *7 *3))) (-5 *1 (-1138 *5 *6 *7 *3)) (-4 *3 (-1058 *5 *6 *7)))) (-3672 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1138 *5 *6 *7 *8))) (-5 *1 (-1138 *5 *6 *7 *8)))) (-3672 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1138 *5 *6 *7 *8))) (-5 *1 (-1138 *5 *6 *7 *8)))) (-4110 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 (-1138 *5 *6 *7 *8))) (-5 *1 (-1138 *5 *6 *7 *8)))) (-3764 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-639 *8)) (|:| |towers| (-639 (-1138 *5 *6 *7 *8))))) (-5 *1 (-1138 *5 *6 *7 *8)) (-5 *3 (-639 *8)))))
+(-13 (-1101 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1997 ((-639 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3672 ((-639 $) (-639 |#4|) (-112) (-112))) (-15 -3672 ((-639 $) (-639 |#4|) (-112) (-112) (-112) (-112))) (-15 -4110 ((-639 $) (-639 |#4|) (-112) (-112) (-112))) (-15 -3764 ((-2 (|:| |val| (-639 |#4|)) (|:| |towers| (-639 $))) (-639 |#4|) (-112) (-112)))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2774 ((|#1| $) 34)) (-2439 (($ (-639 |#1|)) 39)) (-3735 (((-112) $ (-766)) NIL)) (-3329 (($) NIL T CONST)) (-2571 ((|#1| |#1| $) 36)) (-3767 ((|#1| $) 32)) (-1720 (((-639 |#1|) $) 18 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1491 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 22)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-2078 ((|#1| $) 35)) (-1581 (($ |#1| $) 37)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2038 ((|#1| $) 33)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 31)) (-1663 (($) 38)) (-2191 (((-766) $) 29)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) 27)) (-4053 (((-857) $) 14 (|has| |#1| (-609 (-857))))) (-4131 (($ (-639 |#1|)) NIL)) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 17 (|has| |#1| (-1092)))) (-3492 (((-766) $) 30 (|has| $ (-6 -4403)))))
+(((-1139 |#1|) (-13 (-1113 |#1|) (-10 -8 (-15 -2439 ($ (-639 |#1|))))) (-1207)) (T -1139))
+((-2439 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-1139 *3)))))
+(-13 (-1113 |#1|) (-10 -8 (-15 -2439 ($ (-639 |#1|)))))
+((-4200 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1223 (-562)) |#2|) 43) ((|#2| $ (-562) |#2|) 40)) (-2101 (((-112) $) 11)) (-1491 (($ (-1 |#2| |#2|) $) 38)) (-1421 ((|#2| $) NIL) (($ $ (-766)) 16)) (-3510 (($ $ |#2|) 39)) (-3745 (((-112) $) 10)) (-2343 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1223 (-562))) 30) ((|#2| $ (-562)) 22) ((|#2| $ (-562) |#2|) NIL)) (-2587 (($ $ $) 46) (($ $ |#2|) NIL)) (-2767 (($ $ $) 32) (($ |#2| $) NIL) (($ (-639 $)) 35) (($ $ |#2|) NIL)))
+(((-1140 |#1| |#2|) (-10 -8 (-15 -2101 ((-112) |#1|)) (-15 -3745 ((-112) |#1|)) (-15 -4200 (|#2| |#1| (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562))) (-15 -3510 (|#1| |#1| |#2|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -4200 (|#2| |#1| (-1223 (-562)) |#2|)) (-15 -4200 (|#2| |#1| "last" |#2|)) (-15 -4200 (|#1| |#1| "rest" |#1|)) (-15 -4200 (|#2| |#1| "first" |#2|)) (-15 -2587 (|#1| |#1| |#2|)) (-15 -2587 (|#1| |#1| |#1|)) (-15 -2343 (|#2| |#1| "last")) (-15 -2343 (|#1| |#1| "rest")) (-15 -1421 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "first")) (-15 -1421 (|#2| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#1|)) (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -2343 (|#2| |#1| "value")) (-15 -1491 (|#1| (-1 |#2| |#2|) |#1|))) (-1141 |#2|) (-1207)) (T -1140))
+NIL
+(-10 -8 (-15 -2101 ((-112) |#1|)) (-15 -3745 ((-112) |#1|)) (-15 -4200 (|#2| |#1| (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562) |#2|)) (-15 -2343 (|#2| |#1| (-562))) (-15 -3510 (|#1| |#1| |#2|)) (-15 -2767 (|#1| |#1| |#2|)) (-15 -2767 (|#1| (-639 |#1|))) (-15 -2343 (|#1| |#1| (-1223 (-562)))) (-15 -4200 (|#2| |#1| (-1223 (-562)) |#2|)) (-15 -4200 (|#2| |#1| "last" |#2|)) (-15 -4200 (|#1| |#1| "rest" |#1|)) (-15 -4200 (|#2| |#1| "first" |#2|)) (-15 -2587 (|#1| |#1| |#2|)) (-15 -2587 (|#1| |#1| |#1|)) (-15 -2343 (|#2| |#1| "last")) (-15 -2343 (|#1| |#1| "rest")) (-15 -1421 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "first")) (-15 -1421 (|#2| |#1|)) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#1|)) (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -2343 (|#2| |#1| "value")) (-15 -1491 (|#1| (-1 |#2| |#2|) |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2533 ((|#1| $) 48)) (-2358 ((|#1| $) 65)) (-3120 (($ $) 67)) (-3655 (((-1261) $ (-562) (-562)) 97 (|has| $ (-6 -4404)))) (-1335 (($ $ (-562)) 52 (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) 8)) (-2677 ((|#1| $ |#1|) 39 (|has| $ (-6 -4404)))) (-3400 (($ $ $) 56 (|has| $ (-6 -4404)))) (-1393 ((|#1| $ |#1|) 54 (|has| $ (-6 -4404)))) (-3239 ((|#1| $ |#1|) 58 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4404))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4404))) (($ $ "rest" $) 55 (|has| $ (-6 -4404))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) 117 (|has| $ (-6 -4404))) ((|#1| $ (-562) |#1|) 86 (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) 41 (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) 102 (|has| $ (-6 -4403)))) (-2349 ((|#1| $) 66)) (-3329 (($) 7 T CONST)) (-1434 (($ $) 73) (($ $ (-766)) 71)) (-1459 (($ $) 99 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4403))) (($ |#1| $) 100 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $) 105 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 104 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 101 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1507 ((|#1| $ (-562) |#1|) 85 (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) 87)) (-2101 (((-112) $) 83)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) 50)) (-4188 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-1458 (($ (-766) |#1|) 108)) (-4172 (((-112) $ (-766)) 9)) (-1849 (((-562) $) 95 (|has| (-562) (-845)))) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 94 (|has| (-562) (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 111)) (-4147 (((-112) $ (-766)) 10)) (-4008 (((-639 |#1|) $) 45)) (-3179 (((-112) $) 49)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1504 ((|#1| $) 70) (($ $ (-766)) 68)) (-3295 (($ $ $ (-562)) 116) (($ |#1| $ (-562)) 115)) (-3336 (((-639 (-562)) $) 92)) (-1987 (((-112) (-562) $) 91)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 76) (($ $ (-766)) 74)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 106)) (-3510 (($ $ |#1|) 96 (|has| $ (-6 -4404)))) (-3745 (((-112) $) 84)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#1| $) 93 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) 90)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69) (($ $ (-1223 (-562))) 112) ((|#1| $ (-562)) 89) ((|#1| $ (-562) |#1|) 88)) (-1423 (((-562) $ $) 44)) (-2880 (($ $ (-1223 (-562))) 114) (($ $ (-562)) 113)) (-2473 (((-112) $) 46)) (-3734 (($ $) 62)) (-3659 (($ $) 59 (|has| $ (-6 -4404)))) (-3595 (((-766) $) 63)) (-2333 (($ $) 64)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-4208 (((-535) $) 98 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 107)) (-2587 (($ $ $) 61 (|has| $ (-6 -4404))) (($ $ |#1|) 60 (|has| $ (-6 -4404)))) (-2767 (($ $ $) 78) (($ |#1| $) 77) (($ (-639 $)) 110) (($ $ |#1|) 109)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) 51)) (-2985 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-1141 |#1|) (-139) (-1207)) (T -1141))
-((-2017 (*1 *2 *1) (-12 (-4 *1 (-1141 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))) (-3266 (*1 *2 *1) (-12 (-4 *1 (-1141 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))))
-(-13 (-1244 |t#1|) (-645 |t#1|) (-10 -8 (-15 -2017 ((-112) $)) (-15 -3266 ((-112) $))))
+((-3745 (*1 *2 *1) (-12 (-4 *1 (-1141 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))) (-2101 (*1 *2 *1) (-12 (-4 *1 (-1141 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))))
+(-13 (-1244 |t#1|) (-645 |t#1|) (-10 -8 (-15 -3745 ((-112) $)) (-15 -2101 ((-112) $))))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-285 #0=(-562) |#1|) . T) ((-287 #0# |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-600 #0# |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-645 |#1|) . T) ((-1005 |#1|) . T) ((-1092) |has| |#1| (-1092)) ((-1207) . T) ((-1244 |#1|) . T))
-((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-3052 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#2| $ |#1| |#2|) NIL)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1472 (((-3 |#2| "failed") |#1| $) NIL)) (-1800 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-4000 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-3 |#2| "failed") |#1| $) NIL)) (-1475 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#2| $ |#1|) NIL)) (-1720 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 ((|#1| $) NIL (|has| |#1| (-845)))) (-1912 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-3874 ((|#1| $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4403))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1520 (((-639 |#1|) $) NIL)) (-4265 (((-112) |#1| $) NIL)) (-3262 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-4300 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-2093 (((-639 |#1|) $) NIL)) (-1570 (((-112) |#1| $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845)))) (-3251 (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL)) (-2716 (($ $ |#2|) NIL (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-2411 (((-639 |#2|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3564 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-4054 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-1932 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-3655 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#2| $ |#1| |#2|) NIL)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1472 (((-3 |#2| "failed") |#1| $) NIL)) (-3329 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-3729 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-3 |#2| "failed") |#1| $) NIL)) (-1475 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#2| $ |#1|) NIL)) (-1720 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 ((|#1| $) NIL (|has| |#1| (-845)))) (-2123 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-1929 ((|#1| $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4404))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1521 (((-639 |#1|) $) NIL)) (-4278 (((-112) |#1| $) NIL)) (-2078 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-1581 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3336 (((-639 |#1|) $) NIL)) (-1987 (((-112) |#1| $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845)))) (-1963 (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL)) (-3510 (($ $ |#2|) NIL (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-2366 (((-639 |#2|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-1932 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-4053 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-4131 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-1142 |#1| |#2| |#3|) (-1183 |#1| |#2|) (-1092) (-1092) |#2|) (T -1142))
NIL
(-1183 |#1| |#2|)
-((-4041 (((-112) $ $) 7)) (-3699 (((-3 $ "failed") $) 13)) (-2913 (((-1150) $) 9)) (-3729 (($) 14 T CONST)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11)) (-1731 (((-112) $ $) 6)))
+((-4041 (((-112) $ $) 7)) (-3828 (((-3 $ "failed") $) 13)) (-3696 (((-1150) $) 9)) (-3730 (($) 14 T CONST)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11)) (-1733 (((-112) $ $) 6)))
(((-1143) (-139)) (T -1143))
-((-3729 (*1 *1) (-4 *1 (-1143))) (-3699 (*1 *1 *1) (|partial| -4 *1 (-1143))))
-(-13 (-1092) (-10 -8 (-15 -3729 ($) -1497) (-15 -3699 ((-3 $ "failed") $))))
+((-3730 (*1 *1) (-4 *1 (-1143))) (-3828 (*1 *1 *1) (|partial| -4 *1 (-1143))))
+(-13 (-1092) (-10 -8 (-15 -3730 ($) -1497) (-15 -3828 ((-3 $ "failed") $))))
(((-102) . T) ((-609 (-857)) . T) ((-1092) . T))
-((-2729 (((-1148 |#1|) (-1148 |#1|)) 17)) (-2398 (((-1148 |#1|) (-1148 |#1|)) 13)) (-4329 (((-1148 |#1|) (-1148 |#1|) (-562) (-562)) 20)) (-2200 (((-1148 |#1|) (-1148 |#1|)) 15)))
-(((-1144 |#1|) (-10 -7 (-15 -2398 ((-1148 |#1|) (-1148 |#1|))) (-15 -2200 ((-1148 |#1|) (-1148 |#1|))) (-15 -2729 ((-1148 |#1|) (-1148 |#1|))) (-15 -4329 ((-1148 |#1|) (-1148 |#1|) (-562) (-562)))) (-13 (-554) (-146))) (T -1144))
-((-4329 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-13 (-554) (-146))) (-5 *1 (-1144 *4)))) (-2729 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-13 (-554) (-146))) (-5 *1 (-1144 *3)))) (-2200 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-13 (-554) (-146))) (-5 *1 (-1144 *3)))) (-2398 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-13 (-554) (-146))) (-5 *1 (-1144 *3)))))
-(-10 -7 (-15 -2398 ((-1148 |#1|) (-1148 |#1|))) (-15 -2200 ((-1148 |#1|) (-1148 |#1|))) (-15 -2729 ((-1148 |#1|) (-1148 |#1|))) (-15 -4329 ((-1148 |#1|) (-1148 |#1|) (-562) (-562))))
+((-2490 (((-1148 |#1|) (-1148 |#1|)) 17)) (-3377 (((-1148 |#1|) (-1148 |#1|)) 13)) (-3669 (((-1148 |#1|) (-1148 |#1|) (-562) (-562)) 20)) (-2102 (((-1148 |#1|) (-1148 |#1|)) 15)))
+(((-1144 |#1|) (-10 -7 (-15 -3377 ((-1148 |#1|) (-1148 |#1|))) (-15 -2102 ((-1148 |#1|) (-1148 |#1|))) (-15 -2490 ((-1148 |#1|) (-1148 |#1|))) (-15 -3669 ((-1148 |#1|) (-1148 |#1|) (-562) (-562)))) (-13 (-554) (-146))) (T -1144))
+((-3669 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-13 (-554) (-146))) (-5 *1 (-1144 *4)))) (-2490 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-13 (-554) (-146))) (-5 *1 (-1144 *3)))) (-2102 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-13 (-554) (-146))) (-5 *1 (-1144 *3)))) (-3377 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-13 (-554) (-146))) (-5 *1 (-1144 *3)))))
+(-10 -7 (-15 -3377 ((-1148 |#1|) (-1148 |#1|))) (-15 -2102 ((-1148 |#1|) (-1148 |#1|))) (-15 -2490 ((-1148 |#1|) (-1148 |#1|))) (-15 -3669 ((-1148 |#1|) (-1148 |#1|) (-562) (-562))))
((-2767 (((-1148 |#1|) (-1148 (-1148 |#1|))) 15)))
(((-1145 |#1|) (-10 -7 (-15 -2767 ((-1148 |#1|) (-1148 (-1148 |#1|))))) (-1207)) (T -1145))
((-2767 (*1 *2 *3) (-12 (-5 *3 (-1148 (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1145 *4)) (-4 *4 (-1207)))))
(-10 -7 (-15 -2767 ((-1148 |#1|) (-1148 (-1148 |#1|)))))
-((-2578 (((-1148 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1148 |#1|)) 25)) (-1955 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1148 |#1|)) 26)) (-4152 (((-1148 |#2|) (-1 |#2| |#1|) (-1148 |#1|)) 16)))
-(((-1146 |#1| |#2|) (-10 -7 (-15 -4152 ((-1148 |#2|) (-1 |#2| |#1|) (-1148 |#1|))) (-15 -2578 ((-1148 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1148 |#1|))) (-15 -1955 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1148 |#1|)))) (-1207) (-1207)) (T -1146))
-((-1955 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1148 *5)) (-4 *5 (-1207)) (-4 *2 (-1207)) (-5 *1 (-1146 *5 *2)))) (-2578 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1148 *6)) (-4 *6 (-1207)) (-4 *3 (-1207)) (-5 *2 (-1148 *3)) (-5 *1 (-1146 *6 *3)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1148 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-1148 *6)) (-5 *1 (-1146 *5 *6)))))
-(-10 -7 (-15 -4152 ((-1148 |#2|) (-1 |#2| |#1|) (-1148 |#1|))) (-15 -2578 ((-1148 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1148 |#1|))) (-15 -1955 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1148 |#1|))))
+((-1555 (((-1148 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1148 |#1|)) 25)) (-1954 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1148 |#1|)) 26)) (-4152 (((-1148 |#2|) (-1 |#2| |#1|) (-1148 |#1|)) 16)))
+(((-1146 |#1| |#2|) (-10 -7 (-15 -4152 ((-1148 |#2|) (-1 |#2| |#1|) (-1148 |#1|))) (-15 -1555 ((-1148 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1148 |#1|))) (-15 -1954 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1148 |#1|)))) (-1207) (-1207)) (T -1146))
+((-1954 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1148 *5)) (-4 *5 (-1207)) (-4 *2 (-1207)) (-5 *1 (-1146 *5 *2)))) (-1555 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1148 *6)) (-4 *6 (-1207)) (-4 *3 (-1207)) (-5 *2 (-1148 *3)) (-5 *1 (-1146 *6 *3)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1148 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-1148 *6)) (-5 *1 (-1146 *5 *6)))))
+(-10 -7 (-15 -4152 ((-1148 |#2|) (-1 |#2| |#1|) (-1148 |#1|))) (-15 -1555 ((-1148 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1148 |#1|))) (-15 -1954 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1148 |#1|))))
((-4152 (((-1148 |#3|) (-1 |#3| |#1| |#2|) (-1148 |#1|) (-1148 |#2|)) 21)))
(((-1147 |#1| |#2| |#3|) (-10 -7 (-15 -4152 ((-1148 |#3|) (-1 |#3| |#1| |#2|) (-1148 |#1|) (-1148 |#2|)))) (-1207) (-1207) (-1207)) (T -1147))
((-4152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1148 *6)) (-5 *5 (-1148 *7)) (-4 *6 (-1207)) (-4 *7 (-1207)) (-4 *8 (-1207)) (-5 *2 (-1148 *8)) (-5 *1 (-1147 *6 *7 *8)))))
(-10 -7 (-15 -4152 ((-1148 |#3|) (-1 |#3| |#1| |#2|) (-1148 |#1|) (-1148 |#2|))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2534 ((|#1| $) NIL)) (-2359 ((|#1| $) NIL)) (-3121 (($ $) 51)) (-3052 (((-1261) $ (-562) (-562)) 76 (|has| $ (-6 -4403)))) (-2254 (($ $ (-562)) 110 (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) NIL)) (-2100 (((-857) $) 40 (|has| |#1| (-1092)))) (-4003 (((-112)) 39 (|has| |#1| (-1092)))) (-1512 ((|#1| $ |#1|) NIL (|has| $ (-6 -4403)))) (-3012 (($ $ $) 98 (|has| $ (-6 -4403))) (($ $ (-562) $) 122)) (-3950 ((|#1| $ |#1|) 107 (|has| $ (-6 -4403)))) (-2687 ((|#1| $ |#1|) 102 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ "first" |#1|) 104 (|has| $ (-6 -4403))) (($ $ "rest" $) 106 (|has| $ (-6 -4403))) ((|#1| $ "last" |#1|) 109 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) 89 (|has| $ (-6 -4403))) ((|#1| $ (-562) |#1|) 55 (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 58)) (-2350 ((|#1| $) NIL)) (-1800 (($) NIL T CONST)) (-4293 (($ $) 14)) (-1434 (($ $) 28) (($ $ (-766)) 88)) (-2555 (((-112) (-639 |#1|) $) 116 (|has| |#1| (-1092)))) (-2136 (($ (-639 |#1|)) 112)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) 57)) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1505 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) NIL)) (-3266 (((-112) $) NIL)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-3463 (((-1261) (-562) $) 121 (|has| |#1| (-1092)))) (-2505 (((-766) $) 118)) (-2720 (((-639 $) $) NIL)) (-4379 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1458 (($ (-766) |#1|) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 73 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 63) (($ (-1 |#1| |#1| |#1|) $ $) 67)) (-3289 (((-112) $ (-766)) NIL)) (-4007 (((-639 |#1|) $) NIL)) (-3449 (((-112) $) NIL)) (-1892 (($ $) 90)) (-3718 (((-112) $) 13)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1504 ((|#1| $) NIL) (($ $ (-766)) NIL)) (-3297 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) 74)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2167 (($ (-1 |#1|)) 124) (($ (-1 |#1| |#1|) |#1|) 125)) (-3038 ((|#1| $) 10)) (-1421 ((|#1| $) 27) (($ $ (-766)) 49)) (-2011 (((-2 (|:| |cycle?| (-112)) (|:| -2178 (-766)) (|:| |period| (-766))) (-766) $) 24)) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3535 (($ (-1 (-112) |#1|) $) 126)) (-3546 (($ (-1 (-112) |#1|) $) 127)) (-2716 (($ $ |#1|) 68 (|has| $ (-6 -4403)))) (-1353 (($ $ (-562)) 31)) (-2017 (((-112) $) 72)) (-3663 (((-112) $) 12)) (-3431 (((-112) $) 117)) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 20)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) 15)) (-4307 (($) 44)) (-2343 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1223 (-562))) NIL) ((|#1| $ (-562)) 54) ((|#1| $ (-562) |#1|) NIL)) (-2568 (((-562) $ $) 48)) (-2880 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-2322 (($ (-1 $)) 47)) (-2424 (((-112) $) 69)) (-2613 (($ $) 70)) (-4327 (($ $) 99 (|has| $ (-6 -4403)))) (-2296 (((-766) $) NIL)) (-3913 (($ $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) 43)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 53)) (-3949 (($ |#1| $) 97)) (-4142 (($ $ $) 100 (|has| $ (-6 -4403))) (($ $ |#1|) 101 (|has| $ (-6 -4403)))) (-2767 (($ $ $) 78) (($ |#1| $) 45) (($ (-639 $)) 83) (($ $ |#1|) 77)) (-2256 (($ $) 50)) (-4054 (($ (-639 |#1|)) 111) (((-857) $) 41 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) NIL)) (-4055 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 114 (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-1148 |#1|) (-13 (-668 |#1|) (-612 (-639 |#1|)) (-10 -8 (-6 -4403) (-15 -2136 ($ (-639 |#1|))) (IF (|has| |#1| (-1092)) (-15 -2555 ((-112) (-639 |#1|) $)) |%noBranch|) (-15 -2011 ((-2 (|:| |cycle?| (-112)) (|:| -2178 (-766)) (|:| |period| (-766))) (-766) $)) (-15 -2322 ($ (-1 $))) (-15 -3949 ($ |#1| $)) (IF (|has| |#1| (-1092)) (PROGN (-15 -3463 ((-1261) (-562) $)) (-15 -2100 ((-857) $)) (-15 -4003 ((-112)))) |%noBranch|) (-15 -3012 ($ $ (-562) $)) (-15 -2167 ($ (-1 |#1|))) (-15 -2167 ($ (-1 |#1| |#1|) |#1|)) (-15 -3535 ($ (-1 (-112) |#1|) $)) (-15 -3546 ($ (-1 (-112) |#1|) $)))) (-1207)) (T -1148))
-((-2136 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))) (-2555 (*1 *2 *3 *1) (-12 (-5 *3 (-639 *4)) (-4 *4 (-1092)) (-4 *4 (-1207)) (-5 *2 (-112)) (-5 *1 (-1148 *4)))) (-2011 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-112)) (|:| -2178 (-766)) (|:| |period| (-766)))) (-5 *1 (-1148 *4)) (-4 *4 (-1207)) (-5 *3 (-766)))) (-2322 (*1 *1 *2) (-12 (-5 *2 (-1 (-1148 *3))) (-5 *1 (-1148 *3)) (-4 *3 (-1207)))) (-3949 (*1 *1 *2 *1) (-12 (-5 *1 (-1148 *2)) (-4 *2 (-1207)))) (-3463 (*1 *2 *3 *1) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1148 *4)) (-4 *4 (-1092)) (-4 *4 (-1207)))) (-2100 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-1148 *3)) (-4 *3 (-1092)) (-4 *3 (-1207)))) (-4003 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1148 *3)) (-4 *3 (-1092)) (-4 *3 (-1207)))) (-3012 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1148 *3)) (-4 *3 (-1207)))) (-2167 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))) (-2167 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))) (-3535 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))) (-3546 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))))
-(-13 (-668 |#1|) (-612 (-639 |#1|)) (-10 -8 (-6 -4403) (-15 -2136 ($ (-639 |#1|))) (IF (|has| |#1| (-1092)) (-15 -2555 ((-112) (-639 |#1|) $)) |%noBranch|) (-15 -2011 ((-2 (|:| |cycle?| (-112)) (|:| -2178 (-766)) (|:| |period| (-766))) (-766) $)) (-15 -2322 ($ (-1 $))) (-15 -3949 ($ |#1| $)) (IF (|has| |#1| (-1092)) (PROGN (-15 -3463 ((-1261) (-562) $)) (-15 -2100 ((-857) $)) (-15 -4003 ((-112)))) |%noBranch|) (-15 -3012 ($ $ (-562) $)) (-15 -2167 ($ (-1 |#1|))) (-15 -2167 ($ (-1 |#1| |#1|) |#1|)) (-15 -3535 ($ (-1 (-112) |#1|) $)) (-15 -3546 ($ (-1 (-112) |#1|) $))))
-((-4041 (((-112) $ $) 19)) (-2744 (($ $) 120)) (-1576 (($ $) 121)) (-3398 (($ $ (-143)) 108) (($ $ (-140)) 107)) (-3052 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4403)))) (-3824 (((-112) $ $) 118)) (-3801 (((-112) $ $ (-562)) 117)) (-3596 (($ (-562)) 127)) (-2176 (((-639 $) $ (-143)) 110) (((-639 $) $ (-140)) 109)) (-1399 (((-112) (-1 (-112) (-143) (-143)) $) 98) (((-112) $) 92 (|has| (-143) (-845)))) (-3381 (($ (-1 (-112) (-143) (-143)) $) 89 (|has| $ (-6 -4403))) (($ $) 88 (-12 (|has| (-143) (-845)) (|has| $ (-6 -4403))))) (-1395 (($ (-1 (-112) (-143) (-143)) $) 99) (($ $) 93 (|has| (-143) (-845)))) (-4336 (((-112) $ (-766)) 8)) (-4200 (((-143) $ (-562) (-143)) 52 (|has| $ (-6 -4403))) (((-143) $ (-1223 (-562)) (-143)) 58 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-143)) $) 75 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-1968 (($ $ (-143)) 104) (($ $ (-140)) 103)) (-2447 (($ $) 90 (|has| $ (-6 -4403)))) (-2677 (($ $) 100)) (-3944 (($ $ (-1223 (-562)) $) 114)) (-1459 (($ $) 78 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ (-143) $) 77 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) (-143)) $) 74 (|has| $ (-6 -4402)))) (-1955 (((-143) (-1 (-143) (-143) (-143)) $ (-143) (-143)) 76 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4402)))) (((-143) (-1 (-143) (-143) (-143)) $ (-143)) 73 (|has| $ (-6 -4402))) (((-143) (-1 (-143) (-143) (-143)) $) 72 (|has| $ (-6 -4402)))) (-1505 (((-143) $ (-562) (-143)) 53 (|has| $ (-6 -4403)))) (-1420 (((-143) $ (-562)) 51)) (-3847 (((-112) $ $) 119)) (-4264 (((-562) (-1 (-112) (-143)) $) 97) (((-562) (-143) $) 96 (|has| (-143) (-1092))) (((-562) (-143) $ (-562)) 95 (|has| (-143) (-1092))) (((-562) $ $ (-562)) 113) (((-562) (-140) $ (-562)) 112)) (-1720 (((-639 (-143)) $) 30 (|has| $ (-6 -4402)))) (-1458 (($ (-766) (-143)) 69)) (-3292 (((-112) $ (-766)) 9)) (-4197 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 87 (|has| (-143) (-845)))) (-1610 (($ (-1 (-112) (-143) (-143)) $ $) 101) (($ $ $) 94 (|has| (-143) (-845)))) (-1912 (((-639 (-143)) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) (-143) $) 27 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 86 (|has| (-143) (-845)))) (-4263 (((-112) $ $ (-143)) 115)) (-3789 (((-766) $ $ (-143)) 116)) (-1490 (($ (-1 (-143) (-143)) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-143) (-143)) $) 35) (($ (-1 (-143) (-143) (-143)) $ $) 64)) (-1614 (($ $) 122)) (-3141 (($ $) 123)) (-3289 (((-112) $ (-766)) 10)) (-1980 (($ $ (-143)) 106) (($ $ (-140)) 105)) (-2913 (((-1150) $) 22)) (-3297 (($ (-143) $ (-562)) 60) (($ $ $ (-562)) 59)) (-2093 (((-639 (-562)) $) 46)) (-1570 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21)) (-1421 (((-143) $) 42 (|has| (-562) (-845)))) (-3251 (((-3 (-143) "failed") (-1 (-112) (-143)) $) 71)) (-2716 (($ $ (-143)) 41 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) (-143)) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-143)))) 26 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-293 (-143))) 25 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-143) (-143)) 24 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-639 (-143)) (-639 (-143))) 23 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) (-143) $) 45 (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-2411 (((-639 (-143)) $) 48)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 (((-143) $ (-562) (-143)) 50) (((-143) $ (-562)) 49) (($ $ (-1223 (-562))) 63) (($ $ $) 102)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1723 (((-766) (-1 (-112) (-143)) $) 31 (|has| $ (-6 -4402))) (((-766) (-143) $) 28 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4402))))) (-1853 (($ $ $ (-562)) 91 (|has| $ (-6 -4403)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| (-143) (-610 (-535))))) (-4066 (($ (-639 (-143))) 70)) (-2767 (($ $ (-143)) 68) (($ (-143) $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4054 (($ (-143)) 111) (((-857) $) 18)) (-1744 (((-112) (-1 (-112) (-143)) $) 33 (|has| $ (-6 -4402)))) (-2833 (((-1150) $) 131) (((-1150) $ (-112)) 130) (((-1261) (-817) $) 129) (((-1261) (-817) $ (-112)) 128)) (-1798 (((-112) $ $) 84 (|has| (-143) (-845)))) (-1772 (((-112) $ $) 83 (|has| (-143) (-845)))) (-1731 (((-112) $ $) 20)) (-1785 (((-112) $ $) 85 (|has| (-143) (-845)))) (-1759 (((-112) $ $) 82 (|has| (-143) (-845)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2533 ((|#1| $) NIL)) (-2358 ((|#1| $) NIL)) (-3120 (($ $) 51)) (-3655 (((-1261) $ (-562) (-562)) 76 (|has| $ (-6 -4404)))) (-1335 (($ $ (-562)) 110 (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) NIL)) (-3413 (((-857) $) 40 (|has| |#1| (-1092)))) (-3766 (((-112)) 39 (|has| |#1| (-1092)))) (-2677 ((|#1| $ |#1|) NIL (|has| $ (-6 -4404)))) (-3400 (($ $ $) 98 (|has| $ (-6 -4404))) (($ $ (-562) $) 122)) (-1393 ((|#1| $ |#1|) 107 (|has| $ (-6 -4404)))) (-3239 ((|#1| $ |#1|) 102 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ "first" |#1|) 104 (|has| $ (-6 -4404))) (($ $ "rest" $) 106 (|has| $ (-6 -4404))) ((|#1| $ "last" |#1|) 109 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) 89 (|has| $ (-6 -4404))) ((|#1| $ (-562) |#1|) 55 (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) NIL (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) 58)) (-2349 ((|#1| $) NIL)) (-3329 (($) NIL T CONST)) (-1494 (($ $) 14)) (-1434 (($ $) 28) (($ $ (-766)) 88)) (-4377 (((-112) (-639 |#1|) $) 116 (|has| |#1| (-1092)))) (-2637 (($ (-639 |#1|)) 112)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) 57)) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1507 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) NIL)) (-2101 (((-112) $) NIL)) (-1720 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-3462 (((-1261) (-562) $) 121 (|has| |#1| (-1092)))) (-2062 (((-766) $) 118)) (-2409 (((-639 $) $) NIL)) (-4188 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1458 (($ (-766) |#1|) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 73 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 63) (($ (-1 |#1| |#1| |#1|) $ $) 67)) (-4147 (((-112) $ (-766)) NIL)) (-4008 (((-639 |#1|) $) NIL)) (-3179 (((-112) $) NIL)) (-1906 (($ $) 90)) (-4040 (((-112) $) 13)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1504 ((|#1| $) NIL) (($ $ (-766)) NIL)) (-3295 (($ $ $ (-562)) NIL) (($ |#1| $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) 74)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-2166 (($ (-1 |#1|)) 124) (($ (-1 |#1| |#1|) |#1|) 125)) (-3529 ((|#1| $) 10)) (-1421 ((|#1| $) 27) (($ $ (-766)) 49)) (-3676 (((-2 (|:| |cycle?| (-112)) (|:| -2177 (-766)) (|:| |period| (-766))) (-766) $) 24)) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3535 (($ (-1 (-112) |#1|) $) 126)) (-3546 (($ (-1 (-112) |#1|) $) 127)) (-3510 (($ $ |#1|) 68 (|has| $ (-6 -4404)))) (-4316 (($ $ (-562)) 31)) (-3745 (((-112) $) 72)) (-1637 (((-112) $) 12)) (-2998 (((-112) $) 117)) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 20)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) 15)) (-1663 (($) 44)) (-2343 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1223 (-562))) NIL) ((|#1| $ (-562)) 54) ((|#1| $ (-562) |#1|) NIL)) (-1423 (((-562) $ $) 48)) (-2880 (($ $ (-1223 (-562))) NIL) (($ $ (-562)) NIL)) (-3856 (($ (-1 $)) 47)) (-2473 (((-112) $) 69)) (-3734 (($ $) 70)) (-3659 (($ $) 99 (|has| $ (-6 -4404)))) (-3595 (((-766) $) NIL)) (-2333 (($ $) NIL)) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) 43)) (-4208 (((-535) $) NIL (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 53)) (-3949 (($ |#1| $) 97)) (-2587 (($ $ $) 100 (|has| $ (-6 -4404))) (($ $ |#1|) 101 (|has| $ (-6 -4404)))) (-2767 (($ $ $) 78) (($ |#1| $) 45) (($ (-639 $)) 83) (($ $ |#1|) 77)) (-1345 (($ $) 50)) (-4053 (($ (-639 |#1|)) 111) (((-857) $) 41 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) NIL)) (-2985 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 114 (|has| |#1| (-1092)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-1148 |#1|) (-13 (-668 |#1|) (-612 (-639 |#1|)) (-10 -8 (-6 -4404) (-15 -2637 ($ (-639 |#1|))) (IF (|has| |#1| (-1092)) (-15 -4377 ((-112) (-639 |#1|) $)) |%noBranch|) (-15 -3676 ((-2 (|:| |cycle?| (-112)) (|:| -2177 (-766)) (|:| |period| (-766))) (-766) $)) (-15 -3856 ($ (-1 $))) (-15 -3949 ($ |#1| $)) (IF (|has| |#1| (-1092)) (PROGN (-15 -3462 ((-1261) (-562) $)) (-15 -3413 ((-857) $)) (-15 -3766 ((-112)))) |%noBranch|) (-15 -3400 ($ $ (-562) $)) (-15 -2166 ($ (-1 |#1|))) (-15 -2166 ($ (-1 |#1| |#1|) |#1|)) (-15 -3535 ($ (-1 (-112) |#1|) $)) (-15 -3546 ($ (-1 (-112) |#1|) $)))) (-1207)) (T -1148))
+((-2637 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))) (-4377 (*1 *2 *3 *1) (-12 (-5 *3 (-639 *4)) (-4 *4 (-1092)) (-4 *4 (-1207)) (-5 *2 (-112)) (-5 *1 (-1148 *4)))) (-3676 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-112)) (|:| -2177 (-766)) (|:| |period| (-766)))) (-5 *1 (-1148 *4)) (-4 *4 (-1207)) (-5 *3 (-766)))) (-3856 (*1 *1 *2) (-12 (-5 *2 (-1 (-1148 *3))) (-5 *1 (-1148 *3)) (-4 *3 (-1207)))) (-3949 (*1 *1 *2 *1) (-12 (-5 *1 (-1148 *2)) (-4 *2 (-1207)))) (-3462 (*1 *2 *3 *1) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1148 *4)) (-4 *4 (-1092)) (-4 *4 (-1207)))) (-3413 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-1148 *3)) (-4 *3 (-1092)) (-4 *3 (-1207)))) (-3766 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1148 *3)) (-4 *3 (-1092)) (-4 *3 (-1207)))) (-3400 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1148 *3)) (-4 *3 (-1207)))) (-2166 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))) (-2166 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))) (-3535 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))) (-3546 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))))
+(-13 (-668 |#1|) (-612 (-639 |#1|)) (-10 -8 (-6 -4404) (-15 -2637 ($ (-639 |#1|))) (IF (|has| |#1| (-1092)) (-15 -4377 ((-112) (-639 |#1|) $)) |%noBranch|) (-15 -3676 ((-2 (|:| |cycle?| (-112)) (|:| -2177 (-766)) (|:| |period| (-766))) (-766) $)) (-15 -3856 ($ (-1 $))) (-15 -3949 ($ |#1| $)) (IF (|has| |#1| (-1092)) (PROGN (-15 -3462 ((-1261) (-562) $)) (-15 -3413 ((-857) $)) (-15 -3766 ((-112)))) |%noBranch|) (-15 -3400 ($ $ (-562) $)) (-15 -2166 ($ (-1 |#1|))) (-15 -2166 ($ (-1 |#1| |#1|) |#1|)) (-15 -3535 ($ (-1 (-112) |#1|) $)) (-15 -3546 ($ (-1 (-112) |#1|) $))))
+((-4041 (((-112) $ $) 19)) (-2629 (($ $) 120)) (-2033 (($ $) 121)) (-3904 (($ $ (-143)) 108) (($ $ (-140)) 107)) (-3655 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4404)))) (-3824 (((-112) $ $) 118)) (-3801 (((-112) $ $ (-562)) 117)) (-3596 (($ (-562)) 127)) (-1841 (((-639 $) $ (-143)) 110) (((-639 $) $ (-140)) 109)) (-1706 (((-112) (-1 (-112) (-143) (-143)) $) 98) (((-112) $) 92 (|has| (-143) (-845)))) (-3737 (($ (-1 (-112) (-143) (-143)) $) 89 (|has| $ (-6 -4404))) (($ $) 88 (-12 (|has| (-143) (-845)) (|has| $ (-6 -4404))))) (-1395 (($ (-1 (-112) (-143) (-143)) $) 99) (($ $) 93 (|has| (-143) (-845)))) (-3735 (((-112) $ (-766)) 8)) (-4200 (((-143) $ (-562) (-143)) 52 (|has| $ (-6 -4404))) (((-143) $ (-1223 (-562)) (-143)) 58 (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) (-143)) $) 75 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-1967 (($ $ (-143)) 104) (($ $ (-140)) 103)) (-2673 (($ $) 90 (|has| $ (-6 -4404)))) (-2676 (($ $) 100)) (-1348 (($ $ (-1223 (-562)) $) 114)) (-1459 (($ $) 78 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ (-143) $) 77 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) (-143)) $) 74 (|has| $ (-6 -4403)))) (-1954 (((-143) (-1 (-143) (-143) (-143)) $ (-143) (-143)) 76 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4403)))) (((-143) (-1 (-143) (-143) (-143)) $ (-143)) 73 (|has| $ (-6 -4403))) (((-143) (-1 (-143) (-143) (-143)) $) 72 (|has| $ (-6 -4403)))) (-1507 (((-143) $ (-562) (-143)) 53 (|has| $ (-6 -4404)))) (-1420 (((-143) $ (-562)) 51)) (-3847 (((-112) $ $) 119)) (-4265 (((-562) (-1 (-112) (-143)) $) 97) (((-562) (-143) $) 96 (|has| (-143) (-1092))) (((-562) (-143) $ (-562)) 95 (|has| (-143) (-1092))) (((-562) $ $ (-562)) 113) (((-562) (-140) $ (-562)) 112)) (-1720 (((-639 (-143)) $) 30 (|has| $ (-6 -4403)))) (-1458 (($ (-766) (-143)) 69)) (-4172 (((-112) $ (-766)) 9)) (-1849 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 87 (|has| (-143) (-845)))) (-4103 (($ (-1 (-112) (-143) (-143)) $ $) 101) (($ $ $) 94 (|has| (-143) (-845)))) (-2123 (((-639 (-143)) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) (-143) $) 27 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 86 (|has| (-143) (-845)))) (-4264 (((-112) $ $ (-143)) 115)) (-3789 (((-766) $ $ (-143)) 116)) (-1491 (($ (-1 (-143) (-143)) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-143) (-143)) $) 35) (($ (-1 (-143) (-143) (-143)) $ $) 64)) (-4145 (($ $) 122)) (-3249 (($ $) 123)) (-4147 (((-112) $ (-766)) 10)) (-1979 (($ $ (-143)) 106) (($ $ (-140)) 105)) (-3696 (((-1150) $) 22)) (-3295 (($ (-143) $ (-562)) 60) (($ $ $ (-562)) 59)) (-3336 (((-639 (-562)) $) 46)) (-1987 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21)) (-1421 (((-143) $) 42 (|has| (-562) (-845)))) (-1963 (((-3 (-143) "failed") (-1 (-112) (-143)) $) 71)) (-3510 (($ $ (-143)) 41 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) (-143)) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-143)))) 26 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-293 (-143))) 25 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-143) (-143)) 24 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-639 (-143)) (-639 (-143))) 23 (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) (-143) $) 45 (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-2366 (((-639 (-143)) $) 48)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 (((-143) $ (-562) (-143)) 50) (((-143) $ (-562)) 49) (($ $ (-1223 (-562))) 63) (($ $ $) 102)) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1723 (((-766) (-1 (-112) (-143)) $) 31 (|has| $ (-6 -4403))) (((-766) (-143) $) 28 (-12 (|has| (-143) (-1092)) (|has| $ (-6 -4403))))) (-2694 (($ $ $ (-562)) 91 (|has| $ (-6 -4404)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| (-143) (-610 (-535))))) (-4064 (($ (-639 (-143))) 70)) (-2767 (($ $ (-143)) 68) (($ (-143) $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4053 (($ (-143)) 111) (((-857) $) 18)) (-2879 (((-112) (-1 (-112) (-143)) $) 33 (|has| $ (-6 -4403)))) (-2332 (((-1150) $) 131) (((-1150) $ (-112)) 130) (((-1261) (-817) $) 129) (((-1261) (-817) $ (-112)) 128)) (-1798 (((-112) $ $) 84 (|has| (-143) (-845)))) (-1771 (((-112) $ $) 83 (|has| (-143) (-845)))) (-1733 (((-112) $ $) 20)) (-1785 (((-112) $ $) 85 (|has| (-143) (-845)))) (-1761 (((-112) $ $) 82 (|has| (-143) (-845)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-1149) (-139)) (T -1149))
((-3596 (*1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-1149)))))
(-13 (-1136) (-1092) (-823) (-10 -8 (-15 -3596 ($ (-562)))))
(((-34) . T) ((-102) . T) ((-609 (-857)) . T) ((-150 #0=(-143)) . T) ((-610 (-535)) |has| (-143) (-610 (-535))) ((-285 #1=(-562) #0#) . T) ((-287 #1# #0#) . T) ((-308 #0#) -12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))) ((-372 #0#) . T) ((-488 #0#) . T) ((-600 #1# #0#) . T) ((-513 #0# #0#) -12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))) ((-645 #0#) . T) ((-19 #0#) . T) ((-823) . T) ((-845) |has| (-143) (-845)) ((-1092) . T) ((-1136) . T) ((-1207) . T))
-((-4041 (((-112) $ $) NIL)) (-2744 (($ $) NIL)) (-1576 (($ $) NIL)) (-3398 (($ $ (-143)) NIL) (($ $ (-140)) NIL)) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-3824 (((-112) $ $) NIL)) (-3801 (((-112) $ $ (-562)) NIL)) (-3596 (($ (-562)) 7)) (-2176 (((-639 $) $ (-143)) NIL) (((-639 $) $ (-140)) NIL)) (-1399 (((-112) (-1 (-112) (-143) (-143)) $) NIL) (((-112) $) NIL (|has| (-143) (-845)))) (-3381 (($ (-1 (-112) (-143) (-143)) $) NIL (|has| $ (-6 -4403))) (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-845))))) (-1395 (($ (-1 (-112) (-143) (-143)) $) NIL) (($ $) NIL (|has| (-143) (-845)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 (((-143) $ (-562) (-143)) NIL (|has| $ (-6 -4403))) (((-143) $ (-1223 (-562)) (-143)) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-1968 (($ $ (-143)) NIL) (($ $ (-140)) NIL)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-3944 (($ $ (-1223 (-562)) $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-1475 (($ (-143) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092)))) (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-143) (-1 (-143) (-143) (-143)) $ (-143) (-143)) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092)))) (((-143) (-1 (-143) (-143) (-143)) $ (-143)) NIL (|has| $ (-6 -4402))) (((-143) (-1 (-143) (-143) (-143)) $) NIL (|has| $ (-6 -4402)))) (-1505 (((-143) $ (-562) (-143)) NIL (|has| $ (-6 -4403)))) (-1420 (((-143) $ (-562)) NIL)) (-3847 (((-112) $ $) NIL)) (-4264 (((-562) (-1 (-112) (-143)) $) NIL) (((-562) (-143) $) NIL (|has| (-143) (-1092))) (((-562) (-143) $ (-562)) NIL (|has| (-143) (-1092))) (((-562) $ $ (-562)) NIL) (((-562) (-140) $ (-562)) NIL)) (-1720 (((-639 (-143)) $) NIL (|has| $ (-6 -4402)))) (-1458 (($ (-766) (-143)) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| (-143) (-845)))) (-1610 (($ (-1 (-112) (-143) (-143)) $ $) NIL) (($ $ $) NIL (|has| (-143) (-845)))) (-1912 (((-639 (-143)) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-143) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-143) (-845)))) (-4263 (((-112) $ $ (-143)) NIL)) (-3789 (((-766) $ $ (-143)) NIL)) (-1490 (($ (-1 (-143) (-143)) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-143) (-143)) $) NIL) (($ (-1 (-143) (-143) (-143)) $ $) NIL)) (-1614 (($ $) NIL)) (-3141 (($ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-1980 (($ $ (-143)) NIL) (($ $ (-140)) NIL)) (-2913 (((-1150) $) NIL)) (-3297 (($ (-143) $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-143) $) NIL (|has| (-562) (-845)))) (-3251 (((-3 (-143) "failed") (-1 (-112) (-143)) $) NIL)) (-2716 (($ $ (-143)) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-143)))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-293 (-143))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-143) (-143)) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-639 (-143)) (-639 (-143))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) (-143) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-2411 (((-639 (-143)) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 (((-143) $ (-562) (-143)) NIL) (((-143) $ (-562)) NIL) (($ $ (-1223 (-562))) NIL) (($ $ $) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402))) (((-766) (-143) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-143) (-1092))))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-143) (-610 (-535))))) (-4066 (($ (-639 (-143))) NIL)) (-2767 (($ $ (-143)) NIL) (($ (-143) $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4054 (($ (-143)) NIL) (((-857) $) NIL)) (-1744 (((-112) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4402)))) (-2833 (((-1150) $) 18) (((-1150) $ (-112)) 20) (((-1261) (-817) $) 21) (((-1261) (-817) $ (-112)) 22)) (-1798 (((-112) $ $) NIL (|has| (-143) (-845)))) (-1772 (((-112) $ $) NIL (|has| (-143) (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-143) (-845)))) (-1759 (((-112) $ $) NIL (|has| (-143) (-845)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-2629 (($ $) NIL)) (-2033 (($ $) NIL)) (-3904 (($ $ (-143)) NIL) (($ $ (-140)) NIL)) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-3824 (((-112) $ $) NIL)) (-3801 (((-112) $ $ (-562)) NIL)) (-3596 (($ (-562)) 7)) (-1841 (((-639 $) $ (-143)) NIL) (((-639 $) $ (-140)) NIL)) (-1706 (((-112) (-1 (-112) (-143) (-143)) $) NIL) (((-112) $) NIL (|has| (-143) (-845)))) (-3737 (($ (-1 (-112) (-143) (-143)) $) NIL (|has| $ (-6 -4404))) (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| (-143) (-845))))) (-1395 (($ (-1 (-112) (-143) (-143)) $) NIL) (($ $) NIL (|has| (-143) (-845)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 (((-143) $ (-562) (-143)) NIL (|has| $ (-6 -4404))) (((-143) $ (-1223 (-562)) (-143)) NIL (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-1967 (($ $ (-143)) NIL) (($ $ (-140)) NIL)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1348 (($ $ (-1223 (-562)) $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-1475 (($ (-143) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092)))) (($ (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-143) (-1 (-143) (-143) (-143)) $ (-143) (-143)) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092)))) (((-143) (-1 (-143) (-143) (-143)) $ (-143)) NIL (|has| $ (-6 -4403))) (((-143) (-1 (-143) (-143) (-143)) $) NIL (|has| $ (-6 -4403)))) (-1507 (((-143) $ (-562) (-143)) NIL (|has| $ (-6 -4404)))) (-1420 (((-143) $ (-562)) NIL)) (-3847 (((-112) $ $) NIL)) (-4265 (((-562) (-1 (-112) (-143)) $) NIL) (((-562) (-143) $) NIL (|has| (-143) (-1092))) (((-562) (-143) $ (-562)) NIL (|has| (-143) (-1092))) (((-562) $ $ (-562)) NIL) (((-562) (-140) $ (-562)) NIL)) (-1720 (((-639 (-143)) $) NIL (|has| $ (-6 -4403)))) (-1458 (($ (-766) (-143)) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| (-143) (-845)))) (-4103 (($ (-1 (-112) (-143) (-143)) $ $) NIL) (($ $ $) NIL (|has| (-143) (-845)))) (-2123 (((-639 (-143)) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-143) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| (-143) (-845)))) (-4264 (((-112) $ $ (-143)) NIL)) (-3789 (((-766) $ $ (-143)) NIL)) (-1491 (($ (-1 (-143) (-143)) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-143) (-143)) $) NIL) (($ (-1 (-143) (-143) (-143)) $ $) NIL)) (-4145 (($ $) NIL)) (-3249 (($ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-1979 (($ $ (-143)) NIL) (($ $ (-140)) NIL)) (-3696 (((-1150) $) NIL)) (-3295 (($ (-143) $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-143) $) NIL (|has| (-562) (-845)))) (-1963 (((-3 (-143) "failed") (-1 (-112) (-143)) $) NIL)) (-3510 (($ $ (-143)) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-143)))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-293 (-143))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-143) (-143)) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092)))) (($ $ (-639 (-143)) (-639 (-143))) NIL (-12 (|has| (-143) (-308 (-143))) (|has| (-143) (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) (-143) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-2366 (((-639 (-143)) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 (((-143) $ (-562) (-143)) NIL) (((-143) $ (-562)) NIL) (($ $ (-1223 (-562))) NIL) (($ $ $) NIL)) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1723 (((-766) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403))) (((-766) (-143) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-143) (-1092))))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-143) (-610 (-535))))) (-4064 (($ (-639 (-143))) NIL)) (-2767 (($ $ (-143)) NIL) (($ (-143) $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4053 (($ (-143)) NIL) (((-857) $) NIL)) (-2879 (((-112) (-1 (-112) (-143)) $) NIL (|has| $ (-6 -4403)))) (-2332 (((-1150) $) 18) (((-1150) $ (-112)) 20) (((-1261) (-817) $) 21) (((-1261) (-817) $ (-112)) 22)) (-1798 (((-112) $ $) NIL (|has| (-143) (-845)))) (-1771 (((-112) $ $) NIL (|has| (-143) (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| (-143) (-845)))) (-1761 (((-112) $ $) NIL (|has| (-143) (-845)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-1150) (-1149)) (T -1150))
NIL
(-1149)
-((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)) (|has| |#1| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) NIL)) (-3052 (((-1261) $ (-1150) (-1150)) NIL (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-1150) |#1|) NIL)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402)))) (-1472 (((-3 |#1| "failed") (-1150) $) NIL)) (-1800 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092))))) (-4000 (($ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402))) (((-3 |#1| "failed") (-1150) $) NIL)) (-1475 (($ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)))) (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-1150) |#1|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-1150)) NIL)) (-1720 (((-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-1150) $) NIL (|has| (-1150) (-845)))) (-1912 (((-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)))) (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-1150) $) NIL (|has| (-1150) (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4403))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)) (|has| |#1| (-1092))))) (-1520 (((-639 (-1150)) $) NIL)) (-4265 (((-112) (-1150) $) NIL)) (-3262 (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL)) (-4300 (($ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL)) (-2093 (((-639 (-1150)) $) NIL)) (-1570 (((-112) (-1150) $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)) (|has| |#1| (-1092))))) (-1421 ((|#1| $) NIL (|has| (-1150) (-845)))) (-3251 (((-3 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) "failed") (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL)) (-2716 (($ $ |#1|) NIL (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))))) NIL (-12 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) NIL (-12 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)))) (($ $ (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) NIL (-12 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)))) (($ $ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) NIL (-12 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-308 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ (-1150)) NIL) ((|#1| $ (-1150) |#1|) NIL)) (-3564 (($) NIL) (($ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) NIL)) (-4054 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-609 (-857))) (|has| |#1| (-609 (-857)))))) (-1932 (($ (-639 (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)))) NIL)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 (-1150)) (|:| -2694 |#1|)) (-1092)) (|has| |#1| (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-1151 |#1|) (-13 (-1183 (-1150) |#1|) (-10 -7 (-6 -4402))) (-1092)) (T -1151))
-NIL
-(-13 (-1183 (-1150) |#1|) (-10 -7 (-6 -4402)))
-((-2970 (((-1148 |#1|) (-1148 |#1|)) 77)) (-3668 (((-3 (-1148 |#1|) "failed") (-1148 |#1|)) 37)) (-1315 (((-1148 |#1|) (-406 (-562)) (-1148 |#1|)) 121 (|has| |#1| (-38 (-406 (-562)))))) (-3761 (((-1148 |#1|) |#1| (-1148 |#1|)) 127 (|has| |#1| (-362)))) (-2009 (((-1148 |#1|) (-1148 |#1|)) 90)) (-1856 (((-1148 (-562)) (-562)) 57)) (-1740 (((-1148 |#1|) (-1148 (-1148 |#1|))) 109 (|has| |#1| (-38 (-406 (-562)))))) (-4325 (((-1148 |#1|) (-562) (-562) (-1148 |#1|)) 95)) (-3045 (((-1148 |#1|) |#1| (-562)) 45)) (-3247 (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 60)) (-3926 (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 124 (|has| |#1| (-362)))) (-3281 (((-1148 |#1|) |#1| (-1 (-1148 |#1|))) 108 (|has| |#1| (-38 (-406 (-562)))))) (-2394 (((-1148 |#1|) (-1 |#1| (-562)) |#1| (-1 (-1148 |#1|))) 125 (|has| |#1| (-362)))) (-1650 (((-1148 |#1|) (-1148 |#1|)) 89)) (-1638 (((-1148 |#1|) (-1148 |#1|)) 76)) (-2584 (((-1148 |#1|) (-562) (-562) (-1148 |#1|)) 96)) (-2667 (((-1148 |#1|) |#1| (-1148 |#1|)) 105 (|has| |#1| (-38 (-406 (-562)))))) (-3437 (((-1148 (-562)) (-562)) 56)) (-1645 (((-1148 |#1|) |#1|) 59)) (-2863 (((-1148 |#1|) (-1148 |#1|) (-562) (-562)) 92)) (-3489 (((-1148 |#1|) (-1 |#1| (-562)) (-1148 |#1|)) 66)) (-1762 (((-3 (-1148 |#1|) "failed") (-1148 |#1|) (-1148 |#1|)) 35)) (-1574 (((-1148 |#1|) (-1148 |#1|)) 91)) (-1433 (((-1148 |#1|) (-1148 |#1|) |#1|) 71)) (-4086 (((-1148 |#1|) (-1148 |#1|)) 62)) (-3036 (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 72)) (-4054 (((-1148 |#1|) |#1|) 67)) (-2752 (((-1148 |#1|) (-1148 (-1148 |#1|))) 82)) (-1859 (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 36)) (-1848 (((-1148 |#1|) (-1148 |#1|)) 21) (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 23)) (-1835 (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 17)) (* (((-1148 |#1|) (-1148 |#1|) |#1|) 29) (((-1148 |#1|) |#1| (-1148 |#1|)) 26) (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 27)))
-(((-1152 |#1|) (-10 -7 (-15 -1835 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1848 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1848 ((-1148 |#1|) (-1148 |#1|))) (-15 * ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 * ((-1148 |#1|) |#1| (-1148 |#1|))) (-15 * ((-1148 |#1|) (-1148 |#1|) |#1|)) (-15 -1762 ((-3 (-1148 |#1|) "failed") (-1148 |#1|) (-1148 |#1|))) (-15 -1859 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -3668 ((-3 (-1148 |#1|) "failed") (-1148 |#1|))) (-15 -3045 ((-1148 |#1|) |#1| (-562))) (-15 -3437 ((-1148 (-562)) (-562))) (-15 -1856 ((-1148 (-562)) (-562))) (-15 -1645 ((-1148 |#1|) |#1|)) (-15 -3247 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -4086 ((-1148 |#1|) (-1148 |#1|))) (-15 -3489 ((-1148 |#1|) (-1 |#1| (-562)) (-1148 |#1|))) (-15 -4054 ((-1148 |#1|) |#1|)) (-15 -1433 ((-1148 |#1|) (-1148 |#1|) |#1|)) (-15 -3036 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1638 ((-1148 |#1|) (-1148 |#1|))) (-15 -2970 ((-1148 |#1|) (-1148 |#1|))) (-15 -2752 ((-1148 |#1|) (-1148 (-1148 |#1|)))) (-15 -1650 ((-1148 |#1|) (-1148 |#1|))) (-15 -2009 ((-1148 |#1|) (-1148 |#1|))) (-15 -1574 ((-1148 |#1|) (-1148 |#1|))) (-15 -2863 ((-1148 |#1|) (-1148 |#1|) (-562) (-562))) (-15 -4325 ((-1148 |#1|) (-562) (-562) (-1148 |#1|))) (-15 -2584 ((-1148 |#1|) (-562) (-562) (-1148 |#1|))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -2667 ((-1148 |#1|) |#1| (-1148 |#1|))) (-15 -3281 ((-1148 |#1|) |#1| (-1 (-1148 |#1|)))) (-15 -1740 ((-1148 |#1|) (-1148 (-1148 |#1|)))) (-15 -1315 ((-1148 |#1|) (-406 (-562)) (-1148 |#1|)))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-15 -3926 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -2394 ((-1148 |#1|) (-1 |#1| (-562)) |#1| (-1 (-1148 |#1|)))) (-15 -3761 ((-1148 |#1|) |#1| (-1148 |#1|)))) |%noBranch|)) (-1044)) (T -1152))
-((-3761 (*1 *2 *3 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-362)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-2394 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-562))) (-5 *5 (-1 (-1148 *4))) (-4 *4 (-362)) (-4 *4 (-1044)) (-5 *2 (-1148 *4)) (-5 *1 (-1152 *4)))) (-3926 (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-362)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1315 (*1 *2 *3 *2) (-12 (-5 *2 (-1148 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1044)) (-5 *3 (-406 (-562))) (-5 *1 (-1152 *4)))) (-1740 (*1 *2 *3) (-12 (-5 *3 (-1148 (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1152 *4)) (-4 *4 (-38 (-406 (-562)))) (-4 *4 (-1044)))) (-3281 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1148 *3))) (-5 *2 (-1148 *3)) (-5 *1 (-1152 *3)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)))) (-2667 (*1 *2 *3 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-2584 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-1044)) (-5 *1 (-1152 *4)))) (-4325 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-1044)) (-5 *1 (-1152 *4)))) (-2863 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-1044)) (-5 *1 (-1152 *4)))) (-1574 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-2009 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1650 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-2752 (*1 *2 *3) (-12 (-5 *3 (-1148 (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1152 *4)) (-4 *4 (-1044)))) (-2970 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1638 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-3036 (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1433 (*1 *2 *2 *3) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-4054 (*1 *2 *3) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-1152 *3)) (-4 *3 (-1044)))) (-3489 (*1 *2 *3 *2) (-12 (-5 *2 (-1148 *4)) (-5 *3 (-1 *4 (-562))) (-4 *4 (-1044)) (-5 *1 (-1152 *4)))) (-4086 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-3247 (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1645 (*1 *2 *3) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-1152 *3)) (-4 *3 (-1044)))) (-1856 (*1 *2 *3) (-12 (-5 *2 (-1148 (-562))) (-5 *1 (-1152 *4)) (-4 *4 (-1044)) (-5 *3 (-562)))) (-3437 (*1 *2 *3) (-12 (-5 *2 (-1148 (-562))) (-5 *1 (-1152 *4)) (-4 *4 (-1044)) (-5 *3 (-562)))) (-3045 (*1 *2 *3 *4) (-12 (-5 *4 (-562)) (-5 *2 (-1148 *3)) (-5 *1 (-1152 *3)) (-4 *3 (-1044)))) (-3668 (*1 *2 *2) (|partial| -12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1859 (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1762 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1848 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1848 (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1835 (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))))
-(-10 -7 (-15 -1835 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1848 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1848 ((-1148 |#1|) (-1148 |#1|))) (-15 * ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 * ((-1148 |#1|) |#1| (-1148 |#1|))) (-15 * ((-1148 |#1|) (-1148 |#1|) |#1|)) (-15 -1762 ((-3 (-1148 |#1|) "failed") (-1148 |#1|) (-1148 |#1|))) (-15 -1859 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -3668 ((-3 (-1148 |#1|) "failed") (-1148 |#1|))) (-15 -3045 ((-1148 |#1|) |#1| (-562))) (-15 -3437 ((-1148 (-562)) (-562))) (-15 -1856 ((-1148 (-562)) (-562))) (-15 -1645 ((-1148 |#1|) |#1|)) (-15 -3247 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -4086 ((-1148 |#1|) (-1148 |#1|))) (-15 -3489 ((-1148 |#1|) (-1 |#1| (-562)) (-1148 |#1|))) (-15 -4054 ((-1148 |#1|) |#1|)) (-15 -1433 ((-1148 |#1|) (-1148 |#1|) |#1|)) (-15 -3036 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1638 ((-1148 |#1|) (-1148 |#1|))) (-15 -2970 ((-1148 |#1|) (-1148 |#1|))) (-15 -2752 ((-1148 |#1|) (-1148 (-1148 |#1|)))) (-15 -1650 ((-1148 |#1|) (-1148 |#1|))) (-15 -2009 ((-1148 |#1|) (-1148 |#1|))) (-15 -1574 ((-1148 |#1|) (-1148 |#1|))) (-15 -2863 ((-1148 |#1|) (-1148 |#1|) (-562) (-562))) (-15 -4325 ((-1148 |#1|) (-562) (-562) (-1148 |#1|))) (-15 -2584 ((-1148 |#1|) (-562) (-562) (-1148 |#1|))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -2667 ((-1148 |#1|) |#1| (-1148 |#1|))) (-15 -3281 ((-1148 |#1|) |#1| (-1 (-1148 |#1|)))) (-15 -1740 ((-1148 |#1|) (-1148 (-1148 |#1|)))) (-15 -1315 ((-1148 |#1|) (-406 (-562)) (-1148 |#1|)))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-15 -3926 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -2394 ((-1148 |#1|) (-1 |#1| (-562)) |#1| (-1 (-1148 |#1|)))) (-15 -3761 ((-1148 |#1|) |#1| (-1148 |#1|)))) |%noBranch|))
-((-2988 (((-1148 |#1|) (-1148 |#1|)) 57)) (-4097 (((-1148 |#1|) (-1148 |#1|)) 39)) (-4207 (((-1148 |#1|) (-1148 |#1|)) 53)) (-4074 (((-1148 |#1|) (-1148 |#1|)) 35)) (-3014 (((-1148 |#1|) (-1148 |#1|)) 60)) (-4119 (((-1148 |#1|) (-1148 |#1|)) 42)) (-4365 (((-1148 |#1|) (-1148 |#1|)) 31)) (-3430 (((-1148 |#1|) (-1148 |#1|)) 27)) (-3023 (((-1148 |#1|) (-1148 |#1|)) 61)) (-4130 (((-1148 |#1|) (-1148 |#1|)) 43)) (-3001 (((-1148 |#1|) (-1148 |#1|)) 58)) (-4108 (((-1148 |#1|) (-1148 |#1|)) 40)) (-2978 (((-1148 |#1|) (-1148 |#1|)) 55)) (-4087 (((-1148 |#1|) (-1148 |#1|)) 37)) (-3055 (((-1148 |#1|) (-1148 |#1|)) 65)) (-4165 (((-1148 |#1|) (-1148 |#1|)) 47)) (-3033 (((-1148 |#1|) (-1148 |#1|)) 63)) (-4138 (((-1148 |#1|) (-1148 |#1|)) 45)) (-3078 (((-1148 |#1|) (-1148 |#1|)) 68)) (-4182 (((-1148 |#1|) (-1148 |#1|)) 50)) (-1566 (((-1148 |#1|) (-1148 |#1|)) 69)) (-4195 (((-1148 |#1|) (-1148 |#1|)) 51)) (-3066 (((-1148 |#1|) (-1148 |#1|)) 67)) (-4174 (((-1148 |#1|) (-1148 |#1|)) 49)) (-3044 (((-1148 |#1|) (-1148 |#1|)) 66)) (-4151 (((-1148 |#1|) (-1148 |#1|)) 48)) (** (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 33)))
-(((-1153 |#1|) (-10 -7 (-15 -3430 ((-1148 |#1|) (-1148 |#1|))) (-15 -4365 ((-1148 |#1|) (-1148 |#1|))) (-15 ** ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -4074 ((-1148 |#1|) (-1148 |#1|))) (-15 -4087 ((-1148 |#1|) (-1148 |#1|))) (-15 -4097 ((-1148 |#1|) (-1148 |#1|))) (-15 -4108 ((-1148 |#1|) (-1148 |#1|))) (-15 -4119 ((-1148 |#1|) (-1148 |#1|))) (-15 -4130 ((-1148 |#1|) (-1148 |#1|))) (-15 -4138 ((-1148 |#1|) (-1148 |#1|))) (-15 -4151 ((-1148 |#1|) (-1148 |#1|))) (-15 -4165 ((-1148 |#1|) (-1148 |#1|))) (-15 -4174 ((-1148 |#1|) (-1148 |#1|))) (-15 -4182 ((-1148 |#1|) (-1148 |#1|))) (-15 -4195 ((-1148 |#1|) (-1148 |#1|))) (-15 -4207 ((-1148 |#1|) (-1148 |#1|))) (-15 -2978 ((-1148 |#1|) (-1148 |#1|))) (-15 -2988 ((-1148 |#1|) (-1148 |#1|))) (-15 -3001 ((-1148 |#1|) (-1148 |#1|))) (-15 -3014 ((-1148 |#1|) (-1148 |#1|))) (-15 -3023 ((-1148 |#1|) (-1148 |#1|))) (-15 -3033 ((-1148 |#1|) (-1148 |#1|))) (-15 -3044 ((-1148 |#1|) (-1148 |#1|))) (-15 -3055 ((-1148 |#1|) (-1148 |#1|))) (-15 -3066 ((-1148 |#1|) (-1148 |#1|))) (-15 -3078 ((-1148 |#1|) (-1148 |#1|))) (-15 -1566 ((-1148 |#1|) (-1148 |#1|)))) (-38 (-406 (-562)))) (T -1153))
-((-1566 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3078 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3066 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3055 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3044 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3033 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3023 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3014 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3001 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-2988 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-2978 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4207 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4195 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4182 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4174 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4165 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4151 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4138 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4130 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4119 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4108 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4097 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4087 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4074 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4365 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3430 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))))
-(-10 -7 (-15 -3430 ((-1148 |#1|) (-1148 |#1|))) (-15 -4365 ((-1148 |#1|) (-1148 |#1|))) (-15 ** ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -4074 ((-1148 |#1|) (-1148 |#1|))) (-15 -4087 ((-1148 |#1|) (-1148 |#1|))) (-15 -4097 ((-1148 |#1|) (-1148 |#1|))) (-15 -4108 ((-1148 |#1|) (-1148 |#1|))) (-15 -4119 ((-1148 |#1|) (-1148 |#1|))) (-15 -4130 ((-1148 |#1|) (-1148 |#1|))) (-15 -4138 ((-1148 |#1|) (-1148 |#1|))) (-15 -4151 ((-1148 |#1|) (-1148 |#1|))) (-15 -4165 ((-1148 |#1|) (-1148 |#1|))) (-15 -4174 ((-1148 |#1|) (-1148 |#1|))) (-15 -4182 ((-1148 |#1|) (-1148 |#1|))) (-15 -4195 ((-1148 |#1|) (-1148 |#1|))) (-15 -4207 ((-1148 |#1|) (-1148 |#1|))) (-15 -2978 ((-1148 |#1|) (-1148 |#1|))) (-15 -2988 ((-1148 |#1|) (-1148 |#1|))) (-15 -3001 ((-1148 |#1|) (-1148 |#1|))) (-15 -3014 ((-1148 |#1|) (-1148 |#1|))) (-15 -3023 ((-1148 |#1|) (-1148 |#1|))) (-15 -3033 ((-1148 |#1|) (-1148 |#1|))) (-15 -3044 ((-1148 |#1|) (-1148 |#1|))) (-15 -3055 ((-1148 |#1|) (-1148 |#1|))) (-15 -3066 ((-1148 |#1|) (-1148 |#1|))) (-15 -3078 ((-1148 |#1|) (-1148 |#1|))) (-15 -1566 ((-1148 |#1|) (-1148 |#1|))))
-((-2988 (((-1148 |#1|) (-1148 |#1|)) 100)) (-4097 (((-1148 |#1|) (-1148 |#1|)) 64)) (-2032 (((-2 (|:| -4207 (-1148 |#1|)) (|:| -2978 (-1148 |#1|))) (-1148 |#1|)) 96)) (-4207 (((-1148 |#1|) (-1148 |#1|)) 97)) (-1949 (((-2 (|:| -4074 (-1148 |#1|)) (|:| -4087 (-1148 |#1|))) (-1148 |#1|)) 53)) (-4074 (((-1148 |#1|) (-1148 |#1|)) 54)) (-3014 (((-1148 |#1|) (-1148 |#1|)) 102)) (-4119 (((-1148 |#1|) (-1148 |#1|)) 71)) (-4365 (((-1148 |#1|) (-1148 |#1|)) 39)) (-3430 (((-1148 |#1|) (-1148 |#1|)) 36)) (-3023 (((-1148 |#1|) (-1148 |#1|)) 103)) (-4130 (((-1148 |#1|) (-1148 |#1|)) 72)) (-3001 (((-1148 |#1|) (-1148 |#1|)) 101)) (-4108 (((-1148 |#1|) (-1148 |#1|)) 67)) (-2978 (((-1148 |#1|) (-1148 |#1|)) 98)) (-4087 (((-1148 |#1|) (-1148 |#1|)) 55)) (-3055 (((-1148 |#1|) (-1148 |#1|)) 111)) (-4165 (((-1148 |#1|) (-1148 |#1|)) 86)) (-3033 (((-1148 |#1|) (-1148 |#1|)) 105)) (-4138 (((-1148 |#1|) (-1148 |#1|)) 82)) (-3078 (((-1148 |#1|) (-1148 |#1|)) 115)) (-4182 (((-1148 |#1|) (-1148 |#1|)) 90)) (-1566 (((-1148 |#1|) (-1148 |#1|)) 117)) (-4195 (((-1148 |#1|) (-1148 |#1|)) 92)) (-3066 (((-1148 |#1|) (-1148 |#1|)) 113)) (-4174 (((-1148 |#1|) (-1148 |#1|)) 88)) (-3044 (((-1148 |#1|) (-1148 |#1|)) 107)) (-4151 (((-1148 |#1|) (-1148 |#1|)) 84)) (** (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 40)))
-(((-1154 |#1|) (-10 -7 (-15 -3430 ((-1148 |#1|) (-1148 |#1|))) (-15 -4365 ((-1148 |#1|) (-1148 |#1|))) (-15 ** ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1949 ((-2 (|:| -4074 (-1148 |#1|)) (|:| -4087 (-1148 |#1|))) (-1148 |#1|))) (-15 -4074 ((-1148 |#1|) (-1148 |#1|))) (-15 -4087 ((-1148 |#1|) (-1148 |#1|))) (-15 -4097 ((-1148 |#1|) (-1148 |#1|))) (-15 -4108 ((-1148 |#1|) (-1148 |#1|))) (-15 -4119 ((-1148 |#1|) (-1148 |#1|))) (-15 -4130 ((-1148 |#1|) (-1148 |#1|))) (-15 -4138 ((-1148 |#1|) (-1148 |#1|))) (-15 -4151 ((-1148 |#1|) (-1148 |#1|))) (-15 -4165 ((-1148 |#1|) (-1148 |#1|))) (-15 -4174 ((-1148 |#1|) (-1148 |#1|))) (-15 -4182 ((-1148 |#1|) (-1148 |#1|))) (-15 -4195 ((-1148 |#1|) (-1148 |#1|))) (-15 -2032 ((-2 (|:| -4207 (-1148 |#1|)) (|:| -2978 (-1148 |#1|))) (-1148 |#1|))) (-15 -4207 ((-1148 |#1|) (-1148 |#1|))) (-15 -2978 ((-1148 |#1|) (-1148 |#1|))) (-15 -2988 ((-1148 |#1|) (-1148 |#1|))) (-15 -3001 ((-1148 |#1|) (-1148 |#1|))) (-15 -3014 ((-1148 |#1|) (-1148 |#1|))) (-15 -3023 ((-1148 |#1|) (-1148 |#1|))) (-15 -3033 ((-1148 |#1|) (-1148 |#1|))) (-15 -3044 ((-1148 |#1|) (-1148 |#1|))) (-15 -3055 ((-1148 |#1|) (-1148 |#1|))) (-15 -3066 ((-1148 |#1|) (-1148 |#1|))) (-15 -3078 ((-1148 |#1|) (-1148 |#1|))) (-15 -1566 ((-1148 |#1|) (-1148 |#1|)))) (-38 (-406 (-562)))) (T -1154))
-((-1566 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3078 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3066 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3055 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3044 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3033 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3023 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3014 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3001 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-2988 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-2978 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4207 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-2032 (*1 *2 *3) (-12 (-4 *4 (-38 (-406 (-562)))) (-5 *2 (-2 (|:| -4207 (-1148 *4)) (|:| -2978 (-1148 *4)))) (-5 *1 (-1154 *4)) (-5 *3 (-1148 *4)))) (-4195 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4182 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4174 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4165 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4151 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4138 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4130 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4119 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4108 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4097 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4087 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4074 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-1949 (*1 *2 *3) (-12 (-4 *4 (-38 (-406 (-562)))) (-5 *2 (-2 (|:| -4074 (-1148 *4)) (|:| -4087 (-1148 *4)))) (-5 *1 (-1154 *4)) (-5 *3 (-1148 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4365 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3430 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))))
-(-10 -7 (-15 -3430 ((-1148 |#1|) (-1148 |#1|))) (-15 -4365 ((-1148 |#1|) (-1148 |#1|))) (-15 ** ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1949 ((-2 (|:| -4074 (-1148 |#1|)) (|:| -4087 (-1148 |#1|))) (-1148 |#1|))) (-15 -4074 ((-1148 |#1|) (-1148 |#1|))) (-15 -4087 ((-1148 |#1|) (-1148 |#1|))) (-15 -4097 ((-1148 |#1|) (-1148 |#1|))) (-15 -4108 ((-1148 |#1|) (-1148 |#1|))) (-15 -4119 ((-1148 |#1|) (-1148 |#1|))) (-15 -4130 ((-1148 |#1|) (-1148 |#1|))) (-15 -4138 ((-1148 |#1|) (-1148 |#1|))) (-15 -4151 ((-1148 |#1|) (-1148 |#1|))) (-15 -4165 ((-1148 |#1|) (-1148 |#1|))) (-15 -4174 ((-1148 |#1|) (-1148 |#1|))) (-15 -4182 ((-1148 |#1|) (-1148 |#1|))) (-15 -4195 ((-1148 |#1|) (-1148 |#1|))) (-15 -2032 ((-2 (|:| -4207 (-1148 |#1|)) (|:| -2978 (-1148 |#1|))) (-1148 |#1|))) (-15 -4207 ((-1148 |#1|) (-1148 |#1|))) (-15 -2978 ((-1148 |#1|) (-1148 |#1|))) (-15 -2988 ((-1148 |#1|) (-1148 |#1|))) (-15 -3001 ((-1148 |#1|) (-1148 |#1|))) (-15 -3014 ((-1148 |#1|) (-1148 |#1|))) (-15 -3023 ((-1148 |#1|) (-1148 |#1|))) (-15 -3033 ((-1148 |#1|) (-1148 |#1|))) (-15 -3044 ((-1148 |#1|) (-1148 |#1|))) (-15 -3055 ((-1148 |#1|) (-1148 |#1|))) (-15 -3066 ((-1148 |#1|) (-1148 |#1|))) (-15 -3078 ((-1148 |#1|) (-1148 |#1|))) (-15 -1566 ((-1148 |#1|) (-1148 |#1|))))
-((-1852 (((-953 |#2|) |#2| |#2|) 35)) (-1498 ((|#2| |#2| |#1|) 19 (|has| |#1| (-306)))))
-(((-1155 |#1| |#2|) (-10 -7 (-15 -1852 ((-953 |#2|) |#2| |#2|)) (IF (|has| |#1| (-306)) (-15 -1498 (|#2| |#2| |#1|)) |%noBranch|)) (-554) (-1232 |#1|)) (T -1155))
-((-1498 (*1 *2 *2 *3) (-12 (-4 *3 (-306)) (-4 *3 (-554)) (-5 *1 (-1155 *3 *2)) (-4 *2 (-1232 *3)))) (-1852 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-953 *3)) (-5 *1 (-1155 *4 *3)) (-4 *3 (-1232 *4)))))
-(-10 -7 (-15 -1852 ((-953 |#2|) |#2| |#2|)) (IF (|has| |#1| (-306)) (-15 -1498 (|#2| |#2| |#1|)) |%noBranch|))
-((-4041 (((-112) $ $) NIL)) (-2632 (($ $ (-639 (-766))) 66)) (-3110 (($) 25)) (-2968 (($ $) 41)) (-4157 (((-639 $) $) 50)) (-3856 (((-112) $) 16)) (-3232 (((-639 (-938 |#2|)) $) 73)) (-3862 (($ $) 67)) (-3034 (((-766) $) 36)) (-1458 (($) 24)) (-3009 (($ $ (-639 (-766)) (-938 |#2|)) 59) (($ $ (-639 (-766)) (-766)) 60) (($ $ (-766) (-938 |#2|)) 62)) (-1610 (($ $ $) 47) (($ (-639 $)) 49)) (-3328 (((-766) $) 74)) (-3449 (((-112) $) 15)) (-2913 (((-1150) $) NIL)) (-3174 (((-112) $) 17)) (-1709 (((-1112) $) NIL)) (-2471 (((-170) $) 72)) (-2445 (((-938 |#2|) $) 68)) (-3882 (((-766) $) 69)) (-2316 (((-112) $) 71)) (-1899 (($ $ (-639 (-766)) (-170)) 65)) (-3259 (($ $) 42)) (-4054 (((-857) $) 85)) (-1344 (($ $ (-639 (-766)) (-112)) 64)) (-2906 (((-639 $) $) 11)) (-2786 (($ $ (-766)) 35)) (-1432 (($ $) 31)) (-1704 (($ $ $ (-938 |#2|) (-766)) 55)) (-3540 (($ $ (-938 |#2|)) 54)) (-2758 (($ $ (-639 (-766)) (-938 |#2|)) 53) (($ $ (-639 (-766)) (-766)) 57) (((-766) $ (-938 |#2|)) 58)) (-1731 (((-112) $ $) 79)))
-(((-1156 |#1| |#2|) (-13 (-1092) (-10 -8 (-15 -3449 ((-112) $)) (-15 -3856 ((-112) $)) (-15 -3174 ((-112) $)) (-15 -1458 ($)) (-15 -3110 ($)) (-15 -1432 ($ $)) (-15 -2786 ($ $ (-766))) (-15 -2906 ((-639 $) $)) (-15 -3034 ((-766) $)) (-15 -2968 ($ $)) (-15 -3259 ($ $)) (-15 -1610 ($ $ $)) (-15 -1610 ($ (-639 $))) (-15 -4157 ((-639 $) $)) (-15 -2758 ($ $ (-639 (-766)) (-938 |#2|))) (-15 -3540 ($ $ (-938 |#2|))) (-15 -1704 ($ $ $ (-938 |#2|) (-766))) (-15 -3009 ($ $ (-639 (-766)) (-938 |#2|))) (-15 -2758 ($ $ (-639 (-766)) (-766))) (-15 -3009 ($ $ (-639 (-766)) (-766))) (-15 -2758 ((-766) $ (-938 |#2|))) (-15 -3009 ($ $ (-766) (-938 |#2|))) (-15 -1344 ($ $ (-639 (-766)) (-112))) (-15 -1899 ($ $ (-639 (-766)) (-170))) (-15 -2632 ($ $ (-639 (-766)))) (-15 -2445 ((-938 |#2|) $)) (-15 -3882 ((-766) $)) (-15 -2316 ((-112) $)) (-15 -2471 ((-170) $)) (-15 -3328 ((-766) $)) (-15 -3862 ($ $)) (-15 -3232 ((-639 (-938 |#2|)) $)))) (-916) (-1044)) (T -1156))
-((-3449 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-3856 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-3174 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-1458 (*1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-3110 (*1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-1432 (*1 *1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-2786 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2906 (*1 *2 *1) (-12 (-5 *2 (-639 (-1156 *3 *4))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-3034 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2968 (*1 *1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-3259 (*1 *1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-1610 (*1 *1 *1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-1610 (*1 *1 *2) (-12 (-5 *2 (-639 (-1156 *3 *4))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-4157 (*1 *2 *1) (-12 (-5 *2 (-639 (-1156 *3 *4))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2758 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-766))) (-5 *3 (-938 *5)) (-4 *5 (-1044)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))) (-3540 (*1 *1 *1 *2) (-12 (-5 *2 (-938 *4)) (-4 *4 (-1044)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)))) (-1704 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-938 *5)) (-5 *3 (-766)) (-4 *5 (-1044)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))) (-3009 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-766))) (-5 *3 (-938 *5)) (-4 *5 (-1044)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))) (-2758 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-766))) (-5 *3 (-766)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)) (-4 *5 (-1044)))) (-3009 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-766))) (-5 *3 (-766)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)) (-4 *5 (-1044)))) (-2758 (*1 *2 *1 *3) (-12 (-5 *3 (-938 *5)) (-4 *5 (-1044)) (-5 *2 (-766)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))) (-3009 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *3 (-938 *5)) (-4 *5 (-1044)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))) (-1344 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-766))) (-5 *3 (-112)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)) (-4 *5 (-1044)))) (-1899 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-766))) (-5 *3 (-170)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)) (-4 *5 (-1044)))) (-2632 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-766))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2445 (*1 *2 *1) (-12 (-5 *2 (-938 *4)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-3882 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2316 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2471 (*1 *2 *1) (-12 (-5 *2 (-170)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-3328 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-3862 (*1 *1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-3232 (*1 *2 *1) (-12 (-5 *2 (-639 (-938 *4))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))))
-(-13 (-1092) (-10 -8 (-15 -3449 ((-112) $)) (-15 -3856 ((-112) $)) (-15 -3174 ((-112) $)) (-15 -1458 ($)) (-15 -3110 ($)) (-15 -1432 ($ $)) (-15 -2786 ($ $ (-766))) (-15 -2906 ((-639 $) $)) (-15 -3034 ((-766) $)) (-15 -2968 ($ $)) (-15 -3259 ($ $)) (-15 -1610 ($ $ $)) (-15 -1610 ($ (-639 $))) (-15 -4157 ((-639 $) $)) (-15 -2758 ($ $ (-639 (-766)) (-938 |#2|))) (-15 -3540 ($ $ (-938 |#2|))) (-15 -1704 ($ $ $ (-938 |#2|) (-766))) (-15 -3009 ($ $ (-639 (-766)) (-938 |#2|))) (-15 -2758 ($ $ (-639 (-766)) (-766))) (-15 -3009 ($ $ (-639 (-766)) (-766))) (-15 -2758 ((-766) $ (-938 |#2|))) (-15 -3009 ($ $ (-766) (-938 |#2|))) (-15 -1344 ($ $ (-639 (-766)) (-112))) (-15 -1899 ($ $ (-639 (-766)) (-170))) (-15 -2632 ($ $ (-639 (-766)))) (-15 -2445 ((-938 |#2|) $)) (-15 -3882 ((-766) $)) (-15 -2316 ((-112) $)) (-15 -2471 ((-170) $)) (-15 -3328 ((-766) $)) (-15 -3862 ($ $)) (-15 -3232 ((-639 (-938 |#2|)) $))))
-((-4041 (((-112) $ $) NIL)) (-4328 ((|#2| $) 11)) (-4316 ((|#1| $) 10)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4066 (($ |#1| |#2|) 9)) (-4054 (((-857) $) 16)) (-1731 (((-112) $ $) NIL)))
-(((-1157 |#1| |#2|) (-13 (-1092) (-10 -8 (-15 -4066 ($ |#1| |#2|)) (-15 -4316 (|#1| $)) (-15 -4328 (|#2| $)))) (-1092) (-1092)) (T -1157))
-((-4066 (*1 *1 *2 *3) (-12 (-5 *1 (-1157 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-4316 (*1 *2 *1) (-12 (-4 *2 (-1092)) (-5 *1 (-1157 *2 *3)) (-4 *3 (-1092)))) (-4328 (*1 *2 *1) (-12 (-4 *2 (-1092)) (-5 *1 (-1157 *3 *2)) (-4 *3 (-1092)))))
-(-13 (-1092) (-10 -8 (-15 -4066 ($ |#1| |#2|)) (-15 -4316 (|#1| $)) (-15 -4328 (|#2| $))))
-((-4041 (((-112) $ $) NIL)) (-1820 (((-1127) $) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)) (|has| |#1| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) NIL)) (-3655 (((-1261) $ (-1150) (-1150)) NIL (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-1150) |#1|) NIL)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403)))) (-1472 (((-3 |#1| "failed") (-1150) $) NIL)) (-3329 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092))))) (-3729 (($ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403))) (((-3 |#1| "failed") (-1150) $) NIL)) (-1475 (($ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)))) (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-1150) |#1|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-1150)) NIL)) (-1720 (((-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-1150) $) NIL (|has| (-1150) (-845)))) (-2123 (((-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)))) (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-1150) $) NIL (|has| (-1150) (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4404))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)) (|has| |#1| (-1092))))) (-1521 (((-639 (-1150)) $) NIL)) (-4278 (((-112) (-1150) $) NIL)) (-2078 (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL)) (-1581 (($ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL)) (-3336 (((-639 (-1150)) $) NIL)) (-1987 (((-112) (-1150) $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)) (|has| |#1| (-1092))))) (-1421 ((|#1| $) NIL (|has| (-1150) (-845)))) (-1963 (((-3 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) "failed") (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL)) (-3510 (($ $ |#1|) NIL (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))))) NIL (-12 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) NIL (-12 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)))) (($ $ (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) NIL (-12 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)))) (($ $ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) NIL (-12 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-308 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ (-1150)) NIL) ((|#1| $ (-1150) |#1|) NIL)) (-1932 (($) NIL) (($ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) NIL)) (-4053 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-609 (-857))) (|has| |#1| (-609 (-857)))))) (-4131 (($ (-639 (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)))) NIL)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 (-1150)) (|:| -2693 |#1|)) (-1092)) (|has| |#1| (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-1151 |#1|) (-13 (-1183 (-1150) |#1|) (-10 -7 (-6 -4403))) (-1092)) (T -1151))
+NIL
+(-13 (-1183 (-1150) |#1|) (-10 -7 (-6 -4403)))
+((-3043 (((-1148 |#1|) (-1148 |#1|)) 77)) (-1694 (((-3 (-1148 |#1|) "failed") (-1148 |#1|)) 37)) (-1764 (((-1148 |#1|) (-406 (-562)) (-1148 |#1|)) 121 (|has| |#1| (-38 (-406 (-562)))))) (-3185 (((-1148 |#1|) |#1| (-1148 |#1|)) 127 (|has| |#1| (-362)))) (-3656 (((-1148 |#1|) (-1148 |#1|)) 90)) (-2725 (((-1148 (-562)) (-562)) 57)) (-2857 (((-1148 |#1|) (-1148 (-1148 |#1|))) 109 (|has| |#1| (-38 (-406 (-562)))))) (-3637 (((-1148 |#1|) (-562) (-562) (-1148 |#1|)) 95)) (-3044 (((-1148 |#1|) |#1| (-562)) 45)) (-1916 (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 60)) (-4274 (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 124 (|has| |#1| (-362)))) (-2254 (((-1148 |#1|) |#1| (-1 (-1148 |#1|))) 108 (|has| |#1| (-38 (-406 (-562)))))) (-3330 (((-1148 |#1|) (-1 |#1| (-562)) |#1| (-1 (-1148 |#1|))) 125 (|has| |#1| (-362)))) (-1376 (((-1148 |#1|) (-1148 |#1|)) 89)) (-4361 (((-1148 |#1|) (-1148 |#1|)) 76)) (-1628 (((-1148 |#1|) (-562) (-562) (-1148 |#1|)) 96)) (-3081 (((-1148 |#1|) |#1| (-1148 |#1|)) 105 (|has| |#1| (-38 (-406 (-562)))))) (-3052 (((-1148 (-562)) (-562)) 56)) (-1322 (((-1148 |#1|) |#1|) 59)) (-1337 (((-1148 |#1|) (-1148 |#1|) (-562) (-562)) 92)) (-2423 (((-1148 |#1|) (-1 |#1| (-562)) (-1148 |#1|)) 66)) (-1762 (((-3 (-1148 |#1|) "failed") (-1148 |#1|) (-1148 |#1|)) 35)) (-2021 (((-1148 |#1|) (-1148 |#1|)) 91)) (-1433 (((-1148 |#1|) (-1148 |#1|) |#1|) 71)) (-3256 (((-1148 |#1|) (-1148 |#1|)) 62)) (-3507 (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 72)) (-4053 (((-1148 |#1|) |#1|) 67)) (-2703 (((-1148 |#1|) (-1148 (-1148 |#1|))) 82)) (-1859 (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 36)) (-1847 (((-1148 |#1|) (-1148 |#1|)) 21) (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 23)) (-1836 (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 17)) (* (((-1148 |#1|) (-1148 |#1|) |#1|) 29) (((-1148 |#1|) |#1| (-1148 |#1|)) 26) (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 27)))
+(((-1152 |#1|) (-10 -7 (-15 -1836 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1847 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1847 ((-1148 |#1|) (-1148 |#1|))) (-15 * ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 * ((-1148 |#1|) |#1| (-1148 |#1|))) (-15 * ((-1148 |#1|) (-1148 |#1|) |#1|)) (-15 -1762 ((-3 (-1148 |#1|) "failed") (-1148 |#1|) (-1148 |#1|))) (-15 -1859 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1694 ((-3 (-1148 |#1|) "failed") (-1148 |#1|))) (-15 -3044 ((-1148 |#1|) |#1| (-562))) (-15 -3052 ((-1148 (-562)) (-562))) (-15 -2725 ((-1148 (-562)) (-562))) (-15 -1322 ((-1148 |#1|) |#1|)) (-15 -1916 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -3256 ((-1148 |#1|) (-1148 |#1|))) (-15 -2423 ((-1148 |#1|) (-1 |#1| (-562)) (-1148 |#1|))) (-15 -4053 ((-1148 |#1|) |#1|)) (-15 -1433 ((-1148 |#1|) (-1148 |#1|) |#1|)) (-15 -3507 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -4361 ((-1148 |#1|) (-1148 |#1|))) (-15 -3043 ((-1148 |#1|) (-1148 |#1|))) (-15 -2703 ((-1148 |#1|) (-1148 (-1148 |#1|)))) (-15 -1376 ((-1148 |#1|) (-1148 |#1|))) (-15 -3656 ((-1148 |#1|) (-1148 |#1|))) (-15 -2021 ((-1148 |#1|) (-1148 |#1|))) (-15 -1337 ((-1148 |#1|) (-1148 |#1|) (-562) (-562))) (-15 -3637 ((-1148 |#1|) (-562) (-562) (-1148 |#1|))) (-15 -1628 ((-1148 |#1|) (-562) (-562) (-1148 |#1|))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -3081 ((-1148 |#1|) |#1| (-1148 |#1|))) (-15 -2254 ((-1148 |#1|) |#1| (-1 (-1148 |#1|)))) (-15 -2857 ((-1148 |#1|) (-1148 (-1148 |#1|)))) (-15 -1764 ((-1148 |#1|) (-406 (-562)) (-1148 |#1|)))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-15 -4274 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -3330 ((-1148 |#1|) (-1 |#1| (-562)) |#1| (-1 (-1148 |#1|)))) (-15 -3185 ((-1148 |#1|) |#1| (-1148 |#1|)))) |%noBranch|)) (-1044)) (T -1152))
+((-3185 (*1 *2 *3 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-362)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-3330 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-562))) (-5 *5 (-1 (-1148 *4))) (-4 *4 (-362)) (-4 *4 (-1044)) (-5 *2 (-1148 *4)) (-5 *1 (-1152 *4)))) (-4274 (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-362)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1764 (*1 *2 *3 *2) (-12 (-5 *2 (-1148 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1044)) (-5 *3 (-406 (-562))) (-5 *1 (-1152 *4)))) (-2857 (*1 *2 *3) (-12 (-5 *3 (-1148 (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1152 *4)) (-4 *4 (-38 (-406 (-562)))) (-4 *4 (-1044)))) (-2254 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1148 *3))) (-5 *2 (-1148 *3)) (-5 *1 (-1152 *3)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)))) (-3081 (*1 *2 *3 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1628 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-1044)) (-5 *1 (-1152 *4)))) (-3637 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-1044)) (-5 *1 (-1152 *4)))) (-1337 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-1044)) (-5 *1 (-1152 *4)))) (-2021 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-3656 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1376 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-2703 (*1 *2 *3) (-12 (-5 *3 (-1148 (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1152 *4)) (-4 *4 (-1044)))) (-3043 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-4361 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-3507 (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1433 (*1 *2 *2 *3) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-4053 (*1 *2 *3) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-1152 *3)) (-4 *3 (-1044)))) (-2423 (*1 *2 *3 *2) (-12 (-5 *2 (-1148 *4)) (-5 *3 (-1 *4 (-562))) (-4 *4 (-1044)) (-5 *1 (-1152 *4)))) (-3256 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1916 (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1322 (*1 *2 *3) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-1152 *3)) (-4 *3 (-1044)))) (-2725 (*1 *2 *3) (-12 (-5 *2 (-1148 (-562))) (-5 *1 (-1152 *4)) (-4 *4 (-1044)) (-5 *3 (-562)))) (-3052 (*1 *2 *3) (-12 (-5 *2 (-1148 (-562))) (-5 *1 (-1152 *4)) (-4 *4 (-1044)) (-5 *3 (-562)))) (-3044 (*1 *2 *3 *4) (-12 (-5 *4 (-562)) (-5 *2 (-1148 *3)) (-5 *1 (-1152 *3)) (-4 *3 (-1044)))) (-1694 (*1 *2 *2) (|partial| -12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1859 (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1762 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1847 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1847 (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))) (-1836 (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))))
+(-10 -7 (-15 -1836 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1847 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1847 ((-1148 |#1|) (-1148 |#1|))) (-15 * ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 * ((-1148 |#1|) |#1| (-1148 |#1|))) (-15 * ((-1148 |#1|) (-1148 |#1|) |#1|)) (-15 -1762 ((-3 (-1148 |#1|) "failed") (-1148 |#1|) (-1148 |#1|))) (-15 -1859 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -1694 ((-3 (-1148 |#1|) "failed") (-1148 |#1|))) (-15 -3044 ((-1148 |#1|) |#1| (-562))) (-15 -3052 ((-1148 (-562)) (-562))) (-15 -2725 ((-1148 (-562)) (-562))) (-15 -1322 ((-1148 |#1|) |#1|)) (-15 -1916 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -3256 ((-1148 |#1|) (-1148 |#1|))) (-15 -2423 ((-1148 |#1|) (-1 |#1| (-562)) (-1148 |#1|))) (-15 -4053 ((-1148 |#1|) |#1|)) (-15 -1433 ((-1148 |#1|) (-1148 |#1|) |#1|)) (-15 -3507 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -4361 ((-1148 |#1|) (-1148 |#1|))) (-15 -3043 ((-1148 |#1|) (-1148 |#1|))) (-15 -2703 ((-1148 |#1|) (-1148 (-1148 |#1|)))) (-15 -1376 ((-1148 |#1|) (-1148 |#1|))) (-15 -3656 ((-1148 |#1|) (-1148 |#1|))) (-15 -2021 ((-1148 |#1|) (-1148 |#1|))) (-15 -1337 ((-1148 |#1|) (-1148 |#1|) (-562) (-562))) (-15 -3637 ((-1148 |#1|) (-562) (-562) (-1148 |#1|))) (-15 -1628 ((-1148 |#1|) (-562) (-562) (-1148 |#1|))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -3081 ((-1148 |#1|) |#1| (-1148 |#1|))) (-15 -2254 ((-1148 |#1|) |#1| (-1 (-1148 |#1|)))) (-15 -2857 ((-1148 |#1|) (-1148 (-1148 |#1|)))) (-15 -1764 ((-1148 |#1|) (-406 (-562)) (-1148 |#1|)))) |%noBranch|) (IF (|has| |#1| (-362)) (PROGN (-15 -4274 ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -3330 ((-1148 |#1|) (-1 |#1| (-562)) |#1| (-1 (-1148 |#1|)))) (-15 -3185 ((-1148 |#1|) |#1| (-1148 |#1|)))) |%noBranch|))
+((-2987 (((-1148 |#1|) (-1148 |#1|)) 57)) (-4098 (((-1148 |#1|) (-1148 |#1|)) 39)) (-4206 (((-1148 |#1|) (-1148 |#1|)) 53)) (-4074 (((-1148 |#1|) (-1148 |#1|)) 35)) (-3013 (((-1148 |#1|) (-1148 |#1|)) 60)) (-4120 (((-1148 |#1|) (-1148 |#1|)) 42)) (-4366 (((-1148 |#1|) (-1148 |#1|)) 31)) (-3430 (((-1148 |#1|) (-1148 |#1|)) 27)) (-3022 (((-1148 |#1|) (-1148 |#1|)) 61)) (-4130 (((-1148 |#1|) (-1148 |#1|)) 43)) (-3000 (((-1148 |#1|) (-1148 |#1|)) 58)) (-4108 (((-1148 |#1|) (-1148 |#1|)) 40)) (-2977 (((-1148 |#1|) (-1148 |#1|)) 55)) (-4087 (((-1148 |#1|) (-1148 |#1|)) 37)) (-3054 (((-1148 |#1|) (-1148 |#1|)) 65)) (-4165 (((-1148 |#1|) (-1148 |#1|)) 47)) (-3033 (((-1148 |#1|) (-1148 |#1|)) 63)) (-4139 (((-1148 |#1|) (-1148 |#1|)) 45)) (-3077 (((-1148 |#1|) (-1148 |#1|)) 68)) (-4183 (((-1148 |#1|) (-1148 |#1|)) 50)) (-1567 (((-1148 |#1|) (-1148 |#1|)) 69)) (-4195 (((-1148 |#1|) (-1148 |#1|)) 51)) (-3065 (((-1148 |#1|) (-1148 |#1|)) 67)) (-4175 (((-1148 |#1|) (-1148 |#1|)) 49)) (-3040 (((-1148 |#1|) (-1148 |#1|)) 66)) (-4151 (((-1148 |#1|) (-1148 |#1|)) 48)) (** (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 33)))
+(((-1153 |#1|) (-10 -7 (-15 -3430 ((-1148 |#1|) (-1148 |#1|))) (-15 -4366 ((-1148 |#1|) (-1148 |#1|))) (-15 ** ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -4074 ((-1148 |#1|) (-1148 |#1|))) (-15 -4087 ((-1148 |#1|) (-1148 |#1|))) (-15 -4098 ((-1148 |#1|) (-1148 |#1|))) (-15 -4108 ((-1148 |#1|) (-1148 |#1|))) (-15 -4120 ((-1148 |#1|) (-1148 |#1|))) (-15 -4130 ((-1148 |#1|) (-1148 |#1|))) (-15 -4139 ((-1148 |#1|) (-1148 |#1|))) (-15 -4151 ((-1148 |#1|) (-1148 |#1|))) (-15 -4165 ((-1148 |#1|) (-1148 |#1|))) (-15 -4175 ((-1148 |#1|) (-1148 |#1|))) (-15 -4183 ((-1148 |#1|) (-1148 |#1|))) (-15 -4195 ((-1148 |#1|) (-1148 |#1|))) (-15 -4206 ((-1148 |#1|) (-1148 |#1|))) (-15 -2977 ((-1148 |#1|) (-1148 |#1|))) (-15 -2987 ((-1148 |#1|) (-1148 |#1|))) (-15 -3000 ((-1148 |#1|) (-1148 |#1|))) (-15 -3013 ((-1148 |#1|) (-1148 |#1|))) (-15 -3022 ((-1148 |#1|) (-1148 |#1|))) (-15 -3033 ((-1148 |#1|) (-1148 |#1|))) (-15 -3040 ((-1148 |#1|) (-1148 |#1|))) (-15 -3054 ((-1148 |#1|) (-1148 |#1|))) (-15 -3065 ((-1148 |#1|) (-1148 |#1|))) (-15 -3077 ((-1148 |#1|) (-1148 |#1|))) (-15 -1567 ((-1148 |#1|) (-1148 |#1|)))) (-38 (-406 (-562)))) (T -1153))
+((-1567 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3077 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3065 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3054 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3040 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3033 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3022 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3013 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3000 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-2987 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-2977 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4206 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4195 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4183 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4175 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4165 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4151 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4139 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4130 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4120 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4108 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4098 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4087 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4074 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-4366 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))) (-3430 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1153 *3)))))
+(-10 -7 (-15 -3430 ((-1148 |#1|) (-1148 |#1|))) (-15 -4366 ((-1148 |#1|) (-1148 |#1|))) (-15 ** ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -4074 ((-1148 |#1|) (-1148 |#1|))) (-15 -4087 ((-1148 |#1|) (-1148 |#1|))) (-15 -4098 ((-1148 |#1|) (-1148 |#1|))) (-15 -4108 ((-1148 |#1|) (-1148 |#1|))) (-15 -4120 ((-1148 |#1|) (-1148 |#1|))) (-15 -4130 ((-1148 |#1|) (-1148 |#1|))) (-15 -4139 ((-1148 |#1|) (-1148 |#1|))) (-15 -4151 ((-1148 |#1|) (-1148 |#1|))) (-15 -4165 ((-1148 |#1|) (-1148 |#1|))) (-15 -4175 ((-1148 |#1|) (-1148 |#1|))) (-15 -4183 ((-1148 |#1|) (-1148 |#1|))) (-15 -4195 ((-1148 |#1|) (-1148 |#1|))) (-15 -4206 ((-1148 |#1|) (-1148 |#1|))) (-15 -2977 ((-1148 |#1|) (-1148 |#1|))) (-15 -2987 ((-1148 |#1|) (-1148 |#1|))) (-15 -3000 ((-1148 |#1|) (-1148 |#1|))) (-15 -3013 ((-1148 |#1|) (-1148 |#1|))) (-15 -3022 ((-1148 |#1|) (-1148 |#1|))) (-15 -3033 ((-1148 |#1|) (-1148 |#1|))) (-15 -3040 ((-1148 |#1|) (-1148 |#1|))) (-15 -3054 ((-1148 |#1|) (-1148 |#1|))) (-15 -3065 ((-1148 |#1|) (-1148 |#1|))) (-15 -3077 ((-1148 |#1|) (-1148 |#1|))) (-15 -1567 ((-1148 |#1|) (-1148 |#1|))))
+((-2987 (((-1148 |#1|) (-1148 |#1|)) 100)) (-4098 (((-1148 |#1|) (-1148 |#1|)) 64)) (-3920 (((-2 (|:| -4206 (-1148 |#1|)) (|:| -2977 (-1148 |#1|))) (-1148 |#1|)) 96)) (-4206 (((-1148 |#1|) (-1148 |#1|)) 97)) (-4293 (((-2 (|:| -4074 (-1148 |#1|)) (|:| -4087 (-1148 |#1|))) (-1148 |#1|)) 53)) (-4074 (((-1148 |#1|) (-1148 |#1|)) 54)) (-3013 (((-1148 |#1|) (-1148 |#1|)) 102)) (-4120 (((-1148 |#1|) (-1148 |#1|)) 71)) (-4366 (((-1148 |#1|) (-1148 |#1|)) 39)) (-3430 (((-1148 |#1|) (-1148 |#1|)) 36)) (-3022 (((-1148 |#1|) (-1148 |#1|)) 103)) (-4130 (((-1148 |#1|) (-1148 |#1|)) 72)) (-3000 (((-1148 |#1|) (-1148 |#1|)) 101)) (-4108 (((-1148 |#1|) (-1148 |#1|)) 67)) (-2977 (((-1148 |#1|) (-1148 |#1|)) 98)) (-4087 (((-1148 |#1|) (-1148 |#1|)) 55)) (-3054 (((-1148 |#1|) (-1148 |#1|)) 111)) (-4165 (((-1148 |#1|) (-1148 |#1|)) 86)) (-3033 (((-1148 |#1|) (-1148 |#1|)) 105)) (-4139 (((-1148 |#1|) (-1148 |#1|)) 82)) (-3077 (((-1148 |#1|) (-1148 |#1|)) 115)) (-4183 (((-1148 |#1|) (-1148 |#1|)) 90)) (-1567 (((-1148 |#1|) (-1148 |#1|)) 117)) (-4195 (((-1148 |#1|) (-1148 |#1|)) 92)) (-3065 (((-1148 |#1|) (-1148 |#1|)) 113)) (-4175 (((-1148 |#1|) (-1148 |#1|)) 88)) (-3040 (((-1148 |#1|) (-1148 |#1|)) 107)) (-4151 (((-1148 |#1|) (-1148 |#1|)) 84)) (** (((-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) 40)))
+(((-1154 |#1|) (-10 -7 (-15 -3430 ((-1148 |#1|) (-1148 |#1|))) (-15 -4366 ((-1148 |#1|) (-1148 |#1|))) (-15 ** ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -4293 ((-2 (|:| -4074 (-1148 |#1|)) (|:| -4087 (-1148 |#1|))) (-1148 |#1|))) (-15 -4074 ((-1148 |#1|) (-1148 |#1|))) (-15 -4087 ((-1148 |#1|) (-1148 |#1|))) (-15 -4098 ((-1148 |#1|) (-1148 |#1|))) (-15 -4108 ((-1148 |#1|) (-1148 |#1|))) (-15 -4120 ((-1148 |#1|) (-1148 |#1|))) (-15 -4130 ((-1148 |#1|) (-1148 |#1|))) (-15 -4139 ((-1148 |#1|) (-1148 |#1|))) (-15 -4151 ((-1148 |#1|) (-1148 |#1|))) (-15 -4165 ((-1148 |#1|) (-1148 |#1|))) (-15 -4175 ((-1148 |#1|) (-1148 |#1|))) (-15 -4183 ((-1148 |#1|) (-1148 |#1|))) (-15 -4195 ((-1148 |#1|) (-1148 |#1|))) (-15 -3920 ((-2 (|:| -4206 (-1148 |#1|)) (|:| -2977 (-1148 |#1|))) (-1148 |#1|))) (-15 -4206 ((-1148 |#1|) (-1148 |#1|))) (-15 -2977 ((-1148 |#1|) (-1148 |#1|))) (-15 -2987 ((-1148 |#1|) (-1148 |#1|))) (-15 -3000 ((-1148 |#1|) (-1148 |#1|))) (-15 -3013 ((-1148 |#1|) (-1148 |#1|))) (-15 -3022 ((-1148 |#1|) (-1148 |#1|))) (-15 -3033 ((-1148 |#1|) (-1148 |#1|))) (-15 -3040 ((-1148 |#1|) (-1148 |#1|))) (-15 -3054 ((-1148 |#1|) (-1148 |#1|))) (-15 -3065 ((-1148 |#1|) (-1148 |#1|))) (-15 -3077 ((-1148 |#1|) (-1148 |#1|))) (-15 -1567 ((-1148 |#1|) (-1148 |#1|)))) (-38 (-406 (-562)))) (T -1154))
+((-1567 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3077 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3065 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3054 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3040 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3033 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3022 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3013 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3000 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-2987 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-2977 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4206 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3920 (*1 *2 *3) (-12 (-4 *4 (-38 (-406 (-562)))) (-5 *2 (-2 (|:| -4206 (-1148 *4)) (|:| -2977 (-1148 *4)))) (-5 *1 (-1154 *4)) (-5 *3 (-1148 *4)))) (-4195 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4183 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4175 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4165 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4151 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4139 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4130 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4120 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4108 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4098 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4087 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4074 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4293 (*1 *2 *3) (-12 (-4 *4 (-38 (-406 (-562)))) (-5 *2 (-2 (|:| -4074 (-1148 *4)) (|:| -4087 (-1148 *4)))) (-5 *1 (-1154 *4)) (-5 *3 (-1148 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-4366 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))) (-3430 (*1 *2 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1154 *3)))))
+(-10 -7 (-15 -3430 ((-1148 |#1|) (-1148 |#1|))) (-15 -4366 ((-1148 |#1|) (-1148 |#1|))) (-15 ** ((-1148 |#1|) (-1148 |#1|) (-1148 |#1|))) (-15 -4293 ((-2 (|:| -4074 (-1148 |#1|)) (|:| -4087 (-1148 |#1|))) (-1148 |#1|))) (-15 -4074 ((-1148 |#1|) (-1148 |#1|))) (-15 -4087 ((-1148 |#1|) (-1148 |#1|))) (-15 -4098 ((-1148 |#1|) (-1148 |#1|))) (-15 -4108 ((-1148 |#1|) (-1148 |#1|))) (-15 -4120 ((-1148 |#1|) (-1148 |#1|))) (-15 -4130 ((-1148 |#1|) (-1148 |#1|))) (-15 -4139 ((-1148 |#1|) (-1148 |#1|))) (-15 -4151 ((-1148 |#1|) (-1148 |#1|))) (-15 -4165 ((-1148 |#1|) (-1148 |#1|))) (-15 -4175 ((-1148 |#1|) (-1148 |#1|))) (-15 -4183 ((-1148 |#1|) (-1148 |#1|))) (-15 -4195 ((-1148 |#1|) (-1148 |#1|))) (-15 -3920 ((-2 (|:| -4206 (-1148 |#1|)) (|:| -2977 (-1148 |#1|))) (-1148 |#1|))) (-15 -4206 ((-1148 |#1|) (-1148 |#1|))) (-15 -2977 ((-1148 |#1|) (-1148 |#1|))) (-15 -2987 ((-1148 |#1|) (-1148 |#1|))) (-15 -3000 ((-1148 |#1|) (-1148 |#1|))) (-15 -3013 ((-1148 |#1|) (-1148 |#1|))) (-15 -3022 ((-1148 |#1|) (-1148 |#1|))) (-15 -3033 ((-1148 |#1|) (-1148 |#1|))) (-15 -3040 ((-1148 |#1|) (-1148 |#1|))) (-15 -3054 ((-1148 |#1|) (-1148 |#1|))) (-15 -3065 ((-1148 |#1|) (-1148 |#1|))) (-15 -3077 ((-1148 |#1|) (-1148 |#1|))) (-15 -1567 ((-1148 |#1|) (-1148 |#1|))))
+((-2684 (((-953 |#2|) |#2| |#2|) 35)) (-2578 ((|#2| |#2| |#1|) 19 (|has| |#1| (-306)))))
+(((-1155 |#1| |#2|) (-10 -7 (-15 -2684 ((-953 |#2|) |#2| |#2|)) (IF (|has| |#1| (-306)) (-15 -2578 (|#2| |#2| |#1|)) |%noBranch|)) (-554) (-1232 |#1|)) (T -1155))
+((-2578 (*1 *2 *2 *3) (-12 (-4 *3 (-306)) (-4 *3 (-554)) (-5 *1 (-1155 *3 *2)) (-4 *2 (-1232 *3)))) (-2684 (*1 *2 *3 *3) (-12 (-4 *4 (-554)) (-5 *2 (-953 *3)) (-5 *1 (-1155 *4 *3)) (-4 *3 (-1232 *4)))))
+(-10 -7 (-15 -2684 ((-953 |#2|) |#2| |#2|)) (IF (|has| |#1| (-306)) (-15 -2578 (|#2| |#2| |#1|)) |%noBranch|))
+((-4041 (((-112) $ $) NIL)) (-3956 (($ $ (-639 (-766))) 66)) (-2962 (($) 25)) (-3023 (($ $) 41)) (-2687 (((-639 $) $) 50)) (-2896 (((-112) $) 16)) (-1740 (((-639 (-938 |#2|)) $) 73)) (-1795 (($ $) 67)) (-3491 (((-766) $) 36)) (-1458 (($) 24)) (-3379 (($ $ (-639 (-766)) (-938 |#2|)) 59) (($ $ (-639 (-766)) (-766)) 60) (($ $ (-766) (-938 |#2|)) 62)) (-4103 (($ $ $) 47) (($ (-639 $)) 49)) (-3327 (((-766) $) 74)) (-3179 (((-112) $) 15)) (-3696 (((-1150) $) NIL)) (-2416 (((-112) $) 17)) (-1709 (((-1112) $) NIL)) (-2875 (((-170) $) 72)) (-2652 (((-938 |#2|) $) 68)) (-2025 (((-766) $) 69)) (-3798 (((-112) $) 71)) (-1981 (($ $ (-639 (-766)) (-170)) 65)) (-2046 (($ $) 42)) (-4053 (((-857) $) 85)) (-2087 (($ $ (-639 (-766)) (-112)) 64)) (-3643 (((-639 $) $) 11)) (-1842 (($ $ (-766)) 35)) (-2009 (($ $) 31)) (-3726 (($ $ $ (-938 |#2|) (-766)) 55)) (-2867 (($ $ (-938 |#2|)) 54)) (-2753 (($ $ (-639 (-766)) (-938 |#2|)) 53) (($ $ (-639 (-766)) (-766)) 57) (((-766) $ (-938 |#2|)) 58)) (-1733 (((-112) $ $) 79)))
+(((-1156 |#1| |#2|) (-13 (-1092) (-10 -8 (-15 -3179 ((-112) $)) (-15 -2896 ((-112) $)) (-15 -2416 ((-112) $)) (-15 -1458 ($)) (-15 -2962 ($)) (-15 -2009 ($ $)) (-15 -1842 ($ $ (-766))) (-15 -3643 ((-639 $) $)) (-15 -3491 ((-766) $)) (-15 -3023 ($ $)) (-15 -2046 ($ $)) (-15 -4103 ($ $ $)) (-15 -4103 ($ (-639 $))) (-15 -2687 ((-639 $) $)) (-15 -2753 ($ $ (-639 (-766)) (-938 |#2|))) (-15 -2867 ($ $ (-938 |#2|))) (-15 -3726 ($ $ $ (-938 |#2|) (-766))) (-15 -3379 ($ $ (-639 (-766)) (-938 |#2|))) (-15 -2753 ($ $ (-639 (-766)) (-766))) (-15 -3379 ($ $ (-639 (-766)) (-766))) (-15 -2753 ((-766) $ (-938 |#2|))) (-15 -3379 ($ $ (-766) (-938 |#2|))) (-15 -2087 ($ $ (-639 (-766)) (-112))) (-15 -1981 ($ $ (-639 (-766)) (-170))) (-15 -3956 ($ $ (-639 (-766)))) (-15 -2652 ((-938 |#2|) $)) (-15 -2025 ((-766) $)) (-15 -3798 ((-112) $)) (-15 -2875 ((-170) $)) (-15 -3327 ((-766) $)) (-15 -1795 ($ $)) (-15 -1740 ((-639 (-938 |#2|)) $)))) (-916) (-1044)) (T -1156))
+((-3179 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2896 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2416 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-1458 (*1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-2962 (*1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-2009 (*1 *1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-1842 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-3643 (*1 *2 *1) (-12 (-5 *2 (-639 (-1156 *3 *4))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-3491 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-3023 (*1 *1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-2046 (*1 *1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-4103 (*1 *1 *1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-4103 (*1 *1 *2) (-12 (-5 *2 (-639 (-1156 *3 *4))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2687 (*1 *2 *1) (-12 (-5 *2 (-639 (-1156 *3 *4))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2753 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-766))) (-5 *3 (-938 *5)) (-4 *5 (-1044)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))) (-2867 (*1 *1 *1 *2) (-12 (-5 *2 (-938 *4)) (-4 *4 (-1044)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)))) (-3726 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-938 *5)) (-5 *3 (-766)) (-4 *5 (-1044)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))) (-3379 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-766))) (-5 *3 (-938 *5)) (-4 *5 (-1044)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))) (-2753 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-766))) (-5 *3 (-766)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)) (-4 *5 (-1044)))) (-3379 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-766))) (-5 *3 (-766)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)) (-4 *5 (-1044)))) (-2753 (*1 *2 *1 *3) (-12 (-5 *3 (-938 *5)) (-4 *5 (-1044)) (-5 *2 (-766)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))) (-3379 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *3 (-938 *5)) (-4 *5 (-1044)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))) (-2087 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-766))) (-5 *3 (-112)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)) (-4 *5 (-1044)))) (-1981 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-639 (-766))) (-5 *3 (-170)) (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)) (-4 *5 (-1044)))) (-3956 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-766))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2652 (*1 *2 *1) (-12 (-5 *2 (-938 *4)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2025 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-3798 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-2875 (*1 *2 *1) (-12 (-5 *2 (-170)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-3327 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))) (-1795 (*1 *1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))) (-1740 (*1 *2 *1) (-12 (-5 *2 (-639 (-938 *4))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916)) (-4 *4 (-1044)))))
+(-13 (-1092) (-10 -8 (-15 -3179 ((-112) $)) (-15 -2896 ((-112) $)) (-15 -2416 ((-112) $)) (-15 -1458 ($)) (-15 -2962 ($)) (-15 -2009 ($ $)) (-15 -1842 ($ $ (-766))) (-15 -3643 ((-639 $) $)) (-15 -3491 ((-766) $)) (-15 -3023 ($ $)) (-15 -2046 ($ $)) (-15 -4103 ($ $ $)) (-15 -4103 ($ (-639 $))) (-15 -2687 ((-639 $) $)) (-15 -2753 ($ $ (-639 (-766)) (-938 |#2|))) (-15 -2867 ($ $ (-938 |#2|))) (-15 -3726 ($ $ $ (-938 |#2|) (-766))) (-15 -3379 ($ $ (-639 (-766)) (-938 |#2|))) (-15 -2753 ($ $ (-639 (-766)) (-766))) (-15 -3379 ($ $ (-639 (-766)) (-766))) (-15 -2753 ((-766) $ (-938 |#2|))) (-15 -3379 ($ $ (-766) (-938 |#2|))) (-15 -2087 ($ $ (-639 (-766)) (-112))) (-15 -1981 ($ $ (-639 (-766)) (-170))) (-15 -3956 ($ $ (-639 (-766)))) (-15 -2652 ((-938 |#2|) $)) (-15 -2025 ((-766) $)) (-15 -3798 ((-112) $)) (-15 -2875 ((-170) $)) (-15 -3327 ((-766) $)) (-15 -1795 ($ $)) (-15 -1740 ((-639 (-938 |#2|)) $))))
+((-4041 (((-112) $ $) NIL)) (-4330 ((|#2| $) 11)) (-4318 ((|#1| $) 10)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4064 (($ |#1| |#2|) 9)) (-4053 (((-857) $) 16)) (-1733 (((-112) $ $) NIL)))
+(((-1157 |#1| |#2|) (-13 (-1092) (-10 -8 (-15 -4064 ($ |#1| |#2|)) (-15 -4318 (|#1| $)) (-15 -4330 (|#2| $)))) (-1092) (-1092)) (T -1157))
+((-4064 (*1 *1 *2 *3) (-12 (-5 *1 (-1157 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-4318 (*1 *2 *1) (-12 (-4 *2 (-1092)) (-5 *1 (-1157 *2 *3)) (-4 *3 (-1092)))) (-4330 (*1 *2 *1) (-12 (-4 *2 (-1092)) (-5 *1 (-1157 *3 *2)) (-4 *3 (-1092)))))
+(-13 (-1092) (-10 -8 (-15 -4064 ($ |#1| |#2|)) (-15 -4318 (|#1| $)) (-15 -4330 (|#2| $))))
+((-4041 (((-112) $ $) NIL)) (-1820 (((-1127) $) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-1158) (-13 (-1075) (-10 -8 (-15 -1820 ((-1127) $))))) (T -1158))
((-1820 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1158)))))
(-13 (-1075) (-10 -8 (-15 -1820 ((-1127) $))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-4246 (((-1166 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-306)) (|has| |#1| (-362))))) (-1402 (((-639 (-1074)) $) NIL)) (-2444 (((-1168) $) 11)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-2796 (($ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-4370 (((-112) $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-2557 (($ $ (-562)) NIL) (($ $ (-562) (-562)) 66)) (-1938 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) NIL)) (-4226 (((-1166 |#1| |#2| |#3|) $) 36)) (-3006 (((-3 (-1166 |#1| |#2| |#3|) "failed") $) 29)) (-1469 (((-1166 |#1| |#2| |#3|) $) 30)) (-2988 (($ $) 107 (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) 83 (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-2798 (($ $) NIL (|has| |#1| (-362)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1643 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4207 (($ $) 103 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 79 (|has| |#1| (-38 (-406 (-562)))))) (-2277 (((-562) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-1503 (($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) NIL)) (-3014 (($ $) 111 (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) 87 (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-1166 |#1| |#2| |#3|) "failed") $) 31) (((-3 (-1168) "failed") $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-1168))) (|has| |#1| (-362)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362)))) (((-3 (-562) "failed") $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362))))) (-3961 (((-1166 |#1| |#2| |#3|) $) 131) (((-1168) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-1168))) (|has| |#1| (-362)))) (((-406 (-562)) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362)))) (((-562) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362))))) (-2724 (($ $) 34) (($ (-562) $) 35)) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1601 (($ $) NIL)) (-2406 (((-683 (-1166 |#1| |#2| |#3|)) (-683 $)) NIL (|has| |#1| (-362))) (((-2 (|:| -1545 (-683 (-1166 |#1| |#2| |#3|))) (|:| |vec| (-1256 (-1166 |#1| |#2| |#3|)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-362))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-635 (-562))) (|has| |#1| (-362)))) (((-683 (-562)) (-683 $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-635 (-562))) (|has| |#1| (-362))))) (-3668 (((-3 $ "failed") $) 48)) (-1493 (((-406 (-947 |#1|)) $ (-562)) 65 (|has| |#1| (-554))) (((-406 (-947 |#1|)) $ (-562) (-562)) 67 (|has| |#1| (-554)))) (-1448 (($) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-544)) (|has| |#1| (-362))))) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-2717 (((-112) $) NIL (|has| |#1| (-362)))) (-3519 (((-112) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-1756 (((-112) $) 25)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-881 (-378))) (|has| |#1| (-362)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-881 (-562))) (|has| |#1| (-362))))) (-1900 (((-562) $) NIL) (((-562) $ (-562)) 24)) (-1957 (((-112) $) NIL)) (-3425 (($ $) NIL (|has| |#1| (-362)))) (-4065 (((-1166 |#1| |#2| |#3|) $) 38 (|has| |#1| (-362)))) (-1891 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3699 (((-3 $ "failed") $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1143)) (|has| |#1| (-362))))) (-3392 (((-112) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-3374 (($ $ (-916)) NIL)) (-4222 (($ (-1 |#1| (-562)) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-562)) 18) (($ $ (-1074) (-562)) NIL) (($ $ (-639 (-1074)) (-639 (-562))) NIL)) (-1551 (($ $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-2993 (($ $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-362)))) (-4365 (($ $) 72 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1485 (($ (-562) (-1166 |#1| |#2| |#3|)) 33)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-2667 (($ $) 70 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 71 (|has| |#1| (-38 (-406 (-562)))))) (-3729 (($) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1143)) (|has| |#1| (-362))) CONST)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-2736 (($ $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-306)) (|has| |#1| (-362))))) (-4014 (((-1166 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-544)) (|has| |#1| (-362))))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1353 (($ $ (-562)) 145)) (-1762 (((-3 $ "failed") $ $) 49 (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) 73 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-562))))) (($ $ (-1168) (-1166 |#1| |#2| |#3|)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-513 (-1168) (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-639 (-1168)) (-639 (-1166 |#1| |#2| |#3|))) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-513 (-1168) (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-639 (-293 (-1166 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-308 (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-293 (-1166 |#1| |#2| |#3|))) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-308 (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-308 (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-639 (-1166 |#1| |#2| |#3|)) (-639 (-1166 |#1| |#2| |#3|))) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-308 (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362))))) (-1577 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-562)) NIL) (($ $ $) 54 (|has| (-562) (-1104))) (($ $ (-1166 |#1| |#2| |#3|)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-285 (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362))))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-1 (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|))) NIL (|has| |#1| (-362))) (($ $ (-1 (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|)) (-766)) NIL (|has| |#1| (-362))) (($ $ (-1252 |#2|)) 51) (($ $ (-766)) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) 50 (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168) (-766)) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-639 (-1168))) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))))) (-3658 (($ $) NIL (|has| |#1| (-362)))) (-4076 (((-1166 |#1| |#2| |#3|) $) 41 (|has| |#1| (-362)))) (-3598 (((-562) $) 37)) (-3023 (($ $) 113 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 89 (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) 109 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 85 (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) 105 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 81 (|has| |#1| (-38 (-406 (-562)))))) (-4208 (((-535) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-610 (-535))) (|has| |#1| (-362)))) (((-378) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1017)) (|has| |#1| (-362)))) (((-224) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1017)) (|has| |#1| (-362)))) (((-887 (-378)) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-610 (-887 (-378)))) (|has| |#1| (-362)))) (((-887 (-562)) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-610 (-887 (-562)))) (|has| |#1| (-362))))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-2256 (($ $) NIL)) (-4054 (((-857) $) 149) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ (-1166 |#1| |#2| |#3|)) 27) (($ (-1252 |#2|)) 23) (($ (-1168)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-1168))) (|has| |#1| (-362)))) (($ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554)))) (($ (-406 (-562))) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362))) (|has| |#1| (-38 (-406 (-562))))))) (-3906 ((|#1| $ (-562)) 68)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-144)) (|has| |#1| (-362))) (|has| |#1| (-144))))) (-2579 (((-766)) NIL)) (-2328 ((|#1| $) 12)) (-2604 (((-1166 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-544)) (|has| |#1| (-362))))) (-3055 (($ $) 119 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 95 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-3033 (($ $) 115 (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) 91 (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) 123 (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) 99 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-562)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-562)))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) 125 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 101 (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) 121 (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) 97 (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) 117 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 93 (|has| |#1| (-38 (-406 (-562)))))) (-3526 (($ $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-2286 (($) 20 T CONST)) (-2294 (($) 16 T CONST)) (-3114 (($ $ (-1 (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|))) NIL (|has| |#1| (-362))) (($ $ (-1 (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|)) (-766)) NIL (|has| |#1| (-362))) (($ $ (-766)) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168) (-766)) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-639 (-1168))) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))))) (-1798 (((-112) $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1772 (((-112) $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1759 (((-112) $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) 44 (|has| |#1| (-362))) (($ (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|)) 45 (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 21)) (** (($ $ (-916)) NIL) (($ $ (-766)) 53) (($ $ (-562)) NIL (|has| |#1| (-362))) (($ $ $) 74 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 128 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 32) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1166 |#1| |#2| |#3|)) 43 (|has| |#1| (-362))) (($ (-1166 |#1| |#2| |#3|) $) 42 (|has| |#1| (-362))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
-(((-1159 |#1| |#2| |#3|) (-13 (-1218 |#1| (-1166 |#1| |#2| |#3|)) (-10 -8 (-15 -4054 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -1159))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1159 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1159 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-2667 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1159 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
-(-13 (-1218 |#1| (-1166 |#1| |#2| |#3|)) (-10 -8 (-15 -4054 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2300 (((-1166 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-306)) (|has| |#1| (-362))))) (-1401 (((-639 (-1074)) $) NIL)) (-2443 (((-1168) $) 11)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-1965 (($ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-4102 (((-112) $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-1302 (($ $ (-562)) NIL) (($ $ (-562) (-562)) 66)) (-4196 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) NIL)) (-2108 (((-1166 |#1| |#2| |#3|) $) 36)) (-3357 (((-3 (-1166 |#1| |#2| |#3|) "failed") $) 29)) (-1470 (((-1166 |#1| |#2| |#3|) $) 30)) (-2987 (($ $) 107 (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) 83 (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-1977 (($ $) NIL (|has| |#1| (-362)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1644 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4206 (($ $) 103 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 79 (|has| |#1| (-38 (-406 (-562)))))) (-1587 (((-562) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-1503 (($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) NIL)) (-3013 (($ $) 111 (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) 87 (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-1166 |#1| |#2| |#3|) "failed") $) 31) (((-3 (-1168) "failed") $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-1168))) (|has| |#1| (-362)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362)))) (((-3 (-562) "failed") $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362))))) (-3960 (((-1166 |#1| |#2| |#3|) $) 131) (((-1168) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-1168))) (|has| |#1| (-362)))) (((-406 (-562)) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362)))) (((-562) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362))))) (-2449 (($ $) 34) (($ (-562) $) 35)) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-1600 (($ $) NIL)) (-3449 (((-683 (-1166 |#1| |#2| |#3|)) (-683 $)) NIL (|has| |#1| (-362))) (((-2 (|:| -1767 (-683 (-1166 |#1| |#2| |#3|))) (|:| |vec| (-1256 (-1166 |#1| |#2| |#3|)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-362))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-635 (-562))) (|has| |#1| (-362)))) (((-683 (-562)) (-683 $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-635 (-562))) (|has| |#1| (-362))))) (-1694 (((-3 $ "failed") $) 48)) (-2547 (((-406 (-947 |#1|)) $ (-562)) 65 (|has| |#1| (-554))) (((-406 (-947 |#1|)) $ (-562) (-562)) 67 (|has| |#1| (-554)))) (-1447 (($) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-544)) (|has| |#1| (-362))))) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-3521 (((-112) $) NIL (|has| |#1| (-362)))) (-2696 (((-112) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-2965 (((-112) $) 25)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-881 (-378))) (|has| |#1| (-362)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-881 (-562))) (|has| |#1| (-362))))) (-1993 (((-562) $) NIL) (((-562) $ (-562)) 24)) (-4367 (((-112) $) NIL)) (-2957 (($ $) NIL (|has| |#1| (-362)))) (-4063 (((-1166 |#1| |#2| |#3|) $) 38 (|has| |#1| (-362)))) (-1895 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3828 (((-3 $ "failed") $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1143)) (|has| |#1| (-362))))) (-3855 (((-112) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-3662 (($ $ (-916)) NIL)) (-2064 (($ (-1 |#1| (-562)) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-562)) 18) (($ $ (-1074) (-562)) NIL) (($ $ (-639 (-1074)) (-639 (-562))) NIL)) (-1551 (($ $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-2993 (($ $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-362)))) (-4366 (($ $) 72 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1487 (($ (-562) (-1166 |#1| |#2| |#3|)) 33)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-3081 (($ $) 70 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 71 (|has| |#1| (-38 (-406 (-562)))))) (-3730 (($) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1143)) (|has| |#1| (-362))) CONST)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-2561 (($ $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-306)) (|has| |#1| (-362))))) (-3870 (((-1166 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-544)) (|has| |#1| (-362))))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-4316 (($ $ (-562)) 145)) (-1762 (((-3 $ "failed") $ $) 49 (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) 73 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-562))))) (($ $ (-1168) (-1166 |#1| |#2| |#3|)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-513 (-1168) (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-639 (-1168)) (-639 (-1166 |#1| |#2| |#3|))) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-513 (-1168) (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-639 (-293 (-1166 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-308 (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-293 (-1166 |#1| |#2| |#3|))) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-308 (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-308 (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-639 (-1166 |#1| |#2| |#3|)) (-639 (-1166 |#1| |#2| |#3|))) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-308 (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362))))) (-2044 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-562)) NIL) (($ $ $) 54 (|has| (-562) (-1104))) (($ $ (-1166 |#1| |#2| |#3|)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-285 (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|))) (|has| |#1| (-362))))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-1 (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|))) NIL (|has| |#1| (-362))) (($ $ (-1 (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|)) (-766)) NIL (|has| |#1| (-362))) (($ $ (-1252 |#2|)) 51) (($ $ (-766)) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) 50 (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168) (-766)) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-639 (-1168))) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))))) (-1580 (($ $) NIL (|has| |#1| (-362)))) (-4079 (((-1166 |#1| |#2| |#3|) $) 41 (|has| |#1| (-362)))) (-2250 (((-562) $) 37)) (-3022 (($ $) 113 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 89 (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) 109 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 85 (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) 105 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 81 (|has| |#1| (-38 (-406 (-562)))))) (-4208 (((-535) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-610 (-535))) (|has| |#1| (-362)))) (((-378) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1017)) (|has| |#1| (-362)))) (((-224) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1017)) (|has| |#1| (-362)))) (((-887 (-378)) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-610 (-887 (-378)))) (|has| |#1| (-362)))) (((-887 (-562)) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-610 (-887 (-562)))) (|has| |#1| (-362))))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-1345 (($ $) NIL)) (-4053 (((-857) $) 149) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ (-1166 |#1| |#2| |#3|)) 27) (($ (-1252 |#2|)) 23) (($ (-1168)) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-1168))) (|has| |#1| (-362)))) (($ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554)))) (($ (-406 (-562))) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362))) (|has| |#1| (-38 (-406 (-562))))))) (-2266 ((|#1| $ (-562)) 68)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-144)) (|has| |#1| (-362))) (|has| |#1| (-144))))) (-1568 (((-766)) NIL)) (-2328 ((|#1| $) 12)) (-3636 (((-1166 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-544)) (|has| |#1| (-362))))) (-3054 (($ $) 119 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 95 (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-3033 (($ $) 115 (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) 91 (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) 123 (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) 99 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-562)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-562)))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) 125 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 101 (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) 121 (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) 97 (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) 117 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 93 (|has| |#1| (-38 (-406 (-562)))))) (-2757 (($ $) NIL (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-2285 (($) 20 T CONST)) (-2294 (($) 16 T CONST)) (-3113 (($ $ (-1 (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|))) NIL (|has| |#1| (-362))) (($ $ (-1 (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|)) (-766)) NIL (|has| |#1| (-362))) (($ $ (-766)) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168) (-766)) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-639 (-1168))) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))))) (-1798 (((-112) $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1771 (((-112) $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1761 (((-112) $ $) NIL (-4037 (-12 (|has| (-1166 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1166 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) 44 (|has| |#1| (-362))) (($ (-1166 |#1| |#2| |#3|) (-1166 |#1| |#2| |#3|)) 45 (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 21)) (** (($ $ (-916)) NIL) (($ $ (-766)) 53) (($ $ (-562)) NIL (|has| |#1| (-362))) (($ $ $) 74 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 128 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 32) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1166 |#1| |#2| |#3|)) 43 (|has| |#1| (-362))) (($ (-1166 |#1| |#2| |#3|) $) 42 (|has| |#1| (-362))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+(((-1159 |#1| |#2| |#3|) (-13 (-1218 |#1| (-1166 |#1| |#2| |#3|)) (-10 -8 (-15 -4053 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -1159))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1159 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1159 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-3081 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1159 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
+(-13 (-1218 |#1| (-1166 |#1| |#2| |#3|)) (-10 -8 (-15 -4053 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|)))
((-1625 ((|#2| |#2| (-1084 |#2|)) 26) ((|#2| |#2| (-1168)) 28)))
(((-1160 |#1| |#2|) (-10 -7 (-15 -1625 (|#2| |#2| (-1168))) (-15 -1625 (|#2| |#2| (-1084 |#2|)))) (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-429 |#1|) (-159) (-27) (-1192))) (T -1160))
((-1625 (*1 *2 *2 *3) (-12 (-5 *3 (-1084 *2)) (-4 *2 (-13 (-429 *4) (-159) (-27) (-1192))) (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1160 *4 *2)))) (-1625 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1160 *4 *2)) (-4 *2 (-13 (-429 *4) (-159) (-27) (-1192))))))
@@ -4769,184 +4769,184 @@ NIL
(((-1162 |#1| |#2|) (-10 -7 (-15 -4152 ((-1164 |#2|) (-1 |#2| |#1|) (-1164 |#1|)))) (-1044) (-1044)) (T -1162))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1164 *5)) (-4 *5 (-1044)) (-4 *6 (-1044)) (-5 *2 (-1164 *6)) (-5 *1 (-1162 *5 *6)))))
(-10 -7 (-15 -4152 ((-1164 |#2|) (-1 |#2| |#1|) (-1164 |#1|))))
-((-2921 (((-417 (-1164 (-406 |#4|))) (-1164 (-406 |#4|))) 51)) (-1635 (((-417 (-1164 (-406 |#4|))) (-1164 (-406 |#4|))) 52)))
-(((-1163 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1635 ((-417 (-1164 (-406 |#4|))) (-1164 (-406 |#4|)))) (-15 -2921 ((-417 (-1164 (-406 |#4|))) (-1164 (-406 |#4|))))) (-788) (-845) (-451) (-944 |#3| |#1| |#2|)) (T -1163))
-((-2921 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-451)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-417 (-1164 (-406 *7)))) (-5 *1 (-1163 *4 *5 *6 *7)) (-5 *3 (-1164 (-406 *7))))) (-1635 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-451)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-417 (-1164 (-406 *7)))) (-5 *1 (-1163 *4 *5 *6 *7)) (-5 *3 (-1164 (-406 *7))))))
-(-10 -7 (-15 -1635 ((-417 (-1164 (-406 |#4|))) (-1164 (-406 |#4|)))) (-15 -2921 ((-417 (-1164 (-406 |#4|))) (-1164 (-406 |#4|)))))
-((-4041 (((-112) $ $) 136)) (-1952 (((-112) $) 27)) (-2844 (((-1256 |#1|) $ (-766)) NIL)) (-1402 (((-639 (-1074)) $) NIL)) (-2427 (($ (-1164 |#1|)) NIL)) (-1599 (((-1164 $) $ (-1074)) 58) (((-1164 |#1|) $) 47)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) 131 (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 (-1074))) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3258 (($ $ $) 125 (|has| |#1| (-554)))) (-3026 (((-417 (-1164 $)) (-1164 $)) 71 (|has| |#1| (-904)))) (-2798 (($ $) NIL (|has| |#1| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 91 (|has| |#1| (-904)))) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-2897 (($ $ (-766)) 39)) (-3028 (($ $ (-766)) 40)) (-4157 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-451)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-1074) "failed") $) NIL)) (-3961 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-1074) $) NIL)) (-2835 (($ $ $ (-1074)) NIL (|has| |#1| (-171))) ((|#1| $ $) 127 (|has| |#1| (-171)))) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1601 (($ $) 56)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-4267 (($ $ $) 103)) (-2375 (($ $ $) NIL (|has| |#1| (-554)))) (-2622 (((-2 (|:| -4221 |#1|) (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-554)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-1498 (($ $) 132 (|has| |#1| (-451))) (($ $ (-1074)) NIL (|has| |#1| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#1| (-904)))) (-3122 (($ $ |#1| (-766) $) 45)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1074) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1074) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1995 (((-857) $ (-857)) 116)) (-1900 (((-766) $ $) NIL (|has| |#1| (-554)))) (-1957 (((-112) $) 30)) (-1694 (((-766) $) NIL)) (-3699 (((-3 $ "failed") $) NIL (|has| |#1| (-1143)))) (-1390 (($ (-1164 |#1|) (-1074)) 49) (($ (-1164 $) (-1074)) 65)) (-3374 (($ $ (-766)) 32)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-766)) 63) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ (-1074)) NIL) (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 120)) (-2076 (((-766) $) NIL) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2836 (($ (-1 (-766) (-766)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4298 (((-1164 |#1|) $) NIL)) (-3372 (((-3 (-1074) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) 52)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-2913 (((-1150) $) NIL)) (-3594 (((-2 (|:| -2097 $) (|:| -2264 $)) $ (-766)) 38)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| (-1074)) (|:| -1960 (-766))) "failed") $) NIL)) (-2667 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3729 (($) NIL (|has| |#1| (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) 31)) (-1547 ((|#1| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 79 (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) 134 (|has| |#1| (-451)))) (-3348 (($ $ (-766) |#1| $) 98)) (-3986 (((-417 (-1164 $)) (-1164 $)) 77 (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) 76 (|has| |#1| (-904)))) (-1635 (((-417 $) $) 84 (|has| |#1| (-904)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ |#1|) 130 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 99 (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1074) |#1|) NIL) (($ $ (-639 (-1074)) (-639 |#1|)) NIL) (($ $ (-1074) $) NIL) (($ $ (-639 (-1074)) (-639 $)) NIL)) (-1577 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ |#1|) 118) (($ $ $) 119) (((-406 $) (-406 $) (-406 $)) NIL (|has| |#1| (-554))) ((|#1| (-406 $) |#1|) NIL (|has| |#1| (-362))) (((-406 $) $ (-406 $)) NIL (|has| |#1| (-554)))) (-1530 (((-3 $ "failed") $ (-766)) 35)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 137 (|has| |#1| (-362)))) (-2455 (($ $ (-1074)) NIL (|has| |#1| (-171))) ((|#1| $) 123 (|has| |#1| (-171)))) (-4029 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3598 (((-766) $) 54) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-1074) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-3900 ((|#1| $) 129 (|has| |#1| (-451))) (($ $ (-1074)) NIL (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-3586 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554))) (((-3 (-406 $) "failed") (-406 $) $) NIL (|has| |#1| (-554)))) (-4054 (((-857) $) 117) (($ (-562)) NIL) (($ |#1|) 53) (($ (-1074)) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-766)) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) 25 (|has| |#1| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2286 (($) 15 T CONST)) (-2294 (($) 16 T CONST)) (-3114 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) 96)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) 138 (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 66)) (** (($ $ (-916)) 14) (($ $ (-766)) 12)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 24) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 101) (($ $ |#1|) NIL)))
-(((-1164 |#1|) (-13 (-1232 |#1|) (-10 -8 (-15 -1995 ((-857) $ (-857))) (-15 -3348 ($ $ (-766) |#1| $)))) (-1044)) (T -1164))
-((-1995 (*1 *2 *1 *2) (-12 (-5 *2 (-857)) (-5 *1 (-1164 *3)) (-4 *3 (-1044)))) (-3348 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1164 *3)) (-4 *3 (-1044)))))
-(-13 (-1232 |#1|) (-10 -8 (-15 -1995 ((-857) $ (-857))) (-15 -3348 ($ $ (-766) |#1| $))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1402 (((-639 (-1074)) $) NIL)) (-2444 (((-1168) $) 11)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-2557 (($ $ (-406 (-562))) NIL) (($ $ (-406 (-562)) (-406 (-562))) NIL)) (-1938 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) NIL)) (-2988 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL (|has| |#1| (-362)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1643 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4207 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) NIL)) (-3014 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-1159 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1166 |#1| |#2| |#3|) "failed") $) 36)) (-3961 (((-1159 |#1| |#2| |#3|) $) NIL) (((-1166 |#1| |#2| |#3|) $) NIL)) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-3952 (((-406 (-562)) $) 55)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-1499 (($ (-406 (-562)) (-1159 |#1| |#2| |#3|)) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-2717 (((-112) $) NIL (|has| |#1| (-362)))) (-1756 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-406 (-562)) $) NIL) (((-406 (-562)) $ (-406 (-562))) NIL)) (-1957 (((-112) $) NIL)) (-1891 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3374 (($ $ (-916)) NIL) (($ $ (-406 (-562))) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-406 (-562))) 20) (($ $ (-1074) (-406 (-562))) NIL) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4365 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-4098 (((-1159 |#1| |#2| |#3|) $) 41)) (-2287 (((-3 (-1159 |#1| |#2| |#3|) "failed") $) NIL)) (-1485 (((-1159 |#1| |#2| |#3|) $) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-2667 (($ $) 39 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 40 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1353 (($ $ (-406 (-562))) NIL)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-1577 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) NIL) (($ $ $) NIL (|has| (-406 (-562)) (-1104)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $ (-1252 |#2|)) 38)) (-3598 (((-406 (-562)) $) NIL)) (-3023 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) NIL)) (-4054 (((-857) $) 58) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ (-1159 |#1| |#2| |#3|)) 30) (($ (-1166 |#1| |#2| |#3|)) 31) (($ (-1252 |#2|)) 26) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554)))) (-3906 ((|#1| $ (-406 (-562))) NIL)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-2328 ((|#1| $) 12)) (-3055 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) 22 T CONST)) (-2294 (($) 16 T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 24)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
-(((-1165 |#1| |#2| |#3|) (-13 (-1239 |#1| (-1159 |#1| |#2| |#3|)) (-1033 (-1166 |#1| |#2| |#3|)) (-612 (-1252 |#2|)) (-10 -8 (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -1165))
-((-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1165 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-2667 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1165 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
-(-13 (-1239 |#1| (-1159 |#1| |#2| |#3|)) (-1033 (-1166 |#1| |#2| |#3|)) (-612 (-1252 |#2|)) (-10 -8 (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 124)) (-1402 (((-639 (-1074)) $) NIL)) (-2444 (((-1168) $) 115)) (-2004 (((-1229 |#2| |#1|) $ (-766)) 62)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-2557 (($ $ (-766)) 78) (($ $ (-766) (-766)) 75)) (-1938 (((-1148 (-2 (|:| |k| (-766)) (|:| |c| |#1|))) $) 101)) (-2988 (($ $) 168 (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1643 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4207 (($ $) 164 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-1148 (-2 (|:| |k| (-766)) (|:| |c| |#1|)))) 114) (($ (-1148 |#1|)) 109)) (-3014 (($ $) 172 (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) 148 (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) NIL T CONST)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) 23)) (-2834 (($ $) 26)) (-1454 (((-947 |#1|) $ (-766)) 74) (((-947 |#1|) $ (-766) (-766)) 76)) (-1756 (((-112) $) 119)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-766) $) 121) (((-766) $ (-766)) 123)) (-1957 (((-112) $) NIL)) (-1891 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3374 (($ $ (-916)) NIL)) (-4222 (($ (-1 |#1| (-562)) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-766)) 13) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4365 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-2667 (($ $) 128 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 129 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-1353 (($ $ (-766)) 15)) (-1762 (((-3 $ "failed") $ $) 24 (|has| |#1| (-554)))) (-3430 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-766)))))) (-2343 ((|#1| $ (-766)) 118) (($ $ $) 127 (|has| (-766) (-1104)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $) 27 (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $ (-1252 |#2|)) 29)) (-3598 (((-766) $) NIL)) (-3023 (($ $) 174 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 150 (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) 170 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) 166 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) NIL)) (-4054 (((-857) $) 200) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554))) (($ |#1|) 125 (|has| |#1| (-171))) (($ (-1229 |#2| |#1|)) 50) (($ (-1252 |#2|)) 32)) (-4358 (((-1148 |#1|) $) 97)) (-3906 ((|#1| $ (-766)) 117)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-2328 ((|#1| $) 53)) (-3055 (($ $) 180 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 156 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) 176 (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) 152 (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) 184 (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) 160 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-766)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-766)))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) 186 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 162 (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) 182 (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) 158 (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) 178 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 154 (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) 17 T CONST)) (-2294 (($) 19 T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) 193)) (-1835 (($ $ $) 31)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ |#1|) 197 (|has| |#1| (-362))) (($ $ $) 133 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 136 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 131) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
-(((-1166 |#1| |#2| |#3|) (-13 (-1247 |#1|) (-10 -8 (-15 -4054 ($ (-1229 |#2| |#1|))) (-15 -2004 ((-1229 |#2| |#1|) $ (-766))) (-15 -4054 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -1166))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1229 *4 *3)) (-4 *3 (-1044)) (-14 *4 (-1168)) (-14 *5 *3) (-5 *1 (-1166 *3 *4 *5)))) (-2004 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1229 *5 *4)) (-5 *1 (-1166 *4 *5 *6)) (-4 *4 (-1044)) (-14 *5 (-1168)) (-14 *6 *4))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-2667 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
-(-13 (-1247 |#1|) (-10 -8 (-15 -4054 ($ (-1229 |#2| |#1|))) (-15 -2004 ((-1229 |#2| |#1|) $ (-766))) (-15 -4054 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|)))
-((-4054 (((-857) $) 27) (($ (-1168)) 29)) (-4037 (($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 40)) (-4023 (($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 33) (($ $) 34)) (-4347 (($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 35)) (-4337 (($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 37)) (-4324 (($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 36)) (-4313 (($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 38)) (-3311 (($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 41)) (-12 (($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 39)))
-(((-1167) (-13 (-609 (-857)) (-10 -8 (-15 -4054 ($ (-1168))) (-15 -4347 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4324 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4337 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4313 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4037 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -3311 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4023 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4023 ($ $))))) (T -1167))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1167)))) (-4347 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-4324 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-4337 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-4313 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-4037 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-3311 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-4023 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-4023 (*1 *1 *1) (-5 *1 (-1167))))
-(-13 (-609 (-857)) (-10 -8 (-15 -4054 ($ (-1168))) (-15 -4347 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4324 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4337 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4313 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4037 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -3311 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4023 ($ (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4023 ($ $))))
-((-4041 (((-112) $ $) NIL)) (-3164 (($ $ (-639 (-857))) 59)) (-1782 (($ $ (-639 (-857))) 57)) (-3596 (((-1150) $) 84)) (-3652 (((-2 (|:| -3562 (-639 (-857))) (|:| -3659 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -2074 (-639 (-857))) (|:| |args| (-639 (-857)))) $) 87)) (-3465 (((-112) $) 22)) (-1482 (($ $ (-639 (-639 (-857)))) 56) (($ $ (-2 (|:| -3562 (-639 (-857))) (|:| -3659 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -2074 (-639 (-857))) (|:| |args| (-639 (-857))))) 82)) (-1800 (($) 123 T CONST)) (-3243 (((-1261)) 105)) (-2533 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 66) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 73)) (-1458 (($) 94) (($ $) 100)) (-3254 (($ $) 83)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3716 (((-639 $) $) 106)) (-2913 (((-1150) $) 89)) (-1709 (((-1112) $) NIL)) (-2343 (($ $ (-639 (-857))) 58)) (-4208 (((-535) $) 46) (((-1168) $) 47) (((-887 (-562)) $) 77) (((-887 (-378)) $) 75)) (-4054 (((-857) $) 53) (($ (-1150)) 48)) (-1674 (($ $ (-639 (-857))) 60)) (-2833 (((-1150) $) 33) (((-1150) $ (-112)) 34) (((-1261) (-817) $) 35) (((-1261) (-817) $ (-112)) 36)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) 49)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) 50)))
-(((-1168) (-13 (-845) (-610 (-535)) (-823) (-610 (-1168)) (-612 (-1150)) (-610 (-887 (-562))) (-610 (-887 (-378))) (-881 (-562)) (-881 (-378)) (-10 -8 (-15 -1458 ($)) (-15 -1458 ($ $)) (-15 -3243 ((-1261))) (-15 -3254 ($ $)) (-15 -3465 ((-112) $)) (-15 -3652 ((-2 (|:| -3562 (-639 (-857))) (|:| -3659 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -2074 (-639 (-857))) (|:| |args| (-639 (-857)))) $)) (-15 -1482 ($ $ (-639 (-639 (-857))))) (-15 -1482 ($ $ (-2 (|:| -3562 (-639 (-857))) (|:| -3659 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -2074 (-639 (-857))) (|:| |args| (-639 (-857)))))) (-15 -1782 ($ $ (-639 (-857)))) (-15 -3164 ($ $ (-639 (-857)))) (-15 -1674 ($ $ (-639 (-857)))) (-15 -2343 ($ $ (-639 (-857)))) (-15 -3596 ((-1150) $)) (-15 -3716 ((-639 $) $)) (-15 -1800 ($) -1497)))) (T -1168))
-((-1458 (*1 *1) (-5 *1 (-1168))) (-1458 (*1 *1 *1) (-5 *1 (-1168))) (-3243 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1168)))) (-3254 (*1 *1 *1) (-5 *1 (-1168))) (-3465 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1168)))) (-3652 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -3562 (-639 (-857))) (|:| -3659 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -2074 (-639 (-857))) (|:| |args| (-639 (-857))))) (-5 *1 (-1168)))) (-1482 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-639 (-857)))) (-5 *1 (-1168)))) (-1482 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -3562 (-639 (-857))) (|:| -3659 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -2074 (-639 (-857))) (|:| |args| (-639 (-857))))) (-5 *1 (-1168)))) (-1782 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))) (-3164 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))) (-1674 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))) (-3596 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1168)))) (-3716 (*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1168)))) (-1800 (*1 *1) (-5 *1 (-1168))))
-(-13 (-845) (-610 (-535)) (-823) (-610 (-1168)) (-612 (-1150)) (-610 (-887 (-562))) (-610 (-887 (-378))) (-881 (-562)) (-881 (-378)) (-10 -8 (-15 -1458 ($)) (-15 -1458 ($ $)) (-15 -3243 ((-1261))) (-15 -3254 ($ $)) (-15 -3465 ((-112) $)) (-15 -3652 ((-2 (|:| -3562 (-639 (-857))) (|:| -3659 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -2074 (-639 (-857))) (|:| |args| (-639 (-857)))) $)) (-15 -1482 ($ $ (-639 (-639 (-857))))) (-15 -1482 ($ $ (-2 (|:| -3562 (-639 (-857))) (|:| -3659 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -2074 (-639 (-857))) (|:| |args| (-639 (-857)))))) (-15 -1782 ($ $ (-639 (-857)))) (-15 -3164 ($ $ (-639 (-857)))) (-15 -1674 ($ $ (-639 (-857)))) (-15 -2343 ($ $ (-639 (-857)))) (-15 -3596 ((-1150) $)) (-15 -3716 ((-639 $) $)) (-15 -1800 ($) -1497)))
-((-2006 (((-1256 |#1|) |#1| (-916)) 16) (((-1256 |#1|) (-639 |#1|)) 20)))
-(((-1169 |#1|) (-10 -7 (-15 -2006 ((-1256 |#1|) (-639 |#1|))) (-15 -2006 ((-1256 |#1|) |#1| (-916)))) (-1044)) (T -1169))
-((-2006 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-5 *2 (-1256 *3)) (-5 *1 (-1169 *3)) (-4 *3 (-1044)))) (-2006 (*1 *2 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-1044)) (-5 *2 (-1256 *4)) (-5 *1 (-1169 *4)))))
-(-10 -7 (-15 -2006 ((-1256 |#1|) (-639 |#1|))) (-15 -2006 ((-1256 |#1|) |#1| (-916))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3961 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1498 (($ $) NIL (|has| |#1| (-451)))) (-3122 (($ $ |#1| (-966) $) NIL)) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-966)) NIL)) (-2076 (((-966) $) NIL)) (-2836 (($ (-1 (-966) (-966)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#1| $) NIL)) (-3348 (($ $ (-966) |#1| $) NIL (-12 (|has| (-966) (-130)) (|has| |#1| (-554))))) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-3598 (((-966) $) NIL)) (-3900 ((|#1| $) NIL (|has| |#1| (-451)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL (|has| |#1| (-554))) (($ |#1|) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ (-966)) NIL)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2286 (($) 9 T CONST)) (-2294 (($) 14 T CONST)) (-1731 (((-112) $ $) 16)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 19)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) 13) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
-(((-1170 |#1|) (-13 (-325 |#1| (-966)) (-10 -8 (IF (|has| |#1| (-554)) (IF (|has| (-966) (-130)) (-15 -3348 ($ $ (-966) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4400)) (-6 -4400) |%noBranch|))) (-1044)) (T -1170))
-((-3348 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-966)) (-4 *2 (-130)) (-5 *1 (-1170 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))))
-(-13 (-325 |#1| (-966)) (-10 -8 (IF (|has| |#1| (-554)) (IF (|has| (-966) (-130)) (-15 -3348 ($ $ (-966) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4400)) (-6 -4400) |%noBranch|)))
-((-3676 (((-1172) (-1168) $) 25)) (-2019 (($) 29)) (-2181 (((-3 (|:| |fst| (-433)) (|:| -2650 "void")) (-1168) $) 22)) (-2054 (((-1261) (-1168) (-3 (|:| |fst| (-433)) (|:| -2650 "void")) $) 41) (((-1261) (-1168) (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) 42) (((-1261) (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) 43)) (-3760 (((-1261) (-1168)) 58)) (-2456 (((-1261) (-1168) $) 55) (((-1261) (-1168)) 56) (((-1261)) 57)) (-1752 (((-1261) (-1168)) 37)) (-2481 (((-1168)) 36)) (-4307 (($) 34)) (-2602 (((-436) (-1168) (-436) (-1168) $) 45) (((-436) (-639 (-1168)) (-436) (-1168) $) 49) (((-436) (-1168) (-436)) 46) (((-436) (-1168) (-436) (-1168)) 50)) (-1838 (((-1168)) 35)) (-4054 (((-857) $) 28)) (-3429 (((-1261)) 30) (((-1261) (-1168)) 33)) (-2469 (((-639 (-1168)) (-1168) $) 24)) (-1629 (((-1261) (-1168) (-639 (-1168)) $) 38) (((-1261) (-1168) (-639 (-1168))) 39) (((-1261) (-639 (-1168))) 40)))
-(((-1171) (-13 (-609 (-857)) (-10 -8 (-15 -2019 ($)) (-15 -3429 ((-1261))) (-15 -3429 ((-1261) (-1168))) (-15 -2602 ((-436) (-1168) (-436) (-1168) $)) (-15 -2602 ((-436) (-639 (-1168)) (-436) (-1168) $)) (-15 -2602 ((-436) (-1168) (-436))) (-15 -2602 ((-436) (-1168) (-436) (-1168))) (-15 -1752 ((-1261) (-1168))) (-15 -1838 ((-1168))) (-15 -2481 ((-1168))) (-15 -1629 ((-1261) (-1168) (-639 (-1168)) $)) (-15 -1629 ((-1261) (-1168) (-639 (-1168)))) (-15 -1629 ((-1261) (-639 (-1168)))) (-15 -2054 ((-1261) (-1168) (-3 (|:| |fst| (-433)) (|:| -2650 "void")) $)) (-15 -2054 ((-1261) (-1168) (-3 (|:| |fst| (-433)) (|:| -2650 "void")))) (-15 -2054 ((-1261) (-3 (|:| |fst| (-433)) (|:| -2650 "void")))) (-15 -2456 ((-1261) (-1168) $)) (-15 -2456 ((-1261) (-1168))) (-15 -2456 ((-1261))) (-15 -3760 ((-1261) (-1168))) (-15 -4307 ($)) (-15 -2181 ((-3 (|:| |fst| (-433)) (|:| -2650 "void")) (-1168) $)) (-15 -2469 ((-639 (-1168)) (-1168) $)) (-15 -3676 ((-1172) (-1168) $))))) (T -1171))
-((-2019 (*1 *1) (-5 *1 (-1171))) (-3429 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1171)))) (-3429 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2602 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-436)) (-5 *3 (-1168)) (-5 *1 (-1171)))) (-2602 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-436)) (-5 *3 (-639 (-1168))) (-5 *4 (-1168)) (-5 *1 (-1171)))) (-2602 (*1 *2 *3 *2) (-12 (-5 *2 (-436)) (-5 *3 (-1168)) (-5 *1 (-1171)))) (-2602 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-436)) (-5 *3 (-1168)) (-5 *1 (-1171)))) (-1752 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-1838 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1171)))) (-2481 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1171)))) (-1629 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-1629 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-1629 (*1 *2 *3) (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2054 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1168)) (-5 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2054 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2054 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2456 (*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2456 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2456 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1171)))) (-3760 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-4307 (*1 *1) (-5 *1 (-1171))) (-2181 (*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-5 *1 (-1171)))) (-2469 (*1 *2 *3 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1171)) (-5 *3 (-1168)))) (-3676 (*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-1172)) (-5 *1 (-1171)))))
-(-13 (-609 (-857)) (-10 -8 (-15 -2019 ($)) (-15 -3429 ((-1261))) (-15 -3429 ((-1261) (-1168))) (-15 -2602 ((-436) (-1168) (-436) (-1168) $)) (-15 -2602 ((-436) (-639 (-1168)) (-436) (-1168) $)) (-15 -2602 ((-436) (-1168) (-436))) (-15 -2602 ((-436) (-1168) (-436) (-1168))) (-15 -1752 ((-1261) (-1168))) (-15 -1838 ((-1168))) (-15 -2481 ((-1168))) (-15 -1629 ((-1261) (-1168) (-639 (-1168)) $)) (-15 -1629 ((-1261) (-1168) (-639 (-1168)))) (-15 -1629 ((-1261) (-639 (-1168)))) (-15 -2054 ((-1261) (-1168) (-3 (|:| |fst| (-433)) (|:| -2650 "void")) $)) (-15 -2054 ((-1261) (-1168) (-3 (|:| |fst| (-433)) (|:| -2650 "void")))) (-15 -2054 ((-1261) (-3 (|:| |fst| (-433)) (|:| -2650 "void")))) (-15 -2456 ((-1261) (-1168) $)) (-15 -2456 ((-1261) (-1168))) (-15 -2456 ((-1261))) (-15 -3760 ((-1261) (-1168))) (-15 -4307 ($)) (-15 -2181 ((-3 (|:| |fst| (-433)) (|:| -2650 "void")) (-1168) $)) (-15 -2469 ((-639 (-1168)) (-1168) $)) (-15 -3676 ((-1172) (-1168) $))))
-((-4261 (((-639 (-639 (-3 (|:| -3254 (-1168)) (|:| -2177 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562))))))))) $) 59)) (-4061 (((-639 (-3 (|:| -3254 (-1168)) (|:| -2177 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562)))))))) (-433) $) 43)) (-3135 (($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-436))))) 17)) (-3760 (((-1261) $) 67)) (-2927 (((-639 (-1168)) $) 22)) (-2582 (((-1096) $) 55)) (-2742 (((-436) (-1168) $) 27)) (-1290 (((-639 (-1168)) $) 30)) (-4307 (($) 19)) (-2602 (((-436) (-639 (-1168)) (-436) $) 25) (((-436) (-1168) (-436) $) 24)) (-4054 (((-857) $) 9) (((-1180 (-1168) (-436)) $) 13)))
-(((-1172) (-13 (-609 (-857)) (-10 -8 (-15 -4054 ((-1180 (-1168) (-436)) $)) (-15 -4307 ($)) (-15 -2602 ((-436) (-639 (-1168)) (-436) $)) (-15 -2602 ((-436) (-1168) (-436) $)) (-15 -2742 ((-436) (-1168) $)) (-15 -2927 ((-639 (-1168)) $)) (-15 -4061 ((-639 (-3 (|:| -3254 (-1168)) (|:| -2177 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562)))))))) (-433) $)) (-15 -1290 ((-639 (-1168)) $)) (-15 -4261 ((-639 (-639 (-3 (|:| -3254 (-1168)) (|:| -2177 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562))))))))) $)) (-15 -2582 ((-1096) $)) (-15 -3760 ((-1261) $)) (-15 -3135 ($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-436))))))))) (T -1172))
-((-4054 (*1 *2 *1) (-12 (-5 *2 (-1180 (-1168) (-436))) (-5 *1 (-1172)))) (-4307 (*1 *1) (-5 *1 (-1172))) (-2602 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-436)) (-5 *3 (-639 (-1168))) (-5 *1 (-1172)))) (-2602 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-436)) (-5 *3 (-1168)) (-5 *1 (-1172)))) (-2742 (*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-436)) (-5 *1 (-1172)))) (-2927 (*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1172)))) (-4061 (*1 *2 *3 *1) (-12 (-5 *3 (-433)) (-5 *2 (-639 (-3 (|:| -3254 (-1168)) (|:| -2177 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562))))))))) (-5 *1 (-1172)))) (-1290 (*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1172)))) (-4261 (*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-3 (|:| -3254 (-1168)) (|:| -2177 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562)))))))))) (-5 *1 (-1172)))) (-2582 (*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-1172)))) (-3760 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1172)))) (-3135 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-436))))) (-5 *1 (-1172)))))
-(-13 (-609 (-857)) (-10 -8 (-15 -4054 ((-1180 (-1168) (-436)) $)) (-15 -4307 ($)) (-15 -2602 ((-436) (-639 (-1168)) (-436) $)) (-15 -2602 ((-436) (-1168) (-436) $)) (-15 -2742 ((-436) (-1168) $)) (-15 -2927 ((-639 (-1168)) $)) (-15 -4061 ((-639 (-3 (|:| -3254 (-1168)) (|:| -2177 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562)))))))) (-433) $)) (-15 -1290 ((-639 (-1168)) $)) (-15 -4261 ((-639 (-639 (-3 (|:| -3254 (-1168)) (|:| -2177 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562))))))))) $)) (-15 -2582 ((-1096) $)) (-15 -3760 ((-1261) $)) (-15 -3135 ($ (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-436))))))))
-((-4041 (((-112) $ $) NIL)) (-4048 (((-3 (-562) "failed") $) 29) (((-3 (-224) "failed") $) 35) (((-3 (-1168) "failed") $) 41) (((-3 (-1150) "failed") $) 47)) (-3961 (((-562) $) 30) (((-224) $) 36) (((-1168) $) 42) (((-1150) $) 48)) (-2230 (((-112) $) 53)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4068 (((-3 (-562) (-224) (-1168) (-1150) $) $) 55)) (-2369 (((-639 $) $) 57)) (-4208 (((-1096) $) 24) (($ (-1096)) 25)) (-3915 (((-112) $) 56)) (-4054 (((-857) $) 23) (($ (-562)) 26) (($ (-224)) 32) (($ (-1168)) 38) (($ (-1150)) 44) (((-535) $) 59) (((-562) $) 31) (((-224) $) 37) (((-1168) $) 43) (((-1150) $) 49)) (-2276 (((-112) $ (|[\|\|]| (-562))) 10) (((-112) $ (|[\|\|]| (-224))) 13) (((-112) $ (|[\|\|]| (-1168))) 19) (((-112) $ (|[\|\|]| (-1150))) 16)) (-2730 (($ (-1168) (-639 $)) 51) (($ $ (-639 $)) 52)) (-4247 (((-562) $) 27) (((-224) $) 33) (((-1168) $) 39) (((-1150) $) 45)) (-1731 (((-112) $ $) 7)))
-(((-1173) (-13 (-1251) (-1092) (-1033 (-562)) (-1033 (-224)) (-1033 (-1168)) (-1033 (-1150)) (-609 (-535)) (-10 -8 (-15 -4208 ((-1096) $)) (-15 -4208 ($ (-1096))) (-15 -4054 ((-562) $)) (-15 -4247 ((-562) $)) (-15 -4054 ((-224) $)) (-15 -4247 ((-224) $)) (-15 -4054 ((-1168) $)) (-15 -4247 ((-1168) $)) (-15 -4054 ((-1150) $)) (-15 -4247 ((-1150) $)) (-15 -2730 ($ (-1168) (-639 $))) (-15 -2730 ($ $ (-639 $))) (-15 -2230 ((-112) $)) (-15 -4068 ((-3 (-562) (-224) (-1168) (-1150) $) $)) (-15 -2369 ((-639 $) $)) (-15 -3915 ((-112) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-562)))) (-15 -2276 ((-112) $ (|[\|\|]| (-224)))) (-15 -2276 ((-112) $ (|[\|\|]| (-1168)))) (-15 -2276 ((-112) $ (|[\|\|]| (-1150))))))) (T -1173))
-((-4208 (*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-1173)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-1096)) (-5 *1 (-1173)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1173)))) (-4247 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1173)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-224)) (-5 *1 (-1173)))) (-4247 (*1 *2 *1) (-12 (-5 *2 (-224)) (-5 *1 (-1173)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1173)))) (-4247 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1173)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1173)))) (-4247 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1173)))) (-2730 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-1173))) (-5 *1 (-1173)))) (-2730 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-1173)))) (-2230 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1173)))) (-4068 (*1 *2 *1) (-12 (-5 *2 (-3 (-562) (-224) (-1168) (-1150) (-1173))) (-5 *1 (-1173)))) (-2369 (*1 *2 *1) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-1173)))) (-3915 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1173)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-562))) (-5 *2 (-112)) (-5 *1 (-1173)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-224))) (-5 *2 (-112)) (-5 *1 (-1173)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1168))) (-5 *2 (-112)) (-5 *1 (-1173)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1150))) (-5 *2 (-112)) (-5 *1 (-1173)))))
-(-13 (-1251) (-1092) (-1033 (-562)) (-1033 (-224)) (-1033 (-1168)) (-1033 (-1150)) (-609 (-535)) (-10 -8 (-15 -4208 ((-1096) $)) (-15 -4208 ($ (-1096))) (-15 -4054 ((-562) $)) (-15 -4247 ((-562) $)) (-15 -4054 ((-224) $)) (-15 -4247 ((-224) $)) (-15 -4054 ((-1168) $)) (-15 -4247 ((-1168) $)) (-15 -4054 ((-1150) $)) (-15 -4247 ((-1150) $)) (-15 -2730 ($ (-1168) (-639 $))) (-15 -2730 ($ $ (-639 $))) (-15 -2230 ((-112) $)) (-15 -4068 ((-3 (-562) (-224) (-1168) (-1150) $) $)) (-15 -2369 ((-639 $) $)) (-15 -3915 ((-112) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-562)))) (-15 -2276 ((-112) $ (|[\|\|]| (-224)))) (-15 -2276 ((-112) $ (|[\|\|]| (-1168)))) (-15 -2276 ((-112) $ (|[\|\|]| (-1150))))))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) 10)) (-1448 (($) 14)) (-1551 (($ $ $) NIL) (($) 7 T CONST)) (-2993 (($ $ $) NIL) (($) 8 T CONST)) (-1999 (((-916) $) 13)) (-2913 (((-1150) $) NIL)) (-2466 (($ (-916)) 12)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)))
+((-3788 (((-417 (-1164 (-406 |#4|))) (-1164 (-406 |#4|))) 51)) (-1635 (((-417 (-1164 (-406 |#4|))) (-1164 (-406 |#4|))) 52)))
+(((-1163 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1635 ((-417 (-1164 (-406 |#4|))) (-1164 (-406 |#4|)))) (-15 -3788 ((-417 (-1164 (-406 |#4|))) (-1164 (-406 |#4|))))) (-788) (-845) (-451) (-944 |#3| |#1| |#2|)) (T -1163))
+((-3788 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-451)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-417 (-1164 (-406 *7)))) (-5 *1 (-1163 *4 *5 *6 *7)) (-5 *3 (-1164 (-406 *7))))) (-1635 (*1 *2 *3) (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-451)) (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-417 (-1164 (-406 *7)))) (-5 *1 (-1163 *4 *5 *6 *7)) (-5 *3 (-1164 (-406 *7))))))
+(-10 -7 (-15 -1635 ((-417 (-1164 (-406 |#4|))) (-1164 (-406 |#4|)))) (-15 -3788 ((-417 (-1164 (-406 |#4|))) (-1164 (-406 |#4|)))))
+((-4041 (((-112) $ $) 136)) (-4325 (((-112) $) 27)) (-4263 (((-1256 |#1|) $ (-766)) NIL)) (-1401 (((-639 (-1074)) $) NIL)) (-2505 (($ (-1164 |#1|)) NIL)) (-1602 (((-1164 $) $ (-1074)) 58) (((-1164 |#1|) $) 47)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) 131 (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 (-1074))) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-2035 (($ $ $) 125 (|has| |#1| (-554)))) (-3517 (((-417 (-1164 $)) (-1164 $)) 71 (|has| |#1| (-904)))) (-1977 (($ $) NIL (|has| |#1| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 91 (|has| |#1| (-904)))) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-1730 (($ $ (-766)) 39)) (-3538 (($ $ (-766)) 40)) (-2687 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-451)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#1| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-1074) "failed") $) NIL)) (-3960 ((|#1| $) NIL) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-1074) $) NIL)) (-2355 (($ $ $ (-1074)) NIL (|has| |#1| (-171))) ((|#1| $ $) 127 (|has| |#1| (-171)))) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-1600 (($ $) 56)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) NIL) (((-683 |#1|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-4296 (($ $ $) 103)) (-3127 (($ $ $) NIL (|has| |#1| (-554)))) (-3840 (((-2 (|:| -4221 |#1|) (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-554)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-2578 (($ $) 132 (|has| |#1| (-451))) (($ $ (-1074)) NIL (|has| |#1| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#1| (-904)))) (-3066 (($ $ |#1| (-766) $) 45)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1074) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1074) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-3508 (((-857) $ (-857)) 116)) (-1993 (((-766) $ $) NIL (|has| |#1| (-554)))) (-4367 (((-112) $) 30)) (-3627 (((-766) $) NIL)) (-3828 (((-3 $ "failed") $) NIL (|has| |#1| (-1143)))) (-1389 (($ (-1164 |#1|) (-1074)) 49) (($ (-1164 $) (-1074)) 65)) (-3662 (($ $ (-766)) 32)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-766)) 63) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ (-1074)) NIL) (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 120)) (-3161 (((-766) $) NIL) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-2363 (($ (-1 (-766) (-766)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1556 (((-1164 |#1|) $) NIL)) (-3640 (((-3 (-1074) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) 52)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) NIL (|has| |#1| (-451)))) (-3696 (((-1150) $) NIL)) (-2215 (((-2 (|:| -3380 $) (|:| -1441 $)) $ (-766)) 38)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| (-1074)) (|:| -1300 (-766))) "failed") $) NIL)) (-3081 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3730 (($) NIL (|has| |#1| (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) 31)) (-1547 ((|#1| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 79 (|has| |#1| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-451))) (($ $ $) 134 (|has| |#1| (-451)))) (-1601 (($ $ (-766) |#1| $) 98)) (-3586 (((-417 (-1164 $)) (-1164 $)) 77 (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) 76 (|has| |#1| (-904)))) (-1635 (((-417 $) $) 84 (|has| |#1| (-904)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ |#1|) 130 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 99 (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1074) |#1|) NIL) (($ $ (-639 (-1074)) (-639 |#1|)) NIL) (($ $ (-1074) $) NIL) (($ $ (-639 (-1074)) (-639 $)) NIL)) (-2044 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ |#1|) 118) (($ $ $) 119) (((-406 $) (-406 $) (-406 $)) NIL (|has| |#1| (-554))) ((|#1| (-406 $) |#1|) NIL (|has| |#1| (-362))) (((-406 $) $ (-406 $)) NIL (|has| |#1| (-554)))) (-1610 (((-3 $ "failed") $ (-766)) 35)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 137 (|has| |#1| (-362)))) (-2736 (($ $ (-1074)) NIL (|has| |#1| (-171))) ((|#1| $) 123 (|has| |#1| (-171)))) (-4029 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-2250 (((-766) $) 54) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-1074) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-2201 ((|#1| $) 129 (|has| |#1| (-451))) (($ $ (-1074)) NIL (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#1| (-904))))) (-2155 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554))) (((-3 (-406 $) "failed") (-406 $) $) NIL (|has| |#1| (-554)))) (-4053 (((-857) $) 117) (($ (-562)) NIL) (($ |#1|) 53) (($ (-1074)) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#1| (-554)))) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-766)) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) 25 (|has| |#1| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2285 (($) 15 T CONST)) (-2294 (($) 16 T CONST)) (-3113 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) 96)) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1859 (($ $ |#1|) 138 (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 66)) (** (($ $ (-916)) 14) (($ $ (-766)) 12)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 24) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 101) (($ $ |#1|) NIL)))
+(((-1164 |#1|) (-13 (-1232 |#1|) (-10 -8 (-15 -3508 ((-857) $ (-857))) (-15 -1601 ($ $ (-766) |#1| $)))) (-1044)) (T -1164))
+((-3508 (*1 *2 *1 *2) (-12 (-5 *2 (-857)) (-5 *1 (-1164 *3)) (-4 *3 (-1044)))) (-1601 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1164 *3)) (-4 *3 (-1044)))))
+(-13 (-1232 |#1|) (-10 -8 (-15 -3508 ((-857) $ (-857))) (-15 -1601 ($ $ (-766) |#1| $))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1401 (((-639 (-1074)) $) NIL)) (-2443 (((-1168) $) 11)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1302 (($ $ (-406 (-562))) NIL) (($ $ (-406 (-562)) (-406 (-562))) NIL)) (-4196 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) NIL)) (-2987 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL (|has| |#1| (-362)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1644 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4206 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) NIL)) (-3013 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-1159 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1166 |#1| |#2| |#3|) "failed") $) 36)) (-3960 (((-1159 |#1| |#2| |#3|) $) NIL) (((-1166 |#1| |#2| |#3|) $) NIL)) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1417 (((-406 (-562)) $) 55)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-1499 (($ (-406 (-562)) (-1159 |#1| |#2| |#3|)) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-3521 (((-112) $) NIL (|has| |#1| (-362)))) (-2965 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-406 (-562)) $) NIL) (((-406 (-562)) $ (-406 (-562))) NIL)) (-4367 (((-112) $) NIL)) (-1895 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3662 (($ $ (-916)) NIL) (($ $ (-406 (-562))) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-406 (-562))) 20) (($ $ (-1074) (-406 (-562))) NIL) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4366 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-3370 (((-1159 |#1| |#2| |#3|) $) 41)) (-3515 (((-3 (-1159 |#1| |#2| |#3|) "failed") $) NIL)) (-1487 (((-1159 |#1| |#2| |#3|) $) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-3081 (($ $) 39 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 40 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-4316 (($ $ (-406 (-562))) NIL)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-2044 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) NIL) (($ $ $) NIL (|has| (-406 (-562)) (-1104)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $ (-1252 |#2|)) 38)) (-2250 (((-406 (-562)) $) NIL)) (-3022 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) NIL)) (-4053 (((-857) $) 58) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ (-1159 |#1| |#2| |#3|)) 30) (($ (-1166 |#1| |#2| |#3|)) 31) (($ (-1252 |#2|)) 26) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554)))) (-2266 ((|#1| $ (-406 (-562))) NIL)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-2328 ((|#1| $) 12)) (-3054 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) 22 T CONST)) (-2294 (($) 16 T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 24)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+(((-1165 |#1| |#2| |#3|) (-13 (-1239 |#1| (-1159 |#1| |#2| |#3|)) (-1033 (-1166 |#1| |#2| |#3|)) (-612 (-1252 |#2|)) (-10 -8 (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -1165))
+((-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1165 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-3081 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1165 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
+(-13 (-1239 |#1| (-1159 |#1| |#2| |#3|)) (-1033 (-1166 |#1| |#2| |#3|)) (-612 (-1252 |#2|)) (-10 -8 (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 124)) (-1401 (((-639 (-1074)) $) NIL)) (-2443 (((-1168) $) 115)) (-3600 (((-1229 |#2| |#1|) $ (-766)) 62)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1302 (($ $ (-766)) 78) (($ $ (-766) (-766)) 75)) (-4196 (((-1148 (-2 (|:| |k| (-766)) (|:| |c| |#1|))) $) 101)) (-2987 (($ $) 168 (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1644 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4206 (($ $) 164 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-1148 (-2 (|:| |k| (-766)) (|:| |c| |#1|)))) 114) (($ (-1148 |#1|)) 109)) (-3013 (($ $) 172 (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) 148 (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) NIL T CONST)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) 23)) (-2344 (($ $) 26)) (-1455 (((-947 |#1|) $ (-766)) 74) (((-947 |#1|) $ (-766) (-766)) 76)) (-2965 (((-112) $) 119)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-766) $) 121) (((-766) $ (-766)) 123)) (-4367 (((-112) $) NIL)) (-1895 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3662 (($ $ (-916)) NIL)) (-2064 (($ (-1 |#1| (-562)) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-766)) 13) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4366 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-3081 (($ $) 128 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 129 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-4316 (($ $ (-766)) 15)) (-1762 (((-3 $ "failed") $ $) 24 (|has| |#1| (-554)))) (-3430 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-766)))))) (-2343 ((|#1| $ (-766)) 118) (($ $ $) 127 (|has| (-766) (-1104)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $) 27 (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $ (-1252 |#2|)) 29)) (-2250 (((-766) $) NIL)) (-3022 (($ $) 174 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 150 (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) 170 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) 166 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) NIL)) (-4053 (((-857) $) 200) (($ (-562)) NIL) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554))) (($ |#1|) 125 (|has| |#1| (-171))) (($ (-1229 |#2| |#1|)) 50) (($ (-1252 |#2|)) 32)) (-3969 (((-1148 |#1|) $) 97)) (-2266 ((|#1| $ (-766)) 117)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-2328 ((|#1| $) 53)) (-3054 (($ $) 180 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 156 (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) 176 (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) 152 (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) 184 (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) 160 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-766)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-766)))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) 186 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 162 (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) 182 (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) 158 (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) 178 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 154 (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) 17 T CONST)) (-2294 (($) 19 T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) 193)) (-1836 (($ $ $) 31)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ |#1|) 197 (|has| |#1| (-362))) (($ $ $) 133 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 136 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 131) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+(((-1166 |#1| |#2| |#3|) (-13 (-1247 |#1|) (-10 -8 (-15 -4053 ($ (-1229 |#2| |#1|))) (-15 -3600 ((-1229 |#2| |#1|) $ (-766))) (-15 -4053 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -1166))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1229 *4 *3)) (-4 *3 (-1044)) (-14 *4 (-1168)) (-14 *5 *3) (-5 *1 (-1166 *3 *4 *5)))) (-3600 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1229 *5 *4)) (-5 *1 (-1166 *4 *5 *6)) (-4 *4 (-1044)) (-14 *5 (-1168)) (-14 *6 *4))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-3081 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
+(-13 (-1247 |#1|) (-10 -8 (-15 -4053 ($ (-1229 |#2| |#1|))) (-15 -3600 ((-1229 |#2| |#1|) $ (-766))) (-15 -4053 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|)))
+((-4053 (((-857) $) 27) (($ (-1168)) 29)) (-4037 (($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 40)) (-4023 (($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 33) (($ $) 34)) (-4348 (($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 35)) (-4338 (($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 37)) (-4326 (($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 36)) (-4314 (($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 38)) (-3310 (($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 41)) (-12 (($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $))) 39)))
+(((-1167) (-13 (-609 (-857)) (-10 -8 (-15 -4053 ($ (-1168))) (-15 -4348 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4326 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4338 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4314 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4037 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -3310 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4023 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4023 ($ $))))) (T -1167))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1167)))) (-4348 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-4326 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-4338 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-4314 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-4037 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-3310 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-4023 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167)))) (-5 *1 (-1167)))) (-4023 (*1 *1 *1) (-5 *1 (-1167))))
+(-13 (-609 (-857)) (-10 -8 (-15 -4053 ($ (-1168))) (-15 -4348 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4326 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4338 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4314 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4037 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -3310 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)) (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4023 ($ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378))) (|:| CF (-315 (-168 (-378)))) (|:| |switch| $)))) (-15 -4023 ($ $))))
+((-4041 (((-112) $ $) NIL)) (-2353 (($ $ (-639 (-857))) 59)) (-3177 (($ $ (-639 (-857))) 57)) (-3596 (((-1150) $) 84)) (-3652 (((-2 (|:| -1923 (-639 (-857))) (|:| -1593 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -3142 (-639 (-857))) (|:| |args| (-639 (-857)))) $) 87)) (-3331 (((-112) $) 22)) (-1482 (($ $ (-639 (-639 (-857)))) 56) (($ $ (-2 (|:| -1923 (-639 (-857))) (|:| -1593 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -3142 (-639 (-857))) (|:| |args| (-639 (-857))))) 82)) (-3329 (($) 123 T CONST)) (-1865 (((-1261)) 105)) (-2337 (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 66) (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 73)) (-1458 (($) 94) (($ $) 100)) (-3253 (($ $) 83)) (-1551 (($ $ $) NIL)) (-2993 (($ $ $) NIL)) (-3716 (((-639 $) $) 106)) (-3696 (((-1150) $) 89)) (-1709 (((-1112) $) NIL)) (-2343 (($ $ (-639 (-857))) 58)) (-4208 (((-535) $) 46) (((-1168) $) 47) (((-887 (-562)) $) 77) (((-887 (-378)) $) 75)) (-4053 (((-857) $) 53) (($ (-1150)) 48)) (-3447 (($ $ (-639 (-857))) 60)) (-2332 (((-1150) $) 33) (((-1150) $ (-112)) 34) (((-1261) (-817) $) 35) (((-1261) (-817) $ (-112)) 36)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) 49)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) 50)))
+(((-1168) (-13 (-845) (-610 (-535)) (-823) (-610 (-1168)) (-612 (-1150)) (-610 (-887 (-562))) (-610 (-887 (-378))) (-881 (-562)) (-881 (-378)) (-10 -8 (-15 -1458 ($)) (-15 -1458 ($ $)) (-15 -1865 ((-1261))) (-15 -3253 ($ $)) (-15 -3331 ((-112) $)) (-15 -3652 ((-2 (|:| -1923 (-639 (-857))) (|:| -1593 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -3142 (-639 (-857))) (|:| |args| (-639 (-857)))) $)) (-15 -1482 ($ $ (-639 (-639 (-857))))) (-15 -1482 ($ $ (-2 (|:| -1923 (-639 (-857))) (|:| -1593 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -3142 (-639 (-857))) (|:| |args| (-639 (-857)))))) (-15 -3177 ($ $ (-639 (-857)))) (-15 -2353 ($ $ (-639 (-857)))) (-15 -3447 ($ $ (-639 (-857)))) (-15 -2343 ($ $ (-639 (-857)))) (-15 -3596 ((-1150) $)) (-15 -3716 ((-639 $) $)) (-15 -3329 ($) -1497)))) (T -1168))
+((-1458 (*1 *1) (-5 *1 (-1168))) (-1458 (*1 *1 *1) (-5 *1 (-1168))) (-1865 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1168)))) (-3253 (*1 *1 *1) (-5 *1 (-1168))) (-3331 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1168)))) (-3652 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -1923 (-639 (-857))) (|:| -1593 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -3142 (-639 (-857))) (|:| |args| (-639 (-857))))) (-5 *1 (-1168)))) (-1482 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-639 (-857)))) (-5 *1 (-1168)))) (-1482 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -1923 (-639 (-857))) (|:| -1593 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -3142 (-639 (-857))) (|:| |args| (-639 (-857))))) (-5 *1 (-1168)))) (-3177 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))) (-2353 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))) (-3447 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))) (-3596 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1168)))) (-3716 (*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1168)))) (-3329 (*1 *1) (-5 *1 (-1168))))
+(-13 (-845) (-610 (-535)) (-823) (-610 (-1168)) (-612 (-1150)) (-610 (-887 (-562))) (-610 (-887 (-378))) (-881 (-562)) (-881 (-378)) (-10 -8 (-15 -1458 ($)) (-15 -1458 ($ $)) (-15 -1865 ((-1261))) (-15 -3253 ($ $)) (-15 -3331 ((-112) $)) (-15 -3652 ((-2 (|:| -1923 (-639 (-857))) (|:| -1593 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -3142 (-639 (-857))) (|:| |args| (-639 (-857)))) $)) (-15 -1482 ($ $ (-639 (-639 (-857))))) (-15 -1482 ($ $ (-2 (|:| -1923 (-639 (-857))) (|:| -1593 (-639 (-857))) (|:| |presup| (-639 (-857))) (|:| -3142 (-639 (-857))) (|:| |args| (-639 (-857)))))) (-15 -3177 ($ $ (-639 (-857)))) (-15 -2353 ($ $ (-639 (-857)))) (-15 -3447 ($ $ (-639 (-857)))) (-15 -2343 ($ $ (-639 (-857)))) (-15 -3596 ((-1150) $)) (-15 -3716 ((-639 $) $)) (-15 -3329 ($) -1497)))
+((-3622 (((-1256 |#1|) |#1| (-916)) 16) (((-1256 |#1|) (-639 |#1|)) 20)))
+(((-1169 |#1|) (-10 -7 (-15 -3622 ((-1256 |#1|) (-639 |#1|))) (-15 -3622 ((-1256 |#1|) |#1| (-916)))) (-1044)) (T -1169))
+((-3622 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-5 *2 (-1256 *3)) (-5 *1 (-1169 *3)) (-4 *3 (-1044)))) (-3622 (*1 *2 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-1044)) (-5 *2 (-1256 *4)) (-5 *1 (-1169 *4)))))
+(-10 -7 (-15 -3622 ((-1256 |#1|) (-639 |#1|))) (-15 -3622 ((-1256 |#1|) |#1| (-916))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| |#1| (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#1| (-1033 (-406 (-562))))) (((-3 |#1| "failed") $) NIL)) (-3960 (((-562) $) NIL (|has| |#1| (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| |#1| (-1033 (-406 (-562))))) ((|#1| $) NIL)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2578 (($ $) NIL (|has| |#1| (-451)))) (-3066 (($ $ |#1| (-966) $) NIL)) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-966)) NIL)) (-3161 (((-966) $) NIL)) (-2363 (($ (-1 (-966) (-966)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#1| $) NIL)) (-1601 (($ $ (-966) |#1| $) NIL (-12 (|has| (-966) (-130)) (|has| |#1| (-554))))) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-554)))) (-2250 (((-966) $) NIL)) (-2201 ((|#1| $) NIL (|has| |#1| (-451)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ $) NIL (|has| |#1| (-554))) (($ |#1|) NIL) (($ (-406 (-562))) NIL (-4037 (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-1033 (-406 (-562))))))) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ (-966)) NIL)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#1| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2285 (($) 9 T CONST)) (-2294 (($) 14 T CONST)) (-1733 (((-112) $ $) 16)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 19)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) 13) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+(((-1170 |#1|) (-13 (-325 |#1| (-966)) (-10 -8 (IF (|has| |#1| (-554)) (IF (|has| (-966) (-130)) (-15 -1601 ($ $ (-966) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4401)) (-6 -4401) |%noBranch|))) (-1044)) (T -1170))
+((-1601 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-966)) (-4 *2 (-130)) (-5 *1 (-1170 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))))
+(-13 (-325 |#1| (-966)) (-10 -8 (IF (|has| |#1| (-554)) (IF (|has| (-966) (-130)) (-15 -1601 ($ $ (-966) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4401)) (-6 -4401) |%noBranch|)))
+((-3601 (((-1172) (-1168) $) 25)) (-3768 (($) 29)) (-1890 (((-3 (|:| |fst| (-433)) (|:| -2649 "void")) (-1168) $) 22)) (-2936 (((-1261) (-1168) (-3 (|:| |fst| (-433)) (|:| -2649 "void")) $) 41) (((-1261) (-1168) (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) 42) (((-1261) (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) 43)) (-3175 (((-1261) (-1168)) 58)) (-2747 (((-1261) (-1168) $) 55) (((-1261) (-1168)) 56) (((-1261)) 57)) (-2930 (((-1261) (-1168)) 37)) (-1812 (((-1168)) 36)) (-1663 (($) 34)) (-2601 (((-436) (-1168) (-436) (-1168) $) 45) (((-436) (-639 (-1168)) (-436) (-1168) $) 49) (((-436) (-1168) (-436)) 46) (((-436) (-1168) (-436) (-1168)) 50)) (-2552 (((-1168)) 35)) (-4053 (((-857) $) 28)) (-2986 (((-1261)) 30) (((-1261) (-1168)) 33)) (-2859 (((-639 (-1168)) (-1168) $) 24)) (-4279 (((-1261) (-1168) (-639 (-1168)) $) 38) (((-1261) (-1168) (-639 (-1168))) 39) (((-1261) (-639 (-1168))) 40)))
+(((-1171) (-13 (-609 (-857)) (-10 -8 (-15 -3768 ($)) (-15 -2986 ((-1261))) (-15 -2986 ((-1261) (-1168))) (-15 -2601 ((-436) (-1168) (-436) (-1168) $)) (-15 -2601 ((-436) (-639 (-1168)) (-436) (-1168) $)) (-15 -2601 ((-436) (-1168) (-436))) (-15 -2601 ((-436) (-1168) (-436) (-1168))) (-15 -2930 ((-1261) (-1168))) (-15 -2552 ((-1168))) (-15 -1812 ((-1168))) (-15 -4279 ((-1261) (-1168) (-639 (-1168)) $)) (-15 -4279 ((-1261) (-1168) (-639 (-1168)))) (-15 -4279 ((-1261) (-639 (-1168)))) (-15 -2936 ((-1261) (-1168) (-3 (|:| |fst| (-433)) (|:| -2649 "void")) $)) (-15 -2936 ((-1261) (-1168) (-3 (|:| |fst| (-433)) (|:| -2649 "void")))) (-15 -2936 ((-1261) (-3 (|:| |fst| (-433)) (|:| -2649 "void")))) (-15 -2747 ((-1261) (-1168) $)) (-15 -2747 ((-1261) (-1168))) (-15 -2747 ((-1261))) (-15 -3175 ((-1261) (-1168))) (-15 -1663 ($)) (-15 -1890 ((-3 (|:| |fst| (-433)) (|:| -2649 "void")) (-1168) $)) (-15 -2859 ((-639 (-1168)) (-1168) $)) (-15 -3601 ((-1172) (-1168) $))))) (T -1171))
+((-3768 (*1 *1) (-5 *1 (-1171))) (-2986 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2986 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2601 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-436)) (-5 *3 (-1168)) (-5 *1 (-1171)))) (-2601 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-436)) (-5 *3 (-639 (-1168))) (-5 *4 (-1168)) (-5 *1 (-1171)))) (-2601 (*1 *2 *3 *2) (-12 (-5 *2 (-436)) (-5 *3 (-1168)) (-5 *1 (-1171)))) (-2601 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-436)) (-5 *3 (-1168)) (-5 *1 (-1171)))) (-2930 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2552 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1171)))) (-1812 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1171)))) (-4279 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-4279 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-4279 (*1 *2 *3) (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2936 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1168)) (-5 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2936 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2936 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2747 (*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2747 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-2747 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1171)))) (-3175 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))) (-1663 (*1 *1) (-5 *1 (-1171))) (-1890 (*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-5 *1 (-1171)))) (-2859 (*1 *2 *3 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1171)) (-5 *3 (-1168)))) (-3601 (*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-1172)) (-5 *1 (-1171)))))
+(-13 (-609 (-857)) (-10 -8 (-15 -3768 ($)) (-15 -2986 ((-1261))) (-15 -2986 ((-1261) (-1168))) (-15 -2601 ((-436) (-1168) (-436) (-1168) $)) (-15 -2601 ((-436) (-639 (-1168)) (-436) (-1168) $)) (-15 -2601 ((-436) (-1168) (-436))) (-15 -2601 ((-436) (-1168) (-436) (-1168))) (-15 -2930 ((-1261) (-1168))) (-15 -2552 ((-1168))) (-15 -1812 ((-1168))) (-15 -4279 ((-1261) (-1168) (-639 (-1168)) $)) (-15 -4279 ((-1261) (-1168) (-639 (-1168)))) (-15 -4279 ((-1261) (-639 (-1168)))) (-15 -2936 ((-1261) (-1168) (-3 (|:| |fst| (-433)) (|:| -2649 "void")) $)) (-15 -2936 ((-1261) (-1168) (-3 (|:| |fst| (-433)) (|:| -2649 "void")))) (-15 -2936 ((-1261) (-3 (|:| |fst| (-433)) (|:| -2649 "void")))) (-15 -2747 ((-1261) (-1168) $)) (-15 -2747 ((-1261) (-1168))) (-15 -2747 ((-1261))) (-15 -3175 ((-1261) (-1168))) (-15 -1663 ($)) (-15 -1890 ((-3 (|:| |fst| (-433)) (|:| -2649 "void")) (-1168) $)) (-15 -2859 ((-639 (-1168)) (-1168) $)) (-15 -3601 ((-1172) (-1168) $))))
+((-4258 (((-639 (-639 (-3 (|:| -3253 (-1168)) (|:| -1852 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562))))))))) $) 59)) (-3041 (((-639 (-3 (|:| -3253 (-1168)) (|:| -1852 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562)))))))) (-433) $) 43)) (-3134 (($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-436))))) 17)) (-3175 (((-1261) $) 67)) (-3846 (((-639 (-1168)) $) 22)) (-1608 (((-1096) $) 55)) (-2612 (((-436) (-1168) $) 27)) (-1883 (((-639 (-1168)) $) 30)) (-1663 (($) 19)) (-2601 (((-436) (-639 (-1168)) (-436) $) 25) (((-436) (-1168) (-436) $) 24)) (-4053 (((-857) $) 9) (((-1180 (-1168) (-436)) $) 13)))
+(((-1172) (-13 (-609 (-857)) (-10 -8 (-15 -4053 ((-1180 (-1168) (-436)) $)) (-15 -1663 ($)) (-15 -2601 ((-436) (-639 (-1168)) (-436) $)) (-15 -2601 ((-436) (-1168) (-436) $)) (-15 -2612 ((-436) (-1168) $)) (-15 -3846 ((-639 (-1168)) $)) (-15 -3041 ((-639 (-3 (|:| -3253 (-1168)) (|:| -1852 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562)))))))) (-433) $)) (-15 -1883 ((-639 (-1168)) $)) (-15 -4258 ((-639 (-639 (-3 (|:| -3253 (-1168)) (|:| -1852 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562))))))))) $)) (-15 -1608 ((-1096) $)) (-15 -3175 ((-1261) $)) (-15 -3134 ($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-436))))))))) (T -1172))
+((-4053 (*1 *2 *1) (-12 (-5 *2 (-1180 (-1168) (-436))) (-5 *1 (-1172)))) (-1663 (*1 *1) (-5 *1 (-1172))) (-2601 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-436)) (-5 *3 (-639 (-1168))) (-5 *1 (-1172)))) (-2601 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-436)) (-5 *3 (-1168)) (-5 *1 (-1172)))) (-2612 (*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-436)) (-5 *1 (-1172)))) (-3846 (*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1172)))) (-3041 (*1 *2 *3 *1) (-12 (-5 *3 (-433)) (-5 *2 (-639 (-3 (|:| -3253 (-1168)) (|:| -1852 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562))))))))) (-5 *1 (-1172)))) (-1883 (*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1172)))) (-4258 (*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-3 (|:| -3253 (-1168)) (|:| -1852 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562)))))))))) (-5 *1 (-1172)))) (-1608 (*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-1172)))) (-3175 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1172)))) (-3134 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-436))))) (-5 *1 (-1172)))))
+(-13 (-609 (-857)) (-10 -8 (-15 -4053 ((-1180 (-1168) (-436)) $)) (-15 -1663 ($)) (-15 -2601 ((-436) (-639 (-1168)) (-436) $)) (-15 -2601 ((-436) (-1168) (-436) $)) (-15 -2612 ((-436) (-1168) $)) (-15 -3846 ((-639 (-1168)) $)) (-15 -3041 ((-639 (-3 (|:| -3253 (-1168)) (|:| -1852 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562)))))))) (-433) $)) (-15 -1883 ((-639 (-1168)) $)) (-15 -4258 ((-639 (-639 (-3 (|:| -3253 (-1168)) (|:| -1852 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562))))))))) $)) (-15 -1608 ((-1096) $)) (-15 -3175 ((-1261) $)) (-15 -3134 ($ (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-436))))))))
+((-4041 (((-112) $ $) NIL)) (-4048 (((-3 (-562) "failed") $) 29) (((-3 (-224) "failed") $) 35) (((-3 (-1168) "failed") $) 41) (((-3 (-1150) "failed") $) 47)) (-3960 (((-562) $) 30) (((-224) $) 36) (((-1168) $) 42) (((-1150) $) 48)) (-4224 (((-112) $) 53)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3098 (((-3 (-562) (-224) (-1168) (-1150) $) $) 55)) (-3075 (((-639 $) $) 57)) (-4208 (((-1096) $) 24) (($ (-1096)) 25)) (-2354 (((-112) $) 56)) (-4053 (((-857) $) 23) (($ (-562)) 26) (($ (-224)) 32) (($ (-1168)) 38) (($ (-1150)) 44) (((-535) $) 59) (((-562) $) 31) (((-224) $) 37) (((-1168) $) 43) (((-1150) $) 49)) (-2276 (((-112) $ (|[\|\|]| (-562))) 10) (((-112) $ (|[\|\|]| (-224))) 13) (((-112) $ (|[\|\|]| (-1168))) 19) (((-112) $ (|[\|\|]| (-1150))) 16)) (-2502 (($ (-1168) (-639 $)) 51) (($ $ (-639 $)) 52)) (-4248 (((-562) $) 27) (((-224) $) 33) (((-1168) $) 39) (((-1150) $) 45)) (-1733 (((-112) $ $) 7)))
+(((-1173) (-13 (-1251) (-1092) (-1033 (-562)) (-1033 (-224)) (-1033 (-1168)) (-1033 (-1150)) (-609 (-535)) (-10 -8 (-15 -4208 ((-1096) $)) (-15 -4208 ($ (-1096))) (-15 -4053 ((-562) $)) (-15 -4248 ((-562) $)) (-15 -4053 ((-224) $)) (-15 -4248 ((-224) $)) (-15 -4053 ((-1168) $)) (-15 -4248 ((-1168) $)) (-15 -4053 ((-1150) $)) (-15 -4248 ((-1150) $)) (-15 -2502 ($ (-1168) (-639 $))) (-15 -2502 ($ $ (-639 $))) (-15 -4224 ((-112) $)) (-15 -3098 ((-3 (-562) (-224) (-1168) (-1150) $) $)) (-15 -3075 ((-639 $) $)) (-15 -2354 ((-112) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-562)))) (-15 -2276 ((-112) $ (|[\|\|]| (-224)))) (-15 -2276 ((-112) $ (|[\|\|]| (-1168)))) (-15 -2276 ((-112) $ (|[\|\|]| (-1150))))))) (T -1173))
+((-4208 (*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-1173)))) (-4208 (*1 *1 *2) (-12 (-5 *2 (-1096)) (-5 *1 (-1173)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1173)))) (-4248 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1173)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-224)) (-5 *1 (-1173)))) (-4248 (*1 *2 *1) (-12 (-5 *2 (-224)) (-5 *1 (-1173)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1173)))) (-4248 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1173)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1173)))) (-4248 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1173)))) (-2502 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-1173))) (-5 *1 (-1173)))) (-2502 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-1173)))) (-4224 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1173)))) (-3098 (*1 *2 *1) (-12 (-5 *2 (-3 (-562) (-224) (-1168) (-1150) (-1173))) (-5 *1 (-1173)))) (-3075 (*1 *2 *1) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-1173)))) (-2354 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1173)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-562))) (-5 *2 (-112)) (-5 *1 (-1173)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-224))) (-5 *2 (-112)) (-5 *1 (-1173)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1168))) (-5 *2 (-112)) (-5 *1 (-1173)))) (-2276 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1150))) (-5 *2 (-112)) (-5 *1 (-1173)))))
+(-13 (-1251) (-1092) (-1033 (-562)) (-1033 (-224)) (-1033 (-1168)) (-1033 (-1150)) (-609 (-535)) (-10 -8 (-15 -4208 ((-1096) $)) (-15 -4208 ($ (-1096))) (-15 -4053 ((-562) $)) (-15 -4248 ((-562) $)) (-15 -4053 ((-224) $)) (-15 -4248 ((-224) $)) (-15 -4053 ((-1168) $)) (-15 -4248 ((-1168) $)) (-15 -4053 ((-1150) $)) (-15 -4248 ((-1150) $)) (-15 -2502 ($ (-1168) (-639 $))) (-15 -2502 ($ $ (-639 $))) (-15 -4224 ((-112) $)) (-15 -3098 ((-3 (-562) (-224) (-1168) (-1150) $) $)) (-15 -3075 ((-639 $) $)) (-15 -2354 ((-112) $)) (-15 -2276 ((-112) $ (|[\|\|]| (-562)))) (-15 -2276 ((-112) $ (|[\|\|]| (-224)))) (-15 -2276 ((-112) $ (|[\|\|]| (-1168)))) (-15 -2276 ((-112) $ (|[\|\|]| (-1150))))))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) 10)) (-1447 (($) 14)) (-1551 (($ $ $) NIL) (($) 7 T CONST)) (-2993 (($ $ $) NIL) (($) 8 T CONST)) (-3549 (((-916) $) 13)) (-3696 (((-1150) $) NIL)) (-2464 (($ (-916)) 12)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)))
(((-1174 |#1|) (-839) (-916)) (T -1174))
NIL
(-839)
((|Integer|) (COND ((< @1 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1800 (($) 9)) (-1448 (($) NIL)) (-1551 (($ $ $) NIL) (($) 7 T CONST)) (-2993 (($ $ $) NIL) (($) 8 T CONST)) (-1999 (((-916) $) NIL)) (-2913 (((-1150) $) NIL)) (-2466 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-3010 (($ $ $) 11)) (-2998 (($ $ $) 10)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)))
-(((-1175 |#1|) (-13 (-839) (-10 -8 (-15 -2998 ($ $ $)) (-15 -3010 ($ $ $)) (-15 -1800 ($)))) (-916)) (T -1175))
-((-2998 (*1 *1 *1 *1) (-12 (-5 *1 (-1175 *2)) (-14 *2 (-916)))) (-3010 (*1 *1 *1 *1) (-12 (-5 *1 (-1175 *2)) (-14 *2 (-916)))) (-1800 (*1 *1) (-12 (-5 *1 (-1175 *2)) (-14 *2 (-916)))))
-(-13 (-839) (-10 -8 (-15 -2998 ($ $ $)) (-15 -3010 ($ $ $)) (-15 -1800 ($))))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-3329 (($) 9)) (-1447 (($) NIL)) (-1551 (($ $ $) NIL) (($) 7 T CONST)) (-2993 (($ $ $) NIL) (($) 8 T CONST)) (-3549 (((-916) $) NIL)) (-3696 (((-1150) $) NIL)) (-2464 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-3009 (($ $ $) 11)) (-2997 (($ $ $) 10)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)))
+(((-1175 |#1|) (-13 (-839) (-10 -8 (-15 -2997 ($ $ $)) (-15 -3009 ($ $ $)) (-15 -3329 ($)))) (-916)) (T -1175))
+((-2997 (*1 *1 *1 *1) (-12 (-5 *1 (-1175 *2)) (-14 *2 (-916)))) (-3009 (*1 *1 *1 *1) (-12 (-5 *1 (-1175 *2)) (-14 *2 (-916)))) (-3329 (*1 *1) (-12 (-5 *1 (-1175 *2)) (-14 *2 (-916)))))
+(-13 (-839) (-10 -8 (-15 -2997 ($ $ $)) (-15 -3009 ($ $ $)) (-15 -3329 ($))))
((|NonNegativeInteger|) (COND ((< @1 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-1996 (((-639 (-639 (-947 |#1|))) (-639 (-406 (-947 |#1|))) (-639 (-1168))) 57)) (-4351 (((-639 (-293 (-406 (-947 |#1|)))) (-293 (-406 (-947 |#1|)))) 69) (((-639 (-293 (-406 (-947 |#1|)))) (-406 (-947 |#1|))) 65) (((-639 (-293 (-406 (-947 |#1|)))) (-293 (-406 (-947 |#1|))) (-1168)) 70) (((-639 (-293 (-406 (-947 |#1|)))) (-406 (-947 |#1|)) (-1168)) 64) (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-293 (-406 (-947 |#1|))))) 93) (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-406 (-947 |#1|)))) 92) (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-293 (-406 (-947 |#1|)))) (-639 (-1168))) 94) (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-406 (-947 |#1|))) (-639 (-1168))) 91)))
-(((-1176 |#1|) (-10 -7 (-15 -4351 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -4351 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-293 (-406 (-947 |#1|)))) (-639 (-1168)))) (-15 -4351 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-406 (-947 |#1|))))) (-15 -4351 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-293 (-406 (-947 |#1|)))))) (-15 -4351 ((-639 (-293 (-406 (-947 |#1|)))) (-406 (-947 |#1|)) (-1168))) (-15 -4351 ((-639 (-293 (-406 (-947 |#1|)))) (-293 (-406 (-947 |#1|))) (-1168))) (-15 -4351 ((-639 (-293 (-406 (-947 |#1|)))) (-406 (-947 |#1|)))) (-15 -4351 ((-639 (-293 (-406 (-947 |#1|)))) (-293 (-406 (-947 |#1|))))) (-15 -1996 ((-639 (-639 (-947 |#1|))) (-639 (-406 (-947 |#1|))) (-639 (-1168))))) (-554)) (T -1176))
-((-1996 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168))) (-4 *5 (-554)) (-5 *2 (-639 (-639 (-947 *5)))) (-5 *1 (-1176 *5)))) (-4351 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 (-293 (-406 (-947 *4))))) (-5 *1 (-1176 *4)) (-5 *3 (-293 (-406 (-947 *4)))))) (-4351 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 (-293 (-406 (-947 *4))))) (-5 *1 (-1176 *4)) (-5 *3 (-406 (-947 *4))))) (-4351 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-554)) (-5 *2 (-639 (-293 (-406 (-947 *5))))) (-5 *1 (-1176 *5)) (-5 *3 (-293 (-406 (-947 *5)))))) (-4351 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-554)) (-5 *2 (-639 (-293 (-406 (-947 *5))))) (-5 *1 (-1176 *5)) (-5 *3 (-406 (-947 *5))))) (-4351 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-1176 *4)) (-5 *3 (-639 (-293 (-406 (-947 *4))))))) (-4351 (*1 *2 *3) (-12 (-5 *3 (-639 (-406 (-947 *4)))) (-4 *4 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-1176 *4)))) (-4351 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-1168))) (-4 *5 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-1176 *5)) (-5 *3 (-639 (-293 (-406 (-947 *5))))))) (-4351 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168))) (-4 *5 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-1176 *5)))))
-(-10 -7 (-15 -4351 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -4351 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-293 (-406 (-947 |#1|)))) (-639 (-1168)))) (-15 -4351 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-406 (-947 |#1|))))) (-15 -4351 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-293 (-406 (-947 |#1|)))))) (-15 -4351 ((-639 (-293 (-406 (-947 |#1|)))) (-406 (-947 |#1|)) (-1168))) (-15 -4351 ((-639 (-293 (-406 (-947 |#1|)))) (-293 (-406 (-947 |#1|))) (-1168))) (-15 -4351 ((-639 (-293 (-406 (-947 |#1|)))) (-406 (-947 |#1|)))) (-15 -4351 ((-639 (-293 (-406 (-947 |#1|)))) (-293 (-406 (-947 |#1|))))) (-15 -1996 ((-639 (-639 (-947 |#1|))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))))
-((-3625 (((-1150)) 7)) (-2306 (((-1150)) 9)) (-2487 (((-1261) (-1150)) 11)) (-3493 (((-1150)) 8)))
-(((-1177) (-10 -7 (-15 -3625 ((-1150))) (-15 -3493 ((-1150))) (-15 -2306 ((-1150))) (-15 -2487 ((-1261) (-1150))))) (T -1177))
-((-2487 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1177)))) (-2306 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1177)))) (-3493 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1177)))) (-3625 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1177)))))
-(-10 -7 (-15 -3625 ((-1150))) (-15 -3493 ((-1150))) (-15 -2306 ((-1150))) (-15 -2487 ((-1261) (-1150))))
-((-3102 (((-639 (-639 |#1|)) (-639 (-639 |#1|)) (-639 (-639 (-639 |#1|)))) 38)) (-3149 (((-639 (-639 (-639 |#1|))) (-639 (-639 |#1|))) 24)) (-3486 (((-1179 (-639 |#1|)) (-639 |#1|)) 34)) (-3734 (((-639 (-639 |#1|)) (-639 |#1|)) 30)) (-3993 (((-2 (|:| |f1| (-639 |#1|)) (|:| |f2| (-639 (-639 (-639 |#1|)))) (|:| |f3| (-639 (-639 |#1|))) (|:| |f4| (-639 (-639 (-639 |#1|))))) (-639 (-639 (-639 |#1|)))) 37)) (-2152 (((-2 (|:| |f1| (-639 |#1|)) (|:| |f2| (-639 (-639 (-639 |#1|)))) (|:| |f3| (-639 (-639 |#1|))) (|:| |f4| (-639 (-639 (-639 |#1|))))) (-639 |#1|) (-639 (-639 (-639 |#1|))) (-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))) (-639 (-639 (-639 |#1|))) (-639 (-639 (-639 |#1|)))) 36)) (-2146 (((-639 (-639 |#1|)) (-639 (-639 |#1|))) 28)) (-3494 (((-639 |#1|) (-639 |#1|)) 31)) (-3450 (((-639 (-639 (-639 |#1|))) (-639 |#1|) (-639 (-639 (-639 |#1|)))) 18)) (-2598 (((-639 (-639 (-639 |#1|))) (-1 (-112) |#1| |#1|) (-639 |#1|) (-639 (-639 (-639 |#1|)))) 16)) (-3987 (((-2 (|:| |fs| (-112)) (|:| |sd| (-639 |#1|)) (|:| |td| (-639 (-639 |#1|)))) (-1 (-112) |#1| |#1|) (-639 |#1|) (-639 (-639 |#1|))) 14)) (-1727 (((-639 (-639 |#1|)) (-639 (-639 (-639 |#1|)))) 39)) (-1487 (((-639 (-639 |#1|)) (-1179 (-639 |#1|))) 41)))
-(((-1178 |#1|) (-10 -7 (-15 -3987 ((-2 (|:| |fs| (-112)) (|:| |sd| (-639 |#1|)) (|:| |td| (-639 (-639 |#1|)))) (-1 (-112) |#1| |#1|) (-639 |#1|) (-639 (-639 |#1|)))) (-15 -2598 ((-639 (-639 (-639 |#1|))) (-1 (-112) |#1| |#1|) (-639 |#1|) (-639 (-639 (-639 |#1|))))) (-15 -3450 ((-639 (-639 (-639 |#1|))) (-639 |#1|) (-639 (-639 (-639 |#1|))))) (-15 -3102 ((-639 (-639 |#1|)) (-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))))) (-15 -1727 ((-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))))) (-15 -1487 ((-639 (-639 |#1|)) (-1179 (-639 |#1|)))) (-15 -3149 ((-639 (-639 (-639 |#1|))) (-639 (-639 |#1|)))) (-15 -3486 ((-1179 (-639 |#1|)) (-639 |#1|))) (-15 -2146 ((-639 (-639 |#1|)) (-639 (-639 |#1|)))) (-15 -3734 ((-639 (-639 |#1|)) (-639 |#1|))) (-15 -3494 ((-639 |#1|) (-639 |#1|))) (-15 -2152 ((-2 (|:| |f1| (-639 |#1|)) (|:| |f2| (-639 (-639 (-639 |#1|)))) (|:| |f3| (-639 (-639 |#1|))) (|:| |f4| (-639 (-639 (-639 |#1|))))) (-639 |#1|) (-639 (-639 (-639 |#1|))) (-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))) (-639 (-639 (-639 |#1|))) (-639 (-639 (-639 |#1|))))) (-15 -3993 ((-2 (|:| |f1| (-639 |#1|)) (|:| |f2| (-639 (-639 (-639 |#1|)))) (|:| |f3| (-639 (-639 |#1|))) (|:| |f4| (-639 (-639 (-639 |#1|))))) (-639 (-639 (-639 |#1|)))))) (-845)) (T -1178))
-((-3993 (*1 *2 *3) (-12 (-4 *4 (-845)) (-5 *2 (-2 (|:| |f1| (-639 *4)) (|:| |f2| (-639 (-639 (-639 *4)))) (|:| |f3| (-639 (-639 *4))) (|:| |f4| (-639 (-639 (-639 *4)))))) (-5 *1 (-1178 *4)) (-5 *3 (-639 (-639 (-639 *4)))))) (-2152 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-845)) (-5 *3 (-639 *6)) (-5 *5 (-639 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-639 *5)) (|:| |f3| *5) (|:| |f4| (-639 *5)))) (-5 *1 (-1178 *6)) (-5 *4 (-639 *5)))) (-3494 (*1 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-1178 *3)))) (-3734 (*1 *2 *3) (-12 (-4 *4 (-845)) (-5 *2 (-639 (-639 *4))) (-5 *1 (-1178 *4)) (-5 *3 (-639 *4)))) (-2146 (*1 *2 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-845)) (-5 *1 (-1178 *3)))) (-3486 (*1 *2 *3) (-12 (-4 *4 (-845)) (-5 *2 (-1179 (-639 *4))) (-5 *1 (-1178 *4)) (-5 *3 (-639 *4)))) (-3149 (*1 *2 *3) (-12 (-4 *4 (-845)) (-5 *2 (-639 (-639 (-639 *4)))) (-5 *1 (-1178 *4)) (-5 *3 (-639 (-639 *4))))) (-1487 (*1 *2 *3) (-12 (-5 *3 (-1179 (-639 *4))) (-4 *4 (-845)) (-5 *2 (-639 (-639 *4))) (-5 *1 (-1178 *4)))) (-1727 (*1 *2 *3) (-12 (-5 *3 (-639 (-639 (-639 *4)))) (-5 *2 (-639 (-639 *4))) (-5 *1 (-1178 *4)) (-4 *4 (-845)))) (-3102 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-639 (-639 *4)))) (-5 *2 (-639 (-639 *4))) (-4 *4 (-845)) (-5 *1 (-1178 *4)))) (-3450 (*1 *2 *3 *2) (-12 (-5 *2 (-639 (-639 (-639 *4)))) (-5 *3 (-639 *4)) (-4 *4 (-845)) (-5 *1 (-1178 *4)))) (-2598 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-639 (-639 (-639 *5)))) (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-639 *5)) (-4 *5 (-845)) (-5 *1 (-1178 *5)))) (-3987 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-845)) (-5 *4 (-639 *6)) (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-639 *4)))) (-5 *1 (-1178 *6)) (-5 *5 (-639 *4)))))
-(-10 -7 (-15 -3987 ((-2 (|:| |fs| (-112)) (|:| |sd| (-639 |#1|)) (|:| |td| (-639 (-639 |#1|)))) (-1 (-112) |#1| |#1|) (-639 |#1|) (-639 (-639 |#1|)))) (-15 -2598 ((-639 (-639 (-639 |#1|))) (-1 (-112) |#1| |#1|) (-639 |#1|) (-639 (-639 (-639 |#1|))))) (-15 -3450 ((-639 (-639 (-639 |#1|))) (-639 |#1|) (-639 (-639 (-639 |#1|))))) (-15 -3102 ((-639 (-639 |#1|)) (-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))))) (-15 -1727 ((-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))))) (-15 -1487 ((-639 (-639 |#1|)) (-1179 (-639 |#1|)))) (-15 -3149 ((-639 (-639 (-639 |#1|))) (-639 (-639 |#1|)))) (-15 -3486 ((-1179 (-639 |#1|)) (-639 |#1|))) (-15 -2146 ((-639 (-639 |#1|)) (-639 (-639 |#1|)))) (-15 -3734 ((-639 (-639 |#1|)) (-639 |#1|))) (-15 -3494 ((-639 |#1|) (-639 |#1|))) (-15 -2152 ((-2 (|:| |f1| (-639 |#1|)) (|:| |f2| (-639 (-639 (-639 |#1|)))) (|:| |f3| (-639 (-639 |#1|))) (|:| |f4| (-639 (-639 (-639 |#1|))))) (-639 |#1|) (-639 (-639 (-639 |#1|))) (-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))) (-639 (-639 (-639 |#1|))) (-639 (-639 (-639 |#1|))))) (-15 -3993 ((-2 (|:| |f1| (-639 |#1|)) (|:| |f2| (-639 (-639 (-639 |#1|)))) (|:| |f3| (-639 (-639 |#1|))) (|:| |f4| (-639 (-639 (-639 |#1|))))) (-639 (-639 (-639 |#1|))))))
-((-3631 (($ (-639 (-639 |#1|))) 10)) (-2824 (((-639 (-639 |#1|)) $) 11)) (-4054 (((-857) $) 26)))
-(((-1179 |#1|) (-10 -8 (-15 -3631 ($ (-639 (-639 |#1|)))) (-15 -2824 ((-639 (-639 |#1|)) $)) (-15 -4054 ((-857) $))) (-1092)) (T -1179))
-((-4054 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-1179 *3)) (-4 *3 (-1092)))) (-2824 (*1 *2 *1) (-12 (-5 *2 (-639 (-639 *3))) (-5 *1 (-1179 *3)) (-4 *3 (-1092)))) (-3631 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-1179 *3)))))
-(-10 -8 (-15 -3631 ($ (-639 (-639 |#1|)))) (-15 -2824 ((-639 (-639 |#1|)) $)) (-15 -4054 ((-857) $)))
-((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-3052 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#2| $ |#1| |#2|) NIL)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1472 (((-3 |#2| "failed") |#1| $) NIL)) (-1800 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-4000 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-3 |#2| "failed") |#1| $) NIL)) (-1475 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#2| $ |#1|) NIL)) (-1720 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) NIL)) (-4197 ((|#1| $) NIL (|has| |#1| (-845)))) (-1912 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-639 |#2|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-3874 ((|#1| $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4403))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1520 (((-639 |#1|) $) NIL)) (-4265 (((-112) |#1| $) NIL)) (-3262 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-4300 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-2093 (((-639 |#1|) $) NIL)) (-1570 (((-112) |#1| $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845)))) (-3251 (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL)) (-2716 (($ $ |#2|) NIL (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-2411 (((-639 |#2|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3564 (($) NIL) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) NIL (-12 (|has| $ (-6 -4402)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-4054 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-1932 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) NIL)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) NIL (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-1180 |#1| |#2|) (-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4402))) (-1092) (-1092)) (T -1180))
-NIL
-(-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4402)))
-((-3720 ((|#1| (-639 |#1|)) 32)) (-1356 ((|#1| |#1| (-562)) 18)) (-2712 (((-1164 |#1|) |#1| (-916)) 15)))
-(((-1181 |#1|) (-10 -7 (-15 -3720 (|#1| (-639 |#1|))) (-15 -2712 ((-1164 |#1|) |#1| (-916))) (-15 -1356 (|#1| |#1| (-562)))) (-362)) (T -1181))
-((-1356 (*1 *2 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-1181 *2)) (-4 *2 (-362)))) (-2712 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-5 *2 (-1164 *3)) (-5 *1 (-1181 *3)) (-4 *3 (-362)))) (-3720 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-5 *1 (-1181 *2)) (-4 *2 (-362)))))
-(-10 -7 (-15 -3720 (|#1| (-639 |#1|))) (-15 -2712 ((-1164 |#1|) |#1| (-916))) (-15 -1356 (|#1| |#1| (-562))))
-((-1443 (($) 10) (($ (-639 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)))) 14)) (-4000 (($ (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) $) 61) (($ (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-1720 (((-639 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) $) 39) (((-639 |#3|) $) 41)) (-1490 (($ (-1 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) 33)) (-4152 (($ (-1 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) $) 51) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-3262 (((-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) $) 54)) (-4300 (($ (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) $) 16)) (-2093 (((-639 |#2|) $) 19)) (-1570 (((-112) |#2| $) 59)) (-3251 (((-3 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) "failed") (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) $) 58)) (-1904 (((-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) $) 63)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 66)) (-2411 (((-639 |#3|) $) 43)) (-2343 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) $) NIL) (((-766) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) $) NIL) (((-766) |#3| $) NIL) (((-766) (-1 (-112) |#3|) $) 67)) (-4054 (((-857) $) 27)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 65)) (-1731 (((-112) $ $) 49)))
-(((-1182 |#1| |#2| |#3|) (-10 -8 (-15 -1731 ((-112) |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -4152 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1443 (|#1| (-639 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))))) (-15 -1443 (|#1|)) (-15 -4152 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1490 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1744 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1763 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1723 ((-766) (-1 (-112) |#3|) |#1|)) (-15 -1720 ((-639 |#3|) |#1|)) (-15 -1723 ((-766) |#3| |#1|)) (-15 -2343 (|#3| |#1| |#2| |#3|)) (-15 -2343 (|#3| |#1| |#2|)) (-15 -2411 ((-639 |#3|) |#1|)) (-15 -1570 ((-112) |#2| |#1|)) (-15 -2093 ((-639 |#2|) |#1|)) (-15 -4000 ((-3 |#3| "failed") |#2| |#1|)) (-15 -4000 (|#1| (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -4000 (|#1| (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) |#1|)) (-15 -3251 ((-3 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) "failed") (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -3262 ((-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) |#1|)) (-15 -4300 (|#1| (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) |#1|)) (-15 -1904 ((-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) |#1|)) (-15 -1723 ((-766) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) |#1|)) (-15 -1720 ((-639 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -1723 ((-766) (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -1763 ((-112) (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -1744 ((-112) (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -1490 (|#1| (-1 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -4152 (|#1| (-1 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|))) (-1183 |#2| |#3|) (-1092) (-1092)) (T -1182))
-NIL
-(-10 -8 (-15 -1731 ((-112) |#1| |#1|)) (-15 -4054 ((-857) |#1|)) (-15 -4152 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1443 (|#1| (-639 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))))) (-15 -1443 (|#1|)) (-15 -4152 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1490 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1744 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1763 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1723 ((-766) (-1 (-112) |#3|) |#1|)) (-15 -1720 ((-639 |#3|) |#1|)) (-15 -1723 ((-766) |#3| |#1|)) (-15 -2343 (|#3| |#1| |#2| |#3|)) (-15 -2343 (|#3| |#1| |#2|)) (-15 -2411 ((-639 |#3|) |#1|)) (-15 -1570 ((-112) |#2| |#1|)) (-15 -2093 ((-639 |#2|) |#1|)) (-15 -4000 ((-3 |#3| "failed") |#2| |#1|)) (-15 -4000 (|#1| (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -4000 (|#1| (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) |#1|)) (-15 -3251 ((-3 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) "failed") (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -3262 ((-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) |#1|)) (-15 -4300 (|#1| (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) |#1|)) (-15 -1904 ((-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) |#1|)) (-15 -1723 ((-766) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) |#1|)) (-15 -1720 ((-639 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -1723 ((-766) (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -1763 ((-112) (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -1744 ((-112) (-1 (-112) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -1490 (|#1| (-1 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)) (-15 -4152 (|#1| (-1 (-2 (|:| -2320 |#2|) (|:| -2694 |#3|)) (-2 (|:| -2320 |#2|) (|:| -2694 |#3|))) |#1|)))
-((-4041 (((-112) $ $) 19 (-4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-1443 (($) 72) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 71)) (-3052 (((-1261) $ |#1| |#1|) 99 (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) 8)) (-4200 ((|#2| $ |#1| |#2|) 73)) (-3111 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 45 (|has| $ (-6 -4402)))) (-3556 (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 55 (|has| $ (-6 -4402)))) (-1472 (((-3 |#2| "failed") |#1| $) 61)) (-1800 (($) 7 T CONST)) (-1459 (($ $) 58 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402))))) (-4000 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 47 (|has| $ (-6 -4402))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 46 (|has| $ (-6 -4402))) (((-3 |#2| "failed") |#1| $) 62)) (-1475 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 54 (|has| $ (-6 -4402)))) (-1955 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 56 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 53 (|has| $ (-6 -4402))) (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 52 (|has| $ (-6 -4402)))) (-1505 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4403)))) (-1420 ((|#2| $ |#1|) 88)) (-1720 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 30 (|has| $ (-6 -4402))) (((-639 |#2|) $) 79 (|has| $ (-6 -4402)))) (-3292 (((-112) $ (-766)) 9)) (-4197 ((|#1| $) 96 (|has| |#1| (-845)))) (-1912 (((-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 29 (|has| $ (-6 -4402))) (((-639 |#2|) $) 80 (|has| $ (-6 -4402)))) (-1669 (((-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (((-112) |#2| $) 82 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4402))))) (-3874 ((|#1| $) 95 (|has| |#1| (-845)))) (-1490 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 34 (|has| $ (-6 -4403))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4403)))) (-4152 (($ (-1 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70)) (-3289 (((-112) $ (-766)) 10)) (-2913 (((-1150) $) 22 (-4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-1520 (((-639 |#1|) $) 63)) (-4265 (((-112) |#1| $) 64)) (-3262 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 39)) (-4300 (($ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 40)) (-2093 (((-639 |#1|) $) 93)) (-1570 (((-112) |#1| $) 92)) (-1709 (((-1112) $) 21 (-4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-1421 ((|#2| $) 97 (|has| |#1| (-845)))) (-3251 (((-3 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) "failed") (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 51)) (-2716 (($ $ |#2|) 98 (|has| $ (-6 -4403)))) (-1904 (((-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 41)) (-1763 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 32 (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))))) 26 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 25 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) 24 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 23 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) 86 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) 84 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) 83 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#2| $) 94 (-12 (|has| $ (-6 -4402)) (|has| |#2| (-1092))))) (-2411 (((-639 |#2|) $) 91)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89)) (-3564 (($) 49) (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 48)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 31 (|has| $ (-6 -4402))) (((-766) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| $ (-6 -4402)))) (((-766) |#2| $) 81 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4402)))) (((-766) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4402)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))))) (-4066 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 50)) (-4054 (((-857) $) 18 (-4037 (|has| |#2| (-609 (-857))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857)))))) (-1932 (($ (-639 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) 42)) (-1744 (((-112) (-1 (-112) (-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) $) 33 (|has| $ (-6 -4402))) (((-112) (-1 (-112) |#2|) $) 76 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (-4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-3519 (((-639 (-639 (-947 |#1|))) (-639 (-406 (-947 |#1|))) (-639 (-1168))) 57)) (-3888 (((-639 (-293 (-406 (-947 |#1|)))) (-293 (-406 (-947 |#1|)))) 69) (((-639 (-293 (-406 (-947 |#1|)))) (-406 (-947 |#1|))) 65) (((-639 (-293 (-406 (-947 |#1|)))) (-293 (-406 (-947 |#1|))) (-1168)) 70) (((-639 (-293 (-406 (-947 |#1|)))) (-406 (-947 |#1|)) (-1168)) 64) (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-293 (-406 (-947 |#1|))))) 93) (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-406 (-947 |#1|)))) 92) (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-293 (-406 (-947 |#1|)))) (-639 (-1168))) 94) (((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-406 (-947 |#1|))) (-639 (-1168))) 91)))
+(((-1176 |#1|) (-10 -7 (-15 -3888 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -3888 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-293 (-406 (-947 |#1|)))) (-639 (-1168)))) (-15 -3888 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-406 (-947 |#1|))))) (-15 -3888 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-293 (-406 (-947 |#1|)))))) (-15 -3888 ((-639 (-293 (-406 (-947 |#1|)))) (-406 (-947 |#1|)) (-1168))) (-15 -3888 ((-639 (-293 (-406 (-947 |#1|)))) (-293 (-406 (-947 |#1|))) (-1168))) (-15 -3888 ((-639 (-293 (-406 (-947 |#1|)))) (-406 (-947 |#1|)))) (-15 -3888 ((-639 (-293 (-406 (-947 |#1|)))) (-293 (-406 (-947 |#1|))))) (-15 -3519 ((-639 (-639 (-947 |#1|))) (-639 (-406 (-947 |#1|))) (-639 (-1168))))) (-554)) (T -1176))
+((-3519 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168))) (-4 *5 (-554)) (-5 *2 (-639 (-639 (-947 *5)))) (-5 *1 (-1176 *5)))) (-3888 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 (-293 (-406 (-947 *4))))) (-5 *1 (-1176 *4)) (-5 *3 (-293 (-406 (-947 *4)))))) (-3888 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 (-293 (-406 (-947 *4))))) (-5 *1 (-1176 *4)) (-5 *3 (-406 (-947 *4))))) (-3888 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-554)) (-5 *2 (-639 (-293 (-406 (-947 *5))))) (-5 *1 (-1176 *5)) (-5 *3 (-293 (-406 (-947 *5)))))) (-3888 (*1 *2 *3 *4) (-12 (-5 *4 (-1168)) (-4 *5 (-554)) (-5 *2 (-639 (-293 (-406 (-947 *5))))) (-5 *1 (-1176 *5)) (-5 *3 (-406 (-947 *5))))) (-3888 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-1176 *4)) (-5 *3 (-639 (-293 (-406 (-947 *4))))))) (-3888 (*1 *2 *3) (-12 (-5 *3 (-639 (-406 (-947 *4)))) (-4 *4 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-1176 *4)))) (-3888 (*1 *2 *3 *4) (-12 (-5 *4 (-639 (-1168))) (-4 *5 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-1176 *5)) (-5 *3 (-639 (-293 (-406 (-947 *5))))))) (-3888 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168))) (-4 *5 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-1176 *5)))))
+(-10 -7 (-15 -3888 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))) (-15 -3888 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-293 (-406 (-947 |#1|)))) (-639 (-1168)))) (-15 -3888 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-406 (-947 |#1|))))) (-15 -3888 ((-639 (-639 (-293 (-406 (-947 |#1|))))) (-639 (-293 (-406 (-947 |#1|)))))) (-15 -3888 ((-639 (-293 (-406 (-947 |#1|)))) (-406 (-947 |#1|)) (-1168))) (-15 -3888 ((-639 (-293 (-406 (-947 |#1|)))) (-293 (-406 (-947 |#1|))) (-1168))) (-15 -3888 ((-639 (-293 (-406 (-947 |#1|)))) (-406 (-947 |#1|)))) (-15 -3888 ((-639 (-293 (-406 (-947 |#1|)))) (-293 (-406 (-947 |#1|))))) (-15 -3519 ((-639 (-639 (-947 |#1|))) (-639 (-406 (-947 |#1|))) (-639 (-1168)))))
+((-4315 (((-1150)) 7)) (-3694 (((-1150)) 9)) (-2486 (((-1261) (-1150)) 11)) (-2454 (((-1150)) 8)))
+(((-1177) (-10 -7 (-15 -4315 ((-1150))) (-15 -2454 ((-1150))) (-15 -3694 ((-1150))) (-15 -2486 ((-1261) (-1150))))) (T -1177))
+((-2486 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1177)))) (-3694 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1177)))) (-2454 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1177)))) (-4315 (*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1177)))))
+(-10 -7 (-15 -4315 ((-1150))) (-15 -2454 ((-1150))) (-15 -3694 ((-1150))) (-15 -2486 ((-1261) (-1150))))
+((-2909 (((-639 (-639 |#1|)) (-639 (-639 |#1|)) (-639 (-639 (-639 |#1|)))) 38)) (-3323 (((-639 (-639 (-639 |#1|))) (-639 (-639 |#1|))) 24)) (-2393 (((-1179 (-639 |#1|)) (-639 |#1|)) 34)) (-2964 (((-639 (-639 |#1|)) (-639 |#1|)) 30)) (-3993 (((-2 (|:| |f1| (-639 |#1|)) (|:| |f2| (-639 (-639 (-639 |#1|)))) (|:| |f3| (-639 (-639 |#1|))) (|:| |f4| (-639 (-639 (-639 |#1|))))) (-639 (-639 (-639 |#1|)))) 37)) (-2802 (((-2 (|:| |f1| (-639 |#1|)) (|:| |f2| (-639 (-639 (-639 |#1|)))) (|:| |f3| (-639 (-639 |#1|))) (|:| |f4| (-639 (-639 (-639 |#1|))))) (-639 |#1|) (-639 (-639 (-639 |#1|))) (-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))) (-639 (-639 (-639 |#1|))) (-639 (-639 (-639 |#1|)))) 36)) (-2741 (((-639 (-639 |#1|)) (-639 (-639 |#1|))) 28)) (-2463 (((-639 |#1|) (-639 |#1|)) 31)) (-3188 (((-639 (-639 (-639 |#1|))) (-639 |#1|) (-639 (-639 (-639 |#1|)))) 18)) (-3580 (((-639 (-639 (-639 |#1|))) (-1 (-112) |#1| |#1|) (-639 |#1|) (-639 (-639 (-639 |#1|)))) 16)) (-3598 (((-2 (|:| |fs| (-112)) (|:| |sd| (-639 |#1|)) (|:| |td| (-639 (-639 |#1|)))) (-1 (-112) |#1| |#1|) (-639 |#1|) (-639 (-639 |#1|))) 14)) (-3925 (((-639 (-639 |#1|)) (-639 (-639 (-639 |#1|)))) 39)) (-2498 (((-639 (-639 |#1|)) (-1179 (-639 |#1|))) 41)))
+(((-1178 |#1|) (-10 -7 (-15 -3598 ((-2 (|:| |fs| (-112)) (|:| |sd| (-639 |#1|)) (|:| |td| (-639 (-639 |#1|)))) (-1 (-112) |#1| |#1|) (-639 |#1|) (-639 (-639 |#1|)))) (-15 -3580 ((-639 (-639 (-639 |#1|))) (-1 (-112) |#1| |#1|) (-639 |#1|) (-639 (-639 (-639 |#1|))))) (-15 -3188 ((-639 (-639 (-639 |#1|))) (-639 |#1|) (-639 (-639 (-639 |#1|))))) (-15 -2909 ((-639 (-639 |#1|)) (-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))))) (-15 -3925 ((-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))))) (-15 -2498 ((-639 (-639 |#1|)) (-1179 (-639 |#1|)))) (-15 -3323 ((-639 (-639 (-639 |#1|))) (-639 (-639 |#1|)))) (-15 -2393 ((-1179 (-639 |#1|)) (-639 |#1|))) (-15 -2741 ((-639 (-639 |#1|)) (-639 (-639 |#1|)))) (-15 -2964 ((-639 (-639 |#1|)) (-639 |#1|))) (-15 -2463 ((-639 |#1|) (-639 |#1|))) (-15 -2802 ((-2 (|:| |f1| (-639 |#1|)) (|:| |f2| (-639 (-639 (-639 |#1|)))) (|:| |f3| (-639 (-639 |#1|))) (|:| |f4| (-639 (-639 (-639 |#1|))))) (-639 |#1|) (-639 (-639 (-639 |#1|))) (-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))) (-639 (-639 (-639 |#1|))) (-639 (-639 (-639 |#1|))))) (-15 -3993 ((-2 (|:| |f1| (-639 |#1|)) (|:| |f2| (-639 (-639 (-639 |#1|)))) (|:| |f3| (-639 (-639 |#1|))) (|:| |f4| (-639 (-639 (-639 |#1|))))) (-639 (-639 (-639 |#1|)))))) (-845)) (T -1178))
+((-3993 (*1 *2 *3) (-12 (-4 *4 (-845)) (-5 *2 (-2 (|:| |f1| (-639 *4)) (|:| |f2| (-639 (-639 (-639 *4)))) (|:| |f3| (-639 (-639 *4))) (|:| |f4| (-639 (-639 (-639 *4)))))) (-5 *1 (-1178 *4)) (-5 *3 (-639 (-639 (-639 *4)))))) (-2802 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-845)) (-5 *3 (-639 *6)) (-5 *5 (-639 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-639 *5)) (|:| |f3| *5) (|:| |f4| (-639 *5)))) (-5 *1 (-1178 *6)) (-5 *4 (-639 *5)))) (-2463 (*1 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-1178 *3)))) (-2964 (*1 *2 *3) (-12 (-4 *4 (-845)) (-5 *2 (-639 (-639 *4))) (-5 *1 (-1178 *4)) (-5 *3 (-639 *4)))) (-2741 (*1 *2 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-845)) (-5 *1 (-1178 *3)))) (-2393 (*1 *2 *3) (-12 (-4 *4 (-845)) (-5 *2 (-1179 (-639 *4))) (-5 *1 (-1178 *4)) (-5 *3 (-639 *4)))) (-3323 (*1 *2 *3) (-12 (-4 *4 (-845)) (-5 *2 (-639 (-639 (-639 *4)))) (-5 *1 (-1178 *4)) (-5 *3 (-639 (-639 *4))))) (-2498 (*1 *2 *3) (-12 (-5 *3 (-1179 (-639 *4))) (-4 *4 (-845)) (-5 *2 (-639 (-639 *4))) (-5 *1 (-1178 *4)))) (-3925 (*1 *2 *3) (-12 (-5 *3 (-639 (-639 (-639 *4)))) (-5 *2 (-639 (-639 *4))) (-5 *1 (-1178 *4)) (-4 *4 (-845)))) (-2909 (*1 *2 *2 *3) (-12 (-5 *3 (-639 (-639 (-639 *4)))) (-5 *2 (-639 (-639 *4))) (-4 *4 (-845)) (-5 *1 (-1178 *4)))) (-3188 (*1 *2 *3 *2) (-12 (-5 *2 (-639 (-639 (-639 *4)))) (-5 *3 (-639 *4)) (-4 *4 (-845)) (-5 *1 (-1178 *4)))) (-3580 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-639 (-639 (-639 *5)))) (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-639 *5)) (-4 *5 (-845)) (-5 *1 (-1178 *5)))) (-3598 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-845)) (-5 *4 (-639 *6)) (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-639 *4)))) (-5 *1 (-1178 *6)) (-5 *5 (-639 *4)))))
+(-10 -7 (-15 -3598 ((-2 (|:| |fs| (-112)) (|:| |sd| (-639 |#1|)) (|:| |td| (-639 (-639 |#1|)))) (-1 (-112) |#1| |#1|) (-639 |#1|) (-639 (-639 |#1|)))) (-15 -3580 ((-639 (-639 (-639 |#1|))) (-1 (-112) |#1| |#1|) (-639 |#1|) (-639 (-639 (-639 |#1|))))) (-15 -3188 ((-639 (-639 (-639 |#1|))) (-639 |#1|) (-639 (-639 (-639 |#1|))))) (-15 -2909 ((-639 (-639 |#1|)) (-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))))) (-15 -3925 ((-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))))) (-15 -2498 ((-639 (-639 |#1|)) (-1179 (-639 |#1|)))) (-15 -3323 ((-639 (-639 (-639 |#1|))) (-639 (-639 |#1|)))) (-15 -2393 ((-1179 (-639 |#1|)) (-639 |#1|))) (-15 -2741 ((-639 (-639 |#1|)) (-639 (-639 |#1|)))) (-15 -2964 ((-639 (-639 |#1|)) (-639 |#1|))) (-15 -2463 ((-639 |#1|) (-639 |#1|))) (-15 -2802 ((-2 (|:| |f1| (-639 |#1|)) (|:| |f2| (-639 (-639 (-639 |#1|)))) (|:| |f3| (-639 (-639 |#1|))) (|:| |f4| (-639 (-639 (-639 |#1|))))) (-639 |#1|) (-639 (-639 (-639 |#1|))) (-639 (-639 |#1|)) (-639 (-639 (-639 |#1|))) (-639 (-639 (-639 |#1|))) (-639 (-639 (-639 |#1|))))) (-15 -3993 ((-2 (|:| |f1| (-639 |#1|)) (|:| |f2| (-639 (-639 (-639 |#1|)))) (|:| |f3| (-639 (-639 |#1|))) (|:| |f4| (-639 (-639 (-639 |#1|))))) (-639 (-639 (-639 |#1|))))))
+((-4378 (($ (-639 (-639 |#1|))) 10)) (-2247 (((-639 (-639 |#1|)) $) 11)) (-4053 (((-857) $) 26)))
+(((-1179 |#1|) (-10 -8 (-15 -4378 ($ (-639 (-639 |#1|)))) (-15 -2247 ((-639 (-639 |#1|)) $)) (-15 -4053 ((-857) $))) (-1092)) (T -1179))
+((-4053 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-1179 *3)) (-4 *3 (-1092)))) (-2247 (*1 *2 *1) (-12 (-5 *2 (-639 (-639 *3))) (-5 *1 (-1179 *3)) (-4 *3 (-1092)))) (-4378 (*1 *1 *2) (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-1179 *3)))))
+(-10 -8 (-15 -4378 ($ (-639 (-639 |#1|)))) (-15 -2247 ((-639 (-639 |#1|)) $)) (-15 -4053 ((-857) $)))
+((-4041 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1443 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-3655 (((-1261) $ |#1| |#1|) NIL (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#2| $ |#1| |#2|) NIL)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1472 (((-3 |#2| "failed") |#1| $) NIL)) (-3329 (($) NIL T CONST)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-3729 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-3 |#2| "failed") |#1| $) NIL)) (-1475 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#2| $ |#1|) NIL)) (-1720 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) NIL)) (-1849 ((|#1| $) NIL (|has| |#1| (-845)))) (-2123 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-639 |#2|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-1929 ((|#1| $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4404))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1521 (((-639 |#1|) $) NIL)) (-4278 (((-112) |#1| $) NIL)) (-2078 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-1581 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3336 (((-639 |#1|) $) NIL)) (-1987 (((-112) |#1| $) NIL)) (-1709 (((-1112) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-1421 ((|#2| $) NIL (|has| |#1| (-845)))) (-1963 (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL)) (-3510 (($ $ |#2|) NIL (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-2366 (((-639 |#2|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-1932 (($) NIL) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) NIL (-12 (|has| $ (-6 -4403)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (((-766) |#2| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092)))) (((-766) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-4053 (((-857) $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857))) (|has| |#2| (-609 (-857)))))) (-4131 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) NIL)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) NIL (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) NIL (-4037 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| |#2| (-1092))))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-1180 |#1| |#2|) (-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4403))) (-1092) (-1092)) (T -1180))
+NIL
+(-13 (-1183 |#1| |#2|) (-10 -7 (-6 -4403)))
+((-4067 ((|#1| (-639 |#1|)) 32)) (-1532 ((|#1| |#1| (-562)) 18)) (-3475 (((-1164 |#1|) |#1| (-916)) 15)))
+(((-1181 |#1|) (-10 -7 (-15 -4067 (|#1| (-639 |#1|))) (-15 -3475 ((-1164 |#1|) |#1| (-916))) (-15 -1532 (|#1| |#1| (-562)))) (-362)) (T -1181))
+((-1532 (*1 *2 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-1181 *2)) (-4 *2 (-362)))) (-3475 (*1 *2 *3 *4) (-12 (-5 *4 (-916)) (-5 *2 (-1164 *3)) (-5 *1 (-1181 *3)) (-4 *3 (-362)))) (-4067 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-5 *1 (-1181 *2)) (-4 *2 (-362)))))
+(-10 -7 (-15 -4067 (|#1| (-639 |#1|))) (-15 -3475 ((-1164 |#1|) |#1| (-916))) (-15 -1532 (|#1| |#1| (-562))))
+((-1443 (($) 10) (($ (-639 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)))) 14)) (-3729 (($ (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) $) 61) (($ (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-1720 (((-639 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) $) 39) (((-639 |#3|) $) 41)) (-1491 (($ (-1 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) 33)) (-4152 (($ (-1 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) $) 51) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-2078 (((-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) $) 54)) (-1581 (($ (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) $) 16)) (-3336 (((-639 |#2|) $) 19)) (-1987 (((-112) |#2| $) 59)) (-1963 (((-3 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) "failed") (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) $) 58)) (-2038 (((-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) $) 63)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 66)) (-2366 (((-639 |#3|) $) 43)) (-2343 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) $) NIL) (((-766) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) $) NIL) (((-766) |#3| $) NIL) (((-766) (-1 (-112) |#3|) $) 67)) (-4053 (((-857) $) 27)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 65)) (-1733 (((-112) $ $) 49)))
+(((-1182 |#1| |#2| |#3|) (-10 -8 (-15 -1733 ((-112) |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -4152 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1443 (|#1| (-639 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))))) (-15 -1443 (|#1|)) (-15 -4152 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1491 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2879 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3008 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1723 ((-766) (-1 (-112) |#3|) |#1|)) (-15 -1720 ((-639 |#3|) |#1|)) (-15 -1723 ((-766) |#3| |#1|)) (-15 -2343 (|#3| |#1| |#2| |#3|)) (-15 -2343 (|#3| |#1| |#2|)) (-15 -2366 ((-639 |#3|) |#1|)) (-15 -1987 ((-112) |#2| |#1|)) (-15 -3336 ((-639 |#2|) |#1|)) (-15 -3729 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3729 (|#1| (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -3729 (|#1| (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) |#1|)) (-15 -1963 ((-3 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) "failed") (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -2078 ((-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) |#1|)) (-15 -1581 (|#1| (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) |#1|)) (-15 -2038 ((-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) |#1|)) (-15 -1723 ((-766) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) |#1|)) (-15 -1720 ((-639 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -1723 ((-766) (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -3008 ((-112) (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -2879 ((-112) (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -1491 (|#1| (-1 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -4152 (|#1| (-1 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|))) (-1183 |#2| |#3|) (-1092) (-1092)) (T -1182))
+NIL
+(-10 -8 (-15 -1733 ((-112) |#1| |#1|)) (-15 -4053 ((-857) |#1|)) (-15 -4152 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -1443 (|#1| (-639 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))))) (-15 -1443 (|#1|)) (-15 -4152 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1491 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2879 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3008 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1723 ((-766) (-1 (-112) |#3|) |#1|)) (-15 -1720 ((-639 |#3|) |#1|)) (-15 -1723 ((-766) |#3| |#1|)) (-15 -2343 (|#3| |#1| |#2| |#3|)) (-15 -2343 (|#3| |#1| |#2|)) (-15 -2366 ((-639 |#3|) |#1|)) (-15 -1987 ((-112) |#2| |#1|)) (-15 -3336 ((-639 |#2|) |#1|)) (-15 -3729 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3729 (|#1| (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -3729 (|#1| (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) |#1|)) (-15 -1963 ((-3 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) "failed") (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -2078 ((-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) |#1|)) (-15 -1581 (|#1| (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) |#1|)) (-15 -2038 ((-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) |#1|)) (-15 -1723 ((-766) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) |#1|)) (-15 -1720 ((-639 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -1723 ((-766) (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -3008 ((-112) (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -2879 ((-112) (-1 (-112) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -1491 (|#1| (-1 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)) (-15 -4152 (|#1| (-1 (-2 (|:| -2319 |#2|) (|:| -2693 |#3|)) (-2 (|:| -2319 |#2|) (|:| -2693 |#3|))) |#1|)))
+((-4041 (((-112) $ $) 19 (-4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-1443 (($) 72) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 71)) (-3655 (((-1261) $ |#1| |#1|) 99 (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) 8)) (-4200 ((|#2| $ |#1| |#2|) 73)) (-2968 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 45 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 55 (|has| $ (-6 -4403)))) (-1472 (((-3 |#2| "failed") |#1| $) 61)) (-3329 (($) 7 T CONST)) (-1459 (($ $) 58 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403))))) (-3729 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 47 (|has| $ (-6 -4403))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 46 (|has| $ (-6 -4403))) (((-3 |#2| "failed") |#1| $) 62)) (-1475 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 57 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 54 (|has| $ (-6 -4403)))) (-1954 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 56 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 53 (|has| $ (-6 -4403))) (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 52 (|has| $ (-6 -4403)))) (-1507 ((|#2| $ |#1| |#2|) 87 (|has| $ (-6 -4404)))) (-1420 ((|#2| $ |#1|) 88)) (-1720 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 30 (|has| $ (-6 -4403))) (((-639 |#2|) $) 79 (|has| $ (-6 -4403)))) (-4172 (((-112) $ (-766)) 9)) (-1849 ((|#1| $) 96 (|has| |#1| (-845)))) (-2123 (((-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 29 (|has| $ (-6 -4403))) (((-639 |#2|) $) 80 (|has| $ (-6 -4403)))) (-1572 (((-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 27 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (((-112) |#2| $) 82 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4403))))) (-1929 ((|#1| $) 95 (|has| |#1| (-845)))) (-1491 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 34 (|has| $ (-6 -4404))) (($ (-1 |#2| |#2|) $) 75 (|has| $ (-6 -4404)))) (-4152 (($ (-1 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 35) (($ (-1 |#2| |#2|) $) 74) (($ (-1 |#2| |#2| |#2|) $ $) 70)) (-4147 (((-112) $ (-766)) 10)) (-3696 (((-1150) $) 22 (-4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-1521 (((-639 |#1|) $) 63)) (-4278 (((-112) |#1| $) 64)) (-2078 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 39)) (-1581 (($ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 40)) (-3336 (((-639 |#1|) $) 93)) (-1987 (((-112) |#1| $) 92)) (-1709 (((-1112) $) 21 (-4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-1421 ((|#2| $) 97 (|has| |#1| (-845)))) (-1963 (((-3 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) "failed") (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 51)) (-3510 (($ $ |#2|) 98 (|has| $ (-6 -4404)))) (-2038 (((-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 41)) (-3008 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 32 (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))))) 26 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-293 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 25 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) 24 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 23 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)))) (($ $ (-639 |#2|) (-639 |#2|)) 86 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ |#2| |#2|) 85 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-293 |#2|)) 84 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092)))) (($ $ (-639 (-293 |#2|))) 83 (-12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#2| $) 94 (-12 (|has| $ (-6 -4403)) (|has| |#2| (-1092))))) (-2366 (((-639 |#2|) $) 91)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#2| $ |#1|) 90) ((|#2| $ |#1| |#2|) 89)) (-1932 (($) 49) (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 48)) (-1723 (((-766) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 31 (|has| $ (-6 -4403))) (((-766) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| $ (-6 -4403)))) (((-766) |#2| $) 81 (-12 (|has| |#2| (-1092)) (|has| $ (-6 -4403)))) (((-766) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4403)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 59 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))))) (-4064 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 50)) (-4053 (((-857) $) 18 (-4037 (|has| |#2| (-609 (-857))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857)))))) (-4131 (($ (-639 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) 42)) (-2879 (((-112) (-1 (-112) (-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) $) 33 (|has| $ (-6 -4403))) (((-112) (-1 (-112) |#2|) $) 76 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (-4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-1183 |#1| |#2|) (-139) (-1092) (-1092)) (T -1183))
-((-4200 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1183 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))) (-1443 (*1 *1) (-12 (-4 *1 (-1183 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-1443 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -2320 *3) (|:| -2694 *4)))) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *1 (-1183 *3 *4)))) (-4152 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1183 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))))
-(-13 (-606 |t#1| |t#2|) (-600 |t#1| |t#2|) (-10 -8 (-15 -4200 (|t#2| $ |t#1| |t#2|)) (-15 -1443 ($)) (-15 -1443 ($ (-639 (-2 (|:| -2320 |t#1|) (|:| -2694 |t#2|))))) (-15 -4152 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2320 |#1|) (|:| -2694 |#2|))) . T) ((-102) -4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))) ((-609 (-857)) -4037 (|has| |#2| (-1092)) (|has| |#2| (-609 (-857))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-609 (-857)))) ((-150 #0#) . T) ((-610 (-535)) |has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-610 (-535))) ((-228 #0#) . T) ((-234 #0#) . T) ((-285 |#1| |#2|) . T) ((-287 |#1| |#2|) . T) ((-308 #0#) -12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))) ((-308 |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-488 #0#) . T) ((-488 |#2|) . T) ((-600 |#1| |#2|) . T) ((-513 #0# #0#) -12 (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-308 (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)))) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))) ((-513 |#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-606 |#1| |#2|) . T) ((-1092) -4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2320 |#1|) (|:| -2694 |#2|)) (-1092))) ((-1207) . T))
-((-1426 (((-112)) 24)) (-1338 (((-1261) (-1150)) 26)) (-2156 (((-112)) 36)) (-1764 (((-1261)) 34)) (-1451 (((-1261) (-1150) (-1150)) 25)) (-3805 (((-112)) 37)) (-4300 (((-1261) |#1| |#2|) 44)) (-3031 (((-1261)) 20)) (-2523 (((-3 |#2| "failed") |#1|) 42)) (-1687 (((-1261)) 35)))
-(((-1184 |#1| |#2|) (-10 -7 (-15 -3031 ((-1261))) (-15 -1451 ((-1261) (-1150) (-1150))) (-15 -1338 ((-1261) (-1150))) (-15 -1764 ((-1261))) (-15 -1687 ((-1261))) (-15 -1426 ((-112))) (-15 -2156 ((-112))) (-15 -3805 ((-112))) (-15 -2523 ((-3 |#2| "failed") |#1|)) (-15 -4300 ((-1261) |#1| |#2|))) (-1092) (-1092)) (T -1184))
-((-4300 (*1 *2 *3 *4) (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-2523 (*1 *2 *3) (|partial| -12 (-4 *2 (-1092)) (-5 *1 (-1184 *3 *2)) (-4 *3 (-1092)))) (-3805 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-2156 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-1426 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-1687 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-1764 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-1338 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1184 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1092)))) (-1451 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1184 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1092)))) (-3031 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))))
-(-10 -7 (-15 -3031 ((-1261))) (-15 -1451 ((-1261) (-1150) (-1150))) (-15 -1338 ((-1261) (-1150))) (-15 -1764 ((-1261))) (-15 -1687 ((-1261))) (-15 -1426 ((-112))) (-15 -2156 ((-112))) (-15 -3805 ((-112))) (-15 -2523 ((-3 |#2| "failed") |#1|)) (-15 -4300 ((-1261) |#1| |#2|)))
-((-2749 (((-1150) (-1150)) 18)) (-4175 (((-52) (-1150)) 21)))
-(((-1185) (-10 -7 (-15 -4175 ((-52) (-1150))) (-15 -2749 ((-1150) (-1150))))) (T -1185))
-((-2749 (*1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1185)))) (-4175 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-52)) (-5 *1 (-1185)))))
-(-10 -7 (-15 -4175 ((-52) (-1150))) (-15 -2749 ((-1150) (-1150))))
-((-4054 (((-1187) |#1|) 11)))
-(((-1186 |#1|) (-10 -7 (-15 -4054 ((-1187) |#1|))) (-1092)) (T -1186))
-((-4054 (*1 *2 *3) (-12 (-5 *2 (-1187)) (-5 *1 (-1186 *3)) (-4 *3 (-1092)))))
-(-10 -7 (-15 -4054 ((-1187) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1522 (((-639 (-1150)) $) 34)) (-3250 (((-639 (-1150)) $ (-639 (-1150))) 37)) (-3491 (((-639 (-1150)) $ (-639 (-1150))) 36)) (-1916 (((-639 (-1150)) $ (-639 (-1150))) 38)) (-3515 (((-639 (-1150)) $) 33)) (-1458 (($) 22)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3108 (((-639 (-1150)) $) 35)) (-1479 (((-1261) $ (-562)) 29) (((-1261) $) 30)) (-4208 (($ (-857) (-562)) 26) (($ (-857) (-562) (-857)) NIL)) (-4054 (((-857) $) 40) (($ (-857)) 24)) (-1731 (((-112) $ $) NIL)))
-(((-1187) (-13 (-1092) (-612 (-857)) (-10 -8 (-15 -4208 ($ (-857) (-562))) (-15 -4208 ($ (-857) (-562) (-857))) (-15 -1479 ((-1261) $ (-562))) (-15 -1479 ((-1261) $)) (-15 -3108 ((-639 (-1150)) $)) (-15 -1522 ((-639 (-1150)) $)) (-15 -1458 ($)) (-15 -3515 ((-639 (-1150)) $)) (-15 -1916 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -3250 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -3491 ((-639 (-1150)) $ (-639 (-1150))))))) (T -1187))
-((-4208 (*1 *1 *2 *3) (-12 (-5 *2 (-857)) (-5 *3 (-562)) (-5 *1 (-1187)))) (-4208 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-857)) (-5 *3 (-562)) (-5 *1 (-1187)))) (-1479 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1187)))) (-1479 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1187)))) (-3108 (*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))) (-1522 (*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))) (-1458 (*1 *1) (-5 *1 (-1187))) (-3515 (*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))) (-1916 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))) (-3250 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))) (-3491 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
-(-13 (-1092) (-612 (-857)) (-10 -8 (-15 -4208 ($ (-857) (-562))) (-15 -4208 ($ (-857) (-562) (-857))) (-15 -1479 ((-1261) $ (-562))) (-15 -1479 ((-1261) $)) (-15 -3108 ((-639 (-1150)) $)) (-15 -1522 ((-639 (-1150)) $)) (-15 -1458 ($)) (-15 -3515 ((-639 (-1150)) $)) (-15 -1916 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -3250 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -3491 ((-639 (-1150)) $ (-639 (-1150))))))
-((-4041 (((-112) $ $) NIL)) (-2583 (((-1150) $ (-1150)) 17) (((-1150) $) 16)) (-3067 (((-1150) $ (-1150)) 15)) (-2413 (($ $ (-1150)) NIL)) (-1302 (((-3 (-1150) "failed") $) 11)) (-4101 (((-1150) $) 8)) (-1861 (((-3 (-1150) "failed") $) 12)) (-1805 (((-1150) $) 9)) (-3316 (($ (-387)) NIL) (($ (-387) (-1150)) NIL)) (-3254 (((-387) $) NIL)) (-2913 (((-1150) $) NIL)) (-3523 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2778 (((-112) $) 18)) (-4054 (((-857) $) NIL)) (-3948 (($ $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-1188) (-13 (-363 (-387) (-1150)) (-10 -8 (-15 -2583 ((-1150) $ (-1150))) (-15 -2583 ((-1150) $)) (-15 -4101 ((-1150) $)) (-15 -1302 ((-3 (-1150) "failed") $)) (-15 -1861 ((-3 (-1150) "failed") $)) (-15 -2778 ((-112) $))))) (T -1188))
-((-2583 (*1 *2 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1188)))) (-2583 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1188)))) (-4101 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1188)))) (-1302 (*1 *2 *1) (|partial| -12 (-5 *2 (-1150)) (-5 *1 (-1188)))) (-1861 (*1 *2 *1) (|partial| -12 (-5 *2 (-1150)) (-5 *1 (-1188)))) (-2778 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1188)))))
-(-13 (-363 (-387) (-1150)) (-10 -8 (-15 -2583 ((-1150) $ (-1150))) (-15 -2583 ((-1150) $)) (-15 -4101 ((-1150) $)) (-15 -1302 ((-3 (-1150) "failed") $)) (-15 -1861 ((-3 (-1150) "failed") $)) (-15 -2778 ((-112) $))))
-((-2277 (((-3 (-562) "failed") |#1|) 19)) (-1589 (((-3 (-562) "failed") |#1|) 14)) (-4183 (((-562) (-1150)) 28)))
-(((-1189 |#1|) (-10 -7 (-15 -2277 ((-3 (-562) "failed") |#1|)) (-15 -1589 ((-3 (-562) "failed") |#1|)) (-15 -4183 ((-562) (-1150)))) (-1044)) (T -1189))
-((-4183 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-562)) (-5 *1 (-1189 *4)) (-4 *4 (-1044)))) (-1589 (*1 *2 *3) (|partial| -12 (-5 *2 (-562)) (-5 *1 (-1189 *3)) (-4 *3 (-1044)))) (-2277 (*1 *2 *3) (|partial| -12 (-5 *2 (-562)) (-5 *1 (-1189 *3)) (-4 *3 (-1044)))))
-(-10 -7 (-15 -2277 ((-3 (-562) "failed") |#1|)) (-15 -1589 ((-3 (-562) "failed") |#1|)) (-15 -4183 ((-562) (-1150))))
-((-2239 (((-1125 (-224))) 9)))
-(((-1190) (-10 -7 (-15 -2239 ((-1125 (-224)))))) (T -1190))
-((-2239 (*1 *2) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-1190)))))
-(-10 -7 (-15 -2239 ((-1125 (-224)))))
-((-4100 (($) 11)) (-3055 (($ $) 35)) (-3033 (($ $) 33)) (-4138 (($ $) 25)) (-3078 (($ $) 17)) (-1566 (($ $) 15)) (-3066 (($ $) 19)) (-4174 (($ $) 30)) (-3044 (($ $) 34)) (-4151 (($ $) 29)))
-(((-1191 |#1|) (-10 -8 (-15 -4100 (|#1|)) (-15 -3055 (|#1| |#1|)) (-15 -3033 (|#1| |#1|)) (-15 -3078 (|#1| |#1|)) (-15 -1566 (|#1| |#1|)) (-15 -3066 (|#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -4138 (|#1| |#1|)) (-15 -4174 (|#1| |#1|)) (-15 -4151 (|#1| |#1|))) (-1192)) (T -1191))
-NIL
-(-10 -8 (-15 -4100 (|#1|)) (-15 -3055 (|#1| |#1|)) (-15 -3033 (|#1| |#1|)) (-15 -3078 (|#1| |#1|)) (-15 -1566 (|#1| |#1|)) (-15 -3066 (|#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -4138 (|#1| |#1|)) (-15 -4174 (|#1| |#1|)) (-15 -4151 (|#1| |#1|)))
-((-2988 (($ $) 26)) (-4097 (($ $) 11)) (-4207 (($ $) 27)) (-4074 (($ $) 10)) (-3014 (($ $) 28)) (-4119 (($ $) 9)) (-4100 (($) 16)) (-4365 (($ $) 19)) (-3430 (($ $) 18)) (-3023 (($ $) 29)) (-4130 (($ $) 8)) (-3001 (($ $) 30)) (-4108 (($ $) 7)) (-2978 (($ $) 31)) (-4087 (($ $) 6)) (-3055 (($ $) 20)) (-4165 (($ $) 32)) (-3033 (($ $) 21)) (-4138 (($ $) 33)) (-3078 (($ $) 22)) (-4182 (($ $) 34)) (-1566 (($ $) 23)) (-4195 (($ $) 35)) (-3066 (($ $) 24)) (-4174 (($ $) 36)) (-3044 (($ $) 25)) (-4151 (($ $) 37)) (** (($ $ $) 17)))
+((-4200 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1183 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))) (-1443 (*1 *1) (-12 (-4 *1 (-1183 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))) (-1443 (*1 *1 *2) (-12 (-5 *2 (-639 (-2 (|:| -2319 *3) (|:| -2693 *4)))) (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *1 (-1183 *3 *4)))) (-4152 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1183 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))))
+(-13 (-606 |t#1| |t#2|) (-600 |t#1| |t#2|) (-10 -8 (-15 -4200 (|t#2| $ |t#1| |t#2|)) (-15 -1443 ($)) (-15 -1443 ($ (-639 (-2 (|:| -2319 |t#1|) (|:| -2693 |t#2|))))) (-15 -4152 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2319 |#1|) (|:| -2693 |#2|))) . T) ((-102) -4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))) ((-609 (-857)) -4037 (|has| |#2| (-1092)) (|has| |#2| (-609 (-857))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-609 (-857)))) ((-150 #0#) . T) ((-610 (-535)) |has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-610 (-535))) ((-228 #0#) . T) ((-234 #0#) . T) ((-285 |#1| |#2|) . T) ((-287 |#1| |#2|) . T) ((-308 #0#) -12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))) ((-308 |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-488 #0#) . T) ((-488 |#2|) . T) ((-600 |#1| |#2|) . T) ((-513 #0# #0#) -12 (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-308 (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)))) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))) ((-513 |#2| |#2|) -12 (|has| |#2| (-308 |#2|)) (|has| |#2| (-1092))) ((-606 |#1| |#2|) . T) ((-1092) -4037 (|has| |#2| (-1092)) (|has| (-2 (|:| -2319 |#1|) (|:| -2693 |#2|)) (-1092))) ((-1207) . T))
+((-1960 (((-112)) 24)) (-2031 (((-1261) (-1150)) 26)) (-2828 (((-112)) 36)) (-3019 (((-1261)) 34)) (-2290 (((-1261) (-1150) (-1150)) 25)) (-2460 (((-112)) 37)) (-1581 (((-1261) |#1| |#2|) 44)) (-3472 (((-1261)) 20)) (-2249 (((-3 |#2| "failed") |#1|) 42)) (-3565 (((-1261)) 35)))
+(((-1184 |#1| |#2|) (-10 -7 (-15 -3472 ((-1261))) (-15 -2290 ((-1261) (-1150) (-1150))) (-15 -2031 ((-1261) (-1150))) (-15 -3019 ((-1261))) (-15 -3565 ((-1261))) (-15 -1960 ((-112))) (-15 -2828 ((-112))) (-15 -2460 ((-112))) (-15 -2249 ((-3 |#2| "failed") |#1|)) (-15 -1581 ((-1261) |#1| |#2|))) (-1092) (-1092)) (T -1184))
+((-1581 (*1 *2 *3 *4) (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-2249 (*1 *2 *3) (|partial| -12 (-4 *2 (-1092)) (-5 *1 (-1184 *3 *2)) (-4 *3 (-1092)))) (-2460 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-2828 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-1960 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-3565 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-3019 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))) (-2031 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1184 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1092)))) (-2290 (*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1184 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1092)))) (-3472 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092)))))
+(-10 -7 (-15 -3472 ((-1261))) (-15 -2290 ((-1261) (-1150) (-1150))) (-15 -2031 ((-1261) (-1150))) (-15 -3019 ((-1261))) (-15 -3565 ((-1261))) (-15 -1960 ((-112))) (-15 -2828 ((-112))) (-15 -2460 ((-112))) (-15 -2249 ((-3 |#2| "failed") |#1|)) (-15 -1581 ((-1261) |#1| |#2|)))
+((-2670 (((-1150) (-1150)) 18)) (-2834 (((-52) (-1150)) 21)))
+(((-1185) (-10 -7 (-15 -2834 ((-52) (-1150))) (-15 -2670 ((-1150) (-1150))))) (T -1185))
+((-2670 (*1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1185)))) (-2834 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-52)) (-5 *1 (-1185)))))
+(-10 -7 (-15 -2834 ((-52) (-1150))) (-15 -2670 ((-1150) (-1150))))
+((-4053 (((-1187) |#1|) 11)))
+(((-1186 |#1|) (-10 -7 (-15 -4053 ((-1187) |#1|))) (-1092)) (T -1186))
+((-4053 (*1 *2 *3) (-12 (-5 *2 (-1187)) (-5 *1 (-1186 *3)) (-4 *3 (-1092)))))
+(-10 -7 (-15 -4053 ((-1187) |#1|)))
+((-4041 (((-112) $ $) NIL)) (-1522 (((-639 (-1150)) $) 34)) (-1951 (((-639 (-1150)) $ (-639 (-1150))) 37)) (-2442 (((-639 (-1150)) $ (-639 (-1150))) 36)) (-2153 (((-639 (-1150)) $ (-639 (-1150))) 38)) (-2653 (((-639 (-1150)) $) 33)) (-1458 (($) 22)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2945 (((-639 (-1150)) $) 35)) (-1479 (((-1261) $ (-562)) 29) (((-1261) $) 30)) (-4208 (($ (-857) (-562)) 26) (($ (-857) (-562) (-857)) NIL)) (-4053 (((-857) $) 40) (($ (-857)) 24)) (-1733 (((-112) $ $) NIL)))
+(((-1187) (-13 (-1092) (-612 (-857)) (-10 -8 (-15 -4208 ($ (-857) (-562))) (-15 -4208 ($ (-857) (-562) (-857))) (-15 -1479 ((-1261) $ (-562))) (-15 -1479 ((-1261) $)) (-15 -2945 ((-639 (-1150)) $)) (-15 -1522 ((-639 (-1150)) $)) (-15 -1458 ($)) (-15 -2653 ((-639 (-1150)) $)) (-15 -2153 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -1951 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -2442 ((-639 (-1150)) $ (-639 (-1150))))))) (T -1187))
+((-4208 (*1 *1 *2 *3) (-12 (-5 *2 (-857)) (-5 *3 (-562)) (-5 *1 (-1187)))) (-4208 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-857)) (-5 *3 (-562)) (-5 *1 (-1187)))) (-1479 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1187)))) (-1479 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1187)))) (-2945 (*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))) (-1522 (*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))) (-1458 (*1 *1) (-5 *1 (-1187))) (-2653 (*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))) (-2153 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))) (-1951 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))) (-2442 (*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
+(-13 (-1092) (-612 (-857)) (-10 -8 (-15 -4208 ($ (-857) (-562))) (-15 -4208 ($ (-857) (-562) (-857))) (-15 -1479 ((-1261) $ (-562))) (-15 -1479 ((-1261) $)) (-15 -2945 ((-639 (-1150)) $)) (-15 -1522 ((-639 (-1150)) $)) (-15 -1458 ($)) (-15 -2653 ((-639 (-1150)) $)) (-15 -2153 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -1951 ((-639 (-1150)) $ (-639 (-1150)))) (-15 -2442 ((-639 (-1150)) $ (-639 (-1150))))))
+((-4041 (((-112) $ $) NIL)) (-1618 (((-1150) $ (-1150)) 17) (((-1150) $) 16)) (-3791 (((-1150) $ (-1150)) 15)) (-2385 (($ $ (-1150)) NIL)) (-2235 (((-3 (-1150) "failed") $) 11)) (-3389 (((-1150) $) 8)) (-2765 (((-3 (-1150) "failed") $) 12)) (-3385 (((-1150) $) 9)) (-3315 (($ (-387)) NIL) (($ (-387) (-1150)) NIL)) (-3253 (((-387) $) NIL)) (-3696 (((-1150) $) NIL)) (-2735 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2912 (((-112) $) 18)) (-4053 (((-857) $) NIL)) (-1380 (($ $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-1188) (-13 (-363 (-387) (-1150)) (-10 -8 (-15 -1618 ((-1150) $ (-1150))) (-15 -1618 ((-1150) $)) (-15 -3389 ((-1150) $)) (-15 -2235 ((-3 (-1150) "failed") $)) (-15 -2765 ((-3 (-1150) "failed") $)) (-15 -2912 ((-112) $))))) (T -1188))
+((-1618 (*1 *2 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1188)))) (-1618 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1188)))) (-3389 (*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1188)))) (-2235 (*1 *2 *1) (|partial| -12 (-5 *2 (-1150)) (-5 *1 (-1188)))) (-2765 (*1 *2 *1) (|partial| -12 (-5 *2 (-1150)) (-5 *1 (-1188)))) (-2912 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1188)))))
+(-13 (-363 (-387) (-1150)) (-10 -8 (-15 -1618 ((-1150) $ (-1150))) (-15 -1618 ((-1150) $)) (-15 -3389 ((-1150) $)) (-15 -2235 ((-3 (-1150) "failed") $)) (-15 -2765 ((-3 (-1150) "failed") $)) (-15 -2912 ((-112) $))))
+((-1587 (((-3 (-562) "failed") |#1|) 19)) (-2138 (((-3 (-562) "failed") |#1|) 14)) (-2892 (((-562) (-1150)) 28)))
+(((-1189 |#1|) (-10 -7 (-15 -1587 ((-3 (-562) "failed") |#1|)) (-15 -2138 ((-3 (-562) "failed") |#1|)) (-15 -2892 ((-562) (-1150)))) (-1044)) (T -1189))
+((-2892 (*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-562)) (-5 *1 (-1189 *4)) (-4 *4 (-1044)))) (-2138 (*1 *2 *3) (|partial| -12 (-5 *2 (-562)) (-5 *1 (-1189 *3)) (-4 *3 (-1044)))) (-1587 (*1 *2 *3) (|partial| -12 (-5 *2 (-562)) (-5 *1 (-1189 *3)) (-4 *3 (-1044)))))
+(-10 -7 (-15 -1587 ((-3 (-562) "failed") |#1|)) (-15 -2138 ((-3 (-562) "failed") |#1|)) (-15 -2892 ((-562) (-1150))))
+((-4299 (((-1125 (-224))) 9)))
+(((-1190) (-10 -7 (-15 -4299 ((-1125 (-224)))))) (T -1190))
+((-4299 (*1 *2) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-1190)))))
+(-10 -7 (-15 -4299 ((-1125 (-224)))))
+((-4100 (($) 11)) (-3054 (($ $) 35)) (-3033 (($ $) 33)) (-4139 (($ $) 25)) (-3077 (($ $) 17)) (-1567 (($ $) 15)) (-3065 (($ $) 19)) (-4175 (($ $) 30)) (-3040 (($ $) 34)) (-4151 (($ $) 29)))
+(((-1191 |#1|) (-10 -8 (-15 -4100 (|#1|)) (-15 -3054 (|#1| |#1|)) (-15 -3033 (|#1| |#1|)) (-15 -3077 (|#1| |#1|)) (-15 -1567 (|#1| |#1|)) (-15 -3065 (|#1| |#1|)) (-15 -3040 (|#1| |#1|)) (-15 -4139 (|#1| |#1|)) (-15 -4175 (|#1| |#1|)) (-15 -4151 (|#1| |#1|))) (-1192)) (T -1191))
+NIL
+(-10 -8 (-15 -4100 (|#1|)) (-15 -3054 (|#1| |#1|)) (-15 -3033 (|#1| |#1|)) (-15 -3077 (|#1| |#1|)) (-15 -1567 (|#1| |#1|)) (-15 -3065 (|#1| |#1|)) (-15 -3040 (|#1| |#1|)) (-15 -4139 (|#1| |#1|)) (-15 -4175 (|#1| |#1|)) (-15 -4151 (|#1| |#1|)))
+((-2987 (($ $) 26)) (-4098 (($ $) 11)) (-4206 (($ $) 27)) (-4074 (($ $) 10)) (-3013 (($ $) 28)) (-4120 (($ $) 9)) (-4100 (($) 16)) (-4366 (($ $) 19)) (-3430 (($ $) 18)) (-3022 (($ $) 29)) (-4130 (($ $) 8)) (-3000 (($ $) 30)) (-4108 (($ $) 7)) (-2977 (($ $) 31)) (-4087 (($ $) 6)) (-3054 (($ $) 20)) (-4165 (($ $) 32)) (-3033 (($ $) 21)) (-4139 (($ $) 33)) (-3077 (($ $) 22)) (-4183 (($ $) 34)) (-1567 (($ $) 23)) (-4195 (($ $) 35)) (-3065 (($ $) 24)) (-4175 (($ $) 36)) (-3040 (($ $) 25)) (-4151 (($ $) 37)) (** (($ $ $) 17)))
(((-1192) (-139)) (T -1192))
((-4100 (*1 *1) (-4 *1 (-1192))))
(-13 (-1195) (-95) (-492) (-35) (-283) (-10 -8 (-15 -4100 ($))))
(((-35) . T) ((-95) . T) ((-283) . T) ((-492) . T) ((-1195) . T))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2534 ((|#1| $) 17)) (-3086 (($ |#1| (-639 $)) 23) (($ (-639 |#1|)) 27) (($ |#1|) 25)) (-4336 (((-112) $ (-766)) 47)) (-1512 ((|#1| $ |#1|) 14 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) 13 (|has| $ (-6 -4403)))) (-1800 (($) NIL T CONST)) (-1720 (((-639 |#1|) $) 51 (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) 42)) (-4379 (((-112) $ $) 32 (|has| |#1| (-1092)))) (-3292 (((-112) $ (-766)) 40)) (-1912 (((-639 |#1|) $) 52 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 50 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1490 (($ (-1 |#1| |#1|) $) 24 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 22)) (-3289 (((-112) $ (-766)) 39)) (-4007 (((-639 |#1|) $) 36)) (-3449 (((-112) $) 35)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1763 (((-112) (-1 (-112) |#1|) $) 49 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 73)) (-2974 (((-112) $) 9)) (-4307 (($) 10)) (-2343 ((|#1| $ "value") NIL)) (-2568 (((-562) $ $) 31)) (-2963 (((-639 $) $) 58)) (-2668 (((-112) $ $) 76)) (-4232 (((-639 $) $) 71)) (-3927 (($ $) 72)) (-2424 (((-112) $) 55)) (-1723 (((-766) (-1 (-112) |#1|) $) 20 (|has| $ (-6 -4402))) (((-766) |#1| $) 16 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-4220 (($ $) 57)) (-4054 (((-857) $) 60 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) 12)) (-4055 (((-112) $ $) 29 (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) 48 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 28 (|has| |#1| (-1092)))) (-3492 (((-766) $) 38 (|has| $ (-6 -4402)))))
-(((-1193 |#1|) (-13 (-1005 |#1|) (-10 -8 (-6 -4402) (-6 -4403) (-15 -3086 ($ |#1| (-639 $))) (-15 -3086 ($ (-639 |#1|))) (-15 -3086 ($ |#1|)) (-15 -2424 ((-112) $)) (-15 -3927 ($ $)) (-15 -4232 ((-639 $) $)) (-15 -2668 ((-112) $ $)) (-15 -2963 ((-639 $) $)))) (-1092)) (T -1193))
-((-2424 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))) (-3086 (*1 *1 *2 *3) (-12 (-5 *3 (-639 (-1193 *2))) (-5 *1 (-1193 *2)) (-4 *2 (-1092)))) (-3086 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-1193 *3)))) (-3086 (*1 *1 *2) (-12 (-5 *1 (-1193 *2)) (-4 *2 (-1092)))) (-3927 (*1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-4 *2 (-1092)))) (-4232 (*1 *2 *1) (-12 (-5 *2 (-639 (-1193 *3))) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))) (-2668 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))) (-2963 (*1 *2 *1) (-12 (-5 *2 (-639 (-1193 *3))) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))))
-(-13 (-1005 |#1|) (-10 -8 (-6 -4402) (-6 -4403) (-15 -3086 ($ |#1| (-639 $))) (-15 -3086 ($ (-639 |#1|))) (-15 -3086 ($ |#1|)) (-15 -2424 ((-112) $)) (-15 -3927 ($ $)) (-15 -4232 ((-639 $) $)) (-15 -2668 ((-112) $ $)) (-15 -2963 ((-639 $) $))))
-((-4097 (($ $) 15)) (-4119 (($ $) 12)) (-4130 (($ $) 10)) (-4108 (($ $) 17)))
-(((-1194 |#1|) (-10 -8 (-15 -4108 (|#1| |#1|)) (-15 -4130 (|#1| |#1|)) (-15 -4119 (|#1| |#1|)) (-15 -4097 (|#1| |#1|))) (-1195)) (T -1194))
-NIL
-(-10 -8 (-15 -4108 (|#1| |#1|)) (-15 -4130 (|#1| |#1|)) (-15 -4119 (|#1| |#1|)) (-15 -4097 (|#1| |#1|)))
-((-4097 (($ $) 11)) (-4074 (($ $) 10)) (-4119 (($ $) 9)) (-4130 (($ $) 8)) (-4108 (($ $) 7)) (-4087 (($ $) 6)))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2533 ((|#1| $) 17)) (-3085 (($ |#1| (-639 $)) 23) (($ (-639 |#1|)) 27) (($ |#1|) 25)) (-3735 (((-112) $ (-766)) 47)) (-2677 ((|#1| $ |#1|) 14 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) 13 (|has| $ (-6 -4404)))) (-3329 (($) NIL T CONST)) (-1720 (((-639 |#1|) $) 51 (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) 42)) (-4188 (((-112) $ $) 32 (|has| |#1| (-1092)))) (-4172 (((-112) $ (-766)) 40)) (-2123 (((-639 |#1|) $) 52 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 50 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1491 (($ (-1 |#1| |#1|) $) 24 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 22)) (-4147 (((-112) $ (-766)) 39)) (-4008 (((-639 |#1|) $) 36)) (-3179 (((-112) $) 35)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3008 (((-112) (-1 (-112) |#1|) $) 49 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 73)) (-3087 (((-112) $) 9)) (-1663 (($) 10)) (-2343 ((|#1| $ "value") NIL)) (-1423 (((-562) $ $) 31)) (-4207 (((-639 $) $) 58)) (-3091 (((-112) $ $) 76)) (-2165 (((-639 $) $) 71)) (-4283 (($ $) 72)) (-2473 (((-112) $) 55)) (-1723 (((-766) (-1 (-112) |#1|) $) 20 (|has| $ (-6 -4403))) (((-766) |#1| $) 16 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-4220 (($ $) 57)) (-4053 (((-857) $) 60 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) 12)) (-2985 (((-112) $ $) 29 (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) 48 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 28 (|has| |#1| (-1092)))) (-3492 (((-766) $) 38 (|has| $ (-6 -4403)))))
+(((-1193 |#1|) (-13 (-1005 |#1|) (-10 -8 (-6 -4403) (-6 -4404) (-15 -3085 ($ |#1| (-639 $))) (-15 -3085 ($ (-639 |#1|))) (-15 -3085 ($ |#1|)) (-15 -2473 ((-112) $)) (-15 -4283 ($ $)) (-15 -2165 ((-639 $) $)) (-15 -3091 ((-112) $ $)) (-15 -4207 ((-639 $) $)))) (-1092)) (T -1193))
+((-2473 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))) (-3085 (*1 *1 *2 *3) (-12 (-5 *3 (-639 (-1193 *2))) (-5 *1 (-1193 *2)) (-4 *2 (-1092)))) (-3085 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-1193 *3)))) (-3085 (*1 *1 *2) (-12 (-5 *1 (-1193 *2)) (-4 *2 (-1092)))) (-4283 (*1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-4 *2 (-1092)))) (-2165 (*1 *2 *1) (-12 (-5 *2 (-639 (-1193 *3))) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))) (-3091 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))) (-4207 (*1 *2 *1) (-12 (-5 *2 (-639 (-1193 *3))) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))))
+(-13 (-1005 |#1|) (-10 -8 (-6 -4403) (-6 -4404) (-15 -3085 ($ |#1| (-639 $))) (-15 -3085 ($ (-639 |#1|))) (-15 -3085 ($ |#1|)) (-15 -2473 ((-112) $)) (-15 -4283 ($ $)) (-15 -2165 ((-639 $) $)) (-15 -3091 ((-112) $ $)) (-15 -4207 ((-639 $) $))))
+((-4098 (($ $) 15)) (-4120 (($ $) 12)) (-4130 (($ $) 10)) (-4108 (($ $) 17)))
+(((-1194 |#1|) (-10 -8 (-15 -4108 (|#1| |#1|)) (-15 -4130 (|#1| |#1|)) (-15 -4120 (|#1| |#1|)) (-15 -4098 (|#1| |#1|))) (-1195)) (T -1194))
+NIL
+(-10 -8 (-15 -4108 (|#1| |#1|)) (-15 -4130 (|#1| |#1|)) (-15 -4120 (|#1| |#1|)) (-15 -4098 (|#1| |#1|)))
+((-4098 (($ $) 11)) (-4074 (($ $) 10)) (-4120 (($ $) 9)) (-4130 (($ $) 8)) (-4108 (($ $) 7)) (-4087 (($ $) 6)))
(((-1195) (-139)) (T -1195))
-((-4097 (*1 *1 *1) (-4 *1 (-1195))) (-4074 (*1 *1 *1) (-4 *1 (-1195))) (-4119 (*1 *1 *1) (-4 *1 (-1195))) (-4130 (*1 *1 *1) (-4 *1 (-1195))) (-4108 (*1 *1 *1) (-4 *1 (-1195))) (-4087 (*1 *1 *1) (-4 *1 (-1195))))
-(-13 (-10 -8 (-15 -4087 ($ $)) (-15 -4108 ($ $)) (-15 -4130 ($ $)) (-15 -4119 ($ $)) (-15 -4074 ($ $)) (-15 -4097 ($ $))))
-((-1675 ((|#2| |#2|) 88)) (-3263 (((-112) |#2|) 26)) (-1657 ((|#2| |#2|) 30)) (-1670 ((|#2| |#2|) 32)) (-3487 ((|#2| |#2| (-1168)) 83) ((|#2| |#2|) 84)) (-1905 (((-168 |#2|) |#2|) 28)) (-1984 ((|#2| |#2| (-1168)) 85) ((|#2| |#2|) 86)))
-(((-1196 |#1| |#2|) (-10 -7 (-15 -3487 (|#2| |#2|)) (-15 -3487 (|#2| |#2| (-1168))) (-15 -1984 (|#2| |#2|)) (-15 -1984 (|#2| |#2| (-1168))) (-15 -1675 (|#2| |#2|)) (-15 -1657 (|#2| |#2|)) (-15 -1670 (|#2| |#2|)) (-15 -3263 ((-112) |#2|)) (-15 -1905 ((-168 |#2|) |#2|))) (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -1196))
-((-1905 (*1 *2 *3) (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-168 *3)) (-5 *1 (-1196 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))) (-3263 (*1 *2 *3) (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-112)) (-5 *1 (-1196 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))) (-1670 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))) (-1657 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))) (-1675 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))) (-1984 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))) (-1984 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))) (-3487 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))) (-3487 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))))
-(-10 -7 (-15 -3487 (|#2| |#2|)) (-15 -3487 (|#2| |#2| (-1168))) (-15 -1984 (|#2| |#2|)) (-15 -1984 (|#2| |#2| (-1168))) (-15 -1675 (|#2| |#2|)) (-15 -1657 (|#2| |#2|)) (-15 -1670 (|#2| |#2|)) (-15 -3263 ((-112) |#2|)) (-15 -1905 ((-168 |#2|) |#2|)))
-((-1691 ((|#4| |#4| |#1|) 27)) (-3279 ((|#4| |#4| |#1|) 28)))
-(((-1197 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1691 (|#4| |#4| |#1|)) (-15 -3279 (|#4| |#4| |#1|))) (-554) (-372 |#1|) (-372 |#1|) (-681 |#1| |#2| |#3|)) (T -1197))
-((-3279 (*1 *2 *2 *3) (-12 (-4 *3 (-554)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-1197 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-1691 (*1 *2 *2 *3) (-12 (-4 *3 (-554)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-1197 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
-(-10 -7 (-15 -1691 (|#4| |#4| |#1|)) (-15 -3279 (|#4| |#4| |#1|)))
-((-3774 ((|#2| |#2|) 133)) (-1777 ((|#2| |#2|) 130)) (-4147 ((|#2| |#2|) 121)) (-2157 ((|#2| |#2|) 118)) (-2591 ((|#2| |#2|) 126)) (-3825 ((|#2| |#2|) 114)) (-1818 ((|#2| |#2|) 43)) (-3272 ((|#2| |#2|) 94)) (-4120 ((|#2| |#2|) 74)) (-2028 ((|#2| |#2|) 128)) (-3147 ((|#2| |#2|) 116)) (-3898 ((|#2| |#2|) 138)) (-2564 ((|#2| |#2|) 136)) (-2319 ((|#2| |#2|) 137)) (-1778 ((|#2| |#2|) 135)) (-3588 ((|#2| |#2|) 148)) (-2502 ((|#2| |#2|) 30 (-12 (|has| |#2| (-610 (-887 |#1|))) (|has| |#2| (-881 |#1|)) (|has| |#1| (-610 (-887 |#1|))) (|has| |#1| (-881 |#1|))))) (-1470 ((|#2| |#2|) 75)) (-3032 ((|#2| |#2|) 139)) (-3525 ((|#2| |#2|) 140)) (-4355 ((|#2| |#2|) 127)) (-2795 ((|#2| |#2|) 115)) (-2994 ((|#2| |#2|) 134)) (-1863 ((|#2| |#2|) 132)) (-1463 ((|#2| |#2|) 122)) (-1749 ((|#2| |#2|) 120)) (-1774 ((|#2| |#2|) 124)) (-3299 ((|#2| |#2|) 112)))
-(((-1198 |#1| |#2|) (-10 -7 (-15 -3525 (|#2| |#2|)) (-15 -4120 (|#2| |#2|)) (-15 -3588 (|#2| |#2|)) (-15 -3272 (|#2| |#2|)) (-15 -1818 (|#2| |#2|)) (-15 -1470 (|#2| |#2|)) (-15 -3032 (|#2| |#2|)) (-15 -3299 (|#2| |#2|)) (-15 -1774 (|#2| |#2|)) (-15 -1463 (|#2| |#2|)) (-15 -2994 (|#2| |#2|)) (-15 -2795 (|#2| |#2|)) (-15 -4355 (|#2| |#2|)) (-15 -3147 (|#2| |#2|)) (-15 -2028 (|#2| |#2|)) (-15 -3825 (|#2| |#2|)) (-15 -2591 (|#2| |#2|)) (-15 -4147 (|#2| |#2|)) (-15 -3774 (|#2| |#2|)) (-15 -2157 (|#2| |#2|)) (-15 -1777 (|#2| |#2|)) (-15 -1749 (|#2| |#2|)) (-15 -1863 (|#2| |#2|)) (-15 -1778 (|#2| |#2|)) (-15 -2564 (|#2| |#2|)) (-15 -2319 (|#2| |#2|)) (-15 -3898 (|#2| |#2|)) (IF (|has| |#1| (-881 |#1|)) (IF (|has| |#1| (-610 (-887 |#1|))) (IF (|has| |#2| (-610 (-887 |#1|))) (IF (|has| |#2| (-881 |#1|)) (-15 -2502 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-13 (-845) (-451)) (-13 (-429 |#1|) (-1192))) (T -1198))
-((-2502 (*1 *2 *2) (-12 (-4 *3 (-610 (-887 *3))) (-4 *3 (-881 *3)) (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-610 (-887 *3))) (-4 *2 (-881 *3)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3898 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2319 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2564 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-1778 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-1863 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-1749 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-1777 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2157 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3774 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-4147 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2591 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3825 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2028 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3147 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-4355 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2795 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2994 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-1463 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-1774 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3299 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3032 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-1470 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-1818 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3272 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3588 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-4120 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3525 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))))
-(-10 -7 (-15 -3525 (|#2| |#2|)) (-15 -4120 (|#2| |#2|)) (-15 -3588 (|#2| |#2|)) (-15 -3272 (|#2| |#2|)) (-15 -1818 (|#2| |#2|)) (-15 -1470 (|#2| |#2|)) (-15 -3032 (|#2| |#2|)) (-15 -3299 (|#2| |#2|)) (-15 -1774 (|#2| |#2|)) (-15 -1463 (|#2| |#2|)) (-15 -2994 (|#2| |#2|)) (-15 -2795 (|#2| |#2|)) (-15 -4355 (|#2| |#2|)) (-15 -3147 (|#2| |#2|)) (-15 -2028 (|#2| |#2|)) (-15 -3825 (|#2| |#2|)) (-15 -2591 (|#2| |#2|)) (-15 -4147 (|#2| |#2|)) (-15 -3774 (|#2| |#2|)) (-15 -2157 (|#2| |#2|)) (-15 -1777 (|#2| |#2|)) (-15 -1749 (|#2| |#2|)) (-15 -1863 (|#2| |#2|)) (-15 -1778 (|#2| |#2|)) (-15 -2564 (|#2| |#2|)) (-15 -2319 (|#2| |#2|)) (-15 -3898 (|#2| |#2|)) (IF (|has| |#1| (-881 |#1|)) (IF (|has| |#1| (-610 (-887 |#1|))) (IF (|has| |#2| (-610 (-887 |#1|))) (IF (|has| |#2| (-881 |#1|)) (-15 -2502 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
-((-4377 (((-112) |#5| $) 59) (((-112) $) 101)) (-3049 ((|#5| |#5| $) 74)) (-3556 (($ (-1 (-112) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 118)) (-2839 (((-639 |#5|) (-639 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 72)) (-4048 (((-3 $ "failed") (-639 |#5|)) 125)) (-1434 (((-3 $ "failed") $) 111)) (-2387 ((|#5| |#5| $) 93)) (-4091 (((-112) |#5| $ (-1 (-112) |#5| |#5|)) 30)) (-3595 ((|#5| |#5| $) 97)) (-1955 ((|#5| (-1 |#5| |#5| |#5|) $ |#5| |#5|) NIL) ((|#5| (-1 |#5| |#5| |#5|) $ |#5|) NIL) ((|#5| (-1 |#5| |#5| |#5|) $) NIL) ((|#5| |#5| $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 68)) (-2267 (((-2 (|:| -1450 (-639 |#5|)) (|:| -3316 (-639 |#5|))) $) 54)) (-2573 (((-112) |#5| $) 57) (((-112) $) 102)) (-4339 ((|#4| $) 107)) (-1504 (((-3 |#5| "failed") $) 109)) (-3576 (((-639 |#5|) $) 48)) (-2890 (((-112) |#5| $) 66) (((-112) $) 106)) (-1849 ((|#5| |#5| $) 80)) (-1408 (((-112) $ $) 26)) (-2766 (((-112) |#5| $) 62) (((-112) $) 104)) (-1532 ((|#5| |#5| $) 77)) (-1421 (((-3 |#5| "failed") $) 108)) (-1353 (($ $ |#5|) 126)) (-3598 (((-766) $) 51)) (-4066 (($ (-639 |#5|)) 123)) (-1812 (($ $ |#4|) 121)) (-3274 (($ $ |#4|) 120)) (-3277 (($ $) 119)) (-4054 (((-857) $) NIL) (((-639 |#5|) $) 112)) (-3730 (((-766) $) 129)) (-2652 (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#5|))) "failed") (-639 |#5|) (-1 (-112) |#5| |#5|)) 42) (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#5|))) "failed") (-639 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|)) 44)) (-4252 (((-112) $ (-1 (-112) |#5| (-639 |#5|))) 99)) (-4089 (((-639 |#4|) $) 114)) (-3694 (((-112) |#4| $) 117)) (-1731 (((-112) $ $) 19)))
-(((-1199 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3730 ((-766) |#1|)) (-15 -1353 (|#1| |#1| |#5|)) (-15 -3556 ((-3 |#5| "failed") |#1| |#4|)) (-15 -3694 ((-112) |#4| |#1|)) (-15 -4089 ((-639 |#4|) |#1|)) (-15 -1434 ((-3 |#1| "failed") |#1|)) (-15 -1504 ((-3 |#5| "failed") |#1|)) (-15 -1421 ((-3 |#5| "failed") |#1|)) (-15 -3595 (|#5| |#5| |#1|)) (-15 -3277 (|#1| |#1|)) (-15 -2387 (|#5| |#5| |#1|)) (-15 -1849 (|#5| |#5| |#1|)) (-15 -1532 (|#5| |#5| |#1|)) (-15 -3049 (|#5| |#5| |#1|)) (-15 -2839 ((-639 |#5|) (-639 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1955 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2890 ((-112) |#1|)) (-15 -2766 ((-112) |#1|)) (-15 -4377 ((-112) |#1|)) (-15 -4252 ((-112) |#1| (-1 (-112) |#5| (-639 |#5|)))) (-15 -2890 ((-112) |#5| |#1|)) (-15 -2766 ((-112) |#5| |#1|)) (-15 -4377 ((-112) |#5| |#1|)) (-15 -4091 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2573 ((-112) |#1|)) (-15 -2573 ((-112) |#5| |#1|)) (-15 -2267 ((-2 (|:| -1450 (-639 |#5|)) (|:| -3316 (-639 |#5|))) |#1|)) (-15 -3598 ((-766) |#1|)) (-15 -3576 ((-639 |#5|) |#1|)) (-15 -2652 ((-3 (-2 (|:| |bas| |#1|) (|:| -2775 (-639 |#5|))) "failed") (-639 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2652 ((-3 (-2 (|:| |bas| |#1|) (|:| -2775 (-639 |#5|))) "failed") (-639 |#5|) (-1 (-112) |#5| |#5|))) (-15 -1408 ((-112) |#1| |#1|)) (-15 -1812 (|#1| |#1| |#4|)) (-15 -3274 (|#1| |#1| |#4|)) (-15 -4339 (|#4| |#1|)) (-15 -4048 ((-3 |#1| "failed") (-639 |#5|))) (-15 -4054 ((-639 |#5|) |#1|)) (-15 -4066 (|#1| (-639 |#5|))) (-15 -1955 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -1955 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -3556 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -1955 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -4054 ((-857) |#1|)) (-15 -1731 ((-112) |#1| |#1|))) (-1200 |#2| |#3| |#4| |#5|) (-554) (-788) (-845) (-1058 |#2| |#3| |#4|)) (T -1199))
-NIL
-(-10 -8 (-15 -3730 ((-766) |#1|)) (-15 -1353 (|#1| |#1| |#5|)) (-15 -3556 ((-3 |#5| "failed") |#1| |#4|)) (-15 -3694 ((-112) |#4| |#1|)) (-15 -4089 ((-639 |#4|) |#1|)) (-15 -1434 ((-3 |#1| "failed") |#1|)) (-15 -1504 ((-3 |#5| "failed") |#1|)) (-15 -1421 ((-3 |#5| "failed") |#1|)) (-15 -3595 (|#5| |#5| |#1|)) (-15 -3277 (|#1| |#1|)) (-15 -2387 (|#5| |#5| |#1|)) (-15 -1849 (|#5| |#5| |#1|)) (-15 -1532 (|#5| |#5| |#1|)) (-15 -3049 (|#5| |#5| |#1|)) (-15 -2839 ((-639 |#5|) (-639 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1955 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2890 ((-112) |#1|)) (-15 -2766 ((-112) |#1|)) (-15 -4377 ((-112) |#1|)) (-15 -4252 ((-112) |#1| (-1 (-112) |#5| (-639 |#5|)))) (-15 -2890 ((-112) |#5| |#1|)) (-15 -2766 ((-112) |#5| |#1|)) (-15 -4377 ((-112) |#5| |#1|)) (-15 -4091 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2573 ((-112) |#1|)) (-15 -2573 ((-112) |#5| |#1|)) (-15 -2267 ((-2 (|:| -1450 (-639 |#5|)) (|:| -3316 (-639 |#5|))) |#1|)) (-15 -3598 ((-766) |#1|)) (-15 -3576 ((-639 |#5|) |#1|)) (-15 -2652 ((-3 (-2 (|:| |bas| |#1|) (|:| -2775 (-639 |#5|))) "failed") (-639 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -2652 ((-3 (-2 (|:| |bas| |#1|) (|:| -2775 (-639 |#5|))) "failed") (-639 |#5|) (-1 (-112) |#5| |#5|))) (-15 -1408 ((-112) |#1| |#1|)) (-15 -1812 (|#1| |#1| |#4|)) (-15 -3274 (|#1| |#1| |#4|)) (-15 -4339 (|#4| |#1|)) (-15 -4048 ((-3 |#1| "failed") (-639 |#5|))) (-15 -4054 ((-639 |#5|) |#1|)) (-15 -4066 (|#1| (-639 |#5|))) (-15 -1955 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -1955 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -3556 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -1955 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -4054 ((-857) |#1|)) (-15 -1731 ((-112) |#1| |#1|)))
-((-4041 (((-112) $ $) 7)) (-2560 (((-639 (-2 (|:| -1450 $) (|:| -3316 (-639 |#4|)))) (-639 |#4|)) 85)) (-2304 (((-639 $) (-639 |#4|)) 86)) (-1402 (((-639 |#3|) $) 33)) (-4170 (((-112) $) 26)) (-4274 (((-112) $) 17 (|has| |#1| (-554)))) (-4377 (((-112) |#4| $) 101) (((-112) $) 97)) (-3049 ((|#4| |#4| $) 92)) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |#3|) 27)) (-4336 (((-112) $ (-766)) 44)) (-3556 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4402))) (((-3 |#4| "failed") $ |#3|) 79)) (-1800 (($) 45 T CONST)) (-2207 (((-112) $) 22 (|has| |#1| (-554)))) (-1920 (((-112) $ $) 24 (|has| |#1| (-554)))) (-3852 (((-112) $ $) 23 (|has| |#1| (-554)))) (-2539 (((-112) $) 25 (|has| |#1| (-554)))) (-2839 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-3884 (((-639 |#4|) (-639 |#4|) $) 18 (|has| |#1| (-554)))) (-2540 (((-639 |#4|) (-639 |#4|) $) 19 (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 36)) (-3961 (($ (-639 |#4|)) 35)) (-1434 (((-3 $ "failed") $) 82)) (-2387 ((|#4| |#4| $) 89)) (-1459 (($ $) 68 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#4| $) 67 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4402)))) (-2264 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-554)))) (-4091 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-3595 ((|#4| |#4| $) 87)) (-1955 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4402))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4402))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2267 (((-2 (|:| -1450 (-639 |#4|)) (|:| -3316 (-639 |#4|))) $) 105)) (-1720 (((-639 |#4|) $) 52 (|has| $ (-6 -4402)))) (-2573 (((-112) |#4| $) 104) (((-112) $) 103)) (-4339 ((|#3| $) 34)) (-3292 (((-112) $ (-766)) 43)) (-1912 (((-639 |#4|) $) 53 (|has| $ (-6 -4402)))) (-1669 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#4| |#4|) $) 47)) (-3754 (((-639 |#3|) $) 32)) (-2071 (((-112) |#3| $) 31)) (-3289 (((-112) $ (-766)) 42)) (-2913 (((-1150) $) 9)) (-1504 (((-3 |#4| "failed") $) 83)) (-3576 (((-639 |#4|) $) 107)) (-2890 (((-112) |#4| $) 99) (((-112) $) 95)) (-1849 ((|#4| |#4| $) 90)) (-1408 (((-112) $ $) 110)) (-3725 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-554)))) (-2766 (((-112) |#4| $) 100) (((-112) $) 96)) (-1532 ((|#4| |#4| $) 91)) (-1709 (((-1112) $) 10)) (-1421 (((-3 |#4| "failed") $) 84)) (-3251 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-3310 (((-3 $ "failed") $ |#4|) 78)) (-1353 (($ $ |#4|) 77)) (-1763 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) 59 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) 57 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) 56 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-3336 (((-112) $ $) 38)) (-2974 (((-112) $) 41)) (-4307 (($) 40)) (-3598 (((-766) $) 106)) (-1723 (((-766) |#4| $) 54 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4402)))) (((-766) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4402)))) (-4220 (($ $) 39)) (-4208 (((-535) $) 69 (|has| |#4| (-610 (-535))))) (-4066 (($ (-639 |#4|)) 60)) (-1812 (($ $ |#3|) 28)) (-3274 (($ $ |#3|) 30)) (-3277 (($ $) 88)) (-1568 (($ $ |#3|) 29)) (-4054 (((-857) $) 11) (((-639 |#4|) $) 37)) (-3730 (((-766) $) 76 (|has| |#3| (-367)))) (-2652 (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-4252 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) 98)) (-1744 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4402)))) (-4089 (((-639 |#3|) $) 81)) (-3694 (((-112) |#3| $) 80)) (-1731 (((-112) $ $) 6)) (-3492 (((-766) $) 46 (|has| $ (-6 -4402)))))
+((-4098 (*1 *1 *1) (-4 *1 (-1195))) (-4074 (*1 *1 *1) (-4 *1 (-1195))) (-4120 (*1 *1 *1) (-4 *1 (-1195))) (-4130 (*1 *1 *1) (-4 *1 (-1195))) (-4108 (*1 *1 *1) (-4 *1 (-1195))) (-4087 (*1 *1 *1) (-4 *1 (-1195))))
+(-13 (-10 -8 (-15 -4087 ($ $)) (-15 -4108 ($ $)) (-15 -4130 ($ $)) (-15 -4120 ($ $)) (-15 -4074 ($ $)) (-15 -4098 ($ $))))
+((-3456 ((|#2| |#2|) 88)) (-2091 (((-112) |#2|) 26)) (-1657 ((|#2| |#2|) 30)) (-1670 ((|#2| |#2|) 32)) (-2402 ((|#2| |#2| (-1168)) 83) ((|#2| |#2|) 84)) (-2050 (((-168 |#2|) |#2|) 28)) (-1553 ((|#2| |#2| (-1168)) 85) ((|#2| |#2|) 86)))
+(((-1196 |#1| |#2|) (-10 -7 (-15 -2402 (|#2| |#2|)) (-15 -2402 (|#2| |#2| (-1168))) (-15 -1553 (|#2| |#2|)) (-15 -1553 (|#2| |#2| (-1168))) (-15 -3456 (|#2| |#2|)) (-15 -1657 (|#2| |#2|)) (-15 -1670 (|#2| |#2|)) (-15 -2091 ((-112) |#2|)) (-15 -2050 ((-168 |#2|) |#2|))) (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))) (-13 (-27) (-1192) (-429 |#1|))) (T -1196))
+((-2050 (*1 *2 *3) (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-168 *3)) (-5 *1 (-1196 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))) (-2091 (*1 *2 *3) (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *2 (-112)) (-5 *1 (-1196 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *4))))) (-1670 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))) (-1657 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))) (-3456 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))) (-1553 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))) (-1553 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))) (-2402 (*1 *2 *2 *3) (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))) (-2402 (*1 *2 *2) (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562)))) (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))))
+(-10 -7 (-15 -2402 (|#2| |#2|)) (-15 -2402 (|#2| |#2| (-1168))) (-15 -1553 (|#2| |#2|)) (-15 -1553 (|#2| |#2| (-1168))) (-15 -3456 (|#2| |#2|)) (-15 -1657 (|#2| |#2|)) (-15 -1670 (|#2| |#2|)) (-15 -2091 ((-112) |#2|)) (-15 -2050 ((-168 |#2|) |#2|)))
+((-3594 ((|#4| |#4| |#1|) 27)) (-2233 ((|#4| |#4| |#1|) 28)))
+(((-1197 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3594 (|#4| |#4| |#1|)) (-15 -2233 (|#4| |#4| |#1|))) (-554) (-372 |#1|) (-372 |#1|) (-681 |#1| |#2| |#3|)) (T -1197))
+((-2233 (*1 *2 *2 *3) (-12 (-4 *3 (-554)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-1197 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))) (-3594 (*1 *2 *2 *3) (-12 (-4 *3 (-554)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3)) (-5 *1 (-1197 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
+(-10 -7 (-15 -3594 (|#4| |#4| |#1|)) (-15 -2233 (|#4| |#4| |#1|)))
+((-3325 ((|#2| |#2|) 133)) (-3125 ((|#2| |#2|) 130)) (-2634 ((|#2| |#2|) 121)) (-2836 ((|#2| |#2|) 118)) (-1695 ((|#2| |#2|) 126)) (-2630 ((|#2| |#2|) 114)) (-2375 ((|#2| |#2|) 43)) (-2159 ((|#2| |#2|) 94)) (-3537 ((|#2| |#2|) 74)) (-3871 ((|#2| |#2|) 128)) (-3312 ((|#2| |#2|) 116)) (-2182 ((|#2| |#2|) 138)) (-1373 ((|#2| |#2|) 136)) (-3832 ((|#2| |#2|) 137)) (-3136 ((|#2| |#2|) 135)) (-2175 ((|#2| |#2|) 148)) (-2029 ((|#2| |#2|) 30 (-12 (|has| |#2| (-610 (-887 |#1|))) (|has| |#2| (-881 |#1|)) (|has| |#1| (-610 (-887 |#1|))) (|has| |#1| (-881 |#1|))))) (-2405 ((|#2| |#2|) 75)) (-3482 ((|#2| |#2|) 139)) (-3525 ((|#2| |#2|) 140)) (-3935 ((|#2| |#2|) 127)) (-1953 ((|#2| |#2|) 115)) (-3257 ((|#2| |#2|) 134)) (-2785 ((|#2| |#2|) 132)) (-2360 ((|#2| |#2|) 122)) (-2913 ((|#2| |#2|) 120)) (-3094 ((|#2| |#2|) 124)) (-4225 ((|#2| |#2|) 112)))
+(((-1198 |#1| |#2|) (-10 -7 (-15 -3525 (|#2| |#2|)) (-15 -3537 (|#2| |#2|)) (-15 -2175 (|#2| |#2|)) (-15 -2159 (|#2| |#2|)) (-15 -2375 (|#2| |#2|)) (-15 -2405 (|#2| |#2|)) (-15 -3482 (|#2| |#2|)) (-15 -4225 (|#2| |#2|)) (-15 -3094 (|#2| |#2|)) (-15 -2360 (|#2| |#2|)) (-15 -3257 (|#2| |#2|)) (-15 -1953 (|#2| |#2|)) (-15 -3935 (|#2| |#2|)) (-15 -3312 (|#2| |#2|)) (-15 -3871 (|#2| |#2|)) (-15 -2630 (|#2| |#2|)) (-15 -1695 (|#2| |#2|)) (-15 -2634 (|#2| |#2|)) (-15 -3325 (|#2| |#2|)) (-15 -2836 (|#2| |#2|)) (-15 -3125 (|#2| |#2|)) (-15 -2913 (|#2| |#2|)) (-15 -2785 (|#2| |#2|)) (-15 -3136 (|#2| |#2|)) (-15 -1373 (|#2| |#2|)) (-15 -3832 (|#2| |#2|)) (-15 -2182 (|#2| |#2|)) (IF (|has| |#1| (-881 |#1|)) (IF (|has| |#1| (-610 (-887 |#1|))) (IF (|has| |#2| (-610 (-887 |#1|))) (IF (|has| |#2| (-881 |#1|)) (-15 -2029 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-13 (-845) (-451)) (-13 (-429 |#1|) (-1192))) (T -1198))
+((-2029 (*1 *2 *2) (-12 (-4 *3 (-610 (-887 *3))) (-4 *3 (-881 *3)) (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-610 (-887 *3))) (-4 *2 (-881 *3)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2182 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3832 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-1373 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3136 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2785 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2913 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3125 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2836 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3325 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2634 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-1695 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2630 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3871 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3312 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3935 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-1953 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3257 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2360 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3094 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-4225 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3482 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2405 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2375 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2159 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-2175 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3537 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))) (-3525 (*1 *2 *2) (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2)) (-4 *2 (-13 (-429 *3) (-1192))))))
+(-10 -7 (-15 -3525 (|#2| |#2|)) (-15 -3537 (|#2| |#2|)) (-15 -2175 (|#2| |#2|)) (-15 -2159 (|#2| |#2|)) (-15 -2375 (|#2| |#2|)) (-15 -2405 (|#2| |#2|)) (-15 -3482 (|#2| |#2|)) (-15 -4225 (|#2| |#2|)) (-15 -3094 (|#2| |#2|)) (-15 -2360 (|#2| |#2|)) (-15 -3257 (|#2| |#2|)) (-15 -1953 (|#2| |#2|)) (-15 -3935 (|#2| |#2|)) (-15 -3312 (|#2| |#2|)) (-15 -3871 (|#2| |#2|)) (-15 -2630 (|#2| |#2|)) (-15 -1695 (|#2| |#2|)) (-15 -2634 (|#2| |#2|)) (-15 -3325 (|#2| |#2|)) (-15 -2836 (|#2| |#2|)) (-15 -3125 (|#2| |#2|)) (-15 -2913 (|#2| |#2|)) (-15 -2785 (|#2| |#2|)) (-15 -3136 (|#2| |#2|)) (-15 -1373 (|#2| |#2|)) (-15 -3832 (|#2| |#2|)) (-15 -2182 (|#2| |#2|)) (IF (|has| |#1| (-881 |#1|)) (IF (|has| |#1| (-610 (-887 |#1|))) (IF (|has| |#2| (-610 (-887 |#1|))) (IF (|has| |#2| (-881 |#1|)) (-15 -2029 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-4177 (((-112) |#5| $) 59) (((-112) $) 101)) (-3623 ((|#5| |#5| $) 74)) (-3556 (($ (-1 (-112) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 118)) (-4227 (((-639 |#5|) (-639 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 72)) (-4048 (((-3 $ "failed") (-639 |#5|)) 125)) (-1434 (((-3 $ "failed") $) 111)) (-3255 ((|#5| |#5| $) 93)) (-3300 (((-112) |#5| $ (-1 (-112) |#5| |#5|)) 30)) (-2227 ((|#5| |#5| $) 97)) (-1954 ((|#5| (-1 |#5| |#5| |#5|) $ |#5| |#5|) NIL) ((|#5| (-1 |#5| |#5| |#5|) $ |#5|) NIL) ((|#5| (-1 |#5| |#5| |#5|) $) NIL) ((|#5| |#5| $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 68)) (-1471 (((-2 (|:| -1449 (-639 |#5|)) (|:| -3315 (-639 |#5|))) $) 54)) (-1493 (((-112) |#5| $) 57) (((-112) $) 102)) (-3761 ((|#4| $) 107)) (-1504 (((-3 |#5| "failed") $) 109)) (-2063 (((-639 |#5|) $) 48)) (-1645 (((-112) |#5| $) 66) (((-112) $) 106)) (-2651 ((|#5| |#5| $) 80)) (-1789 (((-112) $ $) 26)) (-2830 (((-112) |#5| $) 62) (((-112) $) 104)) (-1630 ((|#5| |#5| $) 77)) (-1421 (((-3 |#5| "failed") $) 108)) (-4316 (($ $ |#5|) 126)) (-2250 (((-766) $) 51)) (-4064 (($ (-639 |#5|)) 123)) (-2316 (($ $ |#4|) 121)) (-2180 (($ $ |#4|) 120)) (-2209 (($ $) 119)) (-4053 (((-857) $) NIL) (((-639 |#5|) $) 112)) (-4157 (((-766) $) 129)) (-4168 (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#5|))) "failed") (-639 |#5|) (-1 (-112) |#5| |#5|)) 42) (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#5|))) "failed") (-639 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|)) 44)) (-2350 (((-112) $ (-1 (-112) |#5| (-639 |#5|))) 99)) (-3278 (((-639 |#4|) $) 114)) (-3782 (((-112) |#4| $) 117)) (-1733 (((-112) $ $) 19)))
+(((-1199 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -4157 ((-766) |#1|)) (-15 -4316 (|#1| |#1| |#5|)) (-15 -3556 ((-3 |#5| "failed") |#1| |#4|)) (-15 -3782 ((-112) |#4| |#1|)) (-15 -3278 ((-639 |#4|) |#1|)) (-15 -1434 ((-3 |#1| "failed") |#1|)) (-15 -1504 ((-3 |#5| "failed") |#1|)) (-15 -1421 ((-3 |#5| "failed") |#1|)) (-15 -2227 (|#5| |#5| |#1|)) (-15 -2209 (|#1| |#1|)) (-15 -3255 (|#5| |#5| |#1|)) (-15 -2651 (|#5| |#5| |#1|)) (-15 -1630 (|#5| |#5| |#1|)) (-15 -3623 (|#5| |#5| |#1|)) (-15 -4227 ((-639 |#5|) (-639 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1954 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1645 ((-112) |#1|)) (-15 -2830 ((-112) |#1|)) (-15 -4177 ((-112) |#1|)) (-15 -2350 ((-112) |#1| (-1 (-112) |#5| (-639 |#5|)))) (-15 -1645 ((-112) |#5| |#1|)) (-15 -2830 ((-112) |#5| |#1|)) (-15 -4177 ((-112) |#5| |#1|)) (-15 -3300 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -1493 ((-112) |#1|)) (-15 -1493 ((-112) |#5| |#1|)) (-15 -1471 ((-2 (|:| -1449 (-639 |#5|)) (|:| -3315 (-639 |#5|))) |#1|)) (-15 -2250 ((-766) |#1|)) (-15 -2063 ((-639 |#5|) |#1|)) (-15 -4168 ((-3 (-2 (|:| |bas| |#1|) (|:| -2774 (-639 |#5|))) "failed") (-639 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -4168 ((-3 (-2 (|:| |bas| |#1|) (|:| -2774 (-639 |#5|))) "failed") (-639 |#5|) (-1 (-112) |#5| |#5|))) (-15 -1789 ((-112) |#1| |#1|)) (-15 -2316 (|#1| |#1| |#4|)) (-15 -2180 (|#1| |#1| |#4|)) (-15 -3761 (|#4| |#1|)) (-15 -4048 ((-3 |#1| "failed") (-639 |#5|))) (-15 -4053 ((-639 |#5|) |#1|)) (-15 -4064 (|#1| (-639 |#5|))) (-15 -1954 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -1954 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -3556 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -1954 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -4053 ((-857) |#1|)) (-15 -1733 ((-112) |#1| |#1|))) (-1200 |#2| |#3| |#4| |#5|) (-554) (-788) (-845) (-1058 |#2| |#3| |#4|)) (T -1199))
+NIL
+(-10 -8 (-15 -4157 ((-766) |#1|)) (-15 -4316 (|#1| |#1| |#5|)) (-15 -3556 ((-3 |#5| "failed") |#1| |#4|)) (-15 -3782 ((-112) |#4| |#1|)) (-15 -3278 ((-639 |#4|) |#1|)) (-15 -1434 ((-3 |#1| "failed") |#1|)) (-15 -1504 ((-3 |#5| "failed") |#1|)) (-15 -1421 ((-3 |#5| "failed") |#1|)) (-15 -2227 (|#5| |#5| |#1|)) (-15 -2209 (|#1| |#1|)) (-15 -3255 (|#5| |#5| |#1|)) (-15 -2651 (|#5| |#5| |#1|)) (-15 -1630 (|#5| |#5| |#1|)) (-15 -3623 (|#5| |#5| |#1|)) (-15 -4227 ((-639 |#5|) (-639 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1954 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1645 ((-112) |#1|)) (-15 -2830 ((-112) |#1|)) (-15 -4177 ((-112) |#1|)) (-15 -2350 ((-112) |#1| (-1 (-112) |#5| (-639 |#5|)))) (-15 -1645 ((-112) |#5| |#1|)) (-15 -2830 ((-112) |#5| |#1|)) (-15 -4177 ((-112) |#5| |#1|)) (-15 -3300 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -1493 ((-112) |#1|)) (-15 -1493 ((-112) |#5| |#1|)) (-15 -1471 ((-2 (|:| -1449 (-639 |#5|)) (|:| -3315 (-639 |#5|))) |#1|)) (-15 -2250 ((-766) |#1|)) (-15 -2063 ((-639 |#5|) |#1|)) (-15 -4168 ((-3 (-2 (|:| |bas| |#1|) (|:| -2774 (-639 |#5|))) "failed") (-639 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -4168 ((-3 (-2 (|:| |bas| |#1|) (|:| -2774 (-639 |#5|))) "failed") (-639 |#5|) (-1 (-112) |#5| |#5|))) (-15 -1789 ((-112) |#1| |#1|)) (-15 -2316 (|#1| |#1| |#4|)) (-15 -2180 (|#1| |#1| |#4|)) (-15 -3761 (|#4| |#1|)) (-15 -4048 ((-3 |#1| "failed") (-639 |#5|))) (-15 -4053 ((-639 |#5|) |#1|)) (-15 -4064 (|#1| (-639 |#5|))) (-15 -1954 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -1954 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -3556 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -1954 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -4053 ((-857) |#1|)) (-15 -1733 ((-112) |#1| |#1|)))
+((-4041 (((-112) $ $) 7)) (-1330 (((-639 (-2 (|:| -1449 $) (|:| -3315 (-639 |#4|)))) (-639 |#4|)) 85)) (-3672 (((-639 $) (-639 |#4|)) 86)) (-1401 (((-639 |#3|) $) 33)) (-2799 (((-112) $) 26)) (-4370 (((-112) $) 17 (|has| |#1| (-554)))) (-4177 (((-112) |#4| $) 101) (((-112) $) 97)) (-3623 ((|#4| |#4| $) 92)) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |#3|) 27)) (-3735 (((-112) $ (-766)) 44)) (-3556 (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4403))) (((-3 |#4| "failed") $ |#3|) 79)) (-3329 (($) 45 T CONST)) (-2169 (((-112) $) 22 (|has| |#1| (-554)))) (-2183 (((-112) $ $) 24 (|has| |#1| (-554)))) (-2864 (((-112) $ $) 23 (|has| |#1| (-554)))) (-4219 (((-112) $) 25 (|has| |#1| (-554)))) (-4227 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 93)) (-2037 (((-639 |#4|) (-639 |#4|) $) 18 (|has| |#1| (-554)))) (-4230 (((-639 |#4|) (-639 |#4|) $) 19 (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) 36)) (-3960 (($ (-639 |#4|)) 35)) (-1434 (((-3 $ "failed") $) 82)) (-3255 ((|#4| |#4| $) 89)) (-1459 (($ $) 68 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#4| $) 67 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#4|) $) 64 (|has| $ (-6 -4403)))) (-1441 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 20 (|has| |#1| (-554)))) (-3300 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 102)) (-2227 ((|#4| |#4| $) 87)) (-1954 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 66 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 63 (|has| $ (-6 -4403))) ((|#4| (-1 |#4| |#4| |#4|) $) 62 (|has| $ (-6 -4403))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-1471 (((-2 (|:| -1449 (-639 |#4|)) (|:| -3315 (-639 |#4|))) $) 105)) (-1720 (((-639 |#4|) $) 52 (|has| $ (-6 -4403)))) (-1493 (((-112) |#4| $) 104) (((-112) $) 103)) (-3761 ((|#3| $) 34)) (-4172 (((-112) $ (-766)) 43)) (-2123 (((-639 |#4|) $) 53 (|has| $ (-6 -4403)))) (-1572 (((-112) |#4| $) 55 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#4| |#4|) $) 48 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#4| |#4|) $) 47)) (-3133 (((-639 |#3|) $) 32)) (-3112 (((-112) |#3| $) 31)) (-4147 (((-112) $ (-766)) 42)) (-3696 (((-1150) $) 9)) (-1504 (((-3 |#4| "failed") $) 83)) (-2063 (((-639 |#4|) $) 107)) (-1645 (((-112) |#4| $) 99) (((-112) $) 95)) (-2651 ((|#4| |#4| $) 90)) (-1789 (((-112) $ $) 110)) (-4123 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-554)))) (-2830 (((-112) |#4| $) 100) (((-112) $) 96)) (-1630 ((|#4| |#4| $) 91)) (-1709 (((-1112) $) 10)) (-1421 (((-3 |#4| "failed") $) 84)) (-1963 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 61)) (-4333 (((-3 $ "failed") $ |#4|) 78)) (-4316 (($ $ |#4|) 77)) (-3008 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) 59 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) 58 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) 57 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) 56 (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-1452 (((-112) $ $) 38)) (-3087 (((-112) $) 41)) (-1663 (($) 40)) (-2250 (((-766) $) 106)) (-1723 (((-766) |#4| $) 54 (-12 (|has| |#4| (-1092)) (|has| $ (-6 -4403)))) (((-766) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4403)))) (-4220 (($ $) 39)) (-4208 (((-535) $) 69 (|has| |#4| (-610 (-535))))) (-4064 (($ (-639 |#4|)) 60)) (-2316 (($ $ |#3|) 28)) (-2180 (($ $ |#3|) 30)) (-2209 (($ $) 88)) (-1962 (($ $ |#3|) 29)) (-4053 (((-857) $) 11) (((-639 |#4|) $) 37)) (-4157 (((-766) $) 76 (|has| |#3| (-367)))) (-4168 (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) 109) (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 108)) (-2350 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) 98)) (-2879 (((-112) (-1 (-112) |#4|) $) 49 (|has| $ (-6 -4403)))) (-3278 (((-639 |#3|) $) 81)) (-3782 (((-112) |#3| $) 80)) (-1733 (((-112) $ $) 6)) (-3492 (((-766) $) 46 (|has| $ (-6 -4403)))))
(((-1200 |#1| |#2| |#3| |#4|) (-139) (-554) (-788) (-845) (-1058 |t#1| |t#2| |t#3|)) (T -1200))
-((-1408 (*1 *2 *1 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-2652 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2775 (-639 *8)))) (-5 *3 (-639 *8)) (-4 *1 (-1200 *5 *6 *7 *8)))) (-2652 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9)) (-4 *9 (-1058 *6 *7 *8)) (-4 *6 (-554)) (-4 *7 (-788)) (-4 *8 (-845)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2775 (-639 *9)))) (-5 *3 (-639 *9)) (-4 *1 (-1200 *6 *7 *8 *9)))) (-3576 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *6)))) (-3598 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-766)))) (-2267 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-2 (|:| -1450 (-639 *6)) (|:| -3316 (-639 *6)))))) (-2573 (*1 *2 *3 *1) (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-2573 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-4091 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1200 *5 *6 *7 *3)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-112)))) (-4377 (*1 *2 *3 *1) (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-2766 (*1 *2 *3 *1) (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-2890 (*1 *2 *3 *1) (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-4252 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-112) *7 (-639 *7))) (-4 *1 (-1200 *4 *5 *6 *7)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-4377 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-2766 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-2890 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-1955 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2)) (-4 *1 (-1200 *5 *6 *7 *2)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *2 (-1058 *5 *6 *7)))) (-2839 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-639 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1200 *5 *6 *7 *8)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)))) (-3049 (*1 *2 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-1532 (*1 *2 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-1849 (*1 *2 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-2387 (*1 *2 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-3277 (*1 *1 *1) (-12 (-4 *1 (-1200 *2 *3 *4 *5)) (-4 *2 (-554)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-1058 *2 *3 *4)))) (-3595 (*1 *2 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-2304 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1200 *4 *5 *6 *7)))) (-2560 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-639 (-2 (|:| -1450 *1) (|:| -3316 (-639 *7))))) (-5 *3 (-639 *7)) (-4 *1 (-1200 *4 *5 *6 *7)))) (-1421 (*1 *2 *1) (|partial| -12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-1504 (*1 *2 *1) (|partial| -12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-1434 (*1 *1 *1) (|partial| -12 (-4 *1 (-1200 *2 *3 *4 *5)) (-4 *2 (-554)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-1058 *2 *3 *4)))) (-4089 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *5)))) (-3694 (*1 *2 *3 *1) (-12 (-4 *1 (-1200 *4 *5 *3 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *3 (-845)) (-4 *6 (-1058 *4 *5 *3)) (-5 *2 (-112)))) (-3556 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1200 *4 *5 *3 *2)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *3 (-845)) (-4 *2 (-1058 *4 *5 *3)))) (-3310 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-1353 (*1 *1 *1 *2) (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-3730 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *5 (-367)) (-5 *2 (-766)))))
-(-13 (-971 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4402) (-6 -4403) (-15 -1408 ((-112) $ $)) (-15 -2652 ((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |t#4|))) "failed") (-639 |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2652 ((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |t#4|))) "failed") (-639 |t#4|) (-1 (-112) |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3576 ((-639 |t#4|) $)) (-15 -3598 ((-766) $)) (-15 -2267 ((-2 (|:| -1450 (-639 |t#4|)) (|:| -3316 (-639 |t#4|))) $)) (-15 -2573 ((-112) |t#4| $)) (-15 -2573 ((-112) $)) (-15 -4091 ((-112) |t#4| $ (-1 (-112) |t#4| |t#4|))) (-15 -4377 ((-112) |t#4| $)) (-15 -2766 ((-112) |t#4| $)) (-15 -2890 ((-112) |t#4| $)) (-15 -4252 ((-112) $ (-1 (-112) |t#4| (-639 |t#4|)))) (-15 -4377 ((-112) $)) (-15 -2766 ((-112) $)) (-15 -2890 ((-112) $)) (-15 -1955 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2839 ((-639 |t#4|) (-639 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3049 (|t#4| |t#4| $)) (-15 -1532 (|t#4| |t#4| $)) (-15 -1849 (|t#4| |t#4| $)) (-15 -2387 (|t#4| |t#4| $)) (-15 -3277 ($ $)) (-15 -3595 (|t#4| |t#4| $)) (-15 -2304 ((-639 $) (-639 |t#4|))) (-15 -2560 ((-639 (-2 (|:| -1450 $) (|:| -3316 (-639 |t#4|)))) (-639 |t#4|))) (-15 -1421 ((-3 |t#4| "failed") $)) (-15 -1504 ((-3 |t#4| "failed") $)) (-15 -1434 ((-3 $ "failed") $)) (-15 -4089 ((-639 |t#3|) $)) (-15 -3694 ((-112) |t#3| $)) (-15 -3556 ((-3 |t#4| "failed") $ |t#3|)) (-15 -3310 ((-3 $ "failed") $ |t#4|)) (-15 -1353 ($ $ |t#4|)) (IF (|has| |t#3| (-367)) (-15 -3730 ((-766) $)) |%noBranch|)))
+((-1789 (*1 *2 *1 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-4168 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2774 (-639 *8)))) (-5 *3 (-639 *8)) (-4 *1 (-1200 *5 *6 *7 *8)))) (-4168 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9)) (-4 *9 (-1058 *6 *7 *8)) (-4 *6 (-554)) (-4 *7 (-788)) (-4 *8 (-845)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2774 (-639 *9)))) (-5 *3 (-639 *9)) (-4 *1 (-1200 *6 *7 *8 *9)))) (-2063 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *6)))) (-2250 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-766)))) (-1471 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-2 (|:| -1449 (-639 *6)) (|:| -3315 (-639 *6)))))) (-1493 (*1 *2 *3 *1) (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-1493 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-3300 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1200 *5 *6 *7 *3)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-112)))) (-4177 (*1 *2 *3 *1) (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-2830 (*1 *2 *3 *1) (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-1645 (*1 *2 *3 *1) (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-2350 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-112) *7 (-639 *7))) (-4 *1 (-1200 *4 *5 *6 *7)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)))) (-4177 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-2830 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-1645 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))) (-1954 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2)) (-4 *1 (-1200 *5 *6 *7 *2)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *2 (-1058 *5 *6 *7)))) (-4227 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-639 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1200 *5 *6 *7 *8)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)))) (-3623 (*1 *2 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-1630 (*1 *2 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-2651 (*1 *2 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-3255 (*1 *2 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-2209 (*1 *1 *1) (-12 (-4 *1 (-1200 *2 *3 *4 *5)) (-4 *2 (-554)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-1058 *2 *3 *4)))) (-2227 (*1 *2 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-3672 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1)) (-4 *1 (-1200 *4 *5 *6 *7)))) (-1330 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-639 (-2 (|:| -1449 *1) (|:| -3315 (-639 *7))))) (-5 *3 (-639 *7)) (-4 *1 (-1200 *4 *5 *6 *7)))) (-1421 (*1 *2 *1) (|partial| -12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-1504 (*1 *2 *1) (|partial| -12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-1434 (*1 *1 *1) (|partial| -12 (-4 *1 (-1200 *2 *3 *4 *5)) (-4 *2 (-554)) (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-1058 *2 *3 *4)))) (-3278 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *5)))) (-3782 (*1 *2 *3 *1) (-12 (-4 *1 (-1200 *4 *5 *3 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *3 (-845)) (-4 *6 (-1058 *4 *5 *3)) (-5 *2 (-112)))) (-3556 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1200 *4 *5 *3 *2)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *3 (-845)) (-4 *2 (-1058 *4 *5 *3)))) (-4333 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-4316 (*1 *1 *1 *2) (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))) (-4157 (*1 *2 *1) (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *5 (-367)) (-5 *2 (-766)))))
+(-13 (-971 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4403) (-6 -4404) (-15 -1789 ((-112) $ $)) (-15 -4168 ((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |t#4|))) "failed") (-639 |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -4168 ((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |t#4|))) "failed") (-639 |t#4|) (-1 (-112) |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2063 ((-639 |t#4|) $)) (-15 -2250 ((-766) $)) (-15 -1471 ((-2 (|:| -1449 (-639 |t#4|)) (|:| -3315 (-639 |t#4|))) $)) (-15 -1493 ((-112) |t#4| $)) (-15 -1493 ((-112) $)) (-15 -3300 ((-112) |t#4| $ (-1 (-112) |t#4| |t#4|))) (-15 -4177 ((-112) |t#4| $)) (-15 -2830 ((-112) |t#4| $)) (-15 -1645 ((-112) |t#4| $)) (-15 -2350 ((-112) $ (-1 (-112) |t#4| (-639 |t#4|)))) (-15 -4177 ((-112) $)) (-15 -2830 ((-112) $)) (-15 -1645 ((-112) $)) (-15 -1954 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -4227 ((-639 |t#4|) (-639 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3623 (|t#4| |t#4| $)) (-15 -1630 (|t#4| |t#4| $)) (-15 -2651 (|t#4| |t#4| $)) (-15 -3255 (|t#4| |t#4| $)) (-15 -2209 ($ $)) (-15 -2227 (|t#4| |t#4| $)) (-15 -3672 ((-639 $) (-639 |t#4|))) (-15 -1330 ((-639 (-2 (|:| -1449 $) (|:| -3315 (-639 |t#4|)))) (-639 |t#4|))) (-15 -1421 ((-3 |t#4| "failed") $)) (-15 -1504 ((-3 |t#4| "failed") $)) (-15 -1434 ((-3 $ "failed") $)) (-15 -3278 ((-639 |t#3|) $)) (-15 -3782 ((-112) |t#3| $)) (-15 -3556 ((-3 |t#4| "failed") $ |t#3|)) (-15 -4333 ((-3 $ "failed") $ |t#4|)) (-15 -4316 ($ $ |t#4|)) (IF (|has| |t#3| (-367)) (-15 -4157 ((-766) $)) |%noBranch|)))
(((-34) . T) ((-102) . T) ((-609 (-639 |#4|)) . T) ((-609 (-857)) . T) ((-150 |#4|) . T) ((-610 (-535)) |has| |#4| (-610 (-535))) ((-308 |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))) ((-488 |#4|) . T) ((-513 |#4| |#4|) -12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))) ((-971 |#1| |#2| |#3| |#4|) . T) ((-1092) . T) ((-1207) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1402 (((-639 (-1168)) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-2988 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1643 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4207 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3014 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) NIL T CONST)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1454 (((-947 |#1|) $ (-766)) 16) (((-947 |#1|) $ (-766) (-766)) NIL)) (-1756 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-766) $ (-1168)) NIL) (((-766) $ (-1168) (-766)) NIL)) (-1957 (((-112) $) NIL)) (-1891 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3536 (((-112) $) NIL)) (-1378 (($ $ (-639 (-1168)) (-639 (-530 (-1168)))) NIL) (($ $ (-1168) (-530 (-1168))) NIL) (($ |#1| (-530 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4365 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-2667 (($ $ (-1168)) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-2345 (($ (-1 $) (-1168) |#1|) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1353 (($ $ (-766)) NIL)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1433 (($ $ (-1168) $) NIL) (($ $ (-639 (-1168)) (-639 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL)) (-4029 (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-3598 (((-530 (-1168)) $) NIL)) (-3023 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ $) NIL (|has| |#1| (-554))) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-1168)) NIL) (($ (-947 |#1|)) NIL)) (-3906 ((|#1| $ (-530 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (((-947 |#1|) $ (-766)) NIL)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-3055 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1566 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3114 (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-1201 |#1|) (-13 (-735 |#1| (-1168)) (-10 -8 (-15 -3906 ((-947 |#1|) $ (-766))) (-15 -4054 ($ (-1168))) (-15 -4054 ($ (-947 |#1|))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -2667 ($ $ (-1168) |#1|)) (-15 -2345 ($ (-1 $) (-1168) |#1|))) |%noBranch|))) (-1044)) (T -1201))
-((-3906 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *2 (-947 *4)) (-5 *1 (-1201 *4)) (-4 *4 (-1044)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1201 *3)) (-4 *3 (-1044)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-947 *3)) (-4 *3 (-1044)) (-5 *1 (-1201 *3)))) (-2667 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *1 (-1201 *3)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)))) (-2345 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1201 *4))) (-5 *3 (-1168)) (-5 *1 (-1201 *4)) (-4 *4 (-38 (-406 (-562)))) (-4 *4 (-1044)))))
-(-13 (-735 |#1| (-1168)) (-10 -8 (-15 -3906 ((-947 |#1|) $ (-766))) (-15 -4054 ($ (-1168))) (-15 -4054 ($ (-947 |#1|))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -2667 ($ $ (-1168) |#1|)) (-15 -2345 ($ (-1 $) (-1168) |#1|))) |%noBranch|)))
-((-3867 (($ |#1| (-639 (-639 (-938 (-224)))) (-112)) 18)) (-1374 (((-112) $ (-112)) 17)) (-1862 (((-112) $) 16)) (-1840 (((-639 (-639 (-938 (-224)))) $) 13)) (-3153 ((|#1| $) 8)) (-1623 (((-112) $) 15)))
-(((-1202 |#1|) (-10 -8 (-15 -3153 (|#1| $)) (-15 -1840 ((-639 (-639 (-938 (-224)))) $)) (-15 -1623 ((-112) $)) (-15 -1862 ((-112) $)) (-15 -1374 ((-112) $ (-112))) (-15 -3867 ($ |#1| (-639 (-639 (-938 (-224)))) (-112)))) (-969)) (T -1202))
-((-3867 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-112)) (-5 *1 (-1202 *2)) (-4 *2 (-969)))) (-1374 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1202 *3)) (-4 *3 (-969)))) (-1862 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1202 *3)) (-4 *3 (-969)))) (-1623 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1202 *3)) (-4 *3 (-969)))) (-1840 (*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-1202 *3)) (-4 *3 (-969)))) (-3153 (*1 *2 *1) (-12 (-5 *1 (-1202 *2)) (-4 *2 (-969)))))
-(-10 -8 (-15 -3153 (|#1| $)) (-15 -1840 ((-639 (-639 (-938 (-224)))) $)) (-15 -1623 ((-112) $)) (-15 -1862 ((-112) $)) (-15 -1374 ((-112) $ (-112))) (-15 -3867 ($ |#1| (-639 (-639 (-938 (-224)))) (-112))))
-((-3901 (((-938 (-224)) (-938 (-224))) 25)) (-1460 (((-938 (-224)) (-224) (-224) (-224) (-224)) 10)) (-1354 (((-639 (-938 (-224))) (-938 (-224)) (-938 (-224)) (-938 (-224)) (-224) (-639 (-639 (-224)))) 35)) (-4177 (((-224) (-938 (-224)) (-938 (-224))) 21)) (-1386 (((-938 (-224)) (-938 (-224)) (-938 (-224))) 22)) (-1620 (((-639 (-639 (-224))) (-562)) 31)) (-1848 (((-938 (-224)) (-938 (-224)) (-938 (-224))) 20)) (-1835 (((-938 (-224)) (-938 (-224)) (-938 (-224))) 19)) (* (((-938 (-224)) (-224) (-938 (-224))) 18)))
-(((-1203) (-10 -7 (-15 -1460 ((-938 (-224)) (-224) (-224) (-224) (-224))) (-15 * ((-938 (-224)) (-224) (-938 (-224)))) (-15 -1835 ((-938 (-224)) (-938 (-224)) (-938 (-224)))) (-15 -1848 ((-938 (-224)) (-938 (-224)) (-938 (-224)))) (-15 -4177 ((-224) (-938 (-224)) (-938 (-224)))) (-15 -1386 ((-938 (-224)) (-938 (-224)) (-938 (-224)))) (-15 -3901 ((-938 (-224)) (-938 (-224)))) (-15 -1620 ((-639 (-639 (-224))) (-562))) (-15 -1354 ((-639 (-938 (-224))) (-938 (-224)) (-938 (-224)) (-938 (-224)) (-224) (-639 (-639 (-224))))))) (T -1203))
-((-1354 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-639 (-639 (-224)))) (-5 *4 (-224)) (-5 *2 (-639 (-938 *4))) (-5 *1 (-1203)) (-5 *3 (-938 *4)))) (-1620 (*1 *2 *3) (-12 (-5 *3 (-562)) (-5 *2 (-639 (-639 (-224)))) (-5 *1 (-1203)))) (-3901 (*1 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)))) (-1386 (*1 *2 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)))) (-4177 (*1 *2 *3 *3) (-12 (-5 *3 (-938 (-224))) (-5 *2 (-224)) (-5 *1 (-1203)))) (-1848 (*1 *2 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)))) (-1835 (*1 *2 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-938 (-224))) (-5 *3 (-224)) (-5 *1 (-1203)))) (-1460 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)) (-5 *3 (-224)))))
-(-10 -7 (-15 -1460 ((-938 (-224)) (-224) (-224) (-224) (-224))) (-15 * ((-938 (-224)) (-224) (-938 (-224)))) (-15 -1835 ((-938 (-224)) (-938 (-224)) (-938 (-224)))) (-15 -1848 ((-938 (-224)) (-938 (-224)) (-938 (-224)))) (-15 -4177 ((-224) (-938 (-224)) (-938 (-224)))) (-15 -1386 ((-938 (-224)) (-938 (-224)) (-938 (-224)))) (-15 -3901 ((-938 (-224)) (-938 (-224)))) (-15 -1620 ((-639 (-639 (-224))) (-562))) (-15 -1354 ((-639 (-938 (-224))) (-938 (-224)) (-938 (-224)) (-938 (-224)) (-224) (-639 (-639 (-224))))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3556 ((|#1| $ (-766)) 13)) (-3641 (((-766) $) 12)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-4054 (((-953 |#1|) $) 10) (($ (-953 |#1|)) 9) (((-857) $) 23 (|has| |#1| (-609 (-857))))) (-1731 (((-112) $ $) 16 (|has| |#1| (-1092)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1401 (((-639 (-1168)) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-2987 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1644 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4206 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3013 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) NIL T CONST)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1455 (((-947 |#1|) $ (-766)) 16) (((-947 |#1|) $ (-766) (-766)) NIL)) (-2965 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-766) $ (-1168)) NIL) (((-766) $ (-1168) (-766)) NIL)) (-4367 (((-112) $) NIL)) (-1895 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2833 (((-112) $) NIL)) (-1377 (($ $ (-639 (-1168)) (-639 (-530 (-1168)))) NIL) (($ $ (-1168) (-530 (-1168))) NIL) (($ |#1| (-530 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4366 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-3081 (($ $ (-1168)) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168) |#1|) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-4096 (($ (-1 $) (-1168) |#1|) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4316 (($ $ (-766)) NIL)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1433 (($ $ (-1168) $) NIL) (($ $ (-639 (-1168)) (-639 $)) NIL) (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL)) (-4029 (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-2250 (((-530 (-1168)) $) NIL)) (-3022 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ $) NIL (|has| |#1| (-554))) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-1168)) NIL) (($ (-947 |#1|)) NIL)) (-2266 ((|#1| $ (-530 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (((-947 |#1|) $ (-766)) NIL)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-3054 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1567 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) NIL T CONST)) (-2294 (($) NIL T CONST)) (-3113 (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL)) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-1201 |#1|) (-13 (-735 |#1| (-1168)) (-10 -8 (-15 -2266 ((-947 |#1|) $ (-766))) (-15 -4053 ($ (-1168))) (-15 -4053 ($ (-947 |#1|))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -3081 ($ $ (-1168) |#1|)) (-15 -4096 ($ (-1 $) (-1168) |#1|))) |%noBranch|))) (-1044)) (T -1201))
+((-2266 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *2 (-947 *4)) (-5 *1 (-1201 *4)) (-4 *4 (-1044)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1201 *3)) (-4 *3 (-1044)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-947 *3)) (-4 *3 (-1044)) (-5 *1 (-1201 *3)))) (-3081 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *1 (-1201 *3)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)))) (-4096 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1201 *4))) (-5 *3 (-1168)) (-5 *1 (-1201 *4)) (-4 *4 (-38 (-406 (-562)))) (-4 *4 (-1044)))))
+(-13 (-735 |#1| (-1168)) (-10 -8 (-15 -2266 ((-947 |#1|) $ (-766))) (-15 -4053 ($ (-1168))) (-15 -4053 ($ (-947 |#1|))) (IF (|has| |#1| (-38 (-406 (-562)))) (PROGN (-15 -3081 ($ $ (-1168) |#1|)) (-15 -4096 ($ (-1 $) (-1168) |#1|))) |%noBranch|)))
+((-1843 (($ |#1| (-639 (-639 (-938 (-224)))) (-112)) 18)) (-2779 (((-112) $ (-112)) 17)) (-2775 (((-112) $) 16)) (-2573 (((-639 (-639 (-938 (-224)))) $) 13)) (-3372 ((|#1| $) 8)) (-4231 (((-112) $) 15)))
+(((-1202 |#1|) (-10 -8 (-15 -3372 (|#1| $)) (-15 -2573 ((-639 (-639 (-938 (-224)))) $)) (-15 -4231 ((-112) $)) (-15 -2775 ((-112) $)) (-15 -2779 ((-112) $ (-112))) (-15 -1843 ($ |#1| (-639 (-639 (-938 (-224)))) (-112)))) (-969)) (T -1202))
+((-1843 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-112)) (-5 *1 (-1202 *2)) (-4 *2 (-969)))) (-2779 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1202 *3)) (-4 *3 (-969)))) (-2775 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1202 *3)) (-4 *3 (-969)))) (-4231 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1202 *3)) (-4 *3 (-969)))) (-2573 (*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-1202 *3)) (-4 *3 (-969)))) (-3372 (*1 *2 *1) (-12 (-5 *1 (-1202 *2)) (-4 *2 (-969)))))
+(-10 -8 (-15 -3372 (|#1| $)) (-15 -2573 ((-639 (-639 (-938 (-224)))) $)) (-15 -4231 ((-112) $)) (-15 -2775 ((-112) $)) (-15 -2779 ((-112) $ (-112))) (-15 -1843 ($ |#1| (-639 (-639 (-938 (-224)))) (-112))))
+((-2211 (((-938 (-224)) (-938 (-224))) 25)) (-1460 (((-938 (-224)) (-224) (-224) (-224) (-224)) 10)) (-4328 (((-639 (-938 (-224))) (-938 (-224)) (-938 (-224)) (-938 (-224)) (-224) (-639 (-639 (-224)))) 35)) (-2852 (((-224) (-938 (-224)) (-938 (-224))) 21)) (-3247 (((-938 (-224)) (-938 (-224)) (-938 (-224))) 22)) (-4202 (((-639 (-639 (-224))) (-562)) 31)) (-1847 (((-938 (-224)) (-938 (-224)) (-938 (-224))) 20)) (-1836 (((-938 (-224)) (-938 (-224)) (-938 (-224))) 19)) (* (((-938 (-224)) (-224) (-938 (-224))) 18)))
+(((-1203) (-10 -7 (-15 -1460 ((-938 (-224)) (-224) (-224) (-224) (-224))) (-15 * ((-938 (-224)) (-224) (-938 (-224)))) (-15 -1836 ((-938 (-224)) (-938 (-224)) (-938 (-224)))) (-15 -1847 ((-938 (-224)) (-938 (-224)) (-938 (-224)))) (-15 -2852 ((-224) (-938 (-224)) (-938 (-224)))) (-15 -3247 ((-938 (-224)) (-938 (-224)) (-938 (-224)))) (-15 -2211 ((-938 (-224)) (-938 (-224)))) (-15 -4202 ((-639 (-639 (-224))) (-562))) (-15 -4328 ((-639 (-938 (-224))) (-938 (-224)) (-938 (-224)) (-938 (-224)) (-224) (-639 (-639 (-224))))))) (T -1203))
+((-4328 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-639 (-639 (-224)))) (-5 *4 (-224)) (-5 *2 (-639 (-938 *4))) (-5 *1 (-1203)) (-5 *3 (-938 *4)))) (-4202 (*1 *2 *3) (-12 (-5 *3 (-562)) (-5 *2 (-639 (-639 (-224)))) (-5 *1 (-1203)))) (-2211 (*1 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)))) (-3247 (*1 *2 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)))) (-2852 (*1 *2 *3 *3) (-12 (-5 *3 (-938 (-224))) (-5 *2 (-224)) (-5 *1 (-1203)))) (-1847 (*1 *2 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)))) (-1836 (*1 *2 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-938 (-224))) (-5 *3 (-224)) (-5 *1 (-1203)))) (-1460 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)) (-5 *3 (-224)))))
+(-10 -7 (-15 -1460 ((-938 (-224)) (-224) (-224) (-224) (-224))) (-15 * ((-938 (-224)) (-224) (-938 (-224)))) (-15 -1836 ((-938 (-224)) (-938 (-224)) (-938 (-224)))) (-15 -1847 ((-938 (-224)) (-938 (-224)) (-938 (-224)))) (-15 -2852 ((-224) (-938 (-224)) (-938 (-224)))) (-15 -3247 ((-938 (-224)) (-938 (-224)) (-938 (-224)))) (-15 -2211 ((-938 (-224)) (-938 (-224)))) (-15 -4202 ((-639 (-639 (-224))) (-562))) (-15 -4328 ((-639 (-938 (-224))) (-938 (-224)) (-938 (-224)) (-938 (-224)) (-224) (-639 (-639 (-224))))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-3556 ((|#1| $ (-766)) 13)) (-3641 (((-766) $) 12)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-4053 (((-953 |#1|) $) 10) (($ (-953 |#1|)) 9) (((-857) $) 23 (|has| |#1| (-609 (-857))))) (-1733 (((-112) $ $) 16 (|has| |#1| (-1092)))))
(((-1204 |#1|) (-13 (-489 (-953 |#1|)) (-10 -8 (-15 -3556 (|#1| $ (-766))) (-15 -3641 ((-766) $)) (IF (|has| |#1| (-609 (-857))) (-6 (-609 (-857))) |%noBranch|) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|))) (-1207)) (T -1204))
((-3556 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-1204 *2)) (-4 *2 (-1207)))) (-3641 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1204 *3)) (-4 *3 (-1207)))))
(-13 (-489 (-953 |#1|)) (-10 -8 (-15 -3556 (|#1| $ (-766))) (-15 -3641 ((-766) $)) (IF (|has| |#1| (-609 (-857))) (-6 (-609 (-857))) |%noBranch|) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|)))
-((-3283 (((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)) (-562)) 80)) (-2008 (((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|))) 74)) (-1696 (((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|))) 59)))
-(((-1205 |#1|) (-10 -7 (-15 -2008 ((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)))) (-15 -1696 ((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)))) (-15 -3283 ((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)) (-562)))) (-348)) (T -1205))
-((-3283 (*1 *2 *3 *4) (-12 (-5 *4 (-562)) (-4 *5 (-348)) (-5 *2 (-417 (-1164 (-1164 *5)))) (-5 *1 (-1205 *5)) (-5 *3 (-1164 (-1164 *5))))) (-1696 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-417 (-1164 (-1164 *4)))) (-5 *1 (-1205 *4)) (-5 *3 (-1164 (-1164 *4))))) (-2008 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-417 (-1164 (-1164 *4)))) (-5 *1 (-1205 *4)) (-5 *3 (-1164 (-1164 *4))))))
-(-10 -7 (-15 -2008 ((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)))) (-15 -1696 ((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)))) (-15 -3283 ((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)) (-562))))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 9) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
+((-2274 (((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)) (-562)) 80)) (-3645 (((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|))) 74)) (-3650 (((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|))) 59)))
+(((-1205 |#1|) (-10 -7 (-15 -3645 ((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)))) (-15 -3650 ((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)))) (-15 -2274 ((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)) (-562)))) (-348)) (T -1205))
+((-2274 (*1 *2 *3 *4) (-12 (-5 *4 (-562)) (-4 *5 (-348)) (-5 *2 (-417 (-1164 (-1164 *5)))) (-5 *1 (-1205 *5)) (-5 *3 (-1164 (-1164 *5))))) (-3650 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-417 (-1164 (-1164 *4)))) (-5 *1 (-1205 *4)) (-5 *3 (-1164 (-1164 *4))))) (-3645 (*1 *2 *3) (-12 (-4 *4 (-348)) (-5 *2 (-417 (-1164 (-1164 *4)))) (-5 *1 (-1205 *4)) (-5 *3 (-1164 (-1164 *4))))))
+(-10 -7 (-15 -3645 ((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)))) (-15 -3650 ((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)))) (-15 -2274 ((-417 (-1164 (-1164 |#1|))) (-1164 (-1164 |#1|)) (-562))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 9) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
(((-1206) (-1075)) (T -1206))
NIL
(-1075)
@@ -4954,329 +4954,329 @@ NIL
(((-1207) (-139)) (T -1207))
NIL
(-13 (-10 -7 (-6 -1370)))
-((-4139 (((-112)) 14)) (-1931 (((-1261) (-639 |#1|) (-639 |#1|)) 18) (((-1261) (-639 |#1|)) 19)) (-3292 (((-112) |#1| |#1|) 31 (|has| |#1| (-845)))) (-3289 (((-112) |#1| |#1| (-1 (-112) |#1| |#1|)) 26) (((-3 (-112) "failed") |#1| |#1|) 24)) (-3623 ((|#1| (-639 |#1|)) 32 (|has| |#1| (-845))) ((|#1| (-639 |#1|) (-1 (-112) |#1| |#1|)) 27)) (-1717 (((-2 (|:| -2010 (-639 |#1|)) (|:| -3712 (-639 |#1|)))) 16)))
-(((-1208 |#1|) (-10 -7 (-15 -1931 ((-1261) (-639 |#1|))) (-15 -1931 ((-1261) (-639 |#1|) (-639 |#1|))) (-15 -1717 ((-2 (|:| -2010 (-639 |#1|)) (|:| -3712 (-639 |#1|))))) (-15 -3289 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3289 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -3623 (|#1| (-639 |#1|) (-1 (-112) |#1| |#1|))) (-15 -4139 ((-112))) (IF (|has| |#1| (-845)) (PROGN (-15 -3623 (|#1| (-639 |#1|))) (-15 -3292 ((-112) |#1| |#1|))) |%noBranch|)) (-1092)) (T -1208))
-((-3292 (*1 *2 *3 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1208 *3)) (-4 *3 (-845)) (-4 *3 (-1092)))) (-3623 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-845)) (-5 *1 (-1208 *2)))) (-4139 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1208 *3)) (-4 *3 (-1092)))) (-3623 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1208 *2)) (-4 *2 (-1092)))) (-3289 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1092)) (-5 *2 (-112)) (-5 *1 (-1208 *3)))) (-3289 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1208 *3)) (-4 *3 (-1092)))) (-1717 (*1 *2) (-12 (-5 *2 (-2 (|:| -2010 (-639 *3)) (|:| -3712 (-639 *3)))) (-5 *1 (-1208 *3)) (-4 *3 (-1092)))) (-1931 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-1092)) (-5 *2 (-1261)) (-5 *1 (-1208 *4)))) (-1931 (*1 *2 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-1092)) (-5 *2 (-1261)) (-5 *1 (-1208 *4)))))
-(-10 -7 (-15 -1931 ((-1261) (-639 |#1|))) (-15 -1931 ((-1261) (-639 |#1|) (-639 |#1|))) (-15 -1717 ((-2 (|:| -2010 (-639 |#1|)) (|:| -3712 (-639 |#1|))))) (-15 -3289 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3289 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -3623 (|#1| (-639 |#1|) (-1 (-112) |#1| |#1|))) (-15 -4139 ((-112))) (IF (|has| |#1| (-845)) (PROGN (-15 -3623 (|#1| (-639 |#1|))) (-15 -3292 ((-112) |#1| |#1|))) |%noBranch|))
-((-1841 (((-1261) (-639 (-1168)) (-639 (-1168))) 13) (((-1261) (-639 (-1168))) 11)) (-3053 (((-1261)) 14)) (-1500 (((-2 (|:| -3712 (-639 (-1168))) (|:| -2010 (-639 (-1168))))) 18)))
-(((-1209) (-10 -7 (-15 -1841 ((-1261) (-639 (-1168)))) (-15 -1841 ((-1261) (-639 (-1168)) (-639 (-1168)))) (-15 -1500 ((-2 (|:| -3712 (-639 (-1168))) (|:| -2010 (-639 (-1168)))))) (-15 -3053 ((-1261))))) (T -1209))
-((-3053 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1209)))) (-1500 (*1 *2) (-12 (-5 *2 (-2 (|:| -3712 (-639 (-1168))) (|:| -2010 (-639 (-1168))))) (-5 *1 (-1209)))) (-1841 (*1 *2 *3 *3) (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1261)) (-5 *1 (-1209)))) (-1841 (*1 *2 *3) (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1261)) (-5 *1 (-1209)))))
-(-10 -7 (-15 -1841 ((-1261) (-639 (-1168)))) (-15 -1841 ((-1261) (-639 (-1168)) (-639 (-1168)))) (-15 -1500 ((-2 (|:| -3712 (-639 (-1168))) (|:| -2010 (-639 (-1168)))))) (-15 -3053 ((-1261))))
-((-2798 (($ $) 17)) (-2717 (((-112) $) 24)))
-(((-1210 |#1|) (-10 -8 (-15 -2798 (|#1| |#1|)) (-15 -2717 ((-112) |#1|))) (-1211)) (T -1210))
-NIL
-(-10 -8 (-15 -2798 (|#1| |#1|)) (-15 -2717 ((-112) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 52)) (-2921 (((-417 $) $) 53)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-2717 (((-112) $) 54)) (-1957 (((-112) $) 31)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1635 (((-417 $) $) 51)) (-1762 (((-3 $ "failed") $ $) 43)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
+((-2566 (((-112)) 14)) (-4121 (((-1261) (-639 |#1|) (-639 |#1|)) 18) (((-1261) (-639 |#1|)) 19)) (-4172 (((-112) |#1| |#1|) 31 (|has| |#1| (-845)))) (-4147 (((-112) |#1| |#1| (-1 (-112) |#1| |#1|)) 26) (((-3 (-112) "failed") |#1| |#1|) 24)) (-4295 ((|#1| (-639 |#1|)) 32 (|has| |#1| (-845))) ((|#1| (-639 |#1|) (-1 (-112) |#1| |#1|)) 27)) (-3842 (((-2 (|:| -3665 (-639 |#1|)) (|:| -3979 (-639 |#1|)))) 16)))
+(((-1208 |#1|) (-10 -7 (-15 -4121 ((-1261) (-639 |#1|))) (-15 -4121 ((-1261) (-639 |#1|) (-639 |#1|))) (-15 -3842 ((-2 (|:| -3665 (-639 |#1|)) (|:| -3979 (-639 |#1|))))) (-15 -4147 ((-3 (-112) "failed") |#1| |#1|)) (-15 -4147 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -4295 (|#1| (-639 |#1|) (-1 (-112) |#1| |#1|))) (-15 -2566 ((-112))) (IF (|has| |#1| (-845)) (PROGN (-15 -4295 (|#1| (-639 |#1|))) (-15 -4172 ((-112) |#1| |#1|))) |%noBranch|)) (-1092)) (T -1208))
+((-4172 (*1 *2 *3 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1208 *3)) (-4 *3 (-845)) (-4 *3 (-1092)))) (-4295 (*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-845)) (-5 *1 (-1208 *2)))) (-2566 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1208 *3)) (-4 *3 (-1092)))) (-4295 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1208 *2)) (-4 *2 (-1092)))) (-4147 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1092)) (-5 *2 (-112)) (-5 *1 (-1208 *3)))) (-4147 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1208 *3)) (-4 *3 (-1092)))) (-3842 (*1 *2) (-12 (-5 *2 (-2 (|:| -3665 (-639 *3)) (|:| -3979 (-639 *3)))) (-5 *1 (-1208 *3)) (-4 *3 (-1092)))) (-4121 (*1 *2 *3 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-1092)) (-5 *2 (-1261)) (-5 *1 (-1208 *4)))) (-4121 (*1 *2 *3) (-12 (-5 *3 (-639 *4)) (-4 *4 (-1092)) (-5 *2 (-1261)) (-5 *1 (-1208 *4)))))
+(-10 -7 (-15 -4121 ((-1261) (-639 |#1|))) (-15 -4121 ((-1261) (-639 |#1|) (-639 |#1|))) (-15 -3842 ((-2 (|:| -3665 (-639 |#1|)) (|:| -3979 (-639 |#1|))))) (-15 -4147 ((-3 (-112) "failed") |#1| |#1|)) (-15 -4147 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -4295 (|#1| (-639 |#1|) (-1 (-112) |#1| |#1|))) (-15 -2566 ((-112))) (IF (|has| |#1| (-845)) (PROGN (-15 -4295 (|#1| (-639 |#1|))) (-15 -4172 ((-112) |#1| |#1|))) |%noBranch|))
+((-2583 (((-1261) (-639 (-1168)) (-639 (-1168))) 13) (((-1261) (-639 (-1168))) 11)) (-3666 (((-1261)) 14)) (-2588 (((-2 (|:| -3979 (-639 (-1168))) (|:| -3665 (-639 (-1168))))) 18)))
+(((-1209) (-10 -7 (-15 -2583 ((-1261) (-639 (-1168)))) (-15 -2583 ((-1261) (-639 (-1168)) (-639 (-1168)))) (-15 -2588 ((-2 (|:| -3979 (-639 (-1168))) (|:| -3665 (-639 (-1168)))))) (-15 -3666 ((-1261))))) (T -1209))
+((-3666 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1209)))) (-2588 (*1 *2) (-12 (-5 *2 (-2 (|:| -3979 (-639 (-1168))) (|:| -3665 (-639 (-1168))))) (-5 *1 (-1209)))) (-2583 (*1 *2 *3 *3) (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1261)) (-5 *1 (-1209)))) (-2583 (*1 *2 *3) (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1261)) (-5 *1 (-1209)))))
+(-10 -7 (-15 -2583 ((-1261) (-639 (-1168)))) (-15 -2583 ((-1261) (-639 (-1168)) (-639 (-1168)))) (-15 -2588 ((-2 (|:| -3979 (-639 (-1168))) (|:| -3665 (-639 (-1168)))))) (-15 -3666 ((-1261))))
+((-1977 (($ $) 17)) (-3521 (((-112) $) 24)))
+(((-1210 |#1|) (-10 -8 (-15 -1977 (|#1| |#1|)) (-15 -3521 ((-112) |#1|))) (-1211)) (T -1210))
+NIL
+(-10 -8 (-15 -1977 (|#1| |#1|)) (-15 -3521 ((-112) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 52)) (-3788 (((-417 $) $) 53)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-3521 (((-112) $) 54)) (-4367 (((-112) $) 31)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1635 (((-417 $) $) 51)) (-1762 (((-3 $ "failed") $ $) 43)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44)) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24)))
(((-1211) (-139)) (T -1211))
-((-2717 (*1 *2 *1) (-12 (-4 *1 (-1211)) (-5 *2 (-112)))) (-2921 (*1 *2 *1) (-12 (-5 *2 (-417 *1)) (-4 *1 (-1211)))) (-2798 (*1 *1 *1) (-4 *1 (-1211))) (-1635 (*1 *2 *1) (-12 (-5 *2 (-417 *1)) (-4 *1 (-1211)))))
-(-13 (-451) (-10 -8 (-15 -2717 ((-112) $)) (-15 -2921 ((-417 $) $)) (-15 -2798 ($ $)) (-15 -1635 ((-417 $) $))))
+((-3521 (*1 *2 *1) (-12 (-4 *1 (-1211)) (-5 *2 (-112)))) (-3788 (*1 *2 *1) (-12 (-5 *2 (-417 *1)) (-4 *1 (-1211)))) (-1977 (*1 *1 *1) (-4 *1 (-1211))) (-1635 (*1 *2 *1) (-12 (-5 *2 (-417 *1)) (-4 *1 (-1211)))))
+(-13 (-451) (-10 -8 (-15 -3521 ((-112) $)) (-15 -3788 ((-417 $) $)) (-15 -1977 ($ $)) (-15 -1635 ((-417 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-289) . T) ((-451) . T) ((-554) . T) ((-642 $) . T) ((-712 $) . T) ((-721) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1800 (($) NIL)) (-1448 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-1999 (((-916) $) NIL)) (-2913 (((-1150) $) NIL)) (-2466 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-3010 (($ $ $) NIL)) (-2998 (($ $ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)))
-(((-1212) (-13 (-839) (-10 -8 (-15 -2998 ($ $ $)) (-15 -3010 ($ $ $)) (-15 -1800 ($))))) (T -1212))
-((-2998 (*1 *1 *1 *1) (-5 *1 (-1212))) (-3010 (*1 *1 *1 *1) (-5 *1 (-1212))) (-1800 (*1 *1) (-5 *1 (-1212))))
-(-13 (-839) (-10 -8 (-15 -2998 ($ $ $)) (-15 -3010 ($ $ $)) (-15 -1800 ($))))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-3329 (($) NIL)) (-1447 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-3549 (((-916) $) NIL)) (-3696 (((-1150) $) NIL)) (-2464 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-3009 (($ $ $) NIL)) (-2997 (($ $ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)))
+(((-1212) (-13 (-839) (-10 -8 (-15 -2997 ($ $ $)) (-15 -3009 ($ $ $)) (-15 -3329 ($))))) (T -1212))
+((-2997 (*1 *1 *1 *1) (-5 *1 (-1212))) (-3009 (*1 *1 *1 *1) (-5 *1 (-1212))) (-3329 (*1 *1) (-5 *1 (-1212))))
+(-13 (-839) (-10 -8 (-15 -2997 ($ $ $)) (-15 -3009 ($ $ $)) (-15 -3329 ($))))
((|NonNegativeInteger|) (COND ((< 16 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1800 (($) NIL)) (-1448 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-1999 (((-916) $) NIL)) (-2913 (((-1150) $) NIL)) (-2466 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-3010 (($ $ $) NIL)) (-2998 (($ $ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)))
-(((-1213) (-13 (-839) (-10 -8 (-15 -2998 ($ $ $)) (-15 -3010 ($ $ $)) (-15 -1800 ($))))) (T -1213))
-((-2998 (*1 *1 *1 *1) (-5 *1 (-1213))) (-3010 (*1 *1 *1 *1) (-5 *1 (-1213))) (-1800 (*1 *1) (-5 *1 (-1213))))
-(-13 (-839) (-10 -8 (-15 -2998 ($ $ $)) (-15 -3010 ($ $ $)) (-15 -1800 ($))))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-3329 (($) NIL)) (-1447 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-3549 (((-916) $) NIL)) (-3696 (((-1150) $) NIL)) (-2464 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-3009 (($ $ $) NIL)) (-2997 (($ $ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)))
+(((-1213) (-13 (-839) (-10 -8 (-15 -2997 ($ $ $)) (-15 -3009 ($ $ $)) (-15 -3329 ($))))) (T -1213))
+((-2997 (*1 *1 *1 *1) (-5 *1 (-1213))) (-3009 (*1 *1 *1 *1) (-5 *1 (-1213))) (-3329 (*1 *1) (-5 *1 (-1213))))
+(-13 (-839) (-10 -8 (-15 -2997 ($ $ $)) (-15 -3009 ($ $ $)) (-15 -3329 ($))))
((|NonNegativeInteger|) (COND ((< 32 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
-((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-1800 (($) NIL)) (-1448 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-1999 (((-916) $) NIL)) (-2913 (((-1150) $) NIL)) (-2466 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) NIL)) (-3010 (($ $ $) NIL)) (-2998 (($ $ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1772 (((-112) $ $) NIL)) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1759 (((-112) $ $) NIL)))
-(((-1214) (-13 (-839) (-10 -8 (-15 -2998 ($ $ $)) (-15 -3010 ($ $ $)) (-15 -1800 ($))))) (T -1214))
-((-2998 (*1 *1 *1 *1) (-5 *1 (-1214))) (-3010 (*1 *1 *1 *1) (-5 *1 (-1214))) (-1800 (*1 *1) (-5 *1 (-1214))))
-(-13 (-839) (-10 -8 (-15 -2998 ($ $ $)) (-15 -3010 ($ $ $)) (-15 -1800 ($))))
+((-4041 (((-112) $ $) NIL)) (-1382 (((-766)) NIL)) (-3329 (($) NIL)) (-1447 (($) NIL)) (-1551 (($ $ $) NIL) (($) NIL T CONST)) (-2993 (($ $ $) NIL) (($) NIL T CONST)) (-3549 (((-916) $) NIL)) (-3696 (((-1150) $) NIL)) (-2464 (($ (-916)) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) NIL)) (-3009 (($ $ $) NIL)) (-2997 (($ $ $) NIL)) (-1798 (((-112) $ $) NIL)) (-1771 (((-112) $ $) NIL)) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL)) (-1761 (((-112) $ $) NIL)))
+(((-1214) (-13 (-839) (-10 -8 (-15 -2997 ($ $ $)) (-15 -3009 ($ $ $)) (-15 -3329 ($))))) (T -1214))
+((-2997 (*1 *1 *1 *1) (-5 *1 (-1214))) (-3009 (*1 *1 *1 *1) (-5 *1 (-1214))) (-3329 (*1 *1) (-5 *1 (-1214))))
+(-13 (-839) (-10 -8 (-15 -2997 ($ $ $)) (-15 -3009 ($ $ $)) (-15 -3329 ($))))
((|NonNegativeInteger|) (COND ((< 8 (INTEGER-LENGTH |#1|)) (QUOTE NIL)) ((QUOTE T) (QUOTE T))))
((-4152 (((-1220 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1220 |#1| |#3| |#5|)) 23)))
(((-1215 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -4152 ((-1220 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1220 |#1| |#3| |#5|)))) (-1044) (-1044) (-1168) (-1168) |#1| |#2|) (T -1215))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1220 *5 *7 *9)) (-4 *5 (-1044)) (-4 *6 (-1044)) (-14 *7 (-1168)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1220 *6 *8 *10)) (-5 *1 (-1215 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1168)))))
(-10 -7 (-15 -4152 ((-1220 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1220 |#1| |#3| |#5|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1402 (((-639 (-1074)) $) 77)) (-2444 (((-1168) $) 106)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-2796 (($ $) 55 (|has| |#1| (-554)))) (-4370 (((-112) $) 57 (|has| |#1| (-554)))) (-2557 (($ $ (-562)) 101) (($ $ (-562) (-562)) 100)) (-1938 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) 108)) (-2988 (($ $) 138 (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) 121 (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 165 (|has| |#1| (-362)))) (-2921 (((-417 $) $) 166 (|has| |#1| (-362)))) (-1643 (($ $) 120 (|has| |#1| (-38 (-406 (-562)))))) (-2569 (((-112) $ $) 156 (|has| |#1| (-362)))) (-4207 (($ $) 137 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 122 (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) 176)) (-3014 (($ $) 136 (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) 123 (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) 17 T CONST)) (-1811 (($ $ $) 160 (|has| |#1| (-362)))) (-1601 (($ $) 63)) (-3668 (((-3 $ "failed") $) 33)) (-1493 (((-406 (-947 |#1|)) $ (-562)) 174 (|has| |#1| (-554))) (((-406 (-947 |#1|)) $ (-562) (-562)) 173 (|has| |#1| (-554)))) (-1787 (($ $ $) 159 (|has| |#1| (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 154 (|has| |#1| (-362)))) (-2717 (((-112) $) 167 (|has| |#1| (-362)))) (-1756 (((-112) $) 76)) (-4100 (($) 148 (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-562) $) 103) (((-562) $ (-562)) 102)) (-1957 (((-112) $) 31)) (-1891 (($ $ (-562)) 119 (|has| |#1| (-38 (-406 (-562)))))) (-3374 (($ $ (-916)) 104)) (-4222 (($ (-1 |#1| (-562)) $) 175)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 163 (|has| |#1| (-362)))) (-3536 (((-112) $) 65)) (-1378 (($ |#1| (-562)) 64) (($ $ (-1074) (-562)) 79) (($ $ (-639 (-1074)) (-639 (-562))) 78)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-4365 (($ $) 145 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-1564 (($ (-639 $)) 152 (|has| |#1| (-362))) (($ $ $) 151 (|has| |#1| (-362)))) (-2913 (((-1150) $) 9)) (-1525 (($ $) 168 (|has| |#1| (-362)))) (-2667 (($ $) 172 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 171 (-4037 (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-954)) (|has| |#1| (-1192)) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-38 (-406 (-562)))))))) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 153 (|has| |#1| (-362)))) (-1606 (($ (-639 $)) 150 (|has| |#1| (-362))) (($ $ $) 149 (|has| |#1| (-362)))) (-1635 (((-417 $) $) 164 (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 161 (|has| |#1| (-362)))) (-1353 (($ $ (-562)) 98)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 155 (|has| |#1| (-362)))) (-3430 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-562)))))) (-1577 (((-766) $) 157 (|has| |#1| (-362)))) (-2343 ((|#1| $ (-562)) 107) (($ $ $) 84 (|has| (-562) (-1104)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 158 (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) 92 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-1168) (-766)) 91 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168))) 90 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-1168)) 89 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-766)) 87 (|has| |#1| (-15 * (|#1| (-562) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (-3598 (((-562) $) 67)) (-3023 (($ $) 135 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 124 (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) 134 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 125 (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) 133 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 126 (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) 75)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 50 (|has| |#1| (-171))) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554)))) (-3906 ((|#1| $ (-562)) 62)) (-2805 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-2579 (((-766)) 28)) (-2328 ((|#1| $) 105)) (-3055 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) 56 (|has| |#1| (-554)))) (-3033 (($ $) 143 (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) 131 (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-562)) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-562)))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) 141 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 129 (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) 128 (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) 139 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 127 (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) 96 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-1168) (-766)) 95 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168))) 94 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-1168)) 93 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-766)) 88 (|has| |#1| (-15 * (|#1| (-562) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362))) (($ $ $) 170 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 169 (|has| |#1| (-362))) (($ $ $) 147 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 118 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-1401 (((-639 (-1074)) $) 77)) (-2443 (((-1168) $) 106)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-1965 (($ $) 55 (|has| |#1| (-554)))) (-4102 (((-112) $) 57 (|has| |#1| (-554)))) (-1302 (($ $ (-562)) 101) (($ $ (-562) (-562)) 100)) (-4196 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) 108)) (-2987 (($ $) 138 (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) 121 (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 165 (|has| |#1| (-362)))) (-3788 (((-417 $) $) 166 (|has| |#1| (-362)))) (-1644 (($ $) 120 (|has| |#1| (-38 (-406 (-562)))))) (-1436 (((-112) $ $) 156 (|has| |#1| (-362)))) (-4206 (($ $) 137 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 122 (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) 176)) (-3013 (($ $) 136 (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) 123 (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) 17 T CONST)) (-1810 (($ $ $) 160 (|has| |#1| (-362)))) (-1600 (($ $) 63)) (-1694 (((-3 $ "failed") $) 33)) (-2547 (((-406 (-947 |#1|)) $ (-562)) 174 (|has| |#1| (-554))) (((-406 (-947 |#1|)) $ (-562) (-562)) 173 (|has| |#1| (-554)))) (-1787 (($ $ $) 159 (|has| |#1| (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 154 (|has| |#1| (-362)))) (-3521 (((-112) $) 167 (|has| |#1| (-362)))) (-2965 (((-112) $) 76)) (-4100 (($) 148 (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-562) $) 103) (((-562) $ (-562)) 102)) (-4367 (((-112) $) 31)) (-1895 (($ $ (-562)) 119 (|has| |#1| (-38 (-406 (-562)))))) (-3662 (($ $ (-916)) 104)) (-2064 (($ (-1 |#1| (-562)) $) 175)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 163 (|has| |#1| (-362)))) (-2833 (((-112) $) 65)) (-1377 (($ |#1| (-562)) 64) (($ $ (-1074) (-562)) 79) (($ $ (-639 (-1074)) (-639 (-562))) 78)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-4366 (($ $) 145 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-1564 (($ (-639 $)) 152 (|has| |#1| (-362))) (($ $ $) 151 (|has| |#1| (-362)))) (-3696 (((-1150) $) 9)) (-1525 (($ $) 168 (|has| |#1| (-362)))) (-3081 (($ $) 172 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 171 (-4037 (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-954)) (|has| |#1| (-1192)) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-38 (-406 (-562)))))))) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 153 (|has| |#1| (-362)))) (-1606 (($ (-639 $)) 150 (|has| |#1| (-362))) (($ $ $) 149 (|has| |#1| (-362)))) (-1635 (((-417 $) $) 164 (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 161 (|has| |#1| (-362)))) (-4316 (($ $ (-562)) 98)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 155 (|has| |#1| (-362)))) (-3430 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-562)))))) (-2044 (((-766) $) 157 (|has| |#1| (-362)))) (-2343 ((|#1| $ (-562)) 107) (($ $ $) 84 (|has| (-562) (-1104)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 158 (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) 92 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-1168) (-766)) 91 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168))) 90 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-1168)) 89 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-766)) 87 (|has| |#1| (-15 * (|#1| (-562) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (-2250 (((-562) $) 67)) (-3022 (($ $) 135 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 124 (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) 134 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 125 (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) 133 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 126 (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) 75)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 50 (|has| |#1| (-171))) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554)))) (-2266 ((|#1| $ (-562)) 62)) (-2059 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-1568 (((-766)) 28)) (-2328 ((|#1| $) 105)) (-3054 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) 56 (|has| |#1| (-554)))) (-3033 (($ $) 143 (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) 131 (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-562)) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-562)))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) 141 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 129 (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) 128 (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) 139 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 127 (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) 96 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-1168) (-766)) 95 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168))) 94 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-1168)) 93 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-766)) 88 (|has| |#1| (-15 * (|#1| (-562) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362))) (($ $ $) 170 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 169 (|has| |#1| (-362))) (($ $ $) 147 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 118 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
(((-1216 |#1|) (-139) (-1044)) (T -1216))
-((-1503 (*1 *1 *2) (-12 (-5 *2 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *3)))) (-4 *3 (-1044)) (-4 *1 (-1216 *3)))) (-4222 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-562))) (-4 *1 (-1216 *3)) (-4 *3 (-1044)))) (-1493 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-1216 *4)) (-4 *4 (-1044)) (-4 *4 (-554)) (-5 *2 (-406 (-947 *4))))) (-1493 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-4 *1 (-1216 *4)) (-4 *4 (-1044)) (-4 *4 (-554)) (-5 *2 (-406 (-947 *4))))) (-2667 (*1 *1 *1) (-12 (-4 *1 (-1216 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562)))))) (-2667 (*1 *1 *1 *2) (-4037 (-12 (-5 *2 (-1168)) (-4 *1 (-1216 *3)) (-4 *3 (-1044)) (-12 (-4 *3 (-29 (-562))) (-4 *3 (-954)) (-4 *3 (-1192)) (-4 *3 (-38 (-406 (-562)))))) (-12 (-5 *2 (-1168)) (-4 *1 (-1216 *3)) (-4 *3 (-1044)) (-12 (|has| *3 (-15 -1402 ((-639 *2) *3))) (|has| *3 (-15 -2667 (*3 *3 *2))) (-4 *3 (-38 (-406 (-562)))))))))
-(-13 (-1234 |t#1| (-562)) (-10 -8 (-15 -1503 ($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |t#1|))))) (-15 -4222 ($ (-1 |t#1| (-562)) $)) (IF (|has| |t#1| (-554)) (PROGN (-15 -1493 ((-406 (-947 |t#1|)) $ (-562))) (-15 -1493 ((-406 (-947 |t#1|)) $ (-562) (-562)))) |%noBranch|) (IF (|has| |t#1| (-38 (-406 (-562)))) (PROGN (-15 -2667 ($ $)) (IF (|has| |t#1| (-15 -2667 (|t#1| |t#1| (-1168)))) (IF (|has| |t#1| (-15 -1402 ((-639 (-1168)) |t#1|))) (-15 -2667 ($ $ (-1168))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1192)) (IF (|has| |t#1| (-954)) (IF (|has| |t#1| (-29 (-562))) (-15 -2667 ($ $ (-1168))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-997)) (-6 (-1192))) |%noBranch|) (IF (|has| |t#1| (-362)) (-6 (-362)) |%noBranch|)))
+((-1503 (*1 *1 *2) (-12 (-5 *2 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *3)))) (-4 *3 (-1044)) (-4 *1 (-1216 *3)))) (-2064 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-562))) (-4 *1 (-1216 *3)) (-4 *3 (-1044)))) (-2547 (*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-4 *1 (-1216 *4)) (-4 *4 (-1044)) (-4 *4 (-554)) (-5 *2 (-406 (-947 *4))))) (-2547 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-4 *1 (-1216 *4)) (-4 *4 (-1044)) (-4 *4 (-554)) (-5 *2 (-406 (-947 *4))))) (-3081 (*1 *1 *1) (-12 (-4 *1 (-1216 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562)))))) (-3081 (*1 *1 *1 *2) (-4037 (-12 (-5 *2 (-1168)) (-4 *1 (-1216 *3)) (-4 *3 (-1044)) (-12 (-4 *3 (-29 (-562))) (-4 *3 (-954)) (-4 *3 (-1192)) (-4 *3 (-38 (-406 (-562)))))) (-12 (-5 *2 (-1168)) (-4 *1 (-1216 *3)) (-4 *3 (-1044)) (-12 (|has| *3 (-15 -1401 ((-639 *2) *3))) (|has| *3 (-15 -3081 (*3 *3 *2))) (-4 *3 (-38 (-406 (-562)))))))))
+(-13 (-1234 |t#1| (-562)) (-10 -8 (-15 -1503 ($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |t#1|))))) (-15 -2064 ($ (-1 |t#1| (-562)) $)) (IF (|has| |t#1| (-554)) (PROGN (-15 -2547 ((-406 (-947 |t#1|)) $ (-562))) (-15 -2547 ((-406 (-947 |t#1|)) $ (-562) (-562)))) |%noBranch|) (IF (|has| |t#1| (-38 (-406 (-562)))) (PROGN (-15 -3081 ($ $)) (IF (|has| |t#1| (-15 -3081 (|t#1| |t#1| (-1168)))) (IF (|has| |t#1| (-15 -1401 ((-639 (-1168)) |t#1|))) (-15 -3081 ($ $ (-1168))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1192)) (IF (|has| |t#1| (-954)) (IF (|has| |t#1| (-29 (-562))) (-15 -3081 ($ $ (-1168))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-997)) (-6 (-1192))) |%noBranch|) (IF (|has| |t#1| (-362)) (-6 (-362)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-562)) . T) ((-25) . T) ((-38 #1=(-406 (-562))) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-35) |has| |#1| (-38 (-406 (-562)))) ((-95) |has| |#1| (-38 (-406 (-562)))) ((-102) . T) ((-111 #1# #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-612 (-562)) . T) ((-612 |#1|) |has| |#1| (-171)) ((-612 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-554)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-232) |has| |#1| (-15 * (|#1| (-562) |#1|))) ((-242) |has| |#1| (-362)) ((-283) |has| |#1| (-38 (-406 (-562)))) ((-285 $ $) |has| (-562) (-1104)) ((-289) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-306) |has| |#1| (-362)) ((-362) |has| |#1| (-362)) ((-451) |has| |#1| (-362)) ((-492) |has| |#1| (-38 (-406 (-562)))) ((-554) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-642 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-642 |#1|) . T) ((-642 $) . T) ((-712 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-721) . T) ((-895 (-1168)) -12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))) ((-968 |#1| #0# (-1074)) . T) ((-915) |has| |#1| (-362)) ((-997) |has| |#1| (-38 (-406 (-562)))) ((-1050 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1192) |has| |#1| (-38 (-406 (-562)))) ((-1195) |has| |#1| (-38 (-406 (-562)))) ((-1211) |has| |#1| (-362)) ((-1234 |#1| #0#) . T))
-((-1952 (((-112) $) 12)) (-4048 (((-3 |#3| "failed") $) 17) (((-3 (-1168) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 (-562) "failed") $) NIL)) (-3961 ((|#3| $) 14) (((-1168) $) NIL) (((-406 (-562)) $) NIL) (((-562) $) NIL)))
-(((-1217 |#1| |#2| |#3|) (-10 -8 (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-1168) "failed") |#1|)) (-15 -3961 ((-1168) |#1|)) (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -3961 (|#3| |#1|)) (-15 -1952 ((-112) |#1|))) (-1218 |#2| |#3|) (-1044) (-1247 |#2|)) (T -1217))
+((-4325 (((-112) $) 12)) (-4048 (((-3 |#3| "failed") $) 17) (((-3 (-1168) "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 (-562) "failed") $) NIL)) (-3960 ((|#3| $) 14) (((-1168) $) NIL) (((-406 (-562)) $) NIL) (((-562) $) NIL)))
+(((-1217 |#1| |#2| |#3|) (-10 -8 (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-1168) "failed") |#1|)) (-15 -3960 ((-1168) |#1|)) (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -3960 (|#3| |#1|)) (-15 -4325 ((-112) |#1|))) (-1218 |#2| |#3|) (-1044) (-1247 |#2|)) (T -1217))
NIL
-(-10 -8 (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-1168) "failed") |#1|)) (-15 -3961 ((-1168) |#1|)) (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -3961 (|#3| |#1|)) (-15 -1952 ((-112) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-4246 ((|#2| $) 231 (-2246 (|has| |#2| (-306)) (|has| |#1| (-362))))) (-1402 (((-639 (-1074)) $) 77)) (-2444 (((-1168) $) 106)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-2796 (($ $) 55 (|has| |#1| (-554)))) (-4370 (((-112) $) 57 (|has| |#1| (-554)))) (-2557 (($ $ (-562)) 101) (($ $ (-562) (-562)) 100)) (-1938 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) 108)) (-4226 ((|#2| $) 267)) (-3006 (((-3 |#2| "failed") $) 263)) (-1469 ((|#2| $) 264)) (-2988 (($ $) 138 (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) 121 (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) 19)) (-3026 (((-417 (-1164 $)) (-1164 $)) 240 (-2246 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-2798 (($ $) 165 (|has| |#1| (-362)))) (-2921 (((-417 $) $) 166 (|has| |#1| (-362)))) (-1643 (($ $) 120 (|has| |#1| (-38 (-406 (-562)))))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 237 (-2246 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-2569 (((-112) $ $) 156 (|has| |#1| (-362)))) (-4207 (($ $) 137 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 122 (|has| |#1| (-38 (-406 (-562)))))) (-2277 (((-562) $) 249 (-2246 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-1503 (($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) 176)) (-3014 (($ $) 136 (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) 123 (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) 17 T CONST)) (-4048 (((-3 |#2| "failed") $) 270) (((-3 (-562) "failed") $) 260 (-2246 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-3 (-406 (-562)) "failed") $) 258 (-2246 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-3 (-1168) "failed") $) 242 (-2246 (|has| |#2| (-1033 (-1168))) (|has| |#1| (-362))))) (-3961 ((|#2| $) 271) (((-562) $) 259 (-2246 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-406 (-562)) $) 257 (-2246 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-1168) $) 241 (-2246 (|has| |#2| (-1033 (-1168))) (|has| |#1| (-362))))) (-2724 (($ $) 266) (($ (-562) $) 265)) (-1811 (($ $ $) 160 (|has| |#1| (-362)))) (-1601 (($ $) 63)) (-2406 (((-683 |#2|) (-683 $)) 221 (|has| |#1| (-362))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) 220 (|has| |#1| (-362))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 219 (-2246 (|has| |#2| (-635 (-562))) (|has| |#1| (-362)))) (((-683 (-562)) (-683 $)) 218 (-2246 (|has| |#2| (-635 (-562))) (|has| |#1| (-362))))) (-3668 (((-3 $ "failed") $) 33)) (-1493 (((-406 (-947 |#1|)) $ (-562)) 174 (|has| |#1| (-554))) (((-406 (-947 |#1|)) $ (-562) (-562)) 173 (|has| |#1| (-554)))) (-1448 (($) 233 (-2246 (|has| |#2| (-544)) (|has| |#1| (-362))))) (-1787 (($ $ $) 159 (|has| |#1| (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 154 (|has| |#1| (-362)))) (-2717 (((-112) $) 167 (|has| |#1| (-362)))) (-3519 (((-112) $) 247 (-2246 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-1756 (((-112) $) 76)) (-4100 (($) 148 (|has| |#1| (-38 (-406 (-562)))))) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 225 (-2246 (|has| |#2| (-881 (-378))) (|has| |#1| (-362)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 224 (-2246 (|has| |#2| (-881 (-562))) (|has| |#1| (-362))))) (-1900 (((-562) $) 103) (((-562) $ (-562)) 102)) (-1957 (((-112) $) 31)) (-3425 (($ $) 229 (|has| |#1| (-362)))) (-4065 ((|#2| $) 227 (|has| |#1| (-362)))) (-1891 (($ $ (-562)) 119 (|has| |#1| (-38 (-406 (-562)))))) (-3699 (((-3 $ "failed") $) 261 (-2246 (|has| |#2| (-1143)) (|has| |#1| (-362))))) (-3392 (((-112) $) 248 (-2246 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-3374 (($ $ (-916)) 104)) (-4222 (($ (-1 |#1| (-562)) $) 175)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 163 (|has| |#1| (-362)))) (-3536 (((-112) $) 65)) (-1378 (($ |#1| (-562)) 64) (($ $ (-1074) (-562)) 79) (($ $ (-639 (-1074)) (-639 (-562))) 78)) (-1551 (($ $ $) 251 (-2246 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-2993 (($ $ $) 252 (-2246 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-4152 (($ (-1 |#1| |#1|) $) 66) (($ (-1 |#2| |#2|) $) 213 (|has| |#1| (-362)))) (-4365 (($ $) 145 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-1564 (($ (-639 $)) 152 (|has| |#1| (-362))) (($ $ $) 151 (|has| |#1| (-362)))) (-1485 (($ (-562) |#2|) 268)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 168 (|has| |#1| (-362)))) (-2667 (($ $) 172 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 171 (-4037 (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-954)) (|has| |#1| (-1192)) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-38 (-406 (-562)))))))) (-3729 (($) 262 (-2246 (|has| |#2| (-1143)) (|has| |#1| (-362))) CONST)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 153 (|has| |#1| (-362)))) (-1606 (($ (-639 $)) 150 (|has| |#1| (-362))) (($ $ $) 149 (|has| |#1| (-362)))) (-2736 (($ $) 232 (-2246 (|has| |#2| (-306)) (|has| |#1| (-362))))) (-4014 ((|#2| $) 235 (-2246 (|has| |#2| (-544)) (|has| |#1| (-362))))) (-3986 (((-417 (-1164 $)) (-1164 $)) 238 (-2246 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-3480 (((-417 (-1164 $)) (-1164 $)) 239 (-2246 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-1635 (((-417 $) $) 164 (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 161 (|has| |#1| (-362)))) (-1353 (($ $ (-562)) 98)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 155 (|has| |#1| (-362)))) (-3430 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-562))))) (($ $ (-1168) |#2|) 212 (-2246 (|has| |#2| (-513 (-1168) |#2|)) (|has| |#1| (-362)))) (($ $ (-639 (-1168)) (-639 |#2|)) 211 (-2246 (|has| |#2| (-513 (-1168) |#2|)) (|has| |#1| (-362)))) (($ $ (-639 (-293 |#2|))) 210 (-2246 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362)))) (($ $ (-293 |#2|)) 209 (-2246 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362)))) (($ $ |#2| |#2|) 208 (-2246 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362)))) (($ $ (-639 |#2|) (-639 |#2|)) 207 (-2246 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362))))) (-1577 (((-766) $) 157 (|has| |#1| (-362)))) (-2343 ((|#1| $ (-562)) 107) (($ $ $) 84 (|has| (-562) (-1104))) (($ $ |#2|) 206 (-2246 (|has| |#2| (-285 |#2| |#2|)) (|has| |#1| (-362))))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 158 (|has| |#1| (-362)))) (-4029 (($ $ (-1 |#2| |#2|)) 217 (|has| |#1| (-362))) (($ $ (-1 |#2| |#2|) (-766)) 216 (|has| |#1| (-362))) (($ $ (-766)) 87 (-4037 (-2246 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) 85 (-4037 (-2246 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) 92 (-4037 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))))) (($ $ (-1168) (-766)) 91 (-4037 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))))) (($ $ (-639 (-1168))) 90 (-4037 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))))) (($ $ (-1168)) 89 (-4037 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))))) (-3658 (($ $) 230 (|has| |#1| (-362)))) (-4076 ((|#2| $) 228 (|has| |#1| (-362)))) (-3598 (((-562) $) 67)) (-3023 (($ $) 135 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 124 (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) 134 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 125 (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) 133 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 126 (|has| |#1| (-38 (-406 (-562)))))) (-4208 (((-224) $) 246 (-2246 (|has| |#2| (-1017)) (|has| |#1| (-362)))) (((-378) $) 245 (-2246 (|has| |#2| (-1017)) (|has| |#1| (-362)))) (((-535) $) 244 (-2246 (|has| |#2| (-610 (-535))) (|has| |#1| (-362)))) (((-887 (-378)) $) 223 (-2246 (|has| |#2| (-610 (-887 (-378)))) (|has| |#1| (-362)))) (((-887 (-562)) $) 222 (-2246 (|has| |#2| (-610 (-887 (-562)))) (|has| |#1| (-362))))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 236 (-2246 (-2246 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#1| (-362))))) (-2256 (($ $) 75)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 50 (|has| |#1| (-171))) (($ |#2|) 269) (($ (-1168)) 243 (-2246 (|has| |#2| (-1033 (-1168))) (|has| |#1| (-362)))) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554)))) (-3906 ((|#1| $ (-562)) 62)) (-2805 (((-3 $ "failed") $) 51 (-4037 (-2246 (-4037 (|has| |#2| (-144)) (-2246 (|has| $ (-144)) (|has| |#2| (-904)))) (|has| |#1| (-362))) (|has| |#1| (-144))))) (-2579 (((-766)) 28)) (-2328 ((|#1| $) 105)) (-2604 ((|#2| $) 234 (-2246 (|has| |#2| (-544)) (|has| |#1| (-362))))) (-3055 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) 56 (|has| |#1| (-554)))) (-3033 (($ $) 143 (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) 131 (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-562)) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-562)))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) 141 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 129 (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) 128 (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) 139 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 127 (|has| |#1| (-38 (-406 (-562)))))) (-3526 (($ $) 250 (-2246 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-1 |#2| |#2|)) 215 (|has| |#1| (-362))) (($ $ (-1 |#2| |#2|) (-766)) 214 (|has| |#1| (-362))) (($ $ (-766)) 88 (-4037 (-2246 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) 86 (-4037 (-2246 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) 96 (-4037 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))))) (($ $ (-1168) (-766)) 95 (-4037 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))))) (($ $ (-639 (-1168))) 94 (-4037 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))))) (($ $ (-1168)) 93 (-4037 (-2246 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))))) (-1798 (((-112) $ $) 254 (-2246 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1772 (((-112) $ $) 255 (-2246 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 253 (-2246 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1759 (((-112) $ $) 256 (-2246 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362))) (($ $ $) 170 (|has| |#1| (-362))) (($ |#2| |#2|) 226 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 169 (|has| |#1| (-362))) (($ $ $) 147 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 118 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ $ |#2|) 205 (|has| |#1| (-362))) (($ |#2| $) 204 (|has| |#1| (-362))) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
+(-10 -8 (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -4048 ((-3 (-1168) "failed") |#1|)) (-15 -3960 ((-1168) |#1|)) (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -3960 (|#3| |#1|)) (-15 -4325 ((-112) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2300 ((|#2| $) 231 (-2245 (|has| |#2| (-306)) (|has| |#1| (-362))))) (-1401 (((-639 (-1074)) $) 77)) (-2443 (((-1168) $) 106)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-1965 (($ $) 55 (|has| |#1| (-554)))) (-4102 (((-112) $) 57 (|has| |#1| (-554)))) (-1302 (($ $ (-562)) 101) (($ $ (-562) (-562)) 100)) (-4196 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) 108)) (-2108 ((|#2| $) 267)) (-3357 (((-3 |#2| "failed") $) 263)) (-1470 ((|#2| $) 264)) (-2987 (($ $) 138 (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) 121 (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) 19)) (-3517 (((-417 (-1164 $)) (-1164 $)) 240 (-2245 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-1977 (($ $) 165 (|has| |#1| (-362)))) (-3788 (((-417 $) $) 166 (|has| |#1| (-362)))) (-1644 (($ $) 120 (|has| |#1| (-38 (-406 (-562)))))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 237 (-2245 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-1436 (((-112) $ $) 156 (|has| |#1| (-362)))) (-4206 (($ $) 137 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 122 (|has| |#1| (-38 (-406 (-562)))))) (-1587 (((-562) $) 249 (-2245 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-1503 (($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) 176)) (-3013 (($ $) 136 (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) 123 (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) 17 T CONST)) (-4048 (((-3 |#2| "failed") $) 270) (((-3 (-562) "failed") $) 260 (-2245 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-3 (-406 (-562)) "failed") $) 258 (-2245 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-3 (-1168) "failed") $) 242 (-2245 (|has| |#2| (-1033 (-1168))) (|has| |#1| (-362))))) (-3960 ((|#2| $) 271) (((-562) $) 259 (-2245 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-406 (-562)) $) 257 (-2245 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-1168) $) 241 (-2245 (|has| |#2| (-1033 (-1168))) (|has| |#1| (-362))))) (-2449 (($ $) 266) (($ (-562) $) 265)) (-1810 (($ $ $) 160 (|has| |#1| (-362)))) (-1600 (($ $) 63)) (-3449 (((-683 |#2|) (-683 $)) 221 (|has| |#1| (-362))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) 220 (|has| |#1| (-362))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 219 (-2245 (|has| |#2| (-635 (-562))) (|has| |#1| (-362)))) (((-683 (-562)) (-683 $)) 218 (-2245 (|has| |#2| (-635 (-562))) (|has| |#1| (-362))))) (-1694 (((-3 $ "failed") $) 33)) (-2547 (((-406 (-947 |#1|)) $ (-562)) 174 (|has| |#1| (-554))) (((-406 (-947 |#1|)) $ (-562) (-562)) 173 (|has| |#1| (-554)))) (-1447 (($) 233 (-2245 (|has| |#2| (-544)) (|has| |#1| (-362))))) (-1787 (($ $ $) 159 (|has| |#1| (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 154 (|has| |#1| (-362)))) (-3521 (((-112) $) 167 (|has| |#1| (-362)))) (-2696 (((-112) $) 247 (-2245 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-2965 (((-112) $) 76)) (-4100 (($) 148 (|has| |#1| (-38 (-406 (-562)))))) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 225 (-2245 (|has| |#2| (-881 (-378))) (|has| |#1| (-362)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 224 (-2245 (|has| |#2| (-881 (-562))) (|has| |#1| (-362))))) (-1993 (((-562) $) 103) (((-562) $ (-562)) 102)) (-4367 (((-112) $) 31)) (-2957 (($ $) 229 (|has| |#1| (-362)))) (-4063 ((|#2| $) 227 (|has| |#1| (-362)))) (-1895 (($ $ (-562)) 119 (|has| |#1| (-38 (-406 (-562)))))) (-3828 (((-3 $ "failed") $) 261 (-2245 (|has| |#2| (-1143)) (|has| |#1| (-362))))) (-3855 (((-112) $) 248 (-2245 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-3662 (($ $ (-916)) 104)) (-2064 (($ (-1 |#1| (-562)) $) 175)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 163 (|has| |#1| (-362)))) (-2833 (((-112) $) 65)) (-1377 (($ |#1| (-562)) 64) (($ $ (-1074) (-562)) 79) (($ $ (-639 (-1074)) (-639 (-562))) 78)) (-1551 (($ $ $) 251 (-2245 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-2993 (($ $ $) 252 (-2245 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-4152 (($ (-1 |#1| |#1|) $) 66) (($ (-1 |#2| |#2|) $) 213 (|has| |#1| (-362)))) (-4366 (($ $) 145 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-1564 (($ (-639 $)) 152 (|has| |#1| (-362))) (($ $ $) 151 (|has| |#1| (-362)))) (-1487 (($ (-562) |#2|) 268)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 168 (|has| |#1| (-362)))) (-3081 (($ $) 172 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 171 (-4037 (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-954)) (|has| |#1| (-1192)) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-38 (-406 (-562)))))))) (-3730 (($) 262 (-2245 (|has| |#2| (-1143)) (|has| |#1| (-362))) CONST)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 153 (|has| |#1| (-362)))) (-1606 (($ (-639 $)) 150 (|has| |#1| (-362))) (($ $ $) 149 (|has| |#1| (-362)))) (-2561 (($ $) 232 (-2245 (|has| |#2| (-306)) (|has| |#1| (-362))))) (-3870 ((|#2| $) 235 (-2245 (|has| |#2| (-544)) (|has| |#1| (-362))))) (-3586 (((-417 (-1164 $)) (-1164 $)) 238 (-2245 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-3468 (((-417 (-1164 $)) (-1164 $)) 239 (-2245 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-1635 (((-417 $) $) 164 (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 161 (|has| |#1| (-362)))) (-4316 (($ $ (-562)) 98)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 155 (|has| |#1| (-362)))) (-3430 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-562))))) (($ $ (-1168) |#2|) 212 (-2245 (|has| |#2| (-513 (-1168) |#2|)) (|has| |#1| (-362)))) (($ $ (-639 (-1168)) (-639 |#2|)) 211 (-2245 (|has| |#2| (-513 (-1168) |#2|)) (|has| |#1| (-362)))) (($ $ (-639 (-293 |#2|))) 210 (-2245 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362)))) (($ $ (-293 |#2|)) 209 (-2245 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362)))) (($ $ |#2| |#2|) 208 (-2245 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362)))) (($ $ (-639 |#2|) (-639 |#2|)) 207 (-2245 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362))))) (-2044 (((-766) $) 157 (|has| |#1| (-362)))) (-2343 ((|#1| $ (-562)) 107) (($ $ $) 84 (|has| (-562) (-1104))) (($ $ |#2|) 206 (-2245 (|has| |#2| (-285 |#2| |#2|)) (|has| |#1| (-362))))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 158 (|has| |#1| (-362)))) (-4029 (($ $ (-1 |#2| |#2|)) 217 (|has| |#1| (-362))) (($ $ (-1 |#2| |#2|) (-766)) 216 (|has| |#1| (-362))) (($ $ (-766)) 87 (-4037 (-2245 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) 85 (-4037 (-2245 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) 92 (-4037 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))))) (($ $ (-1168) (-766)) 91 (-4037 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))))) (($ $ (-639 (-1168))) 90 (-4037 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))))) (($ $ (-1168)) 89 (-4037 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))))) (-1580 (($ $) 230 (|has| |#1| (-362)))) (-4079 ((|#2| $) 228 (|has| |#1| (-362)))) (-2250 (((-562) $) 67)) (-3022 (($ $) 135 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 124 (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) 134 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 125 (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) 133 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 126 (|has| |#1| (-38 (-406 (-562)))))) (-4208 (((-224) $) 246 (-2245 (|has| |#2| (-1017)) (|has| |#1| (-362)))) (((-378) $) 245 (-2245 (|has| |#2| (-1017)) (|has| |#1| (-362)))) (((-535) $) 244 (-2245 (|has| |#2| (-610 (-535))) (|has| |#1| (-362)))) (((-887 (-378)) $) 223 (-2245 (|has| |#2| (-610 (-887 (-378)))) (|has| |#1| (-362)))) (((-887 (-562)) $) 222 (-2245 (|has| |#2| (-610 (-887 (-562)))) (|has| |#1| (-362))))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 236 (-2245 (-2245 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#1| (-362))))) (-1345 (($ $) 75)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 50 (|has| |#1| (-171))) (($ |#2|) 269) (($ (-1168)) 243 (-2245 (|has| |#2| (-1033 (-1168))) (|has| |#1| (-362)))) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554)))) (-2266 ((|#1| $ (-562)) 62)) (-2059 (((-3 $ "failed") $) 51 (-4037 (-2245 (-4037 (|has| |#2| (-144)) (-2245 (|has| $ (-144)) (|has| |#2| (-904)))) (|has| |#1| (-362))) (|has| |#1| (-144))))) (-1568 (((-766)) 28)) (-2328 ((|#1| $) 105)) (-3636 ((|#2| $) 234 (-2245 (|has| |#2| (-544)) (|has| |#1| (-362))))) (-3054 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) 56 (|has| |#1| (-554)))) (-3033 (($ $) 143 (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) 131 (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-562)) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-562)))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) 141 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 129 (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) 128 (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) 139 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 127 (|has| |#1| (-38 (-406 (-562)))))) (-2757 (($ $) 250 (-2245 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-1 |#2| |#2|)) 215 (|has| |#1| (-362))) (($ $ (-1 |#2| |#2|) (-766)) 214 (|has| |#1| (-362))) (($ $ (-766)) 88 (-4037 (-2245 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) 86 (-4037 (-2245 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) 96 (-4037 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))))) (($ $ (-1168) (-766)) 95 (-4037 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))))) (($ $ (-639 (-1168))) 94 (-4037 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))))) (($ $ (-1168)) 93 (-4037 (-2245 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))))) (-1798 (((-112) $ $) 254 (-2245 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1771 (((-112) $ $) 255 (-2245 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 253 (-2245 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1761 (((-112) $ $) 256 (-2245 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362))) (($ $ $) 170 (|has| |#1| (-362))) (($ |#2| |#2|) 226 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 169 (|has| |#1| (-362))) (($ $ $) 147 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 118 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ $ |#2|) 205 (|has| |#1| (-362))) (($ |#2| $) 204 (|has| |#1| (-362))) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
(((-1218 |#1| |#2|) (-139) (-1044) (-1247 |t#1|)) (T -1218))
-((-3598 (*1 *2 *1) (-12 (-4 *1 (-1218 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1247 *3)) (-5 *2 (-562)))) (-1485 (*1 *1 *2 *3) (-12 (-5 *2 (-562)) (-4 *4 (-1044)) (-4 *1 (-1218 *4 *3)) (-4 *3 (-1247 *4)))) (-4226 (*1 *2 *1) (-12 (-4 *1 (-1218 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1247 *3)))) (-2724 (*1 *1 *1) (-12 (-4 *1 (-1218 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-1247 *2)))) (-2724 (*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-4 *1 (-1218 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1247 *3)))) (-1469 (*1 *2 *1) (-12 (-4 *1 (-1218 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1247 *3)))) (-3006 (*1 *2 *1) (|partial| -12 (-4 *1 (-1218 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1247 *3)))))
-(-13 (-1216 |t#1|) (-1033 |t#2|) (-612 |t#2|) (-10 -8 (-15 -1485 ($ (-562) |t#2|)) (-15 -3598 ((-562) $)) (-15 -4226 (|t#2| $)) (-15 -2724 ($ $)) (-15 -2724 ($ (-562) $)) (-15 -1469 (|t#2| $)) (-15 -3006 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-362)) (-6 (-987 |t#2|)) |%noBranch|)))
+((-2250 (*1 *2 *1) (-12 (-4 *1 (-1218 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1247 *3)) (-5 *2 (-562)))) (-1487 (*1 *1 *2 *3) (-12 (-5 *2 (-562)) (-4 *4 (-1044)) (-4 *1 (-1218 *4 *3)) (-4 *3 (-1247 *4)))) (-2108 (*1 *2 *1) (-12 (-4 *1 (-1218 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1247 *3)))) (-2449 (*1 *1 *1) (-12 (-4 *1 (-1218 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-1247 *2)))) (-2449 (*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-4 *1 (-1218 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1247 *3)))) (-1470 (*1 *2 *1) (-12 (-4 *1 (-1218 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1247 *3)))) (-3357 (*1 *2 *1) (|partial| -12 (-4 *1 (-1218 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1247 *3)))))
+(-13 (-1216 |t#1|) (-1033 |t#2|) (-612 |t#2|) (-10 -8 (-15 -1487 ($ (-562) |t#2|)) (-15 -2250 ((-562) $)) (-15 -2108 (|t#2| $)) (-15 -2449 ($ $)) (-15 -2449 ($ (-562) $)) (-15 -1470 (|t#2| $)) (-15 -3357 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-362)) (-6 (-987 |t#2|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-562)) . T) ((-25) . T) ((-38 #1=(-406 (-562))) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-38 |#1|) |has| |#1| (-171)) ((-38 |#2|) |has| |#1| (-362)) ((-38 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-35) |has| |#1| (-38 (-406 (-562)))) ((-95) |has| |#1| (-38 (-406 (-562)))) ((-102) . T) ((-111 #1# #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-111 |#1| |#1|) . T) ((-111 |#2| |#2|) |has| |#1| (-362)) ((-111 $ $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-130) . T) ((-144) -4037 (-12 (|has| |#1| (-362)) (|has| |#2| (-144))) (|has| |#1| (-144))) ((-146) -4037 (-12 (|has| |#1| (-362)) (|has| |#2| (-146))) (|has| |#1| (-146))) ((-612 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-612 (-562)) . T) ((-612 #2=(-1168)) -12 (|has| |#1| (-362)) (|has| |#2| (-1033 (-1168)))) ((-612 |#1|) |has| |#1| (-171)) ((-612 |#2|) . T) ((-612 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-554)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-610 (-224)) -12 (|has| |#1| (-362)) (|has| |#2| (-1017))) ((-610 (-378)) -12 (|has| |#1| (-362)) (|has| |#2| (-1017))) ((-610 (-535)) -12 (|has| |#1| (-362)) (|has| |#2| (-610 (-535)))) ((-610 (-887 (-378))) -12 (|has| |#1| (-362)) (|has| |#2| (-610 (-887 (-378))))) ((-610 (-887 (-562))) -12 (|has| |#1| (-362)) (|has| |#2| (-610 (-887 (-562))))) ((-230 |#2|) |has| |#1| (-362)) ((-232) -4037 (-12 (|has| |#1| (-362)) (|has| |#2| (-232))) (|has| |#1| (-15 * (|#1| (-562) |#1|)))) ((-242) |has| |#1| (-362)) ((-283) |has| |#1| (-38 (-406 (-562)))) ((-285 |#2| $) -12 (|has| |#1| (-362)) (|has| |#2| (-285 |#2| |#2|))) ((-285 $ $) |has| (-562) (-1104)) ((-289) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-306) |has| |#1| (-362)) ((-308 |#2|) -12 (|has| |#1| (-362)) (|has| |#2| (-308 |#2|))) ((-362) |has| |#1| (-362)) ((-337 |#2|) |has| |#1| (-362)) ((-376 |#2|) |has| |#1| (-362)) ((-399 |#2|) |has| |#1| (-362)) ((-451) |has| |#1| (-362)) ((-492) |has| |#1| (-38 (-406 (-562)))) ((-513 (-1168) |#2|) -12 (|has| |#1| (-362)) (|has| |#2| (-513 (-1168) |#2|))) ((-513 |#2| |#2|) -12 (|has| |#1| (-362)) (|has| |#2| (-308 |#2|))) ((-554) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-642 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-642 |#1|) . T) ((-642 |#2|) |has| |#1| (-362)) ((-642 $) . T) ((-635 (-562)) -12 (|has| |#1| (-362)) (|has| |#2| (-635 (-562)))) ((-635 |#2|) |has| |#1| (-362)) ((-712 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-712 |#1|) |has| |#1| (-171)) ((-712 |#2|) |has| |#1| (-362)) ((-712 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-721) . T) ((-786) -12 (|has| |#1| (-362)) (|has| |#2| (-815))) ((-787) -12 (|has| |#1| (-362)) (|has| |#2| (-815))) ((-789) -12 (|has| |#1| (-362)) (|has| |#2| (-815))) ((-790) -12 (|has| |#1| (-362)) (|has| |#2| (-815))) ((-815) -12 (|has| |#1| (-362)) (|has| |#2| (-815))) ((-843) -12 (|has| |#1| (-362)) (|has| |#2| (-815))) ((-845) -4037 (-12 (|has| |#1| (-362)) (|has| |#2| (-845))) (-12 (|has| |#1| (-362)) (|has| |#2| (-815)))) ((-895 (-1168)) -4037 (-12 (|has| |#1| (-362)) (|has| |#2| (-895 (-1168)))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))) ((-881 (-378)) -12 (|has| |#1| (-362)) (|has| |#2| (-881 (-378)))) ((-881 (-562)) -12 (|has| |#1| (-362)) (|has| |#2| (-881 (-562)))) ((-879 |#2|) |has| |#1| (-362)) ((-904) -12 (|has| |#1| (-362)) (|has| |#2| (-904))) ((-968 |#1| #0# (-1074)) . T) ((-915) |has| |#1| (-362)) ((-987 |#2|) |has| |#1| (-362)) ((-997) |has| |#1| (-38 (-406 (-562)))) ((-1017) -12 (|has| |#1| (-362)) (|has| |#2| (-1017))) ((-1033 (-406 (-562))) -12 (|has| |#1| (-362)) (|has| |#2| (-1033 (-562)))) ((-1033 (-562)) -12 (|has| |#1| (-362)) (|has| |#2| (-1033 (-562)))) ((-1033 #2#) -12 (|has| |#1| (-362)) (|has| |#2| (-1033 (-1168)))) ((-1033 |#2|) . T) ((-1050 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-1050 |#1|) . T) ((-1050 |#2|) |has| |#1| (-362)) ((-1050 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1143) -12 (|has| |#1| (-362)) (|has| |#2| (-1143))) ((-1192) |has| |#1| (-38 (-406 (-562)))) ((-1195) |has| |#1| (-38 (-406 (-562)))) ((-1207) |has| |#1| (-362)) ((-1211) |has| |#1| (-362)) ((-1216 |#1|) . T) ((-1234 |#1| #0#) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 70)) (-4246 ((|#2| $) NIL (-12 (|has| |#2| (-306)) (|has| |#1| (-362))))) (-1402 (((-639 (-1074)) $) NIL)) (-2444 (((-1168) $) 88)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-2557 (($ $ (-562)) 97) (($ $ (-562) (-562)) 99)) (-1938 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) 47)) (-4226 ((|#2| $) 11)) (-3006 (((-3 |#2| "failed") $) 30)) (-1469 ((|#2| $) 31)) (-2988 (($ $) 192 (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) 168 (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-2798 (($ $) NIL (|has| |#1| (-362)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1643 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4207 (($ $) 188 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 164 (|has| |#1| (-38 (-406 (-562)))))) (-2277 (((-562) $) NIL (-12 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-1503 (($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) 57)) (-3014 (($ $) 196 (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) 172 (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) 144) (((-3 (-562) "failed") $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-3 (-1168) "failed") $) NIL (-12 (|has| |#2| (-1033 (-1168))) (|has| |#1| (-362))))) (-3961 ((|#2| $) 143) (((-562) $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-406 (-562)) $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-1168) $) NIL (-12 (|has| |#2| (-1033 (-1168))) (|has| |#1| (-362))))) (-2724 (($ $) 61) (($ (-562) $) 24)) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1601 (($ $) NIL)) (-2406 (((-683 |#2|) (-683 $)) NIL (|has| |#1| (-362))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL (|has| |#1| (-362))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#1| (-362)))) (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#1| (-362))))) (-3668 (((-3 $ "failed") $) 77)) (-1493 (((-406 (-947 |#1|)) $ (-562)) 112 (|has| |#1| (-554))) (((-406 (-947 |#1|)) $ (-562) (-562)) 114 (|has| |#1| (-554)))) (-1448 (($) NIL (-12 (|has| |#2| (-544)) (|has| |#1| (-362))))) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-2717 (((-112) $) NIL (|has| |#1| (-362)))) (-3519 (((-112) $) NIL (-12 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-1756 (((-112) $) 64)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| |#2| (-881 (-378))) (|has| |#1| (-362)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| |#2| (-881 (-562))) (|has| |#1| (-362))))) (-1900 (((-562) $) 93) (((-562) $ (-562)) 95)) (-1957 (((-112) $) NIL)) (-3425 (($ $) NIL (|has| |#1| (-362)))) (-4065 ((|#2| $) 151 (|has| |#1| (-362)))) (-1891 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3699 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1143)) (|has| |#1| (-362))))) (-3392 (((-112) $) NIL (-12 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-3374 (($ $ (-916)) 136)) (-4222 (($ (-1 |#1| (-562)) $) 132)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-562)) 19) (($ $ (-1074) (-562)) NIL) (($ $ (-639 (-1074)) (-639 (-562))) NIL)) (-1551 (($ $ $) NIL (-12 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-2993 (($ $ $) NIL (-12 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-4152 (($ (-1 |#1| |#1|) $) 129) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-362)))) (-4365 (($ $) 162 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1485 (($ (-562) |#2|) 10)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 145 (|has| |#1| (-362)))) (-2667 (($ $) 214 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 219 (-4037 (-12 (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192)))))) (-3729 (($) NIL (-12 (|has| |#2| (-1143)) (|has| |#1| (-362))) CONST)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-2736 (($ $) NIL (-12 (|has| |#2| (-306)) (|has| |#1| (-362))))) (-4014 ((|#2| $) NIL (-12 (|has| |#2| (-544)) (|has| |#1| (-362))))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1353 (($ $ (-562)) 126)) (-1762 (((-3 $ "failed") $ $) 116 (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) 160 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 85 (|has| |#1| (-15 ** (|#1| |#1| (-562))))) (($ $ (-1168) |#2|) NIL (-12 (|has| |#2| (-513 (-1168) |#2|)) (|has| |#1| (-362)))) (($ $ (-639 (-1168)) (-639 |#2|)) NIL (-12 (|has| |#2| (-513 (-1168) |#2|)) (|has| |#1| (-362)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362))))) (-1577 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-562)) 91) (($ $ $) 79 (|has| (-562) (-1104))) (($ $ |#2|) NIL (-12 (|has| |#2| (-285 |#2| |#2|)) (|has| |#1| (-362))))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-362))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#1| (-362))) (($ $ (-766)) NIL (-4037 (-12 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) 137 (-4037 (-12 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168) (-766)) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-639 (-1168))) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168)) 140 (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))))) (-3658 (($ $) NIL (|has| |#1| (-362)))) (-4076 ((|#2| $) 152 (|has| |#1| (-362)))) (-3598 (((-562) $) 12)) (-3023 (($ $) 198 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 174 (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) 194 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 170 (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) 190 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 166 (|has| |#1| (-38 (-406 (-562)))))) (-4208 (((-224) $) NIL (-12 (|has| |#2| (-1017)) (|has| |#1| (-362)))) (((-378) $) NIL (-12 (|has| |#2| (-1017)) (|has| |#1| (-362)))) (((-535) $) NIL (-12 (|has| |#2| (-610 (-535))) (|has| |#1| (-362)))) (((-887 (-378)) $) NIL (-12 (|has| |#2| (-610 (-887 (-378)))) (|has| |#1| (-362)))) (((-887 (-562)) $) NIL (-12 (|has| |#2| (-610 (-887 (-562)))) (|has| |#1| (-362))))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904)) (|has| |#1| (-362))))) (-2256 (($ $) 124)) (-4054 (((-857) $) 244) (($ (-562)) 23) (($ |#1|) 21 (|has| |#1| (-171))) (($ |#2|) 20) (($ (-1168)) NIL (-12 (|has| |#2| (-1033 (-1168))) (|has| |#1| (-362)))) (($ (-406 (-562))) 155 (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554)))) (-3906 ((|#1| $ (-562)) 74)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904)) (|has| |#1| (-362))) (-12 (|has| |#2| (-144)) (|has| |#1| (-362))) (|has| |#1| (-144))))) (-2579 (((-766)) 142)) (-2328 ((|#1| $) 90)) (-2604 ((|#2| $) NIL (-12 (|has| |#2| (-544)) (|has| |#1| (-362))))) (-3055 (($ $) 204 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 180 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) 200 (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) 176 (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) 208 (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) 184 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-562)) 122 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-562)))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) 210 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 186 (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) 206 (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) 182 (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) 202 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 178 (|has| |#1| (-38 (-406 (-562)))))) (-3526 (($ $) NIL (-12 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-2286 (($) 13 T CONST)) (-2294 (($) 17 T CONST)) (-3114 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-362))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#1| (-362))) (($ $ (-766)) NIL (-4037 (-12 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) NIL (-4037 (-12 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168) (-766)) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-639 (-1168))) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))))) (-1798 (((-112) $ $) NIL (-12 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1772 (((-112) $ $) NIL (-12 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1731 (((-112) $ $) 63)) (-1785 (((-112) $ $) NIL (-12 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1759 (((-112) $ $) NIL (-12 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) 149 (|has| |#1| (-362))) (($ |#2| |#2|) 150 (|has| |#1| (-362)))) (-1848 (($ $) 213) (($ $ $) 68)) (-1835 (($ $ $) 66)) (** (($ $ (-916)) NIL) (($ $ (-766)) 73) (($ $ (-562)) 146 (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 158 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 139) (($ $ |#2|) 148 (|has| |#1| (-362))) (($ |#2| $) 147 (|has| |#1| (-362))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 70)) (-2300 ((|#2| $) NIL (-12 (|has| |#2| (-306)) (|has| |#1| (-362))))) (-1401 (((-639 (-1074)) $) NIL)) (-2443 (((-1168) $) 88)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1302 (($ $ (-562)) 97) (($ $ (-562) (-562)) 99)) (-4196 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) 47)) (-2108 ((|#2| $) 11)) (-3357 (((-3 |#2| "failed") $) 30)) (-1470 ((|#2| $) 31)) (-2987 (($ $) 192 (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) 168 (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-1977 (($ $) NIL (|has| |#1| (-362)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1644 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4206 (($ $) 188 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 164 (|has| |#1| (-38 (-406 (-562)))))) (-1587 (((-562) $) NIL (-12 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-1503 (($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) 57)) (-3013 (($ $) 196 (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) 172 (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) 144) (((-3 (-562) "failed") $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-3 (-1168) "failed") $) NIL (-12 (|has| |#2| (-1033 (-1168))) (|has| |#1| (-362))))) (-3960 ((|#2| $) 143) (((-562) $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-406 (-562)) $) NIL (-12 (|has| |#2| (-1033 (-562))) (|has| |#1| (-362)))) (((-1168) $) NIL (-12 (|has| |#2| (-1033 (-1168))) (|has| |#1| (-362))))) (-2449 (($ $) 61) (($ (-562) $) 24)) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-1600 (($ $) NIL)) (-3449 (((-683 |#2|) (-683 $)) NIL (|has| |#1| (-362))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL (|has| |#1| (-362))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#1| (-362)))) (((-683 (-562)) (-683 $)) NIL (-12 (|has| |#2| (-635 (-562))) (|has| |#1| (-362))))) (-1694 (((-3 $ "failed") $) 77)) (-2547 (((-406 (-947 |#1|)) $ (-562)) 112 (|has| |#1| (-554))) (((-406 (-947 |#1|)) $ (-562) (-562)) 114 (|has| |#1| (-554)))) (-1447 (($) NIL (-12 (|has| |#2| (-544)) (|has| |#1| (-362))))) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-3521 (((-112) $) NIL (|has| |#1| (-362)))) (-2696 (((-112) $) NIL (-12 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-2965 (((-112) $) 64)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| |#2| (-881 (-378))) (|has| |#1| (-362)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| |#2| (-881 (-562))) (|has| |#1| (-362))))) (-1993 (((-562) $) 93) (((-562) $ (-562)) 95)) (-4367 (((-112) $) NIL)) (-2957 (($ $) NIL (|has| |#1| (-362)))) (-4063 ((|#2| $) 151 (|has| |#1| (-362)))) (-1895 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3828 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1143)) (|has| |#1| (-362))))) (-3855 (((-112) $) NIL (-12 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-3662 (($ $ (-916)) 136)) (-2064 (($ (-1 |#1| (-562)) $) 132)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-562)) 19) (($ $ (-1074) (-562)) NIL) (($ $ (-639 (-1074)) (-639 (-562))) NIL)) (-1551 (($ $ $) NIL (-12 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-2993 (($ $ $) NIL (-12 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-4152 (($ (-1 |#1| |#1|) $) 129) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-362)))) (-4366 (($ $) 162 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1487 (($ (-562) |#2|) 10)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 145 (|has| |#1| (-362)))) (-3081 (($ $) 214 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 219 (-4037 (-12 (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192)))))) (-3730 (($) NIL (-12 (|has| |#2| (-1143)) (|has| |#1| (-362))) CONST)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-2561 (($ $) NIL (-12 (|has| |#2| (-306)) (|has| |#1| (-362))))) (-3870 ((|#2| $) NIL (-12 (|has| |#2| (-544)) (|has| |#1| (-362))))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| |#2| (-904)) (|has| |#1| (-362))))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-4316 (($ $ (-562)) 126)) (-1762 (((-3 $ "failed") $ $) 116 (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) 160 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 85 (|has| |#1| (-15 ** (|#1| |#1| (-562))))) (($ $ (-1168) |#2|) NIL (-12 (|has| |#2| (-513 (-1168) |#2|)) (|has| |#1| (-362)))) (($ $ (-639 (-1168)) (-639 |#2|)) NIL (-12 (|has| |#2| (-513 (-1168) |#2|)) (|has| |#1| (-362)))) (($ $ (-639 (-293 |#2|))) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362)))) (($ $ (-293 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362)))) (($ $ (-639 |#2|) (-639 |#2|)) NIL (-12 (|has| |#2| (-308 |#2|)) (|has| |#1| (-362))))) (-2044 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-562)) 91) (($ $ $) 79 (|has| (-562) (-1104))) (($ $ |#2|) NIL (-12 (|has| |#2| (-285 |#2| |#2|)) (|has| |#1| (-362))))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-362))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#1| (-362))) (($ $ (-766)) NIL (-4037 (-12 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) 137 (-4037 (-12 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168) (-766)) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-639 (-1168))) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168)) 140 (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))))) (-1580 (($ $) NIL (|has| |#1| (-362)))) (-4079 ((|#2| $) 152 (|has| |#1| (-362)))) (-2250 (((-562) $) 12)) (-3022 (($ $) 198 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 174 (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) 194 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 170 (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) 190 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 166 (|has| |#1| (-38 (-406 (-562)))))) (-4208 (((-224) $) NIL (-12 (|has| |#2| (-1017)) (|has| |#1| (-362)))) (((-378) $) NIL (-12 (|has| |#2| (-1017)) (|has| |#1| (-362)))) (((-535) $) NIL (-12 (|has| |#2| (-610 (-535))) (|has| |#1| (-362)))) (((-887 (-378)) $) NIL (-12 (|has| |#2| (-610 (-887 (-378)))) (|has| |#1| (-362)))) (((-887 (-562)) $) NIL (-12 (|has| |#2| (-610 (-887 (-562)))) (|has| |#1| (-362))))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904)) (|has| |#1| (-362))))) (-1345 (($ $) 124)) (-4053 (((-857) $) 244) (($ (-562)) 23) (($ |#1|) 21 (|has| |#1| (-171))) (($ |#2|) 20) (($ (-1168)) NIL (-12 (|has| |#2| (-1033 (-1168))) (|has| |#1| (-362)))) (($ (-406 (-562))) 155 (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554)))) (-2266 ((|#1| $ (-562)) 74)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904)) (|has| |#1| (-362))) (-12 (|has| |#2| (-144)) (|has| |#1| (-362))) (|has| |#1| (-144))))) (-1568 (((-766)) 142)) (-2328 ((|#1| $) 90)) (-3636 ((|#2| $) NIL (-12 (|has| |#2| (-544)) (|has| |#1| (-362))))) (-3054 (($ $) 204 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 180 (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) 200 (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) 176 (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) 208 (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) 184 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-562)) 122 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-562)))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) 210 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 186 (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) 206 (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) 182 (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) 202 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 178 (|has| |#1| (-38 (-406 (-562)))))) (-2757 (($ $) NIL (-12 (|has| |#2| (-815)) (|has| |#1| (-362))))) (-2285 (($) 13 T CONST)) (-2294 (($) 17 T CONST)) (-3113 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-362))) (($ $ (-1 |#2| |#2|) (-766)) NIL (|has| |#1| (-362))) (($ $ (-766)) NIL (-4037 (-12 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) NIL (-4037 (-12 (|has| |#2| (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168) (-766)) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-639 (-1168))) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#2| (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))))) (-1798 (((-112) $ $) NIL (-12 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1771 (((-112) $ $) NIL (-12 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1733 (((-112) $ $) 63)) (-1785 (((-112) $ $) NIL (-12 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1761 (((-112) $ $) NIL (-12 (|has| |#2| (-845)) (|has| |#1| (-362))))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) 149 (|has| |#1| (-362))) (($ |#2| |#2|) 150 (|has| |#1| (-362)))) (-1847 (($ $) 213) (($ $ $) 68)) (-1836 (($ $ $) 66)) (** (($ $ (-916)) NIL) (($ $ (-766)) 73) (($ $ (-562)) 146 (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 158 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 69) (($ $ |#1|) NIL) (($ |#1| $) 139) (($ $ |#2|) 148 (|has| |#1| (-362))) (($ |#2| $) 147 (|has| |#1| (-362))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
(((-1219 |#1| |#2|) (-1218 |#1| |#2|) (-1044) (-1247 |#1|)) (T -1219))
NIL
(-1218 |#1| |#2|)
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-4246 (((-1248 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-306)) (|has| |#1| (-362))))) (-1402 (((-639 (-1074)) $) NIL)) (-2444 (((-1168) $) 10)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-2796 (($ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-4370 (((-112) $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-2557 (($ $ (-562)) NIL) (($ $ (-562) (-562)) NIL)) (-1938 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) NIL)) (-4226 (((-1248 |#1| |#2| |#3|) $) NIL)) (-3006 (((-3 (-1248 |#1| |#2| |#3|) "failed") $) NIL)) (-1469 (((-1248 |#1| |#2| |#3|) $) NIL)) (-2988 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-2798 (($ $) NIL (|has| |#1| (-362)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1643 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4207 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2277 (((-562) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-1503 (($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) NIL)) (-3014 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-1248 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-1168))) (|has| |#1| (-362)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362)))) (((-3 (-562) "failed") $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362))))) (-3961 (((-1248 |#1| |#2| |#3|) $) NIL) (((-1168) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-1168))) (|has| |#1| (-362)))) (((-406 (-562)) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362)))) (((-562) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362))))) (-2724 (($ $) NIL) (($ (-562) $) NIL)) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1601 (($ $) NIL)) (-2406 (((-683 (-1248 |#1| |#2| |#3|)) (-683 $)) NIL (|has| |#1| (-362))) (((-2 (|:| -1545 (-683 (-1248 |#1| |#2| |#3|))) (|:| |vec| (-1256 (-1248 |#1| |#2| |#3|)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-362))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-635 (-562))) (|has| |#1| (-362)))) (((-683 (-562)) (-683 $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-635 (-562))) (|has| |#1| (-362))))) (-3668 (((-3 $ "failed") $) NIL)) (-1493 (((-406 (-947 |#1|)) $ (-562)) NIL (|has| |#1| (-554))) (((-406 (-947 |#1|)) $ (-562) (-562)) NIL (|has| |#1| (-554)))) (-1448 (($) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-544)) (|has| |#1| (-362))))) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-2717 (((-112) $) NIL (|has| |#1| (-362)))) (-3519 (((-112) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-1756 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-881 (-378))) (|has| |#1| (-362)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-881 (-562))) (|has| |#1| (-362))))) (-1900 (((-562) $) NIL) (((-562) $ (-562)) NIL)) (-1957 (((-112) $) NIL)) (-3425 (($ $) NIL (|has| |#1| (-362)))) (-4065 (((-1248 |#1| |#2| |#3|) $) NIL (|has| |#1| (-362)))) (-1891 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3699 (((-3 $ "failed") $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1143)) (|has| |#1| (-362))))) (-3392 (((-112) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-3374 (($ $ (-916)) NIL)) (-4222 (($ (-1 |#1| (-562)) $) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-562)) 17) (($ $ (-1074) (-562)) NIL) (($ $ (-639 (-1074)) (-639 (-562))) NIL)) (-1551 (($ $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-2993 (($ $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-362)))) (-4365 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1485 (($ (-562) (-1248 |#1| |#2| |#3|)) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-2667 (($ $) 25 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 26 (|has| |#1| (-38 (-406 (-562)))))) (-3729 (($) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1143)) (|has| |#1| (-362))) CONST)) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-2736 (($ $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-306)) (|has| |#1| (-362))))) (-4014 (((-1248 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-544)) (|has| |#1| (-362))))) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1353 (($ $ (-562)) NIL)) (-1762 (((-3 $ "failed") $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-562))))) (($ $ (-1168) (-1248 |#1| |#2| |#3|)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-513 (-1168) (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-639 (-1168)) (-639 (-1248 |#1| |#2| |#3|))) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-513 (-1168) (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-639 (-293 (-1248 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-308 (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-293 (-1248 |#1| |#2| |#3|))) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-308 (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-308 (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-639 (-1248 |#1| |#2| |#3|)) (-639 (-1248 |#1| |#2| |#3|))) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-308 (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362))))) (-1577 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-562)) NIL) (($ $ $) NIL (|has| (-562) (-1104))) (($ $ (-1248 |#1| |#2| |#3|)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-285 (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362))))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-1 (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|))) NIL (|has| |#1| (-362))) (($ $ (-1 (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|)) (-766)) NIL (|has| |#1| (-362))) (($ $ (-1252 |#2|)) 24) (($ $ (-766)) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) 23 (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168) (-766)) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-639 (-1168))) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))))) (-3658 (($ $) NIL (|has| |#1| (-362)))) (-4076 (((-1248 |#1| |#2| |#3|) $) NIL (|has| |#1| (-362)))) (-3598 (((-562) $) NIL)) (-3023 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4208 (((-535) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-610 (-535))) (|has| |#1| (-362)))) (((-378) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1017)) (|has| |#1| (-362)))) (((-224) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1017)) (|has| |#1| (-362)))) (((-887 (-378)) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-610 (-887 (-378)))) (|has| |#1| (-362)))) (((-887 (-562)) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-610 (-887 (-562)))) (|has| |#1| (-362))))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-2256 (($ $) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ (-1248 |#1| |#2| |#3|)) NIL) (($ (-1252 |#2|)) 22) (($ (-1168)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-1168))) (|has| |#1| (-362)))) (($ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554)))) (($ (-406 (-562))) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362))) (|has| |#1| (-38 (-406 (-562))))))) (-3906 ((|#1| $ (-562)) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-144)) (|has| |#1| (-362))) (|has| |#1| (-144))))) (-2579 (((-766)) NIL)) (-2328 ((|#1| $) 11)) (-2604 (((-1248 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-544)) (|has| |#1| (-362))))) (-3055 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-562)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-562)))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3526 (($ $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-2286 (($) 19 T CONST)) (-2294 (($) 15 T CONST)) (-3114 (($ $ (-1 (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|))) NIL (|has| |#1| (-362))) (($ $ (-1 (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|)) (-766)) NIL (|has| |#1| (-362))) (($ $ (-766)) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168) (-766)) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-639 (-1168))) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))))) (-1798 (((-112) $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1772 (((-112) $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1759 (((-112) $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362))) (($ (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|)) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 20)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1248 |#1| |#2| |#3|)) NIL (|has| |#1| (-362))) (($ (-1248 |#1| |#2| |#3|) $) NIL (|has| |#1| (-362))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
-(((-1220 |#1| |#2| |#3|) (-13 (-1218 |#1| (-1248 |#1| |#2| |#3|)) (-10 -8 (-15 -4054 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -1220))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1220 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1220 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-2667 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1220 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
-(-13 (-1218 |#1| (-1248 |#1| |#2| |#3|)) (-10 -8 (-15 -4054 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|)))
-((-2832 (((-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| |#1|) (|:| -2762 (-562)))))) |#1| (-112)) 12)) (-3696 (((-417 |#1|) |#1|) 22)) (-1635 (((-417 |#1|) |#1|) 21)))
-(((-1221 |#1|) (-10 -7 (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3696 ((-417 |#1|) |#1|)) (-15 -2832 ((-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| |#1|) (|:| -2762 (-562)))))) |#1| (-112)))) (-1232 (-562))) (T -1221))
-((-2832 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| *3) (|:| -2762 (-562))))))) (-5 *1 (-1221 *3)) (-4 *3 (-1232 (-562))))) (-3696 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-1221 *3)) (-4 *3 (-1232 (-562))))) (-1635 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-1221 *3)) (-4 *3 (-1232 (-562))))))
-(-10 -7 (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3696 ((-417 |#1|) |#1|)) (-15 -2832 ((-2 (|:| |contp| (-562)) (|:| -1510 (-639 (-2 (|:| |irr| |#1|) (|:| -2762 (-562)))))) |#1| (-112))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2300 (((-1248 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-306)) (|has| |#1| (-362))))) (-1401 (((-639 (-1074)) $) NIL)) (-2443 (((-1168) $) 10)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-1965 (($ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-4102 (((-112) $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-1302 (($ $ (-562)) NIL) (($ $ (-562) (-562)) NIL)) (-4196 (((-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|))) $) NIL)) (-2108 (((-1248 |#1| |#2| |#3|) $) NIL)) (-3357 (((-3 (-1248 |#1| |#2| |#3|) "failed") $) NIL)) (-1470 (((-1248 |#1| |#2| |#3|) $) NIL)) (-2987 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-1977 (($ $) NIL (|has| |#1| (-362)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1644 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4206 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1587 (((-562) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-1503 (($ (-1148 (-2 (|:| |k| (-562)) (|:| |c| |#1|)))) NIL)) (-3013 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-1248 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1168) "failed") $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-1168))) (|has| |#1| (-362)))) (((-3 (-406 (-562)) "failed") $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362)))) (((-3 (-562) "failed") $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362))))) (-3960 (((-1248 |#1| |#2| |#3|) $) NIL) (((-1168) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-1168))) (|has| |#1| (-362)))) (((-406 (-562)) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362)))) (((-562) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362))))) (-2449 (($ $) NIL) (($ (-562) $) NIL)) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-1600 (($ $) NIL)) (-3449 (((-683 (-1248 |#1| |#2| |#3|)) (-683 $)) NIL (|has| |#1| (-362))) (((-2 (|:| -1767 (-683 (-1248 |#1| |#2| |#3|))) (|:| |vec| (-1256 (-1248 |#1| |#2| |#3|)))) (-683 $) (-1256 $)) NIL (|has| |#1| (-362))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-635 (-562))) (|has| |#1| (-362)))) (((-683 (-562)) (-683 $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-635 (-562))) (|has| |#1| (-362))))) (-1694 (((-3 $ "failed") $) NIL)) (-2547 (((-406 (-947 |#1|)) $ (-562)) NIL (|has| |#1| (-554))) (((-406 (-947 |#1|)) $ (-562) (-562)) NIL (|has| |#1| (-554)))) (-1447 (($) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-544)) (|has| |#1| (-362))))) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-3521 (((-112) $) NIL (|has| |#1| (-362)))) (-2696 (((-112) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-2965 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-881 (-378))) (|has| |#1| (-362)))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-881 (-562))) (|has| |#1| (-362))))) (-1993 (((-562) $) NIL) (((-562) $ (-562)) NIL)) (-4367 (((-112) $) NIL)) (-2957 (($ $) NIL (|has| |#1| (-362)))) (-4063 (((-1248 |#1| |#2| |#3|) $) NIL (|has| |#1| (-362)))) (-1895 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3828 (((-3 $ "failed") $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1143)) (|has| |#1| (-362))))) (-3855 (((-112) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-3662 (($ $ (-916)) NIL)) (-2064 (($ (-1 |#1| (-562)) $) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-562)) 17) (($ $ (-1074) (-562)) NIL) (($ $ (-639 (-1074)) (-639 (-562))) NIL)) (-1551 (($ $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-2993 (($ $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-362)))) (-4366 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1487 (($ (-562) (-1248 |#1| |#2| |#3|)) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-3081 (($ $) 25 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 26 (|has| |#1| (-38 (-406 (-562)))))) (-3730 (($) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1143)) (|has| |#1| (-362))) CONST)) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-2561 (($ $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-306)) (|has| |#1| (-362))))) (-3870 (((-1248 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-544)) (|has| |#1| (-362))))) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-4316 (($ $ (-562)) NIL)) (-1762 (((-3 $ "failed") $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-562))))) (($ $ (-1168) (-1248 |#1| |#2| |#3|)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-513 (-1168) (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-639 (-1168)) (-639 (-1248 |#1| |#2| |#3|))) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-513 (-1168) (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-639 (-293 (-1248 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-308 (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-293 (-1248 |#1| |#2| |#3|))) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-308 (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-308 (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362)))) (($ $ (-639 (-1248 |#1| |#2| |#3|)) (-639 (-1248 |#1| |#2| |#3|))) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-308 (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362))))) (-2044 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-562)) NIL) (($ $ $) NIL (|has| (-562) (-1104))) (($ $ (-1248 |#1| |#2| |#3|)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-285 (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|))) (|has| |#1| (-362))))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-1 (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|))) NIL (|has| |#1| (-362))) (($ $ (-1 (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|)) (-766)) NIL (|has| |#1| (-362))) (($ $ (-1252 |#2|)) 24) (($ $ (-766)) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) 23 (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168) (-766)) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-639 (-1168))) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))))) (-1580 (($ $) NIL (|has| |#1| (-362)))) (-4079 (((-1248 |#1| |#2| |#3|) $) NIL (|has| |#1| (-362)))) (-2250 (((-562) $) NIL)) (-3022 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4208 (((-535) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-610 (-535))) (|has| |#1| (-362)))) (((-378) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1017)) (|has| |#1| (-362)))) (((-224) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1017)) (|has| |#1| (-362)))) (((-887 (-378)) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-610 (-887 (-378)))) (|has| |#1| (-362)))) (((-887 (-562)) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-610 (-887 (-562)))) (|has| |#1| (-362))))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))))) (-1345 (($ $) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ (-1248 |#1| |#2| |#3|)) NIL) (($ (-1252 |#2|)) 22) (($ (-1168)) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-1168))) (|has| |#1| (-362)))) (($ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554)))) (($ (-406 (-562))) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-1033 (-562))) (|has| |#1| (-362))) (|has| |#1| (-38 (-406 (-562))))))) (-2266 ((|#1| $ (-562)) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-144)) (|has| |#1| (-362))) (|has| |#1| (-144))))) (-1568 (((-766)) NIL)) (-2328 ((|#1| $) 11)) (-3636 (((-1248 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-544)) (|has| |#1| (-362))))) (-3054 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-904)) (|has| |#1| (-362))) (|has| |#1| (-554))))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-562)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-562)))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2757 (($ $) NIL (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))))) (-2285 (($) 19 T CONST)) (-2294 (($) 15 T CONST)) (-3113 (($ $ (-1 (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|))) NIL (|has| |#1| (-362))) (($ $ (-1 (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|)) (-766)) NIL (|has| |#1| (-362))) (($ $ (-766)) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-232)) (|has| |#1| (-362))) (|has| |#1| (-15 * (|#1| (-562) |#1|))))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168) (-766)) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-639 (-1168))) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168)))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-895 (-1168))) (|has| |#1| (-362))) (-12 (|has| |#1| (-15 * (|#1| (-562) |#1|))) (|has| |#1| (-895 (-1168))))))) (-1798 (((-112) $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1771 (((-112) $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1761 (((-112) $ $) NIL (-4037 (-12 (|has| (-1248 |#1| |#2| |#3|) (-815)) (|has| |#1| (-362))) (-12 (|has| (-1248 |#1| |#2| |#3|) (-845)) (|has| |#1| (-362)))))) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362))) (($ (-1248 |#1| |#2| |#3|) (-1248 |#1| |#2| |#3|)) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 20)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1248 |#1| |#2| |#3|)) NIL (|has| |#1| (-362))) (($ (-1248 |#1| |#2| |#3|) $) NIL (|has| |#1| (-362))) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+(((-1220 |#1| |#2| |#3|) (-13 (-1218 |#1| (-1248 |#1| |#2| |#3|)) (-10 -8 (-15 -4053 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -1220))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1220 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1220 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-3081 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1220 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
+(-13 (-1218 |#1| (-1248 |#1| |#2| |#3|)) (-10 -8 (-15 -4053 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|)))
+((-2323 (((-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| |#1|) (|:| -2794 (-562)))))) |#1| (-112)) 12)) (-3805 (((-417 |#1|) |#1|) 22)) (-1635 (((-417 |#1|) |#1|) 21)))
+(((-1221 |#1|) (-10 -7 (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3805 ((-417 |#1|) |#1|)) (-15 -2323 ((-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| |#1|) (|:| -2794 (-562)))))) |#1| (-112)))) (-1232 (-562))) (T -1221))
+((-2323 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| *3) (|:| -2794 (-562))))))) (-5 *1 (-1221 *3)) (-4 *3 (-1232 (-562))))) (-3805 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-1221 *3)) (-4 *3 (-1232 (-562))))) (-1635 (*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-1221 *3)) (-4 *3 (-1232 (-562))))))
+(-10 -7 (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3805 ((-417 |#1|) |#1|)) (-15 -2323 ((-2 (|:| |contp| (-562)) (|:| -2656 (-639 (-2 (|:| |irr| |#1|) (|:| -2794 (-562)))))) |#1| (-112))))
((-4152 (((-1148 |#2|) (-1 |#2| |#1|) (-1223 |#1|)) 23 (|has| |#1| (-843))) (((-1223 |#2|) (-1 |#2| |#1|) (-1223 |#1|)) 17)))
(((-1222 |#1| |#2|) (-10 -7 (-15 -4152 ((-1223 |#2|) (-1 |#2| |#1|) (-1223 |#1|))) (IF (|has| |#1| (-843)) (-15 -4152 ((-1148 |#2|) (-1 |#2| |#1|) (-1223 |#1|))) |%noBranch|)) (-1207) (-1207)) (T -1222))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1223 *5)) (-4 *5 (-843)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-1148 *6)) (-5 *1 (-1222 *5 *6)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1223 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-1223 *6)) (-5 *1 (-1222 *5 *6)))))
(-10 -7 (-15 -4152 ((-1223 |#2|) (-1 |#2| |#1|) (-1223 |#1|))) (IF (|has| |#1| (-843)) (-15 -4152 ((-1148 |#2|) (-1 |#2| |#1|) (-1223 |#1|))) |%noBranch|))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2669 (($ |#1| |#1|) 9) (($ |#1|) 8)) (-4152 (((-1148 |#1|) (-1 |#1| |#1|) $) 41 (|has| |#1| (-843)))) (-2010 ((|#1| $) 14)) (-1751 ((|#1| $) 10)) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1766 (((-562) $) 18)) (-3712 ((|#1| $) 17)) (-2089 ((|#1| $) 11)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3482 (((-112) $) 16)) (-3525 (((-1148 |#1|) $) 38 (|has| |#1| (-843))) (((-1148 |#1|) (-639 $)) 37 (|has| |#1| (-843)))) (-4208 (($ |#1|) 25)) (-4054 (($ (-1086 |#1|)) 24) (((-857) $) 34 (|has| |#1| (-1092)))) (-3864 (($ |#1| |#1|) 20) (($ |#1|) 19)) (-1483 (($ $ (-562)) 13)) (-1731 (((-112) $ $) 27 (|has| |#1| (-1092)))))
-(((-1223 |#1|) (-13 (-1085 |#1|) (-10 -8 (-15 -3864 ($ |#1|)) (-15 -2669 ($ |#1|)) (-15 -4054 ($ (-1086 |#1|))) (-15 -3482 ((-112) $)) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-1087 |#1| (-1148 |#1|))) |%noBranch|))) (-1207)) (T -1223))
-((-3864 (*1 *1 *2) (-12 (-5 *1 (-1223 *2)) (-4 *2 (-1207)))) (-2669 (*1 *1 *2) (-12 (-5 *1 (-1223 *2)) (-4 *2 (-1207)))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-1086 *3)) (-4 *3 (-1207)) (-5 *1 (-1223 *3)))) (-3482 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1223 *3)) (-4 *3 (-1207)))))
-(-13 (-1085 |#1|) (-10 -8 (-15 -3864 ($ |#1|)) (-15 -2669 ($ |#1|)) (-15 -4054 ($ (-1086 |#1|))) (-15 -3482 ((-112) $)) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-1087 |#1| (-1148 |#1|))) |%noBranch|)))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2668 (($ |#1| |#1|) 9) (($ |#1|) 8)) (-4152 (((-1148 |#1|) (-1 |#1| |#1|) $) 41 (|has| |#1| (-843)))) (-3665 ((|#1| $) 14)) (-1750 ((|#1| $) 10)) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-1765 (((-562) $) 18)) (-3979 ((|#1| $) 17)) (-2088 ((|#1| $) 11)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-3487 (((-112) $) 16)) (-3525 (((-1148 |#1|) $) 38 (|has| |#1| (-843))) (((-1148 |#1|) (-639 $)) 37 (|has| |#1| (-843)))) (-4208 (($ |#1|) 25)) (-4053 (($ (-1086 |#1|)) 24) (((-857) $) 34 (|has| |#1| (-1092)))) (-3863 (($ |#1| |#1|) 20) (($ |#1|) 19)) (-1483 (($ $ (-562)) 13)) (-1733 (((-112) $ $) 27 (|has| |#1| (-1092)))))
+(((-1223 |#1|) (-13 (-1085 |#1|) (-10 -8 (-15 -3863 ($ |#1|)) (-15 -2668 ($ |#1|)) (-15 -4053 ($ (-1086 |#1|))) (-15 -3487 ((-112) $)) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-1087 |#1| (-1148 |#1|))) |%noBranch|))) (-1207)) (T -1223))
+((-3863 (*1 *1 *2) (-12 (-5 *1 (-1223 *2)) (-4 *2 (-1207)))) (-2668 (*1 *1 *2) (-12 (-5 *1 (-1223 *2)) (-4 *2 (-1207)))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-1086 *3)) (-4 *3 (-1207)) (-5 *1 (-1223 *3)))) (-3487 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1223 *3)) (-4 *3 (-1207)))))
+(-13 (-1085 |#1|) (-10 -8 (-15 -3863 ($ |#1|)) (-15 -2668 ($ |#1|)) (-15 -4053 ($ (-1086 |#1|))) (-15 -3487 ((-112) $)) (IF (|has| |#1| (-1092)) (-6 (-1092)) |%noBranch|) (IF (|has| |#1| (-843)) (-6 (-1087 |#1| (-1148 |#1|))) |%noBranch|)))
((-4152 (((-1229 |#3| |#4|) (-1 |#4| |#2|) (-1229 |#1| |#2|)) 15)))
(((-1224 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4152 ((-1229 |#3| |#4|) (-1 |#4| |#2|) (-1229 |#1| |#2|)))) (-1168) (-1044) (-1168) (-1044)) (T -1224))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1229 *5 *6)) (-14 *5 (-1168)) (-4 *6 (-1044)) (-4 *8 (-1044)) (-5 *2 (-1229 *7 *8)) (-5 *1 (-1224 *5 *6 *7 *8)) (-14 *7 (-1168)))))
(-10 -7 (-15 -4152 ((-1229 |#3| |#4|) (-1 |#4| |#2|) (-1229 |#1| |#2|))))
-((-4096 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-1917 ((|#1| |#3|) 13)) (-1471 ((|#3| |#3|) 19)))
-(((-1225 |#1| |#2| |#3|) (-10 -7 (-15 -1917 (|#1| |#3|)) (-15 -1471 (|#3| |#3|)) (-15 -4096 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-554) (-987 |#1|) (-1232 |#2|)) (T -1225))
-((-4096 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-987 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1225 *4 *5 *3)) (-4 *3 (-1232 *5)))) (-1471 (*1 *2 *2) (-12 (-4 *3 (-554)) (-4 *4 (-987 *3)) (-5 *1 (-1225 *3 *4 *2)) (-4 *2 (-1232 *4)))) (-1917 (*1 *2 *3) (-12 (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-1225 *2 *4 *3)) (-4 *3 (-1232 *4)))))
-(-10 -7 (-15 -1917 (|#1| |#3|)) (-15 -1471 (|#3| |#3|)) (-15 -4096 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-1803 (((-3 |#2| "failed") |#2| (-766) |#1|) 29)) (-2339 (((-3 |#2| "failed") |#2| (-766)) 30)) (-3242 (((-3 (-2 (|:| -1588 |#2|) (|:| -1602 |#2|)) "failed") |#2|) 42)) (-2600 (((-639 |#2|) |#2|) 44)) (-1660 (((-3 |#2| "failed") |#2| |#2|) 39)))
-(((-1226 |#1| |#2|) (-10 -7 (-15 -2339 ((-3 |#2| "failed") |#2| (-766))) (-15 -1803 ((-3 |#2| "failed") |#2| (-766) |#1|)) (-15 -1660 ((-3 |#2| "failed") |#2| |#2|)) (-15 -3242 ((-3 (-2 (|:| -1588 |#2|) (|:| -1602 |#2|)) "failed") |#2|)) (-15 -2600 ((-639 |#2|) |#2|))) (-13 (-554) (-146)) (-1232 |#1|)) (T -1226))
-((-2600 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-146))) (-5 *2 (-639 *3)) (-5 *1 (-1226 *4 *3)) (-4 *3 (-1232 *4)))) (-3242 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-554) (-146))) (-5 *2 (-2 (|:| -1588 *3) (|:| -1602 *3))) (-5 *1 (-1226 *4 *3)) (-4 *3 (-1232 *4)))) (-1660 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-1226 *3 *2)) (-4 *2 (-1232 *3)))) (-1803 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-766)) (-4 *4 (-13 (-554) (-146))) (-5 *1 (-1226 *4 *2)) (-4 *2 (-1232 *4)))) (-2339 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-766)) (-4 *4 (-13 (-554) (-146))) (-5 *1 (-1226 *4 *2)) (-4 *2 (-1232 *4)))))
-(-10 -7 (-15 -2339 ((-3 |#2| "failed") |#2| (-766))) (-15 -1803 ((-3 |#2| "failed") |#2| (-766) |#1|)) (-15 -1660 ((-3 |#2| "failed") |#2| |#2|)) (-15 -3242 ((-3 (-2 (|:| -1588 |#2|) (|:| -1602 |#2|)) "failed") |#2|)) (-15 -2600 ((-639 |#2|) |#2|)))
-((-2022 (((-3 (-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) "failed") |#2| |#2|) 31)))
-(((-1227 |#1| |#2|) (-10 -7 (-15 -2022 ((-3 (-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) "failed") |#2| |#2|))) (-554) (-1232 |#1|)) (T -1227))
-((-2022 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-554)) (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-1227 *4 *3)) (-4 *3 (-1232 *4)))))
-(-10 -7 (-15 -2022 ((-3 (-2 (|:| -2097 |#2|) (|:| -2264 |#2|)) "failed") |#2| |#2|)))
-((-1559 ((|#2| |#2| |#2|) 19)) (-2064 ((|#2| |#2| |#2|) 30)) (-1384 ((|#2| |#2| |#2| (-766) (-766)) 36)))
-(((-1228 |#1| |#2|) (-10 -7 (-15 -1559 (|#2| |#2| |#2|)) (-15 -2064 (|#2| |#2| |#2|)) (-15 -1384 (|#2| |#2| |#2| (-766) (-766)))) (-1044) (-1232 |#1|)) (T -1228))
-((-1384 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-766)) (-4 *4 (-1044)) (-5 *1 (-1228 *4 *2)) (-4 *2 (-1232 *4)))) (-2064 (*1 *2 *2 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-1228 *3 *2)) (-4 *2 (-1232 *3)))) (-1559 (*1 *2 *2 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-1228 *3 *2)) (-4 *2 (-1232 *3)))))
-(-10 -7 (-15 -1559 (|#2| |#2| |#2|)) (-15 -2064 (|#2| |#2| |#2|)) (-15 -1384 (|#2| |#2| |#2| (-766) (-766))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-2844 (((-1256 |#2|) $ (-766)) NIL)) (-1402 (((-639 (-1074)) $) NIL)) (-2427 (($ (-1164 |#2|)) NIL)) (-1599 (((-1164 $) $ (-1074)) NIL) (((-1164 |#2|) $) NIL)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#2| (-554)))) (-2796 (($ $) NIL (|has| |#2| (-554)))) (-4370 (((-112) $) NIL (|has| |#2| (-554)))) (-1986 (((-766) $) NIL) (((-766) $ (-639 (-1074))) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-3258 (($ $ $) NIL (|has| |#2| (-554)))) (-3026 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-2798 (($ $) NIL (|has| |#2| (-451)))) (-2921 (((-417 $) $) NIL (|has| |#2| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-2569 (((-112) $ $) NIL (|has| |#2| (-362)))) (-2897 (($ $ (-766)) NIL)) (-3028 (($ $ (-766)) NIL)) (-4157 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-451)))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-1074) "failed") $) NIL)) (-3961 ((|#2| $) NIL) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-1074) $) NIL)) (-2835 (($ $ $ (-1074)) NIL (|has| |#2| (-171))) ((|#2| $ $) NIL (|has| |#2| (-171)))) (-1811 (($ $ $) NIL (|has| |#2| (-362)))) (-1601 (($ $) NIL)) (-2406 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL (|has| |#2| (-362)))) (-4267 (($ $ $) NIL)) (-2375 (($ $ $) NIL (|has| |#2| (-554)))) (-2622 (((-2 (|:| -4221 |#2|) (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#2| (-554)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#2| (-362)))) (-1498 (($ $) NIL (|has| |#2| (-451))) (($ $ (-1074)) NIL (|has| |#2| (-451)))) (-1586 (((-639 $) $) NIL)) (-2717 (((-112) $) NIL (|has| |#2| (-904)))) (-3122 (($ $ |#2| (-766) $) NIL)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1074) (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1074) (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-1900 (((-766) $ $) NIL (|has| |#2| (-554)))) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-3699 (((-3 $ "failed") $) NIL (|has| |#2| (-1143)))) (-1390 (($ (-1164 |#2|) (-1074)) NIL) (($ (-1164 $) (-1074)) NIL)) (-3374 (($ $ (-766)) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#2| (-362)))) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-1378 (($ |#2| (-766)) 17) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ (-1074)) NIL) (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL)) (-2076 (((-766) $) NIL) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-1551 (($ $ $) NIL (|has| |#2| (-845)))) (-2993 (($ $ $) NIL (|has| |#2| (-845)))) (-2836 (($ (-1 (-766) (-766)) $) NIL)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-4298 (((-1164 |#2|) $) NIL)) (-3372 (((-3 (-1074) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#2| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-2913 (((-1150) $) NIL)) (-3594 (((-2 (|:| -2097 $) (|:| -2264 $)) $ (-766)) NIL)) (-2042 (((-3 (-639 $) "failed") $) NIL)) (-1546 (((-3 (-639 $) "failed") $) NIL)) (-1628 (((-3 (-2 (|:| |var| (-1074)) (|:| -1960 (-766))) "failed") $) NIL)) (-2667 (($ $) NIL (|has| |#2| (-38 (-406 (-562)))))) (-3729 (($) NIL (|has| |#2| (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#2| $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#2| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-3348 (($ $ (-766) |#2| $) NIL)) (-3986 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#2| (-904)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#2| (-362)))) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#2| (-362)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1074) |#2|) NIL) (($ $ (-639 (-1074)) (-639 |#2|)) NIL) (($ $ (-1074) $) NIL) (($ $ (-639 (-1074)) (-639 $)) NIL)) (-1577 (((-766) $) NIL (|has| |#2| (-362)))) (-2343 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-406 $) (-406 $) (-406 $)) NIL (|has| |#2| (-554))) ((|#2| (-406 $) |#2|) NIL (|has| |#2| (-362))) (((-406 $) $ (-406 $)) NIL (|has| |#2| (-554)))) (-1530 (((-3 $ "failed") $ (-766)) NIL)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#2| (-362)))) (-2455 (($ $ (-1074)) NIL (|has| |#2| (-171))) ((|#2| $) NIL (|has| |#2| (-171)))) (-4029 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-3598 (((-766) $) NIL) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-1074) (-610 (-535))) (|has| |#2| (-610 (-535)))))) (-3900 ((|#2| $) NIL (|has| |#2| (-451))) (($ $ (-1074)) NIL (|has| |#2| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904))))) (-3586 (((-3 $ "failed") $ $) NIL (|has| |#2| (-554))) (((-3 (-406 $) "failed") (-406 $) $) NIL (|has| |#2| (-554)))) (-4054 (((-857) $) 13) (($ (-562)) NIL) (($ |#2|) NIL) (($ (-1074)) NIL) (($ (-1252 |#1|)) 19) (($ (-406 (-562))) NIL (-4037 (|has| |#2| (-38 (-406 (-562)))) (|has| |#2| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#2| (-554)))) (-4358 (((-639 |#2|) $) NIL)) (-3906 ((|#2| $ (-766)) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-2805 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#2| (-144))))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| |#2| (-171)))) (-2922 (((-112) $ $) NIL (|has| |#2| (-554)))) (-2286 (($) NIL T CONST)) (-2294 (($) 14 T CONST)) (-3114 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1731 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#2| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#2| (-38 (-406 (-562))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-1229 |#1| |#2|) (-13 (-1232 |#2|) (-612 (-1252 |#1|)) (-10 -8 (-15 -3348 ($ $ (-766) |#2| $)))) (-1168) (-1044)) (T -1229))
-((-3348 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1229 *4 *3)) (-14 *4 (-1168)) (-4 *3 (-1044)))))
-(-13 (-1232 |#2|) (-612 (-1252 |#1|)) (-10 -8 (-15 -3348 ($ $ (-766) |#2| $))))
+((-3358 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-2162 ((|#1| |#3|) 13)) (-2414 ((|#3| |#3|) 19)))
+(((-1225 |#1| |#2| |#3|) (-10 -7 (-15 -2162 (|#1| |#3|)) (-15 -2414 (|#3| |#3|)) (-15 -3358 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-554) (-987 |#1|) (-1232 |#2|)) (T -1225))
+((-3358 (*1 *2 *3) (-12 (-4 *4 (-554)) (-4 *5 (-987 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1225 *4 *5 *3)) (-4 *3 (-1232 *5)))) (-2414 (*1 *2 *2) (-12 (-4 *3 (-554)) (-4 *4 (-987 *3)) (-5 *1 (-1225 *3 *4 *2)) (-4 *2 (-1232 *4)))) (-2162 (*1 *2 *3) (-12 (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-1225 *2 *4 *3)) (-4 *3 (-1232 *4)))))
+(-10 -7 (-15 -2162 (|#1| |#3|)) (-15 -2414 (|#3| |#3|)) (-15 -3358 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-3366 (((-3 |#2| "failed") |#2| (-766) |#1|) 29)) (-4032 (((-3 |#2| "failed") |#2| (-766)) 30)) (-1853 (((-3 (-2 (|:| -1589 |#2|) (|:| -1603 |#2|)) "failed") |#2|) 42)) (-3602 (((-639 |#2|) |#2|) 44)) (-1485 (((-3 |#2| "failed") |#2| |#2|) 39)))
+(((-1226 |#1| |#2|) (-10 -7 (-15 -4032 ((-3 |#2| "failed") |#2| (-766))) (-15 -3366 ((-3 |#2| "failed") |#2| (-766) |#1|)) (-15 -1485 ((-3 |#2| "failed") |#2| |#2|)) (-15 -1853 ((-3 (-2 (|:| -1589 |#2|) (|:| -1603 |#2|)) "failed") |#2|)) (-15 -3602 ((-639 |#2|) |#2|))) (-13 (-554) (-146)) (-1232 |#1|)) (T -1226))
+((-3602 (*1 *2 *3) (-12 (-4 *4 (-13 (-554) (-146))) (-5 *2 (-639 *3)) (-5 *1 (-1226 *4 *3)) (-4 *3 (-1232 *4)))) (-1853 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-554) (-146))) (-5 *2 (-2 (|:| -1589 *3) (|:| -1603 *3))) (-5 *1 (-1226 *4 *3)) (-4 *3 (-1232 *4)))) (-1485 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-1226 *3 *2)) (-4 *2 (-1232 *3)))) (-3366 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-766)) (-4 *4 (-13 (-554) (-146))) (-5 *1 (-1226 *4 *2)) (-4 *2 (-1232 *4)))) (-4032 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-766)) (-4 *4 (-13 (-554) (-146))) (-5 *1 (-1226 *4 *2)) (-4 *2 (-1232 *4)))))
+(-10 -7 (-15 -4032 ((-3 |#2| "failed") |#2| (-766))) (-15 -3366 ((-3 |#2| "failed") |#2| (-766) |#1|)) (-15 -1485 ((-3 |#2| "failed") |#2| |#2|)) (-15 -1853 ((-3 (-2 (|:| -1589 |#2|) (|:| -1603 |#2|)) "failed") |#2|)) (-15 -3602 ((-639 |#2|) |#2|)))
+((-3802 (((-3 (-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) "failed") |#2| |#2|) 31)))
+(((-1227 |#1| |#2|) (-10 -7 (-15 -3802 ((-3 (-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) "failed") |#2| |#2|))) (-554) (-1232 |#1|)) (T -1227))
+((-3802 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-554)) (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-1227 *4 *3)) (-4 *3 (-1232 *4)))))
+(-10 -7 (-15 -3802 ((-3 (-2 (|:| -3380 |#2|) (|:| -1441 |#2|)) "failed") |#2| |#2|)))
+((-1900 ((|#2| |#2| |#2|) 19)) (-3035 ((|#2| |#2| |#2|) 30)) (-3225 ((|#2| |#2| |#2| (-766) (-766)) 36)))
+(((-1228 |#1| |#2|) (-10 -7 (-15 -1900 (|#2| |#2| |#2|)) (-15 -3035 (|#2| |#2| |#2|)) (-15 -3225 (|#2| |#2| |#2| (-766) (-766)))) (-1044) (-1232 |#1|)) (T -1228))
+((-3225 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-766)) (-4 *4 (-1044)) (-5 *1 (-1228 *4 *2)) (-4 *2 (-1232 *4)))) (-3035 (*1 *2 *2 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-1228 *3 *2)) (-4 *2 (-1232 *3)))) (-1900 (*1 *2 *2 *2) (-12 (-4 *3 (-1044)) (-5 *1 (-1228 *3 *2)) (-4 *2 (-1232 *3)))))
+(-10 -7 (-15 -1900 (|#2| |#2| |#2|)) (-15 -3035 (|#2| |#2| |#2|)) (-15 -3225 (|#2| |#2| |#2| (-766) (-766))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-4263 (((-1256 |#2|) $ (-766)) NIL)) (-1401 (((-639 (-1074)) $) NIL)) (-2505 (($ (-1164 |#2|)) NIL)) (-1602 (((-1164 $) $ (-1074)) NIL) (((-1164 |#2|) $) NIL)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#2| (-554)))) (-1965 (($ $) NIL (|has| |#2| (-554)))) (-4102 (((-112) $) NIL (|has| |#2| (-554)))) (-1578 (((-766) $) NIL) (((-766) $ (-639 (-1074))) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-2035 (($ $ $) NIL (|has| |#2| (-554)))) (-3517 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1977 (($ $) NIL (|has| |#2| (-451)))) (-3788 (((-417 $) $) NIL (|has| |#2| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1436 (((-112) $ $) NIL (|has| |#2| (-362)))) (-1730 (($ $ (-766)) NIL)) (-3538 (($ $ (-766)) NIL)) (-2687 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-451)))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL) (((-3 (-406 (-562)) "failed") $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) NIL (|has| |#2| (-1033 (-562)))) (((-3 (-1074) "failed") $) NIL)) (-3960 ((|#2| $) NIL) (((-406 (-562)) $) NIL (|has| |#2| (-1033 (-406 (-562))))) (((-562) $) NIL (|has| |#2| (-1033 (-562)))) (((-1074) $) NIL)) (-2355 (($ $ $ (-1074)) NIL (|has| |#2| (-171))) ((|#2| $ $) NIL (|has| |#2| (-171)))) (-1810 (($ $ $) NIL (|has| |#2| (-362)))) (-1600 (($ $) NIL)) (-3449 (((-683 (-562)) (-683 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) NIL (|has| |#2| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#2|)) (|:| |vec| (-1256 |#2|))) (-683 $) (-1256 $)) NIL) (((-683 |#2|) (-683 $)) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1787 (($ $ $) NIL (|has| |#2| (-362)))) (-4296 (($ $ $) NIL)) (-3127 (($ $ $) NIL (|has| |#2| (-554)))) (-3840 (((-2 (|:| -4221 |#2|) (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#2| (-554)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#2| (-362)))) (-2578 (($ $) NIL (|has| |#2| (-451))) (($ $ (-1074)) NIL (|has| |#2| (-451)))) (-1585 (((-639 $) $) NIL)) (-3521 (((-112) $) NIL (|has| |#2| (-904)))) (-3066 (($ $ |#2| (-766) $) NIL)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) NIL (-12 (|has| (-1074) (-881 (-378))) (|has| |#2| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) NIL (-12 (|has| (-1074) (-881 (-562))) (|has| |#2| (-881 (-562)))))) (-1993 (((-766) $ $) NIL (|has| |#2| (-554)))) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-3828 (((-3 $ "failed") $) NIL (|has| |#2| (-1143)))) (-1389 (($ (-1164 |#2|) (-1074)) NIL) (($ (-1164 $) (-1074)) NIL)) (-3662 (($ $ (-766)) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#2| (-362)))) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-1377 (($ |#2| (-766)) 17) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ (-1074)) NIL) (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL)) (-3161 (((-766) $) NIL) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-1551 (($ $ $) NIL (|has| |#2| (-845)))) (-2993 (($ $ $) NIL (|has| |#2| (-845)))) (-2363 (($ (-1 (-766) (-766)) $) NIL)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-1556 (((-1164 |#2|) $) NIL)) (-3640 (((-3 (-1074) "failed") $) NIL)) (-1560 (($ $) NIL)) (-1573 ((|#2| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-3696 (((-1150) $) NIL)) (-2215 (((-2 (|:| -3380 $) (|:| -1441 $)) $ (-766)) NIL)) (-4025 (((-3 (-639 $) "failed") $) NIL)) (-1778 (((-3 (-639 $) "failed") $) NIL)) (-4270 (((-3 (-2 (|:| |var| (-1074)) (|:| -1300 (-766))) "failed") $) NIL)) (-3081 (($ $) NIL (|has| |#2| (-38 (-406 (-562)))))) (-3730 (($) NIL (|has| |#2| (-1143)) CONST)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 ((|#2| $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#2| (-451)))) (-1606 (($ (-639 $)) NIL (|has| |#2| (-451))) (($ $ $) NIL (|has| |#2| (-451)))) (-1601 (($ $ (-766) |#2| $) NIL)) (-3586 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) NIL (|has| |#2| (-904)))) (-1635 (((-417 $) $) NIL (|has| |#2| (-904)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#2| (-362)))) (-1762 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-554))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#2| (-362)))) (-1433 (($ $ (-639 (-293 $))) NIL) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1074) |#2|) NIL) (($ $ (-639 (-1074)) (-639 |#2|)) NIL) (($ $ (-1074) $) NIL) (($ $ (-639 (-1074)) (-639 $)) NIL)) (-2044 (((-766) $) NIL (|has| |#2| (-362)))) (-2343 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-406 $) (-406 $) (-406 $)) NIL (|has| |#2| (-554))) ((|#2| (-406 $) |#2|) NIL (|has| |#2| (-362))) (((-406 $) $ (-406 $)) NIL (|has| |#2| (-554)))) (-1610 (((-3 $ "failed") $ (-766)) NIL)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#2| (-362)))) (-2736 (($ $ (-1074)) NIL (|has| |#2| (-171))) ((|#2| $) NIL (|has| |#2| (-171)))) (-4029 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-2250 (((-766) $) NIL) (((-766) $ (-1074)) NIL) (((-639 (-766)) $ (-639 (-1074))) NIL)) (-4208 (((-887 (-378)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-378)))) (|has| |#2| (-610 (-887 (-378)))))) (((-887 (-562)) $) NIL (-12 (|has| (-1074) (-610 (-887 (-562)))) (|has| |#2| (-610 (-887 (-562)))))) (((-535) $) NIL (-12 (|has| (-1074) (-610 (-535))) (|has| |#2| (-610 (-535)))))) (-2201 ((|#2| $) NIL (|has| |#2| (-451))) (($ $ (-1074)) NIL (|has| |#2| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) NIL (-12 (|has| $ (-144)) (|has| |#2| (-904))))) (-2155 (((-3 $ "failed") $ $) NIL (|has| |#2| (-554))) (((-3 (-406 $) "failed") (-406 $) $) NIL (|has| |#2| (-554)))) (-4053 (((-857) $) 13) (($ (-562)) NIL) (($ |#2|) NIL) (($ (-1074)) NIL) (($ (-1252 |#1|)) 19) (($ (-406 (-562))) NIL (-4037 (|has| |#2| (-38 (-406 (-562)))) (|has| |#2| (-1033 (-406 (-562)))))) (($ $) NIL (|has| |#2| (-554)))) (-3969 (((-639 |#2|) $) NIL)) (-2266 ((|#2| $ (-766)) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-2059 (((-3 $ "failed") $) NIL (-4037 (-12 (|has| $ (-144)) (|has| |#2| (-904))) (|has| |#2| (-144))))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| |#2| (-171)))) (-3799 (((-112) $ $) NIL (|has| |#2| (-554)))) (-2285 (($) NIL T CONST)) (-2294 (($) 14 T CONST)) (-3113 (($ $ (-1074)) NIL) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) NIL) (($ $ (-1168)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1168) (-766)) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) NIL (|has| |#2| (-895 (-1168)))) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1798 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1733 (((-112) $ $) NIL)) (-1785 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#2| (-845)))) (-1859 (($ $ |#2|) NIL (|has| |#2| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-406 (-562))) NIL (|has| |#2| (-38 (-406 (-562))))) (($ (-406 (-562)) $) NIL (|has| |#2| (-38 (-406 (-562))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-1229 |#1| |#2|) (-13 (-1232 |#2|) (-612 (-1252 |#1|)) (-10 -8 (-15 -1601 ($ $ (-766) |#2| $)))) (-1168) (-1044)) (T -1229))
+((-1601 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1229 *4 *3)) (-14 *4 (-1168)) (-4 *3 (-1044)))))
+(-13 (-1232 |#2|) (-612 (-1252 |#1|)) (-10 -8 (-15 -1601 ($ $ (-766) |#2| $))))
((-4152 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
(((-1230 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4152 (|#4| (-1 |#3| |#1|) |#2|))) (-1044) (-1232 |#1|) (-1044) (-1232 |#3|)) (T -1230))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1044)) (-4 *6 (-1044)) (-4 *2 (-1232 *6)) (-5 *1 (-1230 *5 *4 *6 *2)) (-4 *4 (-1232 *5)))))
(-10 -7 (-15 -4152 (|#4| (-1 |#3| |#1|) |#2|)))
-((-2844 (((-1256 |#2|) $ (-766)) 114)) (-1402 (((-639 (-1074)) $) 15)) (-2427 (($ (-1164 |#2|)) 67)) (-1986 (((-766) $) NIL) (((-766) $ (-639 (-1074))) 18)) (-3026 (((-417 (-1164 $)) (-1164 $)) 184)) (-2798 (($ $) 174)) (-2921 (((-417 $) $) 172)) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 82)) (-2897 (($ $ (-766)) 71)) (-3028 (($ $ (-766)) 73)) (-4157 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 130)) (-4048 (((-3 |#2| "failed") $) 117) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 (-562) "failed") $) NIL) (((-3 (-1074) "failed") $) NIL)) (-3961 ((|#2| $) 115) (((-406 (-562)) $) NIL) (((-562) $) NIL) (((-1074) $) NIL)) (-2375 (($ $ $) 151)) (-2622 (((-2 (|:| -4221 |#2|) (|:| -2097 $) (|:| -2264 $)) $ $) 153)) (-1900 (((-766) $ $) 169)) (-3699 (((-3 $ "failed") $) 123)) (-1378 (($ |#2| (-766)) NIL) (($ $ (-1074) (-766)) 47) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-2076 (((-766) $) NIL) (((-766) $ (-1074)) 42) (((-639 (-766)) $ (-639 (-1074))) 43)) (-4298 (((-1164 |#2|) $) 59)) (-3372 (((-3 (-1074) "failed") $) 40)) (-3594 (((-2 (|:| -2097 $) (|:| -2264 $)) $ (-766)) 70)) (-2667 (($ $) 196)) (-3729 (($) 119)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 181)) (-3986 (((-417 (-1164 $)) (-1164 $)) 88)) (-3480 (((-417 (-1164 $)) (-1164 $)) 86)) (-1635 (((-417 $) $) 107)) (-1433 (($ $ (-639 (-293 $))) 39) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1074) |#2|) 31) (($ $ (-639 (-1074)) (-639 |#2|)) 28) (($ $ (-1074) $) 25) (($ $ (-639 (-1074)) (-639 $)) 23)) (-1577 (((-766) $) 187)) (-2343 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-406 $) (-406 $) (-406 $)) 147) ((|#2| (-406 $) |#2|) 186) (((-406 $) $ (-406 $)) 168)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 190)) (-4029 (($ $ (-1074)) 140) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) 138) (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) 137) (($ $ (-1 |#2| |#2|) $) 134)) (-3598 (((-766) $) NIL) (((-766) $ (-1074)) 16) (((-639 (-766)) $ (-639 (-1074))) 20)) (-3900 ((|#2| $) NIL) (($ $ (-1074)) 125)) (-3586 (((-3 $ "failed") $ $) 161) (((-3 (-406 $) "failed") (-406 $) $) 157)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) NIL) (($ (-1074)) 51) (($ (-406 (-562))) NIL) (($ $) NIL)))
-(((-1231 |#1| |#2|) (-10 -8 (-15 -4054 (|#1| |#1|)) (-15 -2741 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))) (-15 -2921 ((-417 |#1|) |#1|)) (-15 -2798 (|#1| |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -3729 (|#1|)) (-15 -3699 ((-3 |#1| "failed") |#1|)) (-15 -2343 ((-406 |#1|) |#1| (-406 |#1|))) (-15 -1577 ((-766) |#1|)) (-15 -2080 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -2667 (|#1| |#1|)) (-15 -2343 (|#2| (-406 |#1|) |#2|)) (-15 -4157 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -2622 ((-2 (|:| -4221 |#2|) (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -2375 (|#1| |#1| |#1|)) (-15 -3586 ((-3 (-406 |#1|) "failed") (-406 |#1|) |#1|)) (-15 -3586 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1900 ((-766) |#1| |#1|)) (-15 -2343 ((-406 |#1|) (-406 |#1|) (-406 |#1|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -3028 (|#1| |#1| (-766))) (-15 -2897 (|#1| |#1| (-766))) (-15 -3594 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| (-766))) (-15 -2427 (|#1| (-1164 |#2|))) (-15 -4298 ((-1164 |#2|) |#1|)) (-15 -2844 ((-1256 |#2|) |#1| (-766))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -2343 (|#1| |#1| |#1|)) (-15 -2343 (|#2| |#1| |#2|)) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3026 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3480 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3986 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -4150 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -3900 (|#1| |#1| (-1074))) (-15 -1402 ((-639 (-1074)) |#1|)) (-15 -1986 ((-766) |#1| (-639 (-1074)))) (-15 -1986 ((-766) |#1|)) (-15 -1378 (|#1| |#1| (-639 (-1074)) (-639 (-766)))) (-15 -1378 (|#1| |#1| (-1074) (-766))) (-15 -2076 ((-639 (-766)) |#1| (-639 (-1074)))) (-15 -2076 ((-766) |#1| (-1074))) (-15 -3372 ((-3 (-1074) "failed") |#1|)) (-15 -3598 ((-639 (-766)) |#1| (-639 (-1074)))) (-15 -3598 ((-766) |#1| (-1074))) (-15 -4054 (|#1| (-1074))) (-15 -4048 ((-3 (-1074) "failed") |#1|)) (-15 -3961 ((-1074) |#1|)) (-15 -1433 (|#1| |#1| (-639 (-1074)) (-639 |#1|))) (-15 -1433 (|#1| |#1| (-1074) |#1|)) (-15 -1433 (|#1| |#1| (-639 (-1074)) (-639 |#2|))) (-15 -1433 (|#1| |#1| (-1074) |#2|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -3598 ((-766) |#1|)) (-15 -1378 (|#1| |#2| (-766))) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -2076 ((-766) |#1|)) (-15 -3900 (|#2| |#1|)) (-15 -4029 (|#1| |#1| (-639 (-1074)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1074) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1074)))) (-15 -4029 (|#1| |#1| (-1074))) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|))) (-1232 |#2|) (-1044)) (T -1231))
+((-4263 (((-1256 |#2|) $ (-766)) 114)) (-1401 (((-639 (-1074)) $) 15)) (-2505 (($ (-1164 |#2|)) 67)) (-1578 (((-766) $) NIL) (((-766) $ (-639 (-1074))) 18)) (-3517 (((-417 (-1164 $)) (-1164 $)) 184)) (-1977 (($ $) 174)) (-3788 (((-417 $) $) 172)) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 82)) (-1730 (($ $ (-766)) 71)) (-3538 (($ $ (-766)) 73)) (-2687 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 130)) (-4048 (((-3 |#2| "failed") $) 117) (((-3 (-406 (-562)) "failed") $) NIL) (((-3 (-562) "failed") $) NIL) (((-3 (-1074) "failed") $) NIL)) (-3960 ((|#2| $) 115) (((-406 (-562)) $) NIL) (((-562) $) NIL) (((-1074) $) NIL)) (-3127 (($ $ $) 151)) (-3840 (((-2 (|:| -4221 |#2|) (|:| -3380 $) (|:| -1441 $)) $ $) 153)) (-1993 (((-766) $ $) 169)) (-3828 (((-3 $ "failed") $) 123)) (-1377 (($ |#2| (-766)) NIL) (($ $ (-1074) (-766)) 47) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-3161 (((-766) $) NIL) (((-766) $ (-1074)) 42) (((-639 (-766)) $ (-639 (-1074))) 43)) (-1556 (((-1164 |#2|) $) 59)) (-3640 (((-3 (-1074) "failed") $) 40)) (-2215 (((-2 (|:| -3380 $) (|:| -1441 $)) $ (-766)) 70)) (-3081 (($ $) 196)) (-3730 (($) 119)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 181)) (-3586 (((-417 (-1164 $)) (-1164 $)) 88)) (-3468 (((-417 (-1164 $)) (-1164 $)) 86)) (-1635 (((-417 $) $) 107)) (-1433 (($ $ (-639 (-293 $))) 39) (($ $ (-293 $)) NIL) (($ $ $ $) NIL) (($ $ (-639 $) (-639 $)) NIL) (($ $ (-1074) |#2|) 31) (($ $ (-639 (-1074)) (-639 |#2|)) 28) (($ $ (-1074) $) 25) (($ $ (-639 (-1074)) (-639 $)) 23)) (-2044 (((-766) $) 187)) (-2343 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-406 $) (-406 $) (-406 $)) 147) ((|#2| (-406 $) |#2|) 186) (((-406 $) $ (-406 $)) 168)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 190)) (-4029 (($ $ (-1074)) 140) (($ $ (-639 (-1074))) NIL) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL) (($ $ (-766)) NIL) (($ $) 138) (($ $ (-1168)) NIL) (($ $ (-639 (-1168))) NIL) (($ $ (-1168) (-766)) NIL) (($ $ (-639 (-1168)) (-639 (-766))) NIL) (($ $ (-1 |#2| |#2|) (-766)) NIL) (($ $ (-1 |#2| |#2|)) 137) (($ $ (-1 |#2| |#2|) $) 134)) (-2250 (((-766) $) NIL) (((-766) $ (-1074)) 16) (((-639 (-766)) $ (-639 (-1074))) 20)) (-2201 ((|#2| $) NIL) (($ $ (-1074)) 125)) (-2155 (((-3 $ "failed") $ $) 161) (((-3 (-406 $) "failed") (-406 $) $) 157)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#2|) NIL) (($ (-1074)) 51) (($ (-406 (-562))) NIL) (($ $) NIL)))
+(((-1231 |#1| |#2|) (-10 -8 (-15 -4053 (|#1| |#1|)) (-15 -2602 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))) (-15 -3788 ((-417 |#1|) |#1|)) (-15 -1977 (|#1| |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -3730 (|#1|)) (-15 -3828 ((-3 |#1| "failed") |#1|)) (-15 -2343 ((-406 |#1|) |#1| (-406 |#1|))) (-15 -2044 ((-766) |#1|)) (-15 -3204 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -3081 (|#1| |#1|)) (-15 -2343 (|#2| (-406 |#1|) |#2|)) (-15 -2687 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3840 ((-2 (|:| -4221 |#2|) (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -3127 (|#1| |#1| |#1|)) (-15 -2155 ((-3 (-406 |#1|) "failed") (-406 |#1|) |#1|)) (-15 -2155 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1993 ((-766) |#1| |#1|)) (-15 -2343 ((-406 |#1|) (-406 |#1|) (-406 |#1|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -3538 (|#1| |#1| (-766))) (-15 -1730 (|#1| |#1| (-766))) (-15 -2215 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| (-766))) (-15 -2505 (|#1| (-1164 |#2|))) (-15 -1556 ((-1164 |#2|) |#1|)) (-15 -4263 ((-1256 |#2|) |#1| (-766))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -2343 (|#1| |#1| |#1|)) (-15 -2343 (|#2| |#1| |#2|)) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3517 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3468 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3586 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -2654 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -2201 (|#1| |#1| (-1074))) (-15 -1401 ((-639 (-1074)) |#1|)) (-15 -1578 ((-766) |#1| (-639 (-1074)))) (-15 -1578 ((-766) |#1|)) (-15 -1377 (|#1| |#1| (-639 (-1074)) (-639 (-766)))) (-15 -1377 (|#1| |#1| (-1074) (-766))) (-15 -3161 ((-639 (-766)) |#1| (-639 (-1074)))) (-15 -3161 ((-766) |#1| (-1074))) (-15 -3640 ((-3 (-1074) "failed") |#1|)) (-15 -2250 ((-639 (-766)) |#1| (-639 (-1074)))) (-15 -2250 ((-766) |#1| (-1074))) (-15 -4053 (|#1| (-1074))) (-15 -4048 ((-3 (-1074) "failed") |#1|)) (-15 -3960 ((-1074) |#1|)) (-15 -1433 (|#1| |#1| (-639 (-1074)) (-639 |#1|))) (-15 -1433 (|#1| |#1| (-1074) |#1|)) (-15 -1433 (|#1| |#1| (-639 (-1074)) (-639 |#2|))) (-15 -1433 (|#1| |#1| (-1074) |#2|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -2250 ((-766) |#1|)) (-15 -1377 (|#1| |#2| (-766))) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -3161 ((-766) |#1|)) (-15 -2201 (|#2| |#1|)) (-15 -4029 (|#1| |#1| (-639 (-1074)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1074) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1074)))) (-15 -4029 (|#1| |#1| (-1074))) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|))) (-1232 |#2|) (-1044)) (T -1231))
NIL
-(-10 -8 (-15 -4054 (|#1| |#1|)) (-15 -2741 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))) (-15 -2921 ((-417 |#1|) |#1|)) (-15 -2798 (|#1| |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -3729 (|#1|)) (-15 -3699 ((-3 |#1| "failed") |#1|)) (-15 -2343 ((-406 |#1|) |#1| (-406 |#1|))) (-15 -1577 ((-766) |#1|)) (-15 -2080 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -2667 (|#1| |#1|)) (-15 -2343 (|#2| (-406 |#1|) |#2|)) (-15 -4157 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -2622 ((-2 (|:| -4221 |#2|) (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| |#1|)) (-15 -2375 (|#1| |#1| |#1|)) (-15 -3586 ((-3 (-406 |#1|) "failed") (-406 |#1|) |#1|)) (-15 -3586 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1900 ((-766) |#1| |#1|)) (-15 -2343 ((-406 |#1|) (-406 |#1|) (-406 |#1|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -3028 (|#1| |#1| (-766))) (-15 -2897 (|#1| |#1| (-766))) (-15 -3594 ((-2 (|:| -2097 |#1|) (|:| -2264 |#1|)) |#1| (-766))) (-15 -2427 (|#1| (-1164 |#2|))) (-15 -4298 ((-1164 |#2|) |#1|)) (-15 -2844 ((-1256 |#2|) |#1| (-766))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -2343 (|#1| |#1| |#1|)) (-15 -2343 (|#2| |#1| |#2|)) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3026 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3480 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3986 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -4150 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -3900 (|#1| |#1| (-1074))) (-15 -1402 ((-639 (-1074)) |#1|)) (-15 -1986 ((-766) |#1| (-639 (-1074)))) (-15 -1986 ((-766) |#1|)) (-15 -1378 (|#1| |#1| (-639 (-1074)) (-639 (-766)))) (-15 -1378 (|#1| |#1| (-1074) (-766))) (-15 -2076 ((-639 (-766)) |#1| (-639 (-1074)))) (-15 -2076 ((-766) |#1| (-1074))) (-15 -3372 ((-3 (-1074) "failed") |#1|)) (-15 -3598 ((-639 (-766)) |#1| (-639 (-1074)))) (-15 -3598 ((-766) |#1| (-1074))) (-15 -4054 (|#1| (-1074))) (-15 -4048 ((-3 (-1074) "failed") |#1|)) (-15 -3961 ((-1074) |#1|)) (-15 -1433 (|#1| |#1| (-639 (-1074)) (-639 |#1|))) (-15 -1433 (|#1| |#1| (-1074) |#1|)) (-15 -1433 (|#1| |#1| (-639 (-1074)) (-639 |#2|))) (-15 -1433 (|#1| |#1| (-1074) |#2|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -3598 ((-766) |#1|)) (-15 -1378 (|#1| |#2| (-766))) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3961 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3961 ((-406 (-562)) |#1|)) (-15 -3961 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4054 (|#1| |#2|)) (-15 -2076 ((-766) |#1|)) (-15 -3900 (|#2| |#1|)) (-15 -4029 (|#1| |#1| (-639 (-1074)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1074) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1074)))) (-15 -4029 (|#1| |#1| (-1074))) (-15 -4054 (|#1| (-562))) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-2844 (((-1256 |#1|) $ (-766)) 238)) (-1402 (((-639 (-1074)) $) 110)) (-2427 (($ (-1164 |#1|)) 236)) (-1599 (((-1164 $) $ (-1074)) 125) (((-1164 |#1|) $) 124)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 87 (|has| |#1| (-554)))) (-2796 (($ $) 88 (|has| |#1| (-554)))) (-4370 (((-112) $) 90 (|has| |#1| (-554)))) (-1986 (((-766) $) 112) (((-766) $ (-639 (-1074))) 111)) (-3214 (((-3 $ "failed") $ $) 19)) (-3258 (($ $ $) 223 (|has| |#1| (-554)))) (-3026 (((-417 (-1164 $)) (-1164 $)) 100 (|has| |#1| (-904)))) (-2798 (($ $) 98 (|has| |#1| (-451)))) (-2921 (((-417 $) $) 97 (|has| |#1| (-451)))) (-4150 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 103 (|has| |#1| (-904)))) (-2569 (((-112) $ $) 208 (|has| |#1| (-362)))) (-2897 (($ $ (-766)) 231)) (-3028 (($ $ (-766)) 230)) (-4157 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 218 (|has| |#1| (-451)))) (-1800 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 164) (((-3 (-406 (-562)) "failed") $) 161 (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) 159 (|has| |#1| (-1033 (-562)))) (((-3 (-1074) "failed") $) 136)) (-3961 ((|#1| $) 163) (((-406 (-562)) $) 162 (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) 160 (|has| |#1| (-1033 (-562)))) (((-1074) $) 137)) (-2835 (($ $ $ (-1074)) 108 (|has| |#1| (-171))) ((|#1| $ $) 226 (|has| |#1| (-171)))) (-1811 (($ $ $) 212 (|has| |#1| (-362)))) (-1601 (($ $) 154)) (-2406 (((-683 (-562)) (-683 $)) 134 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 133 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1545 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 132) (((-683 |#1|) (-683 $)) 131)) (-3668 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 211 (|has| |#1| (-362)))) (-4267 (($ $ $) 229)) (-2375 (($ $ $) 220 (|has| |#1| (-554)))) (-2622 (((-2 (|:| -4221 |#1|) (|:| -2097 $) (|:| -2264 $)) $ $) 219 (|has| |#1| (-554)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 206 (|has| |#1| (-362)))) (-1498 (($ $) 176 (|has| |#1| (-451))) (($ $ (-1074)) 105 (|has| |#1| (-451)))) (-1586 (((-639 $) $) 109)) (-2717 (((-112) $) 96 (|has| |#1| (-904)))) (-3122 (($ $ |#1| (-766) $) 172)) (-2533 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 84 (-12 (|has| (-1074) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 83 (-12 (|has| (-1074) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1900 (((-766) $ $) 224 (|has| |#1| (-554)))) (-1957 (((-112) $) 31)) (-1694 (((-766) $) 169)) (-3699 (((-3 $ "failed") $) 204 (|has| |#1| (-1143)))) (-1390 (($ (-1164 |#1|) (-1074)) 117) (($ (-1164 $) (-1074)) 116)) (-3374 (($ $ (-766)) 235)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 215 (|has| |#1| (-362)))) (-1889 (((-639 $) $) 126)) (-3536 (((-112) $) 152)) (-1378 (($ |#1| (-766)) 153) (($ $ (-1074) (-766)) 119) (($ $ (-639 (-1074)) (-639 (-766))) 118)) (-2623 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $ (-1074)) 120) (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 233)) (-2076 (((-766) $) 170) (((-766) $ (-1074)) 122) (((-639 (-766)) $ (-639 (-1074))) 121)) (-1551 (($ $ $) 79 (|has| |#1| (-845)))) (-2993 (($ $ $) 78 (|has| |#1| (-845)))) (-2836 (($ (-1 (-766) (-766)) $) 171)) (-4152 (($ (-1 |#1| |#1|) $) 151)) (-4298 (((-1164 |#1|) $) 237)) (-3372 (((-3 (-1074) "failed") $) 123)) (-1560 (($ $) 149)) (-1573 ((|#1| $) 148)) (-1564 (($ (-639 $)) 94 (|has| |#1| (-451))) (($ $ $) 93 (|has| |#1| (-451)))) (-2913 (((-1150) $) 9)) (-3594 (((-2 (|:| -2097 $) (|:| -2264 $)) $ (-766)) 232)) (-2042 (((-3 (-639 $) "failed") $) 114)) (-1546 (((-3 (-639 $) "failed") $) 115)) (-1628 (((-3 (-2 (|:| |var| (-1074)) (|:| -1960 (-766))) "failed") $) 113)) (-2667 (($ $) 216 (|has| |#1| (-38 (-406 (-562)))))) (-3729 (($) 203 (|has| |#1| (-1143)) CONST)) (-1709 (((-1112) $) 10)) (-1534 (((-112) $) 166)) (-1547 ((|#1| $) 167)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 95 (|has| |#1| (-451)))) (-1606 (($ (-639 $)) 92 (|has| |#1| (-451))) (($ $ $) 91 (|has| |#1| (-451)))) (-3986 (((-417 (-1164 $)) (-1164 $)) 102 (|has| |#1| (-904)))) (-3480 (((-417 (-1164 $)) (-1164 $)) 101 (|has| |#1| (-904)))) (-1635 (((-417 $) $) 99 (|has| |#1| (-904)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 214 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 213 (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 207 (|has| |#1| (-362)))) (-1433 (($ $ (-639 (-293 $))) 145) (($ $ (-293 $)) 144) (($ $ $ $) 143) (($ $ (-639 $) (-639 $)) 142) (($ $ (-1074) |#1|) 141) (($ $ (-639 (-1074)) (-639 |#1|)) 140) (($ $ (-1074) $) 139) (($ $ (-639 (-1074)) (-639 $)) 138)) (-1577 (((-766) $) 209 (|has| |#1| (-362)))) (-2343 ((|#1| $ |#1|) 256) (($ $ $) 255) (((-406 $) (-406 $) (-406 $)) 225 (|has| |#1| (-554))) ((|#1| (-406 $) |#1|) 217 (|has| |#1| (-362))) (((-406 $) $ (-406 $)) 205 (|has| |#1| (-554)))) (-1530 (((-3 $ "failed") $ (-766)) 234)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 210 (|has| |#1| (-362)))) (-2455 (($ $ (-1074)) 107 (|has| |#1| (-171))) ((|#1| $) 227 (|has| |#1| (-171)))) (-4029 (($ $ (-1074)) 42) (($ $ (-639 (-1074))) 41) (($ $ (-1074) (-766)) 40) (($ $ (-639 (-1074)) (-639 (-766))) 39) (($ $ (-766)) 253) (($ $) 251) (($ $ (-1168)) 250 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 249 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 248 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 247 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 240) (($ $ (-1 |#1| |#1|)) 239) (($ $ (-1 |#1| |#1|) $) 228)) (-3598 (((-766) $) 150) (((-766) $ (-1074)) 130) (((-639 (-766)) $ (-639 (-1074))) 129)) (-4208 (((-887 (-378)) $) 82 (-12 (|has| (-1074) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) 81 (-12 (|has| (-1074) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) 80 (-12 (|has| (-1074) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-3900 ((|#1| $) 175 (|has| |#1| (-451))) (($ $ (-1074)) 106 (|has| |#1| (-451)))) (-1289 (((-3 (-1256 $) "failed") (-683 $)) 104 (-2246 (|has| $ (-144)) (|has| |#1| (-904))))) (-3586 (((-3 $ "failed") $ $) 222 (|has| |#1| (-554))) (((-3 (-406 $) "failed") (-406 $) $) 221 (|has| |#1| (-554)))) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 165) (($ (-1074)) 135) (($ (-406 (-562))) 72 (-4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562)))))) (($ $) 85 (|has| |#1| (-554)))) (-4358 (((-639 |#1|) $) 168)) (-3906 ((|#1| $ (-766)) 155) (($ $ (-1074) (-766)) 128) (($ $ (-639 (-1074)) (-639 (-766))) 127)) (-2805 (((-3 $ "failed") $) 73 (-4037 (-2246 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-2579 (((-766)) 28)) (-3548 (($ $ $ (-766)) 173 (|has| |#1| (-171)))) (-2922 (((-112) $ $) 89 (|has| |#1| (-554)))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-1074)) 38) (($ $ (-639 (-1074))) 37) (($ $ (-1074) (-766)) 36) (($ $ (-639 (-1074)) (-639 (-766))) 35) (($ $ (-766)) 254) (($ $) 252) (($ $ (-1168)) 246 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 245 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 244 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 243 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 242) (($ $ (-1 |#1| |#1|)) 241)) (-1798 (((-112) $ $) 76 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 75 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 6)) (-1785 (((-112) $ $) 77 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 74 (|has| |#1| (-845)))) (-1859 (($ $ |#1|) 156 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 158 (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) 157 (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
+(-10 -8 (-15 -4053 (|#1| |#1|)) (-15 -2602 ((-1164 |#1|) (-1164 |#1|) (-1164 |#1|))) (-15 -3788 ((-417 |#1|) |#1|)) (-15 -1977 (|#1| |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -3730 (|#1|)) (-15 -3828 ((-3 |#1| "failed") |#1|)) (-15 -2343 ((-406 |#1|) |#1| (-406 |#1|))) (-15 -2044 ((-766) |#1|)) (-15 -3204 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -3081 (|#1| |#1|)) (-15 -2343 (|#2| (-406 |#1|) |#2|)) (-15 -2687 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3840 ((-2 (|:| -4221 |#2|) (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| |#1|)) (-15 -3127 (|#1| |#1| |#1|)) (-15 -2155 ((-3 (-406 |#1|) "failed") (-406 |#1|) |#1|)) (-15 -2155 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1993 ((-766) |#1| |#1|)) (-15 -2343 ((-406 |#1|) (-406 |#1|) (-406 |#1|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -3538 (|#1| |#1| (-766))) (-15 -1730 (|#1| |#1| (-766))) (-15 -2215 ((-2 (|:| -3380 |#1|) (|:| -1441 |#1|)) |#1| (-766))) (-15 -2505 (|#1| (-1164 |#2|))) (-15 -1556 ((-1164 |#2|) |#1|)) (-15 -4263 ((-1256 |#2|) |#1| (-766))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|))) (-15 -4029 (|#1| |#1| (-1 |#2| |#2|) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1168) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1168)))) (-15 -4029 (|#1| |#1| (-1168))) (-15 -4029 (|#1| |#1|)) (-15 -4029 (|#1| |#1| (-766))) (-15 -2343 (|#1| |#1| |#1|)) (-15 -2343 (|#2| |#1| |#2|)) (-15 -1635 ((-417 |#1|) |#1|)) (-15 -3517 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3468 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -3586 ((-417 (-1164 |#1|)) (-1164 |#1|))) (-15 -2654 ((-3 (-639 (-1164 |#1|)) "failed") (-639 (-1164 |#1|)) (-1164 |#1|))) (-15 -2201 (|#1| |#1| (-1074))) (-15 -1401 ((-639 (-1074)) |#1|)) (-15 -1578 ((-766) |#1| (-639 (-1074)))) (-15 -1578 ((-766) |#1|)) (-15 -1377 (|#1| |#1| (-639 (-1074)) (-639 (-766)))) (-15 -1377 (|#1| |#1| (-1074) (-766))) (-15 -3161 ((-639 (-766)) |#1| (-639 (-1074)))) (-15 -3161 ((-766) |#1| (-1074))) (-15 -3640 ((-3 (-1074) "failed") |#1|)) (-15 -2250 ((-639 (-766)) |#1| (-639 (-1074)))) (-15 -2250 ((-766) |#1| (-1074))) (-15 -4053 (|#1| (-1074))) (-15 -4048 ((-3 (-1074) "failed") |#1|)) (-15 -3960 ((-1074) |#1|)) (-15 -1433 (|#1| |#1| (-639 (-1074)) (-639 |#1|))) (-15 -1433 (|#1| |#1| (-1074) |#1|)) (-15 -1433 (|#1| |#1| (-639 (-1074)) (-639 |#2|))) (-15 -1433 (|#1| |#1| (-1074) |#2|)) (-15 -1433 (|#1| |#1| (-639 |#1|) (-639 |#1|))) (-15 -1433 (|#1| |#1| |#1| |#1|)) (-15 -1433 (|#1| |#1| (-293 |#1|))) (-15 -1433 (|#1| |#1| (-639 (-293 |#1|)))) (-15 -2250 ((-766) |#1|)) (-15 -1377 (|#1| |#2| (-766))) (-15 -4048 ((-3 (-562) "failed") |#1|)) (-15 -3960 ((-562) |#1|)) (-15 -4048 ((-3 (-406 (-562)) "failed") |#1|)) (-15 -3960 ((-406 (-562)) |#1|)) (-15 -3960 (|#2| |#1|)) (-15 -4048 ((-3 |#2| "failed") |#1|)) (-15 -4053 (|#1| |#2|)) (-15 -3161 ((-766) |#1|)) (-15 -2201 (|#2| |#1|)) (-15 -4029 (|#1| |#1| (-639 (-1074)) (-639 (-766)))) (-15 -4029 (|#1| |#1| (-1074) (-766))) (-15 -4029 (|#1| |#1| (-639 (-1074)))) (-15 -4029 (|#1| |#1| (-1074))) (-15 -4053 (|#1| (-562))) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-4263 (((-1256 |#1|) $ (-766)) 238)) (-1401 (((-639 (-1074)) $) 110)) (-2505 (($ (-1164 |#1|)) 236)) (-1602 (((-1164 $) $ (-1074)) 125) (((-1164 |#1|) $) 124)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 87 (|has| |#1| (-554)))) (-1965 (($ $) 88 (|has| |#1| (-554)))) (-4102 (((-112) $) 90 (|has| |#1| (-554)))) (-1578 (((-766) $) 112) (((-766) $ (-639 (-1074))) 111)) (-2781 (((-3 $ "failed") $ $) 19)) (-2035 (($ $ $) 223 (|has| |#1| (-554)))) (-3517 (((-417 (-1164 $)) (-1164 $)) 100 (|has| |#1| (-904)))) (-1977 (($ $) 98 (|has| |#1| (-451)))) (-3788 (((-417 $) $) 97 (|has| |#1| (-451)))) (-2654 (((-3 (-639 (-1164 $)) "failed") (-639 (-1164 $)) (-1164 $)) 103 (|has| |#1| (-904)))) (-1436 (((-112) $ $) 208 (|has| |#1| (-362)))) (-1730 (($ $ (-766)) 231)) (-3538 (($ $ (-766)) 230)) (-2687 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 218 (|has| |#1| (-451)))) (-3329 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 164) (((-3 (-406 (-562)) "failed") $) 161 (|has| |#1| (-1033 (-406 (-562))))) (((-3 (-562) "failed") $) 159 (|has| |#1| (-1033 (-562)))) (((-3 (-1074) "failed") $) 136)) (-3960 ((|#1| $) 163) (((-406 (-562)) $) 162 (|has| |#1| (-1033 (-406 (-562))))) (((-562) $) 160 (|has| |#1| (-1033 (-562)))) (((-1074) $) 137)) (-2355 (($ $ $ (-1074)) 108 (|has| |#1| (-171))) ((|#1| $ $) 226 (|has| |#1| (-171)))) (-1810 (($ $ $) 212 (|has| |#1| (-362)))) (-1600 (($ $) 154)) (-3449 (((-683 (-562)) (-683 $)) 134 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 (-562))) (|:| |vec| (-1256 (-562)))) (-683 $) (-1256 $)) 133 (|has| |#1| (-635 (-562)))) (((-2 (|:| -1767 (-683 |#1|)) (|:| |vec| (-1256 |#1|))) (-683 $) (-1256 $)) 132) (((-683 |#1|) (-683 $)) 131)) (-1694 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 211 (|has| |#1| (-362)))) (-4296 (($ $ $) 229)) (-3127 (($ $ $) 220 (|has| |#1| (-554)))) (-3840 (((-2 (|:| -4221 |#1|) (|:| -3380 $) (|:| -1441 $)) $ $) 219 (|has| |#1| (-554)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 206 (|has| |#1| (-362)))) (-2578 (($ $) 176 (|has| |#1| (-451))) (($ $ (-1074)) 105 (|has| |#1| (-451)))) (-1585 (((-639 $) $) 109)) (-3521 (((-112) $) 96 (|has| |#1| (-904)))) (-3066 (($ $ |#1| (-766) $) 172)) (-2337 (((-884 (-378) $) $ (-887 (-378)) (-884 (-378) $)) 84 (-12 (|has| (-1074) (-881 (-378))) (|has| |#1| (-881 (-378))))) (((-884 (-562) $) $ (-887 (-562)) (-884 (-562) $)) 83 (-12 (|has| (-1074) (-881 (-562))) (|has| |#1| (-881 (-562)))))) (-1993 (((-766) $ $) 224 (|has| |#1| (-554)))) (-4367 (((-112) $) 31)) (-3627 (((-766) $) 169)) (-3828 (((-3 $ "failed") $) 204 (|has| |#1| (-1143)))) (-1389 (($ (-1164 |#1|) (-1074)) 117) (($ (-1164 $) (-1074)) 116)) (-3662 (($ $ (-766)) 235)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 215 (|has| |#1| (-362)))) (-1869 (((-639 $) $) 126)) (-2833 (((-112) $) 152)) (-1377 (($ |#1| (-766)) 153) (($ $ (-1074) (-766)) 119) (($ $ (-639 (-1074)) (-639 (-766))) 118)) (-3851 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $ (-1074)) 120) (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 233)) (-3161 (((-766) $) 170) (((-766) $ (-1074)) 122) (((-639 (-766)) $ (-639 (-1074))) 121)) (-1551 (($ $ $) 79 (|has| |#1| (-845)))) (-2993 (($ $ $) 78 (|has| |#1| (-845)))) (-2363 (($ (-1 (-766) (-766)) $) 171)) (-4152 (($ (-1 |#1| |#1|) $) 151)) (-1556 (((-1164 |#1|) $) 237)) (-3640 (((-3 (-1074) "failed") $) 123)) (-1560 (($ $) 149)) (-1573 ((|#1| $) 148)) (-1564 (($ (-639 $)) 94 (|has| |#1| (-451))) (($ $ $) 93 (|has| |#1| (-451)))) (-3696 (((-1150) $) 9)) (-2215 (((-2 (|:| -3380 $) (|:| -1441 $)) $ (-766)) 232)) (-4025 (((-3 (-639 $) "failed") $) 114)) (-1778 (((-3 (-639 $) "failed") $) 115)) (-4270 (((-3 (-2 (|:| |var| (-1074)) (|:| -1300 (-766))) "failed") $) 113)) (-3081 (($ $) 216 (|has| |#1| (-38 (-406 (-562)))))) (-3730 (($) 203 (|has| |#1| (-1143)) CONST)) (-1709 (((-1112) $) 10)) (-1534 (((-112) $) 166)) (-1547 ((|#1| $) 167)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 95 (|has| |#1| (-451)))) (-1606 (($ (-639 $)) 92 (|has| |#1| (-451))) (($ $ $) 91 (|has| |#1| (-451)))) (-3586 (((-417 (-1164 $)) (-1164 $)) 102 (|has| |#1| (-904)))) (-3468 (((-417 (-1164 $)) (-1164 $)) 101 (|has| |#1| (-904)))) (-1635 (((-417 $) $) 99 (|has| |#1| (-904)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 214 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 213 (|has| |#1| (-362)))) (-1762 (((-3 $ "failed") $ |#1|) 174 (|has| |#1| (-554))) (((-3 $ "failed") $ $) 86 (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 207 (|has| |#1| (-362)))) (-1433 (($ $ (-639 (-293 $))) 145) (($ $ (-293 $)) 144) (($ $ $ $) 143) (($ $ (-639 $) (-639 $)) 142) (($ $ (-1074) |#1|) 141) (($ $ (-639 (-1074)) (-639 |#1|)) 140) (($ $ (-1074) $) 139) (($ $ (-639 (-1074)) (-639 $)) 138)) (-2044 (((-766) $) 209 (|has| |#1| (-362)))) (-2343 ((|#1| $ |#1|) 256) (($ $ $) 255) (((-406 $) (-406 $) (-406 $)) 225 (|has| |#1| (-554))) ((|#1| (-406 $) |#1|) 217 (|has| |#1| (-362))) (((-406 $) $ (-406 $)) 205 (|has| |#1| (-554)))) (-1610 (((-3 $ "failed") $ (-766)) 234)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 210 (|has| |#1| (-362)))) (-2736 (($ $ (-1074)) 107 (|has| |#1| (-171))) ((|#1| $) 227 (|has| |#1| (-171)))) (-4029 (($ $ (-1074)) 42) (($ $ (-639 (-1074))) 41) (($ $ (-1074) (-766)) 40) (($ $ (-639 (-1074)) (-639 (-766))) 39) (($ $ (-766)) 253) (($ $) 251) (($ $ (-1168)) 250 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 249 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 248 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 247 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 240) (($ $ (-1 |#1| |#1|)) 239) (($ $ (-1 |#1| |#1|) $) 228)) (-2250 (((-766) $) 150) (((-766) $ (-1074)) 130) (((-639 (-766)) $ (-639 (-1074))) 129)) (-4208 (((-887 (-378)) $) 82 (-12 (|has| (-1074) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378)))))) (((-887 (-562)) $) 81 (-12 (|has| (-1074) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562)))))) (((-535) $) 80 (-12 (|has| (-1074) (-610 (-535))) (|has| |#1| (-610 (-535)))))) (-2201 ((|#1| $) 175 (|has| |#1| (-451))) (($ $ (-1074)) 106 (|has| |#1| (-451)))) (-1870 (((-3 (-1256 $) "failed") (-683 $)) 104 (-2245 (|has| $ (-144)) (|has| |#1| (-904))))) (-2155 (((-3 $ "failed") $ $) 222 (|has| |#1| (-554))) (((-3 (-406 $) "failed") (-406 $) $) 221 (|has| |#1| (-554)))) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 165) (($ (-1074)) 135) (($ (-406 (-562))) 72 (-4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562)))))) (($ $) 85 (|has| |#1| (-554)))) (-3969 (((-639 |#1|) $) 168)) (-2266 ((|#1| $ (-766)) 155) (($ $ (-1074) (-766)) 128) (($ $ (-639 (-1074)) (-639 (-766))) 127)) (-2059 (((-3 $ "failed") $) 73 (-4037 (-2245 (|has| $ (-144)) (|has| |#1| (-904))) (|has| |#1| (-144))))) (-1568 (((-766)) 28)) (-1760 (($ $ $ (-766)) 173 (|has| |#1| (-171)))) (-3799 (((-112) $ $) 89 (|has| |#1| (-554)))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-1074)) 38) (($ $ (-639 (-1074))) 37) (($ $ (-1074) (-766)) 36) (($ $ (-639 (-1074)) (-639 (-766))) 35) (($ $ (-766)) 254) (($ $) 252) (($ $ (-1168)) 246 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168))) 245 (|has| |#1| (-895 (-1168)))) (($ $ (-1168) (-766)) 244 (|has| |#1| (-895 (-1168)))) (($ $ (-639 (-1168)) (-639 (-766))) 243 (|has| |#1| (-895 (-1168)))) (($ $ (-1 |#1| |#1|) (-766)) 242) (($ $ (-1 |#1| |#1|)) 241)) (-1798 (((-112) $ $) 76 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 75 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 6)) (-1785 (((-112) $ $) 77 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 74 (|has| |#1| (-845)))) (-1859 (($ $ |#1|) 156 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 158 (|has| |#1| (-38 (-406 (-562))))) (($ (-406 (-562)) $) 157 (|has| |#1| (-38 (-406 (-562))))) (($ |#1| $) 147) (($ $ |#1|) 146)))
(((-1232 |#1|) (-139) (-1044)) (T -1232))
-((-2844 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-1232 *4)) (-4 *4 (-1044)) (-5 *2 (-1256 *4)))) (-4298 (*1 *2 *1) (-12 (-4 *1 (-1232 *3)) (-4 *3 (-1044)) (-5 *2 (-1164 *3)))) (-2427 (*1 *1 *2) (-12 (-5 *2 (-1164 *3)) (-4 *3 (-1044)) (-4 *1 (-1232 *3)))) (-3374 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))) (-1530 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))) (-2623 (*1 *2 *1 *1) (-12 (-4 *3 (-1044)) (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-1232 *3)))) (-3594 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *4 (-1044)) (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-1232 *4)))) (-2897 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))) (-3028 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))) (-4267 (*1 *1 *1 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)))) (-4029 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))) (-2455 (*1 *2 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-171)))) (-2835 (*1 *2 *1 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-171)))) (-2343 (*1 *2 *2 *2) (-12 (-5 *2 (-406 *1)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)) (-4 *3 (-554)))) (-1900 (*1 *2 *1 *1) (-12 (-4 *1 (-1232 *3)) (-4 *3 (-1044)) (-4 *3 (-554)) (-5 *2 (-766)))) (-3258 (*1 *1 *1 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))) (-3586 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))) (-3586 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-406 *1)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)) (-4 *3 (-554)))) (-2375 (*1 *1 *1 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))) (-2622 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| -4221 *3) (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-1232 *3)))) (-4157 (*1 *2 *1 *1) (-12 (-4 *3 (-451)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1232 *3)))) (-2343 (*1 *2 *3 *2) (-12 (-5 *3 (-406 *1)) (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-2667 (*1 *1 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562)))))))
-(-13 (-944 |t#1| (-766) (-1074)) (-285 |t#1| |t#1|) (-285 $ $) (-232) (-230 |t#1|) (-10 -8 (-15 -2844 ((-1256 |t#1|) $ (-766))) (-15 -4298 ((-1164 |t#1|) $)) (-15 -2427 ($ (-1164 |t#1|))) (-15 -3374 ($ $ (-766))) (-15 -1530 ((-3 $ "failed") $ (-766))) (-15 -2623 ((-2 (|:| -2097 $) (|:| -2264 $)) $ $)) (-15 -3594 ((-2 (|:| -2097 $) (|:| -2264 $)) $ (-766))) (-15 -2897 ($ $ (-766))) (-15 -3028 ($ $ (-766))) (-15 -4267 ($ $ $)) (-15 -4029 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1143)) (-6 (-1143)) |%noBranch|) (IF (|has| |t#1| (-171)) (PROGN (-15 -2455 (|t#1| $)) (-15 -2835 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-554)) (PROGN (-6 (-285 (-406 $) (-406 $))) (-15 -2343 ((-406 $) (-406 $) (-406 $))) (-15 -1900 ((-766) $ $)) (-15 -3258 ($ $ $)) (-15 -3586 ((-3 $ "failed") $ $)) (-15 -3586 ((-3 (-406 $) "failed") (-406 $) $)) (-15 -2375 ($ $ $)) (-15 -2622 ((-2 (|:| -4221 |t#1|) (|:| -2097 $) (|:| -2264 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-451)) (-15 -4157 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-362)) (PROGN (-6 (-306)) (-6 -4398) (-15 -2343 (|t#1| (-406 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-38 (-406 (-562)))) (-15 -2667 ($ $)) |%noBranch|)))
+((-4263 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-1232 *4)) (-4 *4 (-1044)) (-5 *2 (-1256 *4)))) (-1556 (*1 *2 *1) (-12 (-4 *1 (-1232 *3)) (-4 *3 (-1044)) (-5 *2 (-1164 *3)))) (-2505 (*1 *1 *2) (-12 (-5 *2 (-1164 *3)) (-4 *3 (-1044)) (-4 *1 (-1232 *3)))) (-3662 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))) (-1610 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))) (-3851 (*1 *2 *1 *1) (-12 (-4 *3 (-1044)) (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-1232 *3)))) (-2215 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *4 (-1044)) (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-1232 *4)))) (-1730 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))) (-3538 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))) (-4296 (*1 *1 *1 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)))) (-4029 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))) (-2736 (*1 *2 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-171)))) (-2355 (*1 *2 *1 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-171)))) (-2343 (*1 *2 *2 *2) (-12 (-5 *2 (-406 *1)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)) (-4 *3 (-554)))) (-1993 (*1 *2 *1 *1) (-12 (-4 *1 (-1232 *3)) (-4 *3 (-1044)) (-4 *3 (-554)) (-5 *2 (-766)))) (-2035 (*1 *1 *1 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))) (-2155 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))) (-2155 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-406 *1)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)) (-4 *3 (-554)))) (-3127 (*1 *1 *1 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))) (-3840 (*1 *2 *1 *1) (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| -4221 *3) (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-1232 *3)))) (-2687 (*1 *2 *1 *1) (-12 (-4 *3 (-451)) (-4 *3 (-1044)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1232 *3)))) (-2343 (*1 *2 *3 *2) (-12 (-5 *3 (-406 *1)) (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-3081 (*1 *1 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562)))))))
+(-13 (-944 |t#1| (-766) (-1074)) (-285 |t#1| |t#1|) (-285 $ $) (-232) (-230 |t#1|) (-10 -8 (-15 -4263 ((-1256 |t#1|) $ (-766))) (-15 -1556 ((-1164 |t#1|) $)) (-15 -2505 ($ (-1164 |t#1|))) (-15 -3662 ($ $ (-766))) (-15 -1610 ((-3 $ "failed") $ (-766))) (-15 -3851 ((-2 (|:| -3380 $) (|:| -1441 $)) $ $)) (-15 -2215 ((-2 (|:| -3380 $) (|:| -1441 $)) $ (-766))) (-15 -1730 ($ $ (-766))) (-15 -3538 ($ $ (-766))) (-15 -4296 ($ $ $)) (-15 -4029 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1143)) (-6 (-1143)) |%noBranch|) (IF (|has| |t#1| (-171)) (PROGN (-15 -2736 (|t#1| $)) (-15 -2355 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-554)) (PROGN (-6 (-285 (-406 $) (-406 $))) (-15 -2343 ((-406 $) (-406 $) (-406 $))) (-15 -1993 ((-766) $ $)) (-15 -2035 ($ $ $)) (-15 -2155 ((-3 $ "failed") $ $)) (-15 -2155 ((-3 (-406 $) "failed") (-406 $) $)) (-15 -3127 ($ $ $)) (-15 -3840 ((-2 (|:| -4221 |t#1|) (|:| -3380 $) (|:| -1441 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-451)) (-15 -2687 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-362)) (PROGN (-6 (-306)) (-6 -4399) (-15 -2343 (|t#1| (-406 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-38 (-406 (-562)))) (-15 -3081 ($ $)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-766)) . T) ((-25) . T) ((-38 #1=(-406 (-562))) |has| |#1| (-38 (-406 (-562)))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-362))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-406 (-562)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #1#) -4037 (|has| |#1| (-1033 (-406 (-562)))) (|has| |#1| (-38 (-406 (-562))))) ((-612 (-562)) . T) ((-612 #2=(-1074)) . T) ((-612 |#1|) . T) ((-612 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-362))) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-610 (-535)) -12 (|has| (-1074) (-610 (-535))) (|has| |#1| (-610 (-535)))) ((-610 (-887 (-378))) -12 (|has| (-1074) (-610 (-887 (-378)))) (|has| |#1| (-610 (-887 (-378))))) ((-610 (-887 (-562))) -12 (|has| (-1074) (-610 (-887 (-562)))) (|has| |#1| (-610 (-887 (-562))))) ((-230 |#1|) . T) ((-232) . T) ((-285 (-406 $) (-406 $)) |has| |#1| (-554)) ((-285 |#1| |#1|) . T) ((-285 $ $) . T) ((-289) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-362))) ((-306) |has| |#1| (-362)) ((-308 $) . T) ((-325 |#1| #0#) . T) ((-376 |#1|) . T) ((-410 |#1|) . T) ((-451) -4037 (|has| |#1| (-904)) (|has| |#1| (-451)) (|has| |#1| (-362))) ((-513 #2# |#1|) . T) ((-513 #2# $) . T) ((-513 $ $) . T) ((-554) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-362))) ((-642 #1#) |has| |#1| (-38 (-406 (-562)))) ((-642 |#1|) . T) ((-642 $) . T) ((-635 (-562)) |has| |#1| (-635 (-562))) ((-635 |#1|) . T) ((-712 #1#) |has| |#1| (-38 (-406 (-562)))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-362))) ((-721) . T) ((-845) |has| |#1| (-845)) ((-895 #2#) . T) ((-895 (-1168)) |has| |#1| (-895 (-1168))) ((-881 (-378)) -12 (|has| (-1074) (-881 (-378))) (|has| |#1| (-881 (-378)))) ((-881 (-562)) -12 (|has| (-1074) (-881 (-562))) (|has| |#1| (-881 (-562)))) ((-944 |#1| #0# #2#) . T) ((-904) |has| |#1| (-904)) ((-915) |has| |#1| (-362)) ((-1033 (-406 (-562))) |has| |#1| (-1033 (-406 (-562)))) ((-1033 (-562)) |has| |#1| (-1033 (-562))) ((-1033 #2#) . T) ((-1033 |#1|) . T) ((-1050 #1#) |has| |#1| (-38 (-406 (-562)))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-904)) (|has| |#1| (-554)) (|has| |#1| (-451)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1143) |has| |#1| (-1143)) ((-1211) |has| |#1| (-904)))
-((-1402 (((-639 (-1074)) $) 28)) (-1601 (($ $) 25)) (-1378 (($ |#2| |#3|) NIL) (($ $ (-1074) |#3|) 22) (($ $ (-639 (-1074)) (-639 |#3|)) 21)) (-1560 (($ $) 14)) (-1573 ((|#2| $) 12)) (-3598 ((|#3| $) 10)))
-(((-1233 |#1| |#2| |#3|) (-10 -8 (-15 -1402 ((-639 (-1074)) |#1|)) (-15 -1378 (|#1| |#1| (-639 (-1074)) (-639 |#3|))) (-15 -1378 (|#1| |#1| (-1074) |#3|)) (-15 -1601 (|#1| |#1|)) (-15 -1378 (|#1| |#2| |#3|)) (-15 -3598 (|#3| |#1|)) (-15 -1560 (|#1| |#1|)) (-15 -1573 (|#2| |#1|))) (-1234 |#2| |#3|) (-1044) (-787)) (T -1233))
+((-1401 (((-639 (-1074)) $) 28)) (-1600 (($ $) 25)) (-1377 (($ |#2| |#3|) NIL) (($ $ (-1074) |#3|) 22) (($ $ (-639 (-1074)) (-639 |#3|)) 21)) (-1560 (($ $) 14)) (-1573 ((|#2| $) 12)) (-2250 ((|#3| $) 10)))
+(((-1233 |#1| |#2| |#3|) (-10 -8 (-15 -1401 ((-639 (-1074)) |#1|)) (-15 -1377 (|#1| |#1| (-639 (-1074)) (-639 |#3|))) (-15 -1377 (|#1| |#1| (-1074) |#3|)) (-15 -1600 (|#1| |#1|)) (-15 -1377 (|#1| |#2| |#3|)) (-15 -2250 (|#3| |#1|)) (-15 -1560 (|#1| |#1|)) (-15 -1573 (|#2| |#1|))) (-1234 |#2| |#3|) (-1044) (-787)) (T -1233))
NIL
-(-10 -8 (-15 -1402 ((-639 (-1074)) |#1|)) (-15 -1378 (|#1| |#1| (-639 (-1074)) (-639 |#3|))) (-15 -1378 (|#1| |#1| (-1074) |#3|)) (-15 -1601 (|#1| |#1|)) (-15 -1378 (|#1| |#2| |#3|)) (-15 -3598 (|#3| |#1|)) (-15 -1560 (|#1| |#1|)) (-15 -1573 (|#2| |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1402 (((-639 (-1074)) $) 77)) (-2444 (((-1168) $) 106)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-2796 (($ $) 55 (|has| |#1| (-554)))) (-4370 (((-112) $) 57 (|has| |#1| (-554)))) (-2557 (($ $ |#2|) 101) (($ $ |#2| |#2|) 100)) (-1938 (((-1148 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 108)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-1601 (($ $) 63)) (-3668 (((-3 $ "failed") $) 33)) (-1756 (((-112) $) 76)) (-1900 ((|#2| $) 103) ((|#2| $ |#2|) 102)) (-1957 (((-112) $) 31)) (-3374 (($ $ (-916)) 104)) (-3536 (((-112) $) 65)) (-1378 (($ |#1| |#2|) 64) (($ $ (-1074) |#2|) 79) (($ $ (-639 (-1074)) (-639 |#2|)) 78)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-1353 (($ $ |#2|) 98)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-1433 (((-1148 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-2343 ((|#1| $ |#2|) 107) (($ $ $) 84 (|has| |#2| (-1104)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) 92 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1168) (-766)) 91 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-639 (-1168))) 90 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1168)) 89 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-766)) 87 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-3598 ((|#2| $) 67)) (-2256 (($ $) 75)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554))) (($ |#1|) 50 (|has| |#1| (-171)))) (-3906 ((|#1| $ |#2|) 62)) (-2805 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-2579 (((-766)) 28)) (-2328 ((|#1| $) 105)) (-2922 (((-112) $ $) 56 (|has| |#1| (-554)))) (-1406 ((|#1| $ |#2|) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) 96 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1168) (-766)) 95 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-639 (-1168))) 94 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1168)) 93 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-766)) 88 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
+(-10 -8 (-15 -1401 ((-639 (-1074)) |#1|)) (-15 -1377 (|#1| |#1| (-639 (-1074)) (-639 |#3|))) (-15 -1377 (|#1| |#1| (-1074) |#3|)) (-15 -1600 (|#1| |#1|)) (-15 -1377 (|#1| |#2| |#3|)) (-15 -2250 (|#3| |#1|)) (-15 -1560 (|#1| |#1|)) (-15 -1573 (|#2| |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-1401 (((-639 (-1074)) $) 77)) (-2443 (((-1168) $) 106)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-1965 (($ $) 55 (|has| |#1| (-554)))) (-4102 (((-112) $) 57 (|has| |#1| (-554)))) (-1302 (($ $ |#2|) 101) (($ $ |#2| |#2|) 100)) (-4196 (((-1148 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 108)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1600 (($ $) 63)) (-1694 (((-3 $ "failed") $) 33)) (-2965 (((-112) $) 76)) (-1993 ((|#2| $) 103) ((|#2| $ |#2|) 102)) (-4367 (((-112) $) 31)) (-3662 (($ $ (-916)) 104)) (-2833 (((-112) $) 65)) (-1377 (($ |#1| |#2|) 64) (($ $ (-1074) |#2|) 79) (($ $ (-639 (-1074)) (-639 |#2|)) 78)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4316 (($ $ |#2|) 98)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-1433 (((-1148 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-2343 ((|#1| $ |#2|) 107) (($ $ $) 84 (|has| |#2| (-1104)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) 92 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1168) (-766)) 91 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-639 (-1168))) 90 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1168)) 89 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-766)) 87 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-2250 ((|#2| $) 67)) (-1345 (($ $) 75)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554))) (($ |#1|) 50 (|has| |#1| (-171)))) (-2266 ((|#1| $ |#2|) 62)) (-2059 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-1568 (((-766)) 28)) (-2328 ((|#1| $) 105)) (-3799 (((-112) $ $) 56 (|has| |#1| (-554)))) (-1406 ((|#1| $ |#2|) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) 96 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1168) (-766)) 95 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-639 (-1168))) 94 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1168)) 93 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-766)) 88 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
(((-1234 |#1| |#2|) (-139) (-1044) (-787)) (T -1234))
-((-1938 (*1 *2 *1) (-12 (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-5 *2 (-1148 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-2343 (*1 *2 *1 *3) (-12 (-4 *1 (-1234 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)))) (-2444 (*1 *2 *1) (-12 (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-5 *2 (-1168)))) (-2328 (*1 *2 *1) (-12 (-4 *1 (-1234 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)))) (-3374 (*1 *1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)))) (-1900 (*1 *2 *1) (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-1900 (*1 *2 *1 *2) (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-2557 (*1 *1 *1 *2) (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-2557 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-1406 (*1 *2 *1 *3) (-12 (-4 *1 (-1234 *2 *3)) (-4 *3 (-787)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -4054 (*2 (-1168)))) (-4 *2 (-1044)))) (-1353 (*1 *1 *1 *2) (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-1433 (*1 *2 *1 *3) (-12 (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1148 *3)))))
-(-13 (-968 |t#1| |t#2| (-1074)) (-10 -8 (-15 -1938 ((-1148 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -2343 (|t#1| $ |t#2|)) (-15 -2444 ((-1168) $)) (-15 -2328 (|t#1| $)) (-15 -3374 ($ $ (-916))) (-15 -1900 (|t#2| $)) (-15 -1900 (|t#2| $ |t#2|)) (-15 -2557 ($ $ |t#2|)) (-15 -2557 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -4054 (|t#1| (-1168)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -1406 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -1353 ($ $ |t#2|)) (IF (|has| |t#2| (-1104)) (-6 (-285 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-232)) (IF (|has| |t#1| (-895 (-1168))) (-6 (-895 (-1168))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -1433 ((-1148 |t#1|) $ |t#1|)) |%noBranch|)))
+((-4196 (*1 *2 *1) (-12 (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-5 *2 (-1148 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-2343 (*1 *2 *1 *3) (-12 (-4 *1 (-1234 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)))) (-2443 (*1 *2 *1) (-12 (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (-5 *2 (-1168)))) (-2328 (*1 *2 *1) (-12 (-4 *1 (-1234 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)))) (-3662 (*1 *1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)))) (-1993 (*1 *2 *1) (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-1993 (*1 *2 *1 *2) (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-1302 (*1 *1 *1 *2) (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-1302 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-1406 (*1 *2 *1 *3) (-12 (-4 *1 (-1234 *2 *3)) (-4 *3 (-787)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -4053 (*2 (-1168)))) (-4 *2 (-1044)))) (-4316 (*1 *1 *1 *2) (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))) (-1433 (*1 *2 *1 *3) (-12 (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1148 *3)))))
+(-13 (-968 |t#1| |t#2| (-1074)) (-10 -8 (-15 -4196 ((-1148 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -2343 (|t#1| $ |t#2|)) (-15 -2443 ((-1168) $)) (-15 -2328 (|t#1| $)) (-15 -3662 ($ $ (-916))) (-15 -1993 (|t#2| $)) (-15 -1993 (|t#2| $ |t#2|)) (-15 -1302 ($ $ |t#2|)) (-15 -1302 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -4053 (|t#1| (-1168)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -1406 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -4316 ($ $ |t#2|)) (IF (|has| |t#2| (-1104)) (-6 (-285 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-232)) (IF (|has| |t#1| (-895 (-1168))) (-6 (-895 (-1168))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -1433 ((-1148 |t#1|) $ |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-406 (-562))) |has| |#1| (-38 (-406 (-562)))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) |has| |#1| (-554)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-406 (-562)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #0#) |has| |#1| (-38 (-406 (-562)))) ((-612 (-562)) . T) ((-612 |#1|) |has| |#1| (-171)) ((-612 $) |has| |#1| (-554)) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-232) |has| |#1| (-15 * (|#1| |#2| |#1|))) ((-285 $ $) |has| |#2| (-1104)) ((-289) |has| |#1| (-554)) ((-554) |has| |#1| (-554)) ((-642 #0#) |has| |#1| (-38 (-406 (-562)))) ((-642 |#1|) . T) ((-642 $) . T) ((-712 #0#) |has| |#1| (-38 (-406 (-562)))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) |has| |#1| (-554)) ((-721) . T) ((-895 (-1168)) -12 (|has| |#1| (-15 * (|#1| |#2| |#1|))) (|has| |#1| (-895 (-1168)))) ((-968 |#1| |#2| (-1074)) . T) ((-1050 #0#) |has| |#1| (-38 (-406 (-562)))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-2798 ((|#2| |#2|) 12)) (-2921 (((-417 |#2|) |#2|) 14)) (-1555 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-562))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-562)))) 30)))
-(((-1235 |#1| |#2|) (-10 -7 (-15 -2921 ((-417 |#2|) |#2|)) (-15 -2798 (|#2| |#2|)) (-15 -1555 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-562))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-562)))))) (-554) (-13 (-1232 |#1|) (-554) (-10 -8 (-15 -1606 ($ $ $))))) (T -1235))
-((-1555 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-562)))) (-4 *4 (-13 (-1232 *3) (-554) (-10 -8 (-15 -1606 ($ $ $))))) (-4 *3 (-554)) (-5 *1 (-1235 *3 *4)))) (-2798 (*1 *2 *2) (-12 (-4 *3 (-554)) (-5 *1 (-1235 *3 *2)) (-4 *2 (-13 (-1232 *3) (-554) (-10 -8 (-15 -1606 ($ $ $))))))) (-2921 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-417 *3)) (-5 *1 (-1235 *4 *3)) (-4 *3 (-13 (-1232 *4) (-554) (-10 -8 (-15 -1606 ($ $ $))))))))
-(-10 -7 (-15 -2921 ((-417 |#2|) |#2|)) (-15 -2798 (|#2| |#2|)) (-15 -1555 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-562))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-562))))))
+((-1977 ((|#2| |#2|) 12)) (-3788 (((-417 |#2|) |#2|) 14)) (-1851 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-562))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-562)))) 30)))
+(((-1235 |#1| |#2|) (-10 -7 (-15 -3788 ((-417 |#2|) |#2|)) (-15 -1977 (|#2| |#2|)) (-15 -1851 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-562))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-562)))))) (-554) (-13 (-1232 |#1|) (-554) (-10 -8 (-15 -1606 ($ $ $))))) (T -1235))
+((-1851 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-562)))) (-4 *4 (-13 (-1232 *3) (-554) (-10 -8 (-15 -1606 ($ $ $))))) (-4 *3 (-554)) (-5 *1 (-1235 *3 *4)))) (-1977 (*1 *2 *2) (-12 (-4 *3 (-554)) (-5 *1 (-1235 *3 *2)) (-4 *2 (-13 (-1232 *3) (-554) (-10 -8 (-15 -1606 ($ $ $))))))) (-3788 (*1 *2 *3) (-12 (-4 *4 (-554)) (-5 *2 (-417 *3)) (-5 *1 (-1235 *4 *3)) (-4 *3 (-13 (-1232 *4) (-554) (-10 -8 (-15 -1606 ($ $ $))))))))
+(-10 -7 (-15 -3788 ((-417 |#2|) |#2|)) (-15 -1977 (|#2| |#2|)) (-15 -1851 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-562))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-562))))))
((-4152 (((-1241 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1241 |#1| |#3| |#5|)) 24)))
(((-1236 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -4152 ((-1241 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1241 |#1| |#3| |#5|)))) (-1044) (-1044) (-1168) (-1168) |#1| |#2|) (T -1236))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1241 *5 *7 *9)) (-4 *5 (-1044)) (-4 *6 (-1044)) (-14 *7 (-1168)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1241 *6 *8 *10)) (-5 *1 (-1236 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1168)))))
(-10 -7 (-15 -4152 ((-1241 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1241 |#1| |#3| |#5|))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1402 (((-639 (-1074)) $) 77)) (-2444 (((-1168) $) 106)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-2796 (($ $) 55 (|has| |#1| (-554)))) (-4370 (((-112) $) 57 (|has| |#1| (-554)))) (-2557 (($ $ (-406 (-562))) 101) (($ $ (-406 (-562)) (-406 (-562))) 100)) (-1938 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) 108)) (-2988 (($ $) 138 (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) 121 (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 165 (|has| |#1| (-362)))) (-2921 (((-417 $) $) 166 (|has| |#1| (-362)))) (-1643 (($ $) 120 (|has| |#1| (-38 (-406 (-562)))))) (-2569 (((-112) $ $) 156 (|has| |#1| (-362)))) (-4207 (($ $) 137 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 122 (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) 174)) (-3014 (($ $) 136 (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) 123 (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) 17 T CONST)) (-1811 (($ $ $) 160 (|has| |#1| (-362)))) (-1601 (($ $) 63)) (-3668 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 159 (|has| |#1| (-362)))) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 154 (|has| |#1| (-362)))) (-2717 (((-112) $) 167 (|has| |#1| (-362)))) (-1756 (((-112) $) 76)) (-4100 (($) 148 (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-406 (-562)) $) 103) (((-406 (-562)) $ (-406 (-562))) 102)) (-1957 (((-112) $) 31)) (-1891 (($ $ (-562)) 119 (|has| |#1| (-38 (-406 (-562)))))) (-3374 (($ $ (-916)) 104) (($ $ (-406 (-562))) 173)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 163 (|has| |#1| (-362)))) (-3536 (((-112) $) 65)) (-1378 (($ |#1| (-406 (-562))) 64) (($ $ (-1074) (-406 (-562))) 79) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) 78)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-4365 (($ $) 145 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-1564 (($ (-639 $)) 152 (|has| |#1| (-362))) (($ $ $) 151 (|has| |#1| (-362)))) (-2913 (((-1150) $) 9)) (-1525 (($ $) 168 (|has| |#1| (-362)))) (-2667 (($ $) 172 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 171 (-4037 (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-954)) (|has| |#1| (-1192)) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-38 (-406 (-562)))))))) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 153 (|has| |#1| (-362)))) (-1606 (($ (-639 $)) 150 (|has| |#1| (-362))) (($ $ $) 149 (|has| |#1| (-362)))) (-1635 (((-417 $) $) 164 (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 161 (|has| |#1| (-362)))) (-1353 (($ $ (-406 (-562))) 98)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 155 (|has| |#1| (-362)))) (-3430 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-1577 (((-766) $) 157 (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) 107) (($ $ $) 84 (|has| (-406 (-562)) (-1104)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 158 (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) 92 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168) (-766)) 91 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-639 (-1168))) 90 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168)) 89 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-766)) 87 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-3598 (((-406 (-562)) $) 67)) (-3023 (($ $) 135 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 124 (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) 134 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 125 (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) 133 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 126 (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) 75)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 50 (|has| |#1| (-171))) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554)))) (-3906 ((|#1| $ (-406 (-562))) 62)) (-2805 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-2579 (((-766)) 28)) (-2328 ((|#1| $) 105)) (-3055 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) 56 (|has| |#1| (-554)))) (-3033 (($ $) 143 (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) 131 (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) 141 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 129 (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) 128 (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) 139 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 127 (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) 96 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168) (-766)) 95 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-639 (-1168))) 94 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168)) 93 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-766)) 88 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362))) (($ $ $) 170 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 169 (|has| |#1| (-362))) (($ $ $) 147 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 118 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-1401 (((-639 (-1074)) $) 77)) (-2443 (((-1168) $) 106)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-1965 (($ $) 55 (|has| |#1| (-554)))) (-4102 (((-112) $) 57 (|has| |#1| (-554)))) (-1302 (($ $ (-406 (-562))) 101) (($ $ (-406 (-562)) (-406 (-562))) 100)) (-4196 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) 108)) (-2987 (($ $) 138 (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) 121 (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 165 (|has| |#1| (-362)))) (-3788 (((-417 $) $) 166 (|has| |#1| (-362)))) (-1644 (($ $) 120 (|has| |#1| (-38 (-406 (-562)))))) (-1436 (((-112) $ $) 156 (|has| |#1| (-362)))) (-4206 (($ $) 137 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 122 (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) 174)) (-3013 (($ $) 136 (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) 123 (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) 17 T CONST)) (-1810 (($ $ $) 160 (|has| |#1| (-362)))) (-1600 (($ $) 63)) (-1694 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 159 (|has| |#1| (-362)))) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 154 (|has| |#1| (-362)))) (-3521 (((-112) $) 167 (|has| |#1| (-362)))) (-2965 (((-112) $) 76)) (-4100 (($) 148 (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-406 (-562)) $) 103) (((-406 (-562)) $ (-406 (-562))) 102)) (-4367 (((-112) $) 31)) (-1895 (($ $ (-562)) 119 (|has| |#1| (-38 (-406 (-562)))))) (-3662 (($ $ (-916)) 104) (($ $ (-406 (-562))) 173)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 163 (|has| |#1| (-362)))) (-2833 (((-112) $) 65)) (-1377 (($ |#1| (-406 (-562))) 64) (($ $ (-1074) (-406 (-562))) 79) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) 78)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-4366 (($ $) 145 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-1564 (($ (-639 $)) 152 (|has| |#1| (-362))) (($ $ $) 151 (|has| |#1| (-362)))) (-3696 (((-1150) $) 9)) (-1525 (($ $) 168 (|has| |#1| (-362)))) (-3081 (($ $) 172 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 171 (-4037 (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-954)) (|has| |#1| (-1192)) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-38 (-406 (-562)))))))) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 153 (|has| |#1| (-362)))) (-1606 (($ (-639 $)) 150 (|has| |#1| (-362))) (($ $ $) 149 (|has| |#1| (-362)))) (-1635 (((-417 $) $) 164 (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 161 (|has| |#1| (-362)))) (-4316 (($ $ (-406 (-562))) 98)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 155 (|has| |#1| (-362)))) (-3430 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-2044 (((-766) $) 157 (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) 107) (($ $ $) 84 (|has| (-406 (-562)) (-1104)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 158 (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) 92 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168) (-766)) 91 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-639 (-1168))) 90 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168)) 89 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-766)) 87 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-2250 (((-406 (-562)) $) 67)) (-3022 (($ $) 135 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 124 (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) 134 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 125 (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) 133 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 126 (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) 75)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 50 (|has| |#1| (-171))) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554)))) (-2266 ((|#1| $ (-406 (-562))) 62)) (-2059 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-1568 (((-766)) 28)) (-2328 ((|#1| $) 105)) (-3054 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) 56 (|has| |#1| (-554)))) (-3033 (($ $) 143 (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) 131 (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) 141 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 129 (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) 128 (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) 139 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 127 (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) 96 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168) (-766)) 95 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-639 (-1168))) 94 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168)) 93 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-766)) 88 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362))) (($ $ $) 170 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 169 (|has| |#1| (-362))) (($ $ $) 147 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 118 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
(((-1237 |#1|) (-139) (-1044)) (T -1237))
-((-1503 (*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *3 (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| *4)))) (-4 *4 (-1044)) (-4 *1 (-1237 *4)))) (-3374 (*1 *1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-4 *1 (-1237 *3)) (-4 *3 (-1044)))) (-2667 (*1 *1 *1) (-12 (-4 *1 (-1237 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562)))))) (-2667 (*1 *1 *1 *2) (-4037 (-12 (-5 *2 (-1168)) (-4 *1 (-1237 *3)) (-4 *3 (-1044)) (-12 (-4 *3 (-29 (-562))) (-4 *3 (-954)) (-4 *3 (-1192)) (-4 *3 (-38 (-406 (-562)))))) (-12 (-5 *2 (-1168)) (-4 *1 (-1237 *3)) (-4 *3 (-1044)) (-12 (|has| *3 (-15 -1402 ((-639 *2) *3))) (|has| *3 (-15 -2667 (*3 *3 *2))) (-4 *3 (-38 (-406 (-562)))))))))
-(-13 (-1234 |t#1| (-406 (-562))) (-10 -8 (-15 -1503 ($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |t#1|))))) (-15 -3374 ($ $ (-406 (-562)))) (IF (|has| |t#1| (-38 (-406 (-562)))) (PROGN (-15 -2667 ($ $)) (IF (|has| |t#1| (-15 -2667 (|t#1| |t#1| (-1168)))) (IF (|has| |t#1| (-15 -1402 ((-639 (-1168)) |t#1|))) (-15 -2667 ($ $ (-1168))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1192)) (IF (|has| |t#1| (-954)) (IF (|has| |t#1| (-29 (-562))) (-15 -2667 ($ $ (-1168))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-997)) (-6 (-1192))) |%noBranch|) (IF (|has| |t#1| (-362)) (-6 (-362)) |%noBranch|)))
+((-1503 (*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *3 (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| *4)))) (-4 *4 (-1044)) (-4 *1 (-1237 *4)))) (-3662 (*1 *1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-4 *1 (-1237 *3)) (-4 *3 (-1044)))) (-3081 (*1 *1 *1) (-12 (-4 *1 (-1237 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562)))))) (-3081 (*1 *1 *1 *2) (-4037 (-12 (-5 *2 (-1168)) (-4 *1 (-1237 *3)) (-4 *3 (-1044)) (-12 (-4 *3 (-29 (-562))) (-4 *3 (-954)) (-4 *3 (-1192)) (-4 *3 (-38 (-406 (-562)))))) (-12 (-5 *2 (-1168)) (-4 *1 (-1237 *3)) (-4 *3 (-1044)) (-12 (|has| *3 (-15 -1401 ((-639 *2) *3))) (|has| *3 (-15 -3081 (*3 *3 *2))) (-4 *3 (-38 (-406 (-562)))))))))
+(-13 (-1234 |t#1| (-406 (-562))) (-10 -8 (-15 -1503 ($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |t#1|))))) (-15 -3662 ($ $ (-406 (-562)))) (IF (|has| |t#1| (-38 (-406 (-562)))) (PROGN (-15 -3081 ($ $)) (IF (|has| |t#1| (-15 -3081 (|t#1| |t#1| (-1168)))) (IF (|has| |t#1| (-15 -1401 ((-639 (-1168)) |t#1|))) (-15 -3081 ($ $ (-1168))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1192)) (IF (|has| |t#1| (-954)) (IF (|has| |t#1| (-29 (-562))) (-15 -3081 ($ $ (-1168))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-997)) (-6 (-1192))) |%noBranch|) (IF (|has| |t#1| (-362)) (-6 (-362)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-406 (-562))) . T) ((-25) . T) ((-38 #1=(-406 (-562))) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-35) |has| |#1| (-38 (-406 (-562)))) ((-95) |has| |#1| (-38 (-406 (-562)))) ((-102) . T) ((-111 #1# #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-612 (-562)) . T) ((-612 |#1|) |has| |#1| (-171)) ((-612 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-554)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-232) |has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) ((-242) |has| |#1| (-362)) ((-283) |has| |#1| (-38 (-406 (-562)))) ((-285 $ $) |has| (-406 (-562)) (-1104)) ((-289) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-306) |has| |#1| (-362)) ((-362) |has| |#1| (-362)) ((-451) |has| |#1| (-362)) ((-492) |has| |#1| (-38 (-406 (-562)))) ((-554) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-642 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-642 |#1|) . T) ((-642 $) . T) ((-712 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-721) . T) ((-895 (-1168)) -12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168)))) ((-968 |#1| #0# (-1074)) . T) ((-915) |has| |#1| (-362)) ((-997) |has| |#1| (-38 (-406 (-562)))) ((-1050 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1192) |has| |#1| (-38 (-406 (-562)))) ((-1195) |has| |#1| (-38 (-406 (-562)))) ((-1211) |has| |#1| (-362)) ((-1234 |#1| #0#) . T))
-((-1952 (((-112) $) 12)) (-4048 (((-3 |#3| "failed") $) 17)) (-3961 ((|#3| $) 14)))
-(((-1238 |#1| |#2| |#3|) (-10 -8 (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -3961 (|#3| |#1|)) (-15 -1952 ((-112) |#1|))) (-1239 |#2| |#3|) (-1044) (-1216 |#2|)) (T -1238))
+((-4325 (((-112) $) 12)) (-4048 (((-3 |#3| "failed") $) 17)) (-3960 ((|#3| $) 14)))
+(((-1238 |#1| |#2| |#3|) (-10 -8 (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -3960 (|#3| |#1|)) (-15 -4325 ((-112) |#1|))) (-1239 |#2| |#3|) (-1044) (-1216 |#2|)) (T -1238))
NIL
-(-10 -8 (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -3961 (|#3| |#1|)) (-15 -1952 ((-112) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1402 (((-639 (-1074)) $) 77)) (-2444 (((-1168) $) 106)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-2796 (($ $) 55 (|has| |#1| (-554)))) (-4370 (((-112) $) 57 (|has| |#1| (-554)))) (-2557 (($ $ (-406 (-562))) 101) (($ $ (-406 (-562)) (-406 (-562))) 100)) (-1938 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) 108)) (-2988 (($ $) 138 (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) 121 (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 165 (|has| |#1| (-362)))) (-2921 (((-417 $) $) 166 (|has| |#1| (-362)))) (-1643 (($ $) 120 (|has| |#1| (-38 (-406 (-562)))))) (-2569 (((-112) $ $) 156 (|has| |#1| (-362)))) (-4207 (($ $) 137 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 122 (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) 174)) (-3014 (($ $) 136 (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) 123 (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) 17 T CONST)) (-4048 (((-3 |#2| "failed") $) 185)) (-3961 ((|#2| $) 186)) (-1811 (($ $ $) 160 (|has| |#1| (-362)))) (-1601 (($ $) 63)) (-3668 (((-3 $ "failed") $) 33)) (-3952 (((-406 (-562)) $) 182)) (-1787 (($ $ $) 159 (|has| |#1| (-362)))) (-1499 (($ (-406 (-562)) |#2|) 183)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 154 (|has| |#1| (-362)))) (-2717 (((-112) $) 167 (|has| |#1| (-362)))) (-1756 (((-112) $) 76)) (-4100 (($) 148 (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-406 (-562)) $) 103) (((-406 (-562)) $ (-406 (-562))) 102)) (-1957 (((-112) $) 31)) (-1891 (($ $ (-562)) 119 (|has| |#1| (-38 (-406 (-562)))))) (-3374 (($ $ (-916)) 104) (($ $ (-406 (-562))) 173)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 163 (|has| |#1| (-362)))) (-3536 (((-112) $) 65)) (-1378 (($ |#1| (-406 (-562))) 64) (($ $ (-1074) (-406 (-562))) 79) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) 78)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-4365 (($ $) 145 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-1564 (($ (-639 $)) 152 (|has| |#1| (-362))) (($ $ $) 151 (|has| |#1| (-362)))) (-4098 ((|#2| $) 181)) (-2287 (((-3 |#2| "failed") $) 179)) (-1485 ((|#2| $) 180)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 168 (|has| |#1| (-362)))) (-2667 (($ $) 172 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 171 (-4037 (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-954)) (|has| |#1| (-1192)) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-38 (-406 (-562)))))))) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 153 (|has| |#1| (-362)))) (-1606 (($ (-639 $)) 150 (|has| |#1| (-362))) (($ $ $) 149 (|has| |#1| (-362)))) (-1635 (((-417 $) $) 164 (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 161 (|has| |#1| (-362)))) (-1353 (($ $ (-406 (-562))) 98)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 155 (|has| |#1| (-362)))) (-3430 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-1577 (((-766) $) 157 (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) 107) (($ $ $) 84 (|has| (-406 (-562)) (-1104)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 158 (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) 92 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168) (-766)) 91 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-639 (-1168))) 90 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168)) 89 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-766)) 87 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-3598 (((-406 (-562)) $) 67)) (-3023 (($ $) 135 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 124 (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) 134 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 125 (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) 133 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 126 (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) 75)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 50 (|has| |#1| (-171))) (($ |#2|) 184) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554)))) (-3906 ((|#1| $ (-406 (-562))) 62)) (-2805 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-2579 (((-766)) 28)) (-2328 ((|#1| $) 105)) (-3055 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) 56 (|has| |#1| (-554)))) (-3033 (($ $) 143 (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) 131 (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) 141 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 129 (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) 128 (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) 139 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 127 (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) 96 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168) (-766)) 95 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-639 (-1168))) 94 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168)) 93 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-766)) 88 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362))) (($ $ $) 170 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 169 (|has| |#1| (-362))) (($ $ $) 147 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 118 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
+(-10 -8 (-15 -4048 ((-3 |#3| "failed") |#1|)) (-15 -3960 (|#3| |#1|)) (-15 -4325 ((-112) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-1401 (((-639 (-1074)) $) 77)) (-2443 (((-1168) $) 106)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-1965 (($ $) 55 (|has| |#1| (-554)))) (-4102 (((-112) $) 57 (|has| |#1| (-554)))) (-1302 (($ $ (-406 (-562))) 101) (($ $ (-406 (-562)) (-406 (-562))) 100)) (-4196 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) 108)) (-2987 (($ $) 138 (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) 121 (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 165 (|has| |#1| (-362)))) (-3788 (((-417 $) $) 166 (|has| |#1| (-362)))) (-1644 (($ $) 120 (|has| |#1| (-38 (-406 (-562)))))) (-1436 (((-112) $ $) 156 (|has| |#1| (-362)))) (-4206 (($ $) 137 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 122 (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) 174)) (-3013 (($ $) 136 (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) 123 (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) 17 T CONST)) (-4048 (((-3 |#2| "failed") $) 185)) (-3960 ((|#2| $) 186)) (-1810 (($ $ $) 160 (|has| |#1| (-362)))) (-1600 (($ $) 63)) (-1694 (((-3 $ "failed") $) 33)) (-1417 (((-406 (-562)) $) 182)) (-1787 (($ $ $) 159 (|has| |#1| (-362)))) (-1499 (($ (-406 (-562)) |#2|) 183)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 154 (|has| |#1| (-362)))) (-3521 (((-112) $) 167 (|has| |#1| (-362)))) (-2965 (((-112) $) 76)) (-4100 (($) 148 (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-406 (-562)) $) 103) (((-406 (-562)) $ (-406 (-562))) 102)) (-4367 (((-112) $) 31)) (-1895 (($ $ (-562)) 119 (|has| |#1| (-38 (-406 (-562)))))) (-3662 (($ $ (-916)) 104) (($ $ (-406 (-562))) 173)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 163 (|has| |#1| (-362)))) (-2833 (((-112) $) 65)) (-1377 (($ |#1| (-406 (-562))) 64) (($ $ (-1074) (-406 (-562))) 79) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) 78)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-4366 (($ $) 145 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-1564 (($ (-639 $)) 152 (|has| |#1| (-362))) (($ $ $) 151 (|has| |#1| (-362)))) (-3370 ((|#2| $) 181)) (-3515 (((-3 |#2| "failed") $) 179)) (-1487 ((|#2| $) 180)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 168 (|has| |#1| (-362)))) (-3081 (($ $) 172 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 171 (-4037 (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-954)) (|has| |#1| (-1192)) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-38 (-406 (-562)))))))) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 153 (|has| |#1| (-362)))) (-1606 (($ (-639 $)) 150 (|has| |#1| (-362))) (($ $ $) 149 (|has| |#1| (-362)))) (-1635 (((-417 $) $) 164 (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 162 (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 161 (|has| |#1| (-362)))) (-4316 (($ $ (-406 (-562))) 98)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 155 (|has| |#1| (-362)))) (-3430 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-2044 (((-766) $) 157 (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) 107) (($ $ $) 84 (|has| (-406 (-562)) (-1104)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 158 (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) 92 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168) (-766)) 91 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-639 (-1168))) 90 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168)) 89 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-766)) 87 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-2250 (((-406 (-562)) $) 67)) (-3022 (($ $) 135 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 124 (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) 134 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 125 (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) 133 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 126 (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) 75)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 50 (|has| |#1| (-171))) (($ |#2|) 184) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554)))) (-2266 ((|#1| $ (-406 (-562))) 62)) (-2059 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-1568 (((-766)) 28)) (-2328 ((|#1| $) 105)) (-3054 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) 56 (|has| |#1| (-554)))) (-3033 (($ $) 143 (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) 131 (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) 141 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 129 (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) 128 (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) 139 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 127 (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) 96 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168) (-766)) 95 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-639 (-1168))) 94 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-1168)) 93 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (($ $ (-766)) 88 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362))) (($ $ $) 170 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 169 (|has| |#1| (-362))) (($ $ $) 147 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 118 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
(((-1239 |#1| |#2|) (-139) (-1044) (-1216 |t#1|)) (T -1239))
-((-3598 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1216 *3)) (-5 *2 (-406 (-562))))) (-1499 (*1 *1 *2 *3) (-12 (-5 *2 (-406 (-562))) (-4 *4 (-1044)) (-4 *1 (-1239 *4 *3)) (-4 *3 (-1216 *4)))) (-3952 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1216 *3)) (-5 *2 (-406 (-562))))) (-4098 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1216 *3)))) (-1485 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1216 *3)))) (-2287 (*1 *2 *1) (|partial| -12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1216 *3)))))
-(-13 (-1237 |t#1|) (-1033 |t#2|) (-612 |t#2|) (-10 -8 (-15 -1499 ($ (-406 (-562)) |t#2|)) (-15 -3952 ((-406 (-562)) $)) (-15 -4098 (|t#2| $)) (-15 -3598 ((-406 (-562)) $)) (-15 -1485 (|t#2| $)) (-15 -2287 ((-3 |t#2| "failed") $))))
+((-2250 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1216 *3)) (-5 *2 (-406 (-562))))) (-1499 (*1 *1 *2 *3) (-12 (-5 *2 (-406 (-562))) (-4 *4 (-1044)) (-4 *1 (-1239 *4 *3)) (-4 *3 (-1216 *4)))) (-1417 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1216 *3)) (-5 *2 (-406 (-562))))) (-3370 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1216 *3)))) (-1487 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1216 *3)))) (-3515 (*1 *2 *1) (|partial| -12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1216 *3)))))
+(-13 (-1237 |t#1|) (-1033 |t#2|) (-612 |t#2|) (-10 -8 (-15 -1499 ($ (-406 (-562)) |t#2|)) (-15 -1417 ((-406 (-562)) $)) (-15 -3370 (|t#2| $)) (-15 -2250 ((-406 (-562)) $)) (-15 -1487 (|t#2| $)) (-15 -3515 ((-3 |t#2| "failed") $))))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-406 (-562))) . T) ((-25) . T) ((-38 #1=(-406 (-562))) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-35) |has| |#1| (-38 (-406 (-562)))) ((-95) |has| |#1| (-38 (-406 (-562)))) ((-102) . T) ((-111 #1# #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-612 (-562)) . T) ((-612 |#1|) |has| |#1| (-171)) ((-612 |#2|) . T) ((-612 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-554)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-232) |has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) ((-242) |has| |#1| (-362)) ((-283) |has| |#1| (-38 (-406 (-562)))) ((-285 $ $) |has| (-406 (-562)) (-1104)) ((-289) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-306) |has| |#1| (-362)) ((-362) |has| |#1| (-362)) ((-451) |has| |#1| (-362)) ((-492) |has| |#1| (-38 (-406 (-562)))) ((-554) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-642 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-642 |#1|) . T) ((-642 $) . T) ((-712 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362))) ((-721) . T) ((-895 (-1168)) -12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168)))) ((-968 |#1| #0# (-1074)) . T) ((-915) |has| |#1| (-362)) ((-997) |has| |#1| (-38 (-406 (-562)))) ((-1033 |#2|) . T) ((-1050 #1#) -4037 (|has| |#1| (-362)) (|has| |#1| (-38 (-406 (-562))))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-362)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1192) |has| |#1| (-38 (-406 (-562)))) ((-1195) |has| |#1| (-38 (-406 (-562)))) ((-1211) |has| |#1| (-362)) ((-1234 |#1| #0#) . T) ((-1237 |#1|) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1402 (((-639 (-1074)) $) NIL)) (-2444 (((-1168) $) 96)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-2557 (($ $ (-406 (-562))) 106) (($ $ (-406 (-562)) (-406 (-562))) 108)) (-1938 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) 51)) (-2988 (($ $) 180 (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) 156 (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL (|has| |#1| (-362)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1643 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4207 (($ $) 176 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 152 (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) 61)) (-3014 (($ $) 184 (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) 160 (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL)) (-3961 ((|#2| $) NIL)) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) 79)) (-3952 (((-406 (-562)) $) 13)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-1499 (($ (-406 (-562)) |#2|) 11)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-2717 (((-112) $) NIL (|has| |#1| (-362)))) (-1756 (((-112) $) 68)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-406 (-562)) $) 103) (((-406 (-562)) $ (-406 (-562))) 104)) (-1957 (((-112) $) NIL)) (-1891 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3374 (($ $ (-916)) 120) (($ $ (-406 (-562))) 118)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-406 (-562))) 31) (($ $ (-1074) (-406 (-562))) NIL) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) 115)) (-4365 (($ $) 150 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-4098 ((|#2| $) 12)) (-2287 (((-3 |#2| "failed") $) 41)) (-1485 ((|#2| $) 42)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) 93 (|has| |#1| (-362)))) (-2667 (($ $) 135 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 140 (-4037 (-12 (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192)))))) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1353 (($ $ (-406 (-562))) 112)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) 148 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 90 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-1577 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) 100) (($ $ $) 86 (|has| (-406 (-562)) (-1104)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) 127 (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 124 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-3598 (((-406 (-562)) $) 16)) (-3023 (($ $) 186 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 162 (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) 182 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 158 (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) 178 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 154 (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) 110)) (-4054 (((-857) $) NIL) (($ (-562)) 35) (($ |#1|) 27 (|has| |#1| (-171))) (($ |#2|) 32) (($ (-406 (-562))) 128 (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554)))) (-3906 ((|#1| $ (-406 (-562))) 99)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) 117)) (-2328 ((|#1| $) 98)) (-3055 (($ $) 192 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 168 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) 188 (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) 164 (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) 196 (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) 172 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) 198 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 174 (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) 194 (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) 170 (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) 190 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 166 (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) 21 T CONST)) (-2294 (($) 17 T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1731 (((-112) $ $) 66)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) 92 (|has| |#1| (-362)))) (-1848 (($ $) 131) (($ $ $) 72)) (-1835 (($ $ $) 70)) (** (($ $ (-916)) NIL) (($ $ (-766)) 76) (($ $ (-562)) 145 (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 146 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 74) (($ $ |#1|) NIL) (($ |#1| $) 126) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1401 (((-639 (-1074)) $) NIL)) (-2443 (((-1168) $) 96)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1302 (($ $ (-406 (-562))) 106) (($ $ (-406 (-562)) (-406 (-562))) 108)) (-4196 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) 51)) (-2987 (($ $) 180 (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) 156 (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL (|has| |#1| (-362)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1644 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4206 (($ $) 176 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 152 (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) 61)) (-3013 (($ $) 184 (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) 160 (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL)) (-3960 ((|#2| $) NIL)) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) 79)) (-1417 (((-406 (-562)) $) 13)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-1499 (($ (-406 (-562)) |#2|) 11)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-3521 (((-112) $) NIL (|has| |#1| (-362)))) (-2965 (((-112) $) 68)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-406 (-562)) $) 103) (((-406 (-562)) $ (-406 (-562))) 104)) (-4367 (((-112) $) NIL)) (-1895 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3662 (($ $ (-916)) 120) (($ $ (-406 (-562))) 118)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-406 (-562))) 31) (($ $ (-1074) (-406 (-562))) NIL) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) 115)) (-4366 (($ $) 150 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-3370 ((|#2| $) 12)) (-3515 (((-3 |#2| "failed") $) 41)) (-1487 ((|#2| $) 42)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) 93 (|has| |#1| (-362)))) (-3081 (($ $) 135 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 140 (-4037 (-12 (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192)))))) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-4316 (($ $ (-406 (-562))) 112)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) 148 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 90 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-2044 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) 100) (($ $ $) 86 (|has| (-406 (-562)) (-1104)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) 127 (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 124 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-2250 (((-406 (-562)) $) 16)) (-3022 (($ $) 186 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 162 (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) 182 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 158 (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) 178 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 154 (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) 110)) (-4053 (((-857) $) NIL) (($ (-562)) 35) (($ |#1|) 27 (|has| |#1| (-171))) (($ |#2|) 32) (($ (-406 (-562))) 128 (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554)))) (-2266 ((|#1| $ (-406 (-562))) 99)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) 117)) (-2328 ((|#1| $) 98)) (-3054 (($ $) 192 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 168 (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) 188 (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) 164 (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) 196 (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) 172 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) 198 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 174 (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) 194 (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) 170 (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) 190 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 166 (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) 21 T CONST)) (-2294 (($) 17 T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1733 (((-112) $ $) 66)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) 92 (|has| |#1| (-362)))) (-1847 (($ $) 131) (($ $ $) 72)) (-1836 (($ $ $) 70)) (** (($ $ (-916)) NIL) (($ $ (-766)) 76) (($ $ (-562)) 145 (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 146 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 74) (($ $ |#1|) NIL) (($ |#1| $) 126) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
(((-1240 |#1| |#2|) (-1239 |#1| |#2|) (-1044) (-1216 |#1|)) (T -1240))
NIL
(-1239 |#1| |#2|)
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1402 (((-639 (-1074)) $) NIL)) (-2444 (((-1168) $) 11)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-2557 (($ $ (-406 (-562))) NIL) (($ $ (-406 (-562)) (-406 (-562))) NIL)) (-1938 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) NIL)) (-2988 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-2798 (($ $) NIL (|has| |#1| (-362)))) (-2921 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1643 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2569 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4207 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) NIL)) (-3014 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-1220 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1248 |#1| |#2| |#3|) "failed") $) 22)) (-3961 (((-1220 |#1| |#2| |#3|) $) NIL) (((-1248 |#1| |#2| |#3|) $) NIL)) (-1811 (($ $ $) NIL (|has| |#1| (-362)))) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-3952 (((-406 (-562)) $) 57)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-1499 (($ (-406 (-562)) (-1220 |#1| |#2| |#3|)) NIL)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-2717 (((-112) $) NIL (|has| |#1| (-362)))) (-1756 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-406 (-562)) $) NIL) (((-406 (-562)) $ (-406 (-562))) NIL)) (-1957 (((-112) $) NIL)) (-1891 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3374 (($ $ (-916)) NIL) (($ $ (-406 (-562))) NIL)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-406 (-562))) 30) (($ $ (-1074) (-406 (-562))) NIL) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4365 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-4098 (((-1220 |#1| |#2| |#3|) $) 60)) (-2287 (((-3 (-1220 |#1| |#2| |#3|) "failed") $) NIL)) (-1485 (((-1220 |#1| |#2| |#3|) $) NIL)) (-2913 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-2667 (($ $) 39 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 40 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-4102 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) NIL (|has| |#1| (-362)))) (-1353 (($ $ (-406 (-562))) NIL)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3870 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-1577 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) NIL) (($ $ $) NIL (|has| (-406 (-562)) (-1104)))) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $ (-1252 |#2|)) 38)) (-3598 (((-406 (-562)) $) NIL)) (-3023 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) NIL)) (-4054 (((-857) $) 88) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ (-1220 |#1| |#2| |#3|)) 16) (($ (-1248 |#1| |#2| |#3|)) 17) (($ (-1252 |#2|)) 36) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554)))) (-3906 ((|#1| $ (-406 (-562))) NIL)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-2328 ((|#1| $) 12)) (-3055 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) 62 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) 32 T CONST)) (-2294 (($) 26 T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 34)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
-(((-1241 |#1| |#2| |#3|) (-13 (-1239 |#1| (-1220 |#1| |#2| |#3|)) (-1033 (-1248 |#1| |#2| |#3|)) (-612 (-1252 |#2|)) (-10 -8 (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -1241))
-((-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1241 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-2667 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1241 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
-(-13 (-1239 |#1| (-1220 |#1| |#2| |#3|)) (-1033 (-1248 |#1| |#2| |#3|)) (-612 (-1252 |#2|)) (-10 -8 (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 34)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL)) (-2796 (($ $) NIL)) (-4370 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| (-1241 |#2| |#3| |#4|) (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-1241 |#2| |#3| |#4|) (-1033 (-406 (-562))))) (((-3 (-1241 |#2| |#3| |#4|) "failed") $) 20)) (-3961 (((-562) $) NIL (|has| (-1241 |#2| |#3| |#4|) (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| (-1241 |#2| |#3| |#4|) (-1033 (-406 (-562))))) (((-1241 |#2| |#3| |#4|) $) NIL)) (-1601 (($ $) 35)) (-3668 (((-3 $ "failed") $) 25)) (-1498 (($ $) NIL (|has| (-1241 |#2| |#3| |#4|) (-451)))) (-3122 (($ $ (-1241 |#2| |#3| |#4|) (-318 |#2| |#3| |#4|) $) NIL)) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) 11)) (-3536 (((-112) $) NIL)) (-1378 (($ (-1241 |#2| |#3| |#4|) (-318 |#2| |#3| |#4|)) 23)) (-2076 (((-318 |#2| |#3| |#4|) $) NIL)) (-2836 (($ (-1 (-318 |#2| |#3| |#4|) (-318 |#2| |#3| |#4|)) $) NIL)) (-4152 (($ (-1 (-1241 |#2| |#3| |#4|) (-1241 |#2| |#3| |#4|)) $) NIL)) (-2332 (((-3 (-838 |#2|) "failed") $) 74)) (-1560 (($ $) NIL)) (-1573 (((-1241 |#2| |#3| |#4|) $) 18)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 (((-1241 |#2| |#3| |#4|) $) NIL)) (-1762 (((-3 $ "failed") $ (-1241 |#2| |#3| |#4|)) NIL (|has| (-1241 |#2| |#3| |#4|) (-554))) (((-3 $ "failed") $ $) NIL)) (-3600 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1241 |#2| |#3| |#4|)) (|:| |%expon| (-318 |#2| |#3| |#4|)) (|:| |%expTerms| (-639 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#2|)))))) (|:| |%type| (-1150))) "failed") $) 57)) (-3598 (((-318 |#2| |#3| |#4|) $) 14)) (-3900 (((-1241 |#2| |#3| |#4|) $) NIL (|has| (-1241 |#2| |#3| |#4|) (-451)))) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ (-1241 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL (-4037 (|has| (-1241 |#2| |#3| |#4|) (-38 (-406 (-562)))) (|has| (-1241 |#2| |#3| |#4|) (-1033 (-406 (-562))))))) (-4358 (((-639 (-1241 |#2| |#3| |#4|)) $) NIL)) (-3906 (((-1241 |#2| |#3| |#4|) $ (-318 |#2| |#3| |#4|)) NIL)) (-2805 (((-3 $ "failed") $) NIL (|has| (-1241 |#2| |#3| |#4|) (-144)))) (-2579 (((-766)) NIL)) (-3548 (($ $ $ (-766)) NIL (|has| (-1241 |#2| |#3| |#4|) (-171)))) (-2922 (((-112) $ $) NIL)) (-2286 (($) 62 T CONST)) (-2294 (($) NIL T CONST)) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ (-1241 |#2| |#3| |#4|)) NIL (|has| (-1241 |#2| |#3| |#4|) (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-1241 |#2| |#3| |#4|)) NIL) (($ (-1241 |#2| |#3| |#4|) $) NIL) (($ (-406 (-562)) $) NIL (|has| (-1241 |#2| |#3| |#4|) (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| (-1241 |#2| |#3| |#4|) (-38 (-406 (-562)))))))
-(((-1242 |#1| |#2| |#3| |#4|) (-13 (-325 (-1241 |#2| |#3| |#4|) (-318 |#2| |#3| |#4|)) (-554) (-10 -8 (-15 -2332 ((-3 (-838 |#2|) "failed") $)) (-15 -3600 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1241 |#2| |#3| |#4|)) (|:| |%expon| (-318 |#2| |#3| |#4|)) (|:| |%expTerms| (-639 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#2|)))))) (|:| |%type| (-1150))) "failed") $)))) (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451)) (-13 (-27) (-1192) (-429 |#1|)) (-1168) |#2|) (T -1242))
-((-2332 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451))) (-5 *2 (-838 *4)) (-5 *1 (-1242 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1192) (-429 *3))) (-14 *5 (-1168)) (-14 *6 *4))) (-3600 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1241 *4 *5 *6)) (|:| |%expon| (-318 *4 *5 *6)) (|:| |%expTerms| (-639 (-2 (|:| |k| (-406 (-562))) (|:| |c| *4)))))) (|:| |%type| (-1150)))) (-5 *1 (-1242 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1192) (-429 *3))) (-14 *5 (-1168)) (-14 *6 *4))))
-(-13 (-325 (-1241 |#2| |#3| |#4|) (-318 |#2| |#3| |#4|)) (-554) (-10 -8 (-15 -2332 ((-3 (-838 |#2|) "failed") $)) (-15 -3600 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1241 |#2| |#3| |#4|)) (|:| |%expon| (-318 |#2| |#3| |#4|)) (|:| |%expTerms| (-639 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#2|)))))) (|:| |%type| (-1150))) "failed") $))))
-((-2534 ((|#2| $) 28)) (-2359 ((|#2| $) 18)) (-3121 (($ $) 35)) (-2254 (($ $ (-562)) 63)) (-4336 (((-112) $ (-766)) 32)) (-1512 ((|#2| $ |#2|) 60)) (-3950 ((|#2| $ |#2|) 58)) (-4200 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 51) (($ $ "rest" $) 55) ((|#2| $ "last" |#2|) 53)) (-2917 (($ $ (-639 $)) 59)) (-2350 ((|#2| $) 17)) (-1434 (($ $) NIL) (($ $ (-766)) 41)) (-2720 (((-639 $) $) 25)) (-4379 (((-112) $ $) 49)) (-3292 (((-112) $ (-766)) 31)) (-3289 (((-112) $ (-766)) 30)) (-3449 (((-112) $) 27)) (-1504 ((|#2| $) 23) (($ $ (-766)) 45)) (-2343 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-2424 (((-112) $) 21)) (-2613 (($ $) 38)) (-4327 (($ $) 64)) (-2296 (((-766) $) 40)) (-3913 (($ $) 39)) (-2767 (($ $ $) 57) (($ |#2| $) NIL)) (-2906 (((-639 $) $) 26)) (-1731 (((-112) $ $) 47)) (-3492 (((-766) $) 34)))
-(((-1243 |#1| |#2|) (-10 -8 (-15 -2254 (|#1| |#1| (-562))) (-15 -4200 (|#2| |#1| "last" |#2|)) (-15 -3950 (|#2| |#1| |#2|)) (-15 -4200 (|#1| |#1| "rest" |#1|)) (-15 -4200 (|#2| |#1| "first" |#2|)) (-15 -4327 (|#1| |#1|)) (-15 -2613 (|#1| |#1|)) (-15 -2296 ((-766) |#1|)) (-15 -3913 (|#1| |#1|)) (-15 -2359 (|#2| |#1|)) (-15 -2350 (|#2| |#1|)) (-15 -3121 (|#1| |#1|)) (-15 -1504 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "last")) (-15 -1504 (|#2| |#1|)) (-15 -1434 (|#1| |#1| (-766))) (-15 -2343 (|#1| |#1| "rest")) (-15 -1434 (|#1| |#1|)) (-15 -2343 (|#2| |#1| "first")) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#1|)) (-15 -1512 (|#2| |#1| |#2|)) (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -2917 (|#1| |#1| (-639 |#1|))) (-15 -4379 ((-112) |#1| |#1|)) (-15 -2424 ((-112) |#1|)) (-15 -2343 (|#2| |#1| "value")) (-15 -2534 (|#2| |#1|)) (-15 -3449 ((-112) |#1|)) (-15 -2720 ((-639 |#1|) |#1|)) (-15 -2906 ((-639 |#1|) |#1|)) (-15 -1731 ((-112) |#1| |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -4336 ((-112) |#1| (-766))) (-15 -3292 ((-112) |#1| (-766))) (-15 -3289 ((-112) |#1| (-766)))) (-1244 |#2|) (-1207)) (T -1243))
-NIL
-(-10 -8 (-15 -2254 (|#1| |#1| (-562))) (-15 -4200 (|#2| |#1| "last" |#2|)) (-15 -3950 (|#2| |#1| |#2|)) (-15 -4200 (|#1| |#1| "rest" |#1|)) (-15 -4200 (|#2| |#1| "first" |#2|)) (-15 -4327 (|#1| |#1|)) (-15 -2613 (|#1| |#1|)) (-15 -2296 ((-766) |#1|)) (-15 -3913 (|#1| |#1|)) (-15 -2359 (|#2| |#1|)) (-15 -2350 (|#2| |#1|)) (-15 -3121 (|#1| |#1|)) (-15 -1504 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "last")) (-15 -1504 (|#2| |#1|)) (-15 -1434 (|#1| |#1| (-766))) (-15 -2343 (|#1| |#1| "rest")) (-15 -1434 (|#1| |#1|)) (-15 -2343 (|#2| |#1| "first")) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#1|)) (-15 -1512 (|#2| |#1| |#2|)) (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -2917 (|#1| |#1| (-639 |#1|))) (-15 -4379 ((-112) |#1| |#1|)) (-15 -2424 ((-112) |#1|)) (-15 -2343 (|#2| |#1| "value")) (-15 -2534 (|#2| |#1|)) (-15 -3449 ((-112) |#1|)) (-15 -2720 ((-639 |#1|) |#1|)) (-15 -2906 ((-639 |#1|) |#1|)) (-15 -1731 ((-112) |#1| |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -4336 ((-112) |#1| (-766))) (-15 -3292 ((-112) |#1| (-766))) (-15 -3289 ((-112) |#1| (-766))))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2534 ((|#1| $) 48)) (-2359 ((|#1| $) 65)) (-3121 (($ $) 67)) (-2254 (($ $ (-562)) 52 (|has| $ (-6 -4403)))) (-4336 (((-112) $ (-766)) 8)) (-1512 ((|#1| $ |#1|) 39 (|has| $ (-6 -4403)))) (-3012 (($ $ $) 56 (|has| $ (-6 -4403)))) (-3950 ((|#1| $ |#1|) 54 (|has| $ (-6 -4403)))) (-2687 ((|#1| $ |#1|) 58 (|has| $ (-6 -4403)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4403))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4403))) (($ $ "rest" $) 55 (|has| $ (-6 -4403))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4403)))) (-2917 (($ $ (-639 $)) 41 (|has| $ (-6 -4403)))) (-2350 ((|#1| $) 66)) (-1800 (($) 7 T CONST)) (-1434 (($ $) 73) (($ $ (-766)) 71)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-2720 (((-639 $) $) 50)) (-4379 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-3292 (((-112) $ (-766)) 9)) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-3289 (((-112) $ (-766)) 10)) (-4007 (((-639 |#1|) $) 45)) (-3449 (((-112) $) 49)) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1504 ((|#1| $) 70) (($ $ (-766)) 68)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 76) (($ $ (-766)) 74)) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69)) (-2568 (((-562) $ $) 44)) (-2424 (((-112) $) 46)) (-2613 (($ $) 62)) (-4327 (($ $) 59 (|has| $ (-6 -4403)))) (-2296 (((-766) $) 63)) (-3913 (($ $) 64)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-4220 (($ $) 13)) (-4142 (($ $ $) 61 (|has| $ (-6 -4403))) (($ $ |#1|) 60 (|has| $ (-6 -4403)))) (-2767 (($ $ $) 78) (($ |#1| $) 77)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2906 (((-639 $) $) 51)) (-4055 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1401 (((-639 (-1074)) $) NIL)) (-2443 (((-1168) $) 11)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) NIL (|has| |#1| (-554)))) (-1302 (($ $ (-406 (-562))) NIL) (($ $ (-406 (-562)) (-406 (-562))) NIL)) (-4196 (((-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|))) $) NIL)) (-2987 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1977 (($ $) NIL (|has| |#1| (-362)))) (-3788 (((-417 $) $) NIL (|has| |#1| (-362)))) (-1644 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1436 (((-112) $ $) NIL (|has| |#1| (-362)))) (-4206 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-766) (-1148 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#1|)))) NIL)) (-3013 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-1220 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1248 |#1| |#2| |#3|) "failed") $) 22)) (-3960 (((-1220 |#1| |#2| |#3|) $) NIL) (((-1248 |#1| |#2| |#3|) $) NIL)) (-1810 (($ $ $) NIL (|has| |#1| (-362)))) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-1417 (((-406 (-562)) $) 57)) (-1787 (($ $ $) NIL (|has| |#1| (-362)))) (-1499 (($ (-406 (-562)) (-1220 |#1| |#2| |#3|)) NIL)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) NIL (|has| |#1| (-362)))) (-3521 (((-112) $) NIL (|has| |#1| (-362)))) (-2965 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-406 (-562)) $) NIL) (((-406 (-562)) $ (-406 (-562))) NIL)) (-4367 (((-112) $) NIL)) (-1895 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3662 (($ $ (-916)) NIL) (($ $ (-406 (-562))) NIL)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-406 (-562))) 30) (($ $ (-1074) (-406 (-562))) NIL) (($ $ (-639 (-1074)) (-639 (-406 (-562)))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-4366 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-1564 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-3370 (((-1220 |#1| |#2| |#3|) $) 60)) (-3515 (((-3 (-1220 |#1| |#2| |#3|) "failed") $) NIL)) (-1487 (((-1220 |#1| |#2| |#3|) $) NIL)) (-3696 (((-1150) $) NIL)) (-1525 (($ $) NIL (|has| |#1| (-362)))) (-3081 (($ $) 39 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) NIL (-4037 (-12 (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 40 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) NIL (|has| |#1| (-362)))) (-1606 (($ (-639 $)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1635 (((-417 $) $) NIL (|has| |#1| (-362)))) (-3399 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-362))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) NIL (|has| |#1| (-362)))) (-4316 (($ $ (-406 (-562))) NIL)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-1879 (((-3 (-639 $) "failed") (-639 $) $) NIL (|has| |#1| (-362)))) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))))) (-2044 (((-766) $) NIL (|has| |#1| (-362)))) (-2343 ((|#1| $ (-406 (-562))) NIL) (($ $ $) NIL (|has| (-406 (-562)) (-1104)))) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) NIL (|has| |#1| (-362)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $ (-1252 |#2|)) 38)) (-2250 (((-406 (-562)) $) NIL)) (-3022 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) NIL)) (-4053 (((-857) $) 88) (($ (-562)) NIL) (($ |#1|) NIL (|has| |#1| (-171))) (($ (-1220 |#1| |#2| |#3|)) 16) (($ (-1248 |#1| |#2| |#3|)) 17) (($ (-1252 |#2|)) 36) (($ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554)))) (-2266 ((|#1| $ (-406 (-562))) NIL)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-2328 ((|#1| $) 12)) (-3054 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-406 (-562))) 62 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-406 (-562))))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) 32 T CONST)) (-2294 (($) 26 T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-406 (-562)) |#1|))))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 34)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ (-562)) NIL (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+(((-1241 |#1| |#2| |#3|) (-13 (-1239 |#1| (-1220 |#1| |#2| |#3|)) (-1033 (-1248 |#1| |#2| |#3|)) (-612 (-1252 |#2|)) (-10 -8 (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -1241))
+((-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1241 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-3081 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1241 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
+(-13 (-1239 |#1| (-1220 |#1| |#2| |#3|)) (-1033 (-1248 |#1| |#2| |#3|)) (-612 (-1252 |#2|)) (-10 -8 (-15 -4029 ($ $ (-1252 |#2|))) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 34)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL)) (-1965 (($ $) NIL)) (-4102 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 (-562) "failed") $) NIL (|has| (-1241 |#2| |#3| |#4|) (-1033 (-562)))) (((-3 (-406 (-562)) "failed") $) NIL (|has| (-1241 |#2| |#3| |#4|) (-1033 (-406 (-562))))) (((-3 (-1241 |#2| |#3| |#4|) "failed") $) 20)) (-3960 (((-562) $) NIL (|has| (-1241 |#2| |#3| |#4|) (-1033 (-562)))) (((-406 (-562)) $) NIL (|has| (-1241 |#2| |#3| |#4|) (-1033 (-406 (-562))))) (((-1241 |#2| |#3| |#4|) $) NIL)) (-1600 (($ $) 35)) (-1694 (((-3 $ "failed") $) 25)) (-2578 (($ $) NIL (|has| (-1241 |#2| |#3| |#4|) (-451)))) (-3066 (($ $ (-1241 |#2| |#3| |#4|) (-318 |#2| |#3| |#4|) $) NIL)) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) 11)) (-2833 (((-112) $) NIL)) (-1377 (($ (-1241 |#2| |#3| |#4|) (-318 |#2| |#3| |#4|)) 23)) (-3161 (((-318 |#2| |#3| |#4|) $) NIL)) (-2363 (($ (-1 (-318 |#2| |#3| |#4|) (-318 |#2| |#3| |#4|)) $) NIL)) (-4152 (($ (-1 (-1241 |#2| |#3| |#4|) (-1241 |#2| |#3| |#4|)) $) NIL)) (-3961 (((-3 (-838 |#2|) "failed") $) 74)) (-1560 (($ $) NIL)) (-1573 (((-1241 |#2| |#3| |#4|) $) 18)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-1534 (((-112) $) NIL)) (-1547 (((-1241 |#2| |#3| |#4|) $) NIL)) (-1762 (((-3 $ "failed") $ (-1241 |#2| |#3| |#4|)) NIL (|has| (-1241 |#2| |#3| |#4|) (-554))) (((-3 $ "failed") $ $) NIL)) (-2269 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1241 |#2| |#3| |#4|)) (|:| |%expon| (-318 |#2| |#3| |#4|)) (|:| |%expTerms| (-639 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#2|)))))) (|:| |%type| (-1150))) "failed") $) 57)) (-2250 (((-318 |#2| |#3| |#4|) $) 14)) (-2201 (((-1241 |#2| |#3| |#4|) $) NIL (|has| (-1241 |#2| |#3| |#4|) (-451)))) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ (-1241 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-406 (-562))) NIL (-4037 (|has| (-1241 |#2| |#3| |#4|) (-38 (-406 (-562)))) (|has| (-1241 |#2| |#3| |#4|) (-1033 (-406 (-562))))))) (-3969 (((-639 (-1241 |#2| |#3| |#4|)) $) NIL)) (-2266 (((-1241 |#2| |#3| |#4|) $ (-318 |#2| |#3| |#4|)) NIL)) (-2059 (((-3 $ "failed") $) NIL (|has| (-1241 |#2| |#3| |#4|) (-144)))) (-1568 (((-766)) NIL)) (-1760 (($ $ $ (-766)) NIL (|has| (-1241 |#2| |#3| |#4|) (-171)))) (-3799 (((-112) $ $) NIL)) (-2285 (($) 62 T CONST)) (-2294 (($) NIL T CONST)) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ (-1241 |#2| |#3| |#4|)) NIL (|has| (-1241 |#2| |#3| |#4|) (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ (-1241 |#2| |#3| |#4|)) NIL) (($ (-1241 |#2| |#3| |#4|) $) NIL) (($ (-406 (-562)) $) NIL (|has| (-1241 |#2| |#3| |#4|) (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| (-1241 |#2| |#3| |#4|) (-38 (-406 (-562)))))))
+(((-1242 |#1| |#2| |#3| |#4|) (-13 (-325 (-1241 |#2| |#3| |#4|) (-318 |#2| |#3| |#4|)) (-554) (-10 -8 (-15 -3961 ((-3 (-838 |#2|) "failed") $)) (-15 -2269 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1241 |#2| |#3| |#4|)) (|:| |%expon| (-318 |#2| |#3| |#4|)) (|:| |%expTerms| (-639 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#2|)))))) (|:| |%type| (-1150))) "failed") $)))) (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451)) (-13 (-27) (-1192) (-429 |#1|)) (-1168) |#2|) (T -1242))
+((-3961 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451))) (-5 *2 (-838 *4)) (-5 *1 (-1242 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1192) (-429 *3))) (-14 *5 (-1168)) (-14 *6 *4))) (-2269 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1241 *4 *5 *6)) (|:| |%expon| (-318 *4 *5 *6)) (|:| |%expTerms| (-639 (-2 (|:| |k| (-406 (-562))) (|:| |c| *4)))))) (|:| |%type| (-1150)))) (-5 *1 (-1242 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1192) (-429 *3))) (-14 *5 (-1168)) (-14 *6 *4))))
+(-13 (-325 (-1241 |#2| |#3| |#4|) (-318 |#2| |#3| |#4|)) (-554) (-10 -8 (-15 -3961 ((-3 (-838 |#2|) "failed") $)) (-15 -2269 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1241 |#2| |#3| |#4|)) (|:| |%expon| (-318 |#2| |#3| |#4|)) (|:| |%expTerms| (-639 (-2 (|:| |k| (-406 (-562))) (|:| |c| |#2|)))))) (|:| |%type| (-1150))) "failed") $))))
+((-2533 ((|#2| $) 28)) (-2358 ((|#2| $) 18)) (-3120 (($ $) 35)) (-1335 (($ $ (-562)) 63)) (-3735 (((-112) $ (-766)) 32)) (-2677 ((|#2| $ |#2|) 60)) (-1393 ((|#2| $ |#2|) 58)) (-4200 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 51) (($ $ "rest" $) 55) ((|#2| $ "last" |#2|) 53)) (-3742 (($ $ (-639 $)) 59)) (-2349 ((|#2| $) 17)) (-1434 (($ $) NIL) (($ $ (-766)) 41)) (-2409 (((-639 $) $) 25)) (-4188 (((-112) $ $) 49)) (-4172 (((-112) $ (-766)) 31)) (-4147 (((-112) $ (-766)) 30)) (-3179 (((-112) $) 27)) (-1504 ((|#2| $) 23) (($ $ (-766)) 45)) (-2343 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-2473 (((-112) $) 21)) (-3734 (($ $) 38)) (-3659 (($ $) 64)) (-3595 (((-766) $) 40)) (-2333 (($ $) 39)) (-2767 (($ $ $) 57) (($ |#2| $) NIL)) (-3643 (((-639 $) $) 26)) (-1733 (((-112) $ $) 47)) (-3492 (((-766) $) 34)))
+(((-1243 |#1| |#2|) (-10 -8 (-15 -1335 (|#1| |#1| (-562))) (-15 -4200 (|#2| |#1| "last" |#2|)) (-15 -1393 (|#2| |#1| |#2|)) (-15 -4200 (|#1| |#1| "rest" |#1|)) (-15 -4200 (|#2| |#1| "first" |#2|)) (-15 -3659 (|#1| |#1|)) (-15 -3734 (|#1| |#1|)) (-15 -3595 ((-766) |#1|)) (-15 -2333 (|#1| |#1|)) (-15 -2358 (|#2| |#1|)) (-15 -2349 (|#2| |#1|)) (-15 -3120 (|#1| |#1|)) (-15 -1504 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "last")) (-15 -1504 (|#2| |#1|)) (-15 -1434 (|#1| |#1| (-766))) (-15 -2343 (|#1| |#1| "rest")) (-15 -1434 (|#1| |#1|)) (-15 -2343 (|#2| |#1| "first")) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2677 (|#2| |#1| |#2|)) (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -3742 (|#1| |#1| (-639 |#1|))) (-15 -4188 ((-112) |#1| |#1|)) (-15 -2473 ((-112) |#1|)) (-15 -2343 (|#2| |#1| "value")) (-15 -2533 (|#2| |#1|)) (-15 -3179 ((-112) |#1|)) (-15 -2409 ((-639 |#1|) |#1|)) (-15 -3643 ((-639 |#1|) |#1|)) (-15 -1733 ((-112) |#1| |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -3735 ((-112) |#1| (-766))) (-15 -4172 ((-112) |#1| (-766))) (-15 -4147 ((-112) |#1| (-766)))) (-1244 |#2|) (-1207)) (T -1243))
+NIL
+(-10 -8 (-15 -1335 (|#1| |#1| (-562))) (-15 -4200 (|#2| |#1| "last" |#2|)) (-15 -1393 (|#2| |#1| |#2|)) (-15 -4200 (|#1| |#1| "rest" |#1|)) (-15 -4200 (|#2| |#1| "first" |#2|)) (-15 -3659 (|#1| |#1|)) (-15 -3734 (|#1| |#1|)) (-15 -3595 ((-766) |#1|)) (-15 -2333 (|#1| |#1|)) (-15 -2358 (|#2| |#1|)) (-15 -2349 (|#2| |#1|)) (-15 -3120 (|#1| |#1|)) (-15 -1504 (|#1| |#1| (-766))) (-15 -2343 (|#2| |#1| "last")) (-15 -1504 (|#2| |#1|)) (-15 -1434 (|#1| |#1| (-766))) (-15 -2343 (|#1| |#1| "rest")) (-15 -1434 (|#1| |#1|)) (-15 -2343 (|#2| |#1| "first")) (-15 -2767 (|#1| |#2| |#1|)) (-15 -2767 (|#1| |#1| |#1|)) (-15 -2677 (|#2| |#1| |#2|)) (-15 -4200 (|#2| |#1| "value" |#2|)) (-15 -3742 (|#1| |#1| (-639 |#1|))) (-15 -4188 ((-112) |#1| |#1|)) (-15 -2473 ((-112) |#1|)) (-15 -2343 (|#2| |#1| "value")) (-15 -2533 (|#2| |#1|)) (-15 -3179 ((-112) |#1|)) (-15 -2409 ((-639 |#1|) |#1|)) (-15 -3643 ((-639 |#1|) |#1|)) (-15 -1733 ((-112) |#1| |#1|)) (-15 -3492 ((-766) |#1|)) (-15 -3735 ((-112) |#1| (-766))) (-15 -4172 ((-112) |#1| (-766))) (-15 -4147 ((-112) |#1| (-766))))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2533 ((|#1| $) 48)) (-2358 ((|#1| $) 65)) (-3120 (($ $) 67)) (-1335 (($ $ (-562)) 52 (|has| $ (-6 -4404)))) (-3735 (((-112) $ (-766)) 8)) (-2677 ((|#1| $ |#1|) 39 (|has| $ (-6 -4404)))) (-3400 (($ $ $) 56 (|has| $ (-6 -4404)))) (-1393 ((|#1| $ |#1|) 54 (|has| $ (-6 -4404)))) (-3239 ((|#1| $ |#1|) 58 (|has| $ (-6 -4404)))) (-4200 ((|#1| $ "value" |#1|) 40 (|has| $ (-6 -4404))) ((|#1| $ "first" |#1|) 57 (|has| $ (-6 -4404))) (($ $ "rest" $) 55 (|has| $ (-6 -4404))) ((|#1| $ "last" |#1|) 53 (|has| $ (-6 -4404)))) (-3742 (($ $ (-639 $)) 41 (|has| $ (-6 -4404)))) (-2349 ((|#1| $) 66)) (-3329 (($) 7 T CONST)) (-1434 (($ $) 73) (($ $ (-766)) 71)) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-2409 (((-639 $) $) 50)) (-4188 (((-112) $ $) 42 (|has| |#1| (-1092)))) (-4172 (((-112) $ (-766)) 9)) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35)) (-4147 (((-112) $ (-766)) 10)) (-4008 (((-639 |#1|) $) 45)) (-3179 (((-112) $) 49)) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-1504 ((|#1| $) 70) (($ $ (-766)) 68)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 76) (($ $ (-766)) 74)) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ "value") 47) ((|#1| $ "first") 75) (($ $ "rest") 72) ((|#1| $ "last") 69)) (-1423 (((-562) $ $) 44)) (-2473 (((-112) $) 46)) (-3734 (($ $) 62)) (-3659 (($ $) 59 (|has| $ (-6 -4404)))) (-3595 (((-766) $) 63)) (-2333 (($ $) 64)) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-4220 (($ $) 13)) (-2587 (($ $ $) 61 (|has| $ (-6 -4404))) (($ $ |#1|) 60 (|has| $ (-6 -4404)))) (-2767 (($ $ $) 78) (($ |#1| $) 77)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-3643 (((-639 $) $) 51)) (-2985 (((-112) $ $) 43 (|has| |#1| (-1092)))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-1244 |#1|) (-139) (-1207)) (T -1244))
-((-2767 (*1 *1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2767 (*1 *1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-1421 (*1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-1421 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1244 *3)) (-4 *3 (-1207)))) (-1434 (*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1244 *3)) (-4 *3 (-1207)))) (-1434 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1244 *3)) (-4 *3 (-1207)))) (-1504 (*1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-1504 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1244 *3)) (-4 *3 (-1207)))) (-3121 (*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2350 (*1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2359 (*1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-3913 (*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2296 (*1 *2 *1) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))) (-2613 (*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-4142 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-4142 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-4327 (*1 *1 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2687 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-4200 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-3012 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-4200 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4403)) (-4 *1 (-1244 *3)) (-4 *3 (-1207)))) (-3950 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-4200 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2254 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (|has| *1 (-6 -4403)) (-4 *1 (-1244 *3)) (-4 *3 (-1207)))))
-(-13 (-1005 |t#1|) (-10 -8 (-15 -2767 ($ $ $)) (-15 -2767 ($ |t#1| $)) (-15 -1421 (|t#1| $)) (-15 -2343 (|t#1| $ "first")) (-15 -1421 ($ $ (-766))) (-15 -1434 ($ $)) (-15 -2343 ($ $ "rest")) (-15 -1434 ($ $ (-766))) (-15 -1504 (|t#1| $)) (-15 -2343 (|t#1| $ "last")) (-15 -1504 ($ $ (-766))) (-15 -3121 ($ $)) (-15 -2350 (|t#1| $)) (-15 -2359 (|t#1| $)) (-15 -3913 ($ $)) (-15 -2296 ((-766) $)) (-15 -2613 ($ $)) (IF (|has| $ (-6 -4403)) (PROGN (-15 -4142 ($ $ $)) (-15 -4142 ($ $ |t#1|)) (-15 -4327 ($ $)) (-15 -2687 (|t#1| $ |t#1|)) (-15 -4200 (|t#1| $ "first" |t#1|)) (-15 -3012 ($ $ $)) (-15 -4200 ($ $ "rest" $)) (-15 -3950 (|t#1| $ |t#1|)) (-15 -4200 (|t#1| $ "last" |t#1|)) (-15 -2254 ($ $ (-562)))) |%noBranch|)))
+((-2767 (*1 *1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2767 (*1 *1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-1421 (*1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-1421 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1244 *3)) (-4 *3 (-1207)))) (-1434 (*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2343 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1244 *3)) (-4 *3 (-1207)))) (-1434 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1244 *3)) (-4 *3 (-1207)))) (-1504 (*1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2343 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-1504 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1244 *3)) (-4 *3 (-1207)))) (-3120 (*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2349 (*1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2358 (*1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2333 (*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-3595 (*1 *2 *1) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))) (-3734 (*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2587 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-2587 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-3659 (*1 *1 *1) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-3239 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-4200 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-3400 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-4200 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4404)) (-4 *1 (-1244 *3)) (-4 *3 (-1207)))) (-1393 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-4200 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))) (-1335 (*1 *1 *1 *2) (-12 (-5 *2 (-562)) (|has| *1 (-6 -4404)) (-4 *1 (-1244 *3)) (-4 *3 (-1207)))))
+(-13 (-1005 |t#1|) (-10 -8 (-15 -2767 ($ $ $)) (-15 -2767 ($ |t#1| $)) (-15 -1421 (|t#1| $)) (-15 -2343 (|t#1| $ "first")) (-15 -1421 ($ $ (-766))) (-15 -1434 ($ $)) (-15 -2343 ($ $ "rest")) (-15 -1434 ($ $ (-766))) (-15 -1504 (|t#1| $)) (-15 -2343 (|t#1| $ "last")) (-15 -1504 ($ $ (-766))) (-15 -3120 ($ $)) (-15 -2349 (|t#1| $)) (-15 -2358 (|t#1| $)) (-15 -2333 ($ $)) (-15 -3595 ((-766) $)) (-15 -3734 ($ $)) (IF (|has| $ (-6 -4404)) (PROGN (-15 -2587 ($ $ $)) (-15 -2587 ($ $ |t#1|)) (-15 -3659 ($ $)) (-15 -3239 (|t#1| $ |t#1|)) (-15 -4200 (|t#1| $ "first" |t#1|)) (-15 -3400 ($ $ $)) (-15 -4200 ($ $ "rest" $)) (-15 -1393 (|t#1| $ |t#1|)) (-15 -4200 (|t#1| $ "last" |t#1|)) (-15 -1335 ($ $ (-562)))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1092)) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-609 (-857)))) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-488 |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-1005 |#1|) . T) ((-1092) |has| |#1| (-1092)) ((-1207) . T))
((-4152 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
(((-1245 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4152 (|#4| (-1 |#2| |#1|) |#3|))) (-1044) (-1044) (-1247 |#1|) (-1247 |#2|)) (T -1245))
((-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1044)) (-4 *6 (-1044)) (-4 *2 (-1247 *6)) (-5 *1 (-1245 *5 *6 *4 *2)) (-4 *4 (-1247 *5)))))
(-10 -7 (-15 -4152 (|#4| (-1 |#2| |#1|) |#3|)))
-((-1952 (((-112) $) 15)) (-2988 (($ $) 91)) (-4097 (($ $) 67)) (-4207 (($ $) 87)) (-4074 (($ $) 63)) (-3014 (($ $) 95)) (-4119 (($ $) 71)) (-4365 (($ $) 61)) (-3430 (($ $) 59)) (-3023 (($ $) 97)) (-4130 (($ $) 73)) (-3001 (($ $) 93)) (-4108 (($ $) 69)) (-2978 (($ $) 89)) (-4087 (($ $) 65)) (-4054 (((-857) $) 47) (($ (-562)) NIL) (($ (-406 (-562))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-3055 (($ $) 103)) (-4165 (($ $) 79)) (-3033 (($ $) 99)) (-4138 (($ $) 75)) (-3078 (($ $) 107)) (-4182 (($ $) 83)) (-1566 (($ $) 109)) (-4195 (($ $) 85)) (-3066 (($ $) 105)) (-4174 (($ $) 81)) (-3044 (($ $) 101)) (-4151 (($ $) 77)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ |#2|) 51) (($ $ $) 54) (($ $ (-406 (-562))) 57)))
-(((-1246 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-406 (-562)))) (-15 -4097 (|#1| |#1|)) (-15 -4074 (|#1| |#1|)) (-15 -4119 (|#1| |#1|)) (-15 -4130 (|#1| |#1|)) (-15 -4108 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -4151 (|#1| |#1|)) (-15 -4174 (|#1| |#1|)) (-15 -4195 (|#1| |#1|)) (-15 -4182 (|#1| |#1|)) (-15 -4138 (|#1| |#1|)) (-15 -4165 (|#1| |#1|)) (-15 -2978 (|#1| |#1|)) (-15 -3001 (|#1| |#1|)) (-15 -3023 (|#1| |#1|)) (-15 -3014 (|#1| |#1|)) (-15 -4207 (|#1| |#1|)) (-15 -2988 (|#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -3066 (|#1| |#1|)) (-15 -1566 (|#1| |#1|)) (-15 -3078 (|#1| |#1|)) (-15 -3033 (|#1| |#1|)) (-15 -3055 (|#1| |#1|)) (-15 -4365 (|#1| |#1|)) (-15 -3430 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -4054 (|#1| |#2|)) (-15 -4054 (|#1| |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4054 (|#1| (-562))) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916))) (-15 -1952 ((-112) |#1|)) (-15 -4054 ((-857) |#1|))) (-1247 |#2|) (-1044)) (T -1246))
+((-4325 (((-112) $) 15)) (-2987 (($ $) 91)) (-4098 (($ $) 67)) (-4206 (($ $) 87)) (-4074 (($ $) 63)) (-3013 (($ $) 95)) (-4120 (($ $) 71)) (-4366 (($ $) 61)) (-3430 (($ $) 59)) (-3022 (($ $) 97)) (-4130 (($ $) 73)) (-3000 (($ $) 93)) (-4108 (($ $) 69)) (-2977 (($ $) 89)) (-4087 (($ $) 65)) (-4053 (((-857) $) 47) (($ (-562)) NIL) (($ (-406 (-562))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-3054 (($ $) 103)) (-4165 (($ $) 79)) (-3033 (($ $) 99)) (-4139 (($ $) 75)) (-3077 (($ $) 107)) (-4183 (($ $) 83)) (-1567 (($ $) 109)) (-4195 (($ $) 85)) (-3065 (($ $) 105)) (-4175 (($ $) 81)) (-3040 (($ $) 101)) (-4151 (($ $) 77)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ |#2|) 51) (($ $ $) 54) (($ $ (-406 (-562))) 57)))
+(((-1246 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-406 (-562)))) (-15 -4098 (|#1| |#1|)) (-15 -4074 (|#1| |#1|)) (-15 -4120 (|#1| |#1|)) (-15 -4130 (|#1| |#1|)) (-15 -4108 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -4151 (|#1| |#1|)) (-15 -4175 (|#1| |#1|)) (-15 -4195 (|#1| |#1|)) (-15 -4183 (|#1| |#1|)) (-15 -4139 (|#1| |#1|)) (-15 -4165 (|#1| |#1|)) (-15 -2977 (|#1| |#1|)) (-15 -3000 (|#1| |#1|)) (-15 -3022 (|#1| |#1|)) (-15 -3013 (|#1| |#1|)) (-15 -4206 (|#1| |#1|)) (-15 -2987 (|#1| |#1|)) (-15 -3040 (|#1| |#1|)) (-15 -3065 (|#1| |#1|)) (-15 -1567 (|#1| |#1|)) (-15 -3077 (|#1| |#1|)) (-15 -3033 (|#1| |#1|)) (-15 -3054 (|#1| |#1|)) (-15 -4366 (|#1| |#1|)) (-15 -3430 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -4053 (|#1| |#2|)) (-15 -4053 (|#1| |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4053 (|#1| (-562))) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916))) (-15 -4325 ((-112) |#1|)) (-15 -4053 ((-857) |#1|))) (-1247 |#2|) (-1044)) (T -1246))
NIL
-(-10 -8 (-15 ** (|#1| |#1| (-406 (-562)))) (-15 -4097 (|#1| |#1|)) (-15 -4074 (|#1| |#1|)) (-15 -4119 (|#1| |#1|)) (-15 -4130 (|#1| |#1|)) (-15 -4108 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -4151 (|#1| |#1|)) (-15 -4174 (|#1| |#1|)) (-15 -4195 (|#1| |#1|)) (-15 -4182 (|#1| |#1|)) (-15 -4138 (|#1| |#1|)) (-15 -4165 (|#1| |#1|)) (-15 -2978 (|#1| |#1|)) (-15 -3001 (|#1| |#1|)) (-15 -3023 (|#1| |#1|)) (-15 -3014 (|#1| |#1|)) (-15 -4207 (|#1| |#1|)) (-15 -2988 (|#1| |#1|)) (-15 -3044 (|#1| |#1|)) (-15 -3066 (|#1| |#1|)) (-15 -1566 (|#1| |#1|)) (-15 -3078 (|#1| |#1|)) (-15 -3033 (|#1| |#1|)) (-15 -3055 (|#1| |#1|)) (-15 -4365 (|#1| |#1|)) (-15 -3430 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -4054 (|#1| |#2|)) (-15 -4054 (|#1| |#1|)) (-15 -4054 (|#1| (-406 (-562)))) (-15 -4054 (|#1| (-562))) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916))) (-15 -1952 ((-112) |#1|)) (-15 -4054 ((-857) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1402 (((-639 (-1074)) $) 77)) (-2444 (((-1168) $) 106)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-2796 (($ $) 55 (|has| |#1| (-554)))) (-4370 (((-112) $) 57 (|has| |#1| (-554)))) (-2557 (($ $ (-766)) 101) (($ $ (-766) (-766)) 100)) (-1938 (((-1148 (-2 (|:| |k| (-766)) (|:| |c| |#1|))) $) 108)) (-2988 (($ $) 138 (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) 121 (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) 19)) (-1643 (($ $) 120 (|has| |#1| (-38 (-406 (-562)))))) (-4207 (($ $) 137 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 122 (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-1148 (-2 (|:| |k| (-766)) (|:| |c| |#1|)))) 158) (($ (-1148 |#1|)) 156)) (-3014 (($ $) 136 (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) 123 (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) 17 T CONST)) (-1601 (($ $) 63)) (-3668 (((-3 $ "failed") $) 33)) (-2834 (($ $) 155)) (-1454 (((-947 |#1|) $ (-766)) 153) (((-947 |#1|) $ (-766) (-766)) 152)) (-1756 (((-112) $) 76)) (-4100 (($) 148 (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-766) $) 103) (((-766) $ (-766)) 102)) (-1957 (((-112) $) 31)) (-1891 (($ $ (-562)) 119 (|has| |#1| (-38 (-406 (-562)))))) (-3374 (($ $ (-916)) 104)) (-4222 (($ (-1 |#1| (-562)) $) 154)) (-3536 (((-112) $) 65)) (-1378 (($ |#1| (-766)) 64) (($ $ (-1074) (-766)) 79) (($ $ (-639 (-1074)) (-639 (-766))) 78)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-4365 (($ $) 145 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-2913 (((-1150) $) 9)) (-2667 (($ $) 150 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 149 (-4037 (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-954)) (|has| |#1| (-1192)) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-38 (-406 (-562)))))))) (-1709 (((-1112) $) 10)) (-1353 (($ $ (-766)) 98)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-3430 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-766)))))) (-2343 ((|#1| $ (-766)) 107) (($ $ $) 84 (|has| (-766) (-1104)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) 92 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-1168) (-766)) 91 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-639 (-1168))) 90 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-1168)) 89 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-766)) 87 (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (-3598 (((-766) $) 67)) (-3023 (($ $) 135 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 124 (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) 134 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 125 (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) 133 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 126 (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) 75)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554))) (($ |#1|) 50 (|has| |#1| (-171)))) (-4358 (((-1148 |#1|) $) 157)) (-3906 ((|#1| $ (-766)) 62)) (-2805 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-2579 (((-766)) 28)) (-2328 ((|#1| $) 105)) (-3055 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) 56 (|has| |#1| (-554)))) (-3033 (($ $) 143 (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) 131 (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-766)) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-766)))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) 141 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 129 (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) 128 (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) 139 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 127 (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) 96 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-1168) (-766)) 95 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-639 (-1168))) 94 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-1168)) 93 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-766)) 88 (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362)))) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ |#1|) 151 (|has| |#1| (-362))) (($ $ $) 147 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 118 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
+(-10 -8 (-15 ** (|#1| |#1| (-406 (-562)))) (-15 -4098 (|#1| |#1|)) (-15 -4074 (|#1| |#1|)) (-15 -4120 (|#1| |#1|)) (-15 -4130 (|#1| |#1|)) (-15 -4108 (|#1| |#1|)) (-15 -4087 (|#1| |#1|)) (-15 -4151 (|#1| |#1|)) (-15 -4175 (|#1| |#1|)) (-15 -4195 (|#1| |#1|)) (-15 -4183 (|#1| |#1|)) (-15 -4139 (|#1| |#1|)) (-15 -4165 (|#1| |#1|)) (-15 -2977 (|#1| |#1|)) (-15 -3000 (|#1| |#1|)) (-15 -3022 (|#1| |#1|)) (-15 -3013 (|#1| |#1|)) (-15 -4206 (|#1| |#1|)) (-15 -2987 (|#1| |#1|)) (-15 -3040 (|#1| |#1|)) (-15 -3065 (|#1| |#1|)) (-15 -1567 (|#1| |#1|)) (-15 -3077 (|#1| |#1|)) (-15 -3033 (|#1| |#1|)) (-15 -3054 (|#1| |#1|)) (-15 -4366 (|#1| |#1|)) (-15 -3430 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -4053 (|#1| |#2|)) (-15 -4053 (|#1| |#1|)) (-15 -4053 (|#1| (-406 (-562)))) (-15 -4053 (|#1| (-562))) (-15 ** (|#1| |#1| (-766))) (-15 ** (|#1| |#1| (-916))) (-15 -4325 ((-112) |#1|)) (-15 -4053 ((-857) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-1401 (((-639 (-1074)) $) 77)) (-2443 (((-1168) $) 106)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 54 (|has| |#1| (-554)))) (-1965 (($ $) 55 (|has| |#1| (-554)))) (-4102 (((-112) $) 57 (|has| |#1| (-554)))) (-1302 (($ $ (-766)) 101) (($ $ (-766) (-766)) 100)) (-4196 (((-1148 (-2 (|:| |k| (-766)) (|:| |c| |#1|))) $) 108)) (-2987 (($ $) 138 (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) 121 (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) 19)) (-1644 (($ $) 120 (|has| |#1| (-38 (-406 (-562)))))) (-4206 (($ $) 137 (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) 122 (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-1148 (-2 (|:| |k| (-766)) (|:| |c| |#1|)))) 158) (($ (-1148 |#1|)) 156)) (-3013 (($ $) 136 (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) 123 (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) 17 T CONST)) (-1600 (($ $) 63)) (-1694 (((-3 $ "failed") $) 33)) (-2344 (($ $) 155)) (-1455 (((-947 |#1|) $ (-766)) 153) (((-947 |#1|) $ (-766) (-766)) 152)) (-2965 (((-112) $) 76)) (-4100 (($) 148 (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-766) $) 103) (((-766) $ (-766)) 102)) (-4367 (((-112) $) 31)) (-1895 (($ $ (-562)) 119 (|has| |#1| (-38 (-406 (-562)))))) (-3662 (($ $ (-916)) 104)) (-2064 (($ (-1 |#1| (-562)) $) 154)) (-2833 (((-112) $) 65)) (-1377 (($ |#1| (-766)) 64) (($ $ (-1074) (-766)) 79) (($ $ (-639 (-1074)) (-639 (-766))) 78)) (-4152 (($ (-1 |#1| |#1|) $) 66)) (-4366 (($ $) 145 (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) 68)) (-1573 ((|#1| $) 69)) (-3696 (((-1150) $) 9)) (-3081 (($ $) 150 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 149 (-4037 (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-954)) (|has| |#1| (-1192)) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-38 (-406 (-562)))))))) (-1709 (((-1112) $) 10)) (-4316 (($ $ (-766)) 98)) (-1762 (((-3 $ "failed") $ $) 53 (|has| |#1| (-554)))) (-3430 (($ $) 146 (|has| |#1| (-38 (-406 (-562)))))) (-1433 (((-1148 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-766)))))) (-2343 ((|#1| $ (-766)) 107) (($ $ $) 84 (|has| (-766) (-1104)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) 92 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-1168) (-766)) 91 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-639 (-1168))) 90 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-1168)) 89 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-766)) 87 (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $) 85 (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (-2250 (((-766) $) 67)) (-3022 (($ $) 135 (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) 124 (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) 134 (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) 125 (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) 133 (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) 126 (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) 75)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ (-406 (-562))) 60 (|has| |#1| (-38 (-406 (-562))))) (($ $) 52 (|has| |#1| (-554))) (($ |#1|) 50 (|has| |#1| (-171)))) (-3969 (((-1148 |#1|) $) 157)) (-2266 ((|#1| $ (-766)) 62)) (-2059 (((-3 $ "failed") $) 51 (|has| |#1| (-144)))) (-1568 (((-766)) 28)) (-2328 ((|#1| $) 105)) (-3054 (($ $) 144 (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) 132 (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) 56 (|has| |#1| (-554)))) (-3033 (($ $) 143 (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) 131 (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) 142 (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) 130 (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-766)) 99 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-766)))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) 141 (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) 129 (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) 140 (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) 128 (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) 139 (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) 127 (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) 96 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-1168) (-766)) 95 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-639 (-1168))) 94 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-1168)) 93 (-12 (|has| |#1| (-895 (-1168))) (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (($ $ (-766)) 88 (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $) 86 (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 61 (|has| |#1| (-362)))) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ |#1|) 151 (|has| |#1| (-362))) (($ $ $) 147 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 118 (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 71) (($ |#1| $) 70) (($ (-406 (-562)) $) 59 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) 58 (|has| |#1| (-38 (-406 (-562)))))))
(((-1247 |#1|) (-139) (-1044)) (T -1247))
-((-1503 (*1 *1 *2) (-12 (-5 *2 (-1148 (-2 (|:| |k| (-766)) (|:| |c| *3)))) (-4 *3 (-1044)) (-4 *1 (-1247 *3)))) (-4358 (*1 *2 *1) (-12 (-4 *1 (-1247 *3)) (-4 *3 (-1044)) (-5 *2 (-1148 *3)))) (-1503 (*1 *1 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-4 *1 (-1247 *3)))) (-2834 (*1 *1 *1) (-12 (-4 *1 (-1247 *2)) (-4 *2 (-1044)))) (-4222 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-562))) (-4 *1 (-1247 *3)) (-4 *3 (-1044)))) (-1454 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-1247 *4)) (-4 *4 (-1044)) (-5 *2 (-947 *4)))) (-1454 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-766)) (-4 *1 (-1247 *4)) (-4 *4 (-1044)) (-5 *2 (-947 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1247 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-2667 (*1 *1 *1) (-12 (-4 *1 (-1247 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562)))))) (-2667 (*1 *1 *1 *2) (-4037 (-12 (-5 *2 (-1168)) (-4 *1 (-1247 *3)) (-4 *3 (-1044)) (-12 (-4 *3 (-29 (-562))) (-4 *3 (-954)) (-4 *3 (-1192)) (-4 *3 (-38 (-406 (-562)))))) (-12 (-5 *2 (-1168)) (-4 *1 (-1247 *3)) (-4 *3 (-1044)) (-12 (|has| *3 (-15 -1402 ((-639 *2) *3))) (|has| *3 (-15 -2667 (*3 *3 *2))) (-4 *3 (-38 (-406 (-562)))))))))
-(-13 (-1234 |t#1| (-766)) (-10 -8 (-15 -1503 ($ (-1148 (-2 (|:| |k| (-766)) (|:| |c| |t#1|))))) (-15 -4358 ((-1148 |t#1|) $)) (-15 -1503 ($ (-1148 |t#1|))) (-15 -2834 ($ $)) (-15 -4222 ($ (-1 |t#1| (-562)) $)) (-15 -1454 ((-947 |t#1|) $ (-766))) (-15 -1454 ((-947 |t#1|) $ (-766) (-766))) (IF (|has| |t#1| (-362)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-38 (-406 (-562)))) (PROGN (-15 -2667 ($ $)) (IF (|has| |t#1| (-15 -2667 (|t#1| |t#1| (-1168)))) (IF (|has| |t#1| (-15 -1402 ((-639 (-1168)) |t#1|))) (-15 -2667 ($ $ (-1168))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1192)) (IF (|has| |t#1| (-954)) (IF (|has| |t#1| (-29 (-562))) (-15 -2667 ($ $ (-1168))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-997)) (-6 (-1192))) |%noBranch|)))
+((-1503 (*1 *1 *2) (-12 (-5 *2 (-1148 (-2 (|:| |k| (-766)) (|:| |c| *3)))) (-4 *3 (-1044)) (-4 *1 (-1247 *3)))) (-3969 (*1 *2 *1) (-12 (-4 *1 (-1247 *3)) (-4 *3 (-1044)) (-5 *2 (-1148 *3)))) (-1503 (*1 *1 *2) (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-4 *1 (-1247 *3)))) (-2344 (*1 *1 *1) (-12 (-4 *1 (-1247 *2)) (-4 *2 (-1044)))) (-2064 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-562))) (-4 *1 (-1247 *3)) (-4 *3 (-1044)))) (-1455 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-1247 *4)) (-4 *4 (-1044)) (-5 *2 (-947 *4)))) (-1455 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-766)) (-4 *1 (-1247 *4)) (-4 *4 (-1044)) (-5 *2 (-947 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1247 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))) (-3081 (*1 *1 *1) (-12 (-4 *1 (-1247 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562)))))) (-3081 (*1 *1 *1 *2) (-4037 (-12 (-5 *2 (-1168)) (-4 *1 (-1247 *3)) (-4 *3 (-1044)) (-12 (-4 *3 (-29 (-562))) (-4 *3 (-954)) (-4 *3 (-1192)) (-4 *3 (-38 (-406 (-562)))))) (-12 (-5 *2 (-1168)) (-4 *1 (-1247 *3)) (-4 *3 (-1044)) (-12 (|has| *3 (-15 -1401 ((-639 *2) *3))) (|has| *3 (-15 -3081 (*3 *3 *2))) (-4 *3 (-38 (-406 (-562)))))))))
+(-13 (-1234 |t#1| (-766)) (-10 -8 (-15 -1503 ($ (-1148 (-2 (|:| |k| (-766)) (|:| |c| |t#1|))))) (-15 -3969 ((-1148 |t#1|) $)) (-15 -1503 ($ (-1148 |t#1|))) (-15 -2344 ($ $)) (-15 -2064 ($ (-1 |t#1| (-562)) $)) (-15 -1455 ((-947 |t#1|) $ (-766))) (-15 -1455 ((-947 |t#1|) $ (-766) (-766))) (IF (|has| |t#1| (-362)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-38 (-406 (-562)))) (PROGN (-15 -3081 ($ $)) (IF (|has| |t#1| (-15 -3081 (|t#1| |t#1| (-1168)))) (IF (|has| |t#1| (-15 -1401 ((-639 (-1168)) |t#1|))) (-15 -3081 ($ $ (-1168))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1192)) (IF (|has| |t#1| (-954)) (IF (|has| |t#1| (-29 (-562))) (-15 -3081 ($ $ (-1168))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-997)) (-6 (-1192))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-766)) . T) ((-25) . T) ((-38 #1=(-406 (-562))) |has| |#1| (-38 (-406 (-562)))) ((-38 |#1|) |has| |#1| (-171)) ((-38 $) |has| |#1| (-554)) ((-35) |has| |#1| (-38 (-406 (-562)))) ((-95) |has| |#1| (-38 (-406 (-562)))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-406 (-562)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-130) . T) ((-144) |has| |#1| (-144)) ((-146) |has| |#1| (-146)) ((-612 #1#) |has| |#1| (-38 (-406 (-562)))) ((-612 (-562)) . T) ((-612 |#1|) |has| |#1| (-171)) ((-612 $) |has| |#1| (-554)) ((-609 (-857)) . T) ((-171) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-232) |has| |#1| (-15 * (|#1| (-766) |#1|))) ((-283) |has| |#1| (-38 (-406 (-562)))) ((-285 $ $) |has| (-766) (-1104)) ((-289) |has| |#1| (-554)) ((-492) |has| |#1| (-38 (-406 (-562)))) ((-554) |has| |#1| (-554)) ((-642 #1#) |has| |#1| (-38 (-406 (-562)))) ((-642 |#1|) . T) ((-642 $) . T) ((-712 #1#) |has| |#1| (-38 (-406 (-562)))) ((-712 |#1|) |has| |#1| (-171)) ((-712 $) |has| |#1| (-554)) ((-721) . T) ((-895 (-1168)) -12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168)))) ((-968 |#1| #0# (-1074)) . T) ((-997) |has| |#1| (-38 (-406 (-562)))) ((-1050 #1#) |has| |#1| (-38 (-406 (-562)))) ((-1050 |#1|) . T) ((-1050 $) -4037 (|has| |#1| (-554)) (|has| |#1| (-171))) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1192) |has| |#1| (-38 (-406 (-562)))) ((-1195) |has| |#1| (-38 (-406 (-562)))) ((-1234 |#1| #0#) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-1402 (((-639 (-1074)) $) NIL)) (-2444 (((-1168) $) 86)) (-2004 (((-1229 |#2| |#1|) $ (-766)) 73)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-2796 (($ $) NIL (|has| |#1| (-554)))) (-4370 (((-112) $) 136 (|has| |#1| (-554)))) (-2557 (($ $ (-766)) 121) (($ $ (-766) (-766)) 123)) (-1938 (((-1148 (-2 (|:| |k| (-766)) (|:| |c| |#1|))) $) 42)) (-2988 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4097 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3214 (((-3 $ "failed") $ $) NIL)) (-1643 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4207 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-1148 (-2 (|:| |k| (-766)) (|:| |c| |#1|)))) 53) (($ (-1148 |#1|)) NIL)) (-3014 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4119 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1800 (($) NIL T CONST)) (-2970 (($ $) 127)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-2834 (($ $) 134)) (-1454 (((-947 |#1|) $ (-766)) 63) (((-947 |#1|) $ (-766) (-766)) 65)) (-1756 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1900 (((-766) $) NIL) (((-766) $ (-766)) NIL)) (-1957 (((-112) $) NIL)) (-2009 (($ $) 111)) (-1891 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4325 (($ (-562) (-562) $) 129)) (-3374 (($ $ (-916)) 133)) (-4222 (($ (-1 |#1| (-562)) $) 105)) (-3536 (((-112) $) NIL)) (-1378 (($ |#1| (-766)) 15) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) 93)) (-4365 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-1650 (($ $) 109)) (-1638 (($ $) 107)) (-2584 (($ (-562) (-562) $) 131)) (-2667 (($ $) 144 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 150 (-4037 (-12 (|has| |#1| (-15 -2667 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1402 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 145 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-2863 (($ $ (-562) (-562)) 115)) (-1353 (($ $ (-766)) 117)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1574 (($ $) 113)) (-1433 (((-1148 |#1|) $ |#1|) 95 (|has| |#1| (-15 ** (|#1| |#1| (-766)))))) (-2343 ((|#1| $ (-766)) 90) (($ $ $) 125 (|has| (-766) (-1104)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) 102 (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $) 97 (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $ (-1252 |#2|)) 98)) (-3598 (((-766) $) NIL)) (-3023 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3001 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2978 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2256 (($ $) 119)) (-4054 (((-857) $) NIL) (($ (-562)) 24) (($ (-406 (-562))) 142 (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554))) (($ |#1|) 23 (|has| |#1| (-171))) (($ (-1229 |#2| |#1|)) 79) (($ (-1252 |#2|)) 20)) (-4358 (((-1148 |#1|) $) NIL)) (-3906 ((|#1| $ (-766)) 89)) (-2805 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-2579 (((-766)) NIL)) (-2328 ((|#1| $) 87)) (-3055 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2922 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4138 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3078 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4182 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-766)) 85 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-766)))) (|has| |#1| (-15 -4054 (|#1| (-1168))))))) (-1566 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3066 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4174 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3044 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2286 (($) 17 T CONST)) (-2294 (($) 13 T CONST)) (-3114 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (-1731 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) 101)) (-1835 (($ $ $) 18)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ |#1|) 139 (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 100) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
-(((-1248 |#1| |#2| |#3|) (-13 (-1247 |#1|) (-10 -8 (-15 -4054 ($ (-1229 |#2| |#1|))) (-15 -2004 ((-1229 |#2| |#1|) $ (-766))) (-15 -4054 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (-15 -1638 ($ $)) (-15 -1650 ($ $)) (-15 -2009 ($ $)) (-15 -1574 ($ $)) (-15 -2863 ($ $ (-562) (-562))) (-15 -2970 ($ $)) (-15 -4325 ($ (-562) (-562) $)) (-15 -2584 ($ (-562) (-562) $)) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -1248))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-1229 *4 *3)) (-4 *3 (-1044)) (-14 *4 (-1168)) (-14 *5 *3) (-5 *1 (-1248 *3 *4 *5)))) (-2004 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1229 *5 *4)) (-5 *1 (-1248 *4 *5 *6)) (-4 *4 (-1044)) (-14 *5 (-1168)) (-14 *6 *4))) (-4054 (*1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-1638 (*1 *1 *1) (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168)) (-14 *4 *2))) (-1650 (*1 *1 *1) (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168)) (-14 *4 *2))) (-2009 (*1 *1 *1) (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168)) (-14 *4 *2))) (-1574 (*1 *1 *1) (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168)) (-14 *4 *2))) (-2863 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044)) (-14 *4 (-1168)) (-14 *5 *3))) (-2970 (*1 *1 *1) (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168)) (-14 *4 *2))) (-4325 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044)) (-14 *4 (-1168)) (-14 *5 *3))) (-2584 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044)) (-14 *4 (-1168)) (-14 *5 *3))) (-2667 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
-(-13 (-1247 |#1|) (-10 -8 (-15 -4054 ($ (-1229 |#2| |#1|))) (-15 -2004 ((-1229 |#2| |#1|) $ (-766))) (-15 -4054 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (-15 -1638 ($ $)) (-15 -1650 ($ $)) (-15 -2009 ($ $)) (-15 -1574 ($ $)) (-15 -2863 ($ $ (-562) (-562))) (-15 -2970 ($ $)) (-15 -4325 ($ (-562) (-562) $)) (-15 -2584 ($ (-562) (-562) $)) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -2667 ($ $ (-1252 |#2|))) |%noBranch|)))
-((-2356 (((-1 (-1148 |#1|) (-639 (-1148 |#1|))) (-1 |#2| (-639 |#2|))) 24)) (-2704 (((-1 (-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-4143 (((-1 (-1148 |#1|) (-1148 |#1|)) (-1 |#2| |#2|)) 13)) (-3024 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-2485 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-3768 ((|#2| (-1 |#2| (-639 |#2|)) (-639 |#1|)) 54)) (-3424 (((-639 |#2|) (-639 |#1|) (-639 (-1 |#2| (-639 |#2|)))) 61)) (-3917 ((|#2| |#2| |#2|) 43)))
-(((-1249 |#1| |#2|) (-10 -7 (-15 -4143 ((-1 (-1148 |#1|) (-1148 |#1|)) (-1 |#2| |#2|))) (-15 -2704 ((-1 (-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2356 ((-1 (-1148 |#1|) (-639 (-1148 |#1|))) (-1 |#2| (-639 |#2|)))) (-15 -3917 (|#2| |#2| |#2|)) (-15 -2485 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -3024 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3768 (|#2| (-1 |#2| (-639 |#2|)) (-639 |#1|))) (-15 -3424 ((-639 |#2|) (-639 |#1|) (-639 (-1 |#2| (-639 |#2|)))))) (-38 (-406 (-562))) (-1247 |#1|)) (T -1249))
-((-3424 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *5)) (-5 *4 (-639 (-1 *6 (-639 *6)))) (-4 *5 (-38 (-406 (-562)))) (-4 *6 (-1247 *5)) (-5 *2 (-639 *6)) (-5 *1 (-1249 *5 *6)))) (-3768 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-639 *2))) (-5 *4 (-639 *5)) (-4 *5 (-38 (-406 (-562)))) (-4 *2 (-1247 *5)) (-5 *1 (-1249 *5 *2)))) (-3024 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1247 *4)) (-5 *1 (-1249 *4 *2)) (-4 *4 (-38 (-406 (-562)))))) (-2485 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1247 *4)) (-5 *1 (-1249 *4 *2)) (-4 *4 (-38 (-406 (-562)))))) (-3917 (*1 *2 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1247 *3)))) (-2356 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-639 *5))) (-4 *5 (-1247 *4)) (-4 *4 (-38 (-406 (-562)))) (-5 *2 (-1 (-1148 *4) (-639 (-1148 *4)))) (-5 *1 (-1249 *4 *5)))) (-2704 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1247 *4)) (-4 *4 (-38 (-406 (-562)))) (-5 *2 (-1 (-1148 *4) (-1148 *4) (-1148 *4))) (-5 *1 (-1249 *4 *5)))) (-4143 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1247 *4)) (-4 *4 (-38 (-406 (-562)))) (-5 *2 (-1 (-1148 *4) (-1148 *4))) (-5 *1 (-1249 *4 *5)))))
-(-10 -7 (-15 -4143 ((-1 (-1148 |#1|) (-1148 |#1|)) (-1 |#2| |#2|))) (-15 -2704 ((-1 (-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2356 ((-1 (-1148 |#1|) (-639 (-1148 |#1|))) (-1 |#2| (-639 |#2|)))) (-15 -3917 (|#2| |#2| |#2|)) (-15 -2485 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -3024 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3768 (|#2| (-1 |#2| (-639 |#2|)) (-639 |#1|))) (-15 -3424 ((-639 |#2|) (-639 |#1|) (-639 (-1 |#2| (-639 |#2|))))))
-((-1403 ((|#2| |#4| (-766)) 30)) (-2013 ((|#4| |#2|) 25)) (-3256 ((|#4| (-406 |#2|)) 52 (|has| |#1| (-554)))) (-2986 (((-1 |#4| (-639 |#4|)) |#3|) 46)))
-(((-1250 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2013 (|#4| |#2|)) (-15 -1403 (|#2| |#4| (-766))) (-15 -2986 ((-1 |#4| (-639 |#4|)) |#3|)) (IF (|has| |#1| (-554)) (-15 -3256 (|#4| (-406 |#2|))) |%noBranch|)) (-1044) (-1232 |#1|) (-650 |#2|) (-1247 |#1|)) (T -1250))
-((-3256 (*1 *2 *3) (-12 (-5 *3 (-406 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-554)) (-4 *4 (-1044)) (-4 *2 (-1247 *4)) (-5 *1 (-1250 *4 *5 *6 *2)) (-4 *6 (-650 *5)))) (-2986 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-1232 *4)) (-5 *2 (-1 *6 (-639 *6))) (-5 *1 (-1250 *4 *5 *3 *6)) (-4 *3 (-650 *5)) (-4 *6 (-1247 *4)))) (-1403 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-1044)) (-4 *2 (-1232 *5)) (-5 *1 (-1250 *5 *2 *6 *3)) (-4 *6 (-650 *2)) (-4 *3 (-1247 *5)))) (-2013 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *3 (-1232 *4)) (-4 *2 (-1247 *4)) (-5 *1 (-1250 *4 *3 *5 *2)) (-4 *5 (-650 *3)))))
-(-10 -7 (-15 -2013 (|#4| |#2|)) (-15 -1403 (|#2| |#4| (-766))) (-15 -2986 ((-1 |#4| (-639 |#4|)) |#3|)) (IF (|has| |#1| (-554)) (-15 -3256 (|#4| (-406 |#2|))) |%noBranch|))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-1401 (((-639 (-1074)) $) NIL)) (-2443 (((-1168) $) 86)) (-3600 (((-1229 |#2| |#1|) $ (-766)) 73)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) NIL (|has| |#1| (-554)))) (-1965 (($ $) NIL (|has| |#1| (-554)))) (-4102 (((-112) $) 136 (|has| |#1| (-554)))) (-1302 (($ $ (-766)) 121) (($ $ (-766) (-766)) 123)) (-4196 (((-1148 (-2 (|:| |k| (-766)) (|:| |c| |#1|))) $) 42)) (-2987 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4098 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2781 (((-3 $ "failed") $ $) NIL)) (-1644 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4206 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4074 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1503 (($ (-1148 (-2 (|:| |k| (-766)) (|:| |c| |#1|)))) 53) (($ (-1148 |#1|)) NIL)) (-3013 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4120 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3329 (($) NIL T CONST)) (-3043 (($ $) 127)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-2344 (($ $) 134)) (-1455 (((-947 |#1|) $ (-766)) 63) (((-947 |#1|) $ (-766) (-766)) 65)) (-2965 (((-112) $) NIL)) (-4100 (($) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1993 (((-766) $) NIL) (((-766) $ (-766)) NIL)) (-4367 (((-112) $) NIL)) (-3656 (($ $) 111)) (-1895 (($ $ (-562)) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3637 (($ (-562) (-562) $) 129)) (-3662 (($ $ (-916)) 133)) (-2064 (($ (-1 |#1| (-562)) $) 105)) (-2833 (((-112) $) NIL)) (-1377 (($ |#1| (-766)) 15) (($ $ (-1074) (-766)) NIL) (($ $ (-639 (-1074)) (-639 (-766))) NIL)) (-4152 (($ (-1 |#1| |#1|) $) 93)) (-4366 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1560 (($ $) NIL)) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-1376 (($ $) 109)) (-4361 (($ $) 107)) (-1628 (($ (-562) (-562) $) 131)) (-3081 (($ $) 144 (|has| |#1| (-38 (-406 (-562))))) (($ $ (-1168)) 150 (-4037 (-12 (|has| |#1| (-15 -3081 (|#1| |#1| (-1168)))) (|has| |#1| (-15 -1401 ((-639 (-1168)) |#1|))) (|has| |#1| (-38 (-406 (-562))))) (-12 (|has| |#1| (-29 (-562))) (|has| |#1| (-38 (-406 (-562)))) (|has| |#1| (-954)) (|has| |#1| (-1192))))) (($ $ (-1252 |#2|)) 145 (|has| |#1| (-38 (-406 (-562)))))) (-1709 (((-1112) $) NIL)) (-1337 (($ $ (-562) (-562)) 115)) (-4316 (($ $ (-766)) 117)) (-1762 (((-3 $ "failed") $ $) NIL (|has| |#1| (-554)))) (-3430 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2021 (($ $) 113)) (-1433 (((-1148 |#1|) $ |#1|) 95 (|has| |#1| (-15 ** (|#1| |#1| (-766)))))) (-2343 ((|#1| $ (-766)) 90) (($ $ $) 125 (|has| (-766) (-1104)))) (-4029 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) 102 (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $) 97 (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $ (-1252 |#2|)) 98)) (-2250 (((-766) $) NIL)) (-3022 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4130 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3000 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4108 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2977 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4087 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1345 (($ $) 119)) (-4053 (((-857) $) NIL) (($ (-562)) 24) (($ (-406 (-562))) 142 (|has| |#1| (-38 (-406 (-562))))) (($ $) NIL (|has| |#1| (-554))) (($ |#1|) 23 (|has| |#1| (-171))) (($ (-1229 |#2| |#1|)) 79) (($ (-1252 |#2|)) 20)) (-3969 (((-1148 |#1|) $) NIL)) (-2266 ((|#1| $ (-766)) 89)) (-2059 (((-3 $ "failed") $) NIL (|has| |#1| (-144)))) (-1568 (((-766)) NIL)) (-2328 ((|#1| $) 87)) (-3054 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4165 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3799 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3033 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4139 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3077 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4183 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-1406 ((|#1| $ (-766)) 85 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-766)))) (|has| |#1| (-15 -4053 (|#1| (-1168))))))) (-1567 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4195 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3065 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4175 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-3040 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-4151 (($ $) NIL (|has| |#1| (-38 (-406 (-562)))))) (-2285 (($) 17 T CONST)) (-2294 (($) 13 T CONST)) (-3113 (($ $ (-639 (-1168)) (-639 (-766))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168) (-766)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-639 (-1168))) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-1168)) NIL (-12 (|has| |#1| (-15 * (|#1| (-766) |#1|))) (|has| |#1| (-895 (-1168))))) (($ $ (-766)) NIL (|has| |#1| (-15 * (|#1| (-766) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-766) |#1|))))) (-1733 (((-112) $ $) NIL)) (-1859 (($ $ |#1|) NIL (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) 101)) (-1836 (($ $ $) 18)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL) (($ $ |#1|) 139 (|has| |#1| (-362))) (($ $ $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 100) (($ (-406 (-562)) $) NIL (|has| |#1| (-38 (-406 (-562))))) (($ $ (-406 (-562))) NIL (|has| |#1| (-38 (-406 (-562)))))))
+(((-1248 |#1| |#2| |#3|) (-13 (-1247 |#1|) (-10 -8 (-15 -4053 ($ (-1229 |#2| |#1|))) (-15 -3600 ((-1229 |#2| |#1|) $ (-766))) (-15 -4053 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (-15 -4361 ($ $)) (-15 -1376 ($ $)) (-15 -3656 ($ $)) (-15 -2021 ($ $)) (-15 -1337 ($ $ (-562) (-562))) (-15 -3043 ($ $)) (-15 -3637 ($ (-562) (-562) $)) (-15 -1628 ($ (-562) (-562) $)) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|))) (-1044) (-1168) |#1|) (T -1248))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-1229 *4 *3)) (-4 *3 (-1044)) (-14 *4 (-1168)) (-14 *5 *3) (-5 *1 (-1248 *3 *4 *5)))) (-3600 (*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1229 *5 *4)) (-5 *1 (-1248 *4 *5 *6)) (-4 *4 (-1044)) (-14 *5 (-1168)) (-14 *6 *4))) (-4053 (*1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-4029 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044)) (-14 *5 *3))) (-4361 (*1 *1 *1) (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168)) (-14 *4 *2))) (-1376 (*1 *1 *1) (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168)) (-14 *4 *2))) (-3656 (*1 *1 *1) (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168)) (-14 *4 *2))) (-2021 (*1 *1 *1) (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168)) (-14 *4 *2))) (-1337 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044)) (-14 *4 (-1168)) (-14 *5 *3))) (-3043 (*1 *1 *1) (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168)) (-14 *4 *2))) (-3637 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044)) (-14 *4 (-1168)) (-14 *5 *3))) (-1628 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044)) (-14 *4 (-1168)) (-14 *5 *3))) (-3081 (*1 *1 *1 *2) (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
+(-13 (-1247 |#1|) (-10 -8 (-15 -4053 ($ (-1229 |#2| |#1|))) (-15 -3600 ((-1229 |#2| |#1|) $ (-766))) (-15 -4053 ($ (-1252 |#2|))) (-15 -4029 ($ $ (-1252 |#2|))) (-15 -4361 ($ $)) (-15 -1376 ($ $)) (-15 -3656 ($ $)) (-15 -2021 ($ $)) (-15 -1337 ($ $ (-562) (-562))) (-15 -3043 ($ $)) (-15 -3637 ($ (-562) (-562) $)) (-15 -1628 ($ (-562) (-562) $)) (IF (|has| |#1| (-38 (-406 (-562)))) (-15 -3081 ($ $ (-1252 |#2|))) |%noBranch|)))
+((-2958 (((-1 (-1148 |#1|) (-639 (-1148 |#1|))) (-1 |#2| (-639 |#2|))) 24)) (-3404 (((-1 (-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-2597 (((-1 (-1148 |#1|) (-1148 |#1|)) (-1 |#2| |#2|)) 13)) (-3497 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-1860 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-3262 ((|#2| (-1 |#2| (-639 |#2|)) (-639 |#1|)) 54)) (-2950 (((-639 |#2|) (-639 |#1|) (-639 (-1 |#2| (-639 |#2|)))) 61)) (-2374 ((|#2| |#2| |#2|) 43)))
+(((-1249 |#1| |#2|) (-10 -7 (-15 -2597 ((-1 (-1148 |#1|) (-1148 |#1|)) (-1 |#2| |#2|))) (-15 -3404 ((-1 (-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2958 ((-1 (-1148 |#1|) (-639 (-1148 |#1|))) (-1 |#2| (-639 |#2|)))) (-15 -2374 (|#2| |#2| |#2|)) (-15 -1860 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -3497 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3262 (|#2| (-1 |#2| (-639 |#2|)) (-639 |#1|))) (-15 -2950 ((-639 |#2|) (-639 |#1|) (-639 (-1 |#2| (-639 |#2|)))))) (-38 (-406 (-562))) (-1247 |#1|)) (T -1249))
+((-2950 (*1 *2 *3 *4) (-12 (-5 *3 (-639 *5)) (-5 *4 (-639 (-1 *6 (-639 *6)))) (-4 *5 (-38 (-406 (-562)))) (-4 *6 (-1247 *5)) (-5 *2 (-639 *6)) (-5 *1 (-1249 *5 *6)))) (-3262 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-639 *2))) (-5 *4 (-639 *5)) (-4 *5 (-38 (-406 (-562)))) (-4 *2 (-1247 *5)) (-5 *1 (-1249 *5 *2)))) (-3497 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1247 *4)) (-5 *1 (-1249 *4 *2)) (-4 *4 (-38 (-406 (-562)))))) (-1860 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1247 *4)) (-5 *1 (-1249 *4 *2)) (-4 *4 (-38 (-406 (-562)))))) (-2374 (*1 *2 *2 *2) (-12 (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1247 *3)))) (-2958 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-639 *5))) (-4 *5 (-1247 *4)) (-4 *4 (-38 (-406 (-562)))) (-5 *2 (-1 (-1148 *4) (-639 (-1148 *4)))) (-5 *1 (-1249 *4 *5)))) (-3404 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1247 *4)) (-4 *4 (-38 (-406 (-562)))) (-5 *2 (-1 (-1148 *4) (-1148 *4) (-1148 *4))) (-5 *1 (-1249 *4 *5)))) (-2597 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1247 *4)) (-4 *4 (-38 (-406 (-562)))) (-5 *2 (-1 (-1148 *4) (-1148 *4))) (-5 *1 (-1249 *4 *5)))))
+(-10 -7 (-15 -2597 ((-1 (-1148 |#1|) (-1148 |#1|)) (-1 |#2| |#2|))) (-15 -3404 ((-1 (-1148 |#1|) (-1148 |#1|) (-1148 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -2958 ((-1 (-1148 |#1|) (-639 (-1148 |#1|))) (-1 |#2| (-639 |#2|)))) (-15 -2374 (|#2| |#2| |#2|)) (-15 -1860 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -3497 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3262 (|#2| (-1 |#2| (-639 |#2|)) (-639 |#1|))) (-15 -2950 ((-639 |#2|) (-639 |#1|) (-639 (-1 |#2| (-639 |#2|))))))
+((-1749 ((|#2| |#4| (-766)) 30)) (-3699 ((|#4| |#2|) 25)) (-2012 ((|#4| (-406 |#2|)) 52 (|has| |#1| (-554)))) (-3190 (((-1 |#4| (-639 |#4|)) |#3|) 46)))
+(((-1250 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3699 (|#4| |#2|)) (-15 -1749 (|#2| |#4| (-766))) (-15 -3190 ((-1 |#4| (-639 |#4|)) |#3|)) (IF (|has| |#1| (-554)) (-15 -2012 (|#4| (-406 |#2|))) |%noBranch|)) (-1044) (-1232 |#1|) (-650 |#2|) (-1247 |#1|)) (T -1250))
+((-2012 (*1 *2 *3) (-12 (-5 *3 (-406 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-554)) (-4 *4 (-1044)) (-4 *2 (-1247 *4)) (-5 *1 (-1250 *4 *5 *6 *2)) (-4 *6 (-650 *5)))) (-3190 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *5 (-1232 *4)) (-5 *2 (-1 *6 (-639 *6))) (-5 *1 (-1250 *4 *5 *3 *6)) (-4 *3 (-650 *5)) (-4 *6 (-1247 *4)))) (-1749 (*1 *2 *3 *4) (-12 (-5 *4 (-766)) (-4 *5 (-1044)) (-4 *2 (-1232 *5)) (-5 *1 (-1250 *5 *2 *6 *3)) (-4 *6 (-650 *2)) (-4 *3 (-1247 *5)))) (-3699 (*1 *2 *3) (-12 (-4 *4 (-1044)) (-4 *3 (-1232 *4)) (-4 *2 (-1247 *4)) (-5 *1 (-1250 *4 *3 *5 *2)) (-4 *5 (-650 *3)))))
+(-10 -7 (-15 -3699 (|#4| |#2|)) (-15 -1749 (|#2| |#4| (-766))) (-15 -3190 ((-1 |#4| (-639 |#4|)) |#3|)) (IF (|has| |#1| (-554)) (-15 -2012 (|#4| (-406 |#2|))) |%noBranch|))
NIL
(((-1251) (-139)) (T -1251))
NIL
(-13 (-10 -7 (-6 -1370)))
-((-4041 (((-112) $ $) NIL)) (-2444 (((-1168)) 12)) (-2913 (((-1150) $) 17)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 11) (((-1168) $) 8)) (-1731 (((-112) $ $) 14)))
-(((-1252 |#1|) (-13 (-1092) (-609 (-1168)) (-10 -8 (-15 -4054 ((-1168) $)) (-15 -2444 ((-1168))))) (-1168)) (T -1252))
-((-4054 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1252 *3)) (-14 *3 *2))) (-2444 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1252 *3)) (-14 *3 *2))))
-(-13 (-1092) (-609 (-1168)) (-10 -8 (-15 -4054 ((-1168) $)) (-15 -2444 ((-1168)))))
-((-2911 (($ (-766)) 18)) (-2841 (((-683 |#2|) $ $) 40)) (-3076 ((|#2| $) 48)) (-3641 ((|#2| $) 47)) (-4177 ((|#2| $ $) 35)) (-1386 (($ $ $) 44)) (-1848 (($ $) 22) (($ $ $) 28)) (-1835 (($ $ $) 15)) (* (($ (-562) $) 25) (($ |#2| $) 31) (($ $ |#2|) 30)))
-(((-1253 |#1| |#2|) (-10 -8 (-15 -3076 (|#2| |#1|)) (-15 -3641 (|#2| |#1|)) (-15 -1386 (|#1| |#1| |#1|)) (-15 -2841 ((-683 |#2|) |#1| |#1|)) (-15 -4177 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 -2911 (|#1| (-766))) (-15 -1835 (|#1| |#1| |#1|))) (-1254 |#2|) (-1207)) (T -1253))
-NIL
-(-10 -8 (-15 -3076 (|#2| |#1|)) (-15 -3641 (|#2| |#1|)) (-15 -1386 (|#1| |#1| |#1|)) (-15 -2841 ((-683 |#2|) |#1| |#1|)) (-15 -4177 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1848 (|#1| |#1| |#1|)) (-15 -1848 (|#1| |#1|)) (-15 -2911 (|#1| (-766))) (-15 -1835 (|#1| |#1| |#1|)))
-((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2911 (($ (-766)) 112 (|has| |#1| (-23)))) (-3052 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-845)))) (-3381 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4403))) (($ $) 88 (-12 (|has| |#1| (-845)) (|has| $ (-6 -4403))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-845)))) (-4336 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) |#1|) 52 (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) 58 (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4402)))) (-1800 (($) 7 T CONST)) (-2447 (($ $) 90 (|has| $ (-6 -4403)))) (-2677 (($ $) 100)) (-1459 (($ $) 78 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1475 (($ |#1| $) 77 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) 53 (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) 51)) (-4264 (((-562) (-1 (-112) |#1|) $) 97) (((-562) |#1| $) 96 (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) 95 (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4402)))) (-2841 (((-683 |#1|) $ $) 105 (|has| |#1| (-1044)))) (-1458 (($ (-766) |#1|) 69)) (-3292 (((-112) $ (-766)) 9)) (-4197 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 87 (|has| |#1| (-845)))) (-1610 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-3874 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 86 (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3076 ((|#1| $) 102 (-12 (|has| |#1| (-1044)) (|has| |#1| (-997))))) (-3289 (((-112) $ (-766)) 10)) (-3641 ((|#1| $) 103 (-12 (|has| |#1| (-1044)) (|has| |#1| (-997))))) (-2913 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3297 (($ |#1| $ (-562)) 60) (($ $ $ (-562)) 59)) (-2093 (((-639 (-562)) $) 46)) (-1570 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 42 (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-2716 (($ $ |#1|) 41 (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) 14)) (-3521 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) 48)) (-2974 (((-112) $) 11)) (-4307 (($) 12)) (-2343 ((|#1| $ (-562) |#1|) 50) ((|#1| $ (-562)) 49) (($ $ (-1223 (-562))) 63)) (-4177 ((|#1| $ $) 106 (|has| |#1| (-1044)))) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-1386 (($ $ $) 104 (|has| |#1| (-1044)))) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4402))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4402))))) (-1853 (($ $ $ (-562)) 91 (|has| $ (-6 -4403)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 70)) (-2767 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4054 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) 84 (|has| |#1| (-845)))) (-1772 (((-112) $ $) 83 (|has| |#1| (-845)))) (-1731 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-1785 (((-112) $ $) 85 (|has| |#1| (-845)))) (-1759 (((-112) $ $) 82 (|has| |#1| (-845)))) (-1848 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-1835 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-562) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-721))) (($ $ |#1|) 107 (|has| |#1| (-721)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4402)))))
+((-4041 (((-112) $ $) NIL)) (-2443 (((-1168)) 12)) (-3696 (((-1150) $) 17)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 11) (((-1168) $) 8)) (-1733 (((-112) $ $) 14)))
+(((-1252 |#1|) (-13 (-1092) (-609 (-1168)) (-10 -8 (-15 -4053 ((-1168) $)) (-15 -2443 ((-1168))))) (-1168)) (T -1252))
+((-4053 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1252 *3)) (-14 *3 *2))) (-2443 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1252 *3)) (-14 *3 *2))))
+(-13 (-1092) (-609 (-1168)) (-10 -8 (-15 -4053 ((-1168) $)) (-15 -2443 ((-1168)))))
+((-2910 (($ (-766)) 18)) (-2840 (((-683 |#2|) $ $) 40)) (-3872 ((|#2| $) 48)) (-3641 ((|#2| $) 47)) (-2852 ((|#2| $ $) 35)) (-3247 (($ $ $) 44)) (-1847 (($ $) 22) (($ $ $) 28)) (-1836 (($ $ $) 15)) (* (($ (-562) $) 25) (($ |#2| $) 31) (($ $ |#2|) 30)))
+(((-1253 |#1| |#2|) (-10 -8 (-15 -3872 (|#2| |#1|)) (-15 -3641 (|#2| |#1|)) (-15 -3247 (|#1| |#1| |#1|)) (-15 -2840 ((-683 |#2|) |#1| |#1|)) (-15 -2852 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 -2910 (|#1| (-766))) (-15 -1836 (|#1| |#1| |#1|))) (-1254 |#2|) (-1207)) (T -1253))
+NIL
+(-10 -8 (-15 -3872 (|#2| |#1|)) (-15 -3641 (|#2| |#1|)) (-15 -3247 (|#1| |#1| |#1|)) (-15 -2840 ((-683 |#2|) |#1| |#1|)) (-15 -2852 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-562) |#1|)) (-15 -1847 (|#1| |#1| |#1|)) (-15 -1847 (|#1| |#1|)) (-15 -2910 (|#1| (-766))) (-15 -1836 (|#1| |#1| |#1|)))
+((-4041 (((-112) $ $) 19 (|has| |#1| (-1092)))) (-2910 (($ (-766)) 112 (|has| |#1| (-23)))) (-3655 (((-1261) $ (-562) (-562)) 40 (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) |#1| |#1|) $) 98) (((-112) $) 92 (|has| |#1| (-845)))) (-3737 (($ (-1 (-112) |#1| |#1|) $) 89 (|has| $ (-6 -4404))) (($ $) 88 (-12 (|has| |#1| (-845)) (|has| $ (-6 -4404))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) 99) (($ $) 93 (|has| |#1| (-845)))) (-3735 (((-112) $ (-766)) 8)) (-4200 ((|#1| $ (-562) |#1|) 52 (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) 58 (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4403)))) (-3329 (($) 7 T CONST)) (-2673 (($ $) 90 (|has| $ (-6 -4404)))) (-2676 (($ $) 100)) (-1459 (($ $) 78 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1475 (($ |#1| $) 77 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) (($ (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 76 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 73 (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) 72 (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) 53 (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) 51)) (-4265 (((-562) (-1 (-112) |#1|) $) 97) (((-562) |#1| $) 96 (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) 95 (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) 30 (|has| $ (-6 -4403)))) (-2840 (((-683 |#1|) $ $) 105 (|has| |#1| (-1044)))) (-1458 (($ (-766) |#1|) 69)) (-4172 (((-112) $ (-766)) 9)) (-1849 (((-562) $) 43 (|has| (-562) (-845)))) (-1551 (($ $ $) 87 (|has| |#1| (-845)))) (-4103 (($ (-1 (-112) |#1| |#1|) $ $) 101) (($ $ $) 94 (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) 27 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-1929 (((-562) $) 44 (|has| (-562) (-845)))) (-2993 (($ $ $) 86 (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) 34 (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 64)) (-3872 ((|#1| $) 102 (-12 (|has| |#1| (-1044)) (|has| |#1| (-997))))) (-4147 (((-112) $ (-766)) 10)) (-3641 ((|#1| $) 103 (-12 (|has| |#1| (-1044)) (|has| |#1| (-997))))) (-3696 (((-1150) $) 22 (|has| |#1| (-1092)))) (-3295 (($ |#1| $ (-562)) 60) (($ $ $ (-562)) 59)) (-3336 (((-639 (-562)) $) 46)) (-1987 (((-112) (-562) $) 47)) (-1709 (((-1112) $) 21 (|has| |#1| (-1092)))) (-1421 ((|#1| $) 42 (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 71)) (-3510 (($ $ |#1|) 41 (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) 26 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) 25 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) 24 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) 23 (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) 14)) (-2716 (((-112) |#1| $) 45 (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) 48)) (-3087 (((-112) $) 11)) (-1663 (($) 12)) (-2343 ((|#1| $ (-562) |#1|) 50) ((|#1| $ (-562)) 49) (($ $ (-1223 (-562))) 63)) (-2852 ((|#1| $ $) 106 (|has| |#1| (-1044)))) (-2880 (($ $ (-562)) 62) (($ $ (-1223 (-562))) 61)) (-3247 (($ $ $) 104 (|has| |#1| (-1044)))) (-1723 (((-766) (-1 (-112) |#1|) $) 31 (|has| $ (-6 -4403))) (((-766) |#1| $) 28 (-12 (|has| |#1| (-1092)) (|has| $ (-6 -4403))))) (-2694 (($ $ $ (-562)) 91 (|has| $ (-6 -4404)))) (-4220 (($ $) 13)) (-4208 (((-535) $) 79 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 70)) (-2767 (($ $ |#1|) 68) (($ |#1| $) 67) (($ $ $) 66) (($ (-639 $)) 65)) (-4053 (((-857) $) 18 (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) 84 (|has| |#1| (-845)))) (-1771 (((-112) $ $) 83 (|has| |#1| (-845)))) (-1733 (((-112) $ $) 20 (|has| |#1| (-1092)))) (-1785 (((-112) $ $) 85 (|has| |#1| (-845)))) (-1761 (((-112) $ $) 82 (|has| |#1| (-845)))) (-1847 (($ $) 111 (|has| |#1| (-21))) (($ $ $) 110 (|has| |#1| (-21)))) (-1836 (($ $ $) 113 (|has| |#1| (-25)))) (* (($ (-562) $) 109 (|has| |#1| (-21))) (($ |#1| $) 108 (|has| |#1| (-721))) (($ $ |#1|) 107 (|has| |#1| (-721)))) (-3492 (((-766) $) 6 (|has| $ (-6 -4403)))))
(((-1254 |#1|) (-139) (-1207)) (T -1254))
-((-1835 (*1 *1 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-25)))) (-2911 (*1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1254 *3)) (-4 *3 (-23)) (-4 *3 (-1207)))) (-1848 (*1 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-21)))) (-1848 (*1 *1 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-4 *1 (-1254 *3)) (-4 *3 (-1207)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-721)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-721)))) (-4177 (*1 *2 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-1044)))) (-2841 (*1 *2 *1 *1) (-12 (-4 *1 (-1254 *3)) (-4 *3 (-1207)) (-4 *3 (-1044)) (-5 *2 (-683 *3)))) (-1386 (*1 *1 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-1044)))) (-3641 (*1 *2 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-997)) (-4 *2 (-1044)))) (-3076 (*1 *2 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-997)) (-4 *2 (-1044)))))
-(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -1835 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -2911 ($ (-766))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -1848 ($ $)) (-15 -1848 ($ $ $)) (-15 * ($ (-562) $))) |%noBranch|) (IF (|has| |t#1| (-721)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-1044)) (PROGN (-15 -4177 (|t#1| $ $)) (-15 -2841 ((-683 |t#1|) $ $)) (-15 -1386 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-997)) (IF (|has| |t#1| (-1044)) (PROGN (-15 -3641 (|t#1| $)) (-15 -3076 (|t#1| $))) |%noBranch|) |%noBranch|)))
+((-1836 (*1 *1 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-25)))) (-2910 (*1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1254 *3)) (-4 *3 (-23)) (-4 *3 (-1207)))) (-1847 (*1 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-21)))) (-1847 (*1 *1 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-4 *1 (-1254 *3)) (-4 *3 (-1207)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-721)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-721)))) (-2852 (*1 *2 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-1044)))) (-2840 (*1 *2 *1 *1) (-12 (-4 *1 (-1254 *3)) (-4 *3 (-1207)) (-4 *3 (-1044)) (-5 *2 (-683 *3)))) (-3247 (*1 *1 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-1044)))) (-3641 (*1 *2 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-997)) (-4 *2 (-1044)))) (-3872 (*1 *2 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-997)) (-4 *2 (-1044)))))
+(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -1836 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -2910 ($ (-766))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -1847 ($ $)) (-15 -1847 ($ $ $)) (-15 * ($ (-562) $))) |%noBranch|) (IF (|has| |t#1| (-721)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-1044)) (PROGN (-15 -2852 (|t#1| $ $)) (-15 -2840 ((-683 |t#1|) $ $)) (-15 -3247 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-997)) (IF (|has| |t#1| (-1044)) (PROGN (-15 -3641 (|t#1| $)) (-15 -3872 (|t#1| $))) |%noBranch|) |%noBranch|)))
(((-34) . T) ((-102) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845))) ((-609 (-857)) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845)) (|has| |#1| (-609 (-857)))) ((-150 |#1|) . T) ((-610 (-535)) |has| |#1| (-610 (-535))) ((-285 #0=(-562) |#1|) . T) ((-287 #0# |#1|) . T) ((-308 |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-372 |#1|) . T) ((-488 |#1|) . T) ((-600 #0# |#1|) . T) ((-513 |#1| |#1|) -12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))) ((-645 |#1|) . T) ((-19 |#1|) . T) ((-845) |has| |#1| (-845)) ((-1092) -4037 (|has| |#1| (-1092)) (|has| |#1| (-845))) ((-1207) . T))
-((-2578 (((-1256 |#2|) (-1 |#2| |#1| |#2|) (-1256 |#1|) |#2|) 13)) (-1955 ((|#2| (-1 |#2| |#1| |#2|) (-1256 |#1|) |#2|) 15)) (-4152 (((-3 (-1256 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1256 |#1|)) 28) (((-1256 |#2|) (-1 |#2| |#1|) (-1256 |#1|)) 18)))
-(((-1255 |#1| |#2|) (-10 -7 (-15 -2578 ((-1256 |#2|) (-1 |#2| |#1| |#2|) (-1256 |#1|) |#2|)) (-15 -1955 (|#2| (-1 |#2| |#1| |#2|) (-1256 |#1|) |#2|)) (-15 -4152 ((-1256 |#2|) (-1 |#2| |#1|) (-1256 |#1|))) (-15 -4152 ((-3 (-1256 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1256 |#1|)))) (-1207) (-1207)) (T -1255))
-((-4152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1256 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-1256 *6)) (-5 *1 (-1255 *5 *6)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1256 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-1256 *6)) (-5 *1 (-1255 *5 *6)))) (-1955 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1256 *5)) (-4 *5 (-1207)) (-4 *2 (-1207)) (-5 *1 (-1255 *5 *2)))) (-2578 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1256 *6)) (-4 *6 (-1207)) (-4 *5 (-1207)) (-5 *2 (-1256 *5)) (-5 *1 (-1255 *6 *5)))))
-(-10 -7 (-15 -2578 ((-1256 |#2|) (-1 |#2| |#1| |#2|) (-1256 |#1|) |#2|)) (-15 -1955 (|#2| (-1 |#2| |#1| |#2|) (-1256 |#1|) |#2|)) (-15 -4152 ((-1256 |#2|) (-1 |#2| |#1|) (-1256 |#1|))) (-15 -4152 ((-3 (-1256 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1256 |#1|))))
-((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2911 (($ (-766)) NIL (|has| |#1| (-23)))) (-4004 (($ (-639 |#1|)) 9)) (-3052 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4403)))) (-1399 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3381 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4403))) (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-4336 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4403)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1800 (($) NIL T CONST)) (-2447 (($ $) NIL (|has| $ (-6 -4403)))) (-2677 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1955 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4402))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4402)))) (-1505 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4403)))) (-1420 ((|#1| $ (-562)) NIL)) (-4264 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) 15 (|has| $ (-6 -4402)))) (-2841 (((-683 |#1|) $ $) NIL (|has| |#1| (-1044)))) (-1458 (($ (-766) |#1|) NIL)) (-3292 (((-112) $ (-766)) NIL)) (-4197 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-1610 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-1912 (((-639 |#1|) $) NIL (|has| $ (-6 -4402)))) (-1669 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-3874 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1490 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3076 ((|#1| $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1044))))) (-3289 (((-112) $ (-766)) NIL)) (-3641 ((|#1| $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1044))))) (-2913 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3297 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-2093 (((-639 (-562)) $) NIL)) (-1570 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-3251 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2716 (($ $ |#1|) NIL (|has| $ (-6 -4403)))) (-1763 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-3336 (((-112) $ $) NIL)) (-3521 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-2411 (((-639 |#1|) $) NIL)) (-2974 (((-112) $) NIL)) (-4307 (($) NIL)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-4177 ((|#1| $ $) NIL (|has| |#1| (-1044)))) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-1386 (($ $ $) NIL (|has| |#1| (-1044)))) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#1| (-1092))))) (-1853 (($ $ $ (-562)) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) 19 (|has| |#1| (-610 (-535))))) (-4066 (($ (-639 |#1|)) 8)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4054 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-1744 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4402)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1772 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1731 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1759 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1848 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1835 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-562) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-721))) (($ $ |#1|) NIL (|has| |#1| (-721)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
+((-1555 (((-1256 |#2|) (-1 |#2| |#1| |#2|) (-1256 |#1|) |#2|) 13)) (-1954 ((|#2| (-1 |#2| |#1| |#2|) (-1256 |#1|) |#2|) 15)) (-4152 (((-3 (-1256 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1256 |#1|)) 28) (((-1256 |#2|) (-1 |#2| |#1|) (-1256 |#1|)) 18)))
+(((-1255 |#1| |#2|) (-10 -7 (-15 -1555 ((-1256 |#2|) (-1 |#2| |#1| |#2|) (-1256 |#1|) |#2|)) (-15 -1954 (|#2| (-1 |#2| |#1| |#2|) (-1256 |#1|) |#2|)) (-15 -4152 ((-1256 |#2|) (-1 |#2| |#1|) (-1256 |#1|))) (-15 -4152 ((-3 (-1256 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1256 |#1|)))) (-1207) (-1207)) (T -1255))
+((-4152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1256 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-1256 *6)) (-5 *1 (-1255 *5 *6)))) (-4152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1256 *5)) (-4 *5 (-1207)) (-4 *6 (-1207)) (-5 *2 (-1256 *6)) (-5 *1 (-1255 *5 *6)))) (-1954 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1256 *5)) (-4 *5 (-1207)) (-4 *2 (-1207)) (-5 *1 (-1255 *5 *2)))) (-1555 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1256 *6)) (-4 *6 (-1207)) (-4 *5 (-1207)) (-5 *2 (-1256 *5)) (-5 *1 (-1255 *6 *5)))))
+(-10 -7 (-15 -1555 ((-1256 |#2|) (-1 |#2| |#1| |#2|) (-1256 |#1|) |#2|)) (-15 -1954 (|#2| (-1 |#2| |#1| |#2|) (-1256 |#1|) |#2|)) (-15 -4152 ((-1256 |#2|) (-1 |#2| |#1|) (-1256 |#1|))) (-15 -4152 ((-3 (-1256 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1256 |#1|))))
+((-4041 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-2910 (($ (-766)) NIL (|has| |#1| (-23)))) (-4004 (($ (-639 |#1|)) 9)) (-3655 (((-1261) $ (-562) (-562)) NIL (|has| $ (-6 -4404)))) (-1706 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-845)))) (-3737 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4404))) (($ $) NIL (-12 (|has| $ (-6 -4404)) (|has| |#1| (-845))))) (-1395 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-845)))) (-3735 (((-112) $ (-766)) NIL)) (-4200 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404))) ((|#1| $ (-1223 (-562)) |#1|) NIL (|has| $ (-6 -4404)))) (-3556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-3329 (($) NIL T CONST)) (-2673 (($ $) NIL (|has| $ (-6 -4404)))) (-2676 (($ $) NIL)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1475 (($ |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1954 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4403))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4403)))) (-1507 ((|#1| $ (-562) |#1|) NIL (|has| $ (-6 -4404)))) (-1420 ((|#1| $ (-562)) NIL)) (-4265 (((-562) (-1 (-112) |#1|) $) NIL) (((-562) |#1| $) NIL (|has| |#1| (-1092))) (((-562) |#1| $ (-562)) NIL (|has| |#1| (-1092)))) (-1720 (((-639 |#1|) $) 15 (|has| $ (-6 -4403)))) (-2840 (((-683 |#1|) $ $) NIL (|has| |#1| (-1044)))) (-1458 (($ (-766) |#1|) NIL)) (-4172 (((-112) $ (-766)) NIL)) (-1849 (((-562) $) NIL (|has| (-562) (-845)))) (-1551 (($ $ $) NIL (|has| |#1| (-845)))) (-4103 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-845)))) (-2123 (((-639 |#1|) $) NIL (|has| $ (-6 -4403)))) (-1572 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-1929 (((-562) $) NIL (|has| (-562) (-845)))) (-2993 (($ $ $) NIL (|has| |#1| (-845)))) (-1491 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3872 ((|#1| $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1044))))) (-4147 (((-112) $ (-766)) NIL)) (-3641 ((|#1| $) NIL (-12 (|has| |#1| (-997)) (|has| |#1| (-1044))))) (-3696 (((-1150) $) NIL (|has| |#1| (-1092)))) (-3295 (($ |#1| $ (-562)) NIL) (($ $ $ (-562)) NIL)) (-3336 (((-639 (-562)) $) NIL)) (-1987 (((-112) (-562) $) NIL)) (-1709 (((-1112) $) NIL (|has| |#1| (-1092)))) (-1421 ((|#1| $) NIL (|has| (-562) (-845)))) (-1963 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3510 (($ $ |#1|) NIL (|has| $ (-6 -4404)))) (-3008 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 (-293 |#1|))) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-293 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092)))) (($ $ (-639 |#1|) (-639 |#1|)) NIL (-12 (|has| |#1| (-308 |#1|)) (|has| |#1| (-1092))))) (-1452 (((-112) $ $) NIL)) (-2716 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2366 (((-639 |#1|) $) NIL)) (-3087 (((-112) $) NIL)) (-1663 (($) NIL)) (-2343 ((|#1| $ (-562) |#1|) NIL) ((|#1| $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-2852 ((|#1| $ $) NIL (|has| |#1| (-1044)))) (-2880 (($ $ (-562)) NIL) (($ $ (-1223 (-562))) NIL)) (-3247 (($ $ $) NIL (|has| |#1| (-1044)))) (-1723 (((-766) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403))) (((-766) |#1| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#1| (-1092))))) (-2694 (($ $ $ (-562)) NIL (|has| $ (-6 -4404)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) 19 (|has| |#1| (-610 (-535))))) (-4064 (($ (-639 |#1|)) 8)) (-2767 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-639 $)) NIL)) (-4053 (((-857) $) NIL (|has| |#1| (-609 (-857))))) (-2879 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4403)))) (-1798 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1771 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1733 (((-112) $ $) NIL (|has| |#1| (-1092)))) (-1785 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1761 (((-112) $ $) NIL (|has| |#1| (-845)))) (-1847 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-1836 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-562) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-721))) (($ $ |#1|) NIL (|has| |#1| (-721)))) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
(((-1256 |#1|) (-13 (-1254 |#1|) (-10 -8 (-15 -4004 ($ (-639 |#1|))))) (-1207)) (T -1256))
((-4004 (*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-1256 *3)))))
(-13 (-1254 |#1|) (-10 -8 (-15 -4004 ($ (-639 |#1|)))))
-((-4041 (((-112) $ $) NIL)) (-2672 (((-1150) $ (-1150)) 92) (((-1150) $ (-1150) (-1150)) 90) (((-1150) $ (-1150) (-639 (-1150))) 89)) (-2325 (($) 59)) (-4216 (((-1261) $ (-467) (-916)) 45)) (-3426 (((-1261) $ (-916) (-1150)) 75) (((-1261) $ (-916) (-869)) 76)) (-3817 (((-1261) $ (-916) (-378) (-378)) 48)) (-3563 (((-1261) $ (-1150)) 71)) (-1722 (((-1261) $ (-916) (-1150)) 80)) (-3878 (((-1261) $ (-916) (-378) (-378)) 49)) (-4301 (((-1261) $ (-916) (-916)) 46)) (-2651 (((-1261) $) 72)) (-3082 (((-1261) $ (-916) (-1150)) 79)) (-3099 (((-1261) $ (-467) (-916)) 31)) (-2865 (((-1261) $ (-916) (-1150)) 78)) (-3567 (((-639 (-262)) $) 23) (($ $ (-639 (-262))) 24)) (-3068 (((-1261) $ (-766) (-766)) 43)) (-3639 (($ $) 60) (($ (-467) (-639 (-262))) 61)) (-2913 (((-1150) $) NIL)) (-2320 (((-562) $) 38)) (-1709 (((-1112) $) NIL)) (-2789 (((-1256 (-3 (-467) "undefined")) $) 37)) (-1843 (((-1256 (-2 (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)) (|:| -2865 (-562)) (|:| -1464 (-562)) (|:| |spline| (-562)) (|:| -2503 (-562)) (|:| |axesColor| (-869)) (|:| -3426 (-562)) (|:| |unitsColor| (-869)) (|:| |showing| (-562)))) $) 36)) (-4161 (((-1261) $ (-916) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-869) (-562) (-869) (-562)) 70)) (-4185 (((-639 (-938 (-224))) $) NIL)) (-1489 (((-467) $ (-916)) 33)) (-2563 (((-1261) $ (-766) (-766) (-916) (-916)) 40)) (-4190 (((-1261) $ (-1150)) 81)) (-1464 (((-1261) $ (-916) (-1150)) 77)) (-4054 (((-857) $) 87)) (-1450 (((-1261) $) 82)) (-2503 (((-1261) $ (-916) (-1150)) 73) (((-1261) $ (-916) (-869)) 74)) (-1731 (((-112) $ $) NIL)))
-(((-1257) (-13 (-1092) (-10 -8 (-15 -4185 ((-639 (-938 (-224))) $)) (-15 -2325 ($)) (-15 -3639 ($ $)) (-15 -3567 ((-639 (-262)) $)) (-15 -3567 ($ $ (-639 (-262)))) (-15 -3639 ($ (-467) (-639 (-262)))) (-15 -4161 ((-1261) $ (-916) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-869) (-562) (-869) (-562))) (-15 -1843 ((-1256 (-2 (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)) (|:| -2865 (-562)) (|:| -1464 (-562)) (|:| |spline| (-562)) (|:| -2503 (-562)) (|:| |axesColor| (-869)) (|:| -3426 (-562)) (|:| |unitsColor| (-869)) (|:| |showing| (-562)))) $)) (-15 -2789 ((-1256 (-3 (-467) "undefined")) $)) (-15 -3563 ((-1261) $ (-1150))) (-15 -3099 ((-1261) $ (-467) (-916))) (-15 -1489 ((-467) $ (-916))) (-15 -2503 ((-1261) $ (-916) (-1150))) (-15 -2503 ((-1261) $ (-916) (-869))) (-15 -3426 ((-1261) $ (-916) (-1150))) (-15 -3426 ((-1261) $ (-916) (-869))) (-15 -2865 ((-1261) $ (-916) (-1150))) (-15 -3082 ((-1261) $ (-916) (-1150))) (-15 -1464 ((-1261) $ (-916) (-1150))) (-15 -4190 ((-1261) $ (-1150))) (-15 -1450 ((-1261) $)) (-15 -2563 ((-1261) $ (-766) (-766) (-916) (-916))) (-15 -3878 ((-1261) $ (-916) (-378) (-378))) (-15 -3817 ((-1261) $ (-916) (-378) (-378))) (-15 -1722 ((-1261) $ (-916) (-1150))) (-15 -3068 ((-1261) $ (-766) (-766))) (-15 -4216 ((-1261) $ (-467) (-916))) (-15 -4301 ((-1261) $ (-916) (-916))) (-15 -2672 ((-1150) $ (-1150))) (-15 -2672 ((-1150) $ (-1150) (-1150))) (-15 -2672 ((-1150) $ (-1150) (-639 (-1150)))) (-15 -2651 ((-1261) $)) (-15 -2320 ((-562) $)) (-15 -4054 ((-857) $))))) (T -1257))
-((-4054 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-1257)))) (-4185 (*1 *2 *1) (-12 (-5 *2 (-639 (-938 (-224)))) (-5 *1 (-1257)))) (-2325 (*1 *1) (-5 *1 (-1257))) (-3639 (*1 *1 *1) (-5 *1 (-1257))) (-3567 (*1 *2 *1) (-12 (-5 *2 (-639 (-262))) (-5 *1 (-1257)))) (-3567 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-262))) (-5 *1 (-1257)))) (-3639 (*1 *1 *2 *3) (-12 (-5 *2 (-467)) (-5 *3 (-639 (-262))) (-5 *1 (-1257)))) (-4161 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-916)) (-5 *4 (-224)) (-5 *5 (-562)) (-5 *6 (-869)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-1843 (*1 *2 *1) (-12 (-5 *2 (-1256 (-2 (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)) (|:| -2865 (-562)) (|:| -1464 (-562)) (|:| |spline| (-562)) (|:| -2503 (-562)) (|:| |axesColor| (-869)) (|:| -3426 (-562)) (|:| |unitsColor| (-869)) (|:| |showing| (-562))))) (-5 *1 (-1257)))) (-2789 (*1 *2 *1) (-12 (-5 *2 (-1256 (-3 (-467) "undefined"))) (-5 *1 (-1257)))) (-3563 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-3099 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-467)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-1489 (*1 *2 *1 *3) (-12 (-5 *3 (-916)) (-5 *2 (-467)) (-5 *1 (-1257)))) (-2503 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2503 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-869)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-3426 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-3426 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-869)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2865 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-3082 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-1464 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-4190 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-1450 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2563 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-766)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-3878 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-916)) (-5 *4 (-378)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-3817 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-916)) (-5 *4 (-378)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-1722 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-3068 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-4216 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-467)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-4301 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2672 (*1 *2 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1257)))) (-2672 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1257)))) (-2672 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1150)) (-5 *1 (-1257)))) (-2651 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2320 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1257)))))
-(-13 (-1092) (-10 -8 (-15 -4185 ((-639 (-938 (-224))) $)) (-15 -2325 ($)) (-15 -3639 ($ $)) (-15 -3567 ((-639 (-262)) $)) (-15 -3567 ($ $ (-639 (-262)))) (-15 -3639 ($ (-467) (-639 (-262)))) (-15 -4161 ((-1261) $ (-916) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-869) (-562) (-869) (-562))) (-15 -1843 ((-1256 (-2 (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)) (|:| -2865 (-562)) (|:| -1464 (-562)) (|:| |spline| (-562)) (|:| -2503 (-562)) (|:| |axesColor| (-869)) (|:| -3426 (-562)) (|:| |unitsColor| (-869)) (|:| |showing| (-562)))) $)) (-15 -2789 ((-1256 (-3 (-467) "undefined")) $)) (-15 -3563 ((-1261) $ (-1150))) (-15 -3099 ((-1261) $ (-467) (-916))) (-15 -1489 ((-467) $ (-916))) (-15 -2503 ((-1261) $ (-916) (-1150))) (-15 -2503 ((-1261) $ (-916) (-869))) (-15 -3426 ((-1261) $ (-916) (-1150))) (-15 -3426 ((-1261) $ (-916) (-869))) (-15 -2865 ((-1261) $ (-916) (-1150))) (-15 -3082 ((-1261) $ (-916) (-1150))) (-15 -1464 ((-1261) $ (-916) (-1150))) (-15 -4190 ((-1261) $ (-1150))) (-15 -1450 ((-1261) $)) (-15 -2563 ((-1261) $ (-766) (-766) (-916) (-916))) (-15 -3878 ((-1261) $ (-916) (-378) (-378))) (-15 -3817 ((-1261) $ (-916) (-378) (-378))) (-15 -1722 ((-1261) $ (-916) (-1150))) (-15 -3068 ((-1261) $ (-766) (-766))) (-15 -4216 ((-1261) $ (-467) (-916))) (-15 -4301 ((-1261) $ (-916) (-916))) (-15 -2672 ((-1150) $ (-1150))) (-15 -2672 ((-1150) $ (-1150) (-1150))) (-15 -2672 ((-1150) $ (-1150) (-639 (-1150)))) (-15 -2651 ((-1261) $)) (-15 -2320 ((-562) $)) (-15 -4054 ((-857) $))))
-((-4041 (((-112) $ $) NIL)) (-1537 (((-1261) $ (-378)) 142) (((-1261) $ (-378) (-378) (-378)) 143)) (-2672 (((-1150) $ (-1150)) 150) (((-1150) $ (-1150) (-1150)) 148) (((-1150) $ (-1150) (-639 (-1150))) 147)) (-2395 (($) 50)) (-3891 (((-1261) $ (-378) (-378) (-378) (-378) (-378)) 118) (((-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))) $) 116) (((-1261) $ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) 117) (((-1261) $ (-562) (-562) (-378) (-378) (-378)) 119) (((-1261) $ (-378) (-378)) 120) (((-1261) $ (-378) (-378) (-378)) 127)) (-2476 (((-378)) 99) (((-378) (-378)) 100)) (-2748 (((-378)) 94) (((-378) (-378)) 96)) (-3158 (((-378)) 97) (((-378) (-378)) 98)) (-3875 (((-378)) 103) (((-378) (-378)) 104)) (-4314 (((-378)) 101) (((-378) (-378)) 102)) (-3817 (((-1261) $ (-378) (-378)) 144)) (-3563 (((-1261) $ (-1150)) 128)) (-3110 (((-1125 (-224)) $) 51) (($ $ (-1125 (-224))) 52)) (-2212 (((-1261) $ (-1150)) 156)) (-4224 (((-1261) $ (-1150)) 157)) (-2987 (((-1261) $ (-378) (-378)) 126) (((-1261) $ (-562) (-562)) 141)) (-4301 (((-1261) $ (-916) (-916)) 134)) (-2651 (((-1261) $) 114)) (-3792 (((-1261) $ (-1150)) 155)) (-4219 (((-1261) $ (-1150)) 111)) (-3567 (((-639 (-262)) $) 53) (($ $ (-639 (-262))) 54)) (-3068 (((-1261) $ (-766) (-766)) 133)) (-1754 (((-1261) $ (-766) (-938 (-224))) 162)) (-2800 (($ $) 56) (($ (-1125 (-224)) (-1150)) 57) (($ (-1125 (-224)) (-639 (-262))) 58)) (-2184 (((-1261) $ (-378) (-378) (-378)) 108)) (-2913 (((-1150) $) NIL)) (-2320 (((-562) $) 105)) (-1633 (((-1261) $ (-378)) 145)) (-3341 (((-1261) $ (-378)) 160)) (-1709 (((-1112) $) NIL)) (-2124 (((-1261) $ (-378)) 159)) (-2664 (((-1261) $ (-1150)) 113)) (-2563 (((-1261) $ (-766) (-766) (-916) (-916)) 132)) (-3899 (((-1261) $ (-1150)) 110)) (-4190 (((-1261) $ (-1150)) 112)) (-2946 (((-1261) $ (-156) (-156)) 131)) (-4054 (((-857) $) 139)) (-1450 (((-1261) $) 115)) (-1423 (((-1261) $ (-1150)) 158)) (-2503 (((-1261) $ (-1150)) 109)) (-1731 (((-112) $ $) NIL)))
-(((-1258) (-13 (-1092) (-10 -8 (-15 -2748 ((-378))) (-15 -2748 ((-378) (-378))) (-15 -3158 ((-378))) (-15 -3158 ((-378) (-378))) (-15 -2476 ((-378))) (-15 -2476 ((-378) (-378))) (-15 -4314 ((-378))) (-15 -4314 ((-378) (-378))) (-15 -3875 ((-378))) (-15 -3875 ((-378) (-378))) (-15 -2395 ($)) (-15 -2800 ($ $)) (-15 -2800 ($ (-1125 (-224)) (-1150))) (-15 -2800 ($ (-1125 (-224)) (-639 (-262)))) (-15 -3110 ((-1125 (-224)) $)) (-15 -3110 ($ $ (-1125 (-224)))) (-15 -1754 ((-1261) $ (-766) (-938 (-224)))) (-15 -3567 ((-639 (-262)) $)) (-15 -3567 ($ $ (-639 (-262)))) (-15 -3068 ((-1261) $ (-766) (-766))) (-15 -4301 ((-1261) $ (-916) (-916))) (-15 -3563 ((-1261) $ (-1150))) (-15 -2563 ((-1261) $ (-766) (-766) (-916) (-916))) (-15 -3891 ((-1261) $ (-378) (-378) (-378) (-378) (-378))) (-15 -3891 ((-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))) $)) (-15 -3891 ((-1261) $ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))) (-15 -3891 ((-1261) $ (-562) (-562) (-378) (-378) (-378))) (-15 -3891 ((-1261) $ (-378) (-378))) (-15 -3891 ((-1261) $ (-378) (-378) (-378))) (-15 -4190 ((-1261) $ (-1150))) (-15 -2503 ((-1261) $ (-1150))) (-15 -3899 ((-1261) $ (-1150))) (-15 -4219 ((-1261) $ (-1150))) (-15 -2664 ((-1261) $ (-1150))) (-15 -2987 ((-1261) $ (-378) (-378))) (-15 -2987 ((-1261) $ (-562) (-562))) (-15 -1537 ((-1261) $ (-378))) (-15 -1537 ((-1261) $ (-378) (-378) (-378))) (-15 -3817 ((-1261) $ (-378) (-378))) (-15 -3792 ((-1261) $ (-1150))) (-15 -2124 ((-1261) $ (-378))) (-15 -3341 ((-1261) $ (-378))) (-15 -2212 ((-1261) $ (-1150))) (-15 -4224 ((-1261) $ (-1150))) (-15 -1423 ((-1261) $ (-1150))) (-15 -2184 ((-1261) $ (-378) (-378) (-378))) (-15 -1633 ((-1261) $ (-378))) (-15 -2651 ((-1261) $)) (-15 -2946 ((-1261) $ (-156) (-156))) (-15 -2672 ((-1150) $ (-1150))) (-15 -2672 ((-1150) $ (-1150) (-1150))) (-15 -2672 ((-1150) $ (-1150) (-639 (-1150)))) (-15 -1450 ((-1261) $)) (-15 -2320 ((-562) $))))) (T -1258))
-((-2748 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-2748 (*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-3158 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-3158 (*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-2476 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-2476 (*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-4314 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-4314 (*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-3875 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-3875 (*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-2395 (*1 *1) (-5 *1 (-1258))) (-2800 (*1 *1 *1) (-5 *1 (-1258))) (-2800 (*1 *1 *2 *3) (-12 (-5 *2 (-1125 (-224))) (-5 *3 (-1150)) (-5 *1 (-1258)))) (-2800 (*1 *1 *2 *3) (-12 (-5 *2 (-1125 (-224))) (-5 *3 (-639 (-262))) (-5 *1 (-1258)))) (-3110 (*1 *2 *1) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-1258)))) (-3110 (*1 *1 *1 *2) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-1258)))) (-1754 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-766)) (-5 *4 (-938 (-224))) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3567 (*1 *2 *1) (-12 (-5 *2 (-639 (-262))) (-5 *1 (-1258)))) (-3567 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-262))) (-5 *1 (-1258)))) (-3068 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-4301 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3563 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2563 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-766)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3891 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3891 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) (-5 *1 (-1258)))) (-3891 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3891 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-562)) (-5 *4 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3891 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3891 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-4190 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2503 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3899 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-4219 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2664 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2987 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2987 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-1537 (*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-1537 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3817 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3792 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2124 (*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3341 (*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2212 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-4224 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-1423 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2184 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-1633 (*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2651 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2946 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-156)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2672 (*1 *2 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1258)))) (-2672 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1258)))) (-2672 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1150)) (-5 *1 (-1258)))) (-1450 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2320 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1258)))))
-(-13 (-1092) (-10 -8 (-15 -2748 ((-378))) (-15 -2748 ((-378) (-378))) (-15 -3158 ((-378))) (-15 -3158 ((-378) (-378))) (-15 -2476 ((-378))) (-15 -2476 ((-378) (-378))) (-15 -4314 ((-378))) (-15 -4314 ((-378) (-378))) (-15 -3875 ((-378))) (-15 -3875 ((-378) (-378))) (-15 -2395 ($)) (-15 -2800 ($ $)) (-15 -2800 ($ (-1125 (-224)) (-1150))) (-15 -2800 ($ (-1125 (-224)) (-639 (-262)))) (-15 -3110 ((-1125 (-224)) $)) (-15 -3110 ($ $ (-1125 (-224)))) (-15 -1754 ((-1261) $ (-766) (-938 (-224)))) (-15 -3567 ((-639 (-262)) $)) (-15 -3567 ($ $ (-639 (-262)))) (-15 -3068 ((-1261) $ (-766) (-766))) (-15 -4301 ((-1261) $ (-916) (-916))) (-15 -3563 ((-1261) $ (-1150))) (-15 -2563 ((-1261) $ (-766) (-766) (-916) (-916))) (-15 -3891 ((-1261) $ (-378) (-378) (-378) (-378) (-378))) (-15 -3891 ((-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))) $)) (-15 -3891 ((-1261) $ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))) (-15 -3891 ((-1261) $ (-562) (-562) (-378) (-378) (-378))) (-15 -3891 ((-1261) $ (-378) (-378))) (-15 -3891 ((-1261) $ (-378) (-378) (-378))) (-15 -4190 ((-1261) $ (-1150))) (-15 -2503 ((-1261) $ (-1150))) (-15 -3899 ((-1261) $ (-1150))) (-15 -4219 ((-1261) $ (-1150))) (-15 -2664 ((-1261) $ (-1150))) (-15 -2987 ((-1261) $ (-378) (-378))) (-15 -2987 ((-1261) $ (-562) (-562))) (-15 -1537 ((-1261) $ (-378))) (-15 -1537 ((-1261) $ (-378) (-378) (-378))) (-15 -3817 ((-1261) $ (-378) (-378))) (-15 -3792 ((-1261) $ (-1150))) (-15 -2124 ((-1261) $ (-378))) (-15 -3341 ((-1261) $ (-378))) (-15 -2212 ((-1261) $ (-1150))) (-15 -4224 ((-1261) $ (-1150))) (-15 -1423 ((-1261) $ (-1150))) (-15 -2184 ((-1261) $ (-378) (-378) (-378))) (-15 -1633 ((-1261) $ (-378))) (-15 -2651 ((-1261) $)) (-15 -2946 ((-1261) $ (-156) (-156))) (-15 -2672 ((-1150) $ (-1150))) (-15 -2672 ((-1150) $ (-1150) (-1150))) (-15 -2672 ((-1150) $ (-1150) (-639 (-1150)))) (-15 -1450 ((-1261) $)) (-15 -2320 ((-562) $))))
-((-1526 (((-639 (-1150)) (-639 (-1150))) 94) (((-639 (-1150))) 90)) (-1973 (((-639 (-1150))) 88)) (-2928 (((-639 (-916)) (-639 (-916))) 63) (((-639 (-916))) 60)) (-3379 (((-639 (-766)) (-639 (-766))) 57) (((-639 (-766))) 53)) (-2829 (((-1261)) 65)) (-1937 (((-916) (-916)) 81) (((-916)) 80)) (-1724 (((-916) (-916)) 79) (((-916)) 78)) (-3664 (((-869) (-869)) 75) (((-869)) 74)) (-2067 (((-224)) 85) (((-224) (-378)) 87)) (-2272 (((-916)) 82) (((-916) (-916)) 83)) (-3643 (((-916) (-916)) 77) (((-916)) 76)) (-1362 (((-869) (-869)) 69) (((-869)) 67)) (-3195 (((-869) (-869)) 71) (((-869)) 70)) (-1831 (((-869) (-869)) 73) (((-869)) 72)))
-(((-1259) (-10 -7 (-15 -1362 ((-869))) (-15 -1362 ((-869) (-869))) (-15 -3195 ((-869))) (-15 -3195 ((-869) (-869))) (-15 -1831 ((-869))) (-15 -1831 ((-869) (-869))) (-15 -3664 ((-869))) (-15 -3664 ((-869) (-869))) (-15 -3643 ((-916))) (-15 -3643 ((-916) (-916))) (-15 -3379 ((-639 (-766)))) (-15 -3379 ((-639 (-766)) (-639 (-766)))) (-15 -2928 ((-639 (-916)))) (-15 -2928 ((-639 (-916)) (-639 (-916)))) (-15 -2829 ((-1261))) (-15 -1526 ((-639 (-1150)))) (-15 -1526 ((-639 (-1150)) (-639 (-1150)))) (-15 -1973 ((-639 (-1150)))) (-15 -1724 ((-916))) (-15 -1937 ((-916))) (-15 -1724 ((-916) (-916))) (-15 -1937 ((-916) (-916))) (-15 -2272 ((-916) (-916))) (-15 -2272 ((-916))) (-15 -2067 ((-224) (-378))) (-15 -2067 ((-224))))) (T -1259))
-((-2067 (*1 *2) (-12 (-5 *2 (-224)) (-5 *1 (-1259)))) (-2067 (*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-224)) (-5 *1 (-1259)))) (-2272 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-2272 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-1937 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-1724 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-1937 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-1724 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-1973 (*1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1259)))) (-1526 (*1 *2 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1259)))) (-1526 (*1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1259)))) (-2829 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1259)))) (-2928 (*1 *2 *2) (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1259)))) (-2928 (*1 *2) (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1259)))) (-3379 (*1 *2 *2) (-12 (-5 *2 (-639 (-766))) (-5 *1 (-1259)))) (-3379 (*1 *2) (-12 (-5 *2 (-639 (-766))) (-5 *1 (-1259)))) (-3643 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-3643 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-3664 (*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-3664 (*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-1831 (*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-1831 (*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-3195 (*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-3195 (*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-1362 (*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-1362 (*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))))
-(-10 -7 (-15 -1362 ((-869))) (-15 -1362 ((-869) (-869))) (-15 -3195 ((-869))) (-15 -3195 ((-869) (-869))) (-15 -1831 ((-869))) (-15 -1831 ((-869) (-869))) (-15 -3664 ((-869))) (-15 -3664 ((-869) (-869))) (-15 -3643 ((-916))) (-15 -3643 ((-916) (-916))) (-15 -3379 ((-639 (-766)))) (-15 -3379 ((-639 (-766)) (-639 (-766)))) (-15 -2928 ((-639 (-916)))) (-15 -2928 ((-639 (-916)) (-639 (-916)))) (-15 -2829 ((-1261))) (-15 -1526 ((-639 (-1150)))) (-15 -1526 ((-639 (-1150)) (-639 (-1150)))) (-15 -1973 ((-639 (-1150)))) (-15 -1724 ((-916))) (-15 -1937 ((-916))) (-15 -1724 ((-916) (-916))) (-15 -1937 ((-916) (-916))) (-15 -2272 ((-916) (-916))) (-15 -2272 ((-916))) (-15 -2067 ((-224) (-378))) (-15 -2067 ((-224))))
-((-2548 (((-467) (-639 (-639 (-938 (-224)))) (-639 (-262))) 21) (((-467) (-639 (-639 (-938 (-224))))) 20) (((-467) (-639 (-639 (-938 (-224)))) (-869) (-869) (-916) (-639 (-262))) 19)) (-4081 (((-1257) (-639 (-639 (-938 (-224)))) (-639 (-262))) 27) (((-1257) (-639 (-639 (-938 (-224)))) (-869) (-869) (-916) (-639 (-262))) 26)) (-4054 (((-1257) (-467)) 38)))
-(((-1260) (-10 -7 (-15 -2548 ((-467) (-639 (-639 (-938 (-224)))) (-869) (-869) (-916) (-639 (-262)))) (-15 -2548 ((-467) (-639 (-639 (-938 (-224)))))) (-15 -2548 ((-467) (-639 (-639 (-938 (-224)))) (-639 (-262)))) (-15 -4081 ((-1257) (-639 (-639 (-938 (-224)))) (-869) (-869) (-916) (-639 (-262)))) (-15 -4081 ((-1257) (-639 (-639 (-938 (-224)))) (-639 (-262)))) (-15 -4054 ((-1257) (-467))))) (T -1260))
-((-4054 (*1 *2 *3) (-12 (-5 *3 (-467)) (-5 *2 (-1257)) (-5 *1 (-1260)))) (-4081 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-639 (-262))) (-5 *2 (-1257)) (-5 *1 (-1260)))) (-4081 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-869)) (-5 *5 (-916)) (-5 *6 (-639 (-262))) (-5 *2 (-1257)) (-5 *1 (-1260)))) (-2548 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-639 (-262))) (-5 *2 (-467)) (-5 *1 (-1260)))) (-2548 (*1 *2 *3) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *2 (-467)) (-5 *1 (-1260)))) (-2548 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-869)) (-5 *5 (-916)) (-5 *6 (-639 (-262))) (-5 *2 (-467)) (-5 *1 (-1260)))))
-(-10 -7 (-15 -2548 ((-467) (-639 (-639 (-938 (-224)))) (-869) (-869) (-916) (-639 (-262)))) (-15 -2548 ((-467) (-639 (-639 (-938 (-224)))))) (-15 -2548 ((-467) (-639 (-639 (-938 (-224)))) (-639 (-262)))) (-15 -4081 ((-1257) (-639 (-639 (-938 (-224)))) (-869) (-869) (-916) (-639 (-262)))) (-15 -4081 ((-1257) (-639 (-639 (-938 (-224)))) (-639 (-262)))) (-15 -4054 ((-1257) (-467))))
-((-2650 (($) 7)) (-4054 (((-857) $) 10)))
-(((-1261) (-13 (-609 (-857)) (-10 -8 (-15 -2650 ($))))) (T -1261))
-((-2650 (*1 *1) (-5 *1 (-1261))))
-(-13 (-609 (-857)) (-10 -8 (-15 -2650 ($))))
+((-4041 (((-112) $ $) NIL)) (-2671 (((-1150) $ (-1150)) 92) (((-1150) $ (-1150) (-1150)) 90) (((-1150) $ (-1150) (-639 (-1150))) 89)) (-3893 (($) 59)) (-4216 (((-1261) $ (-467) (-916)) 45)) (-3426 (((-1261) $ (-916) (-1150)) 75) (((-1261) $ (-916) (-869)) 76)) (-3818 (((-1261) $ (-916) (-378) (-378)) 48)) (-3563 (((-1261) $ (-1150)) 71)) (-1722 (((-1261) $ (-916) (-1150)) 80)) (-1978 (((-1261) $ (-916) (-378) (-378)) 49)) (-1595 (((-1261) $ (-916) (-916)) 46)) (-2650 (((-1261) $) 72)) (-3932 (((-1261) $ (-916) (-1150)) 79)) (-2886 (((-1261) $ (-467) (-916)) 31)) (-1358 (((-1261) $ (-916) (-1150)) 78)) (-3567 (((-639 (-262)) $) 23) (($ $ (-639 (-262))) 24)) (-3803 (((-1261) $ (-766) (-766)) 43)) (-1361 (($ $) 60) (($ (-467) (-639 (-262))) 61)) (-3696 (((-1150) $) NIL)) (-2319 (((-562) $) 38)) (-1709 (((-1112) $) NIL)) (-1880 (((-1256 (-3 (-467) "undefined")) $) 37)) (-2604 (((-1256 (-2 (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)) (|:| -1358 (-562)) (|:| -2370 (-562)) (|:| |spline| (-562)) (|:| -2041 (-562)) (|:| |axesColor| (-869)) (|:| -3426 (-562)) (|:| |unitsColor| (-869)) (|:| |showing| (-562)))) $) 36)) (-2728 (((-1261) $ (-916) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-869) (-562) (-869) (-562)) 70)) (-2900 (((-639 (-938 (-224))) $) NIL)) (-2518 (((-467) $ (-916)) 33)) (-1362 (((-1261) $ (-766) (-766) (-916) (-916)) 40)) (-2941 (((-1261) $ (-1150)) 81)) (-2370 (((-1261) $ (-916) (-1150)) 77)) (-4053 (((-857) $) 87)) (-1449 (((-1261) $) 82)) (-2041 (((-1261) $ (-916) (-1150)) 73) (((-1261) $ (-916) (-869)) 74)) (-1733 (((-112) $ $) NIL)))
+(((-1257) (-13 (-1092) (-10 -8 (-15 -2900 ((-639 (-938 (-224))) $)) (-15 -3893 ($)) (-15 -1361 ($ $)) (-15 -3567 ((-639 (-262)) $)) (-15 -3567 ($ $ (-639 (-262)))) (-15 -1361 ($ (-467) (-639 (-262)))) (-15 -2728 ((-1261) $ (-916) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-869) (-562) (-869) (-562))) (-15 -2604 ((-1256 (-2 (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)) (|:| -1358 (-562)) (|:| -2370 (-562)) (|:| |spline| (-562)) (|:| -2041 (-562)) (|:| |axesColor| (-869)) (|:| -3426 (-562)) (|:| |unitsColor| (-869)) (|:| |showing| (-562)))) $)) (-15 -1880 ((-1256 (-3 (-467) "undefined")) $)) (-15 -3563 ((-1261) $ (-1150))) (-15 -2886 ((-1261) $ (-467) (-916))) (-15 -2518 ((-467) $ (-916))) (-15 -2041 ((-1261) $ (-916) (-1150))) (-15 -2041 ((-1261) $ (-916) (-869))) (-15 -3426 ((-1261) $ (-916) (-1150))) (-15 -3426 ((-1261) $ (-916) (-869))) (-15 -1358 ((-1261) $ (-916) (-1150))) (-15 -3932 ((-1261) $ (-916) (-1150))) (-15 -2370 ((-1261) $ (-916) (-1150))) (-15 -2941 ((-1261) $ (-1150))) (-15 -1449 ((-1261) $)) (-15 -1362 ((-1261) $ (-766) (-766) (-916) (-916))) (-15 -1978 ((-1261) $ (-916) (-378) (-378))) (-15 -3818 ((-1261) $ (-916) (-378) (-378))) (-15 -1722 ((-1261) $ (-916) (-1150))) (-15 -3803 ((-1261) $ (-766) (-766))) (-15 -4216 ((-1261) $ (-467) (-916))) (-15 -1595 ((-1261) $ (-916) (-916))) (-15 -2671 ((-1150) $ (-1150))) (-15 -2671 ((-1150) $ (-1150) (-1150))) (-15 -2671 ((-1150) $ (-1150) (-639 (-1150)))) (-15 -2650 ((-1261) $)) (-15 -2319 ((-562) $)) (-15 -4053 ((-857) $))))) (T -1257))
+((-4053 (*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-1257)))) (-2900 (*1 *2 *1) (-12 (-5 *2 (-639 (-938 (-224)))) (-5 *1 (-1257)))) (-3893 (*1 *1) (-5 *1 (-1257))) (-1361 (*1 *1 *1) (-5 *1 (-1257))) (-3567 (*1 *2 *1) (-12 (-5 *2 (-639 (-262))) (-5 *1 (-1257)))) (-3567 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-262))) (-5 *1 (-1257)))) (-1361 (*1 *1 *2 *3) (-12 (-5 *2 (-467)) (-5 *3 (-639 (-262))) (-5 *1 (-1257)))) (-2728 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-916)) (-5 *4 (-224)) (-5 *5 (-562)) (-5 *6 (-869)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2604 (*1 *2 *1) (-12 (-5 *2 (-1256 (-2 (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)) (|:| -1358 (-562)) (|:| -2370 (-562)) (|:| |spline| (-562)) (|:| -2041 (-562)) (|:| |axesColor| (-869)) (|:| -3426 (-562)) (|:| |unitsColor| (-869)) (|:| |showing| (-562))))) (-5 *1 (-1257)))) (-1880 (*1 *2 *1) (-12 (-5 *2 (-1256 (-3 (-467) "undefined"))) (-5 *1 (-1257)))) (-3563 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2886 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-467)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2518 (*1 *2 *1 *3) (-12 (-5 *3 (-916)) (-5 *2 (-467)) (-5 *1 (-1257)))) (-2041 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2041 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-869)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-3426 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-3426 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-869)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-1358 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-3932 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2370 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2941 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-1449 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1257)))) (-1362 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-766)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-1978 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-916)) (-5 *4 (-378)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-3818 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-916)) (-5 *4 (-378)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-1722 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-3803 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-4216 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-467)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-1595 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2671 (*1 *2 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1257)))) (-2671 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1257)))) (-2671 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1150)) (-5 *1 (-1257)))) (-2650 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1257)))) (-2319 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1257)))))
+(-13 (-1092) (-10 -8 (-15 -2900 ((-639 (-938 (-224))) $)) (-15 -3893 ($)) (-15 -1361 ($ $)) (-15 -3567 ((-639 (-262)) $)) (-15 -3567 ($ $ (-639 (-262)))) (-15 -1361 ($ (-467) (-639 (-262)))) (-15 -2728 ((-1261) $ (-916) (-224) (-224) (-224) (-224) (-562) (-562) (-562) (-562) (-869) (-562) (-869) (-562))) (-15 -2604 ((-1256 (-2 (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)) (|:| -1358 (-562)) (|:| -2370 (-562)) (|:| |spline| (-562)) (|:| -2041 (-562)) (|:| |axesColor| (-869)) (|:| -3426 (-562)) (|:| |unitsColor| (-869)) (|:| |showing| (-562)))) $)) (-15 -1880 ((-1256 (-3 (-467) "undefined")) $)) (-15 -3563 ((-1261) $ (-1150))) (-15 -2886 ((-1261) $ (-467) (-916))) (-15 -2518 ((-467) $ (-916))) (-15 -2041 ((-1261) $ (-916) (-1150))) (-15 -2041 ((-1261) $ (-916) (-869))) (-15 -3426 ((-1261) $ (-916) (-1150))) (-15 -3426 ((-1261) $ (-916) (-869))) (-15 -1358 ((-1261) $ (-916) (-1150))) (-15 -3932 ((-1261) $ (-916) (-1150))) (-15 -2370 ((-1261) $ (-916) (-1150))) (-15 -2941 ((-1261) $ (-1150))) (-15 -1449 ((-1261) $)) (-15 -1362 ((-1261) $ (-766) (-766) (-916) (-916))) (-15 -1978 ((-1261) $ (-916) (-378) (-378))) (-15 -3818 ((-1261) $ (-916) (-378) (-378))) (-15 -1722 ((-1261) $ (-916) (-1150))) (-15 -3803 ((-1261) $ (-766) (-766))) (-15 -4216 ((-1261) $ (-467) (-916))) (-15 -1595 ((-1261) $ (-916) (-916))) (-15 -2671 ((-1150) $ (-1150))) (-15 -2671 ((-1150) $ (-1150) (-1150))) (-15 -2671 ((-1150) $ (-1150) (-639 (-1150)))) (-15 -2650 ((-1261) $)) (-15 -2319 ((-562) $)) (-15 -4053 ((-857) $))))
+((-4041 (((-112) $ $) NIL)) (-1677 (((-1261) $ (-378)) 142) (((-1261) $ (-378) (-378) (-378)) 143)) (-2671 (((-1150) $ (-1150)) 150) (((-1150) $ (-1150) (-1150)) 148) (((-1150) $ (-1150) (-639 (-1150))) 147)) (-3342 (($) 50)) (-2113 (((-1261) $ (-378) (-378) (-378) (-378) (-378)) 118) (((-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))) $) 116) (((-1261) $ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) 117) (((-1261) $ (-562) (-562) (-378) (-378) (-378)) 119) (((-1261) $ (-378) (-378)) 120) (((-1261) $ (-378) (-378) (-378)) 127)) (-1747 (((-378)) 99) (((-378) (-378)) 100)) (-2660 (((-378)) 94) (((-378) (-378)) 96)) (-3424 (((-378)) 97) (((-378) (-378)) 98)) (-1941 (((-378)) 103) (((-378) (-378)) 104)) (-1724 (((-378)) 101) (((-378) (-378)) 102)) (-3818 (((-1261) $ (-378) (-378)) 144)) (-3563 (((-1261) $ (-1150)) 128)) (-2962 (((-1125 (-224)) $) 51) (($ $ (-1125 (-224))) 52)) (-2222 (((-1261) $ (-1150)) 156)) (-2086 (((-1261) $ (-1150)) 157)) (-3201 (((-1261) $ (-378) (-378)) 126) (((-1261) $ (-562) (-562)) 141)) (-1595 (((-1261) $ (-916) (-916)) 134)) (-2650 (((-1261) $) 114)) (-3484 (((-1261) $ (-1150)) 155)) (-2053 (((-1261) $ (-1150)) 111)) (-3567 (((-639 (-262)) $) 53) (($ $ (-639 (-262))) 54)) (-3803 (((-1261) $ (-766) (-766)) 133)) (-2948 (((-1261) $ (-766) (-938 (-224))) 162)) (-2003 (($ $) 56) (($ (-1125 (-224)) (-1150)) 57) (($ (-1125 (-224)) (-639 (-262))) 58)) (-1928 (((-1261) $ (-378) (-378) (-378)) 108)) (-3696 (((-1150) $) NIL)) (-2319 (((-562) $) 105)) (-4319 (((-1261) $ (-378)) 145)) (-1526 (((-1261) $ (-378)) 160)) (-1709 (((-1112) $) NIL)) (-2520 (((-1261) $ (-378)) 159)) (-3048 (((-1261) $ (-1150)) 113)) (-1362 (((-1261) $ (-766) (-766) (-916) (-916)) 132)) (-2192 (((-1261) $ (-1150)) 110)) (-2941 (((-1261) $ (-1150)) 112)) (-4022 (((-1261) $ (-156) (-156)) 131)) (-4053 (((-857) $) 139)) (-1449 (((-1261) $) 115)) (-1925 (((-1261) $ (-1150)) 158)) (-2041 (((-1261) $ (-1150)) 109)) (-1733 (((-112) $ $) NIL)))
+(((-1258) (-13 (-1092) (-10 -8 (-15 -2660 ((-378))) (-15 -2660 ((-378) (-378))) (-15 -3424 ((-378))) (-15 -3424 ((-378) (-378))) (-15 -1747 ((-378))) (-15 -1747 ((-378) (-378))) (-15 -1724 ((-378))) (-15 -1724 ((-378) (-378))) (-15 -1941 ((-378))) (-15 -1941 ((-378) (-378))) (-15 -3342 ($)) (-15 -2003 ($ $)) (-15 -2003 ($ (-1125 (-224)) (-1150))) (-15 -2003 ($ (-1125 (-224)) (-639 (-262)))) (-15 -2962 ((-1125 (-224)) $)) (-15 -2962 ($ $ (-1125 (-224)))) (-15 -2948 ((-1261) $ (-766) (-938 (-224)))) (-15 -3567 ((-639 (-262)) $)) (-15 -3567 ($ $ (-639 (-262)))) (-15 -3803 ((-1261) $ (-766) (-766))) (-15 -1595 ((-1261) $ (-916) (-916))) (-15 -3563 ((-1261) $ (-1150))) (-15 -1362 ((-1261) $ (-766) (-766) (-916) (-916))) (-15 -2113 ((-1261) $ (-378) (-378) (-378) (-378) (-378))) (-15 -2113 ((-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))) $)) (-15 -2113 ((-1261) $ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))) (-15 -2113 ((-1261) $ (-562) (-562) (-378) (-378) (-378))) (-15 -2113 ((-1261) $ (-378) (-378))) (-15 -2113 ((-1261) $ (-378) (-378) (-378))) (-15 -2941 ((-1261) $ (-1150))) (-15 -2041 ((-1261) $ (-1150))) (-15 -2192 ((-1261) $ (-1150))) (-15 -2053 ((-1261) $ (-1150))) (-15 -3048 ((-1261) $ (-1150))) (-15 -3201 ((-1261) $ (-378) (-378))) (-15 -3201 ((-1261) $ (-562) (-562))) (-15 -1677 ((-1261) $ (-378))) (-15 -1677 ((-1261) $ (-378) (-378) (-378))) (-15 -3818 ((-1261) $ (-378) (-378))) (-15 -3484 ((-1261) $ (-1150))) (-15 -2520 ((-1261) $ (-378))) (-15 -1526 ((-1261) $ (-378))) (-15 -2222 ((-1261) $ (-1150))) (-15 -2086 ((-1261) $ (-1150))) (-15 -1925 ((-1261) $ (-1150))) (-15 -1928 ((-1261) $ (-378) (-378) (-378))) (-15 -4319 ((-1261) $ (-378))) (-15 -2650 ((-1261) $)) (-15 -4022 ((-1261) $ (-156) (-156))) (-15 -2671 ((-1150) $ (-1150))) (-15 -2671 ((-1150) $ (-1150) (-1150))) (-15 -2671 ((-1150) $ (-1150) (-639 (-1150)))) (-15 -1449 ((-1261) $)) (-15 -2319 ((-562) $))))) (T -1258))
+((-2660 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-2660 (*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-3424 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-3424 (*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-1747 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-1747 (*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-1724 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-1724 (*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-1941 (*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-1941 (*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))) (-3342 (*1 *1) (-5 *1 (-1258))) (-2003 (*1 *1 *1) (-5 *1 (-1258))) (-2003 (*1 *1 *2 *3) (-12 (-5 *2 (-1125 (-224))) (-5 *3 (-1150)) (-5 *1 (-1258)))) (-2003 (*1 *1 *2 *3) (-12 (-5 *2 (-1125 (-224))) (-5 *3 (-639 (-262))) (-5 *1 (-1258)))) (-2962 (*1 *2 *1) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-1258)))) (-2962 (*1 *1 *1 *2) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-1258)))) (-2948 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-766)) (-5 *4 (-938 (-224))) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3567 (*1 *2 *1) (-12 (-5 *2 (-639 (-262))) (-5 *1 (-1258)))) (-3567 (*1 *1 *1 *2) (-12 (-5 *2 (-639 (-262))) (-5 *1 (-1258)))) (-3803 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-1595 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3563 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-1362 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-766)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2113 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2113 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) (-5 *1 (-1258)))) (-2113 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224)))) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2113 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-562)) (-5 *4 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2113 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2113 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2941 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2041 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2192 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2053 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3048 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3201 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3201 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-1677 (*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-1677 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3818 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-3484 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2520 (*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-1526 (*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2222 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2086 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-1925 (*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-1928 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-4319 (*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2650 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1258)))) (-4022 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-156)) (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2671 (*1 *2 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1258)))) (-2671 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1258)))) (-2671 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1150)) (-5 *1 (-1258)))) (-1449 (*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1258)))) (-2319 (*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1258)))))
+(-13 (-1092) (-10 -8 (-15 -2660 ((-378))) (-15 -2660 ((-378) (-378))) (-15 -3424 ((-378))) (-15 -3424 ((-378) (-378))) (-15 -1747 ((-378))) (-15 -1747 ((-378) (-378))) (-15 -1724 ((-378))) (-15 -1724 ((-378) (-378))) (-15 -1941 ((-378))) (-15 -1941 ((-378) (-378))) (-15 -3342 ($)) (-15 -2003 ($ $)) (-15 -2003 ($ (-1125 (-224)) (-1150))) (-15 -2003 ($ (-1125 (-224)) (-639 (-262)))) (-15 -2962 ((-1125 (-224)) $)) (-15 -2962 ($ $ (-1125 (-224)))) (-15 -2948 ((-1261) $ (-766) (-938 (-224)))) (-15 -3567 ((-639 (-262)) $)) (-15 -3567 ($ $ (-639 (-262)))) (-15 -3803 ((-1261) $ (-766) (-766))) (-15 -1595 ((-1261) $ (-916) (-916))) (-15 -3563 ((-1261) $ (-1150))) (-15 -1362 ((-1261) $ (-766) (-766) (-916) (-916))) (-15 -2113 ((-1261) $ (-378) (-378) (-378) (-378) (-378))) (-15 -2113 ((-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))) $)) (-15 -2113 ((-1261) $ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224)) (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224)) (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))) (-15 -2113 ((-1261) $ (-562) (-562) (-378) (-378) (-378))) (-15 -2113 ((-1261) $ (-378) (-378))) (-15 -2113 ((-1261) $ (-378) (-378) (-378))) (-15 -2941 ((-1261) $ (-1150))) (-15 -2041 ((-1261) $ (-1150))) (-15 -2192 ((-1261) $ (-1150))) (-15 -2053 ((-1261) $ (-1150))) (-15 -3048 ((-1261) $ (-1150))) (-15 -3201 ((-1261) $ (-378) (-378))) (-15 -3201 ((-1261) $ (-562) (-562))) (-15 -1677 ((-1261) $ (-378))) (-15 -1677 ((-1261) $ (-378) (-378) (-378))) (-15 -3818 ((-1261) $ (-378) (-378))) (-15 -3484 ((-1261) $ (-1150))) (-15 -2520 ((-1261) $ (-378))) (-15 -1526 ((-1261) $ (-378))) (-15 -2222 ((-1261) $ (-1150))) (-15 -2086 ((-1261) $ (-1150))) (-15 -1925 ((-1261) $ (-1150))) (-15 -1928 ((-1261) $ (-378) (-378) (-378))) (-15 -4319 ((-1261) $ (-378))) (-15 -2650 ((-1261) $)) (-15 -4022 ((-1261) $ (-156) (-156))) (-15 -2671 ((-1150) $ (-1150))) (-15 -2671 ((-1150) $ (-1150) (-1150))) (-15 -2671 ((-1150) $ (-1150) (-639 (-1150)))) (-15 -1449 ((-1261) $)) (-15 -2319 ((-562) $))))
+((-2780 (((-639 (-1150)) (-639 (-1150))) 94) (((-639 (-1150))) 90)) (-1419 (((-639 (-1150))) 88)) (-3858 (((-639 (-916)) (-639 (-916))) 63) (((-639 (-916))) 60)) (-3715 (((-639 (-766)) (-639 (-766))) 57) (((-639 (-766))) 53)) (-2295 (((-1261)) 65)) (-4185 (((-916) (-916)) 81) (((-916)) 80)) (-3891 (((-916) (-916)) 79) (((-916)) 78)) (-1649 (((-869) (-869)) 75) (((-869)) 74)) (-3067 (((-224)) 85) (((-224) (-378)) 87)) (-1537 (((-916)) 82) (((-916) (-916)) 83)) (-1397 (((-916) (-916)) 77) (((-916)) 76)) (-3621 (((-869) (-869)) 69) (((-869)) 67)) (-2619 (((-869) (-869)) 71) (((-869)) 70)) (-2493 (((-869) (-869)) 73) (((-869)) 72)))
+(((-1259) (-10 -7 (-15 -3621 ((-869))) (-15 -3621 ((-869) (-869))) (-15 -2619 ((-869))) (-15 -2619 ((-869) (-869))) (-15 -2493 ((-869))) (-15 -2493 ((-869) (-869))) (-15 -1649 ((-869))) (-15 -1649 ((-869) (-869))) (-15 -1397 ((-916))) (-15 -1397 ((-916) (-916))) (-15 -3715 ((-639 (-766)))) (-15 -3715 ((-639 (-766)) (-639 (-766)))) (-15 -3858 ((-639 (-916)))) (-15 -3858 ((-639 (-916)) (-639 (-916)))) (-15 -2295 ((-1261))) (-15 -2780 ((-639 (-1150)))) (-15 -2780 ((-639 (-1150)) (-639 (-1150)))) (-15 -1419 ((-639 (-1150)))) (-15 -3891 ((-916))) (-15 -4185 ((-916))) (-15 -3891 ((-916) (-916))) (-15 -4185 ((-916) (-916))) (-15 -1537 ((-916) (-916))) (-15 -1537 ((-916))) (-15 -3067 ((-224) (-378))) (-15 -3067 ((-224))))) (T -1259))
+((-3067 (*1 *2) (-12 (-5 *2 (-224)) (-5 *1 (-1259)))) (-3067 (*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-224)) (-5 *1 (-1259)))) (-1537 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-1537 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-4185 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-3891 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-4185 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-3891 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-1419 (*1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1259)))) (-2780 (*1 *2 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1259)))) (-2780 (*1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1259)))) (-2295 (*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1259)))) (-3858 (*1 *2 *2) (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1259)))) (-3858 (*1 *2) (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1259)))) (-3715 (*1 *2 *2) (-12 (-5 *2 (-639 (-766))) (-5 *1 (-1259)))) (-3715 (*1 *2) (-12 (-5 *2 (-639 (-766))) (-5 *1 (-1259)))) (-1397 (*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-1397 (*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))) (-1649 (*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-1649 (*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-2493 (*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-2493 (*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-2619 (*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-2619 (*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-3621 (*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))) (-3621 (*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))))
+(-10 -7 (-15 -3621 ((-869))) (-15 -3621 ((-869) (-869))) (-15 -2619 ((-869))) (-15 -2619 ((-869) (-869))) (-15 -2493 ((-869))) (-15 -2493 ((-869) (-869))) (-15 -1649 ((-869))) (-15 -1649 ((-869) (-869))) (-15 -1397 ((-916))) (-15 -1397 ((-916) (-916))) (-15 -3715 ((-639 (-766)))) (-15 -3715 ((-639 (-766)) (-639 (-766)))) (-15 -3858 ((-639 (-916)))) (-15 -3858 ((-639 (-916)) (-639 (-916)))) (-15 -2295 ((-1261))) (-15 -2780 ((-639 (-1150)))) (-15 -2780 ((-639 (-1150)) (-639 (-1150)))) (-15 -1419 ((-639 (-1150)))) (-15 -3891 ((-916))) (-15 -4185 ((-916))) (-15 -3891 ((-916) (-916))) (-15 -4185 ((-916) (-916))) (-15 -1537 ((-916) (-916))) (-15 -1537 ((-916))) (-15 -3067 ((-224) (-378))) (-15 -3067 ((-224))))
+((-4304 (((-467) (-639 (-639 (-938 (-224)))) (-639 (-262))) 21) (((-467) (-639 (-639 (-938 (-224))))) 20) (((-467) (-639 (-639 (-938 (-224)))) (-869) (-869) (-916) (-639 (-262))) 19)) (-3211 (((-1257) (-639 (-639 (-938 (-224)))) (-639 (-262))) 27) (((-1257) (-639 (-639 (-938 (-224)))) (-869) (-869) (-916) (-639 (-262))) 26)) (-4053 (((-1257) (-467)) 38)))
+(((-1260) (-10 -7 (-15 -4304 ((-467) (-639 (-639 (-938 (-224)))) (-869) (-869) (-916) (-639 (-262)))) (-15 -4304 ((-467) (-639 (-639 (-938 (-224)))))) (-15 -4304 ((-467) (-639 (-639 (-938 (-224)))) (-639 (-262)))) (-15 -3211 ((-1257) (-639 (-639 (-938 (-224)))) (-869) (-869) (-916) (-639 (-262)))) (-15 -3211 ((-1257) (-639 (-639 (-938 (-224)))) (-639 (-262)))) (-15 -4053 ((-1257) (-467))))) (T -1260))
+((-4053 (*1 *2 *3) (-12 (-5 *3 (-467)) (-5 *2 (-1257)) (-5 *1 (-1260)))) (-3211 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-639 (-262))) (-5 *2 (-1257)) (-5 *1 (-1260)))) (-3211 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-869)) (-5 *5 (-916)) (-5 *6 (-639 (-262))) (-5 *2 (-1257)) (-5 *1 (-1260)))) (-4304 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-639 (-262))) (-5 *2 (-467)) (-5 *1 (-1260)))) (-4304 (*1 *2 *3) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *2 (-467)) (-5 *1 (-1260)))) (-4304 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-869)) (-5 *5 (-916)) (-5 *6 (-639 (-262))) (-5 *2 (-467)) (-5 *1 (-1260)))))
+(-10 -7 (-15 -4304 ((-467) (-639 (-639 (-938 (-224)))) (-869) (-869) (-916) (-639 (-262)))) (-15 -4304 ((-467) (-639 (-639 (-938 (-224)))))) (-15 -4304 ((-467) (-639 (-639 (-938 (-224)))) (-639 (-262)))) (-15 -3211 ((-1257) (-639 (-639 (-938 (-224)))) (-869) (-869) (-916) (-639 (-262)))) (-15 -3211 ((-1257) (-639 (-639 (-938 (-224)))) (-639 (-262)))) (-15 -4053 ((-1257) (-467))))
+((-2649 (($) 7)) (-4053 (((-857) $) 10)))
+(((-1261) (-13 (-609 (-857)) (-10 -8 (-15 -2649 ($))))) (T -1261))
+((-2649 (*1 *1) (-5 *1 (-1261))))
+(-13 (-609 (-857)) (-10 -8 (-15 -2649 ($))))
((-1859 (($ $ |#2|) 10)))
(((-1262 |#1| |#2|) (-10 -8 (-15 -1859 (|#1| |#1| |#2|))) (-1263 |#2|) (-362)) (T -1262))
NIL
(-10 -8 (-15 -1859 (|#1| |#1| |#2|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-3627 (((-133)) 28)) (-4054 (((-857) $) 11)) (-2286 (($) 18 T CONST)) (-1731 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 29)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4340 (((-133)) 28)) (-4053 (((-857) $) 11)) (-2285 (($) 18 T CONST)) (-1733 (((-112) $ $) 6)) (-1859 (($ $ |#1|) 29)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ |#1| $) 23) (($ $ |#1|) 26)))
(((-1263 |#1|) (-139) (-362)) (T -1263))
-((-1859 (*1 *1 *1 *2) (-12 (-4 *1 (-1263 *2)) (-4 *2 (-362)))) (-3627 (*1 *2) (-12 (-4 *1 (-1263 *3)) (-4 *3 (-362)) (-5 *2 (-133)))))
-(-13 (-712 |t#1|) (-10 -8 (-15 -1859 ($ $ |t#1|)) (-15 -3627 ((-133)))))
+((-1859 (*1 *1 *1 *2) (-12 (-4 *1 (-1263 *2)) (-4 *2 (-362)))) (-4340 (*1 *2) (-12 (-4 *1 (-1263 *3)) (-4 *3 (-362)) (-5 *2 (-133)))))
+(-13 (-712 |t#1|) (-10 -8 (-15 -1859 ($ $ |t#1|)) (-15 -4340 ((-133)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-609 (-857)) . T) ((-642 |#1|) . T) ((-712 |#1|) . T) ((-1050 |#1|) . T) ((-1092) . T))
-((-3301 (((-639 (-1201 |#1|)) (-1168) (-1201 |#1|)) 74)) (-2857 (((-1148 (-1148 (-947 |#1|))) (-1168) (-1148 (-947 |#1|))) 53)) (-2989 (((-1 (-1148 (-1201 |#1|)) (-1148 (-1201 |#1|))) (-766) (-1201 |#1|) (-1148 (-1201 |#1|))) 64)) (-4315 (((-1 (-1148 (-947 |#1|)) (-1148 (-947 |#1|))) (-766)) 55)) (-1603 (((-1 (-1164 (-947 |#1|)) (-947 |#1|)) (-1168)) 29)) (-2965 (((-1 (-1148 (-947 |#1|)) (-1148 (-947 |#1|))) (-766)) 54)))
-(((-1264 |#1|) (-10 -7 (-15 -4315 ((-1 (-1148 (-947 |#1|)) (-1148 (-947 |#1|))) (-766))) (-15 -2965 ((-1 (-1148 (-947 |#1|)) (-1148 (-947 |#1|))) (-766))) (-15 -2857 ((-1148 (-1148 (-947 |#1|))) (-1168) (-1148 (-947 |#1|)))) (-15 -1603 ((-1 (-1164 (-947 |#1|)) (-947 |#1|)) (-1168))) (-15 -3301 ((-639 (-1201 |#1|)) (-1168) (-1201 |#1|))) (-15 -2989 ((-1 (-1148 (-1201 |#1|)) (-1148 (-1201 |#1|))) (-766) (-1201 |#1|) (-1148 (-1201 |#1|))))) (-362)) (T -1264))
-((-2989 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-766)) (-4 *6 (-362)) (-5 *4 (-1201 *6)) (-5 *2 (-1 (-1148 *4) (-1148 *4))) (-5 *1 (-1264 *6)) (-5 *5 (-1148 *4)))) (-3301 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-4 *5 (-362)) (-5 *2 (-639 (-1201 *5))) (-5 *1 (-1264 *5)) (-5 *4 (-1201 *5)))) (-1603 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1 (-1164 (-947 *4)) (-947 *4))) (-5 *1 (-1264 *4)) (-4 *4 (-362)))) (-2857 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-4 *5 (-362)) (-5 *2 (-1148 (-1148 (-947 *5)))) (-5 *1 (-1264 *5)) (-5 *4 (-1148 (-947 *5))))) (-2965 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-1148 (-947 *4)) (-1148 (-947 *4)))) (-5 *1 (-1264 *4)) (-4 *4 (-362)))) (-4315 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-1148 (-947 *4)) (-1148 (-947 *4)))) (-5 *1 (-1264 *4)) (-4 *4 (-362)))))
-(-10 -7 (-15 -4315 ((-1 (-1148 (-947 |#1|)) (-1148 (-947 |#1|))) (-766))) (-15 -2965 ((-1 (-1148 (-947 |#1|)) (-1148 (-947 |#1|))) (-766))) (-15 -2857 ((-1148 (-1148 (-947 |#1|))) (-1168) (-1148 (-947 |#1|)))) (-15 -1603 ((-1 (-1164 (-947 |#1|)) (-947 |#1|)) (-1168))) (-15 -3301 ((-639 (-1201 |#1|)) (-1168) (-1201 |#1|))) (-15 -2989 ((-1 (-1148 (-1201 |#1|)) (-1148 (-1201 |#1|))) (-766) (-1201 |#1|) (-1148 (-1201 |#1|)))))
-((-2438 (((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) |#2|) 75)) (-3826 (((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) 74)))
-(((-1265 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3826 ((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))))) (-15 -2438 ((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) |#2|))) (-348) (-1232 |#1|) (-1232 |#2|) (-408 |#2| |#3|)) (T -1265))
-((-2438 (*1 *2 *3) (-12 (-4 *4 (-348)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 *3)) (-5 *2 (-2 (|:| -3928 (-683 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-683 *3)))) (-5 *1 (-1265 *4 *3 *5 *6)) (-4 *6 (-408 *3 *5)))) (-3826 (*1 *2) (-12 (-4 *3 (-348)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| -3928 (-683 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-683 *4)))) (-5 *1 (-1265 *3 *4 *5 *6)) (-4 *6 (-408 *4 *5)))))
-(-10 -7 (-15 -3826 ((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))))) (-15 -2438 ((-2 (|:| -3928 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) |#2|)))
-((-4041 (((-112) $ $) NIL)) (-2275 (((-1127) $) 11)) (-3868 (((-1127) $) 9)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-1266) (-13 (-1075) (-10 -8 (-15 -3868 ((-1127) $)) (-15 -2275 ((-1127) $))))) (T -1266))
-((-3868 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1266)))) (-2275 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1266)))))
-(-13 (-1075) (-10 -8 (-15 -3868 ((-1127) $)) (-15 -2275 ((-1127) $))))
-((-4041 (((-112) $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3317 (((-1127) $) 9)) (-4054 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1731 (((-112) $ $) NIL)))
-(((-1267) (-13 (-1075) (-10 -8 (-15 -3317 ((-1127) $))))) (T -1267))
-((-3317 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1267)))))
-(-13 (-1075) (-10 -8 (-15 -3317 ((-1127) $))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 42)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) NIL)) (-1957 (((-112) $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4054 (((-857) $) 63) (($ (-562)) NIL) (($ |#4|) 48) ((|#4| $) 53) (($ |#1|) NIL (|has| |#1| (-171)))) (-2579 (((-766)) NIL)) (-2464 (((-1261) (-766)) 16)) (-2286 (($) 27 T CONST)) (-2294 (($) 66 T CONST)) (-1731 (((-112) $ $) 68)) (-1859 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1848 (($ $) 70) (($ $ $) NIL)) (-1835 (($ $ $) 46)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 72) (($ |#1| $) NIL (|has| |#1| (-171))) (($ $ |#1|) NIL (|has| |#1| (-171)))))
-(((-1268 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-1044) (-489 |#4|) (-10 -8 (IF (|has| |#1| (-171)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -1859 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2464 ((-1261) (-766))))) (-1044) (-845) (-788) (-944 |#1| |#3| |#2|) (-639 |#2|) (-639 (-766)) (-766)) (T -1268))
-((-1859 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-362)) (-4 *2 (-1044)) (-4 *3 (-845)) (-4 *4 (-788)) (-14 *6 (-639 *3)) (-5 *1 (-1268 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-944 *2 *4 *3)) (-14 *7 (-639 (-766))) (-14 *8 (-766)))) (-2464 (*1 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-1044)) (-4 *5 (-845)) (-4 *6 (-788)) (-14 *8 (-639 *5)) (-5 *2 (-1261)) (-5 *1 (-1268 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-944 *4 *6 *5)) (-14 *9 (-639 *3)) (-14 *10 *3))))
-(-13 (-1044) (-489 |#4|) (-10 -8 (IF (|has| |#1| (-171)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -1859 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2464 ((-1261) (-766)))))
-((-4041 (((-112) $ $) NIL)) (-2560 (((-639 (-2 (|:| -1450 $) (|:| -3316 (-639 |#4|)))) (-639 |#4|)) NIL)) (-2304 (((-639 $) (-639 |#4|)) 89)) (-1402 (((-639 |#3|) $) NIL)) (-4170 (((-112) $) NIL)) (-4274 (((-112) $) NIL (|has| |#1| (-554)))) (-4377 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3049 ((|#4| |#4| $) NIL)) (-1395 (((-2 (|:| |under| $) (|:| -4014 $) (|:| |upper| $)) $ |#3|) NIL)) (-4336 (((-112) $ (-766)) NIL)) (-3556 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402))) (((-3 |#4| "failed") $ |#3|) NIL)) (-1800 (($) NIL T CONST)) (-2207 (((-112) $) NIL (|has| |#1| (-554)))) (-1920 (((-112) $ $) NIL (|has| |#1| (-554)))) (-3852 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2539 (((-112) $) NIL (|has| |#1| (-554)))) (-2839 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 28)) (-3884 (((-639 |#4|) (-639 |#4|) $) 25 (|has| |#1| (-554)))) (-2540 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) NIL)) (-3961 (($ (-639 |#4|)) NIL)) (-1434 (((-3 $ "failed") $) 71)) (-2387 ((|#4| |#4| $) 76)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-1475 (($ |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-2264 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-4091 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3595 ((|#4| |#4| $) NIL)) (-1955 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4402))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4402))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2267 (((-2 (|:| -1450 (-639 |#4|)) (|:| -3316 (-639 |#4|))) $) NIL)) (-1720 (((-639 |#4|) $) NIL (|has| $ (-6 -4402)))) (-2573 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4339 ((|#3| $) 77)) (-3292 (((-112) $ (-766)) NIL)) (-1912 (((-639 |#4|) $) 29 (|has| $ (-6 -4402)))) (-1669 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092))))) (-3018 (((-3 $ "failed") (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 32) (((-3 $ "failed") (-639 |#4|)) 35)) (-1490 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4403)))) (-4152 (($ (-1 |#4| |#4|) $) NIL)) (-3754 (((-639 |#3|) $) NIL)) (-2071 (((-112) |#3| $) NIL)) (-3289 (((-112) $ (-766)) NIL)) (-2913 (((-1150) $) NIL)) (-1504 (((-3 |#4| "failed") $) NIL)) (-3576 (((-639 |#4|) $) 51)) (-2890 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1849 ((|#4| |#4| $) 75)) (-1408 (((-112) $ $) 86)) (-3725 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-2766 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1532 ((|#4| |#4| $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-3 |#4| "failed") $) 70)) (-3251 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3310 (((-3 $ "failed") $ |#4|) NIL)) (-1353 (($ $ |#4|) NIL)) (-1763 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-3336 (((-112) $ $) NIL)) (-2974 (((-112) $) 68)) (-4307 (($) 43)) (-3598 (((-766) $) NIL)) (-1723 (((-766) |#4| $) NIL (-12 (|has| $ (-6 -4402)) (|has| |#4| (-1092)))) (((-766) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#4| (-610 (-535))))) (-4066 (($ (-639 |#4|)) NIL)) (-1812 (($ $ |#3|) NIL)) (-3274 (($ $ |#3|) NIL)) (-3277 (($ $) NIL)) (-1568 (($ $ |#3|) NIL)) (-4054 (((-857) $) NIL) (((-639 |#4|) $) 58)) (-3730 (((-766) $) NIL (|has| |#3| (-367)))) (-1352 (((-3 $ "failed") (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 41) (((-3 $ "failed") (-639 |#4|)) 42)) (-2799 (((-639 $) (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 66) (((-639 $) (-639 |#4|)) 67)) (-2652 (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) 24) (((-3 (-2 (|:| |bas| $) (|:| -2775 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4252 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) NIL)) (-1744 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4402)))) (-4089 (((-639 |#3|) $) NIL)) (-3694 (((-112) |#3| $) NIL)) (-1731 (((-112) $ $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4402)))))
-(((-1269 |#1| |#2| |#3| |#4|) (-13 (-1200 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3018 ((-3 $ "failed") (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3018 ((-3 $ "failed") (-639 |#4|))) (-15 -1352 ((-3 $ "failed") (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1352 ((-3 $ "failed") (-639 |#4|))) (-15 -2799 ((-639 $) (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2799 ((-639 $) (-639 |#4|))))) (-554) (-788) (-845) (-1058 |#1| |#2| |#3|)) (T -1269))
-((-3018 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-639 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1269 *5 *6 *7 *8)))) (-3018 (*1 *1 *2) (|partial| -12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-1269 *3 *4 *5 *6)))) (-1352 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-639 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1269 *5 *6 *7 *8)))) (-1352 (*1 *1 *2) (|partial| -12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-1269 *3 *4 *5 *6)))) (-2799 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1058 *6 *7 *8)) (-4 *6 (-554)) (-4 *7 (-788)) (-4 *8 (-845)) (-5 *2 (-639 (-1269 *6 *7 *8 *9))) (-5 *1 (-1269 *6 *7 *8 *9)))) (-2799 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 (-1269 *4 *5 *6 *7))) (-5 *1 (-1269 *4 *5 *6 *7)))))
-(-13 (-1200 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3018 ((-3 $ "failed") (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3018 ((-3 $ "failed") (-639 |#4|))) (-15 -1352 ((-3 $ "failed") (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1352 ((-3 $ "failed") (-639 |#4|))) (-15 -2799 ((-639 $) (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2799 ((-639 $) (-639 |#4|)))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-3214 (((-3 $ "failed") $ $) 19)) (-1800 (($) 17 T CONST)) (-3668 (((-3 $ "failed") $) 33)) (-1957 (((-112) $) 31)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 39)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 41) (($ |#1| $) 40)))
+((-4242 (((-639 (-1201 |#1|)) (-1168) (-1201 |#1|)) 74)) (-4375 (((-1148 (-1148 (-947 |#1|))) (-1168) (-1148 (-947 |#1|))) 53)) (-3212 (((-1 (-1148 (-1201 |#1|)) (-1148 (-1201 |#1|))) (-766) (-1201 |#1|) (-1148 (-1201 |#1|))) 64)) (-1737 (((-1 (-1148 (-947 |#1|)) (-1148 (-947 |#1|))) (-766)) 55)) (-2232 (((-1 (-1164 (-947 |#1|)) (-947 |#1|)) (-1168)) 29)) (-2988 (((-1 (-1148 (-947 |#1|)) (-1148 (-947 |#1|))) (-766)) 54)))
+(((-1264 |#1|) (-10 -7 (-15 -1737 ((-1 (-1148 (-947 |#1|)) (-1148 (-947 |#1|))) (-766))) (-15 -2988 ((-1 (-1148 (-947 |#1|)) (-1148 (-947 |#1|))) (-766))) (-15 -4375 ((-1148 (-1148 (-947 |#1|))) (-1168) (-1148 (-947 |#1|)))) (-15 -2232 ((-1 (-1164 (-947 |#1|)) (-947 |#1|)) (-1168))) (-15 -4242 ((-639 (-1201 |#1|)) (-1168) (-1201 |#1|))) (-15 -3212 ((-1 (-1148 (-1201 |#1|)) (-1148 (-1201 |#1|))) (-766) (-1201 |#1|) (-1148 (-1201 |#1|))))) (-362)) (T -1264))
+((-3212 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-766)) (-4 *6 (-362)) (-5 *4 (-1201 *6)) (-5 *2 (-1 (-1148 *4) (-1148 *4))) (-5 *1 (-1264 *6)) (-5 *5 (-1148 *4)))) (-4242 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-4 *5 (-362)) (-5 *2 (-639 (-1201 *5))) (-5 *1 (-1264 *5)) (-5 *4 (-1201 *5)))) (-2232 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1 (-1164 (-947 *4)) (-947 *4))) (-5 *1 (-1264 *4)) (-4 *4 (-362)))) (-4375 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-4 *5 (-362)) (-5 *2 (-1148 (-1148 (-947 *5)))) (-5 *1 (-1264 *5)) (-5 *4 (-1148 (-947 *5))))) (-2988 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-1148 (-947 *4)) (-1148 (-947 *4)))) (-5 *1 (-1264 *4)) (-4 *4 (-362)))) (-1737 (*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-1148 (-947 *4)) (-1148 (-947 *4)))) (-5 *1 (-1264 *4)) (-4 *4 (-362)))))
+(-10 -7 (-15 -1737 ((-1 (-1148 (-947 |#1|)) (-1148 (-947 |#1|))) (-766))) (-15 -2988 ((-1 (-1148 (-947 |#1|)) (-1148 (-947 |#1|))) (-766))) (-15 -4375 ((-1148 (-1148 (-947 |#1|))) (-1168) (-1148 (-947 |#1|)))) (-15 -2232 ((-1 (-1164 (-947 |#1|)) (-947 |#1|)) (-1168))) (-15 -4242 ((-639 (-1201 |#1|)) (-1168) (-1201 |#1|))) (-15 -3212 ((-1 (-1148 (-1201 |#1|)) (-1148 (-1201 |#1|))) (-766) (-1201 |#1|) (-1148 (-1201 |#1|)))))
+((-2606 (((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) |#2|) 75)) (-2639 (((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|)))) 74)))
+(((-1265 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2639 ((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))))) (-15 -2606 ((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) |#2|))) (-348) (-1232 |#1|) (-1232 |#2|) (-408 |#2| |#3|)) (T -1265))
+((-2606 (*1 *2 *3) (-12 (-4 *4 (-348)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 *3)) (-5 *2 (-2 (|:| -4291 (-683 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-683 *3)))) (-5 *1 (-1265 *4 *3 *5 *6)) (-4 *6 (-408 *3 *5)))) (-2639 (*1 *2) (-12 (-4 *3 (-348)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 *4)) (-5 *2 (-2 (|:| -4291 (-683 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-683 *4)))) (-5 *1 (-1265 *3 *4 *5 *6)) (-4 *6 (-408 *4 *5)))))
+(-10 -7 (-15 -2639 ((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))))) (-15 -2606 ((-2 (|:| -4291 (-683 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-683 |#2|))) |#2|)))
+((-4041 (((-112) $ $) NIL)) (-1574 (((-1127) $) 11)) (-1855 (((-1127) $) 9)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 19) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-1266) (-13 (-1075) (-10 -8 (-15 -1855 ((-1127) $)) (-15 -1574 ((-1127) $))))) (T -1266))
+((-1855 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1266)))) (-1574 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1266)))))
+(-13 (-1075) (-10 -8 (-15 -1855 ((-1127) $)) (-15 -1574 ((-1127) $))))
+((-4041 (((-112) $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3316 (((-1127) $) 9)) (-4053 (((-857) $) 17) (($ (-1173)) NIL) (((-1173) $) NIL)) (-1733 (((-112) $ $) NIL)))
+(((-1267) (-13 (-1075) (-10 -8 (-15 -3316 ((-1127) $))))) (T -1267))
+((-3316 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1267)))))
+(-13 (-1075) (-10 -8 (-15 -3316 ((-1127) $))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 42)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) NIL)) (-4367 (((-112) $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-4053 (((-857) $) 63) (($ (-562)) NIL) (($ |#4|) 48) ((|#4| $) 53) (($ |#1|) NIL (|has| |#1| (-171)))) (-1568 (((-766)) NIL)) (-2825 (((-1261) (-766)) 16)) (-2285 (($) 27 T CONST)) (-2294 (($) 66 T CONST)) (-1733 (((-112) $ $) 68)) (-1859 (((-3 $ "failed") $ $) NIL (|has| |#1| (-362)))) (-1847 (($ $) 70) (($ $ $) NIL)) (-1836 (($ $ $) 46)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 72) (($ |#1| $) NIL (|has| |#1| (-171))) (($ $ |#1|) NIL (|has| |#1| (-171)))))
+(((-1268 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-1044) (-489 |#4|) (-10 -8 (IF (|has| |#1| (-171)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -1859 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2825 ((-1261) (-766))))) (-1044) (-845) (-788) (-944 |#1| |#3| |#2|) (-639 |#2|) (-639 (-766)) (-766)) (T -1268))
+((-1859 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-362)) (-4 *2 (-1044)) (-4 *3 (-845)) (-4 *4 (-788)) (-14 *6 (-639 *3)) (-5 *1 (-1268 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-944 *2 *4 *3)) (-14 *7 (-639 (-766))) (-14 *8 (-766)))) (-2825 (*1 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-1044)) (-4 *5 (-845)) (-4 *6 (-788)) (-14 *8 (-639 *5)) (-5 *2 (-1261)) (-5 *1 (-1268 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-944 *4 *6 *5)) (-14 *9 (-639 *3)) (-14 *10 *3))))
+(-13 (-1044) (-489 |#4|) (-10 -8 (IF (|has| |#1| (-171)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-362)) (-15 -1859 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2825 ((-1261) (-766)))))
+((-4041 (((-112) $ $) NIL)) (-1330 (((-639 (-2 (|:| -1449 $) (|:| -3315 (-639 |#4|)))) (-639 |#4|)) NIL)) (-3672 (((-639 $) (-639 |#4|)) 89)) (-1401 (((-639 |#3|) $) NIL)) (-2799 (((-112) $) NIL)) (-4370 (((-112) $) NIL (|has| |#1| (-554)))) (-4177 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3623 ((|#4| |#4| $) NIL)) (-1395 (((-2 (|:| |under| $) (|:| -3870 $) (|:| |upper| $)) $ |#3|) NIL)) (-3735 (((-112) $ (-766)) NIL)) (-3556 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3329 (($) NIL T CONST)) (-2169 (((-112) $) NIL (|has| |#1| (-554)))) (-2183 (((-112) $ $) NIL (|has| |#1| (-554)))) (-2864 (((-112) $ $) NIL (|has| |#1| (-554)))) (-4219 (((-112) $) NIL (|has| |#1| (-554)))) (-4227 (((-639 |#4|) (-639 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 28)) (-2037 (((-639 |#4|) (-639 |#4|) $) 25 (|has| |#1| (-554)))) (-4230 (((-639 |#4|) (-639 |#4|) $) NIL (|has| |#1| (-554)))) (-4048 (((-3 $ "failed") (-639 |#4|)) NIL)) (-3960 (($ (-639 |#4|)) NIL)) (-1434 (((-3 $ "failed") $) 71)) (-3255 ((|#4| |#4| $) 76)) (-1459 (($ $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-1475 (($ |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-1441 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-3300 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-2227 ((|#4| |#4| $) NIL)) (-1954 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4403))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4403))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-1471 (((-2 (|:| -1449 (-639 |#4|)) (|:| -3315 (-639 |#4|))) $) NIL)) (-1720 (((-639 |#4|) $) NIL (|has| $ (-6 -4403)))) (-1493 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3761 ((|#3| $) 77)) (-4172 (((-112) $ (-766)) NIL)) (-2123 (((-639 |#4|) $) 29 (|has| $ (-6 -4403)))) (-1572 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092))))) (-3451 (((-3 $ "failed") (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 32) (((-3 $ "failed") (-639 |#4|)) 35)) (-1491 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4404)))) (-4152 (($ (-1 |#4| |#4|) $) NIL)) (-3133 (((-639 |#3|) $) NIL)) (-3112 (((-112) |#3| $) NIL)) (-4147 (((-112) $ (-766)) NIL)) (-3696 (((-1150) $) NIL)) (-1504 (((-3 |#4| "failed") $) NIL)) (-2063 (((-639 |#4|) $) 51)) (-1645 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2651 ((|#4| |#4| $) 75)) (-1789 (((-112) $ $) 86)) (-4123 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-554)))) (-2830 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1630 ((|#4| |#4| $) NIL)) (-1709 (((-1112) $) NIL)) (-1421 (((-3 |#4| "failed") $) 70)) (-1963 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-4333 (((-3 $ "failed") $ |#4|) NIL)) (-4316 (($ $ |#4|) NIL)) (-3008 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-1433 (($ $ (-639 |#4|) (-639 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-293 |#4|)) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092)))) (($ $ (-639 (-293 |#4|))) NIL (-12 (|has| |#4| (-308 |#4|)) (|has| |#4| (-1092))))) (-1452 (((-112) $ $) NIL)) (-3087 (((-112) $) 68)) (-1663 (($) 43)) (-2250 (((-766) $) NIL)) (-1723 (((-766) |#4| $) NIL (-12 (|has| $ (-6 -4403)) (|has| |#4| (-1092)))) (((-766) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-4220 (($ $) NIL)) (-4208 (((-535) $) NIL (|has| |#4| (-610 (-535))))) (-4064 (($ (-639 |#4|)) NIL)) (-2316 (($ $ |#3|) NIL)) (-2180 (($ $ |#3|) NIL)) (-2209 (($ $) NIL)) (-1962 (($ $ |#3|) NIL)) (-4053 (((-857) $) NIL) (((-639 |#4|) $) 58)) (-4157 (((-766) $) NIL (|has| |#3| (-367)))) (-3365 (((-3 $ "failed") (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 41) (((-3 $ "failed") (-639 |#4|)) 42)) (-1991 (((-639 $) (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 66) (((-639 $) (-639 |#4|)) 67)) (-4168 (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4| |#4|)) 24) (((-3 (-2 (|:| |bas| $) (|:| -2774 (-639 |#4|))) "failed") (-639 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2350 (((-112) $ (-1 (-112) |#4| (-639 |#4|))) NIL)) (-2879 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4403)))) (-3278 (((-639 |#3|) $) NIL)) (-3782 (((-112) |#3| $) NIL)) (-1733 (((-112) $ $) NIL)) (-3492 (((-766) $) NIL (|has| $ (-6 -4403)))))
+(((-1269 |#1| |#2| |#3| |#4|) (-13 (-1200 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3451 ((-3 $ "failed") (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3451 ((-3 $ "failed") (-639 |#4|))) (-15 -3365 ((-3 $ "failed") (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3365 ((-3 $ "failed") (-639 |#4|))) (-15 -1991 ((-639 $) (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1991 ((-639 $) (-639 |#4|))))) (-554) (-788) (-845) (-1058 |#1| |#2| |#3|)) (T -1269))
+((-3451 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-639 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1269 *5 *6 *7 *8)))) (-3451 (*1 *1 *2) (|partial| -12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-1269 *3 *4 *5 *6)))) (-3365 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-639 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1269 *5 *6 *7 *8)))) (-3365 (*1 *1 *2) (|partial| -12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-1269 *3 *4 *5 *6)))) (-1991 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-639 *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1058 *6 *7 *8)) (-4 *6 (-554)) (-4 *7 (-788)) (-4 *8 (-845)) (-5 *2 (-639 (-1269 *6 *7 *8 *9))) (-5 *1 (-1269 *6 *7 *8 *9)))) (-1991 (*1 *2 *3) (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 (-1269 *4 *5 *6 *7))) (-5 *1 (-1269 *4 *5 *6 *7)))))
+(-13 (-1200 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3451 ((-3 $ "failed") (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3451 ((-3 $ "failed") (-639 |#4|))) (-15 -3365 ((-3 $ "failed") (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3365 ((-3 $ "failed") (-639 |#4|))) (-15 -1991 ((-639 $) (-639 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1991 ((-639 $) (-639 |#4|)))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2781 (((-3 $ "failed") $ $) 19)) (-3329 (($) 17 T CONST)) (-1694 (((-3 $ "failed") $) 33)) (-4367 (((-112) $) 31)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#1|) 39)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ |#1|) 41) (($ |#1| $) 40)))
(((-1270 |#1|) (-139) (-1044)) (T -1270))
NIL
(-13 (-1044) (-111 |t#1| |t#1|) (-612 |t#1|) (-10 -7 (IF (|has| |t#1| (-171)) (-6 (-38 |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-171)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-609 (-857)) . T) ((-642 |#1|) . T) ((-642 $) . T) ((-712 |#1|) |has| |#1| (-171)) ((-721) . T) ((-1050 |#1|) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T))
-((-4041 (((-112) $ $) 59)) (-1952 (((-112) $) NIL)) (-2852 (((-639 |#1|) $) 45)) (-1881 (($ $ (-766)) 39)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2261 (($ $ (-766)) 18 (|has| |#2| (-171))) (($ $ $) 19 (|has| |#2| (-171)))) (-1800 (($) NIL T CONST)) (-2415 (($ $ $) 62) (($ $ (-814 |#1|)) 48) (($ $ |#1|) 52)) (-4048 (((-3 (-814 |#1|) "failed") $) NIL)) (-3961 (((-814 |#1|) $) NIL)) (-1601 (($ $) 32)) (-3668 (((-3 $ "failed") $) NIL)) (-3120 (((-112) $) NIL)) (-3451 (($ $) NIL)) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-3045 (($ (-814 |#1|) |#2|) 31)) (-3818 (($ $) 33)) (-3830 (((-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|)) $) 12)) (-2581 (((-814 |#1|) $) NIL)) (-4241 (((-814 |#1|) $) 34)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-2221 (($ $ $) 61) (($ $ (-814 |#1|)) 50) (($ $ |#1|) 54)) (-1468 (((-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1560 (((-814 |#1|) $) 28)) (-1573 ((|#2| $) 30)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3598 (((-766) $) 36)) (-3989 (((-112) $) 40)) (-1497 ((|#2| $) NIL)) (-4054 (((-857) $) NIL) (($ (-814 |#1|)) 24) (($ |#1|) 25) (($ |#2|) NIL) (($ (-562)) NIL)) (-4358 (((-639 |#2|) $) NIL)) (-3906 ((|#2| $ (-814 |#1|)) NIL)) (-4221 ((|#2| $ $) 64) ((|#2| $ (-814 |#1|)) NIL)) (-2579 (((-766)) NIL)) (-2286 (($) 13 T CONST)) (-2294 (($) 15 T CONST)) (-2516 (((-639 (-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1731 (((-112) $ $) 38)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 22)) (** (($ $ (-766)) NIL) (($ $ (-916)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#2| $) 21) (($ $ |#2|) 60) (($ |#2| (-814 |#1|)) NIL) (($ |#1| $) 27) (($ $ $) NIL)))
+((-4041 (((-112) $ $) 59)) (-4325 (((-112) $) NIL)) (-2850 (((-639 |#1|) $) 45)) (-1772 (($ $ (-766)) 39)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1403 (($ $ (-766)) 18 (|has| |#2| (-171))) (($ $ $) 19 (|has| |#2| (-171)))) (-3329 (($) NIL T CONST)) (-2403 (($ $ $) 62) (($ $ (-814 |#1|)) 48) (($ $ |#1|) 52)) (-4048 (((-3 (-814 |#1|) "failed") $) NIL)) (-3960 (((-814 |#1|) $) NIL)) (-1600 (($ $) 32)) (-1694 (((-3 $ "failed") $) NIL)) (-3056 (((-112) $) NIL)) (-3199 (($ $) NIL)) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-3044 (($ (-814 |#1|) |#2|) 31)) (-2572 (($ $) 33)) (-2681 (((-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|)) $) 12)) (-1594 (((-814 |#1|) $) NIL)) (-2251 (((-814 |#1|) $) 34)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-2303 (($ $ $) 61) (($ $ (-814 |#1|)) 50) (($ $ |#1|) 54)) (-2395 (((-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1560 (((-814 |#1|) $) 28)) (-1573 ((|#2| $) 30)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-2250 (((-766) $) 36)) (-3620 (((-112) $) 40)) (-1497 ((|#2| $) NIL)) (-4053 (((-857) $) NIL) (($ (-814 |#1|)) 24) (($ |#1|) 25) (($ |#2|) NIL) (($ (-562)) NIL)) (-3969 (((-639 |#2|) $) NIL)) (-2266 ((|#2| $ (-814 |#1|)) NIL)) (-4221 ((|#2| $ $) 64) ((|#2| $ (-814 |#1|)) NIL)) (-1568 (((-766)) NIL)) (-2285 (($) 13 T CONST)) (-2294 (($) 15 T CONST)) (-2174 (((-639 (-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|))) $) NIL)) (-1733 (((-112) $ $) 38)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 22)) (** (($ $ (-766)) NIL) (($ $ (-916)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ |#2| $) 21) (($ $ |#2|) 60) (($ |#2| (-814 |#1|)) NIL) (($ |#1| $) 27) (($ $ $) NIL)))
(((-1271 |#1| |#2|) (-13 (-381 |#2| (-814 |#1|)) (-1277 |#1| |#2|)) (-845) (-1044)) (T -1271))
NIL
(-13 (-381 |#2| (-814 |#1|)) (-1277 |#1| |#2|))
-((-4365 ((|#3| |#3| (-766)) 23)) (-3430 ((|#3| |#3| (-766)) 27)) (-2814 ((|#3| |#3| |#3| (-766)) 28)))
-(((-1272 |#1| |#2| |#3|) (-10 -7 (-15 -3430 (|#3| |#3| (-766))) (-15 -4365 (|#3| |#3| (-766))) (-15 -2814 (|#3| |#3| |#3| (-766)))) (-13 (-1044) (-712 (-406 (-562)))) (-845) (-1277 |#2| |#1|)) (T -1272))
-((-2814 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-13 (-1044) (-712 (-406 (-562))))) (-4 *5 (-845)) (-5 *1 (-1272 *4 *5 *2)) (-4 *2 (-1277 *5 *4)))) (-4365 (*1 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-13 (-1044) (-712 (-406 (-562))))) (-4 *5 (-845)) (-5 *1 (-1272 *4 *5 *2)) (-4 *2 (-1277 *5 *4)))) (-3430 (*1 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-13 (-1044) (-712 (-406 (-562))))) (-4 *5 (-845)) (-5 *1 (-1272 *4 *5 *2)) (-4 *2 (-1277 *5 *4)))))
-(-10 -7 (-15 -3430 (|#3| |#3| (-766))) (-15 -4365 (|#3| |#3| (-766))) (-15 -2814 (|#3| |#3| |#3| (-766))))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-2852 (((-639 |#1|) $) 41)) (-3214 (((-3 $ "failed") $ $) 19)) (-2261 (($ $ $) 44 (|has| |#2| (-171))) (($ $ (-766)) 43 (|has| |#2| (-171)))) (-1800 (($) 17 T CONST)) (-2415 (($ $ |#1|) 55) (($ $ (-814 |#1|)) 54) (($ $ $) 53)) (-4048 (((-3 (-814 |#1|) "failed") $) 65)) (-3961 (((-814 |#1|) $) 66)) (-3668 (((-3 $ "failed") $) 33)) (-3120 (((-112) $) 46)) (-3451 (($ $) 45)) (-1957 (((-112) $) 31)) (-3536 (((-112) $) 51)) (-3045 (($ (-814 |#1|) |#2|) 52)) (-3818 (($ $) 50)) (-3830 (((-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|)) $) 61)) (-2581 (((-814 |#1|) $) 62)) (-4152 (($ (-1 |#2| |#2|) $) 42)) (-2221 (($ $ |#1|) 58) (($ $ (-814 |#1|)) 57) (($ $ $) 56)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-3989 (((-112) $) 48)) (-1497 ((|#2| $) 47)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#2|) 69) (($ (-814 |#1|)) 64) (($ |#1|) 49)) (-4221 ((|#2| $ (-814 |#1|)) 60) ((|#2| $ $) 59)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ |#2| $) 68) (($ $ |#2|) 67) (($ |#1| $) 63)))
+((-4366 ((|#3| |#3| (-766)) 23)) (-3430 ((|#3| |#3| (-766)) 27)) (-2151 ((|#3| |#3| |#3| (-766)) 28)))
+(((-1272 |#1| |#2| |#3|) (-10 -7 (-15 -3430 (|#3| |#3| (-766))) (-15 -4366 (|#3| |#3| (-766))) (-15 -2151 (|#3| |#3| |#3| (-766)))) (-13 (-1044) (-712 (-406 (-562)))) (-845) (-1277 |#2| |#1|)) (T -1272))
+((-2151 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-13 (-1044) (-712 (-406 (-562))))) (-4 *5 (-845)) (-5 *1 (-1272 *4 *5 *2)) (-4 *2 (-1277 *5 *4)))) (-4366 (*1 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-13 (-1044) (-712 (-406 (-562))))) (-4 *5 (-845)) (-5 *1 (-1272 *4 *5 *2)) (-4 *2 (-1277 *5 *4)))) (-3430 (*1 *2 *2 *3) (-12 (-5 *3 (-766)) (-4 *4 (-13 (-1044) (-712 (-406 (-562))))) (-4 *5 (-845)) (-5 *1 (-1272 *4 *5 *2)) (-4 *2 (-1277 *5 *4)))))
+(-10 -7 (-15 -3430 (|#3| |#3| (-766))) (-15 -4366 (|#3| |#3| (-766))) (-15 -2151 (|#3| |#3| |#3| (-766))))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2850 (((-639 |#1|) $) 41)) (-2781 (((-3 $ "failed") $ $) 19)) (-1403 (($ $ $) 44 (|has| |#2| (-171))) (($ $ (-766)) 43 (|has| |#2| (-171)))) (-3329 (($) 17 T CONST)) (-2403 (($ $ |#1|) 55) (($ $ (-814 |#1|)) 54) (($ $ $) 53)) (-4048 (((-3 (-814 |#1|) "failed") $) 65)) (-3960 (((-814 |#1|) $) 66)) (-1694 (((-3 $ "failed") $) 33)) (-3056 (((-112) $) 46)) (-3199 (($ $) 45)) (-4367 (((-112) $) 31)) (-2833 (((-112) $) 51)) (-3044 (($ (-814 |#1|) |#2|) 52)) (-2572 (($ $) 50)) (-2681 (((-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|)) $) 61)) (-1594 (((-814 |#1|) $) 62)) (-4152 (($ (-1 |#2| |#2|) $) 42)) (-2303 (($ $ |#1|) 58) (($ $ (-814 |#1|)) 57) (($ $ $) 56)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-3620 (((-112) $) 48)) (-1497 ((|#2| $) 47)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#2|) 69) (($ (-814 |#1|)) 64) (($ |#1|) 49)) (-4221 ((|#2| $ (-814 |#1|)) 60) ((|#2| $ $) 59)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ |#2| $) 68) (($ $ |#2|) 67) (($ |#1| $) 63)))
(((-1273 |#1| |#2|) (-139) (-845) (-1044)) (T -1273))
-((* (*1 *1 *1 *2) (-12 (-4 *1 (-1273 *3 *2)) (-4 *3 (-845)) (-4 *2 (-1044)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-2581 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-814 *3)))) (-3830 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-2 (|:| |k| (-814 *3)) (|:| |c| *4))))) (-4221 (*1 *2 *1 *3) (-12 (-5 *3 (-814 *4)) (-4 *1 (-1273 *4 *2)) (-4 *4 (-845)) (-4 *2 (-1044)))) (-4221 (*1 *2 *1 *1) (-12 (-4 *1 (-1273 *3 *2)) (-4 *3 (-845)) (-4 *2 (-1044)))) (-2221 (*1 *1 *1 *2) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-2221 (*1 *1 *1 *2) (-12 (-5 *2 (-814 *3)) (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))) (-2221 (*1 *1 *1 *1) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-2415 (*1 *1 *1 *2) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-2415 (*1 *1 *1 *2) (-12 (-5 *2 (-814 *3)) (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))) (-2415 (*1 *1 *1 *1) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-3045 (*1 *1 *2 *3) (-12 (-5 *2 (-814 *4)) (-4 *4 (-845)) (-4 *1 (-1273 *4 *3)) (-4 *3 (-1044)))) (-3536 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-112)))) (-3818 (*1 *1 *1) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-4054 (*1 *1 *2) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-3989 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-112)))) (-1497 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *2)) (-4 *3 (-845)) (-4 *2 (-1044)))) (-3120 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-112)))) (-3451 (*1 *1 *1) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-2261 (*1 *1 *1 *1) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)) (-4 *3 (-171)))) (-2261 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-4 *4 (-171)))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))) (-2852 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-639 *3)))))
-(-13 (-1044) (-1270 |t#2|) (-1033 (-814 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -2581 ((-814 |t#1|) $)) (-15 -3830 ((-2 (|:| |k| (-814 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -4221 (|t#2| $ (-814 |t#1|))) (-15 -4221 (|t#2| $ $)) (-15 -2221 ($ $ |t#1|)) (-15 -2221 ($ $ (-814 |t#1|))) (-15 -2221 ($ $ $)) (-15 -2415 ($ $ |t#1|)) (-15 -2415 ($ $ (-814 |t#1|))) (-15 -2415 ($ $ $)) (-15 -3045 ($ (-814 |t#1|) |t#2|)) (-15 -3536 ((-112) $)) (-15 -3818 ($ $)) (-15 -4054 ($ |t#1|)) (-15 -3989 ((-112) $)) (-15 -1497 (|t#2| $)) (-15 -3120 ((-112) $)) (-15 -3451 ($ $)) (IF (|has| |t#2| (-171)) (PROGN (-15 -2261 ($ $ $)) (-15 -2261 ($ $ (-766)))) |%noBranch|) (-15 -4152 ($ (-1 |t#2| |t#2|) $)) (-15 -2852 ((-639 |t#1|) $)) (IF (|has| |t#2| (-6 -4395)) (-6 -4395) |%noBranch|)))
+((* (*1 *1 *1 *2) (-12 (-4 *1 (-1273 *3 *2)) (-4 *3 (-845)) (-4 *2 (-1044)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-1594 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-814 *3)))) (-2681 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-2 (|:| |k| (-814 *3)) (|:| |c| *4))))) (-4221 (*1 *2 *1 *3) (-12 (-5 *3 (-814 *4)) (-4 *1 (-1273 *4 *2)) (-4 *4 (-845)) (-4 *2 (-1044)))) (-4221 (*1 *2 *1 *1) (-12 (-4 *1 (-1273 *3 *2)) (-4 *3 (-845)) (-4 *2 (-1044)))) (-2303 (*1 *1 *1 *2) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-2303 (*1 *1 *1 *2) (-12 (-5 *2 (-814 *3)) (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))) (-2303 (*1 *1 *1 *1) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-2403 (*1 *1 *1 *2) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-2403 (*1 *1 *1 *2) (-12 (-5 *2 (-814 *3)) (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))) (-2403 (*1 *1 *1 *1) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-3044 (*1 *1 *2 *3) (-12 (-5 *2 (-814 *4)) (-4 *4 (-845)) (-4 *1 (-1273 *4 *3)) (-4 *3 (-1044)))) (-2833 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-112)))) (-2572 (*1 *1 *1) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-4053 (*1 *1 *2) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-3620 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-112)))) (-1497 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *2)) (-4 *3 (-845)) (-4 *2 (-1044)))) (-3056 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-112)))) (-3199 (*1 *1 *1) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))) (-1403 (*1 *1 *1 *1) (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)) (-4 *3 (-171)))) (-1403 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-4 *4 (-171)))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))) (-2850 (*1 *2 *1) (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-639 *3)))))
+(-13 (-1044) (-1270 |t#2|) (-1033 (-814 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -1594 ((-814 |t#1|) $)) (-15 -2681 ((-2 (|:| |k| (-814 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -4221 (|t#2| $ (-814 |t#1|))) (-15 -4221 (|t#2| $ $)) (-15 -2303 ($ $ |t#1|)) (-15 -2303 ($ $ (-814 |t#1|))) (-15 -2303 ($ $ $)) (-15 -2403 ($ $ |t#1|)) (-15 -2403 ($ $ (-814 |t#1|))) (-15 -2403 ($ $ $)) (-15 -3044 ($ (-814 |t#1|) |t#2|)) (-15 -2833 ((-112) $)) (-15 -2572 ($ $)) (-15 -4053 ($ |t#1|)) (-15 -3620 ((-112) $)) (-15 -1497 (|t#2| $)) (-15 -3056 ((-112) $)) (-15 -3199 ($ $)) (IF (|has| |t#2| (-171)) (PROGN (-15 -1403 ($ $ $)) (-15 -1403 ($ $ (-766)))) |%noBranch|) (-15 -4152 ($ (-1 |t#2| |t#2|) $)) (-15 -2850 ((-639 |t#1|) $)) (IF (|has| |t#2| (-6 -4396)) (-6 -4396) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-171)) ((-102) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 #0=(-814 |#1|)) . T) ((-612 |#2|) . T) ((-609 (-857)) . T) ((-642 |#2|) . T) ((-642 $) . T) ((-712 |#2|) |has| |#2| (-171)) ((-721) . T) ((-1033 #0#) . T) ((-1050 |#2|) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1270 |#2|) . T))
-((-2024 (((-112) $) 14)) (-3694 (((-112) $) 13)) (-4374 (($ $) 18) (($ $ (-766)) 19)))
-(((-1274 |#1| |#2|) (-10 -8 (-15 -4374 (|#1| |#1| (-766))) (-15 -4374 (|#1| |#1|)) (-15 -2024 ((-112) |#1|)) (-15 -3694 ((-112) |#1|))) (-1275 |#2|) (-362)) (T -1274))
+((-3826 (((-112) $) 14)) (-3782 (((-112) $) 13)) (-4144 (($ $) 18) (($ $ (-766)) 19)))
+(((-1274 |#1| |#2|) (-10 -8 (-15 -4144 (|#1| |#1| (-766))) (-15 -4144 (|#1| |#1|)) (-15 -3826 ((-112) |#1|)) (-15 -3782 ((-112) |#1|))) (-1275 |#2|) (-362)) (T -1274))
NIL
-(-10 -8 (-15 -4374 (|#1| |#1| (-766))) (-15 -4374 (|#1| |#1|)) (-15 -2024 ((-112) |#1|)) (-15 -3694 ((-112) |#1|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-1445 (((-2 (|:| -3931 $) (|:| -4389 $) (|:| |associate| $)) $) 42)) (-2796 (($ $) 41)) (-4370 (((-112) $) 39)) (-2024 (((-112) $) 95)) (-3285 (((-766)) 91)) (-3214 (((-3 $ "failed") $ $) 19)) (-2798 (($ $) 74)) (-2921 (((-417 $) $) 73)) (-2569 (((-112) $ $) 60)) (-1800 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 102)) (-3961 ((|#1| $) 103)) (-1811 (($ $ $) 56)) (-3668 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2527 (((-2 (|:| -4221 (-639 $)) (|:| -3148 $)) (-639 $)) 52)) (-3589 (($ $ (-766)) 88 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) 87 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2717 (((-112) $) 72)) (-1900 (((-828 (-916)) $) 85 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1957 (((-112) $) 31)) (-1312 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-2913 (((-1150) $) 9)) (-1525 (($ $) 71)) (-3113 (((-112) $) 94)) (-1709 (((-1112) $) 10)) (-2741 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1635 (((-417 $) $) 75)) (-4121 (((-828 (-916))) 92)) (-4102 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3148 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-3870 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-1577 (((-766) $) 59)) (-2080 (((-2 (|:| -2097 $) (|:| -2264 $)) $ $) 58)) (-3362 (((-3 (-766) "failed") $ $) 86 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3627 (((-133)) 100)) (-3598 (((-828 (-916)) $) 93)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67) (($ |#1|) 101)) (-2805 (((-3 $ "failed") $) 84 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-2579 (((-766)) 28)) (-2922 (((-112) $ $) 40)) (-3694 (((-112) $) 96)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-4374 (($ $) 90 (|has| |#1| (-367))) (($ $ (-766)) 89 (|has| |#1| (-367)))) (-1731 (((-112) $ $) 6)) (-1859 (($ $ $) 66) (($ $ |#1|) 99)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68) (($ $ |#1|) 98) (($ |#1| $) 97)))
+(-10 -8 (-15 -4144 (|#1| |#1| (-766))) (-15 -4144 (|#1| |#1|)) (-15 -3826 ((-112) |#1|)) (-15 -3782 ((-112) |#1|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2271 (((-2 (|:| -4310 $) (|:| -4390 $) (|:| |associate| $)) $) 42)) (-1965 (($ $) 41)) (-4102 (((-112) $) 39)) (-3826 (((-112) $) 95)) (-2284 (((-766)) 91)) (-2781 (((-3 $ "failed") $ $) 19)) (-1977 (($ $) 74)) (-3788 (((-417 $) $) 73)) (-1436 (((-112) $ $) 60)) (-3329 (($) 17 T CONST)) (-4048 (((-3 |#1| "failed") $) 102)) (-3960 ((|#1| $) 103)) (-1810 (($ $ $) 56)) (-1694 (((-3 $ "failed") $) 33)) (-1787 (($ $ $) 57)) (-2288 (((-2 (|:| -4221 (-639 $)) (|:| -3147 $)) (-639 $)) 52)) (-2184 (($ $ (-766)) 88 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367)))) (($ $) 87 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-3521 (((-112) $) 72)) (-1993 (((-828 (-916)) $) 85 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4367 (((-112) $) 31)) (-1719 (((-3 (-639 $) "failed") (-639 $) $) 53)) (-1564 (($ $ $) 47) (($ (-639 $)) 46)) (-3696 (((-1150) $) 9)) (-1525 (($ $) 71)) (-2991 (((-112) $) 94)) (-1709 (((-1112) $) 10)) (-2602 (((-1164 $) (-1164 $) (-1164 $)) 45)) (-1606 (($ $ $) 49) (($ (-639 $)) 48)) (-1635 (((-417 $) $) 75)) (-3548 (((-828 (-916))) 92)) (-3399 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -3147 $)) $ $) 55) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 54)) (-1762 (((-3 $ "failed") $ $) 43)) (-1879 (((-3 (-639 $) "failed") (-639 $) $) 51)) (-2044 (((-766) $) 59)) (-3204 (((-2 (|:| -3380 $) (|:| -1441 $)) $ $) 58)) (-3543 (((-3 (-766) "failed") $ $) 86 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-4340 (((-133)) 100)) (-2250 (((-828 (-916)) $) 93)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ $) 44) (($ (-406 (-562))) 67) (($ |#1|) 101)) (-2059 (((-3 $ "failed") $) 84 (-4037 (|has| |#1| (-144)) (|has| |#1| (-367))))) (-1568 (((-766)) 28)) (-3799 (((-112) $ $) 40)) (-3782 (((-112) $) 96)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-4144 (($ $) 90 (|has| |#1| (-367))) (($ $ (-766)) 89 (|has| |#1| (-367)))) (-1733 (((-112) $ $) 6)) (-1859 (($ $ $) 66) (($ $ |#1|) 99)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32) (($ $ (-562)) 70)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ $ (-406 (-562))) 69) (($ (-406 (-562)) $) 68) (($ $ |#1|) 98) (($ |#1| $) 97)))
(((-1275 |#1|) (-139) (-362)) (T -1275))
-((-3694 (*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-112)))) (-2024 (*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-112)))) (-3113 (*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-112)))) (-3598 (*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-828 (-916))))) (-4121 (*1 *2) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-828 (-916))))) (-3285 (*1 *2) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-766)))) (-4374 (*1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-362)) (-4 *2 (-367)))) (-4374 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-4 *3 (-367)))))
-(-13 (-362) (-1033 |t#1|) (-1263 |t#1|) (-10 -8 (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-401)) |%noBranch|) (-15 -3694 ((-112) $)) (-15 -2024 ((-112) $)) (-15 -3113 ((-112) $)) (-15 -3598 ((-828 (-916)) $)) (-15 -4121 ((-828 (-916)))) (-15 -3285 ((-766))) (IF (|has| |t#1| (-367)) (PROGN (-6 (-401)) (-15 -4374 ($ $)) (-15 -4374 ($ $ (-766)))) |%noBranch|)))
+((-3782 (*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-112)))) (-3826 (*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-112)))) (-2991 (*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-112)))) (-2250 (*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-828 (-916))))) (-3548 (*1 *2) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-828 (-916))))) (-2284 (*1 *2) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-766)))) (-4144 (*1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-362)) (-4 *2 (-367)))) (-4144 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-4 *3 (-367)))))
+(-13 (-362) (-1033 |t#1|) (-1263 |t#1|) (-10 -8 (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |t#1| (-144)) (-6 (-401)) |%noBranch|) (-15 -3782 ((-112) $)) (-15 -3826 ((-112) $)) (-15 -2991 ((-112) $)) (-15 -2250 ((-828 (-916)) $)) (-15 -3548 ((-828 (-916)))) (-15 -2284 ((-766))) (IF (|has| |t#1| (-367)) (PROGN (-6 (-401)) (-15 -4144 ($ $)) (-15 -4144 ($ $ (-766)))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-406 (-562))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-130) . T) ((-144) -4037 (|has| |#1| (-367)) (|has| |#1| (-144))) ((-146) |has| |#1| (-146)) ((-612 #0#) . T) ((-612 (-562)) . T) ((-612 |#1|) . T) ((-612 $) . T) ((-609 (-857)) . T) ((-171) . T) ((-242) . T) ((-289) . T) ((-306) . T) ((-362) . T) ((-401) -4037 (|has| |#1| (-367)) (|has| |#1| (-144))) ((-451) . T) ((-554) . T) ((-642 #0#) . T) ((-642 |#1|) . T) ((-642 $) . T) ((-712 #0#) . T) ((-712 |#1|) . T) ((-712 $) . T) ((-721) . T) ((-915) . T) ((-1033 |#1|) . T) ((-1050 #0#) . T) ((-1050 |#1|) . T) ((-1050 $) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1211) . T) ((-1263 |#1|) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-2852 (((-639 |#1|) $) 85)) (-1881 (($ $ (-766)) 88)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2261 (($ $ $) NIL (|has| |#2| (-171))) (($ $ (-766)) NIL (|has| |#2| (-171)))) (-1800 (($) NIL T CONST)) (-2415 (($ $ |#1|) NIL) (($ $ (-814 |#1|)) NIL) (($ $ $) NIL)) (-4048 (((-3 (-814 |#1|) "failed") $) NIL) (((-3 (-888 |#1|) "failed") $) NIL)) (-3961 (((-814 |#1|) $) NIL) (((-888 |#1|) $) NIL)) (-1601 (($ $) 87)) (-3668 (((-3 $ "failed") $) NIL)) (-3120 (((-112) $) 76)) (-3451 (($ $) 80)) (-1397 (($ $ $ (-766)) 89)) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-3045 (($ (-814 |#1|) |#2|) NIL) (($ (-888 |#1|) |#2|) 25)) (-3818 (($ $) 102)) (-3830 (((-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2581 (((-814 |#1|) $) NIL)) (-4241 (((-814 |#1|) $) NIL)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-2221 (($ $ |#1|) NIL) (($ $ (-814 |#1|)) NIL) (($ $ $) NIL)) (-4365 (($ $ (-766)) 96 (|has| |#2| (-712 (-406 (-562)))))) (-1468 (((-2 (|:| |k| (-888 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1560 (((-888 |#1|) $) 69)) (-1573 ((|#2| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3430 (($ $ (-766)) 93 (|has| |#2| (-712 (-406 (-562)))))) (-3598 (((-766) $) 86)) (-3989 (((-112) $) 70)) (-1497 ((|#2| $) 74)) (-4054 (((-857) $) 56) (($ (-562)) NIL) (($ |#2|) 50) (($ (-814 |#1|)) NIL) (($ |#1|) 58) (($ (-888 |#1|)) NIL) (($ (-658 |#1| |#2|)) 42) (((-1271 |#1| |#2|) $) 63) (((-1280 |#1| |#2|) $) 68)) (-4358 (((-639 |#2|) $) NIL)) (-3906 ((|#2| $ (-888 |#1|)) NIL)) (-4221 ((|#2| $ (-814 |#1|)) NIL) ((|#2| $ $) NIL)) (-2579 (((-766)) NIL)) (-2286 (($) 21 T CONST)) (-2294 (($) 24 T CONST)) (-2516 (((-639 (-2 (|:| |k| (-888 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3134 (((-3 (-658 |#1| |#2|) "failed") $) 101)) (-1731 (((-112) $ $) 64)) (-1848 (($ $) 95) (($ $ $) 94)) (-1835 (($ $ $) 20)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 43) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-888 |#1|)) NIL)))
-(((-1276 |#1| |#2|) (-13 (-1277 |#1| |#2|) (-381 |#2| (-888 |#1|)) (-10 -8 (-15 -4054 ($ (-658 |#1| |#2|))) (-15 -4054 ((-1271 |#1| |#2|) $)) (-15 -4054 ((-1280 |#1| |#2|) $)) (-15 -3134 ((-3 (-658 |#1| |#2|) "failed") $)) (-15 -1397 ($ $ $ (-766))) (IF (|has| |#2| (-712 (-406 (-562)))) (PROGN (-15 -3430 ($ $ (-766))) (-15 -4365 ($ $ (-766)))) |%noBranch|))) (-845) (-171)) (T -1276))
-((-4054 (*1 *1 *2) (-12 (-5 *2 (-658 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)) (-5 *1 (-1276 *3 *4)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-1271 *3 *4)) (-5 *1 (-1276 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-4054 (*1 *2 *1) (-12 (-5 *2 (-1280 *3 *4)) (-5 *1 (-1276 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-3134 (*1 *2 *1) (|partial| -12 (-5 *2 (-658 *3 *4)) (-5 *1 (-1276 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-1397 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1276 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-3430 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1276 *3 *4)) (-4 *4 (-712 (-406 (-562)))) (-4 *3 (-845)) (-4 *4 (-171)))) (-4365 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1276 *3 *4)) (-4 *4 (-712 (-406 (-562)))) (-4 *3 (-845)) (-4 *4 (-171)))))
-(-13 (-1277 |#1| |#2|) (-381 |#2| (-888 |#1|)) (-10 -8 (-15 -4054 ($ (-658 |#1| |#2|))) (-15 -4054 ((-1271 |#1| |#2|) $)) (-15 -4054 ((-1280 |#1| |#2|) $)) (-15 -3134 ((-3 (-658 |#1| |#2|) "failed") $)) (-15 -1397 ($ $ $ (-766))) (IF (|has| |#2| (-712 (-406 (-562)))) (PROGN (-15 -3430 ($ $ (-766))) (-15 -4365 ($ $ (-766)))) |%noBranch|)))
-((-4041 (((-112) $ $) 7)) (-1952 (((-112) $) 16)) (-2852 (((-639 |#1|) $) 41)) (-1881 (($ $ (-766)) 74)) (-3214 (((-3 $ "failed") $ $) 19)) (-2261 (($ $ $) 44 (|has| |#2| (-171))) (($ $ (-766)) 43 (|has| |#2| (-171)))) (-1800 (($) 17 T CONST)) (-2415 (($ $ |#1|) 55) (($ $ (-814 |#1|)) 54) (($ $ $) 53)) (-4048 (((-3 (-814 |#1|) "failed") $) 65)) (-3961 (((-814 |#1|) $) 66)) (-3668 (((-3 $ "failed") $) 33)) (-3120 (((-112) $) 46)) (-3451 (($ $) 45)) (-1957 (((-112) $) 31)) (-3536 (((-112) $) 51)) (-3045 (($ (-814 |#1|) |#2|) 52)) (-3818 (($ $) 50)) (-3830 (((-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|)) $) 61)) (-2581 (((-814 |#1|) $) 62)) (-4241 (((-814 |#1|) $) 76)) (-4152 (($ (-1 |#2| |#2|) $) 42)) (-2221 (($ $ |#1|) 58) (($ $ (-814 |#1|)) 57) (($ $ $) 56)) (-2913 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-3598 (((-766) $) 75)) (-3989 (((-112) $) 48)) (-1497 ((|#2| $) 47)) (-4054 (((-857) $) 11) (($ (-562)) 29) (($ |#2|) 69) (($ (-814 |#1|)) 64) (($ |#1|) 49)) (-4221 ((|#2| $ (-814 |#1|)) 60) ((|#2| $ $) 59)) (-2579 (((-766)) 28)) (-2286 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1731 (((-112) $ $) 6)) (-1848 (($ $) 22) (($ $ $) 21)) (-1835 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ |#2| $) 68) (($ $ |#2|) 67) (($ |#1| $) 63)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2850 (((-639 |#1|) $) 85)) (-1772 (($ $ (-766)) 88)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1403 (($ $ $) NIL (|has| |#2| (-171))) (($ $ (-766)) NIL (|has| |#2| (-171)))) (-3329 (($) NIL T CONST)) (-2403 (($ $ |#1|) NIL) (($ $ (-814 |#1|)) NIL) (($ $ $) NIL)) (-4048 (((-3 (-814 |#1|) "failed") $) NIL) (((-3 (-888 |#1|) "failed") $) NIL)) (-3960 (((-814 |#1|) $) NIL) (((-888 |#1|) $) NIL)) (-1600 (($ $) 87)) (-1694 (((-3 $ "failed") $) NIL)) (-3056 (((-112) $) 76)) (-3199 (($ $) 80)) (-3912 (($ $ $ (-766)) 89)) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-3044 (($ (-814 |#1|) |#2|) NIL) (($ (-888 |#1|) |#2|) 25)) (-2572 (($ $) 102)) (-2681 (((-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1594 (((-814 |#1|) $) NIL)) (-2251 (((-814 |#1|) $) NIL)) (-4152 (($ (-1 |#2| |#2|) $) NIL)) (-2303 (($ $ |#1|) NIL) (($ $ (-814 |#1|)) NIL) (($ $ $) NIL)) (-4366 (($ $ (-766)) 96 (|has| |#2| (-712 (-406 (-562)))))) (-2395 (((-2 (|:| |k| (-888 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1560 (((-888 |#1|) $) 69)) (-1573 ((|#2| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3430 (($ $ (-766)) 93 (|has| |#2| (-712 (-406 (-562)))))) (-2250 (((-766) $) 86)) (-3620 (((-112) $) 70)) (-1497 ((|#2| $) 74)) (-4053 (((-857) $) 56) (($ (-562)) NIL) (($ |#2|) 50) (($ (-814 |#1|)) NIL) (($ |#1|) 58) (($ (-888 |#1|)) NIL) (($ (-658 |#1| |#2|)) 42) (((-1271 |#1| |#2|) $) 63) (((-1280 |#1| |#2|) $) 68)) (-3969 (((-639 |#2|) $) NIL)) (-2266 ((|#2| $ (-888 |#1|)) NIL)) (-4221 ((|#2| $ (-814 |#1|)) NIL) ((|#2| $ $) NIL)) (-1568 (((-766)) NIL)) (-2285 (($) 21 T CONST)) (-2294 (($) 24 T CONST)) (-2174 (((-639 (-2 (|:| |k| (-888 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3192 (((-3 (-658 |#1| |#2|) "failed") $) 101)) (-1733 (((-112) $ $) 64)) (-1847 (($ $) 95) (($ $ $) 94)) (-1836 (($ $ $) 20)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 43) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-888 |#1|)) NIL)))
+(((-1276 |#1| |#2|) (-13 (-1277 |#1| |#2|) (-381 |#2| (-888 |#1|)) (-10 -8 (-15 -4053 ($ (-658 |#1| |#2|))) (-15 -4053 ((-1271 |#1| |#2|) $)) (-15 -4053 ((-1280 |#1| |#2|) $)) (-15 -3192 ((-3 (-658 |#1| |#2|) "failed") $)) (-15 -3912 ($ $ $ (-766))) (IF (|has| |#2| (-712 (-406 (-562)))) (PROGN (-15 -3430 ($ $ (-766))) (-15 -4366 ($ $ (-766)))) |%noBranch|))) (-845) (-171)) (T -1276))
+((-4053 (*1 *1 *2) (-12 (-5 *2 (-658 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)) (-5 *1 (-1276 *3 *4)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-1271 *3 *4)) (-5 *1 (-1276 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-4053 (*1 *2 *1) (-12 (-5 *2 (-1280 *3 *4)) (-5 *1 (-1276 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-3192 (*1 *2 *1) (|partial| -12 (-5 *2 (-658 *3 *4)) (-5 *1 (-1276 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-3912 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1276 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171)))) (-3430 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1276 *3 *4)) (-4 *4 (-712 (-406 (-562)))) (-4 *3 (-845)) (-4 *4 (-171)))) (-4366 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1276 *3 *4)) (-4 *4 (-712 (-406 (-562)))) (-4 *3 (-845)) (-4 *4 (-171)))))
+(-13 (-1277 |#1| |#2|) (-381 |#2| (-888 |#1|)) (-10 -8 (-15 -4053 ($ (-658 |#1| |#2|))) (-15 -4053 ((-1271 |#1| |#2|) $)) (-15 -4053 ((-1280 |#1| |#2|) $)) (-15 -3192 ((-3 (-658 |#1| |#2|) "failed") $)) (-15 -3912 ($ $ $ (-766))) (IF (|has| |#2| (-712 (-406 (-562)))) (PROGN (-15 -3430 ($ $ (-766))) (-15 -4366 ($ $ (-766)))) |%noBranch|)))
+((-4041 (((-112) $ $) 7)) (-4325 (((-112) $) 16)) (-2850 (((-639 |#1|) $) 41)) (-1772 (($ $ (-766)) 74)) (-2781 (((-3 $ "failed") $ $) 19)) (-1403 (($ $ $) 44 (|has| |#2| (-171))) (($ $ (-766)) 43 (|has| |#2| (-171)))) (-3329 (($) 17 T CONST)) (-2403 (($ $ |#1|) 55) (($ $ (-814 |#1|)) 54) (($ $ $) 53)) (-4048 (((-3 (-814 |#1|) "failed") $) 65)) (-3960 (((-814 |#1|) $) 66)) (-1694 (((-3 $ "failed") $) 33)) (-3056 (((-112) $) 46)) (-3199 (($ $) 45)) (-4367 (((-112) $) 31)) (-2833 (((-112) $) 51)) (-3044 (($ (-814 |#1|) |#2|) 52)) (-2572 (($ $) 50)) (-2681 (((-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|)) $) 61)) (-1594 (((-814 |#1|) $) 62)) (-2251 (((-814 |#1|) $) 76)) (-4152 (($ (-1 |#2| |#2|) $) 42)) (-2303 (($ $ |#1|) 58) (($ $ (-814 |#1|)) 57) (($ $ $) 56)) (-3696 (((-1150) $) 9)) (-1709 (((-1112) $) 10)) (-2250 (((-766) $) 75)) (-3620 (((-112) $) 48)) (-1497 ((|#2| $) 47)) (-4053 (((-857) $) 11) (($ (-562)) 29) (($ |#2|) 69) (($ (-814 |#1|)) 64) (($ |#1|) 49)) (-4221 ((|#2| $ (-814 |#1|)) 60) ((|#2| $ $) 59)) (-1568 (((-766)) 28)) (-2285 (($) 18 T CONST)) (-2294 (($) 30 T CONST)) (-1733 (((-112) $ $) 6)) (-1847 (($ $) 22) (($ $ $) 21)) (-1836 (($ $ $) 14)) (** (($ $ (-916)) 25) (($ $ (-766)) 32)) (* (($ (-916) $) 13) (($ (-766) $) 15) (($ (-562) $) 20) (($ $ $) 24) (($ |#2| $) 68) (($ $ |#2|) 67) (($ |#1| $) 63)))
(((-1277 |#1| |#2|) (-139) (-845) (-1044)) (T -1277))
-((-4241 (*1 *2 *1) (-12 (-4 *1 (-1277 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-814 *3)))) (-3598 (*1 *2 *1) (-12 (-4 *1 (-1277 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-766)))) (-1881 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1277 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))))
-(-13 (-1273 |t#1| |t#2|) (-10 -8 (-15 -4241 ((-814 |t#1|) $)) (-15 -3598 ((-766) $)) (-15 -1881 ($ $ (-766)))))
+((-2251 (*1 *2 *1) (-12 (-4 *1 (-1277 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-814 *3)))) (-2250 (*1 *2 *1) (-12 (-4 *1 (-1277 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *2 (-766)))) (-1772 (*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-4 *1 (-1277 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))))
+(-13 (-1273 |t#1| |t#2|) (-10 -8 (-15 -2251 ((-814 |t#1|) $)) (-15 -2250 ((-766) $)) (-15 -1772 ($ $ (-766)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-171)) ((-102) . T) ((-111 |#2| |#2|) . T) ((-130) . T) ((-612 (-562)) . T) ((-612 #0=(-814 |#1|)) . T) ((-612 |#2|) . T) ((-609 (-857)) . T) ((-642 |#2|) . T) ((-642 $) . T) ((-712 |#2|) |has| |#2| (-171)) ((-721) . T) ((-1033 #0#) . T) ((-1050 |#2|) . T) ((-1044) . T) ((-1051) . T) ((-1104) . T) ((-1092) . T) ((-1270 |#2|) . T) ((-1273 |#1| |#2|) . T))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-2852 (((-639 (-1168)) $) NIL)) (-3468 (($ (-1271 (-1168) |#1|)) NIL)) (-1881 (($ $ (-766)) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2261 (($ $ $) NIL (|has| |#1| (-171))) (($ $ (-766)) NIL (|has| |#1| (-171)))) (-1800 (($) NIL T CONST)) (-2415 (($ $ (-1168)) NIL) (($ $ (-814 (-1168))) NIL) (($ $ $) NIL)) (-4048 (((-3 (-814 (-1168)) "failed") $) NIL)) (-3961 (((-814 (-1168)) $) NIL)) (-3668 (((-3 $ "failed") $) NIL)) (-3120 (((-112) $) NIL)) (-3451 (($ $) NIL)) (-1957 (((-112) $) NIL)) (-3536 (((-112) $) NIL)) (-3045 (($ (-814 (-1168)) |#1|) NIL)) (-3818 (($ $) NIL)) (-3830 (((-2 (|:| |k| (-814 (-1168))) (|:| |c| |#1|)) $) NIL)) (-2581 (((-814 (-1168)) $) NIL)) (-4241 (((-814 (-1168)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2221 (($ $ (-1168)) NIL) (($ $ (-814 (-1168))) NIL) (($ $ $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3525 (((-1271 (-1168) |#1|) $) NIL)) (-3598 (((-766) $) NIL)) (-3989 (((-112) $) NIL)) (-1497 ((|#1| $) NIL)) (-4054 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-814 (-1168))) NIL) (($ (-1168)) NIL)) (-4221 ((|#1| $ (-814 (-1168))) NIL) ((|#1| $ $) NIL)) (-2579 (((-766)) NIL)) (-2286 (($) NIL T CONST)) (-3821 (((-639 (-2 (|:| |k| (-1168)) (|:| |c| $))) $) NIL)) (-2294 (($) NIL T CONST)) (-1731 (((-112) $ $) NIL)) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1168) $) NIL)))
-(((-1278 |#1|) (-13 (-1277 (-1168) |#1|) (-10 -8 (-15 -3525 ((-1271 (-1168) |#1|) $)) (-15 -3468 ($ (-1271 (-1168) |#1|))) (-15 -3821 ((-639 (-2 (|:| |k| (-1168)) (|:| |c| $))) $)))) (-1044)) (T -1278))
-((-3525 (*1 *2 *1) (-12 (-5 *2 (-1271 (-1168) *3)) (-5 *1 (-1278 *3)) (-4 *3 (-1044)))) (-3468 (*1 *1 *2) (-12 (-5 *2 (-1271 (-1168) *3)) (-4 *3 (-1044)) (-5 *1 (-1278 *3)))) (-3821 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |k| (-1168)) (|:| |c| (-1278 *3))))) (-5 *1 (-1278 *3)) (-4 *3 (-1044)))))
-(-13 (-1277 (-1168) |#1|) (-10 -8 (-15 -3525 ((-1271 (-1168) |#1|) $)) (-15 -3468 ($ (-1271 (-1168) |#1|))) (-15 -3821 ((-639 (-2 (|:| |k| (-1168)) (|:| |c| $))) $))))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) NIL)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1800 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL)) (-3961 ((|#2| $) NIL)) (-1601 (($ $) NIL)) (-3668 (((-3 $ "failed") $) 35)) (-3120 (((-112) $) 30)) (-3451 (($ $) 31)) (-1957 (((-112) $) NIL)) (-1694 (((-766) $) NIL)) (-1889 (((-639 $) $) NIL)) (-3536 (((-112) $) NIL)) (-3045 (($ |#2| |#1|) NIL)) (-2581 ((|#2| $) 19)) (-4241 ((|#2| $) 16)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-1468 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-1560 ((|#2| $) NIL)) (-1573 ((|#1| $) NIL)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3989 (((-112) $) 27)) (-1497 ((|#1| $) 28)) (-4054 (((-857) $) 54) (($ (-562)) 39) (($ |#1|) 34) (($ |#2|) NIL)) (-4358 (((-639 |#1|) $) NIL)) (-3906 ((|#1| $ |#2|) NIL)) (-4221 ((|#1| $ |#2|) 24)) (-2579 (((-766)) 14)) (-2286 (($) 25 T CONST)) (-2294 (($) 11 T CONST)) (-2516 (((-639 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-1731 (((-112) $ $) 26)) (-1859 (($ $ |#1|) 56 (|has| |#1| (-362)))) (-1848 (($ $) NIL) (($ $ $) NIL)) (-1835 (($ $ $) 43)) (** (($ $ (-916)) NIL) (($ $ (-766)) 45)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 44) (($ |#1| $) 40) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-3492 (((-766) $) 15)))
-(((-1279 |#1| |#2|) (-13 (-1044) (-1270 |#1|) (-381 |#1| |#2|) (-612 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3492 ((-766) $)) (-15 -4241 (|#2| $)) (-15 -2581 (|#2| $)) (-15 -1601 ($ $)) (-15 -4221 (|#1| $ |#2|)) (-15 -3989 ((-112) $)) (-15 -1497 (|#1| $)) (-15 -3120 ((-112) $)) (-15 -3451 ($ $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-362)) (-15 -1859 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4395)) (-6 -4395) |%noBranch|) (IF (|has| |#1| (-6 -4399)) (-6 -4399) |%noBranch|) (IF (|has| |#1| (-6 -4400)) (-6 -4400) |%noBranch|))) (-1044) (-841)) (T -1279))
-((* (*1 *1 *1 *2) (-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-841)))) (-1601 (*1 *1 *1) (-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-841)))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-1279 *3 *4)) (-4 *4 (-841)))) (-3492 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1279 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-841)))) (-4241 (*1 *2 *1) (-12 (-4 *2 (-841)) (-5 *1 (-1279 *3 *2)) (-4 *3 (-1044)))) (-2581 (*1 *2 *1) (-12 (-4 *2 (-841)) (-5 *1 (-1279 *3 *2)) (-4 *3 (-1044)))) (-4221 (*1 *2 *1 *3) (-12 (-4 *2 (-1044)) (-5 *1 (-1279 *2 *3)) (-4 *3 (-841)))) (-3989 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1279 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-841)))) (-1497 (*1 *2 *1) (-12 (-4 *2 (-1044)) (-5 *1 (-1279 *2 *3)) (-4 *3 (-841)))) (-3120 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1279 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-841)))) (-3451 (*1 *1 *1) (-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-841)))) (-1859 (*1 *1 *1 *2) (-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-362)) (-4 *2 (-1044)) (-4 *3 (-841)))))
-(-13 (-1044) (-1270 |#1|) (-381 |#1| |#2|) (-612 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3492 ((-766) $)) (-15 -4241 (|#2| $)) (-15 -2581 (|#2| $)) (-15 -1601 ($ $)) (-15 -4221 (|#1| $ |#2|)) (-15 -3989 ((-112) $)) (-15 -1497 (|#1| $)) (-15 -3120 ((-112) $)) (-15 -3451 ($ $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-362)) (-15 -1859 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4395)) (-6 -4395) |%noBranch|) (IF (|has| |#1| (-6 -4399)) (-6 -4399) |%noBranch|) (IF (|has| |#1| (-6 -4400)) (-6 -4400) |%noBranch|)))
-((-4041 (((-112) $ $) 26)) (-1952 (((-112) $) NIL)) (-2852 (((-639 |#1|) $) 120)) (-3468 (($ (-1271 |#1| |#2|)) 44)) (-1881 (($ $ (-766)) 32)) (-3214 (((-3 $ "failed") $ $) NIL)) (-2261 (($ $ $) 48 (|has| |#2| (-171))) (($ $ (-766)) 46 (|has| |#2| (-171)))) (-1800 (($) NIL T CONST)) (-2415 (($ $ |#1|) 102) (($ $ (-814 |#1|)) 103) (($ $ $) 25)) (-4048 (((-3 (-814 |#1|) "failed") $) NIL)) (-3961 (((-814 |#1|) $) NIL)) (-3668 (((-3 $ "failed") $) 110)) (-3120 (((-112) $) 105)) (-3451 (($ $) 106)) (-1957 (((-112) $) NIL)) (-3536 (((-112) $) NIL)) (-3045 (($ (-814 |#1|) |#2|) 19)) (-3818 (($ $) NIL)) (-3830 (((-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2581 (((-814 |#1|) $) 111)) (-4241 (((-814 |#1|) $) 114)) (-4152 (($ (-1 |#2| |#2|) $) 119)) (-2221 (($ $ |#1|) 100) (($ $ (-814 |#1|)) 101) (($ $ $) 56)) (-2913 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3525 (((-1271 |#1| |#2|) $) 84)) (-3598 (((-766) $) 117)) (-3989 (((-112) $) 70)) (-1497 ((|#2| $) 28)) (-4054 (((-857) $) 63) (($ (-562)) 77) (($ |#2|) 74) (($ (-814 |#1|)) 17) (($ |#1|) 73)) (-4221 ((|#2| $ (-814 |#1|)) 104) ((|#2| $ $) 27)) (-2579 (((-766)) 108)) (-2286 (($) 14 T CONST)) (-3821 (((-639 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 53)) (-2294 (($) 29 T CONST)) (-1731 (((-112) $ $) 13)) (-1848 (($ $) 88) (($ $ $) 91)) (-1835 (($ $ $) 55)) (** (($ $ (-916)) NIL) (($ $ (-766)) 49)) (* (($ (-916) $) NIL) (($ (-766) $) 47) (($ (-562) $) 94) (($ $ $) 21) (($ |#2| $) 18) (($ $ |#2|) 20) (($ |#1| $) 82)))
-(((-1280 |#1| |#2|) (-13 (-1277 |#1| |#2|) (-10 -8 (-15 -3525 ((-1271 |#1| |#2|) $)) (-15 -3468 ($ (-1271 |#1| |#2|))) (-15 -3821 ((-639 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-845) (-1044)) (T -1280))
-((-3525 (*1 *2 *1) (-12 (-5 *2 (-1271 *3 *4)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))) (-3468 (*1 *1 *2) (-12 (-5 *2 (-1271 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *1 (-1280 *3 *4)))) (-3821 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |k| *3) (|:| |c| (-1280 *3 *4))))) (-5 *1 (-1280 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))))
-(-13 (-1277 |#1| |#2|) (-10 -8 (-15 -3525 ((-1271 |#1| |#2|) $)) (-15 -3468 ($ (-1271 |#1| |#2|))) (-15 -3821 ((-639 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
-((-3172 (((-639 (-1148 |#1|)) (-1 (-639 (-1148 |#1|)) (-639 (-1148 |#1|))) (-562)) 15) (((-1148 |#1|) (-1 (-1148 |#1|) (-1148 |#1|))) 11)))
-(((-1281 |#1|) (-10 -7 (-15 -3172 ((-1148 |#1|) (-1 (-1148 |#1|) (-1148 |#1|)))) (-15 -3172 ((-639 (-1148 |#1|)) (-1 (-639 (-1148 |#1|)) (-639 (-1148 |#1|))) (-562)))) (-1207)) (T -1281))
-((-3172 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-639 (-1148 *5)) (-639 (-1148 *5)))) (-5 *4 (-562)) (-5 *2 (-639 (-1148 *5))) (-5 *1 (-1281 *5)) (-4 *5 (-1207)))) (-3172 (*1 *2 *3) (-12 (-5 *3 (-1 (-1148 *4) (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1281 *4)) (-4 *4 (-1207)))))
-(-10 -7 (-15 -3172 ((-1148 |#1|) (-1 (-1148 |#1|) (-1148 |#1|)))) (-15 -3172 ((-639 (-1148 |#1|)) (-1 (-639 (-1148 |#1|)) (-639 (-1148 |#1|))) (-562))))
-((-2289 (((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|))) 147) (((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112)) 146) (((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112)) 145) (((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112) (-112)) 144) (((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-1041 |#1| |#2|)) 129)) (-2565 (((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|))) 71) (((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)) (-112)) 70) (((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)) (-112) (-112)) 69)) (-2921 (((-639 (-1138 |#1| (-530 (-859 |#3|)) (-859 |#3|) (-775 |#1| (-859 |#3|)))) (-1041 |#1| |#2|)) 60)) (-3580 (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|))) 114) (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112)) 113) (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112)) 112) (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112) (-112)) 111) (((-639 (-639 (-1019 (-406 |#1|)))) (-1041 |#1| |#2|)) 106)) (-3252 (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|))) 119) (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112)) 118) (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112)) 117) (((-639 (-639 (-1019 (-406 |#1|)))) (-1041 |#1| |#2|)) 116)) (-4208 (((-639 (-775 |#1| (-859 |#3|))) (-1138 |#1| (-530 (-859 |#3|)) (-859 |#3|) (-775 |#1| (-859 |#3|)))) 97) (((-1164 (-1019 (-406 |#1|))) (-1164 |#1|)) 88) (((-947 (-1019 (-406 |#1|))) (-775 |#1| (-859 |#3|))) 95) (((-947 (-1019 (-406 |#1|))) (-947 |#1|)) 93) (((-775 |#1| (-859 |#3|)) (-775 |#1| (-859 |#2|))) 32)))
-(((-1282 |#1| |#2| |#3|) (-10 -7 (-15 -2565 ((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)) (-112) (-112))) (-15 -2565 ((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)) (-112))) (-15 -2565 ((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)))) (-15 -2289 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-1041 |#1| |#2|))) (-15 -2289 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112) (-112))) (-15 -2289 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112))) (-15 -2289 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112))) (-15 -2289 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)))) (-15 -3580 ((-639 (-639 (-1019 (-406 |#1|)))) (-1041 |#1| |#2|))) (-15 -3580 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112) (-112))) (-15 -3580 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112))) (-15 -3580 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112))) (-15 -3580 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)))) (-15 -3252 ((-639 (-639 (-1019 (-406 |#1|)))) (-1041 |#1| |#2|))) (-15 -3252 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112))) (-15 -3252 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112))) (-15 -3252 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)))) (-15 -2921 ((-639 (-1138 |#1| (-530 (-859 |#3|)) (-859 |#3|) (-775 |#1| (-859 |#3|)))) (-1041 |#1| |#2|))) (-15 -4208 ((-775 |#1| (-859 |#3|)) (-775 |#1| (-859 |#2|)))) (-15 -4208 ((-947 (-1019 (-406 |#1|))) (-947 |#1|))) (-15 -4208 ((-947 (-1019 (-406 |#1|))) (-775 |#1| (-859 |#3|)))) (-15 -4208 ((-1164 (-1019 (-406 |#1|))) (-1164 |#1|))) (-15 -4208 ((-639 (-775 |#1| (-859 |#3|))) (-1138 |#1| (-530 (-859 |#3|)) (-859 |#3|) (-775 |#1| (-859 |#3|)))))) (-13 (-843) (-306) (-146) (-1017)) (-639 (-1168)) (-639 (-1168))) (T -1282))
-((-4208 (*1 *2 *3) (-12 (-5 *3 (-1138 *4 (-530 (-859 *6)) (-859 *6) (-775 *4 (-859 *6)))) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-775 *4 (-859 *6)))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-1164 *4)) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-1164 (-1019 (-406 *4)))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-775 *4 (-859 *6))) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *6 (-639 (-1168))) (-5 *2 (-947 (-1019 (-406 *4)))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-947 *4)) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-947 (-1019 (-406 *4)))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-775 *4 (-859 *5))) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *5 (-639 (-1168))) (-5 *2 (-775 *4 (-859 *6))) (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168))))) (-2921 (*1 *2 *3) (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *5 (-639 (-1168))) (-5 *2 (-639 (-1138 *4 (-530 (-859 *6)) (-859 *6) (-775 *4 (-859 *6))))) (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168))))) (-3252 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *4))))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))) (-3252 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-3252 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-3252 (*1 *2 *3) (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *5 (-639 (-1168))) (-5 *2 (-639 (-639 (-1019 (-406 *4))))) (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168))))) (-3580 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *4))))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))) (-3580 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-3580 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-3580 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-3580 (*1 *2 *3) (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *5 (-639 (-1168))) (-5 *2 (-639 (-639 (-1019 (-406 *4))))) (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168))))) (-2289 (*1 *2 *3) (-12 (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-2 (|:| -1646 (-1164 *4)) (|:| -3593 (-639 (-947 *4)))))) (-5 *1 (-1282 *4 *5 *6)) (-5 *3 (-639 (-947 *4))) (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))) (-2289 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-2 (|:| -1646 (-1164 *5)) (|:| -3593 (-639 (-947 *5)))))) (-5 *1 (-1282 *5 *6 *7)) (-5 *3 (-639 (-947 *5))) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-2289 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-2 (|:| -1646 (-1164 *5)) (|:| -3593 (-639 (-947 *5)))))) (-5 *1 (-1282 *5 *6 *7)) (-5 *3 (-639 (-947 *5))) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-2289 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-2 (|:| -1646 (-1164 *5)) (|:| -3593 (-639 (-947 *5)))))) (-5 *1 (-1282 *5 *6 *7)) (-5 *3 (-639 (-947 *5))) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-2289 (*1 *2 *3) (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *5 (-639 (-1168))) (-5 *2 (-639 (-2 (|:| -1646 (-1164 *4)) (|:| -3593 (-639 (-947 *4)))))) (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168))))) (-2565 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-1041 *4 *5))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))) (-2565 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-2565 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))))
-(-10 -7 (-15 -2565 ((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)) (-112) (-112))) (-15 -2565 ((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)) (-112))) (-15 -2565 ((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)))) (-15 -2289 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-1041 |#1| |#2|))) (-15 -2289 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112) (-112))) (-15 -2289 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112))) (-15 -2289 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112))) (-15 -2289 ((-639 (-2 (|:| -1646 (-1164 |#1|)) (|:| -3593 (-639 (-947 |#1|))))) (-639 (-947 |#1|)))) (-15 -3580 ((-639 (-639 (-1019 (-406 |#1|)))) (-1041 |#1| |#2|))) (-15 -3580 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112) (-112))) (-15 -3580 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112))) (-15 -3580 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112))) (-15 -3580 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)))) (-15 -3252 ((-639 (-639 (-1019 (-406 |#1|)))) (-1041 |#1| |#2|))) (-15 -3252 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112))) (-15 -3252 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112))) (-15 -3252 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)))) (-15 -2921 ((-639 (-1138 |#1| (-530 (-859 |#3|)) (-859 |#3|) (-775 |#1| (-859 |#3|)))) (-1041 |#1| |#2|))) (-15 -4208 ((-775 |#1| (-859 |#3|)) (-775 |#1| (-859 |#2|)))) (-15 -4208 ((-947 (-1019 (-406 |#1|))) (-947 |#1|))) (-15 -4208 ((-947 (-1019 (-406 |#1|))) (-775 |#1| (-859 |#3|)))) (-15 -4208 ((-1164 (-1019 (-406 |#1|))) (-1164 |#1|))) (-15 -4208 ((-639 (-775 |#1| (-859 |#3|))) (-1138 |#1| (-530 (-859 |#3|)) (-859 |#3|) (-775 |#1| (-859 |#3|))))))
-((-2756 (((-3 (-1256 (-406 (-562))) "failed") (-1256 |#1|) |#1|) 21)) (-4262 (((-112) (-1256 |#1|)) 12)) (-3742 (((-3 (-1256 (-562)) "failed") (-1256 |#1|)) 16)))
-(((-1283 |#1|) (-10 -7 (-15 -4262 ((-112) (-1256 |#1|))) (-15 -3742 ((-3 (-1256 (-562)) "failed") (-1256 |#1|))) (-15 -2756 ((-3 (-1256 (-406 (-562))) "failed") (-1256 |#1|) |#1|))) (-635 (-562))) (T -1283))
-((-2756 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 (-562))) (-5 *2 (-1256 (-406 (-562)))) (-5 *1 (-1283 *4)))) (-3742 (*1 *2 *3) (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 (-562))) (-5 *2 (-1256 (-562))) (-5 *1 (-1283 *4)))) (-4262 (*1 *2 *3) (-12 (-5 *3 (-1256 *4)) (-4 *4 (-635 (-562))) (-5 *2 (-112)) (-5 *1 (-1283 *4)))))
-(-10 -7 (-15 -4262 ((-112) (-1256 |#1|))) (-15 -3742 ((-3 (-1256 (-562)) "failed") (-1256 |#1|))) (-15 -2756 ((-3 (-1256 (-406 (-562))) "failed") (-1256 |#1|) |#1|)))
-((-4041 (((-112) $ $) NIL)) (-1952 (((-112) $) 11)) (-3214 (((-3 $ "failed") $ $) NIL)) (-1382 (((-766)) 8)) (-1800 (($) NIL T CONST)) (-3668 (((-3 $ "failed") $) 43)) (-1448 (($) 36)) (-1957 (((-112) $) NIL)) (-3699 (((-3 $ "failed") $) 29)) (-1999 (((-916) $) 15)) (-2913 (((-1150) $) NIL)) (-3729 (($) 25 T CONST)) (-2466 (($ (-916)) 37)) (-1709 (((-1112) $) NIL)) (-4208 (((-562) $) 13)) (-4054 (((-857) $) 22) (($ (-562)) 19)) (-2579 (((-766)) 9)) (-2286 (($) 23 T CONST)) (-2294 (($) 24 T CONST)) (-1731 (((-112) $ $) 27)) (-1848 (($ $) 38) (($ $ $) 35)) (-1835 (($ $ $) 26)) (** (($ $ (-916)) NIL) (($ $ (-766)) 40)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 32) (($ $ $) 31)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2850 (((-639 (-1168)) $) NIL)) (-3356 (($ (-1271 (-1168) |#1|)) NIL)) (-1772 (($ $ (-766)) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1403 (($ $ $) NIL (|has| |#1| (-171))) (($ $ (-766)) NIL (|has| |#1| (-171)))) (-3329 (($) NIL T CONST)) (-2403 (($ $ (-1168)) NIL) (($ $ (-814 (-1168))) NIL) (($ $ $) NIL)) (-4048 (((-3 (-814 (-1168)) "failed") $) NIL)) (-3960 (((-814 (-1168)) $) NIL)) (-1694 (((-3 $ "failed") $) NIL)) (-3056 (((-112) $) NIL)) (-3199 (($ $) NIL)) (-4367 (((-112) $) NIL)) (-2833 (((-112) $) NIL)) (-3044 (($ (-814 (-1168)) |#1|) NIL)) (-2572 (($ $) NIL)) (-2681 (((-2 (|:| |k| (-814 (-1168))) (|:| |c| |#1|)) $) NIL)) (-1594 (((-814 (-1168)) $) NIL)) (-2251 (((-814 (-1168)) $) NIL)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2303 (($ $ (-1168)) NIL) (($ $ (-814 (-1168))) NIL) (($ $ $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3525 (((-1271 (-1168) |#1|) $) NIL)) (-2250 (((-766) $) NIL)) (-3620 (((-112) $) NIL)) (-1497 ((|#1| $) NIL)) (-4053 (((-857) $) NIL) (($ (-562)) NIL) (($ |#1|) NIL) (($ (-814 (-1168))) NIL) (($ (-1168)) NIL)) (-4221 ((|#1| $ (-814 (-1168))) NIL) ((|#1| $ $) NIL)) (-1568 (((-766)) NIL)) (-2285 (($) NIL T CONST)) (-2603 (((-639 (-2 (|:| |k| (-1168)) (|:| |c| $))) $) NIL)) (-2294 (($) NIL T CONST)) (-1733 (((-112) $ $) NIL)) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) NIL)) (** (($ $ (-916)) NIL) (($ $ (-766)) NIL)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1168) $) NIL)))
+(((-1278 |#1|) (-13 (-1277 (-1168) |#1|) (-10 -8 (-15 -3525 ((-1271 (-1168) |#1|) $)) (-15 -3356 ($ (-1271 (-1168) |#1|))) (-15 -2603 ((-639 (-2 (|:| |k| (-1168)) (|:| |c| $))) $)))) (-1044)) (T -1278))
+((-3525 (*1 *2 *1) (-12 (-5 *2 (-1271 (-1168) *3)) (-5 *1 (-1278 *3)) (-4 *3 (-1044)))) (-3356 (*1 *1 *2) (-12 (-5 *2 (-1271 (-1168) *3)) (-4 *3 (-1044)) (-5 *1 (-1278 *3)))) (-2603 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |k| (-1168)) (|:| |c| (-1278 *3))))) (-5 *1 (-1278 *3)) (-4 *3 (-1044)))))
+(-13 (-1277 (-1168) |#1|) (-10 -8 (-15 -3525 ((-1271 (-1168) |#1|) $)) (-15 -3356 ($ (-1271 (-1168) |#1|))) (-15 -2603 ((-639 (-2 (|:| |k| (-1168)) (|:| |c| $))) $))))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) NIL)) (-2781 (((-3 $ "failed") $ $) NIL)) (-3329 (($) NIL T CONST)) (-4048 (((-3 |#2| "failed") $) NIL)) (-3960 ((|#2| $) NIL)) (-1600 (($ $) NIL)) (-1694 (((-3 $ "failed") $) 35)) (-3056 (((-112) $) 30)) (-3199 (($ $) 31)) (-4367 (((-112) $) NIL)) (-3627 (((-766) $) NIL)) (-1869 (((-639 $) $) NIL)) (-2833 (((-112) $) NIL)) (-3044 (($ |#2| |#1|) NIL)) (-1594 ((|#2| $) 19)) (-2251 ((|#2| $) 16)) (-4152 (($ (-1 |#1| |#1|) $) NIL)) (-2395 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-1560 ((|#2| $) NIL)) (-1573 ((|#1| $) NIL)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3620 (((-112) $) 27)) (-1497 ((|#1| $) 28)) (-4053 (((-857) $) 54) (($ (-562)) 39) (($ |#1|) 34) (($ |#2|) NIL)) (-3969 (((-639 |#1|) $) NIL)) (-2266 ((|#1| $ |#2|) NIL)) (-4221 ((|#1| $ |#2|) 24)) (-1568 (((-766)) 14)) (-2285 (($) 25 T CONST)) (-2294 (($) 11 T CONST)) (-2174 (((-639 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-1733 (((-112) $ $) 26)) (-1859 (($ $ |#1|) 56 (|has| |#1| (-362)))) (-1847 (($ $) NIL) (($ $ $) NIL)) (-1836 (($ $ $) 43)) (** (($ $ (-916)) NIL) (($ $ (-766)) 45)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) NIL) (($ $ $) 44) (($ |#1| $) 40) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-3492 (((-766) $) 15)))
+(((-1279 |#1| |#2|) (-13 (-1044) (-1270 |#1|) (-381 |#1| |#2|) (-612 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3492 ((-766) $)) (-15 -2251 (|#2| $)) (-15 -1594 (|#2| $)) (-15 -1600 ($ $)) (-15 -4221 (|#1| $ |#2|)) (-15 -3620 ((-112) $)) (-15 -1497 (|#1| $)) (-15 -3056 ((-112) $)) (-15 -3199 ($ $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-362)) (-15 -1859 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4396)) (-6 -4396) |%noBranch|) (IF (|has| |#1| (-6 -4400)) (-6 -4400) |%noBranch|) (IF (|has| |#1| (-6 -4401)) (-6 -4401) |%noBranch|))) (-1044) (-841)) (T -1279))
+((* (*1 *1 *1 *2) (-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-841)))) (-1600 (*1 *1 *1) (-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-841)))) (-4152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-1279 *3 *4)) (-4 *4 (-841)))) (-3492 (*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-1279 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-841)))) (-2251 (*1 *2 *1) (-12 (-4 *2 (-841)) (-5 *1 (-1279 *3 *2)) (-4 *3 (-1044)))) (-1594 (*1 *2 *1) (-12 (-4 *2 (-841)) (-5 *1 (-1279 *3 *2)) (-4 *3 (-1044)))) (-4221 (*1 *2 *1 *3) (-12 (-4 *2 (-1044)) (-5 *1 (-1279 *2 *3)) (-4 *3 (-841)))) (-3620 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1279 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-841)))) (-1497 (*1 *2 *1) (-12 (-4 *2 (-1044)) (-5 *1 (-1279 *2 *3)) (-4 *3 (-841)))) (-3056 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1279 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-841)))) (-3199 (*1 *1 *1) (-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-841)))) (-1859 (*1 *1 *1 *2) (-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-362)) (-4 *2 (-1044)) (-4 *3 (-841)))))
+(-13 (-1044) (-1270 |#1|) (-381 |#1| |#2|) (-612 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3492 ((-766) $)) (-15 -2251 (|#2| $)) (-15 -1594 (|#2| $)) (-15 -1600 ($ $)) (-15 -4221 (|#1| $ |#2|)) (-15 -3620 ((-112) $)) (-15 -1497 (|#1| $)) (-15 -3056 ((-112) $)) (-15 -3199 ($ $)) (-15 -4152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-362)) (-15 -1859 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4396)) (-6 -4396) |%noBranch|) (IF (|has| |#1| (-6 -4400)) (-6 -4400) |%noBranch|) (IF (|has| |#1| (-6 -4401)) (-6 -4401) |%noBranch|)))
+((-4041 (((-112) $ $) 26)) (-4325 (((-112) $) NIL)) (-2850 (((-639 |#1|) $) 120)) (-3356 (($ (-1271 |#1| |#2|)) 44)) (-1772 (($ $ (-766)) 32)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1403 (($ $ $) 48 (|has| |#2| (-171))) (($ $ (-766)) 46 (|has| |#2| (-171)))) (-3329 (($) NIL T CONST)) (-2403 (($ $ |#1|) 102) (($ $ (-814 |#1|)) 103) (($ $ $) 25)) (-4048 (((-3 (-814 |#1|) "failed") $) NIL)) (-3960 (((-814 |#1|) $) NIL)) (-1694 (((-3 $ "failed") $) 110)) (-3056 (((-112) $) 105)) (-3199 (($ $) 106)) (-4367 (((-112) $) NIL)) (-2833 (((-112) $) NIL)) (-3044 (($ (-814 |#1|) |#2|) 19)) (-2572 (($ $) NIL)) (-2681 (((-2 (|:| |k| (-814 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1594 (((-814 |#1|) $) 111)) (-2251 (((-814 |#1|) $) 114)) (-4152 (($ (-1 |#2| |#2|) $) 119)) (-2303 (($ $ |#1|) 100) (($ $ (-814 |#1|)) 101) (($ $ $) 56)) (-3696 (((-1150) $) NIL)) (-1709 (((-1112) $) NIL)) (-3525 (((-1271 |#1| |#2|) $) 84)) (-2250 (((-766) $) 117)) (-3620 (((-112) $) 70)) (-1497 ((|#2| $) 28)) (-4053 (((-857) $) 63) (($ (-562)) 77) (($ |#2|) 74) (($ (-814 |#1|)) 17) (($ |#1|) 73)) (-4221 ((|#2| $ (-814 |#1|)) 104) ((|#2| $ $) 27)) (-1568 (((-766)) 108)) (-2285 (($) 14 T CONST)) (-2603 (((-639 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 53)) (-2294 (($) 29 T CONST)) (-1733 (((-112) $ $) 13)) (-1847 (($ $) 88) (($ $ $) 91)) (-1836 (($ $ $) 55)) (** (($ $ (-916)) NIL) (($ $ (-766)) 49)) (* (($ (-916) $) NIL) (($ (-766) $) 47) (($ (-562) $) 94) (($ $ $) 21) (($ |#2| $) 18) (($ $ |#2|) 20) (($ |#1| $) 82)))
+(((-1280 |#1| |#2|) (-13 (-1277 |#1| |#2|) (-10 -8 (-15 -3525 ((-1271 |#1| |#2|) $)) (-15 -3356 ($ (-1271 |#1| |#2|))) (-15 -2603 ((-639 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-845) (-1044)) (T -1280))
+((-3525 (*1 *2 *1) (-12 (-5 *2 (-1271 *3 *4)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))) (-3356 (*1 *1 *2) (-12 (-5 *2 (-1271 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)) (-5 *1 (-1280 *3 *4)))) (-2603 (*1 *2 *1) (-12 (-5 *2 (-639 (-2 (|:| |k| *3) (|:| |c| (-1280 *3 *4))))) (-5 *1 (-1280 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))))
+(-13 (-1277 |#1| |#2|) (-10 -8 (-15 -3525 ((-1271 |#1| |#2|) $)) (-15 -3356 ($ (-1271 |#1| |#2|))) (-15 -2603 ((-639 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
+((-3171 (((-639 (-1148 |#1|)) (-1 (-639 (-1148 |#1|)) (-639 (-1148 |#1|))) (-562)) 15) (((-1148 |#1|) (-1 (-1148 |#1|) (-1148 |#1|))) 11)))
+(((-1281 |#1|) (-10 -7 (-15 -3171 ((-1148 |#1|) (-1 (-1148 |#1|) (-1148 |#1|)))) (-15 -3171 ((-639 (-1148 |#1|)) (-1 (-639 (-1148 |#1|)) (-639 (-1148 |#1|))) (-562)))) (-1207)) (T -1281))
+((-3171 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-639 (-1148 *5)) (-639 (-1148 *5)))) (-5 *4 (-562)) (-5 *2 (-639 (-1148 *5))) (-5 *1 (-1281 *5)) (-4 *5 (-1207)))) (-3171 (*1 *2 *3) (-12 (-5 *3 (-1 (-1148 *4) (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1281 *4)) (-4 *4 (-1207)))))
+(-10 -7 (-15 -3171 ((-1148 |#1|) (-1 (-1148 |#1|) (-1148 |#1|)))) (-15 -3171 ((-639 (-1148 |#1|)) (-1 (-639 (-1148 |#1|)) (-639 (-1148 |#1|))) (-562))))
+((-3536 (((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|))) 147) (((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112)) 146) (((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112)) 145) (((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112) (-112)) 144) (((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-1041 |#1| |#2|)) 129)) (-1384 (((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|))) 71) (((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)) (-112)) 70) (((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)) (-112) (-112)) 69)) (-3788 (((-639 (-1138 |#1| (-530 (-859 |#3|)) (-859 |#3|) (-775 |#1| (-859 |#3|)))) (-1041 |#1| |#2|)) 60)) (-2107 (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|))) 114) (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112)) 113) (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112)) 112) (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112) (-112)) 111) (((-639 (-639 (-1019 (-406 |#1|)))) (-1041 |#1| |#2|)) 106)) (-1976 (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|))) 119) (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112)) 118) (((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112)) 117) (((-639 (-639 (-1019 (-406 |#1|)))) (-1041 |#1| |#2|)) 116)) (-4208 (((-639 (-775 |#1| (-859 |#3|))) (-1138 |#1| (-530 (-859 |#3|)) (-859 |#3|) (-775 |#1| (-859 |#3|)))) 97) (((-1164 (-1019 (-406 |#1|))) (-1164 |#1|)) 88) (((-947 (-1019 (-406 |#1|))) (-775 |#1| (-859 |#3|))) 95) (((-947 (-1019 (-406 |#1|))) (-947 |#1|)) 93) (((-775 |#1| (-859 |#3|)) (-775 |#1| (-859 |#2|))) 32)))
+(((-1282 |#1| |#2| |#3|) (-10 -7 (-15 -1384 ((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)) (-112) (-112))) (-15 -1384 ((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)) (-112))) (-15 -1384 ((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)))) (-15 -3536 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-1041 |#1| |#2|))) (-15 -3536 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112) (-112))) (-15 -3536 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112))) (-15 -3536 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112))) (-15 -3536 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)))) (-15 -2107 ((-639 (-639 (-1019 (-406 |#1|)))) (-1041 |#1| |#2|))) (-15 -2107 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112) (-112))) (-15 -2107 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112))) (-15 -2107 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112))) (-15 -2107 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)))) (-15 -1976 ((-639 (-639 (-1019 (-406 |#1|)))) (-1041 |#1| |#2|))) (-15 -1976 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112))) (-15 -1976 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112))) (-15 -1976 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)))) (-15 -3788 ((-639 (-1138 |#1| (-530 (-859 |#3|)) (-859 |#3|) (-775 |#1| (-859 |#3|)))) (-1041 |#1| |#2|))) (-15 -4208 ((-775 |#1| (-859 |#3|)) (-775 |#1| (-859 |#2|)))) (-15 -4208 ((-947 (-1019 (-406 |#1|))) (-947 |#1|))) (-15 -4208 ((-947 (-1019 (-406 |#1|))) (-775 |#1| (-859 |#3|)))) (-15 -4208 ((-1164 (-1019 (-406 |#1|))) (-1164 |#1|))) (-15 -4208 ((-639 (-775 |#1| (-859 |#3|))) (-1138 |#1| (-530 (-859 |#3|)) (-859 |#3|) (-775 |#1| (-859 |#3|)))))) (-13 (-843) (-306) (-146) (-1017)) (-639 (-1168)) (-639 (-1168))) (T -1282))
+((-4208 (*1 *2 *3) (-12 (-5 *3 (-1138 *4 (-530 (-859 *6)) (-859 *6) (-775 *4 (-859 *6)))) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-775 *4 (-859 *6)))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-1164 *4)) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-1164 (-1019 (-406 *4)))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-775 *4 (-859 *6))) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *6 (-639 (-1168))) (-5 *2 (-947 (-1019 (-406 *4)))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-947 *4)) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-947 (-1019 (-406 *4)))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))) (-4208 (*1 *2 *3) (-12 (-5 *3 (-775 *4 (-859 *5))) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *5 (-639 (-1168))) (-5 *2 (-775 *4 (-859 *6))) (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168))))) (-3788 (*1 *2 *3) (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *5 (-639 (-1168))) (-5 *2 (-639 (-1138 *4 (-530 (-859 *6)) (-859 *6) (-775 *4 (-859 *6))))) (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168))))) (-1976 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *4))))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))) (-1976 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-1976 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-1976 (*1 *2 *3) (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *5 (-639 (-1168))) (-5 *2 (-639 (-639 (-1019 (-406 *4))))) (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168))))) (-2107 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *4))))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))) (-2107 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-2107 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-2107 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-2107 (*1 *2 *3) (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *5 (-639 (-1168))) (-5 *2 (-639 (-639 (-1019 (-406 *4))))) (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168))))) (-3536 (*1 *2 *3) (-12 (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-2 (|:| -1333 (-1164 *4)) (|:| -2205 (-639 (-947 *4)))))) (-5 *1 (-1282 *4 *5 *6)) (-5 *3 (-639 (-947 *4))) (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))) (-3536 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-2 (|:| -1333 (-1164 *5)) (|:| -2205 (-639 (-947 *5)))))) (-5 *1 (-1282 *5 *6 *7)) (-5 *3 (-639 (-947 *5))) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-3536 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-2 (|:| -1333 (-1164 *5)) (|:| -2205 (-639 (-947 *5)))))) (-5 *1 (-1282 *5 *6 *7)) (-5 *3 (-639 (-947 *5))) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-3536 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-2 (|:| -1333 (-1164 *5)) (|:| -2205 (-639 (-947 *5)))))) (-5 *1 (-1282 *5 *6 *7)) (-5 *3 (-639 (-947 *5))) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-3536 (*1 *2 *3) (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *5 (-639 (-1168))) (-5 *2 (-639 (-2 (|:| -1333 (-1164 *4)) (|:| -2205 (-639 (-947 *4)))))) (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168))))) (-1384 (*1 *2 *3) (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-1041 *4 *5))) (-5 *1 (-1282 *4 *5 *6)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))) (-1384 (*1 *2 *3 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))) (-1384 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017))) (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-1282 *5 *6 *7)) (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168))))))
+(-10 -7 (-15 -1384 ((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)) (-112) (-112))) (-15 -1384 ((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)) (-112))) (-15 -1384 ((-639 (-1041 |#1| |#2|)) (-639 (-947 |#1|)))) (-15 -3536 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-1041 |#1| |#2|))) (-15 -3536 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112) (-112))) (-15 -3536 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112) (-112))) (-15 -3536 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)) (-112))) (-15 -3536 ((-639 (-2 (|:| -1333 (-1164 |#1|)) (|:| -2205 (-639 (-947 |#1|))))) (-639 (-947 |#1|)))) (-15 -2107 ((-639 (-639 (-1019 (-406 |#1|)))) (-1041 |#1| |#2|))) (-15 -2107 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112) (-112))) (-15 -2107 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112))) (-15 -2107 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112))) (-15 -2107 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)))) (-15 -1976 ((-639 (-639 (-1019 (-406 |#1|)))) (-1041 |#1| |#2|))) (-15 -1976 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112) (-112))) (-15 -1976 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)) (-112))) (-15 -1976 ((-639 (-639 (-1019 (-406 |#1|)))) (-639 (-947 |#1|)))) (-15 -3788 ((-639 (-1138 |#1| (-530 (-859 |#3|)) (-859 |#3|) (-775 |#1| (-859 |#3|)))) (-1041 |#1| |#2|))) (-15 -4208 ((-775 |#1| (-859 |#3|)) (-775 |#1| (-859 |#2|)))) (-15 -4208 ((-947 (-1019 (-406 |#1|))) (-947 |#1|))) (-15 -4208 ((-947 (-1019 (-406 |#1|))) (-775 |#1| (-859 |#3|)))) (-15 -4208 ((-1164 (-1019 (-406 |#1|))) (-1164 |#1|))) (-15 -4208 ((-639 (-775 |#1| (-859 |#3|))) (-1138 |#1| (-530 (-859 |#3|)) (-859 |#3|) (-775 |#1| (-859 |#3|))))))
+((-2733 (((-3 (-1256 (-406 (-562))) "failed") (-1256 |#1|) |#1|) 21)) (-4269 (((-112) (-1256 |#1|)) 12)) (-3027 (((-3 (-1256 (-562)) "failed") (-1256 |#1|)) 16)))
+(((-1283 |#1|) (-10 -7 (-15 -4269 ((-112) (-1256 |#1|))) (-15 -3027 ((-3 (-1256 (-562)) "failed") (-1256 |#1|))) (-15 -2733 ((-3 (-1256 (-406 (-562))) "failed") (-1256 |#1|) |#1|))) (-635 (-562))) (T -1283))
+((-2733 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 (-562))) (-5 *2 (-1256 (-406 (-562)))) (-5 *1 (-1283 *4)))) (-3027 (*1 *2 *3) (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 (-562))) (-5 *2 (-1256 (-562))) (-5 *1 (-1283 *4)))) (-4269 (*1 *2 *3) (-12 (-5 *3 (-1256 *4)) (-4 *4 (-635 (-562))) (-5 *2 (-112)) (-5 *1 (-1283 *4)))))
+(-10 -7 (-15 -4269 ((-112) (-1256 |#1|))) (-15 -3027 ((-3 (-1256 (-562)) "failed") (-1256 |#1|))) (-15 -2733 ((-3 (-1256 (-406 (-562))) "failed") (-1256 |#1|) |#1|)))
+((-4041 (((-112) $ $) NIL)) (-4325 (((-112) $) 11)) (-2781 (((-3 $ "failed") $ $) NIL)) (-1382 (((-766)) 8)) (-3329 (($) NIL T CONST)) (-1694 (((-3 $ "failed") $) 43)) (-1447 (($) 36)) (-4367 (((-112) $) NIL)) (-3828 (((-3 $ "failed") $) 29)) (-3549 (((-916) $) 15)) (-3696 (((-1150) $) NIL)) (-3730 (($) 25 T CONST)) (-2464 (($ (-916)) 37)) (-1709 (((-1112) $) NIL)) (-4208 (((-562) $) 13)) (-4053 (((-857) $) 22) (($ (-562)) 19)) (-1568 (((-766)) 9)) (-2285 (($) 23 T CONST)) (-2294 (($) 24 T CONST)) (-1733 (((-112) $ $) 27)) (-1847 (($ $) 38) (($ $ $) 35)) (-1836 (($ $ $) 26)) (** (($ $ (-916)) NIL) (($ $ (-766)) 40)) (* (($ (-916) $) NIL) (($ (-766) $) NIL) (($ (-562) $) 32) (($ $ $) 31)))
(((-1284 |#1|) (-13 (-171) (-367) (-610 (-562)) (-1143)) (-916)) (T -1284))
NIL
(-13 (-171) (-367) (-610 (-562)) (-1143))
@@ -5292,4 +5292,4 @@ NIL
NIL
NIL
NIL
-((-3 3194525 3194530 3194535 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-2 3194510 3194515 3194520 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1 3194495 3194500 3194505 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (0 3194480 3194485 3194490 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1284 3193656 3194355 3194432 "ZMOD" 3194437 NIL ZMOD (NIL NIL) -8 NIL NIL NIL) (-1283 3192766 3192930 3193139 "ZLINDEP" 3193488 NIL ZLINDEP (NIL T) -7 NIL NIL NIL) (-1282 3182070 3183834 3185806 "ZDSOLVE" 3190896 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL NIL) (-1281 3181316 3181457 3181646 "YSTREAM" 3181916 NIL YSTREAM (NIL T) -7 NIL NIL NIL) (-1280 3179127 3180617 3180821 "XRPOLY" 3181159 NIL XRPOLY (NIL T T) -8 NIL NIL NIL) (-1279 3175715 3176998 3177573 "XPR" 3178599 NIL XPR (NIL T T) -8 NIL NIL NIL) (-1278 3173471 3175046 3175250 "XPOLY" 3175546 NIL XPOLY (NIL T) -8 NIL NIL NIL) (-1277 3171262 3172596 3172651 "XPOLYC" 3172939 NIL XPOLYC (NIL T T) -9 NIL 3173052 NIL) (-1276 3167680 3169779 3170167 "XPBWPOLY" 3170920 NIL XPBWPOLY (NIL T T) -8 NIL NIL NIL) (-1275 3163591 3165843 3165885 "XF" 3166506 NIL XF (NIL T) -9 NIL 3166906 NIL) (-1274 3163212 3163300 3163469 "XF-" 3163474 NIL XF- (NIL T T) -8 NIL NIL NIL) (-1273 3158546 3159801 3159856 "XFALG" 3162028 NIL XFALG (NIL T T) -9 NIL 3162817 NIL) (-1272 3157679 3157783 3157988 "XEXPPKG" 3158438 NIL XEXPPKG (NIL T T T) -7 NIL NIL NIL) (-1271 3155823 3157529 3157625 "XDPOLY" 3157630 NIL XDPOLY (NIL T T) -8 NIL NIL NIL) (-1270 3154768 3155334 3155377 "XALG" 3155382 NIL XALG (NIL T) -9 NIL 3155493 NIL) (-1269 3148237 3152745 3153239 "WUTSET" 3154360 NIL WUTSET (NIL T T T T) -8 NIL NIL NIL) (-1268 3146528 3147289 3147612 "WP" 3148048 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL NIL) (-1267 3146157 3146350 3146420 "WHILEAST" 3146480 T WHILEAST (NIL) -8 NIL NIL NIL) (-1266 3145656 3145874 3145968 "WHEREAST" 3146085 T WHEREAST (NIL) -8 NIL NIL NIL) (-1265 3144542 3144740 3145035 "WFFINTBS" 3145453 NIL WFFINTBS (NIL T T T T) -7 NIL NIL NIL) (-1264 3142446 3142873 3143335 "WEIER" 3144114 NIL WEIER (NIL T) -7 NIL NIL NIL) (-1263 3141593 3142017 3142059 "VSPACE" 3142195 NIL VSPACE (NIL T) -9 NIL 3142269 NIL) (-1262 3141431 3141458 3141549 "VSPACE-" 3141554 NIL VSPACE- (NIL T T) -8 NIL NIL NIL) (-1261 3141239 3141282 3141350 "VOID" 3141385 T VOID (NIL) -8 NIL NIL NIL) (-1260 3139375 3139734 3140140 "VIEW" 3140855 T VIEW (NIL) -7 NIL NIL NIL) (-1259 3135800 3136438 3137175 "VIEWDEF" 3138660 T VIEWDEF (NIL) -7 NIL NIL NIL) (-1258 3125136 3127348 3129521 "VIEW3D" 3133649 T VIEW3D (NIL) -8 NIL NIL NIL) (-1257 3117418 3119047 3120626 "VIEW2D" 3123579 T VIEW2D (NIL) -8 NIL NIL NIL) (-1256 3112822 3117188 3117280 "VECTOR" 3117361 NIL VECTOR (NIL T) -8 NIL NIL NIL) (-1255 3111399 3111658 3111976 "VECTOR2" 3112552 NIL VECTOR2 (NIL T T) -7 NIL NIL NIL) (-1254 3104926 3109183 3109226 "VECTCAT" 3110219 NIL VECTCAT (NIL T) -9 NIL 3110805 NIL) (-1253 3103940 3104194 3104584 "VECTCAT-" 3104589 NIL VECTCAT- (NIL T T) -8 NIL NIL NIL) (-1252 3103421 3103591 3103711 "VARIABLE" 3103855 NIL VARIABLE (NIL NIL) -8 NIL NIL NIL) (-1251 3103354 3103359 3103389 "UTYPE" 3103394 T UTYPE (NIL) -9 NIL NIL NIL) (-1250 3102184 3102338 3102600 "UTSODETL" 3103180 NIL UTSODETL (NIL T T T T) -7 NIL NIL NIL) (-1249 3099624 3100084 3100608 "UTSODE" 3101725 NIL UTSODE (NIL T T) -7 NIL NIL NIL) (-1248 3091500 3097250 3097739 "UTS" 3099193 NIL UTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1247 3082743 3088067 3088110 "UTSCAT" 3089222 NIL UTSCAT (NIL T) -9 NIL 3089979 NIL) (-1246 3080098 3080813 3081802 "UTSCAT-" 3081807 NIL UTSCAT- (NIL T T) -8 NIL NIL NIL) (-1245 3079725 3079768 3079901 "UTS2" 3080049 NIL UTS2 (NIL T T T T) -7 NIL NIL NIL) (-1244 3073998 3076563 3076606 "URAGG" 3078676 NIL URAGG (NIL T) -9 NIL 3079399 NIL) (-1243 3070937 3071800 3072923 "URAGG-" 3072928 NIL URAGG- (NIL T T) -8 NIL NIL NIL) (-1242 3066661 3069551 3070023 "UPXSSING" 3070601 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL NIL) (-1241 3058763 3065908 3066181 "UPXS" 3066446 NIL UPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1240 3051876 3058667 3058739 "UPXSCONS" 3058744 NIL UPXSCONS (NIL T T) -8 NIL NIL NIL) (-1239 3042121 3048871 3048933 "UPXSCCA" 3049507 NIL UPXSCCA (NIL T T) -9 NIL 3049740 NIL) (-1238 3041759 3041844 3042018 "UPXSCCA-" 3042023 NIL UPXSCCA- (NIL T T T) -8 NIL NIL NIL) (-1237 3031857 3038380 3038423 "UPXSCAT" 3039071 NIL UPXSCAT (NIL T) -9 NIL 3039679 NIL) (-1236 3031287 3031366 3031545 "UPXS2" 3031772 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1235 3029941 3030194 3030545 "UPSQFREE" 3031030 NIL UPSQFREE (NIL T T) -7 NIL NIL NIL) (-1234 3023729 3026743 3026798 "UPSCAT" 3027959 NIL UPSCAT (NIL T T) -9 NIL 3028733 NIL) (-1233 3022933 3023140 3023467 "UPSCAT-" 3023472 NIL UPSCAT- (NIL T T T) -8 NIL NIL NIL) (-1232 3008783 3016781 3016824 "UPOLYC" 3018925 NIL UPOLYC (NIL T) -9 NIL 3020146 NIL) (-1231 3000112 3002537 3005684 "UPOLYC-" 3005689 NIL UPOLYC- (NIL T T) -8 NIL NIL NIL) (-1230 2999739 2999782 2999915 "UPOLYC2" 3000063 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL NIL) (-1229 2991313 2999422 2999551 "UP" 2999658 NIL UP (NIL NIL T) -8 NIL NIL NIL) (-1228 2990652 2990759 2990923 "UPMP" 2991202 NIL UPMP (NIL T T) -7 NIL NIL NIL) (-1227 2990205 2990286 2990425 "UPDIVP" 2990565 NIL UPDIVP (NIL T T) -7 NIL NIL NIL) (-1226 2988773 2989022 2989338 "UPDECOMP" 2989954 NIL UPDECOMP (NIL T T) -7 NIL NIL NIL) (-1225 2988008 2988120 2988305 "UPCDEN" 2988657 NIL UPCDEN (NIL T T T) -7 NIL NIL NIL) (-1224 2987527 2987596 2987745 "UP2" 2987933 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL NIL) (-1223 2986044 2986731 2987008 "UNISEG" 2987285 NIL UNISEG (NIL T) -8 NIL NIL NIL) (-1222 2985259 2985386 2985591 "UNISEG2" 2985887 NIL UNISEG2 (NIL T T) -7 NIL NIL NIL) (-1221 2984319 2984499 2984725 "UNIFACT" 2985075 NIL UNIFACT (NIL T) -7 NIL NIL NIL) (-1220 2968286 2983496 2983747 "ULS" 2984126 NIL ULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1219 2956326 2968190 2968262 "ULSCONS" 2968267 NIL ULSCONS (NIL T T) -8 NIL NIL NIL) (-1218 2938942 2950884 2950946 "ULSCCAT" 2951584 NIL ULSCCAT (NIL T T) -9 NIL 2951872 NIL) (-1217 2937992 2938237 2938625 "ULSCCAT-" 2938630 NIL ULSCCAT- (NIL T T T) -8 NIL NIL NIL) (-1216 2927867 2934304 2934347 "ULSCAT" 2935210 NIL ULSCAT (NIL T) -9 NIL 2935940 NIL) (-1215 2927297 2927376 2927555 "ULS2" 2927782 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1214 2926434 2926909 2927010 "UINT8" 2927121 T UINT8 (NIL) -8 NIL NIL 2927200) (-1213 2925570 2926045 2926146 "UINT32" 2926257 T UINT32 (NIL) -8 NIL NIL 2926336) (-1212 2924706 2925181 2925282 "UINT16" 2925393 T UINT16 (NIL) -8 NIL NIL 2925472) (-1211 2923109 2924032 2924062 "UFD" 2924274 T UFD (NIL) -9 NIL 2924388 NIL) (-1210 2922903 2922949 2923044 "UFD-" 2923049 NIL UFD- (NIL T) -8 NIL NIL NIL) (-1209 2921985 2922168 2922384 "UDVO" 2922709 T UDVO (NIL) -7 NIL NIL NIL) (-1208 2919801 2920210 2920681 "UDPO" 2921549 NIL UDPO (NIL T) -7 NIL NIL NIL) (-1207 2919734 2919739 2919769 "TYPE" 2919774 T TYPE (NIL) -9 NIL NIL NIL) (-1206 2919521 2919689 2919720 "TYPEAST" 2919725 T TYPEAST (NIL) -8 NIL NIL NIL) (-1205 2918492 2918694 2918934 "TWOFACT" 2919315 NIL TWOFACT (NIL T) -7 NIL NIL NIL) (-1204 2917564 2917901 2918136 "TUPLE" 2918292 NIL TUPLE (NIL T) -8 NIL NIL NIL) (-1203 2915255 2915774 2916313 "TUBETOOL" 2917047 T TUBETOOL (NIL) -7 NIL NIL NIL) (-1202 2914104 2914309 2914550 "TUBE" 2915048 NIL TUBE (NIL T) -8 NIL NIL NIL) (-1201 2908868 2913076 2913359 "TS" 2913856 NIL TS (NIL T) -8 NIL NIL NIL) (-1200 2897535 2901627 2901724 "TSETCAT" 2906993 NIL TSETCAT (NIL T T T T) -9 NIL 2908524 NIL) (-1199 2892270 2893867 2895758 "TSETCAT-" 2895763 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1198 2886533 2887379 2888321 "TRMANIP" 2891406 NIL TRMANIP (NIL T T) -7 NIL NIL NIL) (-1197 2885974 2886037 2886200 "TRIMAT" 2886465 NIL TRIMAT (NIL T T T T) -7 NIL NIL NIL) (-1196 2883770 2884007 2884371 "TRIGMNIP" 2885723 NIL TRIGMNIP (NIL T T) -7 NIL NIL NIL) (-1195 2883290 2883403 2883433 "TRIGCAT" 2883646 T TRIGCAT (NIL) -9 NIL NIL NIL) (-1194 2882959 2883038 2883179 "TRIGCAT-" 2883184 NIL TRIGCAT- (NIL T) -8 NIL NIL NIL) (-1193 2879856 2881817 2882098 "TREE" 2882713 NIL TREE (NIL T) -8 NIL NIL NIL) (-1192 2879130 2879658 2879688 "TRANFUN" 2879723 T TRANFUN (NIL) -9 NIL 2879789 NIL) (-1191 2878409 2878600 2878880 "TRANFUN-" 2878885 NIL TRANFUN- (NIL T) -8 NIL NIL NIL) (-1190 2878213 2878245 2878306 "TOPSP" 2878370 T TOPSP (NIL) -7 NIL NIL NIL) (-1189 2877561 2877676 2877830 "TOOLSIGN" 2878094 NIL TOOLSIGN (NIL T) -7 NIL NIL NIL) (-1188 2876222 2876738 2876977 "TEXTFILE" 2877344 T TEXTFILE (NIL) -8 NIL NIL NIL) (-1187 2874161 2874675 2875104 "TEX" 2875815 T TEX (NIL) -8 NIL NIL NIL) (-1186 2873942 2873973 2874045 "TEX1" 2874124 NIL TEX1 (NIL T) -7 NIL NIL NIL) (-1185 2873590 2873653 2873743 "TEMUTL" 2873874 T TEMUTL (NIL) -7 NIL NIL NIL) (-1184 2871744 2872024 2872349 "TBCMPPK" 2873313 NIL TBCMPPK (NIL T T) -7 NIL NIL NIL) (-1183 2863632 2869904 2869960 "TBAGG" 2870360 NIL TBAGG (NIL T T) -9 NIL 2870571 NIL) (-1182 2858702 2860190 2861944 "TBAGG-" 2861949 NIL TBAGG- (NIL T T T) -8 NIL NIL NIL) (-1181 2858086 2858193 2858338 "TANEXP" 2858591 NIL TANEXP (NIL T) -7 NIL NIL NIL) (-1180 2851587 2857943 2858036 "TABLE" 2858041 NIL TABLE (NIL T T) -8 NIL NIL NIL) (-1179 2850999 2851098 2851236 "TABLEAU" 2851484 NIL TABLEAU (NIL T) -8 NIL NIL NIL) (-1178 2845607 2846827 2848075 "TABLBUMP" 2849785 NIL TABLBUMP (NIL T) -7 NIL NIL NIL) (-1177 2845035 2845135 2845263 "SYSTEM" 2845501 T SYSTEM (NIL) -7 NIL NIL NIL) (-1176 2841498 2842193 2842976 "SYSSOLP" 2844286 NIL SYSSOLP (NIL T) -7 NIL NIL NIL) (-1175 2840555 2841022 2841135 "SYSNNI" 2841321 NIL SYSNNI (NIL NIL) -8 NIL NIL 2841400) (-1174 2840008 2840413 2840455 "SYSINT" 2840460 NIL SYSINT (NIL NIL) -8 NIL NIL 2840468) (-1173 2836342 2837269 2837985 "SYNTAX" 2839314 T SYNTAX (NIL) -8 NIL NIL NIL) (-1172 2833500 2834102 2834734 "SYMTAB" 2835732 T SYMTAB (NIL) -8 NIL NIL NIL) (-1171 2828749 2829651 2830634 "SYMS" 2832539 T SYMS (NIL) -8 NIL NIL NIL) (-1170 2826021 2828207 2828437 "SYMPOLY" 2828554 NIL SYMPOLY (NIL T) -8 NIL NIL NIL) (-1169 2825538 2825613 2825736 "SYMFUNC" 2825933 NIL SYMFUNC (NIL T) -7 NIL NIL NIL) (-1168 2821590 2822850 2823663 "SYMBOL" 2824747 T SYMBOL (NIL) -8 NIL NIL NIL) (-1167 2815129 2816818 2818538 "SWITCH" 2819892 T SWITCH (NIL) -8 NIL NIL NIL) (-1166 2808399 2813950 2814253 "SUTS" 2814884 NIL SUTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1165 2800500 2807646 2807919 "SUPXS" 2808184 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1164 2792030 2800118 2800244 "SUP" 2800409 NIL SUP (NIL T) -8 NIL NIL NIL) (-1163 2791189 2791316 2791533 "SUPFRACF" 2791898 NIL SUPFRACF (NIL T T T T) -7 NIL NIL NIL) (-1162 2790810 2790869 2790982 "SUP2" 2791124 NIL SUP2 (NIL T T) -7 NIL NIL NIL) (-1161 2789223 2789497 2789860 "SUMRF" 2790509 NIL SUMRF (NIL T) -7 NIL NIL NIL) (-1160 2788537 2788603 2788802 "SUMFS" 2789144 NIL SUMFS (NIL T T) -7 NIL NIL NIL) (-1159 2772544 2787714 2787965 "SULS" 2788344 NIL SULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1158 2772173 2772366 2772436 "SUCHTAST" 2772496 T SUCHTAST (NIL) -8 NIL NIL NIL) (-1157 2771495 2771698 2771838 "SUCH" 2772081 NIL SUCH (NIL T T) -8 NIL NIL NIL) (-1156 2765389 2766401 2767360 "SUBSPACE" 2770583 NIL SUBSPACE (NIL NIL T) -8 NIL NIL NIL) (-1155 2764819 2764909 2765073 "SUBRESP" 2765277 NIL SUBRESP (NIL T T) -7 NIL NIL NIL) (-1154 2758188 2759484 2760795 "STTF" 2763555 NIL STTF (NIL T) -7 NIL NIL NIL) (-1153 2752361 2753481 2754628 "STTFNC" 2757088 NIL STTFNC (NIL T) -7 NIL NIL NIL) (-1152 2743676 2745543 2747337 "STTAYLOR" 2750602 NIL STTAYLOR (NIL T) -7 NIL NIL NIL) (-1151 2736920 2743540 2743623 "STRTBL" 2743628 NIL STRTBL (NIL T) -8 NIL NIL NIL) (-1150 2732311 2736875 2736906 "STRING" 2736911 T STRING (NIL) -8 NIL NIL NIL) (-1149 2727199 2731684 2731714 "STRICAT" 2731773 T STRICAT (NIL) -9 NIL 2731835 NIL) (-1148 2720009 2724818 2725429 "STREAM" 2726623 NIL STREAM (NIL T) -8 NIL NIL NIL) (-1147 2719519 2719596 2719740 "STREAM3" 2719926 NIL STREAM3 (NIL T T T) -7 NIL NIL NIL) (-1146 2718501 2718684 2718919 "STREAM2" 2719332 NIL STREAM2 (NIL T T) -7 NIL NIL NIL) (-1145 2718189 2718241 2718334 "STREAM1" 2718443 NIL STREAM1 (NIL T) -7 NIL NIL NIL) (-1144 2717205 2717386 2717617 "STINPROD" 2718005 NIL STINPROD (NIL T) -7 NIL NIL NIL) (-1143 2716783 2716967 2716997 "STEP" 2717077 T STEP (NIL) -9 NIL 2717155 NIL) (-1142 2710326 2716682 2716759 "STBL" 2716764 NIL STBL (NIL T T NIL) -8 NIL NIL NIL) (-1141 2705500 2709547 2709590 "STAGG" 2709743 NIL STAGG (NIL T) -9 NIL 2709832 NIL) (-1140 2703202 2703804 2704676 "STAGG-" 2704681 NIL STAGG- (NIL T T) -8 NIL NIL NIL) (-1139 2701397 2702972 2703064 "STACK" 2703145 NIL STACK (NIL T) -8 NIL NIL NIL) (-1138 2694122 2699538 2699994 "SREGSET" 2701027 NIL SREGSET (NIL T T T T) -8 NIL NIL NIL) (-1137 2686548 2687916 2689429 "SRDCMPK" 2692728 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1136 2679515 2683988 2684018 "SRAGG" 2685321 T SRAGG (NIL) -9 NIL 2685929 NIL) (-1135 2678532 2678787 2679166 "SRAGG-" 2679171 NIL SRAGG- (NIL T) -8 NIL NIL NIL) (-1134 2673027 2677479 2677900 "SQMATRIX" 2678158 NIL SQMATRIX (NIL NIL T) -8 NIL NIL NIL) (-1133 2666776 2669745 2670472 "SPLTREE" 2672372 NIL SPLTREE (NIL T T) -8 NIL NIL NIL) (-1132 2662766 2663432 2664078 "SPLNODE" 2666202 NIL SPLNODE (NIL T T) -8 NIL NIL NIL) (-1131 2661813 2662046 2662076 "SPFCAT" 2662520 T SPFCAT (NIL) -9 NIL NIL NIL) (-1130 2660550 2660760 2661024 "SPECOUT" 2661571 T SPECOUT (NIL) -7 NIL NIL NIL) (-1129 2652202 2653946 2653976 "SPADXPT" 2658368 T SPADXPT (NIL) -9 NIL 2660402 NIL) (-1128 2651963 2652003 2652072 "SPADPRSR" 2652155 T SPADPRSR (NIL) -7 NIL NIL NIL) (-1127 2650146 2651918 2651949 "SPADAST" 2651954 T SPADAST (NIL) -8 NIL NIL NIL) (-1126 2642117 2643864 2643907 "SPACEC" 2648280 NIL SPACEC (NIL T) -9 NIL 2650096 NIL) (-1125 2640288 2642049 2642098 "SPACE3" 2642103 NIL SPACE3 (NIL T) -8 NIL NIL NIL) (-1124 2639040 2639211 2639502 "SORTPAK" 2640093 NIL SORTPAK (NIL T T) -7 NIL NIL NIL) (-1123 2637090 2637393 2637812 "SOLVETRA" 2638704 NIL SOLVETRA (NIL T) -7 NIL NIL NIL) (-1122 2636101 2636323 2636597 "SOLVESER" 2636863 NIL SOLVESER (NIL T) -7 NIL NIL NIL) (-1121 2631321 2632202 2633204 "SOLVERAD" 2635153 NIL SOLVERAD (NIL T) -7 NIL NIL NIL) (-1120 2627136 2627745 2628474 "SOLVEFOR" 2630688 NIL SOLVEFOR (NIL T T) -7 NIL NIL NIL) (-1119 2621433 2626485 2626582 "SNTSCAT" 2626587 NIL SNTSCAT (NIL T T T T) -9 NIL 2626657 NIL) (-1118 2615576 2619756 2620147 "SMTS" 2621123 NIL SMTS (NIL T T T) -8 NIL NIL NIL) (-1117 2610027 2615464 2615541 "SMP" 2615546 NIL SMP (NIL T T) -8 NIL NIL NIL) (-1116 2608186 2608487 2608885 "SMITH" 2609724 NIL SMITH (NIL T T T T) -7 NIL NIL NIL) (-1115 2601081 2605237 2605340 "SMATCAT" 2606691 NIL SMATCAT (NIL NIL T T T) -9 NIL 2607241 NIL) (-1114 2598021 2598844 2600022 "SMATCAT-" 2600027 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL NIL) (-1113 2595734 2597257 2597300 "SKAGG" 2597561 NIL SKAGG (NIL T) -9 NIL 2597696 NIL) (-1112 2592076 2595150 2595345 "SINT" 2595532 T SINT (NIL) -8 NIL NIL 2595705) (-1111 2591848 2591886 2591952 "SIMPAN" 2592032 T SIMPAN (NIL) -7 NIL NIL NIL) (-1110 2591155 2591383 2591523 "SIG" 2591730 T SIG (NIL) -8 NIL NIL NIL) (-1109 2589993 2590214 2590489 "SIGNRF" 2590914 NIL SIGNRF (NIL T) -7 NIL NIL NIL) (-1108 2588798 2588949 2589240 "SIGNEF" 2589822 NIL SIGNEF (NIL T T) -7 NIL NIL NIL) (-1107 2588131 2588381 2588505 "SIGAST" 2588696 T SIGAST (NIL) -8 NIL NIL NIL) (-1106 2585821 2586275 2586781 "SHP" 2587672 NIL SHP (NIL T NIL) -7 NIL NIL NIL) (-1105 2579727 2585722 2585798 "SHDP" 2585803 NIL SHDP (NIL NIL NIL T) -8 NIL NIL NIL) (-1104 2579326 2579492 2579522 "SGROUP" 2579615 T SGROUP (NIL) -9 NIL 2579677 NIL) (-1103 2579184 2579210 2579283 "SGROUP-" 2579288 NIL SGROUP- (NIL T) -8 NIL NIL NIL) (-1102 2576020 2576717 2577440 "SGCF" 2578483 T SGCF (NIL) -7 NIL NIL NIL) (-1101 2570415 2575467 2575564 "SFRTCAT" 2575569 NIL SFRTCAT (NIL T T T T) -9 NIL 2575608 NIL) (-1100 2563839 2564854 2565990 "SFRGCD" 2569398 NIL SFRGCD (NIL T T T T T) -7 NIL NIL NIL) (-1099 2556967 2558038 2559224 "SFQCMPK" 2562772 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1098 2556589 2556678 2556788 "SFORT" 2556908 NIL SFORT (NIL T T) -8 NIL NIL NIL) (-1097 2555734 2556429 2556550 "SEXOF" 2556555 NIL SEXOF (NIL T T T T T) -8 NIL NIL NIL) (-1096 2554868 2555615 2555683 "SEX" 2555688 T SEX (NIL) -8 NIL NIL NIL) (-1095 2550407 2551096 2551191 "SEXCAT" 2554128 NIL SEXCAT (NIL T T T T T) -9 NIL 2554706 NIL) (-1094 2547587 2550341 2550389 "SET" 2550394 NIL SET (NIL T) -8 NIL NIL NIL) (-1093 2545838 2546300 2546605 "SETMN" 2547328 NIL SETMN (NIL NIL NIL) -8 NIL NIL NIL) (-1092 2545444 2545570 2545600 "SETCAT" 2545717 T SETCAT (NIL) -9 NIL 2545802 NIL) (-1091 2545224 2545276 2545375 "SETCAT-" 2545380 NIL SETCAT- (NIL T) -8 NIL NIL NIL) (-1090 2541611 2543685 2543728 "SETAGG" 2544598 NIL SETAGG (NIL T) -9 NIL 2544938 NIL) (-1089 2541069 2541185 2541422 "SETAGG-" 2541427 NIL SETAGG- (NIL T T) -8 NIL NIL NIL) (-1088 2540539 2540765 2540866 "SEQAST" 2540990 T SEQAST (NIL) -8 NIL NIL NIL) (-1087 2539738 2540032 2540093 "SEGXCAT" 2540379 NIL SEGXCAT (NIL T T) -9 NIL 2540499 NIL) (-1086 2538794 2539404 2539586 "SEG" 2539591 NIL SEG (NIL T) -8 NIL NIL NIL) (-1085 2537773 2537987 2538030 "SEGCAT" 2538552 NIL SEGCAT (NIL T) -9 NIL 2538773 NIL) (-1084 2536822 2537152 2537352 "SEGBIND" 2537608 NIL SEGBIND (NIL T) -8 NIL NIL NIL) (-1083 2536443 2536502 2536615 "SEGBIND2" 2536757 NIL SEGBIND2 (NIL T T) -7 NIL NIL NIL) (-1082 2536044 2536244 2536321 "SEGAST" 2536388 T SEGAST (NIL) -8 NIL NIL NIL) (-1081 2535263 2535389 2535593 "SEG2" 2535888 NIL SEG2 (NIL T T) -7 NIL NIL NIL) (-1080 2534700 2535198 2535245 "SDVAR" 2535250 NIL SDVAR (NIL T) -8 NIL NIL NIL) (-1079 2526990 2534470 2534600 "SDPOL" 2534605 NIL SDPOL (NIL T) -8 NIL NIL NIL) (-1078 2525583 2525849 2526168 "SCPKG" 2526705 NIL SCPKG (NIL T) -7 NIL NIL NIL) (-1077 2524719 2524899 2525099 "SCOPE" 2525405 T SCOPE (NIL) -8 NIL NIL NIL) (-1076 2523940 2524073 2524252 "SCACHE" 2524574 NIL SCACHE (NIL T) -7 NIL NIL NIL) (-1075 2523612 2523772 2523802 "SASTCAT" 2523807 T SASTCAT (NIL) -9 NIL 2523820 NIL) (-1074 2523126 2523447 2523523 "SAOS" 2523558 T SAOS (NIL) -8 NIL NIL NIL) (-1073 2522691 2522726 2522899 "SAERFFC" 2523085 NIL SAERFFC (NIL T T T) -7 NIL NIL NIL) (-1072 2516665 2522588 2522668 "SAE" 2522673 NIL SAE (NIL T T NIL) -8 NIL NIL NIL) (-1071 2516258 2516293 2516452 "SAEFACT" 2516624 NIL SAEFACT (NIL T T T) -7 NIL NIL NIL) (-1070 2514579 2514893 2515294 "RURPK" 2515924 NIL RURPK (NIL T NIL) -7 NIL NIL NIL) (-1069 2513215 2513494 2513806 "RULESET" 2514413 NIL RULESET (NIL T T T) -8 NIL NIL NIL) (-1068 2510402 2510905 2511370 "RULE" 2512896 NIL RULE (NIL T T T) -8 NIL NIL NIL) (-1067 2510041 2510196 2510279 "RULECOLD" 2510354 NIL RULECOLD (NIL NIL) -8 NIL NIL NIL) (-1066 2509539 2509758 2509852 "RSTRCAST" 2509969 T RSTRCAST (NIL) -8 NIL NIL NIL) (-1065 2504388 2505182 2506102 "RSETGCD" 2508738 NIL RSETGCD (NIL T T T T T) -7 NIL NIL NIL) (-1064 2493645 2498697 2498794 "RSETCAT" 2502913 NIL RSETCAT (NIL T T T T) -9 NIL 2504010 NIL) (-1063 2491572 2492111 2492935 "RSETCAT-" 2492940 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1062 2483959 2485334 2486854 "RSDCMPK" 2490171 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1061 2481964 2482405 2482479 "RRCC" 2483565 NIL RRCC (NIL T T) -9 NIL 2483909 NIL) (-1060 2481315 2481489 2481768 "RRCC-" 2481773 NIL RRCC- (NIL T T T) -8 NIL NIL NIL) (-1059 2480785 2481011 2481112 "RPTAST" 2481236 T RPTAST (NIL) -8 NIL NIL NIL) (-1058 2454791 2464378 2464445 "RPOLCAT" 2475109 NIL RPOLCAT (NIL T T T) -9 NIL 2478268 NIL) (-1057 2446291 2448629 2451751 "RPOLCAT-" 2451756 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL NIL) (-1056 2437338 2444502 2444984 "ROUTINE" 2445831 T ROUTINE (NIL) -8 NIL NIL NIL) (-1055 2434171 2436964 2437104 "ROMAN" 2437220 T ROMAN (NIL) -8 NIL NIL NIL) (-1054 2432446 2433031 2433291 "ROIRC" 2433976 NIL ROIRC (NIL T T) -8 NIL NIL NIL) (-1053 2428839 2431082 2431112 "RNS" 2431416 T RNS (NIL) -9 NIL 2431689 NIL) (-1052 2427348 2427731 2428265 "RNS-" 2428340 NIL RNS- (NIL T) -8 NIL NIL NIL) (-1051 2426797 2427179 2427209 "RNG" 2427214 T RNG (NIL) -9 NIL 2427235 NIL) (-1050 2426189 2426551 2426594 "RMODULE" 2426656 NIL RMODULE (NIL T) -9 NIL 2426698 NIL) (-1049 2425025 2425119 2425455 "RMCAT2" 2426090 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL NIL) (-1048 2421902 2424371 2424668 "RMATRIX" 2424787 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL NIL) (-1047 2414844 2417078 2417193 "RMATCAT" 2420552 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2421534 NIL) (-1046 2414219 2414366 2414673 "RMATCAT-" 2414678 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL NIL) (-1045 2413786 2413861 2413989 "RINTERP" 2414138 NIL RINTERP (NIL NIL T) -7 NIL NIL NIL) (-1044 2412919 2413439 2413469 "RING" 2413525 T RING (NIL) -9 NIL 2413611 NIL) (-1043 2412711 2412755 2412852 "RING-" 2412857 NIL RING- (NIL T) -8 NIL NIL NIL) (-1042 2411552 2411789 2412047 "RIDIST" 2412475 T RIDIST (NIL) -7 NIL NIL NIL) (-1041 2402868 2411020 2411226 "RGCHAIN" 2411400 NIL RGCHAIN (NIL T NIL) -8 NIL NIL NIL) (-1040 2402244 2402624 2402665 "RGBCSPC" 2402723 NIL RGBCSPC (NIL T) -9 NIL 2402775 NIL) (-1039 2401428 2401783 2401824 "RGBCMDL" 2402056 NIL RGBCMDL (NIL T) -9 NIL 2402170 NIL) (-1038 2398422 2399036 2399706 "RF" 2400792 NIL RF (NIL T) -7 NIL NIL NIL) (-1037 2398068 2398131 2398234 "RFFACTOR" 2398353 NIL RFFACTOR (NIL T) -7 NIL NIL NIL) (-1036 2397793 2397828 2397925 "RFFACT" 2398027 NIL RFFACT (NIL T) -7 NIL NIL NIL) (-1035 2395910 2396274 2396656 "RFDIST" 2397433 T RFDIST (NIL) -7 NIL NIL NIL) (-1034 2395363 2395455 2395618 "RETSOL" 2395812 NIL RETSOL (NIL T T) -7 NIL NIL NIL) (-1033 2394999 2395079 2395122 "RETRACT" 2395255 NIL RETRACT (NIL T) -9 NIL 2395342 NIL) (-1032 2394848 2394873 2394960 "RETRACT-" 2394965 NIL RETRACT- (NIL T T) -8 NIL NIL NIL) (-1031 2394477 2394670 2394740 "RETAST" 2394800 T RETAST (NIL) -8 NIL NIL NIL) (-1030 2387331 2394130 2394257 "RESULT" 2394372 T RESULT (NIL) -8 NIL NIL NIL) (-1029 2385957 2386600 2386799 "RESRING" 2387234 NIL RESRING (NIL T T T T NIL) -8 NIL NIL NIL) (-1028 2385593 2385642 2385740 "RESLATC" 2385894 NIL RESLATC (NIL T) -7 NIL NIL NIL) (-1027 2385299 2385333 2385440 "REPSQ" 2385552 NIL REPSQ (NIL T) -7 NIL NIL NIL) (-1026 2382721 2383301 2383903 "REP" 2384719 T REP (NIL) -7 NIL NIL NIL) (-1025 2382419 2382453 2382564 "REPDB" 2382680 NIL REPDB (NIL T) -7 NIL NIL NIL) (-1024 2376329 2377708 2378931 "REP2" 2381231 NIL REP2 (NIL T) -7 NIL NIL NIL) (-1023 2372706 2373387 2374195 "REP1" 2375556 NIL REP1 (NIL T) -7 NIL NIL NIL) (-1022 2365432 2370847 2371303 "REGSET" 2372336 NIL REGSET (NIL T T T T) -8 NIL NIL NIL) (-1021 2364245 2364580 2364830 "REF" 2365217 NIL REF (NIL T) -8 NIL NIL NIL) (-1020 2363622 2363725 2363892 "REDORDER" 2364129 NIL REDORDER (NIL T T) -7 NIL NIL NIL) (-1019 2359627 2362835 2363062 "RECLOS" 2363450 NIL RECLOS (NIL T) -8 NIL NIL NIL) (-1018 2358679 2358860 2359075 "REALSOLV" 2359434 T REALSOLV (NIL) -7 NIL NIL NIL) (-1017 2358525 2358566 2358596 "REAL" 2358601 T REAL (NIL) -9 NIL 2358636 NIL) (-1016 2355008 2355810 2356694 "REAL0Q" 2357690 NIL REAL0Q (NIL T) -7 NIL NIL NIL) (-1015 2350609 2351597 2352658 "REAL0" 2353989 NIL REAL0 (NIL T) -7 NIL NIL NIL) (-1014 2350107 2350326 2350420 "RDUCEAST" 2350537 T RDUCEAST (NIL) -8 NIL NIL NIL) (-1013 2349512 2349584 2349791 "RDIV" 2350029 NIL RDIV (NIL T T T T T) -7 NIL NIL NIL) (-1012 2348580 2348754 2348967 "RDIST" 2349334 NIL RDIST (NIL T) -7 NIL NIL NIL) (-1011 2347177 2347464 2347836 "RDETRS" 2348288 NIL RDETRS (NIL T T) -7 NIL NIL NIL) (-1010 2344989 2345443 2345981 "RDETR" 2346719 NIL RDETR (NIL T T) -7 NIL NIL NIL) (-1009 2343600 2343878 2344282 "RDEEFS" 2344705 NIL RDEEFS (NIL T T) -7 NIL NIL NIL) (-1008 2342095 2342401 2342833 "RDEEF" 2343288 NIL RDEEF (NIL T T) -7 NIL NIL NIL) (-1007 2336356 2339231 2339261 "RCFIELD" 2340556 T RCFIELD (NIL) -9 NIL 2341286 NIL) (-1006 2334420 2334924 2335620 "RCFIELD-" 2335695 NIL RCFIELD- (NIL T) -8 NIL NIL NIL) (-1005 2330736 2332521 2332564 "RCAGG" 2333648 NIL RCAGG (NIL T) -9 NIL 2334113 NIL) (-1004 2330364 2330458 2330621 "RCAGG-" 2330626 NIL RCAGG- (NIL T T) -8 NIL NIL NIL) (-1003 2329699 2329811 2329976 "RATRET" 2330248 NIL RATRET (NIL T) -7 NIL NIL NIL) (-1002 2329252 2329319 2329440 "RATFACT" 2329627 NIL RATFACT (NIL T) -7 NIL NIL NIL) (-1001 2328560 2328680 2328832 "RANDSRC" 2329122 T RANDSRC (NIL) -7 NIL NIL NIL) (-1000 2328294 2328338 2328411 "RADUTIL" 2328509 T RADUTIL (NIL) -7 NIL NIL NIL) (-999 2321456 2327136 2327444 "RADIX" 2328018 NIL RADIX (NIL NIL) -8 NIL NIL NIL) (-998 2313113 2321300 2321428 "RADFF" 2321433 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL NIL) (-997 2312765 2312840 2312868 "RADCAT" 2313025 T RADCAT (NIL) -9 NIL NIL NIL) (-996 2312550 2312598 2312695 "RADCAT-" 2312700 NIL RADCAT- (NIL T) -8 NIL NIL NIL) (-995 2310701 2312325 2312414 "QUEUE" 2312494 NIL QUEUE (NIL T) -8 NIL NIL NIL) (-994 2307277 2310638 2310683 "QUAT" 2310688 NIL QUAT (NIL T) -8 NIL NIL NIL) (-993 2306915 2306958 2307085 "QUATCT2" 2307228 NIL QUATCT2 (NIL T T T T) -7 NIL NIL NIL) (-992 2300662 2303964 2304004 "QUATCAT" 2304784 NIL QUATCAT (NIL T) -9 NIL 2305550 NIL) (-991 2296806 2297843 2299230 "QUATCAT-" 2299324 NIL QUATCAT- (NIL T T) -8 NIL NIL NIL) (-990 2294326 2295890 2295931 "QUAGG" 2296306 NIL QUAGG (NIL T) -9 NIL 2296481 NIL) (-989 2293958 2294151 2294219 "QQUTAST" 2294278 T QQUTAST (NIL) -8 NIL NIL NIL) (-988 2292883 2293356 2293528 "QFORM" 2293830 NIL QFORM (NIL NIL T) -8 NIL NIL NIL) (-987 2284095 2289300 2289340 "QFCAT" 2289998 NIL QFCAT (NIL T) -9 NIL 2290999 NIL) (-986 2279667 2280868 2282459 "QFCAT-" 2282553 NIL QFCAT- (NIL T T) -8 NIL NIL NIL) (-985 2279305 2279348 2279475 "QFCAT2" 2279618 NIL QFCAT2 (NIL T T T T) -7 NIL NIL NIL) (-984 2278765 2278875 2279005 "QEQUAT" 2279195 T QEQUAT (NIL) -8 NIL NIL NIL) (-983 2271913 2272984 2274168 "QCMPACK" 2277698 NIL QCMPACK (NIL T T T T T) -7 NIL NIL NIL) (-982 2269489 2269910 2270338 "QALGSET" 2271568 NIL QALGSET (NIL T T T T) -8 NIL NIL NIL) (-981 2268734 2268908 2269140 "QALGSET2" 2269309 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL NIL) (-980 2267425 2267648 2267965 "PWFFINTB" 2268507 NIL PWFFINTB (NIL T T T T) -7 NIL NIL NIL) (-979 2265607 2265775 2266129 "PUSHVAR" 2267239 NIL PUSHVAR (NIL T T T T) -7 NIL NIL NIL) (-978 2261525 2262579 2262620 "PTRANFN" 2264504 NIL PTRANFN (NIL T) -9 NIL NIL NIL) (-977 2259927 2260218 2260540 "PTPACK" 2261236 NIL PTPACK (NIL T) -7 NIL NIL NIL) (-976 2259559 2259616 2259725 "PTFUNC2" 2259864 NIL PTFUNC2 (NIL T T) -7 NIL NIL NIL) (-975 2254086 2258431 2258472 "PTCAT" 2258768 NIL PTCAT (NIL T) -9 NIL 2258921 NIL) (-974 2253744 2253779 2253903 "PSQFR" 2254045 NIL PSQFR (NIL T T T T) -7 NIL NIL NIL) (-973 2252339 2252637 2252971 "PSEUDLIN" 2253442 NIL PSEUDLIN (NIL T) -7 NIL NIL NIL) (-972 2239109 2241473 2243797 "PSETPK" 2250099 NIL PSETPK (NIL T T T T) -7 NIL NIL NIL) (-971 2232153 2234867 2234963 "PSETCAT" 2237984 NIL PSETCAT (NIL T T T T) -9 NIL 2238798 NIL) (-970 2229989 2230623 2231444 "PSETCAT-" 2231449 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-969 2229338 2229503 2229531 "PSCURVE" 2229799 T PSCURVE (NIL) -9 NIL 2229966 NIL) (-968 2225694 2227176 2227241 "PSCAT" 2228085 NIL PSCAT (NIL T T T) -9 NIL 2228325 NIL) (-967 2224757 2224973 2225373 "PSCAT-" 2225378 NIL PSCAT- (NIL T T T T) -8 NIL NIL NIL) (-966 2223489 2224122 2224327 "PRTITION" 2224572 T PRTITION (NIL) -8 NIL NIL NIL) (-965 2222991 2223210 2223302 "PRTDAST" 2223417 T PRTDAST (NIL) -8 NIL NIL NIL) (-964 2212089 2214295 2216483 "PRS" 2220853 NIL PRS (NIL T T) -7 NIL NIL NIL) (-963 2209947 2211439 2211479 "PRQAGG" 2211662 NIL PRQAGG (NIL T) -9 NIL 2211764 NIL) (-962 2209333 2209562 2209590 "PROPLOG" 2209775 T PROPLOG (NIL) -9 NIL 2209897 NIL) (-961 2206503 2207147 2207611 "PROPFRML" 2208901 NIL PROPFRML (NIL T) -8 NIL NIL NIL) (-960 2205963 2206073 2206203 "PROPERTY" 2206393 T PROPERTY (NIL) -8 NIL NIL NIL) (-959 2200048 2204129 2204949 "PRODUCT" 2205189 NIL PRODUCT (NIL T T) -8 NIL NIL NIL) (-958 2197361 2199506 2199740 "PR" 2199859 NIL PR (NIL T T) -8 NIL NIL NIL) (-957 2197157 2197189 2197248 "PRINT" 2197322 T PRINT (NIL) -7 NIL NIL NIL) (-956 2196497 2196614 2196766 "PRIMES" 2197037 NIL PRIMES (NIL T) -7 NIL NIL NIL) (-955 2194562 2194963 2195429 "PRIMELT" 2196076 NIL PRIMELT (NIL T) -7 NIL NIL NIL) (-954 2194291 2194340 2194368 "PRIMCAT" 2194492 T PRIMCAT (NIL) -9 NIL NIL NIL) (-953 2190452 2194229 2194274 "PRIMARR" 2194279 NIL PRIMARR (NIL T) -8 NIL NIL NIL) (-952 2189459 2189637 2189865 "PRIMARR2" 2190270 NIL PRIMARR2 (NIL T T) -7 NIL NIL NIL) (-951 2189102 2189158 2189269 "PREASSOC" 2189397 NIL PREASSOC (NIL T T) -7 NIL NIL NIL) (-950 2188577 2188710 2188738 "PPCURVE" 2188943 T PPCURVE (NIL) -9 NIL 2189079 NIL) (-949 2188199 2188372 2188455 "PORTNUM" 2188514 T PORTNUM (NIL) -8 NIL NIL NIL) (-948 2185558 2185957 2186549 "POLYROOT" 2187780 NIL POLYROOT (NIL T T T T T) -7 NIL NIL NIL) (-947 2179503 2185162 2185322 "POLY" 2185431 NIL POLY (NIL T) -8 NIL NIL NIL) (-946 2178886 2178944 2179178 "POLYLIFT" 2179439 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL NIL) (-945 2175161 2175610 2176239 "POLYCATQ" 2178431 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL NIL) (-944 2161978 2167336 2167401 "POLYCAT" 2170915 NIL POLYCAT (NIL T T T) -9 NIL 2172843 NIL) (-943 2155428 2157289 2159673 "POLYCAT-" 2159678 NIL POLYCAT- (NIL T T T T) -8 NIL NIL NIL) (-942 2155015 2155083 2155203 "POLY2UP" 2155354 NIL POLY2UP (NIL NIL T) -7 NIL NIL NIL) (-941 2154647 2154704 2154813 "POLY2" 2154952 NIL POLY2 (NIL T T) -7 NIL NIL NIL) (-940 2153332 2153571 2153847 "POLUTIL" 2154421 NIL POLUTIL (NIL T T) -7 NIL NIL NIL) (-939 2151687 2151964 2152295 "POLTOPOL" 2153054 NIL POLTOPOL (NIL NIL T) -7 NIL NIL NIL) (-938 2147205 2151623 2151669 "POINT" 2151674 NIL POINT (NIL T) -8 NIL NIL NIL) (-937 2145392 2145749 2146124 "PNTHEORY" 2146850 T PNTHEORY (NIL) -7 NIL NIL NIL) (-936 2143811 2144108 2144520 "PMTOOLS" 2145090 NIL PMTOOLS (NIL T T T) -7 NIL NIL NIL) (-935 2143404 2143482 2143599 "PMSYM" 2143727 NIL PMSYM (NIL T) -7 NIL NIL NIL) (-934 2142914 2142983 2143157 "PMQFCAT" 2143329 NIL PMQFCAT (NIL T T T) -7 NIL NIL NIL) (-933 2142269 2142379 2142535 "PMPRED" 2142791 NIL PMPRED (NIL T) -7 NIL NIL NIL) (-932 2141665 2141751 2141912 "PMPREDFS" 2142170 NIL PMPREDFS (NIL T T T) -7 NIL NIL NIL) (-931 2140308 2140516 2140901 "PMPLCAT" 2141427 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL NIL) (-930 2139840 2139919 2140071 "PMLSAGG" 2140223 NIL PMLSAGG (NIL T T T) -7 NIL NIL NIL) (-929 2139315 2139391 2139572 "PMKERNEL" 2139758 NIL PMKERNEL (NIL T T) -7 NIL NIL NIL) (-928 2138932 2139007 2139120 "PMINS" 2139234 NIL PMINS (NIL T) -7 NIL NIL NIL) (-927 2138360 2138429 2138645 "PMFS" 2138857 NIL PMFS (NIL T T T) -7 NIL NIL NIL) (-926 2137588 2137706 2137911 "PMDOWN" 2138237 NIL PMDOWN (NIL T T T) -7 NIL NIL NIL) (-925 2136751 2136910 2137092 "PMASS" 2137426 T PMASS (NIL) -7 NIL NIL NIL) (-924 2136025 2136136 2136299 "PMASSFS" 2136637 NIL PMASSFS (NIL T T) -7 NIL NIL NIL) (-923 2135680 2135748 2135842 "PLOTTOOL" 2135951 T PLOTTOOL (NIL) -7 NIL NIL NIL) (-922 2130302 2131491 2132639 "PLOT" 2134552 T PLOT (NIL) -8 NIL NIL NIL) (-921 2126116 2127150 2128071 "PLOT3D" 2129401 T PLOT3D (NIL) -8 NIL NIL NIL) (-920 2125028 2125205 2125440 "PLOT1" 2125920 NIL PLOT1 (NIL T) -7 NIL NIL NIL) (-919 2100422 2105094 2109945 "PLEQN" 2120294 NIL PLEQN (NIL T T T T) -7 NIL NIL NIL) (-918 2099740 2099862 2100042 "PINTERP" 2100287 NIL PINTERP (NIL NIL T) -7 NIL NIL NIL) (-917 2099433 2099480 2099583 "PINTERPA" 2099687 NIL PINTERPA (NIL T T) -7 NIL NIL NIL) (-916 2098681 2099202 2099289 "PI" 2099329 T PI (NIL) -8 NIL NIL 2099396) (-915 2097078 2098019 2098047 "PID" 2098229 T PID (NIL) -9 NIL 2098363 NIL) (-914 2096803 2096840 2096928 "PICOERCE" 2097035 NIL PICOERCE (NIL T) -7 NIL NIL NIL) (-913 2096123 2096262 2096438 "PGROEB" 2096659 NIL PGROEB (NIL T) -7 NIL NIL NIL) (-912 2091710 2092524 2093429 "PGE" 2095238 T PGE (NIL) -7 NIL NIL NIL) (-911 2089834 2090080 2090446 "PGCD" 2091427 NIL PGCD (NIL T T T T) -7 NIL NIL NIL) (-910 2089172 2089275 2089436 "PFRPAC" 2089718 NIL PFRPAC (NIL T) -7 NIL NIL NIL) (-909 2085852 2087720 2088073 "PFR" 2088851 NIL PFR (NIL T) -8 NIL NIL NIL) (-908 2084241 2084485 2084810 "PFOTOOLS" 2085599 NIL PFOTOOLS (NIL T T) -7 NIL NIL NIL) (-907 2082774 2083013 2083364 "PFOQ" 2083998 NIL PFOQ (NIL T T T) -7 NIL NIL NIL) (-906 2081247 2081459 2081822 "PFO" 2082558 NIL PFO (NIL T T T T T) -7 NIL NIL NIL) (-905 2077835 2081136 2081205 "PF" 2081210 NIL PF (NIL NIL) -8 NIL NIL NIL) (-904 2075269 2076506 2076534 "PFECAT" 2077119 T PFECAT (NIL) -9 NIL 2077503 NIL) (-903 2074714 2074868 2075082 "PFECAT-" 2075087 NIL PFECAT- (NIL T) -8 NIL NIL NIL) (-902 2073318 2073569 2073870 "PFBRU" 2074463 NIL PFBRU (NIL T T) -7 NIL NIL NIL) (-901 2071185 2071536 2071968 "PFBR" 2072969 NIL PFBR (NIL T T T T) -7 NIL NIL NIL) (-900 2067101 2068561 2069237 "PERM" 2070542 NIL PERM (NIL T) -8 NIL NIL NIL) (-899 2062367 2063308 2064178 "PERMGRP" 2066264 NIL PERMGRP (NIL T) -8 NIL NIL NIL) (-898 2060499 2061430 2061471 "PERMCAT" 2061917 NIL PERMCAT (NIL T) -9 NIL 2062222 NIL) (-897 2060152 2060193 2060317 "PERMAN" 2060452 NIL PERMAN (NIL NIL T) -7 NIL NIL NIL) (-896 2057688 2059817 2059939 "PENDTREE" 2060063 NIL PENDTREE (NIL T) -8 NIL NIL NIL) (-895 2055781 2056515 2056556 "PDRING" 2057213 NIL PDRING (NIL T) -9 NIL 2057499 NIL) (-894 2054884 2055102 2055464 "PDRING-" 2055469 NIL PDRING- (NIL T T) -8 NIL NIL NIL) (-893 2052126 2052877 2053545 "PDEPROB" 2054236 T PDEPROB (NIL) -8 NIL NIL NIL) (-892 2049673 2050175 2050730 "PDEPACK" 2051591 T PDEPACK (NIL) -7 NIL NIL NIL) (-891 2048585 2048775 2049026 "PDECOMP" 2049472 NIL PDECOMP (NIL T T) -7 NIL NIL NIL) (-890 2046190 2047007 2047035 "PDECAT" 2047822 T PDECAT (NIL) -9 NIL 2048535 NIL) (-889 2045941 2045974 2046064 "PCOMP" 2046151 NIL PCOMP (NIL T T) -7 NIL NIL NIL) (-888 2044146 2044742 2045039 "PBWLB" 2045670 NIL PBWLB (NIL T) -8 NIL NIL NIL) (-887 2036651 2038219 2039557 "PATTERN" 2042829 NIL PATTERN (NIL T) -8 NIL NIL NIL) (-886 2036283 2036340 2036449 "PATTERN2" 2036588 NIL PATTERN2 (NIL T T) -7 NIL NIL NIL) (-885 2034040 2034428 2034885 "PATTERN1" 2035872 NIL PATTERN1 (NIL T T) -7 NIL NIL NIL) (-884 2031435 2031989 2032470 "PATRES" 2033605 NIL PATRES (NIL T T) -8 NIL NIL NIL) (-883 2030999 2031066 2031198 "PATRES2" 2031362 NIL PATRES2 (NIL T T T) -7 NIL NIL NIL) (-882 2028882 2029287 2029694 "PATMATCH" 2030666 NIL PATMATCH (NIL T T T) -7 NIL NIL NIL) (-881 2028418 2028601 2028642 "PATMAB" 2028749 NIL PATMAB (NIL T) -9 NIL 2028832 NIL) (-880 2026963 2027272 2027530 "PATLRES" 2028223 NIL PATLRES (NIL T T T) -8 NIL NIL NIL) (-879 2026509 2026632 2026673 "PATAB" 2026678 NIL PATAB (NIL T) -9 NIL 2026850 NIL) (-878 2023990 2024522 2025095 "PARTPERM" 2025956 T PARTPERM (NIL) -7 NIL NIL NIL) (-877 2023611 2023674 2023776 "PARSURF" 2023921 NIL PARSURF (NIL T) -8 NIL NIL NIL) (-876 2023243 2023300 2023409 "PARSU2" 2023548 NIL PARSU2 (NIL T T) -7 NIL NIL NIL) (-875 2023007 2023047 2023114 "PARSER" 2023196 T PARSER (NIL) -7 NIL NIL NIL) (-874 2022628 2022691 2022793 "PARSCURV" 2022938 NIL PARSCURV (NIL T) -8 NIL NIL NIL) (-873 2022260 2022317 2022426 "PARSC2" 2022565 NIL PARSC2 (NIL T T) -7 NIL NIL NIL) (-872 2021899 2021957 2022054 "PARPCURV" 2022196 NIL PARPCURV (NIL T) -8 NIL NIL NIL) (-871 2021531 2021588 2021697 "PARPC2" 2021836 NIL PARPC2 (NIL T T) -7 NIL NIL NIL) (-870 2021051 2021137 2021256 "PAN2EXPR" 2021432 T PAN2EXPR (NIL) -7 NIL NIL NIL) (-869 2019857 2020172 2020400 "PALETTE" 2020843 T PALETTE (NIL) -8 NIL NIL NIL) (-868 2018325 2018862 2019222 "PAIR" 2019543 NIL PAIR (NIL T T) -8 NIL NIL NIL) (-867 2012231 2017584 2017778 "PADICRC" 2018180 NIL PADICRC (NIL NIL T) -8 NIL NIL NIL) (-866 2005495 2011577 2011761 "PADICRAT" 2012079 NIL PADICRAT (NIL NIL) -8 NIL NIL NIL) (-865 2003845 2005432 2005477 "PADIC" 2005482 NIL PADIC (NIL NIL) -8 NIL NIL NIL) (-864 2001055 2002585 2002625 "PADICCT" 2003206 NIL PADICCT (NIL NIL) -9 NIL 2003488 NIL) (-863 2000012 2000212 2000480 "PADEPAC" 2000842 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL NIL) (-862 1999224 1999357 1999563 "PADE" 1999874 NIL PADE (NIL T T T) -7 NIL NIL NIL) (-861 1997646 1998432 1998712 "OWP" 1999028 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-860 1997166 1997352 1997449 "OVERSET" 1997569 T OVERSET (NIL) -8 NIL NIL NIL) (-859 1996239 1996771 1996943 "OVAR" 1997034 NIL OVAR (NIL NIL) -8 NIL NIL NIL) (-858 1995503 1995624 1995785 "OUT" 1996098 T OUT (NIL) -7 NIL NIL NIL) (-857 1984410 1986612 1988812 "OUTFORM" 1993323 T OUTFORM (NIL) -8 NIL NIL NIL) (-856 1983746 1984007 1984134 "OUTBFILE" 1984303 T OUTBFILE (NIL) -8 NIL NIL NIL) (-855 1983053 1983218 1983246 "OUTBCON" 1983564 T OUTBCON (NIL) -9 NIL 1983730 NIL) (-854 1982654 1982766 1982923 "OUTBCON-" 1982928 NIL OUTBCON- (NIL T) -8 NIL NIL NIL) (-853 1982062 1982383 1982472 "OSI" 1982585 T OSI (NIL) -8 NIL NIL NIL) (-852 1981618 1981930 1981958 "OSGROUP" 1981963 T OSGROUP (NIL) -9 NIL 1981985 NIL) (-851 1980363 1980590 1980875 "ORTHPOL" 1981365 NIL ORTHPOL (NIL T) -7 NIL NIL NIL) (-850 1977949 1980198 1980319 "OREUP" 1980324 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL NIL) (-849 1975387 1977640 1977767 "ORESUP" 1977891 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL NIL) (-848 1972915 1973415 1973976 "OREPCTO" 1974876 NIL OREPCTO (NIL T T) -7 NIL NIL NIL) (-847 1966739 1968906 1968947 "OREPCAT" 1971295 NIL OREPCAT (NIL T) -9 NIL 1972399 NIL) (-846 1963886 1964668 1965726 "OREPCAT-" 1965731 NIL OREPCAT- (NIL T T) -8 NIL NIL NIL) (-845 1963063 1963335 1963363 "ORDSET" 1963672 T ORDSET (NIL) -9 NIL 1963836 NIL) (-844 1962582 1962704 1962897 "ORDSET-" 1962902 NIL ORDSET- (NIL T) -8 NIL NIL NIL) (-843 1961216 1961973 1962001 "ORDRING" 1962203 T ORDRING (NIL) -9 NIL 1962328 NIL) (-842 1960861 1960955 1961099 "ORDRING-" 1961104 NIL ORDRING- (NIL T) -8 NIL NIL NIL) (-841 1960267 1960704 1960732 "ORDMON" 1960737 T ORDMON (NIL) -9 NIL 1960758 NIL) (-840 1959429 1959576 1959771 "ORDFUNS" 1960116 NIL ORDFUNS (NIL NIL T) -7 NIL NIL NIL) (-839 1958793 1959186 1959214 "ORDFIN" 1959279 T ORDFIN (NIL) -9 NIL 1959353 NIL) (-838 1955385 1957379 1957788 "ORDCOMP" 1958417 NIL ORDCOMP (NIL T) -8 NIL NIL NIL) (-837 1954651 1954778 1954964 "ORDCOMP2" 1955245 NIL ORDCOMP2 (NIL T T) -7 NIL NIL NIL) (-836 1951259 1952142 1952956 "OPTPROB" 1953857 T OPTPROB (NIL) -8 NIL NIL NIL) (-835 1948061 1948700 1949404 "OPTPACK" 1950575 T OPTPACK (NIL) -7 NIL NIL NIL) (-834 1945774 1946514 1946542 "OPTCAT" 1947361 T OPTCAT (NIL) -9 NIL 1948011 NIL) (-833 1945217 1945451 1945556 "OPSIG" 1945689 T OPSIG (NIL) -8 NIL NIL NIL) (-832 1944985 1945024 1945090 "OPQUERY" 1945171 T OPQUERY (NIL) -7 NIL NIL NIL) (-831 1942151 1943296 1943800 "OP" 1944514 NIL OP (NIL T) -8 NIL NIL NIL) (-830 1941686 1941857 1941898 "OPERCAT" 1942033 NIL OPERCAT (NIL T) -9 NIL 1942101 NIL) (-829 1941532 1941559 1941645 "OPERCAT-" 1941650 NIL OPERCAT- (NIL T T) -8 NIL NIL NIL) (-828 1938377 1940329 1940698 "ONECOMP" 1941196 NIL ONECOMP (NIL T) -8 NIL NIL NIL) (-827 1937682 1937797 1937971 "ONECOMP2" 1938249 NIL ONECOMP2 (NIL T T) -7 NIL NIL NIL) (-826 1937101 1937207 1937337 "OMSERVER" 1937572 T OMSERVER (NIL) -7 NIL NIL NIL) (-825 1933989 1936541 1936581 "OMSAGG" 1936642 NIL OMSAGG (NIL T) -9 NIL 1936706 NIL) (-824 1932612 1932875 1933157 "OMPKG" 1933727 T OMPKG (NIL) -7 NIL NIL NIL) (-823 1932042 1932145 1932173 "OM" 1932472 T OM (NIL) -9 NIL NIL NIL) (-822 1930624 1931591 1931760 "OMLO" 1931923 NIL OMLO (NIL T T) -8 NIL NIL NIL) (-821 1929549 1929696 1929923 "OMEXPR" 1930450 NIL OMEXPR (NIL T) -7 NIL NIL NIL) (-820 1928867 1929095 1929231 "OMERR" 1929433 T OMERR (NIL) -8 NIL NIL NIL) (-819 1928045 1928288 1928448 "OMERRK" 1928727 T OMERRK (NIL) -8 NIL NIL NIL) (-818 1927523 1927722 1927830 "OMENC" 1927957 T OMENC (NIL) -8 NIL NIL NIL) (-817 1921418 1922603 1923774 "OMDEV" 1926372 T OMDEV (NIL) -8 NIL NIL NIL) (-816 1920487 1920658 1920852 "OMCONN" 1921244 T OMCONN (NIL) -8 NIL NIL NIL) (-815 1919108 1920050 1920078 "OINTDOM" 1920083 T OINTDOM (NIL) -9 NIL 1920104 NIL) (-814 1914914 1916098 1916814 "OFMONOID" 1918424 NIL OFMONOID (NIL T) -8 NIL NIL NIL) (-813 1914352 1914851 1914896 "ODVAR" 1914901 NIL ODVAR (NIL T) -8 NIL NIL NIL) (-812 1911810 1914097 1914252 "ODR" 1914257 NIL ODR (NIL T T NIL) -8 NIL NIL NIL) (-811 1904154 1911586 1911712 "ODPOL" 1911717 NIL ODPOL (NIL T) -8 NIL NIL NIL) (-810 1898030 1904026 1904131 "ODP" 1904136 NIL ODP (NIL NIL T NIL) -8 NIL NIL NIL) (-809 1896796 1897011 1897286 "ODETOOLS" 1897804 NIL ODETOOLS (NIL T T) -7 NIL NIL NIL) (-808 1893765 1894421 1895137 "ODESYS" 1896129 NIL ODESYS (NIL T T) -7 NIL NIL NIL) (-807 1888647 1889555 1890580 "ODERTRIC" 1892840 NIL ODERTRIC (NIL T T) -7 NIL NIL NIL) (-806 1888073 1888155 1888349 "ODERED" 1888559 NIL ODERED (NIL T T T T T) -7 NIL NIL NIL) (-805 1884961 1885509 1886186 "ODERAT" 1887496 NIL ODERAT (NIL T T) -7 NIL NIL NIL) (-804 1881921 1882385 1882982 "ODEPRRIC" 1884490 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL NIL) (-803 1879891 1880460 1880946 "ODEPROB" 1881455 T ODEPROB (NIL) -8 NIL NIL NIL) (-802 1876413 1876896 1877543 "ODEPRIM" 1879370 NIL ODEPRIM (NIL T T T T) -7 NIL NIL NIL) (-801 1875662 1875764 1876024 "ODEPAL" 1876305 NIL ODEPAL (NIL T T T T) -7 NIL NIL NIL) (-800 1871824 1872615 1873479 "ODEPACK" 1874818 T ODEPACK (NIL) -7 NIL NIL NIL) (-799 1870857 1870964 1871193 "ODEINT" 1871713 NIL ODEINT (NIL T T) -7 NIL NIL NIL) (-798 1864958 1866383 1867830 "ODEIFTBL" 1869430 T ODEIFTBL (NIL) -8 NIL NIL NIL) (-797 1860293 1861079 1862038 "ODEEF" 1864117 NIL ODEEF (NIL T T) -7 NIL NIL NIL) (-796 1859628 1859717 1859947 "ODECONST" 1860198 NIL ODECONST (NIL T T T) -7 NIL NIL NIL) (-795 1857779 1858414 1858442 "ODECAT" 1859047 T ODECAT (NIL) -9 NIL 1859578 NIL) (-794 1854686 1857491 1857610 "OCT" 1857692 NIL OCT (NIL T) -8 NIL NIL NIL) (-793 1854324 1854367 1854494 "OCTCT2" 1854637 NIL OCTCT2 (NIL T T T T) -7 NIL NIL NIL) (-792 1849098 1851498 1851538 "OC" 1852635 NIL OC (NIL T) -9 NIL 1853493 NIL) (-791 1846325 1847073 1848063 "OC-" 1848157 NIL OC- (NIL T T) -8 NIL NIL NIL) (-790 1845703 1846145 1846173 "OCAMON" 1846178 T OCAMON (NIL) -9 NIL 1846199 NIL) (-789 1845260 1845575 1845603 "OASGP" 1845608 T OASGP (NIL) -9 NIL 1845628 NIL) (-788 1844547 1845010 1845038 "OAMONS" 1845078 T OAMONS (NIL) -9 NIL 1845121 NIL) (-787 1843987 1844394 1844422 "OAMON" 1844427 T OAMON (NIL) -9 NIL 1844447 NIL) (-786 1843291 1843783 1843811 "OAGROUP" 1843816 T OAGROUP (NIL) -9 NIL 1843836 NIL) (-785 1842981 1843031 1843119 "NUMTUBE" 1843235 NIL NUMTUBE (NIL T) -7 NIL NIL NIL) (-784 1836554 1838072 1839608 "NUMQUAD" 1841465 T NUMQUAD (NIL) -7 NIL NIL NIL) (-783 1832310 1833298 1834323 "NUMODE" 1835549 T NUMODE (NIL) -7 NIL NIL NIL) (-782 1829691 1830545 1830573 "NUMINT" 1831496 T NUMINT (NIL) -9 NIL 1832260 NIL) (-781 1828639 1828836 1829054 "NUMFMT" 1829493 T NUMFMT (NIL) -7 NIL NIL NIL) (-780 1814998 1817943 1820475 "NUMERIC" 1826146 NIL NUMERIC (NIL T) -7 NIL NIL NIL) (-779 1809395 1814447 1814542 "NTSCAT" 1814547 NIL NTSCAT (NIL T T T T) -9 NIL 1814586 NIL) (-778 1808589 1808754 1808947 "NTPOLFN" 1809234 NIL NTPOLFN (NIL T) -7 NIL NIL NIL) (-777 1796429 1805414 1806226 "NSUP" 1807810 NIL NSUP (NIL T) -8 NIL NIL NIL) (-776 1796061 1796118 1796227 "NSUP2" 1796366 NIL NSUP2 (NIL T T) -7 NIL NIL NIL) (-775 1786058 1795835 1795968 "NSMP" 1795973 NIL NSMP (NIL T T) -8 NIL NIL NIL) (-774 1784490 1784791 1785148 "NREP" 1785746 NIL NREP (NIL T) -7 NIL NIL NIL) (-773 1783081 1783333 1783691 "NPCOEF" 1784233 NIL NPCOEF (NIL T T T T T) -7 NIL NIL NIL) (-772 1782147 1782262 1782478 "NORMRETR" 1782962 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL NIL) (-771 1780188 1780478 1780887 "NORMPK" 1781855 NIL NORMPK (NIL T T T T T) -7 NIL NIL NIL) (-770 1779873 1779901 1780025 "NORMMA" 1780154 NIL NORMMA (NIL T T T T) -7 NIL NIL NIL) (-769 1779700 1779830 1779859 "NONE" 1779864 T NONE (NIL) -8 NIL NIL NIL) (-768 1779489 1779518 1779587 "NONE1" 1779664 NIL NONE1 (NIL T) -7 NIL NIL NIL) (-767 1778972 1779034 1779220 "NODE1" 1779421 NIL NODE1 (NIL T T) -7 NIL NIL NIL) (-766 1777243 1778066 1778321 "NNI" 1778668 T NNI (NIL) -8 NIL NIL 1778903) (-765 1775663 1775976 1776340 "NLINSOL" 1776911 NIL NLINSOL (NIL T) -7 NIL NIL NIL) (-764 1771931 1772899 1773798 "NIPROB" 1774784 T NIPROB (NIL) -8 NIL NIL NIL) (-763 1770688 1770922 1771224 "NFINTBAS" 1771693 NIL NFINTBAS (NIL T T) -7 NIL NIL NIL) (-762 1769862 1770338 1770379 "NETCLT" 1770551 NIL NETCLT (NIL T) -9 NIL 1770633 NIL) (-761 1768570 1768801 1769082 "NCODIV" 1769630 NIL NCODIV (NIL T T) -7 NIL NIL NIL) (-760 1768332 1768369 1768444 "NCNTFRAC" 1768527 NIL NCNTFRAC (NIL T) -7 NIL NIL NIL) (-759 1766512 1766876 1767296 "NCEP" 1767957 NIL NCEP (NIL T) -7 NIL NIL NIL) (-758 1765423 1766162 1766190 "NASRING" 1766300 T NASRING (NIL) -9 NIL 1766374 NIL) (-757 1765218 1765262 1765356 "NASRING-" 1765361 NIL NASRING- (NIL T) -8 NIL NIL NIL) (-756 1764371 1764870 1764898 "NARNG" 1765015 T NARNG (NIL) -9 NIL 1765106 NIL) (-755 1764063 1764130 1764264 "NARNG-" 1764269 NIL NARNG- (NIL T) -8 NIL NIL NIL) (-754 1762942 1763149 1763384 "NAGSP" 1763848 T NAGSP (NIL) -7 NIL NIL NIL) (-753 1754214 1755898 1757571 "NAGS" 1761289 T NAGS (NIL) -7 NIL NIL NIL) (-752 1752762 1753070 1753401 "NAGF07" 1753903 T NAGF07 (NIL) -7 NIL NIL NIL) (-751 1747300 1748591 1749898 "NAGF04" 1751475 T NAGF04 (NIL) -7 NIL NIL NIL) (-750 1740268 1741882 1743515 "NAGF02" 1745687 T NAGF02 (NIL) -7 NIL NIL NIL) (-749 1735492 1736592 1737709 "NAGF01" 1739171 T NAGF01 (NIL) -7 NIL NIL NIL) (-748 1729120 1730686 1732271 "NAGE04" 1733927 T NAGE04 (NIL) -7 NIL NIL NIL) (-747 1720289 1722410 1724540 "NAGE02" 1727010 T NAGE02 (NIL) -7 NIL NIL NIL) (-746 1716242 1717189 1718153 "NAGE01" 1719345 T NAGE01 (NIL) -7 NIL NIL NIL) (-745 1714037 1714571 1715129 "NAGD03" 1715704 T NAGD03 (NIL) -7 NIL NIL NIL) (-744 1705787 1707715 1709669 "NAGD02" 1712103 T NAGD02 (NIL) -7 NIL NIL NIL) (-743 1699598 1701023 1702463 "NAGD01" 1704367 T NAGD01 (NIL) -7 NIL NIL NIL) (-742 1695807 1696629 1697466 "NAGC06" 1698781 T NAGC06 (NIL) -7 NIL NIL NIL) (-741 1694272 1694604 1694960 "NAGC05" 1695471 T NAGC05 (NIL) -7 NIL NIL NIL) (-740 1693648 1693767 1693911 "NAGC02" 1694148 T NAGC02 (NIL) -7 NIL NIL NIL) (-739 1692708 1693265 1693305 "NAALG" 1693384 NIL NAALG (NIL T) -9 NIL 1693445 NIL) (-738 1692543 1692572 1692662 "NAALG-" 1692667 NIL NAALG- (NIL T T) -8 NIL NIL NIL) (-737 1686493 1687601 1688788 "MULTSQFR" 1691439 NIL MULTSQFR (NIL T T T T) -7 NIL NIL NIL) (-736 1685812 1685887 1686071 "MULTFACT" 1686405 NIL MULTFACT (NIL T T T T) -7 NIL NIL NIL) (-735 1678905 1682775 1682828 "MTSCAT" 1683898 NIL MTSCAT (NIL T T) -9 NIL 1684412 NIL) (-734 1678617 1678671 1678763 "MTHING" 1678845 NIL MTHING (NIL T) -7 NIL NIL NIL) (-733 1678409 1678442 1678502 "MSYSCMD" 1678577 T MSYSCMD (NIL) -7 NIL NIL NIL) (-732 1674521 1677164 1677484 "MSET" 1678122 NIL MSET (NIL T) -8 NIL NIL NIL) (-731 1671616 1674082 1674123 "MSETAGG" 1674128 NIL MSETAGG (NIL T) -9 NIL 1674162 NIL) (-730 1667499 1668995 1669740 "MRING" 1670916 NIL MRING (NIL T T) -8 NIL NIL NIL) (-729 1667065 1667132 1667263 "MRF2" 1667426 NIL MRF2 (NIL T T T) -7 NIL NIL NIL) (-728 1666683 1666718 1666862 "MRATFAC" 1667024 NIL MRATFAC (NIL T T T T) -7 NIL NIL NIL) (-727 1664295 1664590 1665021 "MPRFF" 1666388 NIL MPRFF (NIL T T T T) -7 NIL NIL NIL) (-726 1658355 1664149 1664246 "MPOLY" 1664251 NIL MPOLY (NIL NIL T) -8 NIL NIL NIL) (-725 1657845 1657880 1658088 "MPCPF" 1658314 NIL MPCPF (NIL T T T T) -7 NIL NIL NIL) (-724 1657359 1657402 1657586 "MPC3" 1657796 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL NIL) (-723 1656554 1656635 1656856 "MPC2" 1657274 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL NIL) (-722 1654855 1655192 1655582 "MONOTOOL" 1656214 NIL MONOTOOL (NIL T T) -7 NIL NIL NIL) (-721 1654106 1654397 1654425 "MONOID" 1654644 T MONOID (NIL) -9 NIL 1654791 NIL) (-720 1653652 1653771 1653952 "MONOID-" 1653957 NIL MONOID- (NIL T) -8 NIL NIL NIL) (-719 1644511 1650419 1650478 "MONOGEN" 1651152 NIL MONOGEN (NIL T T) -9 NIL 1651608 NIL) (-718 1641729 1642464 1643464 "MONOGEN-" 1643583 NIL MONOGEN- (NIL T T T) -8 NIL NIL NIL) (-717 1640588 1641008 1641036 "MONADWU" 1641428 T MONADWU (NIL) -9 NIL 1641666 NIL) (-716 1639960 1640119 1640367 "MONADWU-" 1640372 NIL MONADWU- (NIL T) -8 NIL NIL NIL) (-715 1639345 1639563 1639591 "MONAD" 1639798 T MONAD (NIL) -9 NIL 1639910 NIL) (-714 1639030 1639108 1639240 "MONAD-" 1639245 NIL MONAD- (NIL T) -8 NIL NIL NIL) (-713 1637346 1637943 1638222 "MOEBIUS" 1638783 NIL MOEBIUS (NIL T) -8 NIL NIL NIL) (-712 1636738 1637116 1637156 "MODULE" 1637161 NIL MODULE (NIL T) -9 NIL 1637187 NIL) (-711 1636306 1636402 1636592 "MODULE-" 1636597 NIL MODULE- (NIL T T) -8 NIL NIL NIL) (-710 1634021 1634670 1634997 "MODRING" 1636130 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-709 1631007 1632126 1632647 "MODOP" 1633550 NIL MODOP (NIL T T) -8 NIL NIL NIL) (-708 1629622 1630074 1630351 "MODMONOM" 1630870 NIL MODMONOM (NIL T T NIL) -8 NIL NIL NIL) (-707 1619429 1627913 1628327 "MODMON" 1629259 NIL MODMON (NIL T T) -8 NIL NIL NIL) (-706 1616620 1618273 1618549 "MODFIELD" 1619304 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-705 1615624 1615901 1616091 "MMLFORM" 1616450 T MMLFORM (NIL) -8 NIL NIL NIL) (-704 1615150 1615193 1615372 "MMAP" 1615575 NIL MMAP (NIL T T T T T T) -7 NIL NIL NIL) (-703 1613367 1614100 1614141 "MLO" 1614564 NIL MLO (NIL T) -9 NIL 1614806 NIL) (-702 1610734 1611249 1611851 "MLIFT" 1612848 NIL MLIFT (NIL T T T T) -7 NIL NIL NIL) (-701 1610125 1610209 1610363 "MKUCFUNC" 1610645 NIL MKUCFUNC (NIL T T T) -7 NIL NIL NIL) (-700 1609724 1609794 1609917 "MKRECORD" 1610048 NIL MKRECORD (NIL T T) -7 NIL NIL NIL) (-699 1608772 1608933 1609161 "MKFUNC" 1609535 NIL MKFUNC (NIL T) -7 NIL NIL NIL) (-698 1608160 1608264 1608420 "MKFLCFN" 1608655 NIL MKFLCFN (NIL T) -7 NIL NIL NIL) (-697 1607703 1608070 1608129 "MKCHSET" 1608134 NIL MKCHSET (NIL T) -8 NIL NIL NIL) (-696 1606980 1607082 1607267 "MKBCFUNC" 1607596 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL NIL) (-695 1603722 1606534 1606670 "MINT" 1606864 T MINT (NIL) -8 NIL NIL NIL) (-694 1602534 1602777 1603054 "MHROWRED" 1603477 NIL MHROWRED (NIL T) -7 NIL NIL NIL) (-693 1597960 1601069 1601474 "MFLOAT" 1602149 T MFLOAT (NIL) -8 NIL NIL NIL) (-692 1597317 1597393 1597564 "MFINFACT" 1597872 NIL MFINFACT (NIL T T T T) -7 NIL NIL NIL) (-691 1593632 1594480 1595364 "MESH" 1596453 T MESH (NIL) -7 NIL NIL NIL) (-690 1592022 1592334 1592687 "MDDFACT" 1593319 NIL MDDFACT (NIL T) -7 NIL NIL NIL) (-689 1588864 1591181 1591222 "MDAGG" 1591477 NIL MDAGG (NIL T) -9 NIL 1591620 NIL) (-688 1578642 1588157 1588364 "MCMPLX" 1588677 T MCMPLX (NIL) -8 NIL NIL NIL) (-687 1577783 1577929 1578129 "MCDEN" 1578491 NIL MCDEN (NIL T T) -7 NIL NIL NIL) (-686 1575673 1575943 1576323 "MCALCFN" 1577513 NIL MCALCFN (NIL T T T T) -7 NIL NIL NIL) (-685 1574598 1574838 1575071 "MAYBE" 1575479 NIL MAYBE (NIL T) -8 NIL NIL NIL) (-684 1572210 1572733 1573295 "MATSTOR" 1574069 NIL MATSTOR (NIL T) -7 NIL NIL NIL) (-683 1568216 1571582 1571830 "MATRIX" 1571995 NIL MATRIX (NIL T) -8 NIL NIL NIL) (-682 1563985 1564689 1565425 "MATLIN" 1567573 NIL MATLIN (NIL T T T T) -7 NIL NIL NIL) (-681 1554139 1557277 1557354 "MATCAT" 1562234 NIL MATCAT (NIL T T T) -9 NIL 1563651 NIL) (-680 1550503 1551516 1552872 "MATCAT-" 1552877 NIL MATCAT- (NIL T T T T) -8 NIL NIL NIL) (-679 1549097 1549250 1549583 "MATCAT2" 1550338 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-678 1547209 1547533 1547917 "MAPPKG3" 1548772 NIL MAPPKG3 (NIL T T T) -7 NIL NIL NIL) (-677 1546190 1546363 1546585 "MAPPKG2" 1547033 NIL MAPPKG2 (NIL T T) -7 NIL NIL NIL) (-676 1544689 1544973 1545300 "MAPPKG1" 1545896 NIL MAPPKG1 (NIL T) -7 NIL NIL NIL) (-675 1543795 1544095 1544272 "MAPPAST" 1544532 T MAPPAST (NIL) -8 NIL NIL NIL) (-674 1543406 1543464 1543587 "MAPHACK3" 1543731 NIL MAPHACK3 (NIL T T T) -7 NIL NIL NIL) (-673 1542998 1543059 1543173 "MAPHACK2" 1543338 NIL MAPHACK2 (NIL T T) -7 NIL NIL NIL) (-672 1542436 1542539 1542681 "MAPHACK1" 1542889 NIL MAPHACK1 (NIL T) -7 NIL NIL NIL) (-671 1540542 1541136 1541440 "MAGMA" 1542164 NIL MAGMA (NIL T) -8 NIL NIL NIL) (-670 1540048 1540266 1540357 "MACROAST" 1540471 T MACROAST (NIL) -8 NIL NIL NIL) (-669 1536515 1538287 1538748 "M3D" 1539620 NIL M3D (NIL T) -8 NIL NIL NIL) (-668 1530669 1534884 1534925 "LZSTAGG" 1535707 NIL LZSTAGG (NIL T) -9 NIL 1536002 NIL) (-667 1526643 1527800 1529257 "LZSTAGG-" 1529262 NIL LZSTAGG- (NIL T T) -8 NIL NIL NIL) (-666 1523757 1524534 1525021 "LWORD" 1526188 NIL LWORD (NIL T) -8 NIL NIL NIL) (-665 1523360 1523561 1523636 "LSTAST" 1523702 T LSTAST (NIL) -8 NIL NIL NIL) (-664 1516561 1523131 1523265 "LSQM" 1523270 NIL LSQM (NIL NIL T) -8 NIL NIL NIL) (-663 1515785 1515924 1516152 "LSPP" 1516416 NIL LSPP (NIL T T T T) -7 NIL NIL NIL) (-662 1513597 1513898 1514354 "LSMP" 1515474 NIL LSMP (NIL T T T T) -7 NIL NIL NIL) (-661 1510376 1511050 1511780 "LSMP1" 1512899 NIL LSMP1 (NIL T) -7 NIL NIL NIL) (-660 1504301 1509543 1509584 "LSAGG" 1509646 NIL LSAGG (NIL T) -9 NIL 1509724 NIL) (-659 1500996 1501920 1503133 "LSAGG-" 1503138 NIL LSAGG- (NIL T T) -8 NIL NIL NIL) (-658 1498622 1500140 1500389 "LPOLY" 1500791 NIL LPOLY (NIL T T) -8 NIL NIL NIL) (-657 1498204 1498289 1498412 "LPEFRAC" 1498531 NIL LPEFRAC (NIL T) -7 NIL NIL NIL) (-656 1496551 1497298 1497551 "LO" 1498036 NIL LO (NIL T T T) -8 NIL NIL NIL) (-655 1496203 1496315 1496343 "LOGIC" 1496454 T LOGIC (NIL) -9 NIL 1496535 NIL) (-654 1496065 1496088 1496159 "LOGIC-" 1496164 NIL LOGIC- (NIL T) -8 NIL NIL NIL) (-653 1495258 1495398 1495591 "LODOOPS" 1495921 NIL LODOOPS (NIL T T) -7 NIL NIL NIL) (-652 1492716 1495174 1495240 "LODO" 1495245 NIL LODO (NIL T NIL) -8 NIL NIL NIL) (-651 1491254 1491489 1491842 "LODOF" 1492463 NIL LODOF (NIL T T) -7 NIL NIL NIL) (-650 1487610 1490007 1490048 "LODOCAT" 1490486 NIL LODOCAT (NIL T) -9 NIL 1490697 NIL) (-649 1487343 1487401 1487528 "LODOCAT-" 1487533 NIL LODOCAT- (NIL T T) -8 NIL NIL NIL) (-648 1484698 1487184 1487302 "LODO2" 1487307 NIL LODO2 (NIL T T) -8 NIL NIL NIL) (-647 1482168 1484635 1484680 "LODO1" 1484685 NIL LODO1 (NIL T) -8 NIL NIL NIL) (-646 1481028 1481193 1481505 "LODEEF" 1481991 NIL LODEEF (NIL T T T) -7 NIL NIL NIL) (-645 1476314 1479158 1479199 "LNAGG" 1480146 NIL LNAGG (NIL T) -9 NIL 1480590 NIL) (-644 1475461 1475675 1476017 "LNAGG-" 1476022 NIL LNAGG- (NIL T T) -8 NIL NIL NIL) (-643 1471624 1472386 1473025 "LMOPS" 1474876 NIL LMOPS (NIL T T NIL) -8 NIL NIL NIL) (-642 1471019 1471381 1471422 "LMODULE" 1471483 NIL LMODULE (NIL T) -9 NIL 1471525 NIL) (-641 1468265 1470664 1470787 "LMDICT" 1470929 NIL LMDICT (NIL T) -8 NIL NIL NIL) (-640 1467991 1468173 1468233 "LITERAL" 1468238 NIL LITERAL (NIL T) -8 NIL NIL NIL) (-639 1461218 1466937 1467235 "LIST" 1467726 NIL LIST (NIL T) -8 NIL NIL NIL) (-638 1460743 1460817 1460956 "LIST3" 1461138 NIL LIST3 (NIL T T T) -7 NIL NIL NIL) (-637 1459750 1459928 1460156 "LIST2" 1460561 NIL LIST2 (NIL T T) -7 NIL NIL NIL) (-636 1457884 1458196 1458595 "LIST2MAP" 1459397 NIL LIST2MAP (NIL T T) -7 NIL NIL NIL) (-635 1456614 1457250 1457291 "LINEXP" 1457546 NIL LINEXP (NIL T) -9 NIL 1457695 NIL) (-634 1455261 1455521 1455818 "LINDEP" 1456366 NIL LINDEP (NIL T T) -7 NIL NIL NIL) (-633 1452028 1452747 1453524 "LIMITRF" 1454516 NIL LIMITRF (NIL T) -7 NIL NIL NIL) (-632 1450304 1450599 1451015 "LIMITPS" 1451723 NIL LIMITPS (NIL T T) -7 NIL NIL NIL) (-631 1444759 1449815 1450043 "LIE" 1450125 NIL LIE (NIL T T) -8 NIL NIL NIL) (-630 1443808 1444251 1444291 "LIECAT" 1444431 NIL LIECAT (NIL T) -9 NIL 1444582 NIL) (-629 1443649 1443676 1443764 "LIECAT-" 1443769 NIL LIECAT- (NIL T T) -8 NIL NIL NIL) (-628 1436261 1443098 1443263 "LIB" 1443504 T LIB (NIL) -8 NIL NIL NIL) (-627 1431898 1432779 1433714 "LGROBP" 1435378 NIL LGROBP (NIL NIL T) -7 NIL NIL NIL) (-626 1429764 1430038 1430400 "LF" 1431619 NIL LF (NIL T T) -7 NIL NIL NIL) (-625 1428604 1429296 1429324 "LFCAT" 1429531 T LFCAT (NIL) -9 NIL 1429670 NIL) (-624 1425508 1426136 1426824 "LEXTRIPK" 1427968 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL NIL) (-623 1422279 1423078 1423581 "LEXP" 1425088 NIL LEXP (NIL T T NIL) -8 NIL NIL NIL) (-622 1421782 1422000 1422092 "LETAST" 1422207 T LETAST (NIL) -8 NIL NIL NIL) (-621 1420180 1420493 1420894 "LEADCDET" 1421464 NIL LEADCDET (NIL T T T T) -7 NIL NIL NIL) (-620 1419370 1419444 1419673 "LAZM3PK" 1420101 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL NIL) (-619 1414325 1417447 1417985 "LAUPOL" 1418882 NIL LAUPOL (NIL T T) -8 NIL NIL NIL) (-618 1413890 1413934 1414102 "LAPLACE" 1414275 NIL LAPLACE (NIL T T) -7 NIL NIL NIL) (-617 1411864 1412991 1413242 "LA" 1413723 NIL LA (NIL T T T) -8 NIL NIL NIL) (-616 1410945 1411495 1411536 "LALG" 1411598 NIL LALG (NIL T) -9 NIL 1411657 NIL) (-615 1410659 1410718 1410854 "LALG-" 1410859 NIL LALG- (NIL T T) -8 NIL NIL NIL) (-614 1410494 1410518 1410559 "KVTFROM" 1410621 NIL KVTFROM (NIL T) -9 NIL NIL NIL) (-613 1409297 1409711 1409940 "KTVLOGIC" 1410285 T KTVLOGIC (NIL) -8 NIL NIL NIL) (-612 1409132 1409156 1409197 "KRCFROM" 1409259 NIL KRCFROM (NIL T) -9 NIL NIL NIL) (-611 1408036 1408223 1408522 "KOVACIC" 1408932 NIL KOVACIC (NIL T T) -7 NIL NIL NIL) (-610 1407871 1407895 1407936 "KONVERT" 1407998 NIL KONVERT (NIL T) -9 NIL NIL NIL) (-609 1407706 1407730 1407771 "KOERCE" 1407833 NIL KOERCE (NIL T) -9 NIL NIL NIL) (-608 1405440 1406200 1406593 "KERNEL" 1407345 NIL KERNEL (NIL T) -8 NIL NIL NIL) (-607 1404942 1405023 1405153 "KERNEL2" 1405354 NIL KERNEL2 (NIL T T) -7 NIL NIL NIL) (-606 1398793 1403481 1403535 "KDAGG" 1403912 NIL KDAGG (NIL T T) -9 NIL 1404118 NIL) (-605 1398322 1398446 1398651 "KDAGG-" 1398656 NIL KDAGG- (NIL T T T) -8 NIL NIL NIL) (-604 1391497 1397983 1398138 "KAFILE" 1398200 NIL KAFILE (NIL T) -8 NIL NIL NIL) (-603 1385952 1391008 1391236 "JORDAN" 1391318 NIL JORDAN (NIL T T) -8 NIL NIL NIL) (-602 1385358 1385601 1385722 "JOINAST" 1385851 T JOINAST (NIL) -8 NIL NIL NIL) (-601 1385204 1385263 1385318 "JAVACODE" 1385323 T JAVACODE (NIL) -8 NIL NIL NIL) (-600 1381503 1383409 1383463 "IXAGG" 1384392 NIL IXAGG (NIL T T) -9 NIL 1384851 NIL) (-599 1380422 1380728 1381147 "IXAGG-" 1381152 NIL IXAGG- (NIL T T T) -8 NIL NIL NIL) (-598 1376002 1380344 1380403 "IVECTOR" 1380408 NIL IVECTOR (NIL T NIL) -8 NIL NIL NIL) (-597 1374768 1375005 1375271 "ITUPLE" 1375769 NIL ITUPLE (NIL T) -8 NIL NIL NIL) (-596 1373204 1373381 1373687 "ITRIGMNP" 1374590 NIL ITRIGMNP (NIL T T T) -7 NIL NIL NIL) (-595 1371949 1372153 1372436 "ITFUN3" 1372980 NIL ITFUN3 (NIL T T T) -7 NIL NIL NIL) (-594 1371581 1371638 1371747 "ITFUN2" 1371886 NIL ITFUN2 (NIL T T) -7 NIL NIL NIL) (-593 1369418 1370443 1370742 "ITAYLOR" 1371315 NIL ITAYLOR (NIL T) -8 NIL NIL NIL) (-592 1358401 1363555 1364718 "ISUPS" 1368288 NIL ISUPS (NIL T) -8 NIL NIL NIL) (-591 1357505 1357645 1357881 "ISUMP" 1358248 NIL ISUMP (NIL T T T T) -7 NIL NIL NIL) (-590 1352769 1357306 1357385 "ISTRING" 1357458 NIL ISTRING (NIL NIL) -8 NIL NIL NIL) (-589 1352272 1352490 1352582 "ISAST" 1352697 T ISAST (NIL) -8 NIL NIL NIL) (-588 1351482 1351563 1351779 "IRURPK" 1352186 NIL IRURPK (NIL T T T T T) -7 NIL NIL NIL) (-587 1350418 1350619 1350859 "IRSN" 1351262 T IRSN (NIL) -7 NIL NIL NIL) (-586 1348447 1348802 1349238 "IRRF2F" 1350056 NIL IRRF2F (NIL T) -7 NIL NIL NIL) (-585 1348194 1348232 1348308 "IRREDFFX" 1348403 NIL IRREDFFX (NIL T) -7 NIL NIL NIL) (-584 1346809 1347068 1347367 "IROOT" 1347927 NIL IROOT (NIL T) -7 NIL NIL NIL) (-583 1343441 1344493 1345185 "IR" 1346149 NIL IR (NIL T) -8 NIL NIL NIL) (-582 1341054 1341549 1342115 "IR2" 1342919 NIL IR2 (NIL T T) -7 NIL NIL NIL) (-581 1340126 1340239 1340460 "IR2F" 1340937 NIL IR2F (NIL T T) -7 NIL NIL NIL) (-580 1339917 1339951 1340011 "IPRNTPK" 1340086 T IPRNTPK (NIL) -7 NIL NIL NIL) (-579 1336536 1339806 1339875 "IPF" 1339880 NIL IPF (NIL NIL) -8 NIL NIL NIL) (-578 1334899 1336461 1336518 "IPADIC" 1336523 NIL IPADIC (NIL NIL NIL) -8 NIL NIL NIL) (-577 1334239 1334459 1334589 "IP4ADDR" 1334789 T IP4ADDR (NIL) -8 NIL NIL NIL) (-576 1333739 1333943 1334053 "IOMODE" 1334149 T IOMODE (NIL) -8 NIL NIL NIL) (-575 1332812 1333336 1333463 "IOBFILE" 1333632 T IOBFILE (NIL) -8 NIL NIL NIL) (-574 1332300 1332716 1332744 "IOBCON" 1332749 T IOBCON (NIL) -9 NIL 1332770 NIL) (-573 1331797 1331855 1332045 "INVLAPLA" 1332236 NIL INVLAPLA (NIL T T) -7 NIL NIL NIL) (-572 1321446 1323799 1326185 "INTTR" 1329461 NIL INTTR (NIL T T) -7 NIL NIL NIL) (-571 1317790 1318532 1319396 "INTTOOLS" 1320631 NIL INTTOOLS (NIL T T) -7 NIL NIL NIL) (-570 1317376 1317467 1317584 "INTSLPE" 1317693 T INTSLPE (NIL) -7 NIL NIL NIL) (-569 1315371 1317299 1317358 "INTRVL" 1317363 NIL INTRVL (NIL T) -8 NIL NIL NIL) (-568 1312973 1313485 1314060 "INTRF" 1314856 NIL INTRF (NIL T) -7 NIL NIL NIL) (-567 1312384 1312481 1312623 "INTRET" 1312871 NIL INTRET (NIL T) -7 NIL NIL NIL) (-566 1310381 1310770 1311240 "INTRAT" 1311992 NIL INTRAT (NIL T T) -7 NIL NIL NIL) (-565 1307609 1308192 1308818 "INTPM" 1309866 NIL INTPM (NIL T T) -7 NIL NIL NIL) (-564 1304312 1304911 1305656 "INTPAF" 1306995 NIL INTPAF (NIL T T T) -7 NIL NIL NIL) (-563 1299491 1300453 1301504 "INTPACK" 1303281 T INTPACK (NIL) -7 NIL NIL NIL) (-562 1296403 1299220 1299347 "INT" 1299384 T INT (NIL) -8 NIL NIL NIL) (-561 1295655 1295807 1296015 "INTHERTR" 1296245 NIL INTHERTR (NIL T T) -7 NIL NIL NIL) (-560 1295094 1295174 1295362 "INTHERAL" 1295569 NIL INTHERAL (NIL T T T T) -7 NIL NIL NIL) (-559 1292940 1293383 1293840 "INTHEORY" 1294657 T INTHEORY (NIL) -7 NIL NIL NIL) (-558 1284248 1285869 1287648 "INTG0" 1291292 NIL INTG0 (NIL T T T) -7 NIL NIL NIL) (-557 1264821 1269611 1274421 "INTFTBL" 1279458 T INTFTBL (NIL) -8 NIL NIL NIL) (-556 1264070 1264208 1264381 "INTFACT" 1264680 NIL INTFACT (NIL T) -7 NIL NIL NIL) (-555 1261455 1261901 1262465 "INTEF" 1263624 NIL INTEF (NIL T T) -7 NIL NIL NIL) (-554 1259922 1260627 1260655 "INTDOM" 1260956 T INTDOM (NIL) -9 NIL 1261163 NIL) (-553 1259291 1259465 1259707 "INTDOM-" 1259712 NIL INTDOM- (NIL T) -8 NIL NIL NIL) (-552 1255786 1257675 1257729 "INTCAT" 1258528 NIL INTCAT (NIL T) -9 NIL 1258848 NIL) (-551 1255259 1255361 1255489 "INTBIT" 1255678 T INTBIT (NIL) -7 NIL NIL NIL) (-550 1253930 1254084 1254398 "INTALG" 1255104 NIL INTALG (NIL T T T T T) -7 NIL NIL NIL) (-549 1253387 1253477 1253647 "INTAF" 1253834 NIL INTAF (NIL T T) -7 NIL NIL NIL) (-548 1246841 1253197 1253337 "INTABL" 1253342 NIL INTABL (NIL T T T) -8 NIL NIL NIL) (-547 1246301 1246714 1246742 "INT8" 1246747 T INT8 (NIL) -8 NIL NIL 1246755) (-546 1245760 1246173 1246201 "INT32" 1246206 T INT32 (NIL) -8 NIL NIL 1246214) (-545 1245219 1245632 1245660 "INT16" 1245665 T INT16 (NIL) -8 NIL NIL 1245673) (-544 1240234 1242908 1242936 "INS" 1243870 T INS (NIL) -9 NIL 1244535 NIL) (-543 1237474 1238245 1239219 "INS-" 1239292 NIL INS- (NIL T) -8 NIL NIL NIL) (-542 1236249 1236476 1236774 "INPSIGN" 1237227 NIL INPSIGN (NIL T T) -7 NIL NIL NIL) (-541 1235367 1235484 1235681 "INPRODPF" 1236129 NIL INPRODPF (NIL T T) -7 NIL NIL NIL) (-540 1234261 1234378 1234615 "INPRODFF" 1235247 NIL INPRODFF (NIL T T T T) -7 NIL NIL NIL) (-539 1233261 1233413 1233673 "INNMFACT" 1234097 NIL INNMFACT (NIL T T T T) -7 NIL NIL NIL) (-538 1232458 1232555 1232743 "INMODGCD" 1233160 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL NIL) (-537 1230967 1231211 1231535 "INFSP" 1232203 NIL INFSP (NIL T T T) -7 NIL NIL NIL) (-536 1230151 1230268 1230451 "INFPROD0" 1230847 NIL INFPROD0 (NIL T T) -7 NIL NIL NIL) (-535 1227033 1228216 1228731 "INFORM" 1229644 T INFORM (NIL) -8 NIL NIL NIL) (-534 1226643 1226703 1226801 "INFORM1" 1226968 NIL INFORM1 (NIL T) -7 NIL NIL NIL) (-533 1226166 1226255 1226369 "INFINITY" 1226549 T INFINITY (NIL) -7 NIL NIL NIL) (-532 1225342 1225886 1225987 "INETCLTS" 1226085 T INETCLTS (NIL) -8 NIL NIL NIL) (-531 1223959 1224208 1224529 "INEP" 1225090 NIL INEP (NIL T T T) -7 NIL NIL NIL) (-530 1223235 1223856 1223921 "INDE" 1223926 NIL INDE (NIL T) -8 NIL NIL NIL) (-529 1222799 1222867 1222984 "INCRMAPS" 1223162 NIL INCRMAPS (NIL T) -7 NIL NIL NIL) (-528 1221617 1222068 1222274 "INBFILE" 1222613 T INBFILE (NIL) -8 NIL NIL NIL) (-527 1216928 1217853 1218797 "INBFF" 1220705 NIL INBFF (NIL T) -7 NIL NIL NIL) (-526 1215836 1216105 1216133 "INBCON" 1216646 T INBCON (NIL) -9 NIL 1216912 NIL) (-525 1215088 1215311 1215587 "INBCON-" 1215592 NIL INBCON- (NIL T) -8 NIL NIL NIL) (-524 1214590 1214809 1214901 "INAST" 1215016 T INAST (NIL) -8 NIL NIL NIL) (-523 1214044 1214269 1214375 "IMPTAST" 1214504 T IMPTAST (NIL) -8 NIL NIL NIL) (-522 1210538 1213888 1213992 "IMATRIX" 1213997 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL NIL) (-521 1209250 1209373 1209688 "IMATQF" 1210394 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL NIL) (-520 1207470 1207697 1208034 "IMATLIN" 1209006 NIL IMATLIN (NIL T T T T) -7 NIL NIL NIL) (-519 1202096 1207394 1207452 "ILIST" 1207457 NIL ILIST (NIL T NIL) -8 NIL NIL NIL) (-518 1200049 1201956 1202069 "IIARRAY2" 1202074 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL NIL) (-517 1195482 1199960 1200024 "IFF" 1200029 NIL IFF (NIL NIL NIL) -8 NIL NIL NIL) (-516 1194856 1195099 1195215 "IFAST" 1195386 T IFAST (NIL) -8 NIL NIL NIL) (-515 1189899 1194148 1194336 "IFARRAY" 1194713 NIL IFARRAY (NIL T NIL) -8 NIL NIL NIL) (-514 1189106 1189803 1189876 "IFAMON" 1189881 NIL IFAMON (NIL T T NIL) -8 NIL NIL NIL) (-513 1188690 1188755 1188809 "IEVALAB" 1189016 NIL IEVALAB (NIL T T) -9 NIL NIL NIL) (-512 1188365 1188433 1188593 "IEVALAB-" 1188598 NIL IEVALAB- (NIL T T T) -8 NIL NIL NIL) (-511 1188023 1188279 1188342 "IDPO" 1188347 NIL IDPO (NIL T T) -8 NIL NIL NIL) (-510 1187300 1187912 1187987 "IDPOAMS" 1187992 NIL IDPOAMS (NIL T T) -8 NIL NIL NIL) (-509 1186634 1187189 1187264 "IDPOAM" 1187269 NIL IDPOAM (NIL T T) -8 NIL NIL NIL) (-508 1185719 1185969 1186022 "IDPC" 1186435 NIL IDPC (NIL T T) -9 NIL 1186584 NIL) (-507 1185215 1185611 1185684 "IDPAM" 1185689 NIL IDPAM (NIL T T) -8 NIL NIL NIL) (-506 1184618 1185107 1185180 "IDPAG" 1185185 NIL IDPAG (NIL T T) -8 NIL NIL NIL) (-505 1184386 1184533 1184583 "IDENT" 1184588 T IDENT (NIL) -8 NIL NIL NIL) (-504 1180641 1181489 1182384 "IDECOMP" 1183543 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL NIL) (-503 1173515 1174564 1175611 "IDEAL" 1179677 NIL IDEAL (NIL T T T T) -8 NIL NIL NIL) (-502 1172679 1172791 1172990 "ICDEN" 1173399 NIL ICDEN (NIL T T T T) -7 NIL NIL NIL) (-501 1171778 1172159 1172306 "ICARD" 1172552 T ICARD (NIL) -8 NIL NIL NIL) (-500 1169838 1170151 1170556 "IBPTOOLS" 1171455 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL NIL) (-499 1165472 1169458 1169571 "IBITS" 1169757 NIL IBITS (NIL NIL) -8 NIL NIL NIL) (-498 1162195 1162771 1163466 "IBATOOL" 1164889 NIL IBATOOL (NIL T T T) -7 NIL NIL NIL) (-497 1159975 1160436 1160969 "IBACHIN" 1161730 NIL IBACHIN (NIL T T T) -7 NIL NIL NIL) (-496 1157852 1159821 1159924 "IARRAY2" 1159929 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL NIL) (-495 1154005 1157778 1157835 "IARRAY1" 1157840 NIL IARRAY1 (NIL T NIL) -8 NIL NIL NIL) (-494 1147999 1152417 1152898 "IAN" 1153544 T IAN (NIL) -8 NIL NIL NIL) (-493 1147510 1147567 1147740 "IALGFACT" 1147936 NIL IALGFACT (NIL T T T T) -7 NIL NIL NIL) (-492 1147038 1147151 1147179 "HYPCAT" 1147386 T HYPCAT (NIL) -9 NIL NIL NIL) (-491 1146576 1146693 1146879 "HYPCAT-" 1146884 NIL HYPCAT- (NIL T) -8 NIL NIL NIL) (-490 1146198 1146371 1146454 "HOSTNAME" 1146513 T HOSTNAME (NIL) -8 NIL NIL NIL) (-489 1146043 1146080 1146121 "HOMOTOP" 1146126 NIL HOMOTOP (NIL T) -9 NIL 1146159 NIL) (-488 1142722 1144053 1144094 "HOAGG" 1145075 NIL HOAGG (NIL T) -9 NIL 1145754 NIL) (-487 1141316 1141715 1142241 "HOAGG-" 1142246 NIL HOAGG- (NIL T T) -8 NIL NIL NIL) (-486 1135358 1140913 1141061 "HEXADEC" 1141188 T HEXADEC (NIL) -8 NIL NIL NIL) (-485 1134106 1134328 1134591 "HEUGCD" 1135135 NIL HEUGCD (NIL T) -7 NIL NIL NIL) (-484 1133209 1133943 1134073 "HELLFDIV" 1134078 NIL HELLFDIV (NIL T T T T) -8 NIL NIL NIL) (-483 1131437 1132986 1133074 "HEAP" 1133153 NIL HEAP (NIL T) -8 NIL NIL NIL) (-482 1130728 1130989 1131123 "HEADAST" 1131323 T HEADAST (NIL) -8 NIL NIL NIL) (-481 1124648 1130643 1130705 "HDP" 1130710 NIL HDP (NIL NIL T) -8 NIL NIL NIL) (-480 1118399 1124283 1124435 "HDMP" 1124549 NIL HDMP (NIL NIL T) -8 NIL NIL NIL) (-479 1117724 1117863 1118027 "HB" 1118255 T HB (NIL) -7 NIL NIL NIL) (-478 1111221 1117570 1117674 "HASHTBL" 1117679 NIL HASHTBL (NIL T T NIL) -8 NIL NIL NIL) (-477 1110724 1110942 1111034 "HASAST" 1111149 T HASAST (NIL) -8 NIL NIL NIL) (-476 1108536 1110346 1110528 "HACKPI" 1110562 T HACKPI (NIL) -8 NIL NIL NIL) (-475 1104231 1108389 1108502 "GTSET" 1108507 NIL GTSET (NIL T T T T) -8 NIL NIL NIL) (-474 1097757 1104109 1104207 "GSTBL" 1104212 NIL GSTBL (NIL T T T NIL) -8 NIL NIL NIL) (-473 1090070 1096788 1097053 "GSERIES" 1097548 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL NIL) (-472 1089237 1089628 1089656 "GROUP" 1089859 T GROUP (NIL) -9 NIL 1089993 NIL) (-471 1088603 1088762 1089013 "GROUP-" 1089018 NIL GROUP- (NIL T) -8 NIL NIL NIL) (-470 1086972 1087291 1087678 "GROEBSOL" 1088280 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL NIL) (-469 1085912 1086174 1086225 "GRMOD" 1086754 NIL GRMOD (NIL T T) -9 NIL 1086922 NIL) (-468 1085680 1085716 1085844 "GRMOD-" 1085849 NIL GRMOD- (NIL T T T) -8 NIL NIL NIL) (-467 1081006 1082034 1083034 "GRIMAGE" 1084700 T GRIMAGE (NIL) -8 NIL NIL NIL) (-466 1079473 1079733 1080057 "GRDEF" 1080702 T GRDEF (NIL) -7 NIL NIL NIL) (-465 1078917 1079033 1079174 "GRAY" 1079352 T GRAY (NIL) -7 NIL NIL NIL) (-464 1078130 1078510 1078561 "GRALG" 1078714 NIL GRALG (NIL T T) -9 NIL 1078807 NIL) (-463 1077791 1077864 1078027 "GRALG-" 1078032 NIL GRALG- (NIL T T T) -8 NIL NIL NIL) (-462 1074595 1077376 1077554 "GPOLSET" 1077698 NIL GPOLSET (NIL T T T T) -8 NIL NIL NIL) (-461 1073949 1074006 1074264 "GOSPER" 1074532 NIL GOSPER (NIL T T T T T) -7 NIL NIL NIL) (-460 1069708 1070387 1070913 "GMODPOL" 1073648 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL NIL) (-459 1068713 1068897 1069135 "GHENSEL" 1069520 NIL GHENSEL (NIL T T) -7 NIL NIL NIL) (-458 1062764 1063607 1064634 "GENUPS" 1067797 NIL GENUPS (NIL T T) -7 NIL NIL NIL) (-457 1062461 1062512 1062601 "GENUFACT" 1062707 NIL GENUFACT (NIL T) -7 NIL NIL NIL) (-456 1061873 1061950 1062115 "GENPGCD" 1062379 NIL GENPGCD (NIL T T T T) -7 NIL NIL NIL) (-455 1061347 1061382 1061595 "GENMFACT" 1061832 NIL GENMFACT (NIL T T T T T) -7 NIL NIL NIL) (-454 1059915 1060170 1060477 "GENEEZ" 1061090 NIL GENEEZ (NIL T T) -7 NIL NIL NIL) (-453 1053828 1059526 1059688 "GDMP" 1059838 NIL GDMP (NIL NIL T T) -8 NIL NIL NIL) (-452 1043205 1047599 1048705 "GCNAALG" 1052811 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-451 1041632 1042460 1042488 "GCDDOM" 1042743 T GCDDOM (NIL) -9 NIL 1042900 NIL) (-450 1041102 1041229 1041444 "GCDDOM-" 1041449 NIL GCDDOM- (NIL T) -8 NIL NIL NIL) (-449 1039774 1039959 1040263 "GB" 1040881 NIL GB (NIL T T T T) -7 NIL NIL NIL) (-448 1028394 1030720 1033112 "GBINTERN" 1037465 NIL GBINTERN (NIL T T T T) -7 NIL NIL NIL) (-447 1026231 1026523 1026944 "GBF" 1028069 NIL GBF (NIL T T T T) -7 NIL NIL NIL) (-446 1025012 1025177 1025444 "GBEUCLID" 1026047 NIL GBEUCLID (NIL T T T T) -7 NIL NIL NIL) (-445 1024361 1024486 1024635 "GAUSSFAC" 1024883 T GAUSSFAC (NIL) -7 NIL NIL NIL) (-444 1022728 1023030 1023344 "GALUTIL" 1024080 NIL GALUTIL (NIL T) -7 NIL NIL NIL) (-443 1021036 1021310 1021634 "GALPOLYU" 1022455 NIL GALPOLYU (NIL T T) -7 NIL NIL NIL) (-442 1018401 1018691 1019098 "GALFACTU" 1020733 NIL GALFACTU (NIL T T T) -7 NIL NIL NIL) (-441 1010207 1011706 1013314 "GALFACT" 1016833 NIL GALFACT (NIL T) -7 NIL NIL NIL) (-440 1007595 1008253 1008281 "FVFUN" 1009437 T FVFUN (NIL) -9 NIL 1010157 NIL) (-439 1006861 1007043 1007071 "FVC" 1007362 T FVC (NIL) -9 NIL 1007545 NIL) (-438 1006531 1006686 1006754 "FUNDESC" 1006813 T FUNDESC (NIL) -8 NIL NIL NIL) (-437 1006173 1006328 1006409 "FUNCTION" 1006483 NIL FUNCTION (NIL NIL) -8 NIL NIL NIL) (-436 1003944 1004495 1004961 "FT" 1005727 T FT (NIL) -8 NIL NIL NIL) (-435 1002762 1003245 1003448 "FTEM" 1003761 T FTEM (NIL) -8 NIL NIL NIL) (-434 1001018 1001307 1001711 "FSUPFACT" 1002453 NIL FSUPFACT (NIL T T T) -7 NIL NIL NIL) (-433 999415 999704 1000036 "FST" 1000706 T FST (NIL) -8 NIL NIL NIL) (-432 998586 998692 998887 "FSRED" 999297 NIL FSRED (NIL T T) -7 NIL NIL NIL) (-431 997265 997520 997874 "FSPRMELT" 998301 NIL FSPRMELT (NIL T T) -7 NIL NIL NIL) (-430 994350 994788 995287 "FSPECF" 996828 NIL FSPECF (NIL T T) -7 NIL NIL NIL) (-429 976410 984853 984893 "FS" 988741 NIL FS (NIL T) -9 NIL 991030 NIL) (-428 965060 968050 972106 "FS-" 972403 NIL FS- (NIL T T) -8 NIL NIL NIL) (-427 964574 964628 964805 "FSINT" 965001 NIL FSINT (NIL T T) -7 NIL NIL NIL) (-426 962901 963567 963870 "FSERIES" 964353 NIL FSERIES (NIL T T) -8 NIL NIL NIL) (-425 961915 962031 962262 "FSCINT" 962781 NIL FSCINT (NIL T T) -7 NIL NIL NIL) (-424 958149 960859 960900 "FSAGG" 961270 NIL FSAGG (NIL T) -9 NIL 961529 NIL) (-423 955911 956512 957308 "FSAGG-" 957403 NIL FSAGG- (NIL T T) -8 NIL NIL NIL) (-422 954953 955096 955323 "FSAGG2" 955764 NIL FSAGG2 (NIL T T T T) -7 NIL NIL NIL) (-421 952608 952887 953441 "FS2UPS" 954671 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL NIL) (-420 952190 952233 952388 "FS2" 952559 NIL FS2 (NIL T T T T) -7 NIL NIL NIL) (-419 951047 951218 951527 "FS2EXPXP" 952015 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL NIL) (-418 950473 950588 950740 "FRUTIL" 950927 NIL FRUTIL (NIL T) -7 NIL NIL NIL) (-417 941928 945968 947326 "FR" 949147 NIL FR (NIL T) -8 NIL NIL NIL) (-416 937003 939646 939686 "FRNAALG" 941082 NIL FRNAALG (NIL T) -9 NIL 941689 NIL) (-415 932681 933752 935027 "FRNAALG-" 935777 NIL FRNAALG- (NIL T T) -8 NIL NIL NIL) (-414 932319 932362 932489 "FRNAAF2" 932632 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL NIL) (-413 930726 931173 931468 "FRMOD" 932131 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL NIL) (-412 928505 929109 929426 "FRIDEAL" 930517 NIL FRIDEAL (NIL T T T T) -8 NIL NIL NIL) (-411 927700 927787 928076 "FRIDEAL2" 928412 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-410 926833 927247 927288 "FRETRCT" 927293 NIL FRETRCT (NIL T) -9 NIL 927469 NIL) (-409 925945 926176 926527 "FRETRCT-" 926532 NIL FRETRCT- (NIL T T) -8 NIL NIL NIL) (-408 923157 924333 924392 "FRAMALG" 925274 NIL FRAMALG (NIL T T) -9 NIL 925566 NIL) (-407 921291 921746 922376 "FRAMALG-" 922599 NIL FRAMALG- (NIL T T T) -8 NIL NIL NIL) (-406 915249 920766 921042 "FRAC" 921047 NIL FRAC (NIL T) -8 NIL NIL NIL) (-405 914885 914942 915049 "FRAC2" 915186 NIL FRAC2 (NIL T T) -7 NIL NIL NIL) (-404 914521 914578 914685 "FR2" 914822 NIL FR2 (NIL T T) -7 NIL NIL NIL) (-403 909194 912046 912074 "FPS" 913193 T FPS (NIL) -9 NIL 913750 NIL) (-402 908643 908752 908916 "FPS-" 909062 NIL FPS- (NIL T) -8 NIL NIL NIL) (-401 906097 907732 907760 "FPC" 907985 T FPC (NIL) -9 NIL 908127 NIL) (-400 905890 905930 906027 "FPC-" 906032 NIL FPC- (NIL T) -8 NIL NIL NIL) (-399 904768 905378 905419 "FPATMAB" 905424 NIL FPATMAB (NIL T) -9 NIL 905576 NIL) (-398 902468 902944 903370 "FPARFRAC" 904405 NIL FPARFRAC (NIL T T) -8 NIL NIL NIL) (-397 897862 898360 899042 "FORTRAN" 901900 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL NIL) (-396 895578 896078 896617 "FORT" 897343 T FORT (NIL) -7 NIL NIL NIL) (-395 893254 893816 893844 "FORTFN" 894904 T FORTFN (NIL) -9 NIL 895528 NIL) (-394 893018 893068 893096 "FORTCAT" 893155 T FORTCAT (NIL) -9 NIL 893217 NIL) (-393 891151 891634 892024 "FORMULA" 892648 T FORMULA (NIL) -8 NIL NIL NIL) (-392 890939 890969 891038 "FORMULA1" 891115 NIL FORMULA1 (NIL T) -7 NIL NIL NIL) (-391 890462 890514 890687 "FORDER" 890881 NIL FORDER (NIL T T T T) -7 NIL NIL NIL) (-390 889558 889722 889915 "FOP" 890289 T FOP (NIL) -7 NIL NIL NIL) (-389 888166 888838 889012 "FNLA" 889440 NIL FNLA (NIL NIL NIL T) -8 NIL NIL NIL) (-388 886921 887310 887338 "FNCAT" 887798 T FNCAT (NIL) -9 NIL 888058 NIL) (-387 886487 886880 886908 "FNAME" 886913 T FNAME (NIL) -8 NIL NIL NIL) (-386 885150 886079 886107 "FMTC" 886112 T FMTC (NIL) -9 NIL 886148 NIL) (-385 881512 882673 883302 "FMONOID" 884554 NIL FMONOID (NIL T) -8 NIL NIL NIL) (-384 880731 881254 881403 "FM" 881408 NIL FM (NIL T T) -8 NIL NIL NIL) (-383 878155 878801 878829 "FMFUN" 879973 T FMFUN (NIL) -9 NIL 880681 NIL) (-382 877424 877605 877633 "FMC" 877923 T FMC (NIL) -9 NIL 878105 NIL) (-381 874618 875452 875506 "FMCAT" 876701 NIL FMCAT (NIL T T) -9 NIL 877196 NIL) (-380 873511 874384 874484 "FM1" 874563 NIL FM1 (NIL T T) -8 NIL NIL NIL) (-379 871285 871701 872195 "FLOATRP" 873062 NIL FLOATRP (NIL T) -7 NIL NIL NIL) (-378 864909 869014 869635 "FLOAT" 870684 T FLOAT (NIL) -8 NIL NIL NIL) (-377 862347 862847 863425 "FLOATCP" 864376 NIL FLOATCP (NIL T) -7 NIL NIL NIL) (-376 861156 861960 862001 "FLINEXP" 862006 NIL FLINEXP (NIL T) -9 NIL 862099 NIL) (-375 860310 860545 860873 "FLINEXP-" 860878 NIL FLINEXP- (NIL T T) -8 NIL NIL NIL) (-374 859386 859530 859754 "FLASORT" 860162 NIL FLASORT (NIL T T) -7 NIL NIL NIL) (-373 856603 857445 857497 "FLALG" 858724 NIL FLALG (NIL T T) -9 NIL 859191 NIL) (-372 850387 854089 854130 "FLAGG" 855392 NIL FLAGG (NIL T) -9 NIL 856044 NIL) (-371 849113 849452 849942 "FLAGG-" 849947 NIL FLAGG- (NIL T T) -8 NIL NIL NIL) (-370 848155 848298 848525 "FLAGG2" 848966 NIL FLAGG2 (NIL T T T T) -7 NIL NIL NIL) (-369 845130 846104 846163 "FINRALG" 847291 NIL FINRALG (NIL T T) -9 NIL 847799 NIL) (-368 844290 844519 844858 "FINRALG-" 844863 NIL FINRALG- (NIL T T T) -8 NIL NIL NIL) (-367 843696 843909 843937 "FINITE" 844133 T FINITE (NIL) -9 NIL 844240 NIL) (-366 836154 838315 838355 "FINAALG" 842022 NIL FINAALG (NIL T) -9 NIL 843475 NIL) (-365 831495 832536 833680 "FINAALG-" 835059 NIL FINAALG- (NIL T T) -8 NIL NIL NIL) (-364 830890 831250 831353 "FILE" 831425 NIL FILE (NIL T) -8 NIL NIL NIL) (-363 829574 829886 829940 "FILECAT" 830624 NIL FILECAT (NIL T T) -9 NIL 830840 NIL) (-362 827442 828936 828964 "FIELD" 829004 T FIELD (NIL) -9 NIL 829084 NIL) (-361 826062 826447 826958 "FIELD-" 826963 NIL FIELD- (NIL T) -8 NIL NIL NIL) (-360 823940 824697 825044 "FGROUP" 825748 NIL FGROUP (NIL T) -8 NIL NIL NIL) (-359 823030 823194 823414 "FGLMICPK" 823772 NIL FGLMICPK (NIL T NIL) -7 NIL NIL NIL) (-358 818897 822955 823012 "FFX" 823017 NIL FFX (NIL T NIL) -8 NIL NIL NIL) (-357 818498 818559 818694 "FFSLPE" 818830 NIL FFSLPE (NIL T T T) -7 NIL NIL NIL) (-356 814491 815270 816066 "FFPOLY" 817734 NIL FFPOLY (NIL T) -7 NIL NIL NIL) (-355 813995 814031 814240 "FFPOLY2" 814449 NIL FFPOLY2 (NIL T T) -7 NIL NIL NIL) (-354 809881 813914 813977 "FFP" 813982 NIL FFP (NIL T NIL) -8 NIL NIL NIL) (-353 805314 809792 809856 "FF" 809861 NIL FF (NIL NIL NIL) -8 NIL NIL NIL) (-352 800475 804657 804847 "FFNBX" 805168 NIL FFNBX (NIL T NIL) -8 NIL NIL NIL) (-351 795449 799610 799868 "FFNBP" 800329 NIL FFNBP (NIL T NIL) -8 NIL NIL NIL) (-350 790117 794733 794944 "FFNB" 795282 NIL FFNB (NIL NIL NIL) -8 NIL NIL NIL) (-349 788949 789147 789462 "FFINTBAS" 789914 NIL FFINTBAS (NIL T T T) -7 NIL NIL NIL) (-348 785177 787356 787384 "FFIELDC" 788004 T FFIELDC (NIL) -9 NIL 788380 NIL) (-347 783840 784210 784707 "FFIELDC-" 784712 NIL FFIELDC- (NIL T) -8 NIL NIL NIL) (-346 783410 783455 783579 "FFHOM" 783782 NIL FFHOM (NIL T T T) -7 NIL NIL NIL) (-345 781108 781592 782109 "FFF" 782925 NIL FFF (NIL T) -7 NIL NIL NIL) (-344 776761 780850 780951 "FFCGX" 781051 NIL FFCGX (NIL T NIL) -8 NIL NIL NIL) (-343 772428 776493 776600 "FFCGP" 776704 NIL FFCGP (NIL T NIL) -8 NIL NIL NIL) (-342 767646 772155 772263 "FFCG" 772364 NIL FFCG (NIL NIL NIL) -8 NIL NIL NIL) (-341 749479 758517 758603 "FFCAT" 763768 NIL FFCAT (NIL T T T) -9 NIL 765219 NIL) (-340 744677 745724 747038 "FFCAT-" 748268 NIL FFCAT- (NIL T T T T) -8 NIL NIL NIL) (-339 744088 744131 744366 "FFCAT2" 744628 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-338 733300 737060 738280 "FEXPR" 742940 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL NIL) (-337 732300 732735 732776 "FEVALAB" 732860 NIL FEVALAB (NIL T) -9 NIL 733121 NIL) (-336 731459 731669 732007 "FEVALAB-" 732012 NIL FEVALAB- (NIL T T) -8 NIL NIL NIL) (-335 730052 730842 731045 "FDIV" 731358 NIL FDIV (NIL T T T T) -8 NIL NIL NIL) (-334 727118 727833 727948 "FDIVCAT" 729516 NIL FDIVCAT (NIL T T T T) -9 NIL 729953 NIL) (-333 726880 726907 727077 "FDIVCAT-" 727082 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL NIL) (-332 726100 726187 726464 "FDIV2" 726787 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-331 724786 725045 725334 "FCPAK1" 725831 T FCPAK1 (NIL) -7 NIL NIL NIL) (-330 723914 724286 724427 "FCOMP" 724677 NIL FCOMP (NIL T) -8 NIL NIL NIL) (-329 707651 711064 714602 "FC" 720396 T FC (NIL) -8 NIL NIL NIL) (-328 700230 704215 704255 "FAXF" 706057 NIL FAXF (NIL T) -9 NIL 706749 NIL) (-327 697509 698164 698989 "FAXF-" 699454 NIL FAXF- (NIL T T) -8 NIL NIL NIL) (-326 692609 696885 697061 "FARRAY" 697366 NIL FARRAY (NIL T) -8 NIL NIL NIL) (-325 687862 689894 689947 "FAMR" 690970 NIL FAMR (NIL T T) -9 NIL 691430 NIL) (-324 686752 687054 687489 "FAMR-" 687494 NIL FAMR- (NIL T T T) -8 NIL NIL NIL) (-323 685948 686674 686727 "FAMONOID" 686732 NIL FAMONOID (NIL T) -8 NIL NIL NIL) (-322 683760 684444 684497 "FAMONC" 685438 NIL FAMONC (NIL T T) -9 NIL 685824 NIL) (-321 682452 683514 683651 "FAGROUP" 683656 NIL FAGROUP (NIL T) -8 NIL NIL NIL) (-320 680247 680566 680969 "FACUTIL" 682133 NIL FACUTIL (NIL T T T T) -7 NIL NIL NIL) (-319 679346 679531 679753 "FACTFUNC" 680057 NIL FACTFUNC (NIL T) -7 NIL NIL NIL) (-318 671751 678597 678809 "EXPUPXS" 679202 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-317 669234 669774 670360 "EXPRTUBE" 671185 T EXPRTUBE (NIL) -7 NIL NIL NIL) (-316 665428 666020 666757 "EXPRODE" 668573 NIL EXPRODE (NIL T T) -7 NIL NIL NIL) (-315 650802 664083 664511 "EXPR" 665032 NIL EXPR (NIL T) -8 NIL NIL NIL) (-314 645209 645796 646609 "EXPR2UPS" 650100 NIL EXPR2UPS (NIL T T) -7 NIL NIL NIL) (-313 644845 644902 645009 "EXPR2" 645146 NIL EXPR2 (NIL T T) -7 NIL NIL NIL) (-312 636250 643977 644274 "EXPEXPAN" 644682 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL NIL) (-311 636077 636207 636236 "EXIT" 636241 T EXIT (NIL) -8 NIL NIL NIL) (-310 635584 635801 635892 "EXITAST" 636006 T EXITAST (NIL) -8 NIL NIL NIL) (-309 635211 635273 635386 "EVALCYC" 635516 NIL EVALCYC (NIL T) -7 NIL NIL NIL) (-308 634752 634870 634911 "EVALAB" 635081 NIL EVALAB (NIL T) -9 NIL 635185 NIL) (-307 634233 634355 634576 "EVALAB-" 634581 NIL EVALAB- (NIL T T) -8 NIL NIL NIL) (-306 631701 632969 632997 "EUCDOM" 633552 T EUCDOM (NIL) -9 NIL 633902 NIL) (-305 630106 630548 631138 "EUCDOM-" 631143 NIL EUCDOM- (NIL T) -8 NIL NIL NIL) (-304 617646 620404 623154 "ESTOOLS" 627376 T ESTOOLS (NIL) -7 NIL NIL NIL) (-303 617278 617335 617444 "ESTOOLS2" 617583 NIL ESTOOLS2 (NIL T T) -7 NIL NIL NIL) (-302 617029 617071 617151 "ESTOOLS1" 617230 NIL ESTOOLS1 (NIL T) -7 NIL NIL NIL) (-301 610934 612662 612690 "ES" 615458 T ES (NIL) -9 NIL 616867 NIL) (-300 605882 607168 608985 "ES-" 609149 NIL ES- (NIL T) -8 NIL NIL NIL) (-299 602257 603017 603797 "ESCONT" 605122 T ESCONT (NIL) -7 NIL NIL NIL) (-298 602002 602034 602116 "ESCONT1" 602219 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL NIL) (-297 601677 601727 601827 "ES2" 601946 NIL ES2 (NIL T T) -7 NIL NIL NIL) (-296 601307 601365 601474 "ES1" 601613 NIL ES1 (NIL T T) -7 NIL NIL NIL) (-295 600523 600652 600828 "ERROR" 601151 T ERROR (NIL) -7 NIL NIL NIL) (-294 594026 600382 600473 "EQTBL" 600478 NIL EQTBL (NIL T T) -8 NIL NIL NIL) (-293 586583 589340 590789 "EQ" 592610 NIL -3311 (NIL T) -8 NIL NIL NIL) (-292 586215 586272 586381 "EQ2" 586520 NIL EQ2 (NIL T T) -7 NIL NIL NIL) (-291 581507 582553 583646 "EP" 585154 NIL EP (NIL T) -7 NIL NIL NIL) (-290 580089 580390 580707 "ENV" 581210 T ENV (NIL) -8 NIL NIL NIL) (-289 579268 579788 579816 "ENTIRER" 579821 T ENTIRER (NIL) -9 NIL 579867 NIL) (-288 575770 577223 577593 "EMR" 579067 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL NIL) (-287 574914 575099 575153 "ELTAGG" 575533 NIL ELTAGG (NIL T T) -9 NIL 575744 NIL) (-286 574633 574695 574836 "ELTAGG-" 574841 NIL ELTAGG- (NIL T T T) -8 NIL NIL NIL) (-285 574422 574451 574505 "ELTAB" 574589 NIL ELTAB (NIL T T) -9 NIL NIL NIL) (-284 573548 573694 573893 "ELFUTS" 574273 NIL ELFUTS (NIL T T) -7 NIL NIL NIL) (-283 573290 573346 573374 "ELEMFUN" 573479 T ELEMFUN (NIL) -9 NIL NIL NIL) (-282 573160 573181 573249 "ELEMFUN-" 573254 NIL ELEMFUN- (NIL T) -8 NIL NIL NIL) (-281 568051 571260 571301 "ELAGG" 572241 NIL ELAGG (NIL T) -9 NIL 572704 NIL) (-280 566336 566770 567433 "ELAGG-" 567438 NIL ELAGG- (NIL T T) -8 NIL NIL NIL) (-279 564993 565273 565568 "ELABEXPR" 566061 T ELABEXPR (NIL) -8 NIL NIL NIL) (-278 557859 559660 560487 "EFUPXS" 564269 NIL EFUPXS (NIL T T T T) -8 NIL NIL NIL) (-277 551309 553110 553920 "EFULS" 557135 NIL EFULS (NIL T T T) -8 NIL NIL NIL) (-276 548731 549089 549568 "EFSTRUC" 550941 NIL EFSTRUC (NIL T T) -7 NIL NIL NIL) (-275 537803 539368 540928 "EF" 547246 NIL EF (NIL T T) -7 NIL NIL NIL) (-274 536904 537288 537437 "EAB" 537674 T EAB (NIL) -8 NIL NIL NIL) (-273 536113 536863 536891 "E04UCFA" 536896 T E04UCFA (NIL) -8 NIL NIL NIL) (-272 535322 536072 536100 "E04NAFA" 536105 T E04NAFA (NIL) -8 NIL NIL NIL) (-271 534531 535281 535309 "E04MBFA" 535314 T E04MBFA (NIL) -8 NIL NIL NIL) (-270 533740 534490 534518 "E04JAFA" 534523 T E04JAFA (NIL) -8 NIL NIL NIL) (-269 532951 533699 533727 "E04GCFA" 533732 T E04GCFA (NIL) -8 NIL NIL NIL) (-268 532162 532910 532938 "E04FDFA" 532943 T E04FDFA (NIL) -8 NIL NIL NIL) (-267 531371 532121 532149 "E04DGFA" 532154 T E04DGFA (NIL) -8 NIL NIL NIL) (-266 525549 526896 528260 "E04AGNT" 530027 T E04AGNT (NIL) -7 NIL NIL NIL) (-265 524255 524735 524775 "DVARCAT" 525250 NIL DVARCAT (NIL T) -9 NIL 525449 NIL) (-264 523459 523671 523985 "DVARCAT-" 523990 NIL DVARCAT- (NIL T T) -8 NIL NIL NIL) (-263 516359 523258 523387 "DSMP" 523392 NIL DSMP (NIL T T T) -8 NIL NIL NIL) (-262 511169 512304 513372 "DROPT" 515311 T DROPT (NIL) -8 NIL NIL NIL) (-261 510834 510893 510991 "DROPT1" 511104 NIL DROPT1 (NIL T) -7 NIL NIL NIL) (-260 505949 507075 508212 "DROPT0" 509717 T DROPT0 (NIL) -7 NIL NIL NIL) (-259 504294 504619 505005 "DRAWPT" 505583 T DRAWPT (NIL) -7 NIL NIL NIL) (-258 498881 499804 500883 "DRAW" 503268 NIL DRAW (NIL T) -7 NIL NIL NIL) (-257 498514 498567 498685 "DRAWHACK" 498822 NIL DRAWHACK (NIL T) -7 NIL NIL NIL) (-256 497245 497514 497805 "DRAWCX" 498243 T DRAWCX (NIL) -7 NIL NIL NIL) (-255 496761 496829 496980 "DRAWCURV" 497171 NIL DRAWCURV (NIL T T) -7 NIL NIL NIL) (-254 487232 489191 491306 "DRAWCFUN" 494666 T DRAWCFUN (NIL) -7 NIL NIL NIL) (-253 484045 485927 485968 "DQAGG" 486597 NIL DQAGG (NIL T) -9 NIL 486870 NIL) (-252 472324 479023 479106 "DPOLCAT" 480958 NIL DPOLCAT (NIL T T T T) -9 NIL 481503 NIL) (-251 467163 468509 470467 "DPOLCAT-" 470472 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL NIL) (-250 460318 467024 467122 "DPMO" 467127 NIL DPMO (NIL NIL T T) -8 NIL NIL NIL) (-249 453376 460098 460265 "DPMM" 460270 NIL DPMM (NIL NIL T T T) -8 NIL NIL NIL) (-248 453040 453295 453343 "DOMCTOR" 453348 T DOMCTOR (NIL) -8 NIL NIL NIL) (-247 452335 452562 452699 "DOMAIN" 452923 T DOMAIN (NIL) -8 NIL NIL NIL) (-246 446086 451970 452122 "DMP" 452236 NIL DMP (NIL NIL T) -8 NIL NIL NIL) (-245 445686 445742 445886 "DLP" 446024 NIL DLP (NIL T) -7 NIL NIL NIL) (-244 439556 445013 445203 "DLIST" 445528 NIL DLIST (NIL T) -8 NIL NIL NIL) (-243 436400 438409 438450 "DLAGG" 439000 NIL DLAGG (NIL T) -9 NIL 439230 NIL) (-242 435213 435843 435871 "DIVRING" 435963 T DIVRING (NIL) -9 NIL 436046 NIL) (-241 434450 434640 434940 "DIVRING-" 434945 NIL DIVRING- (NIL T) -8 NIL NIL NIL) (-240 432552 432909 433315 "DISPLAY" 434064 T DISPLAY (NIL) -7 NIL NIL NIL) (-239 426494 432466 432529 "DIRPROD" 432534 NIL DIRPROD (NIL NIL T) -8 NIL NIL NIL) (-238 425342 425545 425810 "DIRPROD2" 426287 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL NIL) (-237 414605 420557 420610 "DIRPCAT" 421020 NIL DIRPCAT (NIL NIL T) -9 NIL 421860 NIL) (-236 411931 412573 413454 "DIRPCAT-" 413791 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL NIL) (-235 411218 411378 411564 "DIOSP" 411765 T DIOSP (NIL) -7 NIL NIL NIL) (-234 407920 410130 410171 "DIOPS" 410605 NIL DIOPS (NIL T) -9 NIL 410834 NIL) (-233 407469 407583 407774 "DIOPS-" 407779 NIL DIOPS- (NIL T T) -8 NIL NIL NIL) (-232 406361 406955 406983 "DIFRING" 407170 T DIFRING (NIL) -9 NIL 407280 NIL) (-231 406007 406084 406236 "DIFRING-" 406241 NIL DIFRING- (NIL T) -8 NIL NIL NIL) (-230 403812 405050 405091 "DIFEXT" 405454 NIL DIFEXT (NIL T) -9 NIL 405748 NIL) (-229 402097 402525 403191 "DIFEXT-" 403196 NIL DIFEXT- (NIL T T) -8 NIL NIL NIL) (-228 399419 401629 401670 "DIAGG" 401675 NIL DIAGG (NIL T) -9 NIL 401695 NIL) (-227 398803 398960 399212 "DIAGG-" 399217 NIL DIAGG- (NIL T T) -8 NIL NIL NIL) (-226 394268 397762 398039 "DHMATRIX" 398572 NIL DHMATRIX (NIL T) -8 NIL NIL NIL) (-225 389880 390789 391799 "DFSFUN" 393278 T DFSFUN (NIL) -7 NIL NIL NIL) (-224 384996 388811 389123 "DFLOAT" 389588 T DFLOAT (NIL) -8 NIL NIL NIL) (-223 383224 383505 383901 "DFINTTLS" 384704 NIL DFINTTLS (NIL T T) -7 NIL NIL NIL) (-222 380289 381245 381645 "DERHAM" 382890 NIL DERHAM (NIL T NIL) -8 NIL NIL NIL) (-221 378138 380064 380153 "DEQUEUE" 380233 NIL DEQUEUE (NIL T) -8 NIL NIL NIL) (-220 377353 377486 377682 "DEGRED" 378000 NIL DEGRED (NIL T T) -7 NIL NIL NIL) (-219 373748 374493 375346 "DEFINTRF" 376581 NIL DEFINTRF (NIL T) -7 NIL NIL NIL) (-218 371275 371744 372343 "DEFINTEF" 373267 NIL DEFINTEF (NIL T T) -7 NIL NIL NIL) (-217 370652 370895 371010 "DEFAST" 371180 T DEFAST (NIL) -8 NIL NIL NIL) (-216 364694 370249 370397 "DECIMAL" 370524 T DECIMAL (NIL) -8 NIL NIL NIL) (-215 362206 362664 363170 "DDFACT" 364238 NIL DDFACT (NIL T T) -7 NIL NIL NIL) (-214 361802 361845 361996 "DBLRESP" 362157 NIL DBLRESP (NIL T T T T) -7 NIL NIL NIL) (-213 359701 360035 360395 "DBASE" 361569 NIL DBASE (NIL T) -8 NIL NIL NIL) (-212 358970 359181 359327 "DATAARY" 359600 NIL DATAARY (NIL NIL T) -8 NIL NIL NIL) (-211 358103 358929 358957 "D03FAFA" 358962 T D03FAFA (NIL) -8 NIL NIL NIL) (-210 357237 358062 358090 "D03EEFA" 358095 T D03EEFA (NIL) -8 NIL NIL NIL) (-209 355187 355653 356142 "D03AGNT" 356768 T D03AGNT (NIL) -7 NIL NIL NIL) (-208 354503 355146 355174 "D02EJFA" 355179 T D02EJFA (NIL) -8 NIL NIL NIL) (-207 353819 354462 354490 "D02CJFA" 354495 T D02CJFA (NIL) -8 NIL NIL NIL) (-206 353135 353778 353806 "D02BHFA" 353811 T D02BHFA (NIL) -8 NIL NIL NIL) (-205 352451 353094 353122 "D02BBFA" 353127 T D02BBFA (NIL) -8 NIL NIL NIL) (-204 345649 347237 348843 "D02AGNT" 350865 T D02AGNT (NIL) -7 NIL NIL NIL) (-203 343418 343940 344486 "D01WGTS" 345123 T D01WGTS (NIL) -7 NIL NIL NIL) (-202 342513 343377 343405 "D01TRNS" 343410 T D01TRNS (NIL) -8 NIL NIL NIL) (-201 341608 342472 342500 "D01GBFA" 342505 T D01GBFA (NIL) -8 NIL NIL NIL) (-200 340703 341567 341595 "D01FCFA" 341600 T D01FCFA (NIL) -8 NIL NIL NIL) (-199 339798 340662 340690 "D01ASFA" 340695 T D01ASFA (NIL) -8 NIL NIL NIL) (-198 338893 339757 339785 "D01AQFA" 339790 T D01AQFA (NIL) -8 NIL NIL NIL) (-197 337988 338852 338880 "D01APFA" 338885 T D01APFA (NIL) -8 NIL NIL NIL) (-196 337083 337947 337975 "D01ANFA" 337980 T D01ANFA (NIL) -8 NIL NIL NIL) (-195 336178 337042 337070 "D01AMFA" 337075 T D01AMFA (NIL) -8 NIL NIL NIL) (-194 335273 336137 336165 "D01ALFA" 336170 T D01ALFA (NIL) -8 NIL NIL NIL) (-193 334368 335232 335260 "D01AKFA" 335265 T D01AKFA (NIL) -8 NIL NIL NIL) (-192 333463 334327 334355 "D01AJFA" 334360 T D01AJFA (NIL) -8 NIL NIL NIL) (-191 326760 328311 329872 "D01AGNT" 331922 T D01AGNT (NIL) -7 NIL NIL NIL) (-190 326097 326225 326377 "CYCLOTOM" 326628 T CYCLOTOM (NIL) -7 NIL NIL NIL) (-189 322832 323545 324272 "CYCLES" 325390 T CYCLES (NIL) -7 NIL NIL NIL) (-188 322144 322278 322449 "CVMP" 322693 NIL CVMP (NIL T) -7 NIL NIL NIL) (-187 319915 320173 320549 "CTRIGMNP" 321872 NIL CTRIGMNP (NIL T T) -7 NIL NIL NIL) (-186 319438 319706 319780 "CTOR" 319861 T CTOR (NIL) -8 NIL NIL NIL) (-185 318974 319169 319270 "CTORKIND" 319357 T CTORKIND (NIL) -8 NIL NIL NIL) (-184 318445 318673 318701 "CTORCAT" 318821 T CTORCAT (NIL) -9 NIL 318904 NIL) (-183 318140 318220 318346 "CTORCAT-" 318351 NIL CTORCAT- (NIL T) -8 NIL NIL NIL) (-182 317656 317843 317941 "CTORCALL" 318062 T CTORCALL (NIL) -8 NIL NIL NIL) (-181 317030 317129 317282 "CSTTOOLS" 317553 NIL CSTTOOLS (NIL T T) -7 NIL NIL NIL) (-180 312829 313486 314244 "CRFP" 316342 NIL CRFP (NIL T T) -7 NIL NIL NIL) (-179 312331 312550 312642 "CRCEAST" 312757 T CRCEAST (NIL) -8 NIL NIL NIL) (-178 311378 311563 311791 "CRAPACK" 312135 NIL CRAPACK (NIL T) -7 NIL NIL NIL) (-177 310762 310863 311067 "CPMATCH" 311254 NIL CPMATCH (NIL T T T) -7 NIL NIL NIL) (-176 310487 310515 310621 "CPIMA" 310728 NIL CPIMA (NIL T T T) -7 NIL NIL NIL) (-175 306851 307523 308241 "COORDSYS" 309822 NIL COORDSYS (NIL T) -7 NIL NIL NIL) (-174 306235 306364 306514 "CONTOUR" 306721 T CONTOUR (NIL) -8 NIL NIL NIL) (-173 302161 304238 304730 "CONTFRAC" 305775 NIL CONTFRAC (NIL T) -8 NIL NIL NIL) (-172 302041 302062 302090 "CONDUIT" 302127 T CONDUIT (NIL) -9 NIL NIL NIL) (-171 301214 301734 301762 "COMRING" 301767 T COMRING (NIL) -9 NIL 301819 NIL) (-170 300295 300572 300756 "COMPPROP" 301050 T COMPPROP (NIL) -8 NIL NIL NIL) (-169 299956 299991 300119 "COMPLPAT" 300254 NIL COMPLPAT (NIL T T T) -7 NIL NIL NIL) (-168 290013 299765 299874 "COMPLEX" 299879 NIL COMPLEX (NIL T) -8 NIL NIL NIL) (-167 289649 289706 289813 "COMPLEX2" 289950 NIL COMPLEX2 (NIL T T) -7 NIL NIL NIL) (-166 289367 289402 289500 "COMPFACT" 289608 NIL COMPFACT (NIL T T) -7 NIL NIL NIL) (-165 273540 283760 283800 "COMPCAT" 284804 NIL COMPCAT (NIL T) -9 NIL 286189 NIL) (-164 263056 265979 269606 "COMPCAT-" 269962 NIL COMPCAT- (NIL T T) -8 NIL NIL NIL) (-163 262785 262813 262916 "COMMUPC" 263022 NIL COMMUPC (NIL T T T) -7 NIL NIL NIL) (-162 262580 262613 262672 "COMMONOP" 262746 T COMMONOP (NIL) -7 NIL NIL NIL) (-161 262163 262331 262418 "COMM" 262513 T COMM (NIL) -8 NIL NIL NIL) (-160 261767 261967 262042 "COMMAAST" 262108 T COMMAAST (NIL) -8 NIL NIL NIL) (-159 261016 261210 261238 "COMBOPC" 261576 T COMBOPC (NIL) -9 NIL 261751 NIL) (-158 259912 260122 260364 "COMBINAT" 260806 NIL COMBINAT (NIL T) -7 NIL NIL NIL) (-157 256110 256683 257323 "COMBF" 259334 NIL COMBF (NIL T T) -7 NIL NIL NIL) (-156 254896 255226 255461 "COLOR" 255895 T COLOR (NIL) -8 NIL NIL NIL) (-155 254399 254617 254709 "COLONAST" 254824 T COLONAST (NIL) -8 NIL NIL NIL) (-154 254039 254086 254211 "CMPLXRT" 254346 NIL CMPLXRT (NIL T T) -7 NIL NIL NIL) (-153 253514 253739 253838 "CLLCTAST" 253960 T CLLCTAST (NIL) -8 NIL NIL NIL) (-152 249016 250044 251124 "CLIP" 252454 T CLIP (NIL) -7 NIL NIL NIL) (-151 247398 248122 248361 "CLIF" 248843 NIL CLIF (NIL NIL T NIL) -8 NIL NIL NIL) (-150 243620 245544 245585 "CLAGG" 246514 NIL CLAGG (NIL T) -9 NIL 247050 NIL) (-149 242042 242499 243082 "CLAGG-" 243087 NIL CLAGG- (NIL T T) -8 NIL NIL NIL) (-148 241586 241671 241811 "CINTSLPE" 241951 NIL CINTSLPE (NIL T T) -7 NIL NIL NIL) (-147 239087 239558 240106 "CHVAR" 241114 NIL CHVAR (NIL T T T) -7 NIL NIL NIL) (-146 238330 238850 238878 "CHARZ" 238883 T CHARZ (NIL) -9 NIL 238898 NIL) (-145 238084 238124 238202 "CHARPOL" 238284 NIL CHARPOL (NIL T) -7 NIL NIL NIL) (-144 237211 237764 237792 "CHARNZ" 237839 T CHARNZ (NIL) -9 NIL 237895 NIL) (-143 235200 235901 236236 "CHAR" 236896 T CHAR (NIL) -8 NIL NIL NIL) (-142 234926 234987 235015 "CFCAT" 235126 T CFCAT (NIL) -9 NIL NIL NIL) (-141 234171 234282 234464 "CDEN" 234810 NIL CDEN (NIL T T T) -7 NIL NIL NIL) (-140 230163 233324 233604 "CCLASS" 233911 T CCLASS (NIL) -8 NIL NIL NIL) (-139 229470 229613 229776 "CATEGORY" 230020 T -10 (NIL) -8 NIL NIL NIL) (-138 229134 229389 229437 "CATCTOR" 229442 T CATCTOR (NIL) -8 NIL NIL NIL) (-137 228608 228834 228933 "CATAST" 229055 T CATAST (NIL) -8 NIL NIL NIL) (-136 228111 228329 228421 "CASEAST" 228536 T CASEAST (NIL) -8 NIL NIL NIL) (-135 223163 224140 224893 "CARTEN" 227414 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL NIL) (-134 222271 222419 222640 "CARTEN2" 223010 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL NIL) (-133 220613 221421 221678 "CARD" 222034 T CARD (NIL) -8 NIL NIL NIL) (-132 220216 220417 220492 "CAPSLAST" 220558 T CAPSLAST (NIL) -8 NIL NIL NIL) (-131 219588 219916 219944 "CACHSET" 220076 T CACHSET (NIL) -9 NIL 220153 NIL) (-130 219084 219380 219408 "CABMON" 219458 T CABMON (NIL) -9 NIL 219514 NIL) (-129 218107 218630 218766 "BYTE" 218929 T BYTE (NIL) -8 NIL NIL 219045) (-128 213516 217575 217738 "BYTEBUF" 217964 T BYTEBUF (NIL) -8 NIL NIL NIL) (-127 211073 213208 213315 "BTREE" 213442 NIL BTREE (NIL T) -8 NIL NIL NIL) (-126 208571 210721 210843 "BTOURN" 210983 NIL BTOURN (NIL T) -8 NIL NIL NIL) (-125 205988 208041 208082 "BTCAT" 208150 NIL BTCAT (NIL T) -9 NIL 208227 NIL) (-124 205655 205735 205884 "BTCAT-" 205889 NIL BTCAT- (NIL T T) -8 NIL NIL NIL) (-123 200947 204798 204826 "BTAGG" 205048 T BTAGG (NIL) -9 NIL 205209 NIL) (-122 200437 200562 200768 "BTAGG-" 200773 NIL BTAGG- (NIL T) -8 NIL NIL NIL) (-121 197481 199715 199930 "BSTREE" 200254 NIL BSTREE (NIL T) -8 NIL NIL NIL) (-120 196619 196745 196929 "BRILL" 197337 NIL BRILL (NIL T) -7 NIL NIL NIL) (-119 193318 195345 195386 "BRAGG" 196035 NIL BRAGG (NIL T) -9 NIL 196293 NIL) (-118 191847 192253 192808 "BRAGG-" 192813 NIL BRAGG- (NIL T T) -8 NIL NIL NIL) (-117 185111 191193 191377 "BPADICRT" 191695 NIL BPADICRT (NIL NIL) -8 NIL NIL NIL) (-116 183461 185048 185093 "BPADIC" 185098 NIL BPADIC (NIL NIL) -8 NIL NIL NIL) (-115 183159 183189 183303 "BOUNDZRO" 183425 NIL BOUNDZRO (NIL T T) -7 NIL NIL NIL) (-114 178674 179765 180632 "BOP" 182312 T BOP (NIL) -8 NIL NIL NIL) (-113 176295 176739 177259 "BOP1" 178187 NIL BOP1 (NIL T) -7 NIL NIL NIL) (-112 174997 175719 175912 "BOOLEAN" 176122 T BOOLEAN (NIL) -8 NIL NIL NIL) (-111 174359 174737 174791 "BMODULE" 174796 NIL BMODULE (NIL T T) -9 NIL 174861 NIL) (-110 170189 174157 174230 "BITS" 174306 T BITS (NIL) -8 NIL NIL NIL) (-109 169601 169723 169865 "BINDING" 170067 T BINDING (NIL) -8 NIL NIL NIL) (-108 163646 169200 169347 "BINARY" 169474 T BINARY (NIL) -8 NIL NIL NIL) (-107 161473 162901 162942 "BGAGG" 163202 NIL BGAGG (NIL T) -9 NIL 163339 NIL) (-106 161304 161336 161427 "BGAGG-" 161432 NIL BGAGG- (NIL T T) -8 NIL NIL NIL) (-105 160402 160688 160893 "BFUNCT" 161119 T BFUNCT (NIL) -8 NIL NIL NIL) (-104 159092 159270 159558 "BEZOUT" 160226 NIL BEZOUT (NIL T T T T T) -7 NIL NIL NIL) (-103 155609 157944 158274 "BBTREE" 158795 NIL BBTREE (NIL T) -8 NIL NIL NIL) (-102 155343 155396 155424 "BASTYPE" 155543 T BASTYPE (NIL) -9 NIL NIL NIL) (-101 155196 155224 155297 "BASTYPE-" 155302 NIL BASTYPE- (NIL T) -8 NIL NIL NIL) (-100 154630 154706 154858 "BALFACT" 155107 NIL BALFACT (NIL T T) -7 NIL NIL NIL) (-99 153513 154045 154231 "AUTOMOR" 154475 NIL AUTOMOR (NIL T) -8 NIL NIL NIL) (-98 153239 153244 153270 "ATTREG" 153275 T ATTREG (NIL) -9 NIL NIL NIL) (-97 151518 151936 152288 "ATTRBUT" 152905 T ATTRBUT (NIL) -8 NIL NIL NIL) (-96 151153 151346 151412 "ATTRAST" 151470 T ATTRAST (NIL) -8 NIL NIL NIL) (-95 150689 150802 150828 "ATRIG" 151029 T ATRIG (NIL) -9 NIL NIL NIL) (-94 150498 150539 150626 "ATRIG-" 150631 NIL ATRIG- (NIL T) -8 NIL NIL NIL) (-93 150169 150329 150355 "ASTCAT" 150360 T ASTCAT (NIL) -9 NIL 150390 NIL) (-92 149896 149955 150074 "ASTCAT-" 150079 NIL ASTCAT- (NIL T) -8 NIL NIL NIL) (-91 148093 149672 149760 "ASTACK" 149839 NIL ASTACK (NIL T) -8 NIL NIL NIL) (-90 146598 146895 147260 "ASSOCEQ" 147775 NIL ASSOCEQ (NIL T T) -7 NIL NIL NIL) (-89 145630 146257 146381 "ASP9" 146505 NIL ASP9 (NIL NIL) -8 NIL NIL NIL) (-88 145394 145578 145617 "ASP8" 145622 NIL ASP8 (NIL NIL) -8 NIL NIL NIL) (-87 144263 144999 145141 "ASP80" 145283 NIL ASP80 (NIL NIL) -8 NIL NIL NIL) (-86 143162 143898 144030 "ASP7" 144162 NIL ASP7 (NIL NIL) -8 NIL NIL NIL) (-85 142116 142839 142957 "ASP78" 143075 NIL ASP78 (NIL NIL) -8 NIL NIL NIL) (-84 141085 141796 141913 "ASP77" 142030 NIL ASP77 (NIL NIL) -8 NIL NIL NIL) (-83 139997 140723 140854 "ASP74" 140985 NIL ASP74 (NIL NIL) -8 NIL NIL NIL) (-82 138897 139632 139764 "ASP73" 139896 NIL ASP73 (NIL NIL) -8 NIL NIL NIL) (-81 138001 138723 138823 "ASP6" 138828 NIL ASP6 (NIL NIL) -8 NIL NIL NIL) (-80 136949 137678 137796 "ASP55" 137914 NIL ASP55 (NIL NIL) -8 NIL NIL NIL) (-79 135899 136623 136742 "ASP50" 136861 NIL ASP50 (NIL NIL) -8 NIL NIL NIL) (-78 134987 135600 135710 "ASP4" 135820 NIL ASP4 (NIL NIL) -8 NIL NIL NIL) (-77 134075 134688 134798 "ASP49" 134908 NIL ASP49 (NIL NIL) -8 NIL NIL NIL) (-76 132860 133614 133782 "ASP42" 133964 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-75 131637 132393 132563 "ASP41" 132747 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-74 130587 131314 131432 "ASP35" 131550 NIL ASP35 (NIL NIL) -8 NIL NIL NIL) (-73 130352 130535 130574 "ASP34" 130579 NIL ASP34 (NIL NIL) -8 NIL NIL NIL) (-72 130089 130156 130232 "ASP33" 130307 NIL ASP33 (NIL NIL) -8 NIL NIL NIL) (-71 128984 129724 129856 "ASP31" 129988 NIL ASP31 (NIL NIL) -8 NIL NIL NIL) (-70 128749 128932 128971 "ASP30" 128976 NIL ASP30 (NIL NIL) -8 NIL NIL NIL) (-69 128484 128553 128629 "ASP29" 128704 NIL ASP29 (NIL NIL) -8 NIL NIL NIL) (-68 128249 128432 128471 "ASP28" 128476 NIL ASP28 (NIL NIL) -8 NIL NIL NIL) (-67 128014 128197 128236 "ASP27" 128241 NIL ASP27 (NIL NIL) -8 NIL NIL NIL) (-66 127098 127712 127823 "ASP24" 127934 NIL ASP24 (NIL NIL) -8 NIL NIL NIL) (-65 126175 126900 127012 "ASP20" 127017 NIL ASP20 (NIL NIL) -8 NIL NIL NIL) (-64 125263 125876 125986 "ASP1" 126096 NIL ASP1 (NIL NIL) -8 NIL NIL NIL) (-63 124207 124937 125056 "ASP19" 125175 NIL ASP19 (NIL NIL) -8 NIL NIL NIL) (-62 123944 124011 124087 "ASP12" 124162 NIL ASP12 (NIL NIL) -8 NIL NIL NIL) (-61 122796 123543 123687 "ASP10" 123831 NIL ASP10 (NIL NIL) -8 NIL NIL NIL) (-60 120695 122640 122731 "ARRAY2" 122736 NIL ARRAY2 (NIL T) -8 NIL NIL NIL) (-59 116511 120343 120457 "ARRAY1" 120612 NIL ARRAY1 (NIL T) -8 NIL NIL NIL) (-58 115543 115716 115937 "ARRAY12" 116334 NIL ARRAY12 (NIL T T) -7 NIL NIL NIL) (-57 109902 111773 111848 "ARR2CAT" 114478 NIL ARR2CAT (NIL T T T) -9 NIL 115236 NIL) (-56 107336 108080 109034 "ARR2CAT-" 109039 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL NIL) (-55 106930 107163 107242 "ARITY" 107275 T ARITY (NIL) -8 NIL NIL NIL) (-54 105678 105830 106136 "APPRULE" 106766 NIL APPRULE (NIL T T T) -7 NIL NIL NIL) (-53 105329 105377 105496 "APPLYORE" 105624 NIL APPLYORE (NIL T T T) -7 NIL NIL NIL) (-52 104303 104594 104789 "ANY" 105152 T ANY (NIL) -8 NIL NIL NIL) (-51 103581 103704 103861 "ANY1" 104177 NIL ANY1 (NIL T) -7 NIL NIL NIL) (-50 101146 102018 102345 "ANTISYM" 103305 NIL ANTISYM (NIL T NIL) -8 NIL NIL NIL) (-49 100661 100850 100947 "ANON" 101067 T ANON (NIL) -8 NIL NIL NIL) (-48 94793 99200 99654 "AN" 100225 T AN (NIL) -8 NIL NIL NIL) (-47 91049 92403 92454 "AMR" 93202 NIL AMR (NIL T T) -9 NIL 93802 NIL) (-46 90161 90382 90745 "AMR-" 90750 NIL AMR- (NIL T T T) -8 NIL NIL NIL) (-45 74711 90078 90139 "ALIST" 90144 NIL ALIST (NIL T T) -8 NIL NIL NIL) (-44 71548 74305 74474 "ALGSC" 74629 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-43 68104 68658 69265 "ALGPKG" 70988 NIL ALGPKG (NIL T T) -7 NIL NIL NIL) (-42 67381 67482 67666 "ALGMFACT" 67990 NIL ALGMFACT (NIL T T T) -7 NIL NIL NIL) (-41 63120 63805 64460 "ALGMANIP" 66904 NIL ALGMANIP (NIL T T) -7 NIL NIL NIL) (-40 54526 62746 62896 "ALGFF" 63053 NIL ALGFF (NIL T T T NIL) -8 NIL NIL NIL) (-39 53722 53853 54032 "ALGFACT" 54384 NIL ALGFACT (NIL T) -7 NIL NIL NIL) (-38 52787 53353 53391 "ALGEBRA" 53396 NIL ALGEBRA (NIL T) -9 NIL 53437 NIL) (-37 52505 52564 52696 "ALGEBRA-" 52701 NIL ALGEBRA- (NIL T T) -8 NIL NIL NIL) (-36 34764 50507 50559 "ALAGG" 50695 NIL ALAGG (NIL T T) -9 NIL 50856 NIL) (-35 34300 34413 34439 "AHYP" 34640 T AHYP (NIL) -9 NIL NIL NIL) (-34 33231 33479 33505 "AGG" 34004 T AGG (NIL) -9 NIL 34283 NIL) (-33 32665 32827 33041 "AGG-" 33046 NIL AGG- (NIL T) -8 NIL NIL NIL) (-32 30342 30764 31182 "AF" 32307 NIL AF (NIL T T) -7 NIL NIL NIL) (-31 29849 30067 30157 "ADDAST" 30270 T ADDAST (NIL) -8 NIL NIL NIL) (-30 29118 29376 29532 "ACPLOT" 29711 T ACPLOT (NIL) -8 NIL NIL NIL) (-29 18410 26331 26382 "ACFS" 27093 NIL ACFS (NIL T) -9 NIL 27332 NIL) (-28 16424 16914 17689 "ACFS-" 17694 NIL ACFS- (NIL T T) -8 NIL NIL NIL) (-27 12697 14591 14617 "ACF" 15496 T ACF (NIL) -9 NIL 15908 NIL) (-26 11401 11735 12228 "ACF-" 12233 NIL ACF- (NIL T) -8 NIL NIL NIL) (-25 10999 11168 11194 "ABELSG" 11286 T ABELSG (NIL) -9 NIL 11351 NIL) (-24 10866 10891 10957 "ABELSG-" 10962 NIL ABELSG- (NIL T) -8 NIL NIL NIL) (-23 10235 10496 10522 "ABELMON" 10692 T ABELMON (NIL) -9 NIL 10804 NIL) (-22 9899 9983 10121 "ABELMON-" 10126 NIL ABELMON- (NIL T) -8 NIL NIL NIL) (-21 9233 9579 9605 "ABELGRP" 9730 T ABELGRP (NIL) -9 NIL 9812 NIL) (-20 8696 8825 9041 "ABELGRP-" 9046 NIL ABELGRP- (NIL T) -8 NIL NIL NIL) (-19 4333 8035 8074 "A1AGG" 8079 NIL A1AGG (NIL T) -9 NIL 8119 NIL) (-18 30 1251 2813 "A1AGG-" 2818 NIL A1AGG- (NIL T T) -8 NIL NIL NIL)) \ No newline at end of file
+((-3 3194841 3194846 3194851 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-2 3194826 3194831 3194836 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1 3194811 3194816 3194821 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (0 3194796 3194801 3194806 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1284 3193972 3194671 3194748 "ZMOD" 3194753 NIL ZMOD (NIL NIL) -8 NIL NIL NIL) (-1283 3193082 3193246 3193455 "ZLINDEP" 3193804 NIL ZLINDEP (NIL T) -7 NIL NIL NIL) (-1282 3182386 3184150 3186122 "ZDSOLVE" 3191212 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL NIL) (-1281 3181632 3181773 3181962 "YSTREAM" 3182232 NIL YSTREAM (NIL T) -7 NIL NIL NIL) (-1280 3179443 3180933 3181137 "XRPOLY" 3181475 NIL XRPOLY (NIL T T) -8 NIL NIL NIL) (-1279 3176031 3177314 3177889 "XPR" 3178915 NIL XPR (NIL T T) -8 NIL NIL NIL) (-1278 3173787 3175362 3175566 "XPOLY" 3175862 NIL XPOLY (NIL T) -8 NIL NIL NIL) (-1277 3171578 3172912 3172967 "XPOLYC" 3173255 NIL XPOLYC (NIL T T) -9 NIL 3173368 NIL) (-1276 3167996 3170095 3170483 "XPBWPOLY" 3171236 NIL XPBWPOLY (NIL T T) -8 NIL NIL NIL) (-1275 3163907 3166159 3166201 "XF" 3166822 NIL XF (NIL T) -9 NIL 3167222 NIL) (-1274 3163528 3163616 3163785 "XF-" 3163790 NIL XF- (NIL T T) -8 NIL NIL NIL) (-1273 3158862 3160117 3160172 "XFALG" 3162344 NIL XFALG (NIL T T) -9 NIL 3163133 NIL) (-1272 3157995 3158099 3158304 "XEXPPKG" 3158754 NIL XEXPPKG (NIL T T T) -7 NIL NIL NIL) (-1271 3156139 3157845 3157941 "XDPOLY" 3157946 NIL XDPOLY (NIL T T) -8 NIL NIL NIL) (-1270 3155084 3155650 3155693 "XALG" 3155698 NIL XALG (NIL T) -9 NIL 3155809 NIL) (-1269 3148553 3153061 3153555 "WUTSET" 3154676 NIL WUTSET (NIL T T T T) -8 NIL NIL NIL) (-1268 3146844 3147605 3147928 "WP" 3148364 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL NIL) (-1267 3146473 3146666 3146736 "WHILEAST" 3146796 T WHILEAST (NIL) -8 NIL NIL NIL) (-1266 3145972 3146190 3146284 "WHEREAST" 3146401 T WHEREAST (NIL) -8 NIL NIL NIL) (-1265 3144858 3145056 3145351 "WFFINTBS" 3145769 NIL WFFINTBS (NIL T T T T) -7 NIL NIL NIL) (-1264 3142762 3143189 3143651 "WEIER" 3144430 NIL WEIER (NIL T) -7 NIL NIL NIL) (-1263 3141909 3142333 3142375 "VSPACE" 3142511 NIL VSPACE (NIL T) -9 NIL 3142585 NIL) (-1262 3141747 3141774 3141865 "VSPACE-" 3141870 NIL VSPACE- (NIL T T) -8 NIL NIL NIL) (-1261 3141555 3141598 3141666 "VOID" 3141701 T VOID (NIL) -8 NIL NIL NIL) (-1260 3139691 3140050 3140456 "VIEW" 3141171 T VIEW (NIL) -7 NIL NIL NIL) (-1259 3136116 3136754 3137491 "VIEWDEF" 3138976 T VIEWDEF (NIL) -7 NIL NIL NIL) (-1258 3125452 3127664 3129837 "VIEW3D" 3133965 T VIEW3D (NIL) -8 NIL NIL NIL) (-1257 3117734 3119363 3120942 "VIEW2D" 3123895 T VIEW2D (NIL) -8 NIL NIL NIL) (-1256 3113138 3117504 3117596 "VECTOR" 3117677 NIL VECTOR (NIL T) -8 NIL NIL NIL) (-1255 3111715 3111974 3112292 "VECTOR2" 3112868 NIL VECTOR2 (NIL T T) -7 NIL NIL NIL) (-1254 3105242 3109499 3109542 "VECTCAT" 3110535 NIL VECTCAT (NIL T) -9 NIL 3111121 NIL) (-1253 3104256 3104510 3104900 "VECTCAT-" 3104905 NIL VECTCAT- (NIL T T) -8 NIL NIL NIL) (-1252 3103737 3103907 3104027 "VARIABLE" 3104171 NIL VARIABLE (NIL NIL) -8 NIL NIL NIL) (-1251 3103670 3103675 3103705 "UTYPE" 3103710 T UTYPE (NIL) -9 NIL NIL NIL) (-1250 3102500 3102654 3102916 "UTSODETL" 3103496 NIL UTSODETL (NIL T T T T) -7 NIL NIL NIL) (-1249 3099940 3100400 3100924 "UTSODE" 3102041 NIL UTSODE (NIL T T) -7 NIL NIL NIL) (-1248 3091816 3097566 3098055 "UTS" 3099509 NIL UTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1247 3083059 3088383 3088426 "UTSCAT" 3089538 NIL UTSCAT (NIL T) -9 NIL 3090295 NIL) (-1246 3080414 3081129 3082118 "UTSCAT-" 3082123 NIL UTSCAT- (NIL T T) -8 NIL NIL NIL) (-1245 3080041 3080084 3080217 "UTS2" 3080365 NIL UTS2 (NIL T T T T) -7 NIL NIL NIL) (-1244 3074314 3076879 3076922 "URAGG" 3078992 NIL URAGG (NIL T) -9 NIL 3079715 NIL) (-1243 3071253 3072116 3073239 "URAGG-" 3073244 NIL URAGG- (NIL T T) -8 NIL NIL NIL) (-1242 3066977 3069867 3070339 "UPXSSING" 3070917 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL NIL) (-1241 3059079 3066224 3066497 "UPXS" 3066762 NIL UPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1240 3052192 3058983 3059055 "UPXSCONS" 3059060 NIL UPXSCONS (NIL T T) -8 NIL NIL NIL) (-1239 3042437 3049187 3049249 "UPXSCCA" 3049823 NIL UPXSCCA (NIL T T) -9 NIL 3050056 NIL) (-1238 3042075 3042160 3042334 "UPXSCCA-" 3042339 NIL UPXSCCA- (NIL T T T) -8 NIL NIL NIL) (-1237 3032173 3038696 3038739 "UPXSCAT" 3039387 NIL UPXSCAT (NIL T) -9 NIL 3039995 NIL) (-1236 3031603 3031682 3031861 "UPXS2" 3032088 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1235 3030257 3030510 3030861 "UPSQFREE" 3031346 NIL UPSQFREE (NIL T T) -7 NIL NIL NIL) (-1234 3024045 3027059 3027114 "UPSCAT" 3028275 NIL UPSCAT (NIL T T) -9 NIL 3029049 NIL) (-1233 3023249 3023456 3023783 "UPSCAT-" 3023788 NIL UPSCAT- (NIL T T T) -8 NIL NIL NIL) (-1232 3009099 3017097 3017140 "UPOLYC" 3019241 NIL UPOLYC (NIL T) -9 NIL 3020462 NIL) (-1231 3000428 3002853 3006000 "UPOLYC-" 3006005 NIL UPOLYC- (NIL T T) -8 NIL NIL NIL) (-1230 3000055 3000098 3000231 "UPOLYC2" 3000379 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL NIL) (-1229 2991629 2999738 2999867 "UP" 2999974 NIL UP (NIL NIL T) -8 NIL NIL NIL) (-1228 2990968 2991075 2991239 "UPMP" 2991518 NIL UPMP (NIL T T) -7 NIL NIL NIL) (-1227 2990521 2990602 2990741 "UPDIVP" 2990881 NIL UPDIVP (NIL T T) -7 NIL NIL NIL) (-1226 2989089 2989338 2989654 "UPDECOMP" 2990270 NIL UPDECOMP (NIL T T) -7 NIL NIL NIL) (-1225 2988324 2988436 2988621 "UPCDEN" 2988973 NIL UPCDEN (NIL T T T) -7 NIL NIL NIL) (-1224 2987843 2987912 2988061 "UP2" 2988249 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL NIL) (-1223 2986360 2987047 2987324 "UNISEG" 2987601 NIL UNISEG (NIL T) -8 NIL NIL NIL) (-1222 2985575 2985702 2985907 "UNISEG2" 2986203 NIL UNISEG2 (NIL T T) -7 NIL NIL NIL) (-1221 2984635 2984815 2985041 "UNIFACT" 2985391 NIL UNIFACT (NIL T) -7 NIL NIL NIL) (-1220 2968602 2983812 2984063 "ULS" 2984442 NIL ULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1219 2956642 2968506 2968578 "ULSCONS" 2968583 NIL ULSCONS (NIL T T) -8 NIL NIL NIL) (-1218 2939258 2951200 2951262 "ULSCCAT" 2951900 NIL ULSCCAT (NIL T T) -9 NIL 2952188 NIL) (-1217 2938308 2938553 2938941 "ULSCCAT-" 2938946 NIL ULSCCAT- (NIL T T T) -8 NIL NIL NIL) (-1216 2928183 2934620 2934663 "ULSCAT" 2935526 NIL ULSCAT (NIL T) -9 NIL 2936256 NIL) (-1215 2927613 2927692 2927871 "ULS2" 2928098 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1214 2926750 2927225 2927326 "UINT8" 2927437 T UINT8 (NIL) -8 NIL NIL 2927516) (-1213 2925886 2926361 2926462 "UINT32" 2926573 T UINT32 (NIL) -8 NIL NIL 2926652) (-1212 2925022 2925497 2925598 "UINT16" 2925709 T UINT16 (NIL) -8 NIL NIL 2925788) (-1211 2923425 2924348 2924378 "UFD" 2924590 T UFD (NIL) -9 NIL 2924704 NIL) (-1210 2923219 2923265 2923360 "UFD-" 2923365 NIL UFD- (NIL T) -8 NIL NIL NIL) (-1209 2922301 2922484 2922700 "UDVO" 2923025 T UDVO (NIL) -7 NIL NIL NIL) (-1208 2920117 2920526 2920997 "UDPO" 2921865 NIL UDPO (NIL T) -7 NIL NIL NIL) (-1207 2920050 2920055 2920085 "TYPE" 2920090 T TYPE (NIL) -9 NIL NIL NIL) (-1206 2919837 2920005 2920036 "TYPEAST" 2920041 T TYPEAST (NIL) -8 NIL NIL NIL) (-1205 2918808 2919010 2919250 "TWOFACT" 2919631 NIL TWOFACT (NIL T) -7 NIL NIL NIL) (-1204 2917880 2918217 2918452 "TUPLE" 2918608 NIL TUPLE (NIL T) -8 NIL NIL NIL) (-1203 2915571 2916090 2916629 "TUBETOOL" 2917363 T TUBETOOL (NIL) -7 NIL NIL NIL) (-1202 2914420 2914625 2914866 "TUBE" 2915364 NIL TUBE (NIL T) -8 NIL NIL NIL) (-1201 2909184 2913392 2913675 "TS" 2914172 NIL TS (NIL T) -8 NIL NIL NIL) (-1200 2897851 2901943 2902040 "TSETCAT" 2907309 NIL TSETCAT (NIL T T T T) -9 NIL 2908840 NIL) (-1199 2892586 2894183 2896074 "TSETCAT-" 2896079 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1198 2886849 2887695 2888637 "TRMANIP" 2891722 NIL TRMANIP (NIL T T) -7 NIL NIL NIL) (-1197 2886290 2886353 2886516 "TRIMAT" 2886781 NIL TRIMAT (NIL T T T T) -7 NIL NIL NIL) (-1196 2884086 2884323 2884687 "TRIGMNIP" 2886039 NIL TRIGMNIP (NIL T T) -7 NIL NIL NIL) (-1195 2883606 2883719 2883749 "TRIGCAT" 2883962 T TRIGCAT (NIL) -9 NIL NIL NIL) (-1194 2883275 2883354 2883495 "TRIGCAT-" 2883500 NIL TRIGCAT- (NIL T) -8 NIL NIL NIL) (-1193 2880172 2882133 2882414 "TREE" 2883029 NIL TREE (NIL T) -8 NIL NIL NIL) (-1192 2879446 2879974 2880004 "TRANFUN" 2880039 T TRANFUN (NIL) -9 NIL 2880105 NIL) (-1191 2878725 2878916 2879196 "TRANFUN-" 2879201 NIL TRANFUN- (NIL T) -8 NIL NIL NIL) (-1190 2878529 2878561 2878622 "TOPSP" 2878686 T TOPSP (NIL) -7 NIL NIL NIL) (-1189 2877877 2877992 2878146 "TOOLSIGN" 2878410 NIL TOOLSIGN (NIL T) -7 NIL NIL NIL) (-1188 2876538 2877054 2877293 "TEXTFILE" 2877660 T TEXTFILE (NIL) -8 NIL NIL NIL) (-1187 2874477 2874991 2875420 "TEX" 2876131 T TEX (NIL) -8 NIL NIL NIL) (-1186 2874258 2874289 2874361 "TEX1" 2874440 NIL TEX1 (NIL T) -7 NIL NIL NIL) (-1185 2873906 2873969 2874059 "TEMUTL" 2874190 T TEMUTL (NIL) -7 NIL NIL NIL) (-1184 2872060 2872340 2872665 "TBCMPPK" 2873629 NIL TBCMPPK (NIL T T) -7 NIL NIL NIL) (-1183 2863948 2870220 2870276 "TBAGG" 2870676 NIL TBAGG (NIL T T) -9 NIL 2870887 NIL) (-1182 2859018 2860506 2862260 "TBAGG-" 2862265 NIL TBAGG- (NIL T T T) -8 NIL NIL NIL) (-1181 2858402 2858509 2858654 "TANEXP" 2858907 NIL TANEXP (NIL T) -7 NIL NIL NIL) (-1180 2851903 2858259 2858352 "TABLE" 2858357 NIL TABLE (NIL T T) -8 NIL NIL NIL) (-1179 2851315 2851414 2851552 "TABLEAU" 2851800 NIL TABLEAU (NIL T) -8 NIL NIL NIL) (-1178 2845923 2847143 2848391 "TABLBUMP" 2850101 NIL TABLBUMP (NIL T) -7 NIL NIL NIL) (-1177 2845351 2845451 2845579 "SYSTEM" 2845817 T SYSTEM (NIL) -7 NIL NIL NIL) (-1176 2841814 2842509 2843292 "SYSSOLP" 2844602 NIL SYSSOLP (NIL T) -7 NIL NIL NIL) (-1175 2840871 2841338 2841451 "SYSNNI" 2841637 NIL SYSNNI (NIL NIL) -8 NIL NIL 2841716) (-1174 2840324 2840729 2840771 "SYSINT" 2840776 NIL SYSINT (NIL NIL) -8 NIL NIL 2840784) (-1173 2836658 2837585 2838301 "SYNTAX" 2839630 T SYNTAX (NIL) -8 NIL NIL NIL) (-1172 2833816 2834418 2835050 "SYMTAB" 2836048 T SYMTAB (NIL) -8 NIL NIL NIL) (-1171 2829065 2829967 2830950 "SYMS" 2832855 T SYMS (NIL) -8 NIL NIL NIL) (-1170 2826337 2828523 2828753 "SYMPOLY" 2828870 NIL SYMPOLY (NIL T) -8 NIL NIL NIL) (-1169 2825854 2825929 2826052 "SYMFUNC" 2826249 NIL SYMFUNC (NIL T) -7 NIL NIL NIL) (-1168 2821906 2823166 2823979 "SYMBOL" 2825063 T SYMBOL (NIL) -8 NIL NIL NIL) (-1167 2815445 2817134 2818854 "SWITCH" 2820208 T SWITCH (NIL) -8 NIL NIL NIL) (-1166 2808715 2814266 2814569 "SUTS" 2815200 NIL SUTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1165 2800816 2807962 2808235 "SUPXS" 2808500 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1164 2792346 2800434 2800560 "SUP" 2800725 NIL SUP (NIL T) -8 NIL NIL NIL) (-1163 2791505 2791632 2791849 "SUPFRACF" 2792214 NIL SUPFRACF (NIL T T T T) -7 NIL NIL NIL) (-1162 2791126 2791185 2791298 "SUP2" 2791440 NIL SUP2 (NIL T T) -7 NIL NIL NIL) (-1161 2789539 2789813 2790176 "SUMRF" 2790825 NIL SUMRF (NIL T) -7 NIL NIL NIL) (-1160 2788853 2788919 2789118 "SUMFS" 2789460 NIL SUMFS (NIL T T) -7 NIL NIL NIL) (-1159 2772860 2788030 2788281 "SULS" 2788660 NIL SULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1158 2772489 2772682 2772752 "SUCHTAST" 2772812 T SUCHTAST (NIL) -8 NIL NIL NIL) (-1157 2771811 2772014 2772154 "SUCH" 2772397 NIL SUCH (NIL T T) -8 NIL NIL NIL) (-1156 2765705 2766717 2767676 "SUBSPACE" 2770899 NIL SUBSPACE (NIL NIL T) -8 NIL NIL NIL) (-1155 2765135 2765225 2765389 "SUBRESP" 2765593 NIL SUBRESP (NIL T T) -7 NIL NIL NIL) (-1154 2758504 2759800 2761111 "STTF" 2763871 NIL STTF (NIL T) -7 NIL NIL NIL) (-1153 2752677 2753797 2754944 "STTFNC" 2757404 NIL STTFNC (NIL T) -7 NIL NIL NIL) (-1152 2743992 2745859 2747653 "STTAYLOR" 2750918 NIL STTAYLOR (NIL T) -7 NIL NIL NIL) (-1151 2737236 2743856 2743939 "STRTBL" 2743944 NIL STRTBL (NIL T) -8 NIL NIL NIL) (-1150 2732627 2737191 2737222 "STRING" 2737227 T STRING (NIL) -8 NIL NIL NIL) (-1149 2727515 2732000 2732030 "STRICAT" 2732089 T STRICAT (NIL) -9 NIL 2732151 NIL) (-1148 2720325 2725134 2725745 "STREAM" 2726939 NIL STREAM (NIL T) -8 NIL NIL NIL) (-1147 2719835 2719912 2720056 "STREAM3" 2720242 NIL STREAM3 (NIL T T T) -7 NIL NIL NIL) (-1146 2718817 2719000 2719235 "STREAM2" 2719648 NIL STREAM2 (NIL T T) -7 NIL NIL NIL) (-1145 2718505 2718557 2718650 "STREAM1" 2718759 NIL STREAM1 (NIL T) -7 NIL NIL NIL) (-1144 2717521 2717702 2717933 "STINPROD" 2718321 NIL STINPROD (NIL T) -7 NIL NIL NIL) (-1143 2717099 2717283 2717313 "STEP" 2717393 T STEP (NIL) -9 NIL 2717471 NIL) (-1142 2710642 2716998 2717075 "STBL" 2717080 NIL STBL (NIL T T NIL) -8 NIL NIL NIL) (-1141 2705816 2709863 2709906 "STAGG" 2710059 NIL STAGG (NIL T) -9 NIL 2710148 NIL) (-1140 2703518 2704120 2704992 "STAGG-" 2704997 NIL STAGG- (NIL T T) -8 NIL NIL NIL) (-1139 2701713 2703288 2703380 "STACK" 2703461 NIL STACK (NIL T) -8 NIL NIL NIL) (-1138 2694438 2699854 2700310 "SREGSET" 2701343 NIL SREGSET (NIL T T T T) -8 NIL NIL NIL) (-1137 2686864 2688232 2689745 "SRDCMPK" 2693044 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1136 2679831 2684304 2684334 "SRAGG" 2685637 T SRAGG (NIL) -9 NIL 2686245 NIL) (-1135 2678848 2679103 2679482 "SRAGG-" 2679487 NIL SRAGG- (NIL T) -8 NIL NIL NIL) (-1134 2673343 2677795 2678216 "SQMATRIX" 2678474 NIL SQMATRIX (NIL NIL T) -8 NIL NIL NIL) (-1133 2667092 2670061 2670788 "SPLTREE" 2672688 NIL SPLTREE (NIL T T) -8 NIL NIL NIL) (-1132 2663082 2663748 2664394 "SPLNODE" 2666518 NIL SPLNODE (NIL T T) -8 NIL NIL NIL) (-1131 2662129 2662362 2662392 "SPFCAT" 2662836 T SPFCAT (NIL) -9 NIL NIL NIL) (-1130 2660866 2661076 2661340 "SPECOUT" 2661887 T SPECOUT (NIL) -7 NIL NIL NIL) (-1129 2652518 2654262 2654292 "SPADXPT" 2658684 T SPADXPT (NIL) -9 NIL 2660718 NIL) (-1128 2652279 2652319 2652388 "SPADPRSR" 2652471 T SPADPRSR (NIL) -7 NIL NIL NIL) (-1127 2650462 2652234 2652265 "SPADAST" 2652270 T SPADAST (NIL) -8 NIL NIL NIL) (-1126 2642433 2644180 2644223 "SPACEC" 2648596 NIL SPACEC (NIL T) -9 NIL 2650412 NIL) (-1125 2640604 2642365 2642414 "SPACE3" 2642419 NIL SPACE3 (NIL T) -8 NIL NIL NIL) (-1124 2639356 2639527 2639818 "SORTPAK" 2640409 NIL SORTPAK (NIL T T) -7 NIL NIL NIL) (-1123 2637406 2637709 2638128 "SOLVETRA" 2639020 NIL SOLVETRA (NIL T) -7 NIL NIL NIL) (-1122 2636417 2636639 2636913 "SOLVESER" 2637179 NIL SOLVESER (NIL T) -7 NIL NIL NIL) (-1121 2631637 2632518 2633520 "SOLVERAD" 2635469 NIL SOLVERAD (NIL T) -7 NIL NIL NIL) (-1120 2627452 2628061 2628790 "SOLVEFOR" 2631004 NIL SOLVEFOR (NIL T T) -7 NIL NIL NIL) (-1119 2621749 2626801 2626898 "SNTSCAT" 2626903 NIL SNTSCAT (NIL T T T T) -9 NIL 2626973 NIL) (-1118 2615892 2620072 2620463 "SMTS" 2621439 NIL SMTS (NIL T T T) -8 NIL NIL NIL) (-1117 2610343 2615780 2615857 "SMP" 2615862 NIL SMP (NIL T T) -8 NIL NIL NIL) (-1116 2608502 2608803 2609201 "SMITH" 2610040 NIL SMITH (NIL T T T T) -7 NIL NIL NIL) (-1115 2601397 2605553 2605656 "SMATCAT" 2607007 NIL SMATCAT (NIL NIL T T T) -9 NIL 2607557 NIL) (-1114 2598337 2599160 2600338 "SMATCAT-" 2600343 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL NIL) (-1113 2596050 2597573 2597616 "SKAGG" 2597877 NIL SKAGG (NIL T) -9 NIL 2598012 NIL) (-1112 2592392 2595466 2595661 "SINT" 2595848 T SINT (NIL) -8 NIL NIL 2596021) (-1111 2592164 2592202 2592268 "SIMPAN" 2592348 T SIMPAN (NIL) -7 NIL NIL NIL) (-1110 2591471 2591699 2591839 "SIG" 2592046 T SIG (NIL) -8 NIL NIL NIL) (-1109 2590309 2590530 2590805 "SIGNRF" 2591230 NIL SIGNRF (NIL T) -7 NIL NIL NIL) (-1108 2589114 2589265 2589556 "SIGNEF" 2590138 NIL SIGNEF (NIL T T) -7 NIL NIL NIL) (-1107 2588447 2588697 2588821 "SIGAST" 2589012 T SIGAST (NIL) -8 NIL NIL NIL) (-1106 2586137 2586591 2587097 "SHP" 2587988 NIL SHP (NIL T NIL) -7 NIL NIL NIL) (-1105 2580043 2586038 2586114 "SHDP" 2586119 NIL SHDP (NIL NIL NIL T) -8 NIL NIL NIL) (-1104 2579642 2579808 2579838 "SGROUP" 2579931 T SGROUP (NIL) -9 NIL 2579993 NIL) (-1103 2579500 2579526 2579599 "SGROUP-" 2579604 NIL SGROUP- (NIL T) -8 NIL NIL NIL) (-1102 2576336 2577033 2577756 "SGCF" 2578799 T SGCF (NIL) -7 NIL NIL NIL) (-1101 2570731 2575783 2575880 "SFRTCAT" 2575885 NIL SFRTCAT (NIL T T T T) -9 NIL 2575924 NIL) (-1100 2564155 2565170 2566306 "SFRGCD" 2569714 NIL SFRGCD (NIL T T T T T) -7 NIL NIL NIL) (-1099 2557283 2558354 2559540 "SFQCMPK" 2563088 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1098 2556905 2556994 2557104 "SFORT" 2557224 NIL SFORT (NIL T T) -8 NIL NIL NIL) (-1097 2556050 2556745 2556866 "SEXOF" 2556871 NIL SEXOF (NIL T T T T T) -8 NIL NIL NIL) (-1096 2555184 2555931 2555999 "SEX" 2556004 T SEX (NIL) -8 NIL NIL NIL) (-1095 2550723 2551412 2551507 "SEXCAT" 2554444 NIL SEXCAT (NIL T T T T T) -9 NIL 2555022 NIL) (-1094 2547903 2550657 2550705 "SET" 2550710 NIL SET (NIL T) -8 NIL NIL NIL) (-1093 2546154 2546616 2546921 "SETMN" 2547644 NIL SETMN (NIL NIL NIL) -8 NIL NIL NIL) (-1092 2545760 2545886 2545916 "SETCAT" 2546033 T SETCAT (NIL) -9 NIL 2546118 NIL) (-1091 2545540 2545592 2545691 "SETCAT-" 2545696 NIL SETCAT- (NIL T) -8 NIL NIL NIL) (-1090 2541927 2544001 2544044 "SETAGG" 2544914 NIL SETAGG (NIL T) -9 NIL 2545254 NIL) (-1089 2541385 2541501 2541738 "SETAGG-" 2541743 NIL SETAGG- (NIL T T) -8 NIL NIL NIL) (-1088 2540855 2541081 2541182 "SEQAST" 2541306 T SEQAST (NIL) -8 NIL NIL NIL) (-1087 2540054 2540348 2540409 "SEGXCAT" 2540695 NIL SEGXCAT (NIL T T) -9 NIL 2540815 NIL) (-1086 2539110 2539720 2539902 "SEG" 2539907 NIL SEG (NIL T) -8 NIL NIL NIL) (-1085 2538089 2538303 2538346 "SEGCAT" 2538868 NIL SEGCAT (NIL T) -9 NIL 2539089 NIL) (-1084 2537138 2537468 2537668 "SEGBIND" 2537924 NIL SEGBIND (NIL T) -8 NIL NIL NIL) (-1083 2536759 2536818 2536931 "SEGBIND2" 2537073 NIL SEGBIND2 (NIL T T) -7 NIL NIL NIL) (-1082 2536360 2536560 2536637 "SEGAST" 2536704 T SEGAST (NIL) -8 NIL NIL NIL) (-1081 2535579 2535705 2535909 "SEG2" 2536204 NIL SEG2 (NIL T T) -7 NIL NIL NIL) (-1080 2535016 2535514 2535561 "SDVAR" 2535566 NIL SDVAR (NIL T) -8 NIL NIL NIL) (-1079 2527306 2534786 2534916 "SDPOL" 2534921 NIL SDPOL (NIL T) -8 NIL NIL NIL) (-1078 2525899 2526165 2526484 "SCPKG" 2527021 NIL SCPKG (NIL T) -7 NIL NIL NIL) (-1077 2525035 2525215 2525415 "SCOPE" 2525721 T SCOPE (NIL) -8 NIL NIL NIL) (-1076 2524256 2524389 2524568 "SCACHE" 2524890 NIL SCACHE (NIL T) -7 NIL NIL NIL) (-1075 2523928 2524088 2524118 "SASTCAT" 2524123 T SASTCAT (NIL) -9 NIL 2524136 NIL) (-1074 2523442 2523763 2523839 "SAOS" 2523874 T SAOS (NIL) -8 NIL NIL NIL) (-1073 2523007 2523042 2523215 "SAERFFC" 2523401 NIL SAERFFC (NIL T T T) -7 NIL NIL NIL) (-1072 2516981 2522904 2522984 "SAE" 2522989 NIL SAE (NIL T T NIL) -8 NIL NIL NIL) (-1071 2516574 2516609 2516768 "SAEFACT" 2516940 NIL SAEFACT (NIL T T T) -7 NIL NIL NIL) (-1070 2514895 2515209 2515610 "RURPK" 2516240 NIL RURPK (NIL T NIL) -7 NIL NIL NIL) (-1069 2513531 2513810 2514122 "RULESET" 2514729 NIL RULESET (NIL T T T) -8 NIL NIL NIL) (-1068 2510718 2511221 2511686 "RULE" 2513212 NIL RULE (NIL T T T) -8 NIL NIL NIL) (-1067 2510357 2510512 2510595 "RULECOLD" 2510670 NIL RULECOLD (NIL NIL) -8 NIL NIL NIL) (-1066 2509855 2510074 2510168 "RSTRCAST" 2510285 T RSTRCAST (NIL) -8 NIL NIL NIL) (-1065 2504704 2505498 2506418 "RSETGCD" 2509054 NIL RSETGCD (NIL T T T T T) -7 NIL NIL NIL) (-1064 2493961 2499013 2499110 "RSETCAT" 2503229 NIL RSETCAT (NIL T T T T) -9 NIL 2504326 NIL) (-1063 2491888 2492427 2493251 "RSETCAT-" 2493256 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1062 2484275 2485650 2487170 "RSDCMPK" 2490487 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1061 2482280 2482721 2482795 "RRCC" 2483881 NIL RRCC (NIL T T) -9 NIL 2484225 NIL) (-1060 2481631 2481805 2482084 "RRCC-" 2482089 NIL RRCC- (NIL T T T) -8 NIL NIL NIL) (-1059 2481101 2481327 2481428 "RPTAST" 2481552 T RPTAST (NIL) -8 NIL NIL NIL) (-1058 2455107 2464694 2464761 "RPOLCAT" 2475425 NIL RPOLCAT (NIL T T T) -9 NIL 2478584 NIL) (-1057 2446607 2448945 2452067 "RPOLCAT-" 2452072 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL NIL) (-1056 2437654 2444818 2445300 "ROUTINE" 2446147 T ROUTINE (NIL) -8 NIL NIL NIL) (-1055 2434487 2437280 2437420 "ROMAN" 2437536 T ROMAN (NIL) -8 NIL NIL NIL) (-1054 2432762 2433347 2433607 "ROIRC" 2434292 NIL ROIRC (NIL T T) -8 NIL NIL NIL) (-1053 2429155 2431398 2431428 "RNS" 2431732 T RNS (NIL) -9 NIL 2432005 NIL) (-1052 2427664 2428047 2428581 "RNS-" 2428656 NIL RNS- (NIL T) -8 NIL NIL NIL) (-1051 2427113 2427495 2427525 "RNG" 2427530 T RNG (NIL) -9 NIL 2427551 NIL) (-1050 2426505 2426867 2426910 "RMODULE" 2426972 NIL RMODULE (NIL T) -9 NIL 2427014 NIL) (-1049 2425341 2425435 2425771 "RMCAT2" 2426406 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL NIL) (-1048 2422218 2424687 2424984 "RMATRIX" 2425103 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL NIL) (-1047 2415160 2417394 2417509 "RMATCAT" 2420868 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2421850 NIL) (-1046 2414535 2414682 2414989 "RMATCAT-" 2414994 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL NIL) (-1045 2414102 2414177 2414305 "RINTERP" 2414454 NIL RINTERP (NIL NIL T) -7 NIL NIL NIL) (-1044 2413235 2413755 2413785 "RING" 2413841 T RING (NIL) -9 NIL 2413927 NIL) (-1043 2413027 2413071 2413168 "RING-" 2413173 NIL RING- (NIL T) -8 NIL NIL NIL) (-1042 2411868 2412105 2412363 "RIDIST" 2412791 T RIDIST (NIL) -7 NIL NIL NIL) (-1041 2403184 2411336 2411542 "RGCHAIN" 2411716 NIL RGCHAIN (NIL T NIL) -8 NIL NIL NIL) (-1040 2402560 2402940 2402981 "RGBCSPC" 2403039 NIL RGBCSPC (NIL T) -9 NIL 2403091 NIL) (-1039 2401744 2402099 2402140 "RGBCMDL" 2402372 NIL RGBCMDL (NIL T) -9 NIL 2402486 NIL) (-1038 2398738 2399352 2400022 "RF" 2401108 NIL RF (NIL T) -7 NIL NIL NIL) (-1037 2398384 2398447 2398550 "RFFACTOR" 2398669 NIL RFFACTOR (NIL T) -7 NIL NIL NIL) (-1036 2398109 2398144 2398241 "RFFACT" 2398343 NIL RFFACT (NIL T) -7 NIL NIL NIL) (-1035 2396226 2396590 2396972 "RFDIST" 2397749 T RFDIST (NIL) -7 NIL NIL NIL) (-1034 2395679 2395771 2395934 "RETSOL" 2396128 NIL RETSOL (NIL T T) -7 NIL NIL NIL) (-1033 2395315 2395395 2395438 "RETRACT" 2395571 NIL RETRACT (NIL T) -9 NIL 2395658 NIL) (-1032 2395164 2395189 2395276 "RETRACT-" 2395281 NIL RETRACT- (NIL T T) -8 NIL NIL NIL) (-1031 2394793 2394986 2395056 "RETAST" 2395116 T RETAST (NIL) -8 NIL NIL NIL) (-1030 2387647 2394446 2394573 "RESULT" 2394688 T RESULT (NIL) -8 NIL NIL NIL) (-1029 2386273 2386916 2387115 "RESRING" 2387550 NIL RESRING (NIL T T T T NIL) -8 NIL NIL NIL) (-1028 2385909 2385958 2386056 "RESLATC" 2386210 NIL RESLATC (NIL T) -7 NIL NIL NIL) (-1027 2385615 2385649 2385756 "REPSQ" 2385868 NIL REPSQ (NIL T) -7 NIL NIL NIL) (-1026 2383037 2383617 2384219 "REP" 2385035 T REP (NIL) -7 NIL NIL NIL) (-1025 2382735 2382769 2382880 "REPDB" 2382996 NIL REPDB (NIL T) -7 NIL NIL NIL) (-1024 2376645 2378024 2379247 "REP2" 2381547 NIL REP2 (NIL T) -7 NIL NIL NIL) (-1023 2373022 2373703 2374511 "REP1" 2375872 NIL REP1 (NIL T) -7 NIL NIL NIL) (-1022 2365748 2371163 2371619 "REGSET" 2372652 NIL REGSET (NIL T T T T) -8 NIL NIL NIL) (-1021 2364561 2364896 2365146 "REF" 2365533 NIL REF (NIL T) -8 NIL NIL NIL) (-1020 2363938 2364041 2364208 "REDORDER" 2364445 NIL REDORDER (NIL T T) -7 NIL NIL NIL) (-1019 2359943 2363151 2363378 "RECLOS" 2363766 NIL RECLOS (NIL T) -8 NIL NIL NIL) (-1018 2358995 2359176 2359391 "REALSOLV" 2359750 T REALSOLV (NIL) -7 NIL NIL NIL) (-1017 2358841 2358882 2358912 "REAL" 2358917 T REAL (NIL) -9 NIL 2358952 NIL) (-1016 2355324 2356126 2357010 "REAL0Q" 2358006 NIL REAL0Q (NIL T) -7 NIL NIL NIL) (-1015 2350925 2351913 2352974 "REAL0" 2354305 NIL REAL0 (NIL T) -7 NIL NIL NIL) (-1014 2350423 2350642 2350736 "RDUCEAST" 2350853 T RDUCEAST (NIL) -8 NIL NIL NIL) (-1013 2349828 2349900 2350107 "RDIV" 2350345 NIL RDIV (NIL T T T T T) -7 NIL NIL NIL) (-1012 2348896 2349070 2349283 "RDIST" 2349650 NIL RDIST (NIL T) -7 NIL NIL NIL) (-1011 2347493 2347780 2348152 "RDETRS" 2348604 NIL RDETRS (NIL T T) -7 NIL NIL NIL) (-1010 2345305 2345759 2346297 "RDETR" 2347035 NIL RDETR (NIL T T) -7 NIL NIL NIL) (-1009 2343916 2344194 2344598 "RDEEFS" 2345021 NIL RDEEFS (NIL T T) -7 NIL NIL NIL) (-1008 2342411 2342717 2343149 "RDEEF" 2343604 NIL RDEEF (NIL T T) -7 NIL NIL NIL) (-1007 2336672 2339547 2339577 "RCFIELD" 2340872 T RCFIELD (NIL) -9 NIL 2341602 NIL) (-1006 2334736 2335240 2335936 "RCFIELD-" 2336011 NIL RCFIELD- (NIL T) -8 NIL NIL NIL) (-1005 2331052 2332837 2332880 "RCAGG" 2333964 NIL RCAGG (NIL T) -9 NIL 2334429 NIL) (-1004 2330680 2330774 2330937 "RCAGG-" 2330942 NIL RCAGG- (NIL T T) -8 NIL NIL NIL) (-1003 2330015 2330127 2330292 "RATRET" 2330564 NIL RATRET (NIL T) -7 NIL NIL NIL) (-1002 2329568 2329635 2329756 "RATFACT" 2329943 NIL RATFACT (NIL T) -7 NIL NIL NIL) (-1001 2328876 2328996 2329148 "RANDSRC" 2329438 T RANDSRC (NIL) -7 NIL NIL NIL) (-1000 2328610 2328654 2328727 "RADUTIL" 2328825 T RADUTIL (NIL) -7 NIL NIL NIL) (-999 2321772 2327452 2327760 "RADIX" 2328334 NIL RADIX (NIL NIL) -8 NIL NIL NIL) (-998 2313429 2321616 2321744 "RADFF" 2321749 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL NIL) (-997 2313081 2313156 2313184 "RADCAT" 2313341 T RADCAT (NIL) -9 NIL NIL NIL) (-996 2312866 2312914 2313011 "RADCAT-" 2313016 NIL RADCAT- (NIL T) -8 NIL NIL NIL) (-995 2311017 2312641 2312730 "QUEUE" 2312810 NIL QUEUE (NIL T) -8 NIL NIL NIL) (-994 2307593 2310954 2310999 "QUAT" 2311004 NIL QUAT (NIL T) -8 NIL NIL NIL) (-993 2307231 2307274 2307401 "QUATCT2" 2307544 NIL QUATCT2 (NIL T T T T) -7 NIL NIL NIL) (-992 2300978 2304280 2304320 "QUATCAT" 2305100 NIL QUATCAT (NIL T) -9 NIL 2305866 NIL) (-991 2297122 2298159 2299546 "QUATCAT-" 2299640 NIL QUATCAT- (NIL T T) -8 NIL NIL NIL) (-990 2294642 2296206 2296247 "QUAGG" 2296622 NIL QUAGG (NIL T) -9 NIL 2296797 NIL) (-989 2294274 2294467 2294535 "QQUTAST" 2294594 T QQUTAST (NIL) -8 NIL NIL NIL) (-988 2293199 2293672 2293844 "QFORM" 2294146 NIL QFORM (NIL NIL T) -8 NIL NIL NIL) (-987 2284411 2289616 2289656 "QFCAT" 2290314 NIL QFCAT (NIL T) -9 NIL 2291315 NIL) (-986 2279983 2281184 2282775 "QFCAT-" 2282869 NIL QFCAT- (NIL T T) -8 NIL NIL NIL) (-985 2279621 2279664 2279791 "QFCAT2" 2279934 NIL QFCAT2 (NIL T T T T) -7 NIL NIL NIL) (-984 2279081 2279191 2279321 "QEQUAT" 2279511 T QEQUAT (NIL) -8 NIL NIL NIL) (-983 2272229 2273300 2274484 "QCMPACK" 2278014 NIL QCMPACK (NIL T T T T T) -7 NIL NIL NIL) (-982 2269805 2270226 2270654 "QALGSET" 2271884 NIL QALGSET (NIL T T T T) -8 NIL NIL NIL) (-981 2269050 2269224 2269456 "QALGSET2" 2269625 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL NIL) (-980 2267741 2267964 2268281 "PWFFINTB" 2268823 NIL PWFFINTB (NIL T T T T) -7 NIL NIL NIL) (-979 2265923 2266091 2266445 "PUSHVAR" 2267555 NIL PUSHVAR (NIL T T T T) -7 NIL NIL NIL) (-978 2261841 2262895 2262936 "PTRANFN" 2264820 NIL PTRANFN (NIL T) -9 NIL NIL NIL) (-977 2260243 2260534 2260856 "PTPACK" 2261552 NIL PTPACK (NIL T) -7 NIL NIL NIL) (-976 2259875 2259932 2260041 "PTFUNC2" 2260180 NIL PTFUNC2 (NIL T T) -7 NIL NIL NIL) (-975 2254402 2258747 2258788 "PTCAT" 2259084 NIL PTCAT (NIL T) -9 NIL 2259237 NIL) (-974 2254060 2254095 2254219 "PSQFR" 2254361 NIL PSQFR (NIL T T T T) -7 NIL NIL NIL) (-973 2252655 2252953 2253287 "PSEUDLIN" 2253758 NIL PSEUDLIN (NIL T) -7 NIL NIL NIL) (-972 2239425 2241789 2244113 "PSETPK" 2250415 NIL PSETPK (NIL T T T T) -7 NIL NIL NIL) (-971 2232469 2235183 2235279 "PSETCAT" 2238300 NIL PSETCAT (NIL T T T T) -9 NIL 2239114 NIL) (-970 2230305 2230939 2231760 "PSETCAT-" 2231765 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-969 2229654 2229819 2229847 "PSCURVE" 2230115 T PSCURVE (NIL) -9 NIL 2230282 NIL) (-968 2226010 2227492 2227557 "PSCAT" 2228401 NIL PSCAT (NIL T T T) -9 NIL 2228641 NIL) (-967 2225073 2225289 2225689 "PSCAT-" 2225694 NIL PSCAT- (NIL T T T T) -8 NIL NIL NIL) (-966 2223805 2224438 2224643 "PRTITION" 2224888 T PRTITION (NIL) -8 NIL NIL NIL) (-965 2223307 2223526 2223618 "PRTDAST" 2223733 T PRTDAST (NIL) -8 NIL NIL NIL) (-964 2212405 2214611 2216799 "PRS" 2221169 NIL PRS (NIL T T) -7 NIL NIL NIL) (-963 2210263 2211755 2211795 "PRQAGG" 2211978 NIL PRQAGG (NIL T) -9 NIL 2212080 NIL) (-962 2209649 2209878 2209906 "PROPLOG" 2210091 T PROPLOG (NIL) -9 NIL 2210213 NIL) (-961 2206819 2207463 2207927 "PROPFRML" 2209217 NIL PROPFRML (NIL T) -8 NIL NIL NIL) (-960 2206279 2206389 2206519 "PROPERTY" 2206709 T PROPERTY (NIL) -8 NIL NIL NIL) (-959 2200364 2204445 2205265 "PRODUCT" 2205505 NIL PRODUCT (NIL T T) -8 NIL NIL NIL) (-958 2197677 2199822 2200056 "PR" 2200175 NIL PR (NIL T T) -8 NIL NIL NIL) (-957 2197473 2197505 2197564 "PRINT" 2197638 T PRINT (NIL) -7 NIL NIL NIL) (-956 2196813 2196930 2197082 "PRIMES" 2197353 NIL PRIMES (NIL T) -7 NIL NIL NIL) (-955 2194878 2195279 2195745 "PRIMELT" 2196392 NIL PRIMELT (NIL T) -7 NIL NIL NIL) (-954 2194607 2194656 2194684 "PRIMCAT" 2194808 T PRIMCAT (NIL) -9 NIL NIL NIL) (-953 2190768 2194545 2194590 "PRIMARR" 2194595 NIL PRIMARR (NIL T) -8 NIL NIL NIL) (-952 2189775 2189953 2190181 "PRIMARR2" 2190586 NIL PRIMARR2 (NIL T T) -7 NIL NIL NIL) (-951 2189418 2189474 2189585 "PREASSOC" 2189713 NIL PREASSOC (NIL T T) -7 NIL NIL NIL) (-950 2188893 2189026 2189054 "PPCURVE" 2189259 T PPCURVE (NIL) -9 NIL 2189395 NIL) (-949 2188515 2188688 2188771 "PORTNUM" 2188830 T PORTNUM (NIL) -8 NIL NIL NIL) (-948 2185874 2186273 2186865 "POLYROOT" 2188096 NIL POLYROOT (NIL T T T T T) -7 NIL NIL NIL) (-947 2179819 2185478 2185638 "POLY" 2185747 NIL POLY (NIL T) -8 NIL NIL NIL) (-946 2179202 2179260 2179494 "POLYLIFT" 2179755 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL NIL) (-945 2175477 2175926 2176555 "POLYCATQ" 2178747 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL NIL) (-944 2162294 2167652 2167717 "POLYCAT" 2171231 NIL POLYCAT (NIL T T T) -9 NIL 2173159 NIL) (-943 2155744 2157605 2159989 "POLYCAT-" 2159994 NIL POLYCAT- (NIL T T T T) -8 NIL NIL NIL) (-942 2155331 2155399 2155519 "POLY2UP" 2155670 NIL POLY2UP (NIL NIL T) -7 NIL NIL NIL) (-941 2154963 2155020 2155129 "POLY2" 2155268 NIL POLY2 (NIL T T) -7 NIL NIL NIL) (-940 2153648 2153887 2154163 "POLUTIL" 2154737 NIL POLUTIL (NIL T T) -7 NIL NIL NIL) (-939 2152003 2152280 2152611 "POLTOPOL" 2153370 NIL POLTOPOL (NIL NIL T) -7 NIL NIL NIL) (-938 2147521 2151939 2151985 "POINT" 2151990 NIL POINT (NIL T) -8 NIL NIL NIL) (-937 2145708 2146065 2146440 "PNTHEORY" 2147166 T PNTHEORY (NIL) -7 NIL NIL NIL) (-936 2144127 2144424 2144836 "PMTOOLS" 2145406 NIL PMTOOLS (NIL T T T) -7 NIL NIL NIL) (-935 2143720 2143798 2143915 "PMSYM" 2144043 NIL PMSYM (NIL T) -7 NIL NIL NIL) (-934 2143230 2143299 2143473 "PMQFCAT" 2143645 NIL PMQFCAT (NIL T T T) -7 NIL NIL NIL) (-933 2142585 2142695 2142851 "PMPRED" 2143107 NIL PMPRED (NIL T) -7 NIL NIL NIL) (-932 2141981 2142067 2142228 "PMPREDFS" 2142486 NIL PMPREDFS (NIL T T T) -7 NIL NIL NIL) (-931 2140624 2140832 2141217 "PMPLCAT" 2141743 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL NIL) (-930 2140156 2140235 2140387 "PMLSAGG" 2140539 NIL PMLSAGG (NIL T T T) -7 NIL NIL NIL) (-929 2139631 2139707 2139888 "PMKERNEL" 2140074 NIL PMKERNEL (NIL T T) -7 NIL NIL NIL) (-928 2139248 2139323 2139436 "PMINS" 2139550 NIL PMINS (NIL T) -7 NIL NIL NIL) (-927 2138676 2138745 2138961 "PMFS" 2139173 NIL PMFS (NIL T T T) -7 NIL NIL NIL) (-926 2137904 2138022 2138227 "PMDOWN" 2138553 NIL PMDOWN (NIL T T T) -7 NIL NIL NIL) (-925 2137067 2137226 2137408 "PMASS" 2137742 T PMASS (NIL) -7 NIL NIL NIL) (-924 2136341 2136452 2136615 "PMASSFS" 2136953 NIL PMASSFS (NIL T T) -7 NIL NIL NIL) (-923 2135996 2136064 2136158 "PLOTTOOL" 2136267 T PLOTTOOL (NIL) -7 NIL NIL NIL) (-922 2130618 2131807 2132955 "PLOT" 2134868 T PLOT (NIL) -8 NIL NIL NIL) (-921 2126432 2127466 2128387 "PLOT3D" 2129717 T PLOT3D (NIL) -8 NIL NIL NIL) (-920 2125344 2125521 2125756 "PLOT1" 2126236 NIL PLOT1 (NIL T) -7 NIL NIL NIL) (-919 2100738 2105410 2110261 "PLEQN" 2120610 NIL PLEQN (NIL T T T T) -7 NIL NIL NIL) (-918 2100056 2100178 2100358 "PINTERP" 2100603 NIL PINTERP (NIL NIL T) -7 NIL NIL NIL) (-917 2099749 2099796 2099899 "PINTERPA" 2100003 NIL PINTERPA (NIL T T) -7 NIL NIL NIL) (-916 2098997 2099518 2099605 "PI" 2099645 T PI (NIL) -8 NIL NIL 2099712) (-915 2097394 2098335 2098363 "PID" 2098545 T PID (NIL) -9 NIL 2098679 NIL) (-914 2097119 2097156 2097244 "PICOERCE" 2097351 NIL PICOERCE (NIL T) -7 NIL NIL NIL) (-913 2096439 2096578 2096754 "PGROEB" 2096975 NIL PGROEB (NIL T) -7 NIL NIL NIL) (-912 2092026 2092840 2093745 "PGE" 2095554 T PGE (NIL) -7 NIL NIL NIL) (-911 2090150 2090396 2090762 "PGCD" 2091743 NIL PGCD (NIL T T T T) -7 NIL NIL NIL) (-910 2089488 2089591 2089752 "PFRPAC" 2090034 NIL PFRPAC (NIL T) -7 NIL NIL NIL) (-909 2086168 2088036 2088389 "PFR" 2089167 NIL PFR (NIL T) -8 NIL NIL NIL) (-908 2084557 2084801 2085126 "PFOTOOLS" 2085915 NIL PFOTOOLS (NIL T T) -7 NIL NIL NIL) (-907 2083090 2083329 2083680 "PFOQ" 2084314 NIL PFOQ (NIL T T T) -7 NIL NIL NIL) (-906 2081563 2081775 2082138 "PFO" 2082874 NIL PFO (NIL T T T T T) -7 NIL NIL NIL) (-905 2078151 2081452 2081521 "PF" 2081526 NIL PF (NIL NIL) -8 NIL NIL NIL) (-904 2075585 2076822 2076850 "PFECAT" 2077435 T PFECAT (NIL) -9 NIL 2077819 NIL) (-903 2075030 2075184 2075398 "PFECAT-" 2075403 NIL PFECAT- (NIL T) -8 NIL NIL NIL) (-902 2073634 2073885 2074186 "PFBRU" 2074779 NIL PFBRU (NIL T T) -7 NIL NIL NIL) (-901 2071501 2071852 2072284 "PFBR" 2073285 NIL PFBR (NIL T T T T) -7 NIL NIL NIL) (-900 2067417 2068877 2069553 "PERM" 2070858 NIL PERM (NIL T) -8 NIL NIL NIL) (-899 2062683 2063624 2064494 "PERMGRP" 2066580 NIL PERMGRP (NIL T) -8 NIL NIL NIL) (-898 2060815 2061746 2061787 "PERMCAT" 2062233 NIL PERMCAT (NIL T) -9 NIL 2062538 NIL) (-897 2060468 2060509 2060633 "PERMAN" 2060768 NIL PERMAN (NIL NIL T) -7 NIL NIL NIL) (-896 2058004 2060133 2060255 "PENDTREE" 2060379 NIL PENDTREE (NIL T) -8 NIL NIL NIL) (-895 2056097 2056831 2056872 "PDRING" 2057529 NIL PDRING (NIL T) -9 NIL 2057815 NIL) (-894 2055200 2055418 2055780 "PDRING-" 2055785 NIL PDRING- (NIL T T) -8 NIL NIL NIL) (-893 2052442 2053193 2053861 "PDEPROB" 2054552 T PDEPROB (NIL) -8 NIL NIL NIL) (-892 2049989 2050491 2051046 "PDEPACK" 2051907 T PDEPACK (NIL) -7 NIL NIL NIL) (-891 2048901 2049091 2049342 "PDECOMP" 2049788 NIL PDECOMP (NIL T T) -7 NIL NIL NIL) (-890 2046506 2047323 2047351 "PDECAT" 2048138 T PDECAT (NIL) -9 NIL 2048851 NIL) (-889 2046257 2046290 2046380 "PCOMP" 2046467 NIL PCOMP (NIL T T) -7 NIL NIL NIL) (-888 2044462 2045058 2045355 "PBWLB" 2045986 NIL PBWLB (NIL T) -8 NIL NIL NIL) (-887 2036967 2038535 2039873 "PATTERN" 2043145 NIL PATTERN (NIL T) -8 NIL NIL NIL) (-886 2036599 2036656 2036765 "PATTERN2" 2036904 NIL PATTERN2 (NIL T T) -7 NIL NIL NIL) (-885 2034356 2034744 2035201 "PATTERN1" 2036188 NIL PATTERN1 (NIL T T) -7 NIL NIL NIL) (-884 2031751 2032305 2032786 "PATRES" 2033921 NIL PATRES (NIL T T) -8 NIL NIL NIL) (-883 2031315 2031382 2031514 "PATRES2" 2031678 NIL PATRES2 (NIL T T T) -7 NIL NIL NIL) (-882 2029198 2029603 2030010 "PATMATCH" 2030982 NIL PATMATCH (NIL T T T) -7 NIL NIL NIL) (-881 2028734 2028917 2028958 "PATMAB" 2029065 NIL PATMAB (NIL T) -9 NIL 2029148 NIL) (-880 2027279 2027588 2027846 "PATLRES" 2028539 NIL PATLRES (NIL T T T) -8 NIL NIL NIL) (-879 2026825 2026948 2026989 "PATAB" 2026994 NIL PATAB (NIL T) -9 NIL 2027166 NIL) (-878 2024306 2024838 2025411 "PARTPERM" 2026272 T PARTPERM (NIL) -7 NIL NIL NIL) (-877 2023927 2023990 2024092 "PARSURF" 2024237 NIL PARSURF (NIL T) -8 NIL NIL NIL) (-876 2023559 2023616 2023725 "PARSU2" 2023864 NIL PARSU2 (NIL T T) -7 NIL NIL NIL) (-875 2023323 2023363 2023430 "PARSER" 2023512 T PARSER (NIL) -7 NIL NIL NIL) (-874 2022944 2023007 2023109 "PARSCURV" 2023254 NIL PARSCURV (NIL T) -8 NIL NIL NIL) (-873 2022576 2022633 2022742 "PARSC2" 2022881 NIL PARSC2 (NIL T T) -7 NIL NIL NIL) (-872 2022215 2022273 2022370 "PARPCURV" 2022512 NIL PARPCURV (NIL T) -8 NIL NIL NIL) (-871 2021847 2021904 2022013 "PARPC2" 2022152 NIL PARPC2 (NIL T T) -7 NIL NIL NIL) (-870 2021367 2021453 2021572 "PAN2EXPR" 2021748 T PAN2EXPR (NIL) -7 NIL NIL NIL) (-869 2020173 2020488 2020716 "PALETTE" 2021159 T PALETTE (NIL) -8 NIL NIL NIL) (-868 2018641 2019178 2019538 "PAIR" 2019859 NIL PAIR (NIL T T) -8 NIL NIL NIL) (-867 2012547 2017900 2018094 "PADICRC" 2018496 NIL PADICRC (NIL NIL T) -8 NIL NIL NIL) (-866 2005811 2011893 2012077 "PADICRAT" 2012395 NIL PADICRAT (NIL NIL) -8 NIL NIL NIL) (-865 2004161 2005748 2005793 "PADIC" 2005798 NIL PADIC (NIL NIL) -8 NIL NIL NIL) (-864 2001371 2002901 2002941 "PADICCT" 2003522 NIL PADICCT (NIL NIL) -9 NIL 2003804 NIL) (-863 2000328 2000528 2000796 "PADEPAC" 2001158 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL NIL) (-862 1999540 1999673 1999879 "PADE" 2000190 NIL PADE (NIL T T T) -7 NIL NIL NIL) (-861 1997962 1998748 1999028 "OWP" 1999344 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-860 1997482 1997668 1997765 "OVERSET" 1997885 T OVERSET (NIL) -8 NIL NIL NIL) (-859 1996555 1997087 1997259 "OVAR" 1997350 NIL OVAR (NIL NIL) -8 NIL NIL NIL) (-858 1995819 1995940 1996101 "OUT" 1996414 T OUT (NIL) -7 NIL NIL NIL) (-857 1984726 1986928 1989128 "OUTFORM" 1993639 T OUTFORM (NIL) -8 NIL NIL NIL) (-856 1984062 1984323 1984450 "OUTBFILE" 1984619 T OUTBFILE (NIL) -8 NIL NIL NIL) (-855 1983369 1983534 1983562 "OUTBCON" 1983880 T OUTBCON (NIL) -9 NIL 1984046 NIL) (-854 1982970 1983082 1983239 "OUTBCON-" 1983244 NIL OUTBCON- (NIL T) -8 NIL NIL NIL) (-853 1982378 1982699 1982788 "OSI" 1982901 T OSI (NIL) -8 NIL NIL NIL) (-852 1981934 1982246 1982274 "OSGROUP" 1982279 T OSGROUP (NIL) -9 NIL 1982301 NIL) (-851 1980679 1980906 1981191 "ORTHPOL" 1981681 NIL ORTHPOL (NIL T) -7 NIL NIL NIL) (-850 1978265 1980514 1980635 "OREUP" 1980640 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL NIL) (-849 1975703 1977956 1978083 "ORESUP" 1978207 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL NIL) (-848 1973231 1973731 1974292 "OREPCTO" 1975192 NIL OREPCTO (NIL T T) -7 NIL NIL NIL) (-847 1967055 1969222 1969263 "OREPCAT" 1971611 NIL OREPCAT (NIL T) -9 NIL 1972715 NIL) (-846 1964202 1964984 1966042 "OREPCAT-" 1966047 NIL OREPCAT- (NIL T T) -8 NIL NIL NIL) (-845 1963379 1963651 1963679 "ORDSET" 1963988 T ORDSET (NIL) -9 NIL 1964152 NIL) (-844 1962898 1963020 1963213 "ORDSET-" 1963218 NIL ORDSET- (NIL T) -8 NIL NIL NIL) (-843 1961532 1962289 1962317 "ORDRING" 1962519 T ORDRING (NIL) -9 NIL 1962644 NIL) (-842 1961177 1961271 1961415 "ORDRING-" 1961420 NIL ORDRING- (NIL T) -8 NIL NIL NIL) (-841 1960583 1961020 1961048 "ORDMON" 1961053 T ORDMON (NIL) -9 NIL 1961074 NIL) (-840 1959745 1959892 1960087 "ORDFUNS" 1960432 NIL ORDFUNS (NIL NIL T) -7 NIL NIL NIL) (-839 1959109 1959502 1959530 "ORDFIN" 1959595 T ORDFIN (NIL) -9 NIL 1959669 NIL) (-838 1955701 1957695 1958104 "ORDCOMP" 1958733 NIL ORDCOMP (NIL T) -8 NIL NIL NIL) (-837 1954967 1955094 1955280 "ORDCOMP2" 1955561 NIL ORDCOMP2 (NIL T T) -7 NIL NIL NIL) (-836 1951575 1952458 1953272 "OPTPROB" 1954173 T OPTPROB (NIL) -8 NIL NIL NIL) (-835 1948377 1949016 1949720 "OPTPACK" 1950891 T OPTPACK (NIL) -7 NIL NIL NIL) (-834 1946090 1946830 1946858 "OPTCAT" 1947677 T OPTCAT (NIL) -9 NIL 1948327 NIL) (-833 1945533 1945767 1945872 "OPSIG" 1946005 T OPSIG (NIL) -8 NIL NIL NIL) (-832 1945301 1945340 1945406 "OPQUERY" 1945487 T OPQUERY (NIL) -7 NIL NIL NIL) (-831 1942467 1943612 1944116 "OP" 1944830 NIL OP (NIL T) -8 NIL NIL NIL) (-830 1942002 1942173 1942214 "OPERCAT" 1942349 NIL OPERCAT (NIL T) -9 NIL 1942417 NIL) (-829 1941848 1941875 1941961 "OPERCAT-" 1941966 NIL OPERCAT- (NIL T T) -8 NIL NIL NIL) (-828 1938693 1940645 1941014 "ONECOMP" 1941512 NIL ONECOMP (NIL T) -8 NIL NIL NIL) (-827 1937998 1938113 1938287 "ONECOMP2" 1938565 NIL ONECOMP2 (NIL T T) -7 NIL NIL NIL) (-826 1937417 1937523 1937653 "OMSERVER" 1937888 T OMSERVER (NIL) -7 NIL NIL NIL) (-825 1934305 1936857 1936897 "OMSAGG" 1936958 NIL OMSAGG (NIL T) -9 NIL 1937022 NIL) (-824 1932928 1933191 1933473 "OMPKG" 1934043 T OMPKG (NIL) -7 NIL NIL NIL) (-823 1932358 1932461 1932489 "OM" 1932788 T OM (NIL) -9 NIL NIL NIL) (-822 1930940 1931907 1932076 "OMLO" 1932239 NIL OMLO (NIL T T) -8 NIL NIL NIL) (-821 1929865 1930012 1930239 "OMEXPR" 1930766 NIL OMEXPR (NIL T) -7 NIL NIL NIL) (-820 1929183 1929411 1929547 "OMERR" 1929749 T OMERR (NIL) -8 NIL NIL NIL) (-819 1928361 1928604 1928764 "OMERRK" 1929043 T OMERRK (NIL) -8 NIL NIL NIL) (-818 1927839 1928038 1928146 "OMENC" 1928273 T OMENC (NIL) -8 NIL NIL NIL) (-817 1921734 1922919 1924090 "OMDEV" 1926688 T OMDEV (NIL) -8 NIL NIL NIL) (-816 1920803 1920974 1921168 "OMCONN" 1921560 T OMCONN (NIL) -8 NIL NIL NIL) (-815 1919424 1920366 1920394 "OINTDOM" 1920399 T OINTDOM (NIL) -9 NIL 1920420 NIL) (-814 1915230 1916414 1917130 "OFMONOID" 1918740 NIL OFMONOID (NIL T) -8 NIL NIL NIL) (-813 1914668 1915167 1915212 "ODVAR" 1915217 NIL ODVAR (NIL T) -8 NIL NIL NIL) (-812 1912126 1914413 1914568 "ODR" 1914573 NIL ODR (NIL T T NIL) -8 NIL NIL NIL) (-811 1904470 1911902 1912028 "ODPOL" 1912033 NIL ODPOL (NIL T) -8 NIL NIL NIL) (-810 1898346 1904342 1904447 "ODP" 1904452 NIL ODP (NIL NIL T NIL) -8 NIL NIL NIL) (-809 1897112 1897327 1897602 "ODETOOLS" 1898120 NIL ODETOOLS (NIL T T) -7 NIL NIL NIL) (-808 1894081 1894737 1895453 "ODESYS" 1896445 NIL ODESYS (NIL T T) -7 NIL NIL NIL) (-807 1888963 1889871 1890896 "ODERTRIC" 1893156 NIL ODERTRIC (NIL T T) -7 NIL NIL NIL) (-806 1888389 1888471 1888665 "ODERED" 1888875 NIL ODERED (NIL T T T T T) -7 NIL NIL NIL) (-805 1885277 1885825 1886502 "ODERAT" 1887812 NIL ODERAT (NIL T T) -7 NIL NIL NIL) (-804 1882237 1882701 1883298 "ODEPRRIC" 1884806 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL NIL) (-803 1880207 1880776 1881262 "ODEPROB" 1881771 T ODEPROB (NIL) -8 NIL NIL NIL) (-802 1876729 1877212 1877859 "ODEPRIM" 1879686 NIL ODEPRIM (NIL T T T T) -7 NIL NIL NIL) (-801 1875978 1876080 1876340 "ODEPAL" 1876621 NIL ODEPAL (NIL T T T T) -7 NIL NIL NIL) (-800 1872140 1872931 1873795 "ODEPACK" 1875134 T ODEPACK (NIL) -7 NIL NIL NIL) (-799 1871173 1871280 1871509 "ODEINT" 1872029 NIL ODEINT (NIL T T) -7 NIL NIL NIL) (-798 1865274 1866699 1868146 "ODEIFTBL" 1869746 T ODEIFTBL (NIL) -8 NIL NIL NIL) (-797 1860609 1861395 1862354 "ODEEF" 1864433 NIL ODEEF (NIL T T) -7 NIL NIL NIL) (-796 1859944 1860033 1860263 "ODECONST" 1860514 NIL ODECONST (NIL T T T) -7 NIL NIL NIL) (-795 1858095 1858730 1858758 "ODECAT" 1859363 T ODECAT (NIL) -9 NIL 1859894 NIL) (-794 1855002 1857807 1857926 "OCT" 1858008 NIL OCT (NIL T) -8 NIL NIL NIL) (-793 1854640 1854683 1854810 "OCTCT2" 1854953 NIL OCTCT2 (NIL T T T T) -7 NIL NIL NIL) (-792 1849414 1851814 1851854 "OC" 1852951 NIL OC (NIL T) -9 NIL 1853809 NIL) (-791 1846641 1847389 1848379 "OC-" 1848473 NIL OC- (NIL T T) -8 NIL NIL NIL) (-790 1846019 1846461 1846489 "OCAMON" 1846494 T OCAMON (NIL) -9 NIL 1846515 NIL) (-789 1845576 1845891 1845919 "OASGP" 1845924 T OASGP (NIL) -9 NIL 1845944 NIL) (-788 1844863 1845326 1845354 "OAMONS" 1845394 T OAMONS (NIL) -9 NIL 1845437 NIL) (-787 1844303 1844710 1844738 "OAMON" 1844743 T OAMON (NIL) -9 NIL 1844763 NIL) (-786 1843607 1844099 1844127 "OAGROUP" 1844132 T OAGROUP (NIL) -9 NIL 1844152 NIL) (-785 1843297 1843347 1843435 "NUMTUBE" 1843551 NIL NUMTUBE (NIL T) -7 NIL NIL NIL) (-784 1836870 1838388 1839924 "NUMQUAD" 1841781 T NUMQUAD (NIL) -7 NIL NIL NIL) (-783 1832626 1833614 1834639 "NUMODE" 1835865 T NUMODE (NIL) -7 NIL NIL NIL) (-782 1830007 1830861 1830889 "NUMINT" 1831812 T NUMINT (NIL) -9 NIL 1832576 NIL) (-781 1828955 1829152 1829370 "NUMFMT" 1829809 T NUMFMT (NIL) -7 NIL NIL NIL) (-780 1815314 1818259 1820791 "NUMERIC" 1826462 NIL NUMERIC (NIL T) -7 NIL NIL NIL) (-779 1809711 1814763 1814858 "NTSCAT" 1814863 NIL NTSCAT (NIL T T T T) -9 NIL 1814902 NIL) (-778 1808905 1809070 1809263 "NTPOLFN" 1809550 NIL NTPOLFN (NIL T) -7 NIL NIL NIL) (-777 1796745 1805730 1806542 "NSUP" 1808126 NIL NSUP (NIL T) -8 NIL NIL NIL) (-776 1796377 1796434 1796543 "NSUP2" 1796682 NIL NSUP2 (NIL T T) -7 NIL NIL NIL) (-775 1786374 1796151 1796284 "NSMP" 1796289 NIL NSMP (NIL T T) -8 NIL NIL NIL) (-774 1784806 1785107 1785464 "NREP" 1786062 NIL NREP (NIL T) -7 NIL NIL NIL) (-773 1783397 1783649 1784007 "NPCOEF" 1784549 NIL NPCOEF (NIL T T T T T) -7 NIL NIL NIL) (-772 1782463 1782578 1782794 "NORMRETR" 1783278 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL NIL) (-771 1780504 1780794 1781203 "NORMPK" 1782171 NIL NORMPK (NIL T T T T T) -7 NIL NIL NIL) (-770 1780189 1780217 1780341 "NORMMA" 1780470 NIL NORMMA (NIL T T T T) -7 NIL NIL NIL) (-769 1780016 1780146 1780175 "NONE" 1780180 T NONE (NIL) -8 NIL NIL NIL) (-768 1779805 1779834 1779903 "NONE1" 1779980 NIL NONE1 (NIL T) -7 NIL NIL NIL) (-767 1779288 1779350 1779536 "NODE1" 1779737 NIL NODE1 (NIL T T) -7 NIL NIL NIL) (-766 1777559 1778382 1778637 "NNI" 1778984 T NNI (NIL) -8 NIL NIL 1779219) (-765 1775979 1776292 1776656 "NLINSOL" 1777227 NIL NLINSOL (NIL T) -7 NIL NIL NIL) (-764 1772247 1773215 1774114 "NIPROB" 1775100 T NIPROB (NIL) -8 NIL NIL NIL) (-763 1771004 1771238 1771540 "NFINTBAS" 1772009 NIL NFINTBAS (NIL T T) -7 NIL NIL NIL) (-762 1770178 1770654 1770695 "NETCLT" 1770867 NIL NETCLT (NIL T) -9 NIL 1770949 NIL) (-761 1768886 1769117 1769398 "NCODIV" 1769946 NIL NCODIV (NIL T T) -7 NIL NIL NIL) (-760 1768648 1768685 1768760 "NCNTFRAC" 1768843 NIL NCNTFRAC (NIL T) -7 NIL NIL NIL) (-759 1766828 1767192 1767612 "NCEP" 1768273 NIL NCEP (NIL T) -7 NIL NIL NIL) (-758 1765739 1766478 1766506 "NASRING" 1766616 T NASRING (NIL) -9 NIL 1766690 NIL) (-757 1765534 1765578 1765672 "NASRING-" 1765677 NIL NASRING- (NIL T) -8 NIL NIL NIL) (-756 1764687 1765186 1765214 "NARNG" 1765331 T NARNG (NIL) -9 NIL 1765422 NIL) (-755 1764379 1764446 1764580 "NARNG-" 1764585 NIL NARNG- (NIL T) -8 NIL NIL NIL) (-754 1763258 1763465 1763700 "NAGSP" 1764164 T NAGSP (NIL) -7 NIL NIL NIL) (-753 1754530 1756214 1757887 "NAGS" 1761605 T NAGS (NIL) -7 NIL NIL NIL) (-752 1753078 1753386 1753717 "NAGF07" 1754219 T NAGF07 (NIL) -7 NIL NIL NIL) (-751 1747616 1748907 1750214 "NAGF04" 1751791 T NAGF04 (NIL) -7 NIL NIL NIL) (-750 1740584 1742198 1743831 "NAGF02" 1746003 T NAGF02 (NIL) -7 NIL NIL NIL) (-749 1735808 1736908 1738025 "NAGF01" 1739487 T NAGF01 (NIL) -7 NIL NIL NIL) (-748 1729436 1731002 1732587 "NAGE04" 1734243 T NAGE04 (NIL) -7 NIL NIL NIL) (-747 1720605 1722726 1724856 "NAGE02" 1727326 T NAGE02 (NIL) -7 NIL NIL NIL) (-746 1716558 1717505 1718469 "NAGE01" 1719661 T NAGE01 (NIL) -7 NIL NIL NIL) (-745 1714353 1714887 1715445 "NAGD03" 1716020 T NAGD03 (NIL) -7 NIL NIL NIL) (-744 1706103 1708031 1709985 "NAGD02" 1712419 T NAGD02 (NIL) -7 NIL NIL NIL) (-743 1699914 1701339 1702779 "NAGD01" 1704683 T NAGD01 (NIL) -7 NIL NIL NIL) (-742 1696123 1696945 1697782 "NAGC06" 1699097 T NAGC06 (NIL) -7 NIL NIL NIL) (-741 1694588 1694920 1695276 "NAGC05" 1695787 T NAGC05 (NIL) -7 NIL NIL NIL) (-740 1693964 1694083 1694227 "NAGC02" 1694464 T NAGC02 (NIL) -7 NIL NIL NIL) (-739 1693024 1693581 1693621 "NAALG" 1693700 NIL NAALG (NIL T) -9 NIL 1693761 NIL) (-738 1692859 1692888 1692978 "NAALG-" 1692983 NIL NAALG- (NIL T T) -8 NIL NIL NIL) (-737 1686809 1687917 1689104 "MULTSQFR" 1691755 NIL MULTSQFR (NIL T T T T) -7 NIL NIL NIL) (-736 1686128 1686203 1686387 "MULTFACT" 1686721 NIL MULTFACT (NIL T T T T) -7 NIL NIL NIL) (-735 1679221 1683091 1683144 "MTSCAT" 1684214 NIL MTSCAT (NIL T T) -9 NIL 1684728 NIL) (-734 1678933 1678987 1679079 "MTHING" 1679161 NIL MTHING (NIL T) -7 NIL NIL NIL) (-733 1678725 1678758 1678818 "MSYSCMD" 1678893 T MSYSCMD (NIL) -7 NIL NIL NIL) (-732 1674837 1677480 1677800 "MSET" 1678438 NIL MSET (NIL T) -8 NIL NIL NIL) (-731 1671932 1674398 1674439 "MSETAGG" 1674444 NIL MSETAGG (NIL T) -9 NIL 1674478 NIL) (-730 1667815 1669311 1670056 "MRING" 1671232 NIL MRING (NIL T T) -8 NIL NIL NIL) (-729 1667381 1667448 1667579 "MRF2" 1667742 NIL MRF2 (NIL T T T) -7 NIL NIL NIL) (-728 1666999 1667034 1667178 "MRATFAC" 1667340 NIL MRATFAC (NIL T T T T) -7 NIL NIL NIL) (-727 1664611 1664906 1665337 "MPRFF" 1666704 NIL MPRFF (NIL T T T T) -7 NIL NIL NIL) (-726 1658671 1664465 1664562 "MPOLY" 1664567 NIL MPOLY (NIL NIL T) -8 NIL NIL NIL) (-725 1658161 1658196 1658404 "MPCPF" 1658630 NIL MPCPF (NIL T T T T) -7 NIL NIL NIL) (-724 1657675 1657718 1657902 "MPC3" 1658112 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL NIL) (-723 1656870 1656951 1657172 "MPC2" 1657590 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL NIL) (-722 1655171 1655508 1655898 "MONOTOOL" 1656530 NIL MONOTOOL (NIL T T) -7 NIL NIL NIL) (-721 1654422 1654713 1654741 "MONOID" 1654960 T MONOID (NIL) -9 NIL 1655107 NIL) (-720 1653968 1654087 1654268 "MONOID-" 1654273 NIL MONOID- (NIL T) -8 NIL NIL NIL) (-719 1644827 1650735 1650794 "MONOGEN" 1651468 NIL MONOGEN (NIL T T) -9 NIL 1651924 NIL) (-718 1642045 1642780 1643780 "MONOGEN-" 1643899 NIL MONOGEN- (NIL T T T) -8 NIL NIL NIL) (-717 1640904 1641324 1641352 "MONADWU" 1641744 T MONADWU (NIL) -9 NIL 1641982 NIL) (-716 1640276 1640435 1640683 "MONADWU-" 1640688 NIL MONADWU- (NIL T) -8 NIL NIL NIL) (-715 1639661 1639879 1639907 "MONAD" 1640114 T MONAD (NIL) -9 NIL 1640226 NIL) (-714 1639346 1639424 1639556 "MONAD-" 1639561 NIL MONAD- (NIL T) -8 NIL NIL NIL) (-713 1637662 1638259 1638538 "MOEBIUS" 1639099 NIL MOEBIUS (NIL T) -8 NIL NIL NIL) (-712 1637054 1637432 1637472 "MODULE" 1637477 NIL MODULE (NIL T) -9 NIL 1637503 NIL) (-711 1636622 1636718 1636908 "MODULE-" 1636913 NIL MODULE- (NIL T T) -8 NIL NIL NIL) (-710 1634337 1634986 1635313 "MODRING" 1636446 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-709 1631323 1632442 1632963 "MODOP" 1633866 NIL MODOP (NIL T T) -8 NIL NIL NIL) (-708 1629938 1630390 1630667 "MODMONOM" 1631186 NIL MODMONOM (NIL T T NIL) -8 NIL NIL NIL) (-707 1619745 1628229 1628643 "MODMON" 1629575 NIL MODMON (NIL T T) -8 NIL NIL NIL) (-706 1616936 1618589 1618865 "MODFIELD" 1619620 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-705 1615940 1616217 1616407 "MMLFORM" 1616766 T MMLFORM (NIL) -8 NIL NIL NIL) (-704 1615466 1615509 1615688 "MMAP" 1615891 NIL MMAP (NIL T T T T T T) -7 NIL NIL NIL) (-703 1613683 1614416 1614457 "MLO" 1614880 NIL MLO (NIL T) -9 NIL 1615122 NIL) (-702 1611050 1611565 1612167 "MLIFT" 1613164 NIL MLIFT (NIL T T T T) -7 NIL NIL NIL) (-701 1610441 1610525 1610679 "MKUCFUNC" 1610961 NIL MKUCFUNC (NIL T T T) -7 NIL NIL NIL) (-700 1610040 1610110 1610233 "MKRECORD" 1610364 NIL MKRECORD (NIL T T) -7 NIL NIL NIL) (-699 1609088 1609249 1609477 "MKFUNC" 1609851 NIL MKFUNC (NIL T) -7 NIL NIL NIL) (-698 1608476 1608580 1608736 "MKFLCFN" 1608971 NIL MKFLCFN (NIL T) -7 NIL NIL NIL) (-697 1608019 1608386 1608445 "MKCHSET" 1608450 NIL MKCHSET (NIL T) -8 NIL NIL NIL) (-696 1607296 1607398 1607583 "MKBCFUNC" 1607912 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL NIL) (-695 1604038 1606850 1606986 "MINT" 1607180 T MINT (NIL) -8 NIL NIL NIL) (-694 1602850 1603093 1603370 "MHROWRED" 1603793 NIL MHROWRED (NIL T) -7 NIL NIL NIL) (-693 1598276 1601385 1601790 "MFLOAT" 1602465 T MFLOAT (NIL) -8 NIL NIL NIL) (-692 1597633 1597709 1597880 "MFINFACT" 1598188 NIL MFINFACT (NIL T T T T) -7 NIL NIL NIL) (-691 1593948 1594796 1595680 "MESH" 1596769 T MESH (NIL) -7 NIL NIL NIL) (-690 1592338 1592650 1593003 "MDDFACT" 1593635 NIL MDDFACT (NIL T) -7 NIL NIL NIL) (-689 1589180 1591497 1591538 "MDAGG" 1591793 NIL MDAGG (NIL T) -9 NIL 1591936 NIL) (-688 1578958 1588473 1588680 "MCMPLX" 1588993 T MCMPLX (NIL) -8 NIL NIL NIL) (-687 1578099 1578245 1578445 "MCDEN" 1578807 NIL MCDEN (NIL T T) -7 NIL NIL NIL) (-686 1575989 1576259 1576639 "MCALCFN" 1577829 NIL MCALCFN (NIL T T T T) -7 NIL NIL NIL) (-685 1574914 1575154 1575387 "MAYBE" 1575795 NIL MAYBE (NIL T) -8 NIL NIL NIL) (-684 1572526 1573049 1573611 "MATSTOR" 1574385 NIL MATSTOR (NIL T) -7 NIL NIL NIL) (-683 1568532 1571898 1572146 "MATRIX" 1572311 NIL MATRIX (NIL T) -8 NIL NIL NIL) (-682 1564301 1565005 1565741 "MATLIN" 1567889 NIL MATLIN (NIL T T T T) -7 NIL NIL NIL) (-681 1554455 1557593 1557670 "MATCAT" 1562550 NIL MATCAT (NIL T T T) -9 NIL 1563967 NIL) (-680 1550819 1551832 1553188 "MATCAT-" 1553193 NIL MATCAT- (NIL T T T T) -8 NIL NIL NIL) (-679 1549413 1549566 1549899 "MATCAT2" 1550654 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-678 1547525 1547849 1548233 "MAPPKG3" 1549088 NIL MAPPKG3 (NIL T T T) -7 NIL NIL NIL) (-677 1546506 1546679 1546901 "MAPPKG2" 1547349 NIL MAPPKG2 (NIL T T) -7 NIL NIL NIL) (-676 1545005 1545289 1545616 "MAPPKG1" 1546212 NIL MAPPKG1 (NIL T) -7 NIL NIL NIL) (-675 1544111 1544411 1544588 "MAPPAST" 1544848 T MAPPAST (NIL) -8 NIL NIL NIL) (-674 1543722 1543780 1543903 "MAPHACK3" 1544047 NIL MAPHACK3 (NIL T T T) -7 NIL NIL NIL) (-673 1543314 1543375 1543489 "MAPHACK2" 1543654 NIL MAPHACK2 (NIL T T) -7 NIL NIL NIL) (-672 1542752 1542855 1542997 "MAPHACK1" 1543205 NIL MAPHACK1 (NIL T) -7 NIL NIL NIL) (-671 1540858 1541452 1541756 "MAGMA" 1542480 NIL MAGMA (NIL T) -8 NIL NIL NIL) (-670 1540364 1540582 1540673 "MACROAST" 1540787 T MACROAST (NIL) -8 NIL NIL NIL) (-669 1536831 1538603 1539064 "M3D" 1539936 NIL M3D (NIL T) -8 NIL NIL NIL) (-668 1530985 1535200 1535241 "LZSTAGG" 1536023 NIL LZSTAGG (NIL T) -9 NIL 1536318 NIL) (-667 1526959 1528116 1529573 "LZSTAGG-" 1529578 NIL LZSTAGG- (NIL T T) -8 NIL NIL NIL) (-666 1524073 1524850 1525337 "LWORD" 1526504 NIL LWORD (NIL T) -8 NIL NIL NIL) (-665 1523676 1523877 1523952 "LSTAST" 1524018 T LSTAST (NIL) -8 NIL NIL NIL) (-664 1516877 1523447 1523581 "LSQM" 1523586 NIL LSQM (NIL NIL T) -8 NIL NIL NIL) (-663 1516101 1516240 1516468 "LSPP" 1516732 NIL LSPP (NIL T T T T) -7 NIL NIL NIL) (-662 1513913 1514214 1514670 "LSMP" 1515790 NIL LSMP (NIL T T T T) -7 NIL NIL NIL) (-661 1510692 1511366 1512096 "LSMP1" 1513215 NIL LSMP1 (NIL T) -7 NIL NIL NIL) (-660 1504617 1509859 1509900 "LSAGG" 1509962 NIL LSAGG (NIL T) -9 NIL 1510040 NIL) (-659 1501312 1502236 1503449 "LSAGG-" 1503454 NIL LSAGG- (NIL T T) -8 NIL NIL NIL) (-658 1498938 1500456 1500705 "LPOLY" 1501107 NIL LPOLY (NIL T T) -8 NIL NIL NIL) (-657 1498520 1498605 1498728 "LPEFRAC" 1498847 NIL LPEFRAC (NIL T) -7 NIL NIL NIL) (-656 1496867 1497614 1497867 "LO" 1498352 NIL LO (NIL T T T) -8 NIL NIL NIL) (-655 1496519 1496631 1496659 "LOGIC" 1496770 T LOGIC (NIL) -9 NIL 1496851 NIL) (-654 1496381 1496404 1496475 "LOGIC-" 1496480 NIL LOGIC- (NIL T) -8 NIL NIL NIL) (-653 1495574 1495714 1495907 "LODOOPS" 1496237 NIL LODOOPS (NIL T T) -7 NIL NIL NIL) (-652 1493032 1495490 1495556 "LODO" 1495561 NIL LODO (NIL T NIL) -8 NIL NIL NIL) (-651 1491570 1491805 1492158 "LODOF" 1492779 NIL LODOF (NIL T T) -7 NIL NIL NIL) (-650 1487926 1490323 1490364 "LODOCAT" 1490802 NIL LODOCAT (NIL T) -9 NIL 1491013 NIL) (-649 1487659 1487717 1487844 "LODOCAT-" 1487849 NIL LODOCAT- (NIL T T) -8 NIL NIL NIL) (-648 1485014 1487500 1487618 "LODO2" 1487623 NIL LODO2 (NIL T T) -8 NIL NIL NIL) (-647 1482484 1484951 1484996 "LODO1" 1485001 NIL LODO1 (NIL T) -8 NIL NIL NIL) (-646 1481344 1481509 1481821 "LODEEF" 1482307 NIL LODEEF (NIL T T T) -7 NIL NIL NIL) (-645 1476630 1479474 1479515 "LNAGG" 1480462 NIL LNAGG (NIL T) -9 NIL 1480906 NIL) (-644 1475777 1475991 1476333 "LNAGG-" 1476338 NIL LNAGG- (NIL T T) -8 NIL NIL NIL) (-643 1471940 1472702 1473341 "LMOPS" 1475192 NIL LMOPS (NIL T T NIL) -8 NIL NIL NIL) (-642 1471335 1471697 1471738 "LMODULE" 1471799 NIL LMODULE (NIL T) -9 NIL 1471841 NIL) (-641 1468581 1470980 1471103 "LMDICT" 1471245 NIL LMDICT (NIL T) -8 NIL NIL NIL) (-640 1468307 1468489 1468549 "LITERAL" 1468554 NIL LITERAL (NIL T) -8 NIL NIL NIL) (-639 1461534 1467253 1467551 "LIST" 1468042 NIL LIST (NIL T) -8 NIL NIL NIL) (-638 1461059 1461133 1461272 "LIST3" 1461454 NIL LIST3 (NIL T T T) -7 NIL NIL NIL) (-637 1460066 1460244 1460472 "LIST2" 1460877 NIL LIST2 (NIL T T) -7 NIL NIL NIL) (-636 1458200 1458512 1458911 "LIST2MAP" 1459713 NIL LIST2MAP (NIL T T) -7 NIL NIL NIL) (-635 1456930 1457566 1457607 "LINEXP" 1457862 NIL LINEXP (NIL T) -9 NIL 1458011 NIL) (-634 1455577 1455837 1456134 "LINDEP" 1456682 NIL LINDEP (NIL T T) -7 NIL NIL NIL) (-633 1452344 1453063 1453840 "LIMITRF" 1454832 NIL LIMITRF (NIL T) -7 NIL NIL NIL) (-632 1450620 1450915 1451331 "LIMITPS" 1452039 NIL LIMITPS (NIL T T) -7 NIL NIL NIL) (-631 1445075 1450131 1450359 "LIE" 1450441 NIL LIE (NIL T T) -8 NIL NIL NIL) (-630 1444124 1444567 1444607 "LIECAT" 1444747 NIL LIECAT (NIL T) -9 NIL 1444898 NIL) (-629 1443965 1443992 1444080 "LIECAT-" 1444085 NIL LIECAT- (NIL T T) -8 NIL NIL NIL) (-628 1436577 1443414 1443579 "LIB" 1443820 T LIB (NIL) -8 NIL NIL NIL) (-627 1432214 1433095 1434030 "LGROBP" 1435694 NIL LGROBP (NIL NIL T) -7 NIL NIL NIL) (-626 1430080 1430354 1430716 "LF" 1431935 NIL LF (NIL T T) -7 NIL NIL NIL) (-625 1428920 1429612 1429640 "LFCAT" 1429847 T LFCAT (NIL) -9 NIL 1429986 NIL) (-624 1425824 1426452 1427140 "LEXTRIPK" 1428284 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL NIL) (-623 1422595 1423394 1423897 "LEXP" 1425404 NIL LEXP (NIL T T NIL) -8 NIL NIL NIL) (-622 1422098 1422316 1422408 "LETAST" 1422523 T LETAST (NIL) -8 NIL NIL NIL) (-621 1420496 1420809 1421210 "LEADCDET" 1421780 NIL LEADCDET (NIL T T T T) -7 NIL NIL NIL) (-620 1419686 1419760 1419989 "LAZM3PK" 1420417 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL NIL) (-619 1414641 1417763 1418301 "LAUPOL" 1419198 NIL LAUPOL (NIL T T) -8 NIL NIL NIL) (-618 1414206 1414250 1414418 "LAPLACE" 1414591 NIL LAPLACE (NIL T T) -7 NIL NIL NIL) (-617 1412180 1413307 1413558 "LA" 1414039 NIL LA (NIL T T T) -8 NIL NIL NIL) (-616 1411261 1411811 1411852 "LALG" 1411914 NIL LALG (NIL T) -9 NIL 1411973 NIL) (-615 1410975 1411034 1411170 "LALG-" 1411175 NIL LALG- (NIL T T) -8 NIL NIL NIL) (-614 1410810 1410834 1410875 "KVTFROM" 1410937 NIL KVTFROM (NIL T) -9 NIL NIL NIL) (-613 1409613 1410027 1410256 "KTVLOGIC" 1410601 T KTVLOGIC (NIL) -8 NIL NIL NIL) (-612 1409448 1409472 1409513 "KRCFROM" 1409575 NIL KRCFROM (NIL T) -9 NIL NIL NIL) (-611 1408352 1408539 1408838 "KOVACIC" 1409248 NIL KOVACIC (NIL T T) -7 NIL NIL NIL) (-610 1408187 1408211 1408252 "KONVERT" 1408314 NIL KONVERT (NIL T) -9 NIL NIL NIL) (-609 1408022 1408046 1408087 "KOERCE" 1408149 NIL KOERCE (NIL T) -9 NIL NIL NIL) (-608 1405756 1406516 1406909 "KERNEL" 1407661 NIL KERNEL (NIL T) -8 NIL NIL NIL) (-607 1405258 1405339 1405469 "KERNEL2" 1405670 NIL KERNEL2 (NIL T T) -7 NIL NIL NIL) (-606 1399109 1403797 1403851 "KDAGG" 1404228 NIL KDAGG (NIL T T) -9 NIL 1404434 NIL) (-605 1398638 1398762 1398967 "KDAGG-" 1398972 NIL KDAGG- (NIL T T T) -8 NIL NIL NIL) (-604 1391813 1398299 1398454 "KAFILE" 1398516 NIL KAFILE (NIL T) -8 NIL NIL NIL) (-603 1386268 1391324 1391552 "JORDAN" 1391634 NIL JORDAN (NIL T T) -8 NIL NIL NIL) (-602 1385674 1385917 1386038 "JOINAST" 1386167 T JOINAST (NIL) -8 NIL NIL NIL) (-601 1385520 1385579 1385634 "JAVACODE" 1385639 T JAVACODE (NIL) -8 NIL NIL NIL) (-600 1381819 1383725 1383779 "IXAGG" 1384708 NIL IXAGG (NIL T T) -9 NIL 1385167 NIL) (-599 1380738 1381044 1381463 "IXAGG-" 1381468 NIL IXAGG- (NIL T T T) -8 NIL NIL NIL) (-598 1376318 1380660 1380719 "IVECTOR" 1380724 NIL IVECTOR (NIL T NIL) -8 NIL NIL NIL) (-597 1375084 1375321 1375587 "ITUPLE" 1376085 NIL ITUPLE (NIL T) -8 NIL NIL NIL) (-596 1373520 1373697 1374003 "ITRIGMNP" 1374906 NIL ITRIGMNP (NIL T T T) -7 NIL NIL NIL) (-595 1372265 1372469 1372752 "ITFUN3" 1373296 NIL ITFUN3 (NIL T T T) -7 NIL NIL NIL) (-594 1371897 1371954 1372063 "ITFUN2" 1372202 NIL ITFUN2 (NIL T T) -7 NIL NIL NIL) (-593 1369734 1370759 1371058 "ITAYLOR" 1371631 NIL ITAYLOR (NIL T) -8 NIL NIL NIL) (-592 1358717 1363871 1365034 "ISUPS" 1368604 NIL ISUPS (NIL T) -8 NIL NIL NIL) (-591 1357821 1357961 1358197 "ISUMP" 1358564 NIL ISUMP (NIL T T T T) -7 NIL NIL NIL) (-590 1353085 1357622 1357701 "ISTRING" 1357774 NIL ISTRING (NIL NIL) -8 NIL NIL NIL) (-589 1352588 1352806 1352898 "ISAST" 1353013 T ISAST (NIL) -8 NIL NIL NIL) (-588 1351798 1351879 1352095 "IRURPK" 1352502 NIL IRURPK (NIL T T T T T) -7 NIL NIL NIL) (-587 1350734 1350935 1351175 "IRSN" 1351578 T IRSN (NIL) -7 NIL NIL NIL) (-586 1348763 1349118 1349554 "IRRF2F" 1350372 NIL IRRF2F (NIL T) -7 NIL NIL NIL) (-585 1348510 1348548 1348624 "IRREDFFX" 1348719 NIL IRREDFFX (NIL T) -7 NIL NIL NIL) (-584 1347125 1347384 1347683 "IROOT" 1348243 NIL IROOT (NIL T) -7 NIL NIL NIL) (-583 1343757 1344809 1345501 "IR" 1346465 NIL IR (NIL T) -8 NIL NIL NIL) (-582 1341370 1341865 1342431 "IR2" 1343235 NIL IR2 (NIL T T) -7 NIL NIL NIL) (-581 1340442 1340555 1340776 "IR2F" 1341253 NIL IR2F (NIL T T) -7 NIL NIL NIL) (-580 1340233 1340267 1340327 "IPRNTPK" 1340402 T IPRNTPK (NIL) -7 NIL NIL NIL) (-579 1336852 1340122 1340191 "IPF" 1340196 NIL IPF (NIL NIL) -8 NIL NIL NIL) (-578 1335215 1336777 1336834 "IPADIC" 1336839 NIL IPADIC (NIL NIL NIL) -8 NIL NIL NIL) (-577 1334555 1334775 1334905 "IP4ADDR" 1335105 T IP4ADDR (NIL) -8 NIL NIL NIL) (-576 1334055 1334259 1334369 "IOMODE" 1334465 T IOMODE (NIL) -8 NIL NIL NIL) (-575 1333128 1333652 1333779 "IOBFILE" 1333948 T IOBFILE (NIL) -8 NIL NIL NIL) (-574 1332616 1333032 1333060 "IOBCON" 1333065 T IOBCON (NIL) -9 NIL 1333086 NIL) (-573 1332113 1332171 1332361 "INVLAPLA" 1332552 NIL INVLAPLA (NIL T T) -7 NIL NIL NIL) (-572 1321762 1324115 1326501 "INTTR" 1329777 NIL INTTR (NIL T T) -7 NIL NIL NIL) (-571 1318106 1318848 1319712 "INTTOOLS" 1320947 NIL INTTOOLS (NIL T T) -7 NIL NIL NIL) (-570 1317692 1317783 1317900 "INTSLPE" 1318009 T INTSLPE (NIL) -7 NIL NIL NIL) (-569 1315687 1317615 1317674 "INTRVL" 1317679 NIL INTRVL (NIL T) -8 NIL NIL NIL) (-568 1313289 1313801 1314376 "INTRF" 1315172 NIL INTRF (NIL T) -7 NIL NIL NIL) (-567 1312700 1312797 1312939 "INTRET" 1313187 NIL INTRET (NIL T) -7 NIL NIL NIL) (-566 1310697 1311086 1311556 "INTRAT" 1312308 NIL INTRAT (NIL T T) -7 NIL NIL NIL) (-565 1307925 1308508 1309134 "INTPM" 1310182 NIL INTPM (NIL T T) -7 NIL NIL NIL) (-564 1304628 1305227 1305972 "INTPAF" 1307311 NIL INTPAF (NIL T T T) -7 NIL NIL NIL) (-563 1299807 1300769 1301820 "INTPACK" 1303597 T INTPACK (NIL) -7 NIL NIL NIL) (-562 1296719 1299536 1299663 "INT" 1299700 T INT (NIL) -8 NIL NIL NIL) (-561 1295971 1296123 1296331 "INTHERTR" 1296561 NIL INTHERTR (NIL T T) -7 NIL NIL NIL) (-560 1295410 1295490 1295678 "INTHERAL" 1295885 NIL INTHERAL (NIL T T T T) -7 NIL NIL NIL) (-559 1293256 1293699 1294156 "INTHEORY" 1294973 T INTHEORY (NIL) -7 NIL NIL NIL) (-558 1284564 1286185 1287964 "INTG0" 1291608 NIL INTG0 (NIL T T T) -7 NIL NIL NIL) (-557 1265137 1269927 1274737 "INTFTBL" 1279774 T INTFTBL (NIL) -8 NIL NIL NIL) (-556 1264386 1264524 1264697 "INTFACT" 1264996 NIL INTFACT (NIL T) -7 NIL NIL NIL) (-555 1261771 1262217 1262781 "INTEF" 1263940 NIL INTEF (NIL T T) -7 NIL NIL NIL) (-554 1260238 1260943 1260971 "INTDOM" 1261272 T INTDOM (NIL) -9 NIL 1261479 NIL) (-553 1259607 1259781 1260023 "INTDOM-" 1260028 NIL INTDOM- (NIL T) -8 NIL NIL NIL) (-552 1256102 1257991 1258045 "INTCAT" 1258844 NIL INTCAT (NIL T) -9 NIL 1259164 NIL) (-551 1255575 1255677 1255805 "INTBIT" 1255994 T INTBIT (NIL) -7 NIL NIL NIL) (-550 1254246 1254400 1254714 "INTALG" 1255420 NIL INTALG (NIL T T T T T) -7 NIL NIL NIL) (-549 1253703 1253793 1253963 "INTAF" 1254150 NIL INTAF (NIL T T) -7 NIL NIL NIL) (-548 1247157 1253513 1253653 "INTABL" 1253658 NIL INTABL (NIL T T T) -8 NIL NIL NIL) (-547 1246617 1247030 1247058 "INT8" 1247063 T INT8 (NIL) -8 NIL NIL 1247071) (-546 1246076 1246489 1246517 "INT32" 1246522 T INT32 (NIL) -8 NIL NIL 1246530) (-545 1245535 1245948 1245976 "INT16" 1245981 T INT16 (NIL) -8 NIL NIL 1245989) (-544 1240550 1243224 1243252 "INS" 1244186 T INS (NIL) -9 NIL 1244851 NIL) (-543 1237790 1238561 1239535 "INS-" 1239608 NIL INS- (NIL T) -8 NIL NIL NIL) (-542 1236565 1236792 1237090 "INPSIGN" 1237543 NIL INPSIGN (NIL T T) -7 NIL NIL NIL) (-541 1235683 1235800 1235997 "INPRODPF" 1236445 NIL INPRODPF (NIL T T) -7 NIL NIL NIL) (-540 1234577 1234694 1234931 "INPRODFF" 1235563 NIL INPRODFF (NIL T T T T) -7 NIL NIL NIL) (-539 1233577 1233729 1233989 "INNMFACT" 1234413 NIL INNMFACT (NIL T T T T) -7 NIL NIL NIL) (-538 1232774 1232871 1233059 "INMODGCD" 1233476 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL NIL) (-537 1231283 1231527 1231851 "INFSP" 1232519 NIL INFSP (NIL T T T) -7 NIL NIL NIL) (-536 1230467 1230584 1230767 "INFPROD0" 1231163 NIL INFPROD0 (NIL T T) -7 NIL NIL NIL) (-535 1227349 1228532 1229047 "INFORM" 1229960 T INFORM (NIL) -8 NIL NIL NIL) (-534 1226959 1227019 1227117 "INFORM1" 1227284 NIL INFORM1 (NIL T) -7 NIL NIL NIL) (-533 1226482 1226571 1226685 "INFINITY" 1226865 T INFINITY (NIL) -7 NIL NIL NIL) (-532 1225658 1226202 1226303 "INETCLTS" 1226401 T INETCLTS (NIL) -8 NIL NIL NIL) (-531 1224275 1224524 1224845 "INEP" 1225406 NIL INEP (NIL T T T) -7 NIL NIL NIL) (-530 1223551 1224172 1224237 "INDE" 1224242 NIL INDE (NIL T) -8 NIL NIL NIL) (-529 1223115 1223183 1223300 "INCRMAPS" 1223478 NIL INCRMAPS (NIL T) -7 NIL NIL NIL) (-528 1221933 1222384 1222590 "INBFILE" 1222929 T INBFILE (NIL) -8 NIL NIL NIL) (-527 1217244 1218169 1219113 "INBFF" 1221021 NIL INBFF (NIL T) -7 NIL NIL NIL) (-526 1216152 1216421 1216449 "INBCON" 1216962 T INBCON (NIL) -9 NIL 1217228 NIL) (-525 1215404 1215627 1215903 "INBCON-" 1215908 NIL INBCON- (NIL T) -8 NIL NIL NIL) (-524 1214906 1215125 1215217 "INAST" 1215332 T INAST (NIL) -8 NIL NIL NIL) (-523 1214360 1214585 1214691 "IMPTAST" 1214820 T IMPTAST (NIL) -8 NIL NIL NIL) (-522 1210854 1214204 1214308 "IMATRIX" 1214313 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL NIL) (-521 1209566 1209689 1210004 "IMATQF" 1210710 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL NIL) (-520 1207786 1208013 1208350 "IMATLIN" 1209322 NIL IMATLIN (NIL T T T T) -7 NIL NIL NIL) (-519 1202412 1207710 1207768 "ILIST" 1207773 NIL ILIST (NIL T NIL) -8 NIL NIL NIL) (-518 1200365 1202272 1202385 "IIARRAY2" 1202390 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL NIL) (-517 1195798 1200276 1200340 "IFF" 1200345 NIL IFF (NIL NIL NIL) -8 NIL NIL NIL) (-516 1195172 1195415 1195531 "IFAST" 1195702 T IFAST (NIL) -8 NIL NIL NIL) (-515 1190215 1194464 1194652 "IFARRAY" 1195029 NIL IFARRAY (NIL T NIL) -8 NIL NIL NIL) (-514 1189422 1190119 1190192 "IFAMON" 1190197 NIL IFAMON (NIL T T NIL) -8 NIL NIL NIL) (-513 1189006 1189071 1189125 "IEVALAB" 1189332 NIL IEVALAB (NIL T T) -9 NIL NIL NIL) (-512 1188681 1188749 1188909 "IEVALAB-" 1188914 NIL IEVALAB- (NIL T T T) -8 NIL NIL NIL) (-511 1188339 1188595 1188658 "IDPO" 1188663 NIL IDPO (NIL T T) -8 NIL NIL NIL) (-510 1187616 1188228 1188303 "IDPOAMS" 1188308 NIL IDPOAMS (NIL T T) -8 NIL NIL NIL) (-509 1186950 1187505 1187580 "IDPOAM" 1187585 NIL IDPOAM (NIL T T) -8 NIL NIL NIL) (-508 1186035 1186285 1186338 "IDPC" 1186751 NIL IDPC (NIL T T) -9 NIL 1186900 NIL) (-507 1185531 1185927 1186000 "IDPAM" 1186005 NIL IDPAM (NIL T T) -8 NIL NIL NIL) (-506 1184934 1185423 1185496 "IDPAG" 1185501 NIL IDPAG (NIL T T) -8 NIL NIL NIL) (-505 1184702 1184849 1184899 "IDENT" 1184904 T IDENT (NIL) -8 NIL NIL NIL) (-504 1180957 1181805 1182700 "IDECOMP" 1183859 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL NIL) (-503 1173831 1174880 1175927 "IDEAL" 1179993 NIL IDEAL (NIL T T T T) -8 NIL NIL NIL) (-502 1172995 1173107 1173306 "ICDEN" 1173715 NIL ICDEN (NIL T T T T) -7 NIL NIL NIL) (-501 1172094 1172475 1172622 "ICARD" 1172868 T ICARD (NIL) -8 NIL NIL NIL) (-500 1170154 1170467 1170872 "IBPTOOLS" 1171771 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL NIL) (-499 1165788 1169774 1169887 "IBITS" 1170073 NIL IBITS (NIL NIL) -8 NIL NIL NIL) (-498 1162511 1163087 1163782 "IBATOOL" 1165205 NIL IBATOOL (NIL T T T) -7 NIL NIL NIL) (-497 1160291 1160752 1161285 "IBACHIN" 1162046 NIL IBACHIN (NIL T T T) -7 NIL NIL NIL) (-496 1158168 1160137 1160240 "IARRAY2" 1160245 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL NIL) (-495 1154321 1158094 1158151 "IARRAY1" 1158156 NIL IARRAY1 (NIL T NIL) -8 NIL NIL NIL) (-494 1148315 1152733 1153214 "IAN" 1153860 T IAN (NIL) -8 NIL NIL NIL) (-493 1147826 1147883 1148056 "IALGFACT" 1148252 NIL IALGFACT (NIL T T T T) -7 NIL NIL NIL) (-492 1147354 1147467 1147495 "HYPCAT" 1147702 T HYPCAT (NIL) -9 NIL NIL NIL) (-491 1146892 1147009 1147195 "HYPCAT-" 1147200 NIL HYPCAT- (NIL T) -8 NIL NIL NIL) (-490 1146514 1146687 1146770 "HOSTNAME" 1146829 T HOSTNAME (NIL) -8 NIL NIL NIL) (-489 1146359 1146396 1146437 "HOMOTOP" 1146442 NIL HOMOTOP (NIL T) -9 NIL 1146475 NIL) (-488 1143038 1144369 1144410 "HOAGG" 1145391 NIL HOAGG (NIL T) -9 NIL 1146070 NIL) (-487 1141632 1142031 1142557 "HOAGG-" 1142562 NIL HOAGG- (NIL T T) -8 NIL NIL NIL) (-486 1135674 1141229 1141377 "HEXADEC" 1141504 T HEXADEC (NIL) -8 NIL NIL NIL) (-485 1134422 1134644 1134907 "HEUGCD" 1135451 NIL HEUGCD (NIL T) -7 NIL NIL NIL) (-484 1133525 1134259 1134389 "HELLFDIV" 1134394 NIL HELLFDIV (NIL T T T T) -8 NIL NIL NIL) (-483 1131753 1133302 1133390 "HEAP" 1133469 NIL HEAP (NIL T) -8 NIL NIL NIL) (-482 1131044 1131305 1131439 "HEADAST" 1131639 T HEADAST (NIL) -8 NIL NIL NIL) (-481 1124964 1130959 1131021 "HDP" 1131026 NIL HDP (NIL NIL T) -8 NIL NIL NIL) (-480 1118715 1124599 1124751 "HDMP" 1124865 NIL HDMP (NIL NIL T) -8 NIL NIL NIL) (-479 1118040 1118179 1118343 "HB" 1118571 T HB (NIL) -7 NIL NIL NIL) (-478 1111537 1117886 1117990 "HASHTBL" 1117995 NIL HASHTBL (NIL T T NIL) -8 NIL NIL NIL) (-477 1111040 1111258 1111350 "HASAST" 1111465 T HASAST (NIL) -8 NIL NIL NIL) (-476 1108852 1110662 1110844 "HACKPI" 1110878 T HACKPI (NIL) -8 NIL NIL NIL) (-475 1104547 1108705 1108818 "GTSET" 1108823 NIL GTSET (NIL T T T T) -8 NIL NIL NIL) (-474 1098073 1104425 1104523 "GSTBL" 1104528 NIL GSTBL (NIL T T T NIL) -8 NIL NIL NIL) (-473 1090386 1097104 1097369 "GSERIES" 1097864 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL NIL) (-472 1089553 1089944 1089972 "GROUP" 1090175 T GROUP (NIL) -9 NIL 1090309 NIL) (-471 1088919 1089078 1089329 "GROUP-" 1089334 NIL GROUP- (NIL T) -8 NIL NIL NIL) (-470 1087288 1087607 1087994 "GROEBSOL" 1088596 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL NIL) (-469 1086228 1086490 1086541 "GRMOD" 1087070 NIL GRMOD (NIL T T) -9 NIL 1087238 NIL) (-468 1085996 1086032 1086160 "GRMOD-" 1086165 NIL GRMOD- (NIL T T T) -8 NIL NIL NIL) (-467 1081322 1082350 1083350 "GRIMAGE" 1085016 T GRIMAGE (NIL) -8 NIL NIL NIL) (-466 1079789 1080049 1080373 "GRDEF" 1081018 T GRDEF (NIL) -7 NIL NIL NIL) (-465 1079233 1079349 1079490 "GRAY" 1079668 T GRAY (NIL) -7 NIL NIL NIL) (-464 1078446 1078826 1078877 "GRALG" 1079030 NIL GRALG (NIL T T) -9 NIL 1079123 NIL) (-463 1078107 1078180 1078343 "GRALG-" 1078348 NIL GRALG- (NIL T T T) -8 NIL NIL NIL) (-462 1074911 1077692 1077870 "GPOLSET" 1078014 NIL GPOLSET (NIL T T T T) -8 NIL NIL NIL) (-461 1074265 1074322 1074580 "GOSPER" 1074848 NIL GOSPER (NIL T T T T T) -7 NIL NIL NIL) (-460 1070024 1070703 1071229 "GMODPOL" 1073964 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL NIL) (-459 1069029 1069213 1069451 "GHENSEL" 1069836 NIL GHENSEL (NIL T T) -7 NIL NIL NIL) (-458 1063080 1063923 1064950 "GENUPS" 1068113 NIL GENUPS (NIL T T) -7 NIL NIL NIL) (-457 1062777 1062828 1062917 "GENUFACT" 1063023 NIL GENUFACT (NIL T) -7 NIL NIL NIL) (-456 1062189 1062266 1062431 "GENPGCD" 1062695 NIL GENPGCD (NIL T T T T) -7 NIL NIL NIL) (-455 1061663 1061698 1061911 "GENMFACT" 1062148 NIL GENMFACT (NIL T T T T T) -7 NIL NIL NIL) (-454 1060231 1060486 1060793 "GENEEZ" 1061406 NIL GENEEZ (NIL T T) -7 NIL NIL NIL) (-453 1054144 1059842 1060004 "GDMP" 1060154 NIL GDMP (NIL NIL T T) -8 NIL NIL NIL) (-452 1043521 1047915 1049021 "GCNAALG" 1053127 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-451 1041948 1042776 1042804 "GCDDOM" 1043059 T GCDDOM (NIL) -9 NIL 1043216 NIL) (-450 1041418 1041545 1041760 "GCDDOM-" 1041765 NIL GCDDOM- (NIL T) -8 NIL NIL NIL) (-449 1040090 1040275 1040579 "GB" 1041197 NIL GB (NIL T T T T) -7 NIL NIL NIL) (-448 1028710 1031036 1033428 "GBINTERN" 1037781 NIL GBINTERN (NIL T T T T) -7 NIL NIL NIL) (-447 1026547 1026839 1027260 "GBF" 1028385 NIL GBF (NIL T T T T) -7 NIL NIL NIL) (-446 1025328 1025493 1025760 "GBEUCLID" 1026363 NIL GBEUCLID (NIL T T T T) -7 NIL NIL NIL) (-445 1024677 1024802 1024951 "GAUSSFAC" 1025199 T GAUSSFAC (NIL) -7 NIL NIL NIL) (-444 1023044 1023346 1023660 "GALUTIL" 1024396 NIL GALUTIL (NIL T) -7 NIL NIL NIL) (-443 1021352 1021626 1021950 "GALPOLYU" 1022771 NIL GALPOLYU (NIL T T) -7 NIL NIL NIL) (-442 1018717 1019007 1019414 "GALFACTU" 1021049 NIL GALFACTU (NIL T T T) -7 NIL NIL NIL) (-441 1010523 1012022 1013630 "GALFACT" 1017149 NIL GALFACT (NIL T) -7 NIL NIL NIL) (-440 1007911 1008569 1008597 "FVFUN" 1009753 T FVFUN (NIL) -9 NIL 1010473 NIL) (-439 1007177 1007359 1007387 "FVC" 1007678 T FVC (NIL) -9 NIL 1007861 NIL) (-438 1006847 1007002 1007070 "FUNDESC" 1007129 T FUNDESC (NIL) -8 NIL NIL NIL) (-437 1006489 1006644 1006725 "FUNCTION" 1006799 NIL FUNCTION (NIL NIL) -8 NIL NIL NIL) (-436 1004260 1004811 1005277 "FT" 1006043 T FT (NIL) -8 NIL NIL NIL) (-435 1003078 1003561 1003764 "FTEM" 1004077 T FTEM (NIL) -8 NIL NIL NIL) (-434 1001334 1001623 1002027 "FSUPFACT" 1002769 NIL FSUPFACT (NIL T T T) -7 NIL NIL NIL) (-433 999731 1000020 1000352 "FST" 1001022 T FST (NIL) -8 NIL NIL NIL) (-432 998902 999008 999203 "FSRED" 999613 NIL FSRED (NIL T T) -7 NIL NIL NIL) (-431 997581 997836 998190 "FSPRMELT" 998617 NIL FSPRMELT (NIL T T) -7 NIL NIL NIL) (-430 994666 995104 995603 "FSPECF" 997144 NIL FSPECF (NIL T T) -7 NIL NIL NIL) (-429 976726 985169 985209 "FS" 989057 NIL FS (NIL T) -9 NIL 991346 NIL) (-428 965376 968366 972422 "FS-" 972719 NIL FS- (NIL T T) -8 NIL NIL NIL) (-427 964890 964944 965121 "FSINT" 965317 NIL FSINT (NIL T T) -7 NIL NIL NIL) (-426 963217 963883 964186 "FSERIES" 964669 NIL FSERIES (NIL T T) -8 NIL NIL NIL) (-425 962231 962347 962578 "FSCINT" 963097 NIL FSCINT (NIL T T) -7 NIL NIL NIL) (-424 958465 961175 961216 "FSAGG" 961586 NIL FSAGG (NIL T) -9 NIL 961845 NIL) (-423 956227 956828 957624 "FSAGG-" 957719 NIL FSAGG- (NIL T T) -8 NIL NIL NIL) (-422 955269 955412 955639 "FSAGG2" 956080 NIL FSAGG2 (NIL T T T T) -7 NIL NIL NIL) (-421 952924 953203 953757 "FS2UPS" 954987 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL NIL) (-420 952506 952549 952704 "FS2" 952875 NIL FS2 (NIL T T T T) -7 NIL NIL NIL) (-419 951363 951534 951843 "FS2EXPXP" 952331 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL NIL) (-418 950789 950904 951056 "FRUTIL" 951243 NIL FRUTIL (NIL T) -7 NIL NIL NIL) (-417 942244 946284 947642 "FR" 949463 NIL FR (NIL T) -8 NIL NIL NIL) (-416 937319 939962 940002 "FRNAALG" 941398 NIL FRNAALG (NIL T) -9 NIL 942005 NIL) (-415 932997 934068 935343 "FRNAALG-" 936093 NIL FRNAALG- (NIL T T) -8 NIL NIL NIL) (-414 932635 932678 932805 "FRNAAF2" 932948 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL NIL) (-413 931042 931489 931784 "FRMOD" 932447 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL NIL) (-412 928821 929425 929742 "FRIDEAL" 930833 NIL FRIDEAL (NIL T T T T) -8 NIL NIL NIL) (-411 928016 928103 928392 "FRIDEAL2" 928728 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-410 927149 927563 927604 "FRETRCT" 927609 NIL FRETRCT (NIL T) -9 NIL 927785 NIL) (-409 926261 926492 926843 "FRETRCT-" 926848 NIL FRETRCT- (NIL T T) -8 NIL NIL NIL) (-408 923473 924649 924708 "FRAMALG" 925590 NIL FRAMALG (NIL T T) -9 NIL 925882 NIL) (-407 921607 922062 922692 "FRAMALG-" 922915 NIL FRAMALG- (NIL T T T) -8 NIL NIL NIL) (-406 915565 921082 921358 "FRAC" 921363 NIL FRAC (NIL T) -8 NIL NIL NIL) (-405 915201 915258 915365 "FRAC2" 915502 NIL FRAC2 (NIL T T) -7 NIL NIL NIL) (-404 914837 914894 915001 "FR2" 915138 NIL FR2 (NIL T T) -7 NIL NIL NIL) (-403 909510 912362 912390 "FPS" 913509 T FPS (NIL) -9 NIL 914066 NIL) (-402 908959 909068 909232 "FPS-" 909378 NIL FPS- (NIL T) -8 NIL NIL NIL) (-401 906413 908048 908076 "FPC" 908301 T FPC (NIL) -9 NIL 908443 NIL) (-400 906206 906246 906343 "FPC-" 906348 NIL FPC- (NIL T) -8 NIL NIL NIL) (-399 905084 905694 905735 "FPATMAB" 905740 NIL FPATMAB (NIL T) -9 NIL 905892 NIL) (-398 902784 903260 903686 "FPARFRAC" 904721 NIL FPARFRAC (NIL T T) -8 NIL NIL NIL) (-397 898178 898676 899358 "FORTRAN" 902216 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL NIL) (-396 895894 896394 896933 "FORT" 897659 T FORT (NIL) -7 NIL NIL NIL) (-395 893570 894132 894160 "FORTFN" 895220 T FORTFN (NIL) -9 NIL 895844 NIL) (-394 893334 893384 893412 "FORTCAT" 893471 T FORTCAT (NIL) -9 NIL 893533 NIL) (-393 891467 891950 892340 "FORMULA" 892964 T FORMULA (NIL) -8 NIL NIL NIL) (-392 891255 891285 891354 "FORMULA1" 891431 NIL FORMULA1 (NIL T) -7 NIL NIL NIL) (-391 890778 890830 891003 "FORDER" 891197 NIL FORDER (NIL T T T T) -7 NIL NIL NIL) (-390 889874 890038 890231 "FOP" 890605 T FOP (NIL) -7 NIL NIL NIL) (-389 888482 889154 889328 "FNLA" 889756 NIL FNLA (NIL NIL NIL T) -8 NIL NIL NIL) (-388 887237 887626 887654 "FNCAT" 888114 T FNCAT (NIL) -9 NIL 888374 NIL) (-387 886803 887196 887224 "FNAME" 887229 T FNAME (NIL) -8 NIL NIL NIL) (-386 885466 886395 886423 "FMTC" 886428 T FMTC (NIL) -9 NIL 886464 NIL) (-385 881828 882989 883618 "FMONOID" 884870 NIL FMONOID (NIL T) -8 NIL NIL NIL) (-384 881047 881570 881719 "FM" 881724 NIL FM (NIL T T) -8 NIL NIL NIL) (-383 878471 879117 879145 "FMFUN" 880289 T FMFUN (NIL) -9 NIL 880997 NIL) (-382 877740 877921 877949 "FMC" 878239 T FMC (NIL) -9 NIL 878421 NIL) (-381 874934 875768 875822 "FMCAT" 877017 NIL FMCAT (NIL T T) -9 NIL 877512 NIL) (-380 873827 874700 874800 "FM1" 874879 NIL FM1 (NIL T T) -8 NIL NIL NIL) (-379 871601 872017 872511 "FLOATRP" 873378 NIL FLOATRP (NIL T) -7 NIL NIL NIL) (-378 865225 869330 869951 "FLOAT" 871000 T FLOAT (NIL) -8 NIL NIL NIL) (-377 862663 863163 863741 "FLOATCP" 864692 NIL FLOATCP (NIL T) -7 NIL NIL NIL) (-376 861472 862276 862317 "FLINEXP" 862322 NIL FLINEXP (NIL T) -9 NIL 862415 NIL) (-375 860626 860861 861189 "FLINEXP-" 861194 NIL FLINEXP- (NIL T T) -8 NIL NIL NIL) (-374 859702 859846 860070 "FLASORT" 860478 NIL FLASORT (NIL T T) -7 NIL NIL NIL) (-373 856919 857761 857813 "FLALG" 859040 NIL FLALG (NIL T T) -9 NIL 859507 NIL) (-372 850703 854405 854446 "FLAGG" 855708 NIL FLAGG (NIL T) -9 NIL 856360 NIL) (-371 849429 849768 850258 "FLAGG-" 850263 NIL FLAGG- (NIL T T) -8 NIL NIL NIL) (-370 848471 848614 848841 "FLAGG2" 849282 NIL FLAGG2 (NIL T T T T) -7 NIL NIL NIL) (-369 845446 846420 846479 "FINRALG" 847607 NIL FINRALG (NIL T T) -9 NIL 848115 NIL) (-368 844606 844835 845174 "FINRALG-" 845179 NIL FINRALG- (NIL T T T) -8 NIL NIL NIL) (-367 844012 844225 844253 "FINITE" 844449 T FINITE (NIL) -9 NIL 844556 NIL) (-366 836470 838631 838671 "FINAALG" 842338 NIL FINAALG (NIL T) -9 NIL 843791 NIL) (-365 831811 832852 833996 "FINAALG-" 835375 NIL FINAALG- (NIL T T) -8 NIL NIL NIL) (-364 831206 831566 831669 "FILE" 831741 NIL FILE (NIL T) -8 NIL NIL NIL) (-363 829890 830202 830256 "FILECAT" 830940 NIL FILECAT (NIL T T) -9 NIL 831156 NIL) (-362 827758 829252 829280 "FIELD" 829320 T FIELD (NIL) -9 NIL 829400 NIL) (-361 826378 826763 827274 "FIELD-" 827279 NIL FIELD- (NIL T) -8 NIL NIL NIL) (-360 824256 825013 825360 "FGROUP" 826064 NIL FGROUP (NIL T) -8 NIL NIL NIL) (-359 823346 823510 823730 "FGLMICPK" 824088 NIL FGLMICPK (NIL T NIL) -7 NIL NIL NIL) (-358 819213 823271 823328 "FFX" 823333 NIL FFX (NIL T NIL) -8 NIL NIL NIL) (-357 818814 818875 819010 "FFSLPE" 819146 NIL FFSLPE (NIL T T T) -7 NIL NIL NIL) (-356 814807 815586 816382 "FFPOLY" 818050 NIL FFPOLY (NIL T) -7 NIL NIL NIL) (-355 814311 814347 814556 "FFPOLY2" 814765 NIL FFPOLY2 (NIL T T) -7 NIL NIL NIL) (-354 810197 814230 814293 "FFP" 814298 NIL FFP (NIL T NIL) -8 NIL NIL NIL) (-353 805630 810108 810172 "FF" 810177 NIL FF (NIL NIL NIL) -8 NIL NIL NIL) (-352 800791 804973 805163 "FFNBX" 805484 NIL FFNBX (NIL T NIL) -8 NIL NIL NIL) (-351 795765 799926 800184 "FFNBP" 800645 NIL FFNBP (NIL T NIL) -8 NIL NIL NIL) (-350 790433 795049 795260 "FFNB" 795598 NIL FFNB (NIL NIL NIL) -8 NIL NIL NIL) (-349 789265 789463 789778 "FFINTBAS" 790230 NIL FFINTBAS (NIL T T T) -7 NIL NIL NIL) (-348 785493 787672 787700 "FFIELDC" 788320 T FFIELDC (NIL) -9 NIL 788696 NIL) (-347 784156 784526 785023 "FFIELDC-" 785028 NIL FFIELDC- (NIL T) -8 NIL NIL NIL) (-346 783726 783771 783895 "FFHOM" 784098 NIL FFHOM (NIL T T T) -7 NIL NIL NIL) (-345 781424 781908 782425 "FFF" 783241 NIL FFF (NIL T) -7 NIL NIL NIL) (-344 777077 781166 781267 "FFCGX" 781367 NIL FFCGX (NIL T NIL) -8 NIL NIL NIL) (-343 772744 776809 776916 "FFCGP" 777020 NIL FFCGP (NIL T NIL) -8 NIL NIL NIL) (-342 767962 772471 772579 "FFCG" 772680 NIL FFCG (NIL NIL NIL) -8 NIL NIL NIL) (-341 749795 758833 758919 "FFCAT" 764084 NIL FFCAT (NIL T T T) -9 NIL 765535 NIL) (-340 744993 746040 747354 "FFCAT-" 748584 NIL FFCAT- (NIL T T T T) -8 NIL NIL NIL) (-339 744404 744447 744682 "FFCAT2" 744944 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-338 733616 737376 738596 "FEXPR" 743256 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL NIL) (-337 732616 733051 733092 "FEVALAB" 733176 NIL FEVALAB (NIL T) -9 NIL 733437 NIL) (-336 731775 731985 732323 "FEVALAB-" 732328 NIL FEVALAB- (NIL T T) -8 NIL NIL NIL) (-335 730368 731158 731361 "FDIV" 731674 NIL FDIV (NIL T T T T) -8 NIL NIL NIL) (-334 727434 728149 728264 "FDIVCAT" 729832 NIL FDIVCAT (NIL T T T T) -9 NIL 730269 NIL) (-333 727196 727223 727393 "FDIVCAT-" 727398 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL NIL) (-332 726416 726503 726780 "FDIV2" 727103 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-331 725102 725361 725650 "FCPAK1" 726147 T FCPAK1 (NIL) -7 NIL NIL NIL) (-330 724230 724602 724743 "FCOMP" 724993 NIL FCOMP (NIL T) -8 NIL NIL NIL) (-329 707967 711380 714918 "FC" 720712 T FC (NIL) -8 NIL NIL NIL) (-328 700546 704531 704571 "FAXF" 706373 NIL FAXF (NIL T) -9 NIL 707065 NIL) (-327 697825 698480 699305 "FAXF-" 699770 NIL FAXF- (NIL T T) -8 NIL NIL NIL) (-326 692925 697201 697377 "FARRAY" 697682 NIL FARRAY (NIL T) -8 NIL NIL NIL) (-325 688178 690210 690263 "FAMR" 691286 NIL FAMR (NIL T T) -9 NIL 691746 NIL) (-324 687068 687370 687805 "FAMR-" 687810 NIL FAMR- (NIL T T T) -8 NIL NIL NIL) (-323 686264 686990 687043 "FAMONOID" 687048 NIL FAMONOID (NIL T) -8 NIL NIL NIL) (-322 684076 684760 684813 "FAMONC" 685754 NIL FAMONC (NIL T T) -9 NIL 686140 NIL) (-321 682768 683830 683967 "FAGROUP" 683972 NIL FAGROUP (NIL T) -8 NIL NIL NIL) (-320 680563 680882 681285 "FACUTIL" 682449 NIL FACUTIL (NIL T T T T) -7 NIL NIL NIL) (-319 679662 679847 680069 "FACTFUNC" 680373 NIL FACTFUNC (NIL T) -7 NIL NIL NIL) (-318 672067 678913 679125 "EXPUPXS" 679518 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-317 669550 670090 670676 "EXPRTUBE" 671501 T EXPRTUBE (NIL) -7 NIL NIL NIL) (-316 665744 666336 667073 "EXPRODE" 668889 NIL EXPRODE (NIL T T) -7 NIL NIL NIL) (-315 651118 664399 664827 "EXPR" 665348 NIL EXPR (NIL T) -8 NIL NIL NIL) (-314 645525 646112 646925 "EXPR2UPS" 650416 NIL EXPR2UPS (NIL T T) -7 NIL NIL NIL) (-313 645161 645218 645325 "EXPR2" 645462 NIL EXPR2 (NIL T T) -7 NIL NIL NIL) (-312 636566 644293 644590 "EXPEXPAN" 644998 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL NIL) (-311 636393 636523 636552 "EXIT" 636557 T EXIT (NIL) -8 NIL NIL NIL) (-310 635900 636117 636208 "EXITAST" 636322 T EXITAST (NIL) -8 NIL NIL NIL) (-309 635527 635589 635702 "EVALCYC" 635832 NIL EVALCYC (NIL T) -7 NIL NIL NIL) (-308 635068 635186 635227 "EVALAB" 635397 NIL EVALAB (NIL T) -9 NIL 635501 NIL) (-307 634549 634671 634892 "EVALAB-" 634897 NIL EVALAB- (NIL T T) -8 NIL NIL NIL) (-306 632017 633285 633313 "EUCDOM" 633868 T EUCDOM (NIL) -9 NIL 634218 NIL) (-305 630422 630864 631454 "EUCDOM-" 631459 NIL EUCDOM- (NIL T) -8 NIL NIL NIL) (-304 617962 620720 623470 "ESTOOLS" 627692 T ESTOOLS (NIL) -7 NIL NIL NIL) (-303 617594 617651 617760 "ESTOOLS2" 617899 NIL ESTOOLS2 (NIL T T) -7 NIL NIL NIL) (-302 617345 617387 617467 "ESTOOLS1" 617546 NIL ESTOOLS1 (NIL T) -7 NIL NIL NIL) (-301 611250 612978 613006 "ES" 615774 T ES (NIL) -9 NIL 617183 NIL) (-300 606198 607484 609301 "ES-" 609465 NIL ES- (NIL T) -8 NIL NIL NIL) (-299 602573 603333 604113 "ESCONT" 605438 T ESCONT (NIL) -7 NIL NIL NIL) (-298 602318 602350 602432 "ESCONT1" 602535 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL NIL) (-297 601993 602043 602143 "ES2" 602262 NIL ES2 (NIL T T) -7 NIL NIL NIL) (-296 601623 601681 601790 "ES1" 601929 NIL ES1 (NIL T T) -7 NIL NIL NIL) (-295 600839 600968 601144 "ERROR" 601467 T ERROR (NIL) -7 NIL NIL NIL) (-294 594342 600698 600789 "EQTBL" 600794 NIL EQTBL (NIL T T) -8 NIL NIL NIL) (-293 586899 589656 591105 "EQ" 592926 NIL -3310 (NIL T) -8 NIL NIL NIL) (-292 586531 586588 586697 "EQ2" 586836 NIL EQ2 (NIL T T) -7 NIL NIL NIL) (-291 581823 582869 583962 "EP" 585470 NIL EP (NIL T) -7 NIL NIL NIL) (-290 580405 580706 581023 "ENV" 581526 T ENV (NIL) -8 NIL NIL NIL) (-289 579584 580104 580132 "ENTIRER" 580137 T ENTIRER (NIL) -9 NIL 580183 NIL) (-288 576086 577539 577909 "EMR" 579383 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL NIL) (-287 575230 575415 575469 "ELTAGG" 575849 NIL ELTAGG (NIL T T) -9 NIL 576060 NIL) (-286 574949 575011 575152 "ELTAGG-" 575157 NIL ELTAGG- (NIL T T T) -8 NIL NIL NIL) (-285 574738 574767 574821 "ELTAB" 574905 NIL ELTAB (NIL T T) -9 NIL NIL NIL) (-284 573864 574010 574209 "ELFUTS" 574589 NIL ELFUTS (NIL T T) -7 NIL NIL NIL) (-283 573606 573662 573690 "ELEMFUN" 573795 T ELEMFUN (NIL) -9 NIL NIL NIL) (-282 573476 573497 573565 "ELEMFUN-" 573570 NIL ELEMFUN- (NIL T) -8 NIL NIL NIL) (-281 568367 571576 571617 "ELAGG" 572557 NIL ELAGG (NIL T) -9 NIL 573020 NIL) (-280 566652 567086 567749 "ELAGG-" 567754 NIL ELAGG- (NIL T T) -8 NIL NIL NIL) (-279 565309 565589 565884 "ELABEXPR" 566377 T ELABEXPR (NIL) -8 NIL NIL NIL) (-278 558175 559976 560803 "EFUPXS" 564585 NIL EFUPXS (NIL T T T T) -8 NIL NIL NIL) (-277 551625 553426 554236 "EFULS" 557451 NIL EFULS (NIL T T T) -8 NIL NIL NIL) (-276 549047 549405 549884 "EFSTRUC" 551257 NIL EFSTRUC (NIL T T) -7 NIL NIL NIL) (-275 538119 539684 541244 "EF" 547562 NIL EF (NIL T T) -7 NIL NIL NIL) (-274 537220 537604 537753 "EAB" 537990 T EAB (NIL) -8 NIL NIL NIL) (-273 536429 537179 537207 "E04UCFA" 537212 T E04UCFA (NIL) -8 NIL NIL NIL) (-272 535638 536388 536416 "E04NAFA" 536421 T E04NAFA (NIL) -8 NIL NIL NIL) (-271 534847 535597 535625 "E04MBFA" 535630 T E04MBFA (NIL) -8 NIL NIL NIL) (-270 534056 534806 534834 "E04JAFA" 534839 T E04JAFA (NIL) -8 NIL NIL NIL) (-269 533267 534015 534043 "E04GCFA" 534048 T E04GCFA (NIL) -8 NIL NIL NIL) (-268 532478 533226 533254 "E04FDFA" 533259 T E04FDFA (NIL) -8 NIL NIL NIL) (-267 531687 532437 532465 "E04DGFA" 532470 T E04DGFA (NIL) -8 NIL NIL NIL) (-266 525865 527212 528576 "E04AGNT" 530343 T E04AGNT (NIL) -7 NIL NIL NIL) (-265 524571 525051 525091 "DVARCAT" 525566 NIL DVARCAT (NIL T) -9 NIL 525765 NIL) (-264 523775 523987 524301 "DVARCAT-" 524306 NIL DVARCAT- (NIL T T) -8 NIL NIL NIL) (-263 516675 523574 523703 "DSMP" 523708 NIL DSMP (NIL T T T) -8 NIL NIL NIL) (-262 511485 512620 513688 "DROPT" 515627 T DROPT (NIL) -8 NIL NIL NIL) (-261 511150 511209 511307 "DROPT1" 511420 NIL DROPT1 (NIL T) -7 NIL NIL NIL) (-260 506265 507391 508528 "DROPT0" 510033 T DROPT0 (NIL) -7 NIL NIL NIL) (-259 504610 504935 505321 "DRAWPT" 505899 T DRAWPT (NIL) -7 NIL NIL NIL) (-258 499197 500120 501199 "DRAW" 503584 NIL DRAW (NIL T) -7 NIL NIL NIL) (-257 498830 498883 499001 "DRAWHACK" 499138 NIL DRAWHACK (NIL T) -7 NIL NIL NIL) (-256 497561 497830 498121 "DRAWCX" 498559 T DRAWCX (NIL) -7 NIL NIL NIL) (-255 497077 497145 497296 "DRAWCURV" 497487 NIL DRAWCURV (NIL T T) -7 NIL NIL NIL) (-254 487548 489507 491622 "DRAWCFUN" 494982 T DRAWCFUN (NIL) -7 NIL NIL NIL) (-253 484361 486243 486284 "DQAGG" 486913 NIL DQAGG (NIL T) -9 NIL 487186 NIL) (-252 472640 479339 479422 "DPOLCAT" 481274 NIL DPOLCAT (NIL T T T T) -9 NIL 481819 NIL) (-251 467479 468825 470783 "DPOLCAT-" 470788 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL NIL) (-250 460634 467340 467438 "DPMO" 467443 NIL DPMO (NIL NIL T T) -8 NIL NIL NIL) (-249 453692 460414 460581 "DPMM" 460586 NIL DPMM (NIL NIL T T T) -8 NIL NIL NIL) (-248 453324 453611 453659 "DOMCTOR" 453664 T DOMCTOR (NIL) -8 NIL NIL NIL) (-247 452619 452846 452983 "DOMAIN" 453207 T DOMAIN (NIL) -8 NIL NIL NIL) (-246 446370 452254 452406 "DMP" 452520 NIL DMP (NIL NIL T) -8 NIL NIL NIL) (-245 445970 446026 446170 "DLP" 446308 NIL DLP (NIL T) -7 NIL NIL NIL) (-244 439840 445297 445487 "DLIST" 445812 NIL DLIST (NIL T) -8 NIL NIL NIL) (-243 436684 438693 438734 "DLAGG" 439284 NIL DLAGG (NIL T) -9 NIL 439514 NIL) (-242 435497 436127 436155 "DIVRING" 436247 T DIVRING (NIL) -9 NIL 436330 NIL) (-241 434734 434924 435224 "DIVRING-" 435229 NIL DIVRING- (NIL T) -8 NIL NIL NIL) (-240 432836 433193 433599 "DISPLAY" 434348 T DISPLAY (NIL) -7 NIL NIL NIL) (-239 426778 432750 432813 "DIRPROD" 432818 NIL DIRPROD (NIL NIL T) -8 NIL NIL NIL) (-238 425626 425829 426094 "DIRPROD2" 426571 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL NIL) (-237 414889 420841 420894 "DIRPCAT" 421304 NIL DIRPCAT (NIL NIL T) -9 NIL 422144 NIL) (-236 412215 412857 413738 "DIRPCAT-" 414075 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL NIL) (-235 411502 411662 411848 "DIOSP" 412049 T DIOSP (NIL) -7 NIL NIL NIL) (-234 408204 410414 410455 "DIOPS" 410889 NIL DIOPS (NIL T) -9 NIL 411118 NIL) (-233 407753 407867 408058 "DIOPS-" 408063 NIL DIOPS- (NIL T T) -8 NIL NIL NIL) (-232 406645 407239 407267 "DIFRING" 407454 T DIFRING (NIL) -9 NIL 407564 NIL) (-231 406291 406368 406520 "DIFRING-" 406525 NIL DIFRING- (NIL T) -8 NIL NIL NIL) (-230 404096 405334 405375 "DIFEXT" 405738 NIL DIFEXT (NIL T) -9 NIL 406032 NIL) (-229 402381 402809 403475 "DIFEXT-" 403480 NIL DIFEXT- (NIL T T) -8 NIL NIL NIL) (-228 399703 401913 401954 "DIAGG" 401959 NIL DIAGG (NIL T) -9 NIL 401979 NIL) (-227 399087 399244 399496 "DIAGG-" 399501 NIL DIAGG- (NIL T T) -8 NIL NIL NIL) (-226 394552 398046 398323 "DHMATRIX" 398856 NIL DHMATRIX (NIL T) -8 NIL NIL NIL) (-225 390164 391073 392083 "DFSFUN" 393562 T DFSFUN (NIL) -7 NIL NIL NIL) (-224 385280 389095 389407 "DFLOAT" 389872 T DFLOAT (NIL) -8 NIL NIL NIL) (-223 383508 383789 384185 "DFINTTLS" 384988 NIL DFINTTLS (NIL T T) -7 NIL NIL NIL) (-222 380573 381529 381929 "DERHAM" 383174 NIL DERHAM (NIL T NIL) -8 NIL NIL NIL) (-221 378422 380348 380437 "DEQUEUE" 380517 NIL DEQUEUE (NIL T) -8 NIL NIL NIL) (-220 377637 377770 377966 "DEGRED" 378284 NIL DEGRED (NIL T T) -7 NIL NIL NIL) (-219 374032 374777 375630 "DEFINTRF" 376865 NIL DEFINTRF (NIL T) -7 NIL NIL NIL) (-218 371559 372028 372627 "DEFINTEF" 373551 NIL DEFINTEF (NIL T T) -7 NIL NIL NIL) (-217 370936 371179 371294 "DEFAST" 371464 T DEFAST (NIL) -8 NIL NIL NIL) (-216 364978 370533 370681 "DECIMAL" 370808 T DECIMAL (NIL) -8 NIL NIL NIL) (-215 362490 362948 363454 "DDFACT" 364522 NIL DDFACT (NIL T T) -7 NIL NIL NIL) (-214 362086 362129 362280 "DBLRESP" 362441 NIL DBLRESP (NIL T T T T) -7 NIL NIL NIL) (-213 359985 360319 360679 "DBASE" 361853 NIL DBASE (NIL T) -8 NIL NIL NIL) (-212 359254 359465 359611 "DATAARY" 359884 NIL DATAARY (NIL NIL T) -8 NIL NIL NIL) (-211 358387 359213 359241 "D03FAFA" 359246 T D03FAFA (NIL) -8 NIL NIL NIL) (-210 357521 358346 358374 "D03EEFA" 358379 T D03EEFA (NIL) -8 NIL NIL NIL) (-209 355471 355937 356426 "D03AGNT" 357052 T D03AGNT (NIL) -7 NIL NIL NIL) (-208 354787 355430 355458 "D02EJFA" 355463 T D02EJFA (NIL) -8 NIL NIL NIL) (-207 354103 354746 354774 "D02CJFA" 354779 T D02CJFA (NIL) -8 NIL NIL NIL) (-206 353419 354062 354090 "D02BHFA" 354095 T D02BHFA (NIL) -8 NIL NIL NIL) (-205 352735 353378 353406 "D02BBFA" 353411 T D02BBFA (NIL) -8 NIL NIL NIL) (-204 345933 347521 349127 "D02AGNT" 351149 T D02AGNT (NIL) -7 NIL NIL NIL) (-203 343702 344224 344770 "D01WGTS" 345407 T D01WGTS (NIL) -7 NIL NIL NIL) (-202 342797 343661 343689 "D01TRNS" 343694 T D01TRNS (NIL) -8 NIL NIL NIL) (-201 341892 342756 342784 "D01GBFA" 342789 T D01GBFA (NIL) -8 NIL NIL NIL) (-200 340987 341851 341879 "D01FCFA" 341884 T D01FCFA (NIL) -8 NIL NIL NIL) (-199 340082 340946 340974 "D01ASFA" 340979 T D01ASFA (NIL) -8 NIL NIL NIL) (-198 339177 340041 340069 "D01AQFA" 340074 T D01AQFA (NIL) -8 NIL NIL NIL) (-197 338272 339136 339164 "D01APFA" 339169 T D01APFA (NIL) -8 NIL NIL NIL) (-196 337367 338231 338259 "D01ANFA" 338264 T D01ANFA (NIL) -8 NIL NIL NIL) (-195 336462 337326 337354 "D01AMFA" 337359 T D01AMFA (NIL) -8 NIL NIL NIL) (-194 335557 336421 336449 "D01ALFA" 336454 T D01ALFA (NIL) -8 NIL NIL NIL) (-193 334652 335516 335544 "D01AKFA" 335549 T D01AKFA (NIL) -8 NIL NIL NIL) (-192 333747 334611 334639 "D01AJFA" 334644 T D01AJFA (NIL) -8 NIL NIL NIL) (-191 327044 328595 330156 "D01AGNT" 332206 T D01AGNT (NIL) -7 NIL NIL NIL) (-190 326381 326509 326661 "CYCLOTOM" 326912 T CYCLOTOM (NIL) -7 NIL NIL NIL) (-189 323116 323829 324556 "CYCLES" 325674 T CYCLES (NIL) -7 NIL NIL NIL) (-188 322428 322562 322733 "CVMP" 322977 NIL CVMP (NIL T) -7 NIL NIL NIL) (-187 320199 320457 320833 "CTRIGMNP" 322156 NIL CTRIGMNP (NIL T T) -7 NIL NIL NIL) (-186 319690 319990 320064 "CTOR" 320145 T CTOR (NIL) -8 NIL NIL NIL) (-185 319226 319421 319522 "CTORKIND" 319609 T CTORKIND (NIL) -8 NIL NIL NIL) (-184 318574 318833 318861 "CTORCAT" 319043 T CTORCAT (NIL) -9 NIL 319156 NIL) (-183 318172 318283 318442 "CTORCAT-" 318447 NIL CTORCAT- (NIL T) -8 NIL NIL NIL) (-182 317688 317875 317973 "CTORCALL" 318094 T CTORCALL (NIL) -8 NIL NIL NIL) (-181 317062 317161 317314 "CSTTOOLS" 317585 NIL CSTTOOLS (NIL T T) -7 NIL NIL NIL) (-180 312861 313518 314276 "CRFP" 316374 NIL CRFP (NIL T T) -7 NIL NIL NIL) (-179 312363 312582 312674 "CRCEAST" 312789 T CRCEAST (NIL) -8 NIL NIL NIL) (-178 311410 311595 311823 "CRAPACK" 312167 NIL CRAPACK (NIL T) -7 NIL NIL NIL) (-177 310794 310895 311099 "CPMATCH" 311286 NIL CPMATCH (NIL T T T) -7 NIL NIL NIL) (-176 310519 310547 310653 "CPIMA" 310760 NIL CPIMA (NIL T T T) -7 NIL NIL NIL) (-175 306883 307555 308273 "COORDSYS" 309854 NIL COORDSYS (NIL T) -7 NIL NIL NIL) (-174 306267 306396 306546 "CONTOUR" 306753 T CONTOUR (NIL) -8 NIL NIL NIL) (-173 302193 304270 304762 "CONTFRAC" 305807 NIL CONTFRAC (NIL T) -8 NIL NIL NIL) (-172 302073 302094 302122 "CONDUIT" 302159 T CONDUIT (NIL) -9 NIL NIL NIL) (-171 301246 301766 301794 "COMRING" 301799 T COMRING (NIL) -9 NIL 301851 NIL) (-170 300327 300604 300788 "COMPPROP" 301082 T COMPPROP (NIL) -8 NIL NIL NIL) (-169 299988 300023 300151 "COMPLPAT" 300286 NIL COMPLPAT (NIL T T T) -7 NIL NIL NIL) (-168 290045 299797 299906 "COMPLEX" 299911 NIL COMPLEX (NIL T) -8 NIL NIL NIL) (-167 289681 289738 289845 "COMPLEX2" 289982 NIL COMPLEX2 (NIL T T) -7 NIL NIL NIL) (-166 289399 289434 289532 "COMPFACT" 289640 NIL COMPFACT (NIL T T) -7 NIL NIL NIL) (-165 273572 283792 283832 "COMPCAT" 284836 NIL COMPCAT (NIL T) -9 NIL 286221 NIL) (-164 263088 266011 269638 "COMPCAT-" 269994 NIL COMPCAT- (NIL T T) -8 NIL NIL NIL) (-163 262817 262845 262948 "COMMUPC" 263054 NIL COMMUPC (NIL T T T) -7 NIL NIL NIL) (-162 262612 262645 262704 "COMMONOP" 262778 T COMMONOP (NIL) -7 NIL NIL NIL) (-161 262195 262363 262450 "COMM" 262545 T COMM (NIL) -8 NIL NIL NIL) (-160 261799 261999 262074 "COMMAAST" 262140 T COMMAAST (NIL) -8 NIL NIL NIL) (-159 261048 261242 261270 "COMBOPC" 261608 T COMBOPC (NIL) -9 NIL 261783 NIL) (-158 259944 260154 260396 "COMBINAT" 260838 NIL COMBINAT (NIL T) -7 NIL NIL NIL) (-157 256142 256715 257355 "COMBF" 259366 NIL COMBF (NIL T T) -7 NIL NIL NIL) (-156 254928 255258 255493 "COLOR" 255927 T COLOR (NIL) -8 NIL NIL NIL) (-155 254431 254649 254741 "COLONAST" 254856 T COLONAST (NIL) -8 NIL NIL NIL) (-154 254071 254118 254243 "CMPLXRT" 254378 NIL CMPLXRT (NIL T T) -7 NIL NIL NIL) (-153 253546 253771 253870 "CLLCTAST" 253992 T CLLCTAST (NIL) -8 NIL NIL NIL) (-152 249048 250076 251156 "CLIP" 252486 T CLIP (NIL) -7 NIL NIL NIL) (-151 247430 248154 248393 "CLIF" 248875 NIL CLIF (NIL NIL T NIL) -8 NIL NIL NIL) (-150 243652 245576 245617 "CLAGG" 246546 NIL CLAGG (NIL T) -9 NIL 247082 NIL) (-149 242074 242531 243114 "CLAGG-" 243119 NIL CLAGG- (NIL T T) -8 NIL NIL NIL) (-148 241618 241703 241843 "CINTSLPE" 241983 NIL CINTSLPE (NIL T T) -7 NIL NIL NIL) (-147 239119 239590 240138 "CHVAR" 241146 NIL CHVAR (NIL T T T) -7 NIL NIL NIL) (-146 238362 238882 238910 "CHARZ" 238915 T CHARZ (NIL) -9 NIL 238930 NIL) (-145 238116 238156 238234 "CHARPOL" 238316 NIL CHARPOL (NIL T) -7 NIL NIL NIL) (-144 237243 237796 237824 "CHARNZ" 237871 T CHARNZ (NIL) -9 NIL 237927 NIL) (-143 235232 235933 236268 "CHAR" 236928 T CHAR (NIL) -8 NIL NIL NIL) (-142 234958 235019 235047 "CFCAT" 235158 T CFCAT (NIL) -9 NIL NIL NIL) (-141 234203 234314 234496 "CDEN" 234842 NIL CDEN (NIL T T T) -7 NIL NIL NIL) (-140 230195 233356 233636 "CCLASS" 233943 T CCLASS (NIL) -8 NIL NIL NIL) (-139 229502 229645 229808 "CATEGORY" 230052 T -10 (NIL) -8 NIL NIL NIL) (-138 229134 229421 229469 "CATCTOR" 229474 T CATCTOR (NIL) -8 NIL NIL NIL) (-137 228608 228834 228933 "CATAST" 229055 T CATAST (NIL) -8 NIL NIL NIL) (-136 228111 228329 228421 "CASEAST" 228536 T CASEAST (NIL) -8 NIL NIL NIL) (-135 223163 224140 224893 "CARTEN" 227414 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL NIL) (-134 222271 222419 222640 "CARTEN2" 223010 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL NIL) (-133 220613 221421 221678 "CARD" 222034 T CARD (NIL) -8 NIL NIL NIL) (-132 220216 220417 220492 "CAPSLAST" 220558 T CAPSLAST (NIL) -8 NIL NIL NIL) (-131 219588 219916 219944 "CACHSET" 220076 T CACHSET (NIL) -9 NIL 220153 NIL) (-130 219084 219380 219408 "CABMON" 219458 T CABMON (NIL) -9 NIL 219514 NIL) (-129 218107 218630 218766 "BYTE" 218929 T BYTE (NIL) -8 NIL NIL 219045) (-128 213516 217575 217738 "BYTEBUF" 217964 T BYTEBUF (NIL) -8 NIL NIL NIL) (-127 211073 213208 213315 "BTREE" 213442 NIL BTREE (NIL T) -8 NIL NIL NIL) (-126 208571 210721 210843 "BTOURN" 210983 NIL BTOURN (NIL T) -8 NIL NIL NIL) (-125 205988 208041 208082 "BTCAT" 208150 NIL BTCAT (NIL T) -9 NIL 208227 NIL) (-124 205655 205735 205884 "BTCAT-" 205889 NIL BTCAT- (NIL T T) -8 NIL NIL NIL) (-123 200947 204798 204826 "BTAGG" 205048 T BTAGG (NIL) -9 NIL 205209 NIL) (-122 200437 200562 200768 "BTAGG-" 200773 NIL BTAGG- (NIL T) -8 NIL NIL NIL) (-121 197481 199715 199930 "BSTREE" 200254 NIL BSTREE (NIL T) -8 NIL NIL NIL) (-120 196619 196745 196929 "BRILL" 197337 NIL BRILL (NIL T) -7 NIL NIL NIL) (-119 193318 195345 195386 "BRAGG" 196035 NIL BRAGG (NIL T) -9 NIL 196293 NIL) (-118 191847 192253 192808 "BRAGG-" 192813 NIL BRAGG- (NIL T T) -8 NIL NIL NIL) (-117 185111 191193 191377 "BPADICRT" 191695 NIL BPADICRT (NIL NIL) -8 NIL NIL NIL) (-116 183461 185048 185093 "BPADIC" 185098 NIL BPADIC (NIL NIL) -8 NIL NIL NIL) (-115 183159 183189 183303 "BOUNDZRO" 183425 NIL BOUNDZRO (NIL T T) -7 NIL NIL NIL) (-114 178674 179765 180632 "BOP" 182312 T BOP (NIL) -8 NIL NIL NIL) (-113 176295 176739 177259 "BOP1" 178187 NIL BOP1 (NIL T) -7 NIL NIL NIL) (-112 174997 175719 175912 "BOOLEAN" 176122 T BOOLEAN (NIL) -8 NIL NIL NIL) (-111 174359 174737 174791 "BMODULE" 174796 NIL BMODULE (NIL T T) -9 NIL 174861 NIL) (-110 170189 174157 174230 "BITS" 174306 T BITS (NIL) -8 NIL NIL NIL) (-109 169601 169723 169865 "BINDING" 170067 T BINDING (NIL) -8 NIL NIL NIL) (-108 163646 169200 169347 "BINARY" 169474 T BINARY (NIL) -8 NIL NIL NIL) (-107 161473 162901 162942 "BGAGG" 163202 NIL BGAGG (NIL T) -9 NIL 163339 NIL) (-106 161304 161336 161427 "BGAGG-" 161432 NIL BGAGG- (NIL T T) -8 NIL NIL NIL) (-105 160402 160688 160893 "BFUNCT" 161119 T BFUNCT (NIL) -8 NIL NIL NIL) (-104 159092 159270 159558 "BEZOUT" 160226 NIL BEZOUT (NIL T T T T T) -7 NIL NIL NIL) (-103 155609 157944 158274 "BBTREE" 158795 NIL BBTREE (NIL T) -8 NIL NIL NIL) (-102 155343 155396 155424 "BASTYPE" 155543 T BASTYPE (NIL) -9 NIL NIL NIL) (-101 155196 155224 155297 "BASTYPE-" 155302 NIL BASTYPE- (NIL T) -8 NIL NIL NIL) (-100 154630 154706 154858 "BALFACT" 155107 NIL BALFACT (NIL T T) -7 NIL NIL NIL) (-99 153513 154045 154231 "AUTOMOR" 154475 NIL AUTOMOR (NIL T) -8 NIL NIL NIL) (-98 153239 153244 153270 "ATTREG" 153275 T ATTREG (NIL) -9 NIL NIL NIL) (-97 151518 151936 152288 "ATTRBUT" 152905 T ATTRBUT (NIL) -8 NIL NIL NIL) (-96 151153 151346 151412 "ATTRAST" 151470 T ATTRAST (NIL) -8 NIL NIL NIL) (-95 150689 150802 150828 "ATRIG" 151029 T ATRIG (NIL) -9 NIL NIL NIL) (-94 150498 150539 150626 "ATRIG-" 150631 NIL ATRIG- (NIL T) -8 NIL NIL NIL) (-93 150169 150329 150355 "ASTCAT" 150360 T ASTCAT (NIL) -9 NIL 150390 NIL) (-92 149896 149955 150074 "ASTCAT-" 150079 NIL ASTCAT- (NIL T) -8 NIL NIL NIL) (-91 148093 149672 149760 "ASTACK" 149839 NIL ASTACK (NIL T) -8 NIL NIL NIL) (-90 146598 146895 147260 "ASSOCEQ" 147775 NIL ASSOCEQ (NIL T T) -7 NIL NIL NIL) (-89 145630 146257 146381 "ASP9" 146505 NIL ASP9 (NIL NIL) -8 NIL NIL NIL) (-88 145394 145578 145617 "ASP8" 145622 NIL ASP8 (NIL NIL) -8 NIL NIL NIL) (-87 144263 144999 145141 "ASP80" 145283 NIL ASP80 (NIL NIL) -8 NIL NIL NIL) (-86 143162 143898 144030 "ASP7" 144162 NIL ASP7 (NIL NIL) -8 NIL NIL NIL) (-85 142116 142839 142957 "ASP78" 143075 NIL ASP78 (NIL NIL) -8 NIL NIL NIL) (-84 141085 141796 141913 "ASP77" 142030 NIL ASP77 (NIL NIL) -8 NIL NIL NIL) (-83 139997 140723 140854 "ASP74" 140985 NIL ASP74 (NIL NIL) -8 NIL NIL NIL) (-82 138897 139632 139764 "ASP73" 139896 NIL ASP73 (NIL NIL) -8 NIL NIL NIL) (-81 138001 138723 138823 "ASP6" 138828 NIL ASP6 (NIL NIL) -8 NIL NIL NIL) (-80 136949 137678 137796 "ASP55" 137914 NIL ASP55 (NIL NIL) -8 NIL NIL NIL) (-79 135899 136623 136742 "ASP50" 136861 NIL ASP50 (NIL NIL) -8 NIL NIL NIL) (-78 134987 135600 135710 "ASP4" 135820 NIL ASP4 (NIL NIL) -8 NIL NIL NIL) (-77 134075 134688 134798 "ASP49" 134908 NIL ASP49 (NIL NIL) -8 NIL NIL NIL) (-76 132860 133614 133782 "ASP42" 133964 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-75 131637 132393 132563 "ASP41" 132747 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-74 130587 131314 131432 "ASP35" 131550 NIL ASP35 (NIL NIL) -8 NIL NIL NIL) (-73 130352 130535 130574 "ASP34" 130579 NIL ASP34 (NIL NIL) -8 NIL NIL NIL) (-72 130089 130156 130232 "ASP33" 130307 NIL ASP33 (NIL NIL) -8 NIL NIL NIL) (-71 128984 129724 129856 "ASP31" 129988 NIL ASP31 (NIL NIL) -8 NIL NIL NIL) (-70 128749 128932 128971 "ASP30" 128976 NIL ASP30 (NIL NIL) -8 NIL NIL NIL) (-69 128484 128553 128629 "ASP29" 128704 NIL ASP29 (NIL NIL) -8 NIL NIL NIL) (-68 128249 128432 128471 "ASP28" 128476 NIL ASP28 (NIL NIL) -8 NIL NIL NIL) (-67 128014 128197 128236 "ASP27" 128241 NIL ASP27 (NIL NIL) -8 NIL NIL NIL) (-66 127098 127712 127823 "ASP24" 127934 NIL ASP24 (NIL NIL) -8 NIL NIL NIL) (-65 126175 126900 127012 "ASP20" 127017 NIL ASP20 (NIL NIL) -8 NIL NIL NIL) (-64 125263 125876 125986 "ASP1" 126096 NIL ASP1 (NIL NIL) -8 NIL NIL NIL) (-63 124207 124937 125056 "ASP19" 125175 NIL ASP19 (NIL NIL) -8 NIL NIL NIL) (-62 123944 124011 124087 "ASP12" 124162 NIL ASP12 (NIL NIL) -8 NIL NIL NIL) (-61 122796 123543 123687 "ASP10" 123831 NIL ASP10 (NIL NIL) -8 NIL NIL NIL) (-60 120695 122640 122731 "ARRAY2" 122736 NIL ARRAY2 (NIL T) -8 NIL NIL NIL) (-59 116511 120343 120457 "ARRAY1" 120612 NIL ARRAY1 (NIL T) -8 NIL NIL NIL) (-58 115543 115716 115937 "ARRAY12" 116334 NIL ARRAY12 (NIL T T) -7 NIL NIL NIL) (-57 109902 111773 111848 "ARR2CAT" 114478 NIL ARR2CAT (NIL T T T) -9 NIL 115236 NIL) (-56 107336 108080 109034 "ARR2CAT-" 109039 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL NIL) (-55 106930 107163 107242 "ARITY" 107275 T ARITY (NIL) -8 NIL NIL NIL) (-54 105678 105830 106136 "APPRULE" 106766 NIL APPRULE (NIL T T T) -7 NIL NIL NIL) (-53 105329 105377 105496 "APPLYORE" 105624 NIL APPLYORE (NIL T T T) -7 NIL NIL NIL) (-52 104303 104594 104789 "ANY" 105152 T ANY (NIL) -8 NIL NIL NIL) (-51 103581 103704 103861 "ANY1" 104177 NIL ANY1 (NIL T) -7 NIL NIL NIL) (-50 101146 102018 102345 "ANTISYM" 103305 NIL ANTISYM (NIL T NIL) -8 NIL NIL NIL) (-49 100661 100850 100947 "ANON" 101067 T ANON (NIL) -8 NIL NIL NIL) (-48 94793 99200 99654 "AN" 100225 T AN (NIL) -8 NIL NIL NIL) (-47 91049 92403 92454 "AMR" 93202 NIL AMR (NIL T T) -9 NIL 93802 NIL) (-46 90161 90382 90745 "AMR-" 90750 NIL AMR- (NIL T T T) -8 NIL NIL NIL) (-45 74711 90078 90139 "ALIST" 90144 NIL ALIST (NIL T T) -8 NIL NIL NIL) (-44 71548 74305 74474 "ALGSC" 74629 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-43 68104 68658 69265 "ALGPKG" 70988 NIL ALGPKG (NIL T T) -7 NIL NIL NIL) (-42 67381 67482 67666 "ALGMFACT" 67990 NIL ALGMFACT (NIL T T T) -7 NIL NIL NIL) (-41 63120 63805 64460 "ALGMANIP" 66904 NIL ALGMANIP (NIL T T) -7 NIL NIL NIL) (-40 54526 62746 62896 "ALGFF" 63053 NIL ALGFF (NIL T T T NIL) -8 NIL NIL NIL) (-39 53722 53853 54032 "ALGFACT" 54384 NIL ALGFACT (NIL T) -7 NIL NIL NIL) (-38 52787 53353 53391 "ALGEBRA" 53396 NIL ALGEBRA (NIL T) -9 NIL 53437 NIL) (-37 52505 52564 52696 "ALGEBRA-" 52701 NIL ALGEBRA- (NIL T T) -8 NIL NIL NIL) (-36 34764 50507 50559 "ALAGG" 50695 NIL ALAGG (NIL T T) -9 NIL 50856 NIL) (-35 34300 34413 34439 "AHYP" 34640 T AHYP (NIL) -9 NIL NIL NIL) (-34 33231 33479 33505 "AGG" 34004 T AGG (NIL) -9 NIL 34283 NIL) (-33 32665 32827 33041 "AGG-" 33046 NIL AGG- (NIL T) -8 NIL NIL NIL) (-32 30342 30764 31182 "AF" 32307 NIL AF (NIL T T) -7 NIL NIL NIL) (-31 29849 30067 30157 "ADDAST" 30270 T ADDAST (NIL) -8 NIL NIL NIL) (-30 29118 29376 29532 "ACPLOT" 29711 T ACPLOT (NIL) -8 NIL NIL NIL) (-29 18410 26331 26382 "ACFS" 27093 NIL ACFS (NIL T) -9 NIL 27332 NIL) (-28 16424 16914 17689 "ACFS-" 17694 NIL ACFS- (NIL T T) -8 NIL NIL NIL) (-27 12697 14591 14617 "ACF" 15496 T ACF (NIL) -9 NIL 15908 NIL) (-26 11401 11735 12228 "ACF-" 12233 NIL ACF- (NIL T) -8 NIL NIL NIL) (-25 10999 11168 11194 "ABELSG" 11286 T ABELSG (NIL) -9 NIL 11351 NIL) (-24 10866 10891 10957 "ABELSG-" 10962 NIL ABELSG- (NIL T) -8 NIL NIL NIL) (-23 10235 10496 10522 "ABELMON" 10692 T ABELMON (NIL) -9 NIL 10804 NIL) (-22 9899 9983 10121 "ABELMON-" 10126 NIL ABELMON- (NIL T) -8 NIL NIL NIL) (-21 9233 9579 9605 "ABELGRP" 9730 T ABELGRP (NIL) -9 NIL 9812 NIL) (-20 8696 8825 9041 "ABELGRP-" 9046 NIL ABELGRP- (NIL T) -8 NIL NIL NIL) (-19 4333 8035 8074 "A1AGG" 8079 NIL A1AGG (NIL T) -9 NIL 8119 NIL) (-18 30 1251 2813 "A1AGG-" 2818 NIL A1AGG- (NIL T T) -8 NIL NIL NIL)) \ No newline at end of file
diff --git a/src/share/algebra/operation.daase b/src/share/algebra/operation.daase
index 59a15a90..cc1eb45f 100644
--- a/src/share/algebra/operation.daase
+++ b/src/share/algebra/operation.daase
@@ -1,75 +1,72 @@
-(735570 . 3442535949)
+(735629 . 3442698066)
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
- (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
- (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
- (|:| |abserr| (-224)) (|:| |relerr| (-224))))
- (-5 *2 (-378)) (-5 *1 (-204)))))
-(((*1 *2)
- (-12 (-4 *3 (-554)) (-5 *2 (-639 (-683 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-416 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-1164 *4))
- (-5 *1 (-527 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-4 *3 (-1092))
- (-5 *2 (-112)))))
+ (-12 (-5 *3 (-947 (-562))) (-5 *2 (-639 *1)) (-4 *1 (-1007))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-947 (-406 (-562)))) (-5 *2 (-639 *1)) (-4 *1 (-1007))))
+ ((*1 *2 *3) (-12 (-5 *3 (-947 *1)) (-4 *1 (-1007)) (-5 *2 (-639 *1))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1164 (-562))) (-5 *2 (-639 *1)) (-4 *1 (-1007))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1164 (-406 (-562)))) (-5 *2 (-639 *1)) (-4 *1 (-1007))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1164 *1)) (-4 *1 (-1007)) (-5 *2 (-639 *1))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-843) (-362))) (-4 *3 (-1232 *4)) (-5 *2 (-639 *1))
+ (-4 *1 (-1061 *4 *3)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-766)) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-4 *3 (-554)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2355 *4)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
(((*1 *1) (-5 *1 (-613))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788))
- (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-916)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
+ ((*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-262)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-639 (-503 *3 *4 *5 *6))) (-4 *3 (-362)) (-4 *4 (-788))
- (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845))
- (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-639 *1)) (-5 *3 (-639 *7)) (-4 *1 (-1064 *4 *5 *6 *7))
- (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1))
- (-4 *1 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1))
- (-4 *1 (-1064 *4 *5 *6 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-544))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-348)) (-4 *4 (-328 *3)) (-4 *5 (-1232 *4))
- (-5 *1 (-772 *3 *4 *5 *2 *6)) (-4 *2 (-1232 *5)) (-14 *6 (-916))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-4 *3 (-367))))
- ((*1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-362)) (-4 *2 (-367)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-766))
- (-5 *1 (-448 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))))
+ (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-1179 *3)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-639 *4)) (-4 *4 (-1092)) (-4 *4 (-1207)) (-5 *2 (-112))
+ (-5 *1 (-1148 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171))
+ (-4 *5 (-1232 *4)) (-5 *2 (-683 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3))
+ (-5 *2 (-683 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 (-639 *8))) (-5 *3 (-639 *8))
- (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788))
- (-4 *7 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *5 *6 *7 *8)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *1) (-12 (-4 *1 (-554)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-1168)) (-4 *5 (-362)) (-5 *2 (-1148 (-1148 (-947 *5))))
+ (-5 *1 (-1264 *5)) (-5 *4 (-1148 (-947 *5))))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-362) (-146)))
+ (-5 *2 (-639 (-2 (|:| -1300 (-766)) (|:| -2328 *4) (|:| |num| *4))))
+ (-5 *1 (-398 *3 *4)) (-4 *4 (-1232 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34)))
+ (-4 *3 (-13 (-1092) (-34))))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-921)))))
(((*1 *2 *2 *2)
- (-12 (-5 *2 (-417 *3)) (-4 *3 (-554)) (-5 *1 (-418 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-966)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-608 *1)) (-4 *1 (-301)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-947 *6))) (-5 *4 (-639 (-1168)))
- (-4 *6 (-13 (-554) (-1033 *5))) (-4 *5 (-554))
- (-5 *2 (-639 (-639 (-293 (-406 (-947 *6)))))) (-5 *1 (-1034 *5 *6)))))
+ (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
+ (-5 *2 (-112)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-766)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5))
+ (-4 *4 (-372 *3)) (-4 *5 (-372 *3))))
+ ((*1 *1 *2)
+ (-12 (-4 *2 (-1044)) (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2))
+ (-4 *5 (-237 *3 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
+ (-4 *3 (-13 (-362) (-1192) (-997))))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
+ (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-717)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-721)) (-5 *2 (-112)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997)))))
@@ -102,374 +99,200 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-766)) (-5 *1 (-1276 *3 *4))
(-4 *4 (-712 (-406 (-562)))) (-4 *3 (-845)) (-4 *4 (-171)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-479)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348))
- (-5 *2 (-1256 (-639 (-2 (|:| -2534 *4) (|:| -2466 (-1112))))))
- (-5 *1 (-345 *4)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-639 (-900 *3))) (-4 *3 (-1092)) (-5 *1 (-899 *3)))))
-(((*1 *1 *1) (-4 *1 (-625)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997) (-1192))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
-(((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-143)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787))
- (-5 *2 (-639 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092))
- (-5 *2 (-639 *3))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-639 *4)) (-4 *4 (-362)) (-5 *2 (-1256 *4))
+ (-5 *1 (-809 *4 *3)) (-4 *3 (-650 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-301)) (-5 *2 (-639 (-114))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-608 (-48)))) (-5 *1 (-48))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-608 (-48))) (-5 *1 (-48))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1164 (-48))) (-5 *3 (-639 (-608 (-48)))) (-5 *1 (-48))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1164 (-48))) (-5 *3 (-608 (-48))) (-5 *1 (-48))))
+ ((*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3))
+ (-4 *3 (-1232 (-168 *2)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-916)) (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367))))
+ ((*1 *2 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-362))))
((*1 *2 *1)
- (-12 (-5 *2 (-1148 *3)) (-5 *1 (-593 *3)) (-4 *3 (-1044))))
+ (-12 (-4 *1 (-369 *2 *3)) (-4 *3 (-1232 *2)) (-4 *2 (-171))))
((*1 *2 *1)
- (-12 (-5 *2 (-639 *3)) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044))
- (-4 *4 (-721))))
- ((*1 *2 *1) (-12 (-4 *1 (-847 *3)) (-4 *3 (-1044)) (-5 *2 (-639 *3))))
+ (-12 (-4 *4 (-1232 *2)) (-4 *2 (-987 *3)) (-5 *1 (-412 *3 *2 *4 *5))
+ (-4 *3 (-306)) (-4 *5 (-13 (-408 *2 *4) (-1033 *2)))))
((*1 *2 *1)
- (-12 (-4 *1 (-1247 *3)) (-4 *3 (-1044)) (-5 *2 (-1148 *3)))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (-5 *2 (-639 (-224))) (-5 *1 (-203)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
- (-5 *2 (-683 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-683 *4)) (-5 *1 (-415 *3 *4))
- (-4 *3 (-416 *4))))
- ((*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))))
+ (-12 (-4 *4 (-1232 *2)) (-4 *2 (-987 *3))
+ (-5 *1 (-413 *3 *2 *4 *5 *6)) (-4 *3 (-306)) (-4 *5 (-408 *2 *4))
+ (-14 *6 (-1256 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-916)) (-4 *5 (-1044))
+ (-4 *2 (-13 (-403) (-1033 *5) (-362) (-1192) (-283)))
+ (-5 *1 (-442 *5 *3 *2)) (-4 *3 (-1232 *5))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-608 (-494)))) (-5 *1 (-494))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-608 (-494))) (-5 *1 (-494))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1164 (-494))) (-5 *3 (-639 (-608 (-494))))
+ (-5 *1 (-494))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1164 (-494))) (-5 *3 (-608 (-494))) (-5 *1 (-494))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1256 *4)) (-5 *3 (-916)) (-4 *4 (-348))
+ (-5 *1 (-527 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-451)) (-4 *5 (-719 *4 *2)) (-4 *2 (-1232 *4))
+ (-5 *1 (-770 *4 *2 *5 *3)) (-4 *3 (-1232 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171))))
+ ((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171))))
+ ((*1 *1 *1) (-4 *1 (-1053))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *1 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)) (-4 *2 (-1092))))
- ((*1 *1 *1) (-12 (-4 *1 (-689 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168))
+ (-14 *4 *2))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-523)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-766)) (-4 *5 (-554))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))))
+(((*1 *2 *1 *3 *3 *3 *2)
+ (-12 (-5 *3 (-766)) (-5 *1 (-669 *2)) (-4 *2 (-1092)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
+ (-5 *1 (-175 *3)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-747)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1092)) (-4 *6 (-1092))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-678 *4 *5 *6)) (-4 *5 (-1092)))))
+ (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4))
+ (-4 *4 (-348)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261))
+ (-5 *1 (-1065 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261))
+ (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-406 (-947 (-562)))))
- (-5 *2 (-639 (-639 (-293 (-947 *4))))) (-5 *1 (-379 *4))
- (-4 *4 (-13 (-843) (-362)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-293 (-406 (-947 (-562))))))
- (-5 *2 (-639 (-639 (-293 (-947 *4))))) (-5 *1 (-379 *4))
- (-4 *4 (-13 (-843) (-362)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-947 (-562)))) (-5 *2 (-639 (-293 (-947 *4))))
- (-5 *1 (-379 *4)) (-4 *4 (-13 (-843) (-362)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-293 (-406 (-947 (-562)))))
- (-5 *2 (-639 (-293 (-947 *4)))) (-5 *1 (-379 *4))
- (-4 *4 (-13 (-843) (-362)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1168))
- (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-4 *4 (-13 (-29 *6) (-1192) (-954)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -3928 (-639 *4))))
- (-5 *1 (-646 *6 *4 *3)) (-4 *3 (-650 *4))))
- ((*1 *2 *3 *2 *4 *2 *5)
- (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-639 *2))
- (-4 *2 (-13 (-29 *6) (-1192) (-954)))
- (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *1 (-646 *6 *2 *3)) (-4 *3 (-650 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 *5)) (-4 *5 (-362))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1256 *5) "failed"))
- (|:| -3928 (-639 (-1256 *5)))))
- (-5 *1 (-661 *5)) (-5 *4 (-1256 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-639 *5))) (-4 *5 (-362))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1256 *5) "failed"))
- (|:| -3928 (-639 (-1256 *5)))))
- (-5 *1 (-661 *5)) (-5 *4 (-1256 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 *5)) (-4 *5 (-362))
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -2929 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-362)) (-4 *7 (-1232 *6))
(-5 *2
- (-639
- (-2 (|:| |particular| (-3 (-1256 *5) "failed"))
- (|:| -3928 (-639 (-1256 *5))))))
- (-5 *1 (-661 *5)) (-5 *4 (-639 (-1256 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-639 *5))) (-4 *5 (-362))
+ (-3 (-2 (|:| |answer| (-406 *7)) (|:| |a0| *6))
+ (-2 (|:| -2929 (-406 *7)) (|:| |coeff| (-406 *7))) "failed"))
+ (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
+ (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224)))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-70 APROD)))) (-5 *4 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-751)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
+(((*1 *1 *2 *2)
+ (-12
(-5 *2
- (-639
- (-2 (|:| |particular| (-3 (-1256 *5) "failed"))
- (|:| -3928 (-639 (-1256 *5))))))
- (-5 *1 (-661 *5)) (-5 *4 (-639 (-1256 *5)))))
+ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378)))
+ (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167))))
+ (-5 *1 (-1167)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4403))))
- (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4))))
- (-5 *1 (-662 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4))))
+ (-12 (-5 *4 (-639 *3)) (-4 *3 (-1064 *5 *6 *7 *8)) (-4 *5 (-451))
+ (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7))
+ (-5 *2 (-112)) (-5 *1 (-983 *5 *6 *7 *8 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4403))))
- (-4 *7 (-13 (-372 *5) (-10 -7 (-6 -4403))))
+ (-12 (-5 *4 (-639 *3)) (-4 *3 (-1064 *5 *6 *7 *8)) (-4 *5 (-451))
+ (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7))
+ (-5 *2 (-112)) (-5 *1 (-1099 *5 *6 *7 *8 *3)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-1150))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-82 PDEF))))
+ (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1030))
+ (-5 *1 (-745)))))
+(((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1035)))))
+(((*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-315 (-378))) (-5 *1 (-304)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171))
+ (-4 *5 (-1232 *4)) (-5 *2 (-683 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-683 *4))
+ (-5 *1 (-407 *3 *4 *5)) (-4 *3 (-408 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3))
+ (-5 *2 (-683 *3)))))
+(((*1 *2 *3 *2)
+ (-12
(-5 *2
(-639
- (-2 (|:| |particular| (-3 *7 "failed")) (|:| -3928 (-639 *7)))))
- (-5 *1 (-662 *5 *6 *7 *3)) (-5 *4 (-639 *7))
- (-4 *3 (-681 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-639 (-1168))) (-4 *5 (-554))
- (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-765 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-554))
- (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-765 *4))))
- ((*1 *2 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1168))
- (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *1 (-767 *5 *2)) (-4 *2 (-13 (-29 *5) (-1192) (-954)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-683 *7)) (-5 *5 (-1168))
- (-4 *7 (-13 (-29 *6) (-1192) (-954)))
- (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *2
- (-2 (|:| |particular| (-1256 *7)) (|:| -3928 (-639 (-1256 *7)))))
- (-5 *1 (-797 *6 *7)) (-5 *4 (-1256 *7))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-683 *6)) (-5 *4 (-1168))
- (-4 *6 (-13 (-29 *5) (-1192) (-954)))
- (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *2 (-639 (-1256 *6))) (-5 *1 (-797 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-639 (-293 *7))) (-5 *4 (-639 (-114)))
- (-5 *5 (-1168)) (-4 *7 (-13 (-29 *6) (-1192) (-954)))
- (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *2
- (-2 (|:| |particular| (-1256 *7)) (|:| -3928 (-639 (-1256 *7)))))
- (-5 *1 (-797 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-639 *7)) (-5 *4 (-639 (-114)))
- (-5 *5 (-1168)) (-4 *7 (-13 (-29 *6) (-1192) (-954)))
- (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *2
- (-2 (|:| |particular| (-1256 *7)) (|:| -3928 (-639 (-1256 *7)))))
- (-5 *1 (-797 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-293 *7)) (-5 *4 (-114)) (-5 *5 (-1168))
- (-4 *7 (-13 (-29 *6) (-1192) (-954)))
- (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *2
- (-3 (-2 (|:| |particular| *7) (|:| -3928 (-639 *7))) *7 "failed"))
- (-5 *1 (-797 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-114)) (-5 *5 (-1168))
- (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *2
- (-3 (-2 (|:| |particular| *3) (|:| -3928 (-639 *3))) *3 "failed"))
- (-5 *1 (-797 *6 *3)) (-4 *3 (-13 (-29 *6) (-1192) (-954)))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-293 *2)) (-5 *4 (-114)) (-5 *5 (-639 *2))
- (-4 *2 (-13 (-29 *6) (-1192) (-954))) (-5 *1 (-797 *6 *2))
- (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))))
- ((*1 *2 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-114)) (-5 *4 (-293 *2)) (-5 *5 (-639 *2))
- (-4 *2 (-13 (-29 *6) (-1192) (-954)))
- (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *1 (-797 *6 *2))))
- ((*1 *2 *3) (-12 (-5 *3 (-803)) (-5 *2 (-1030)) (-5 *1 (-800))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-803)) (-5 *4 (-1056)) (-5 *2 (-1030)) (-5 *1 (-800))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1256 (-315 (-378)))) (-5 *4 (-378)) (-5 *5 (-639 *4))
- (-5 *2 (-1030)) (-5 *1 (-800))))
- ((*1 *2 *3 *4 *4 *5 *4)
- (-12 (-5 *3 (-1256 (-315 (-378)))) (-5 *4 (-378)) (-5 *5 (-639 *4))
- (-5 *2 (-1030)) (-5 *1 (-800))))
- ((*1 *2 *3 *4 *4 *5 *6 *4)
- (-12 (-5 *3 (-1256 (-315 *4))) (-5 *5 (-639 (-378)))
- (-5 *6 (-315 (-378))) (-5 *4 (-378)) (-5 *2 (-1030)) (-5 *1 (-800))))
- ((*1 *2 *3 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1256 (-315 (-378)))) (-5 *4 (-378)) (-5 *5 (-639 *4))
- (-5 *2 (-1030)) (-5 *1 (-800))))
- ((*1 *2 *3 *4 *4 *5 *6 *5 *4)
- (-12 (-5 *3 (-1256 (-315 *4))) (-5 *5 (-639 (-378)))
- (-5 *6 (-315 (-378))) (-5 *4 (-378)) (-5 *2 (-1030)) (-5 *1 (-800))))
- ((*1 *2 *3 *4 *4 *5 *6 *5 *4 *4)
- (-12 (-5 *3 (-1256 (-315 *4))) (-5 *5 (-639 (-378)))
- (-5 *6 (-315 (-378))) (-5 *4 (-378)) (-5 *2 (-1030)) (-5 *1 (-800))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12
- (-5 *5
- (-1
- (-3 (-2 (|:| |particular| *6) (|:| -3928 (-639 *6))) "failed")
- *7 *6))
- (-4 *6 (-362)) (-4 *7 (-650 *6))
- (-5 *2 (-2 (|:| |particular| (-1256 *6)) (|:| -3928 (-683 *6))))
- (-5 *1 (-808 *6 *7)) (-5 *3 (-683 *6)) (-5 *4 (-1256 *6))))
- ((*1 *2 *3) (-12 (-5 *3 (-893)) (-5 *2 (-1030)) (-5 *1 (-892))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-893)) (-5 *4 (-1056)) (-5 *2 (-1030)) (-5 *1 (-892))))
- ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8)
- (-12 (-5 *4 (-766)) (-5 *6 (-639 (-639 (-315 *3)))) (-5 *7 (-1150))
- (-5 *8 (-224)) (-5 *5 (-639 (-315 (-378)))) (-5 *3 (-378))
- (-5 *2 (-1030)) (-5 *1 (-892))))
- ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *4 (-766)) (-5 *6 (-639 (-639 (-315 *3)))) (-5 *7 (-1150))
- (-5 *5 (-639 (-315 (-378)))) (-5 *3 (-378)) (-5 *2 (-1030))
- (-5 *1 (-892))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-947 (-406 (-562)))) (-5 *2 (-639 (-378)))
- (-5 *1 (-1018)) (-5 *4 (-378))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-947 (-562))) (-5 *2 (-639 (-378))) (-5 *1 (-1018))
- (-5 *4 (-378))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
- (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1123 *4))
- (-5 *3 (-315 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1123 *4))
- (-5 *3 (-293 (-315 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168))
- (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *2 (-639 (-293 (-315 *5)))) (-5 *1 (-1123 *5))
- (-5 *3 (-293 (-315 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168))
- (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *2 (-639 (-293 (-315 *5)))) (-5 *1 (-1123 *5))
- (-5 *3 (-315 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 (-1168)))
- (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *2 (-639 (-639 (-293 (-315 *5))))) (-5 *1 (-1123 *5))
- (-5 *3 (-639 (-293 (-315 *5))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168)))
- (-4 *5 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *5))))))
- (-5 *1 (-1176 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 (-1168))) (-4 *5 (-554))
- (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-1176 *5))
- (-5 *3 (-639 (-293 (-406 (-947 *5)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-406 (-947 *4)))) (-4 *4 (-554))
- (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-1176 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *4))))))
- (-5 *1 (-1176 *4)) (-5 *3 (-639 (-293 (-406 (-947 *4)))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168)) (-4 *5 (-554))
- (-5 *2 (-639 (-293 (-406 (-947 *5))))) (-5 *1 (-1176 *5))
- (-5 *3 (-406 (-947 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168)) (-4 *5 (-554))
- (-5 *2 (-639 (-293 (-406 (-947 *5))))) (-5 *1 (-1176 *5))
- (-5 *3 (-293 (-406 (-947 *5))))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-639 (-293 (-406 (-947 *4)))))
- (-5 *1 (-1176 *4)) (-5 *3 (-406 (-947 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-639 (-293 (-406 (-947 *4)))))
- (-5 *1 (-1176 *4)) (-5 *3 (-293 (-406 (-947 *4)))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-1058 *4 *5 *6)) (-4 *4 (-554))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *2)))))
-(((*1 *1) (-5 *1 (-1074))))
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *3)
+ (|:| |polj| *3))))
+ (-4 *5 (-788)) (-4 *3 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *6 (-845))
+ (-5 *1 (-448 *4 *5 *6 *3)))))
(((*1 *2)
- (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-904))
- (-5 *1 (-456 *3 *4 *2 *5)) (-4 *5 (-944 *2 *3 *4))))
+ (-12 (-14 *4 (-766)) (-4 *5 (-1207)) (-5 *2 (-133))
+ (-5 *1 (-236 *3 *4 *5)) (-4 *3 (-237 *4 *5))))
((*1 *2)
- (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-904))
- (-5 *1 (-901 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4))))
- ((*1 *2) (-12 (-4 *2 (-904)) (-5 *1 (-902 *2 *3)) (-4 *3 (-1232 *2)))))
-(((*1 *1 *2 *2)
- (-12
- (-5 *2
- (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378)))
- (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167))))
- (-5 *1 (-1167)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-1124 *4 *2))
- (-4 *2 (-13 (-600 (-562) *4) (-10 -7 (-6 -4402) (-6 -4403))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-845)) (-4 *3 (-1207)) (-5 *1 (-1124 *3 *2))
- (-4 *2 (-13 (-600 (-562) *3) (-10 -7 (-6 -4402) (-6 -4403)))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-480 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044))
- (-5 *2 (-947 *5)) (-5 *1 (-939 *4 *5)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-937)) (-5 *3 (-562)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1007)) (-5 *2 (-857)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-683 *7)) (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *6 *5))
- (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
- (-4 *6 (-788)) (-5 *1 (-919 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-1058 *3 *4 *2)) (-4 *2 (-845))))
+ (-12 (-4 *4 (-362)) (-5 *2 (-133)) (-5 *1 (-327 *3 *4))
+ (-4 *3 (-328 *4))))
+ ((*1 *2)
+ (-12 (-5 *2 (-766)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
+ (-4 *5 (-171))))
((*1 *2 *1)
- (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845)))))
-(((*1 *2 *3)
- (-12 (-14 *4 (-639 (-1168))) (-4 *5 (-451))
+ (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-562))
+ (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788))
+ (-5 *2 (-562)) (-5 *1 (-503 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-975 *3)) (-4 *3 (-1044)) (-5 *2 (-916))))
+ ((*1 *2) (-12 (-4 *1 (-1263 *3)) (-4 *3 (-362)) (-5 *2 (-133)))))
+(((*1 *2)
+ (-12
(-5 *2
- (-2 (|:| |glbase| (-639 (-246 *4 *5))) (|:| |glval| (-639 (-562)))))
- (-5 *1 (-627 *4 *5)) (-5 *3 (-639 (-246 *4 *5))))))
+ (-1256 (-639 (-2 (|:| -2533 (-905 *3)) (|:| -2464 (-1112))))))
+ (-5 *1 (-350 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1256 (-639 (-2 (|:| -2533 *3) (|:| -2464 (-1112))))))
+ (-5 *1 (-351 *3 *4)) (-4 *3 (-348)) (-14 *4 (-3 (-1164 *3) *2))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1256 (-639 (-2 (|:| -2533 *3) (|:| -2464 (-1112))))))
+ (-5 *1 (-352 *3 *4)) (-4 *3 (-348)) (-14 *4 (-916)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378)))
+ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378)))
(|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167))))
(-5 *1 (-1167)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-766)) (-5 *2 (-112)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))))
(((*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))))
-(((*1 *1 *1 *1) (-5 *1 (-857))) ((*1 *1 *1) (-5 *1 (-857)))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1164 (-562))) (-5 *3 (-562)) (-4 *1 (-864 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845))
- (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-639 *4)))))
-(((*1 *1 *1) (-12 (-5 *1 (-604 *2)) (-4 *2 (-1092))))
- ((*1 *1 *1) (-5 *1 (-628))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-766)) (-4 *5 (-1044)) (-5 *2 (-562))
- (-5 *1 (-442 *5 *3 *6)) (-4 *3 (-1232 *5))
- (-4 *6 (-13 (-403) (-1033 *5) (-362) (-1192) (-283)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *4 *3 *5))
- (-4 *3 (-1232 *4))
- (-4 *5 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))))))
+(((*1 *2)
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1168))
- (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *2 (-1 *5 *5)) (-5 *1 (-799 *4 *5))
- (-4 *5 (-13 (-29 *4) (-1192) (-954))))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-562)) (-4 *4 (-13 (-554) (-146))) (-5 *1 (-536 *4 *2))
- (-4 *2 (-1247 *4))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-562)) (-4 *4 (-13 (-362) (-367) (-610 *3)))
- (-4 *5 (-1232 *4)) (-4 *6 (-719 *4 *5)) (-5 *1 (-540 *4 *5 *6 *2))
- (-4 *2 (-1247 *6))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-562)) (-4 *4 (-13 (-362) (-367) (-610 *3)))
- (-5 *1 (-541 *4 *2)) (-4 *2 (-1247 *4))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-13 (-554) (-146)))
- (-5 *1 (-1144 *4)))))
+ (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7))))
+ (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-136))))
((*1 *2 *1) (-12 (-5 *2 (-1206)) (-5 *1 (-155))))
((*1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207))))
@@ -483,62 +306,140 @@
(-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3))))))
((*1 *2 *1)
(-12 (-4 *2 (-1092)) (-5 *1 (-1157 *3 *2)) (-4 *3 (-1092)))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *4 (-639 (-1168)))
- (-5 *2 (-683 (-315 (-224)))) (-5 *1 (-204))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1092)) (-4 *6 (-895 *5)) (-5 *2 (-683 *6))
- (-5 *1 (-686 *5 *6 *3 *4)) (-4 *3 (-372 *6))
- (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4402)))))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-1044))
- (-5 *1 (-1152 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-562)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044))
- (-14 *4 (-1168)) (-14 *5 *3))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4)))
+ (-5 *2 (-2 (|:| |num| (-1256 *4)) (|:| |den| *4))))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-639 (-639 (-224)))) (-5 *4 (-224))
+ (-5 *2 (-639 (-938 *4))) (-5 *1 (-1203)) (-5 *3 (-938 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1232 (-406 *2))) (-5 *2 (-562)) (-5 *1 (-908 *4 *3))
+ (-4 *3 (-1232 (-406 *4))))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378)))
+ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378)))
(|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167))))
(-5 *1 (-1167)))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-417 *2)) (-4 *2 (-306)) (-5 *1 (-909 *2))))
+(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
+ (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362)))
+ (-4 *3 (-1232 *4)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-4 *1 (-756))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 *8)) (-4 *8 (-944 *5 *7 *6))
+ (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168))))
+ (-4 *7 (-788))
+ (-5 *2
+ (-639
+ (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8))
+ (|:| |wcond| (-639 (-947 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1256 (-406 (-947 *5))))
+ (|:| -4291 (-639 (-1256 (-406 (-947 *5))))))))))
+ (-5 *1 (-919 *5 *6 *7 *8)) (-5 *4 (-639 *8))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168))
- (-4 *5 (-13 (-306) (-146))) (-5 *2 (-52)) (-5 *1 (-910 *5))))
+ (-12 (-5 *3 (-683 *8)) (-5 *4 (-639 (-1168))) (-4 *8 (-944 *5 *7 *6))
+ (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168))))
+ (-4 *7 (-788))
+ (-5 *2
+ (-639
+ (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8))
+ (|:| |wcond| (-639 (-947 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1256 (-406 (-947 *5))))
+ (|:| -4291 (-639 (-1256 (-406 (-947 *5))))))))))
+ (-5 *1 (-919 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-683 *7)) (-4 *7 (-944 *4 *6 *5))
+ (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
+ (-4 *6 (-788))
+ (-5 *2
+ (-639
+ (-2 (|:| |eqzro| (-639 *7)) (|:| |neqzro| (-639 *7))
+ (|:| |wcond| (-639 (-947 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1256 (-406 (-947 *4))))
+ (|:| -4291 (-639 (-1256 (-406 (-947 *4))))))))))
+ (-5 *1 (-919 *4 *5 *6 *7))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-417 (-947 *6))) (-5 *5 (-1168)) (-5 *3 (-947 *6))
- (-4 *6 (-13 (-306) (-146))) (-5 *2 (-52)) (-5 *1 (-910 *6)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4)
- (-246 *4 (-406 (-562)))))
- (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-112))
- (-5 *1 (-504 *4 *5)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
+ (-12 (-5 *3 (-683 *9)) (-5 *5 (-916)) (-4 *9 (-944 *6 *8 *7))
+ (-4 *6 (-13 (-306) (-146))) (-4 *7 (-13 (-845) (-610 (-1168))))
+ (-4 *8 (-788))
(-5 *2
- (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
- (|:| |success| (-112))))
- (-5 *1 (-784)) (-5 *5 (-562)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-243 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *2 *3 *4 *5)
- (-12 (-5 *2 (-639 *9)) (-5 *3 (-1 (-112) *9))
- (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9))
- (-4 *9 (-1058 *6 *7 *8)) (-4 *6 (-554)) (-4 *7 (-788))
- (-4 *8 (-845)) (-5 *1 (-972 *6 *7 *8 *9)))))
+ (-639
+ (-2 (|:| |eqzro| (-639 *9)) (|:| |neqzro| (-639 *9))
+ (|:| |wcond| (-639 (-947 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1256 (-406 (-947 *6))))
+ (|:| -4291 (-639 (-1256 (-406 (-947 *6))))))))))
+ (-5 *1 (-919 *6 *7 *8 *9)) (-5 *4 (-639 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-683 *9)) (-5 *4 (-639 (-1168))) (-5 *5 (-916))
+ (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146)))
+ (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788))
+ (-5 *2
+ (-639
+ (-2 (|:| |eqzro| (-639 *9)) (|:| |neqzro| (-639 *9))
+ (|:| |wcond| (-639 (-947 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1256 (-406 (-947 *6))))
+ (|:| -4291 (-639 (-1256 (-406 (-947 *6))))))))))
+ (-5 *1 (-919 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 *8)) (-5 *4 (-916)) (-4 *8 (-944 *5 *7 *6))
+ (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168))))
+ (-4 *7 (-788))
+ (-5 *2
+ (-639
+ (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8))
+ (|:| |wcond| (-639 (-947 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1256 (-406 (-947 *5))))
+ (|:| -4291 (-639 (-1256 (-406 (-947 *5))))))))))
+ (-5 *1 (-919 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-683 *9)) (-5 *4 (-639 *9)) (-5 *5 (-1150))
+ (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146)))
+ (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-562))
+ (-5 *1 (-919 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-683 *9)) (-5 *4 (-639 (-1168))) (-5 *5 (-1150))
+ (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146)))
+ (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-562))
+ (-5 *1 (-919 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 *8)) (-5 *4 (-1150)) (-4 *8 (-944 *5 *7 *6))
+ (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168))))
+ (-4 *7 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-683 *10)) (-5 *4 (-639 *10)) (-5 *5 (-916))
+ (-5 *6 (-1150)) (-4 *10 (-944 *7 *9 *8)) (-4 *7 (-13 (-306) (-146)))
+ (-4 *8 (-13 (-845) (-610 (-1168)))) (-4 *9 (-788)) (-5 *2 (-562))
+ (-5 *1 (-919 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-683 *10)) (-5 *4 (-639 (-1168))) (-5 *5 (-916))
+ (-5 *6 (-1150)) (-4 *10 (-944 *7 *9 *8)) (-4 *7 (-13 (-306) (-146)))
+ (-4 *8 (-13 (-845) (-610 (-1168)))) (-4 *9 (-788)) (-5 *2 (-562))
+ (-5 *1 (-919 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-683 *9)) (-5 *4 (-916)) (-5 *5 (-1150))
+ (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146)))
+ (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-562))
+ (-5 *1 (-919 *6 *7 *8 *9)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-326 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-515 *3 *4))
+ (-14 *4 (-562)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-639 (-683 (-562))))
- (-5 *1 (-1102)))))
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-538 *4 *2 *5 *6))
+ (-4 *4 (-306)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-766))))))
+(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-545))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-136))))
((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-155))))
((*1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207))))
@@ -552,245 +453,225 @@
(-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3))))))
((*1 *2 *1)
(-12 (-4 *2 (-1092)) (-5 *1 (-1157 *2 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-1 (-1148 (-947 *4)) (-1148 (-947 *4))))
- (-5 *1 (-1264 *4)) (-4 *4 (-362)))))
-(((*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258))))
- ((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))))
+(((*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-108))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-535))) (-5 *1 (-535)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-173 *3)) (-4 *3 (-306))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-668 *3)) (-4 *3 (-1207))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-766)) (-4 *1 (-735 *3 *4)) (-4 *3 (-1044))
+ (-4 *4 (-845))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 *3)) (-4 *1 (-975 *3)) (-4 *3 (-1044))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-639 *1)) (-5 *3 (-639 *7)) (-4 *1 (-1064 *4 *5 *6 *7))
+ (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1))
+ (-4 *1 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1))
+ (-4 *1 (-1064 *4 *5 *6 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))))
+(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1177)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378)))
+ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378)))
(|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167))))
(-5 *1 (-1167)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
- (-12 (-5 *3 (-1150)) (-5 *5 (-683 (-224))) (-5 *6 (-224))
- (-5 *7 (-683 (-562))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1168)) (-5 *1 (-669 *3)) (-4 *3 (-1092)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1092))
(-4 *6 (-1092)) (-4 *2 (-1092)) (-5 *1 (-674 *5 *6 *2)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-412 *3 *4 *5 *6)) (-4 *6 (-1033 *4)) (-4 *3 (-306))
- (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-4 *6 (-408 *4 *5))
- (-14 *7 (-1256 *6)) (-5 *1 (-413 *3 *4 *5 *6 *7))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1256 *6)) (-4 *6 (-408 *4 *5)) (-4 *4 (-987 *3))
- (-4 *5 (-1232 *4)) (-4 *3 (-306)) (-5 *1 (-413 *3 *4 *5 *6 *7))
- (-14 *7 *2))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))
- (-5 *2 (-639 (-224))) (-5 *1 (-304)))))
-(((*1 *1) (-4 *1 (-34))) ((*1 *1) (-5 *1 (-290)))
- ((*1 *1) (-5 *1 (-857)))
- ((*1 *1)
- (-12 (-4 *2 (-451)) (-4 *3 (-845)) (-4 *4 (-788))
- (-5 *1 (-982 *2 *3 *4 *5)) (-4 *5 (-944 *2 *4 *3))))
- ((*1 *1) (-5 *1 (-1077)))
+(((*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 (-378))) (-5 *1 (-262))))
((*1 *1)
- (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34)))
- (-4 *3 (-13 (-1092) (-34)))))
- ((*1 *1) (-5 *1 (-1171))) ((*1 *1) (-5 *1 (-1172))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-451)) (-4 *4 (-815))
- (-14 *5 (-1168)) (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-562)) (-5 *1 (-315 *3)) (-4 *3 (-554)) (-4 *3 (-845)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-293 (-406 (-947 *5)))) (-5 *4 (-1168))
- (-4 *5 (-13 (-306) (-845) (-146)))
- (-5 *2 (-1157 (-639 (-315 *5)) (-639 (-293 (-315 *5)))))
- (-5 *1 (-1121 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168))
- (-4 *5 (-13 (-306) (-845) (-146)))
- (-5 *2 (-1157 (-639 (-315 *5)) (-639 (-293 (-315 *5)))))
- (-5 *1 (-1121 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-639 (-315 (-224)))) (-5 *1 (-266)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-916)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1207))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-845))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-845))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-562)) (-4 *1 (-281 *3)) (-4 *3 (-1207))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-4 *1 (-281 *2)) (-4 *2 (-1207))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2
- (|:| -2320
- (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (|:| -2694
- (-2
- (|:| |endPointContinuity|
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular|
- "There are singularities at both end points")
- (|:| |notEvaluated|
- "End point continuity not yet evaluated")))
- (|:| |singularitiesStream|
- (-3 (|:| |str| (-1148 (-224)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -1590
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite|
- "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite|
- "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated")))))))
- (-5 *1 (-557))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-766)) (-4 *1 (-689 *2)) (-4 *2 (-1092))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2
- (|:| -2320
- (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
- (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
- (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
- (|:| |abserr| (-224)) (|:| |relerr| (-224))))
- (|:| -2694
- (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378))
- (|:| |expense| (-378)) (|:| |accuracy| (-378))
- (|:| |intermediateResults| (-378))))))
- (-5 *1 (-798))))
+ (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-554)) (-4 *2 (-171))))
+ ((*1 *2 *1) (-12 (-5 *1 (-417 *2)) (-4 *2 (-554)))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-112))
+ (-5 *2 (-1030)) (-5 *1 (-740)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-378)) (-5 *1 (-1056)))))
+(((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1035)))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-869))
+ (-5 *5 (-916)) (-5 *6 (-639 (-262))) (-5 *2 (-467)) (-5 *1 (-1260))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *2 (-467))
+ (-5 *1 (-1260))))
((*1 *2 *3 *4)
- (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
- (-4 *4 (-1092)))))
-(((*1 *1) (-5 *1 (-1077))))
+ (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-639 (-262)))
+ (-5 *2 (-467)) (-5 *1 (-1260)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-3 (-112) (-639 *1)))
+ (-4 *1 (-1064 *4 *5 *6 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1232 *3)) (-4 *3 (-1044)) (-5 *2 (-1164 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-554) (-845))) (-5 *2 (-168 *5))
- (-5 *1 (-596 *4 *5 *3)) (-4 *5 (-13 (-429 *4) (-997) (-1192)))
- (-4 *3 (-13 (-429 (-168 *4)) (-997) (-1192))))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-301)) (-5 *3 (-1168)) (-5 *2 (-112))))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-301)) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *1 (-685 *2)) (-4 *2 (-609 (-857))))))
+ (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
+ (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
+ (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-224))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1030))
+ (-5 *1 (-744)))))
+(((*1 *2) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-1190)))))
(((*1 *2 *1)
- (-12 (-4 *2 (-703 *3)) (-5 *1 (-822 *2 *3)) (-4 *3 (-1044)))))
-(((*1 *1 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-766)) (-4 *5 (-554))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-362) (-843)))
- (-5 *2 (-2 (|:| |start| *3) (|:| -1510 (-417 *3))))
- (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
- (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4))))
- ((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
- (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-683 *5))) (-5 *4 (-1256 *5)) (-4 *5 (-306))
- (-4 *5 (-1044)) (-5 *2 (-683 *5)) (-5 *1 (-1024 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2))
- (-4 *4 (-13 (-845) (-554))))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12
- (-4 *4 (-13 (-146) (-27) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-4 *5 (-1232 *4)) (-5 *2 (-1164 (-406 *5))) (-5 *1 (-611 *4 *5))
- (-5 *3 (-406 *5))))
- ((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5))
- (-4 *5 (-13 (-146) (-27) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-5 *2 (-1164 (-406 *6))) (-5 *1 (-611 *5 *6)) (-5 *3 (-406 *6)))))
+ (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 *4))))
+ (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092)) (-4 *4 (-23)) (-14 *5 *4))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1148 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
+ (-12 (-5 *2 (-406 (-562))) (-5 *1 (-318 *3 *4 *5))
+ (-4 *3 (-13 (-362) (-845))) (-14 *4 (-1168)) (-14 *5 *3))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1208 *2))
+ (-4 *2 (-1092))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-845))
+ (-5 *1 (-1208 *2)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1256 (-315 (-224))))
- (-5 *2
- (-2 (|:| |additions| (-562)) (|:| |multiplications| (-562))
- (|:| |exponentiations| (-562)) (|:| |functionCalls| (-562))))
- (-5 *1 (-304)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
-(((*1 *2 *3 *4 *4 *2 *2 *2)
- (-12 (-5 *2 (-562))
- (-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-766)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-788)) (-4 *4 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *7 (-845))
- (-5 *1 (-448 *5 *6 *7 *4)))))
+ (-12 (-4 *4 (-38 (-406 (-562))))
+ (-5 *2 (-2 (|:| -4074 (-1148 *4)) (|:| -4087 (-1148 *4))))
+ (-5 *1 (-1154 *4)) (-5 *3 (-1148 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7))))
- (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1168)) (-4 *5 (-610 (-887 (-562))))
- (-4 *5 (-881 (-562)))
- (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562))))
- (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
- (-5 *1 (-565 *5 *3)) (-4 *3 (-625))
- (-4 *3 (-13 (-27) (-1192) (-429 *5)))))
- ((*1 *2 *2 *3 *4 *4)
- (|partial| -12 (-5 *3 (-1168)) (-5 *4 (-838 *2)) (-4 *2 (-1131))
- (-4 *2 (-13 (-27) (-1192) (-429 *5)))
- (-4 *5 (-610 (-887 (-562)))) (-4 *5 (-881 (-562)))
- (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562))))
- (-5 *1 (-565 *5 *2)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1030)) (-5 *3 (-1168)) (-5 *1 (-266)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-114)))))
-(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-557)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-916)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
- ((*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-262)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
- (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-523)))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-639
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *3)
- (|:| |polj| *3))))
- (-4 *5 (-788)) (-4 *3 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *6 (-845))
- (-5 *1 (-448 *4 *5 *6 *3)))))
+ (-12 (-5 *3 (-639 *4)) (-4 *4 (-845)) (-5 *2 (-639 (-658 *4 *5)))
+ (-5 *1 (-623 *4 *5 *6)) (-4 *5 (-13 (-171) (-712 (-406 (-562)))))
+ (-14 *6 (-916)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1256 *4)) (-4 *4 (-416 *3)) (-4 *3 (-306))
+ (-4 *3 (-554)) (-5 *1 (-43 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-916)) (-4 *4 (-362)) (-5 *2 (-1256 *1))
+ (-4 *1 (-328 *4))))
+ ((*1 *2) (-12 (-4 *3 (-362)) (-5 *2 (-1256 *1)) (-4 *1 (-328 *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-1256 *1))
+ (-4 *1 (-408 *3 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-306)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4))
+ (-5 *2 (-1256 *6)) (-5 *1 (-412 *3 *4 *5 *6))
+ (-4 *6 (-13 (-408 *4 *5) (-1033 *4)))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-306)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4))
+ (-5 *2 (-1256 *6)) (-5 *1 (-413 *3 *4 *5 *6 *7))
+ (-4 *6 (-408 *4 *5)) (-14 *7 *2)))
+ ((*1 *2) (-12 (-4 *3 (-171)) (-5 *2 (-1256 *1)) (-4 *1 (-416 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-916)) (-5 *2 (-1256 (-1256 *4))) (-5 *1 (-527 *4))
+ (-4 *4 (-348)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))))
+(((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-356 *3)) (-4 *3 (-348)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4)))
- (-5 *2 (-2 (|:| |num| (-1256 *4)) (|:| |den| *4))))))
-(((*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-108))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-535))) (-5 *1 (-535)))))
-(((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1035)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)))))
+ (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3))
+ (-4 *3 (-962)))))
(((*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
((*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
((*1 *2 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
(-4 *2 (-429 *3))))
((*1 *1 *1 *1) (-4 *1 (-1131))))
+(((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
+ (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))))
+(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
+(((*1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-4 *2 (-1092)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7))))
+ (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-38 (-406 (-562))))
+ (-4 *2 (-171)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1261)) (-5 *1 (-1171))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1261))
+ (-5 *1 (-1171))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *4 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1261))
+ (-5 *1 (-1171)))))
(((*1 *2 *3 *1)
(-12 (-4 *1 (-606 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092))
(-5 *2 (-112)))))
+(((*1 *1 *1) (-5 *1 (-1056))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-171)) (-4 *2 (-554))))
+ ((*1 *1 *1) (|partial| -4 *1 (-717))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1150)) (-5 *3 (-818)) (-5 *1 (-817)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-362)) (-4 *3 (-1044))
+ (-5 *1 (-1152 *3)))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224)))
+ (-5 *2 (-1030)) (-5 *1 (-749)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -1606 (-777 *3)) (|:| |coef2| (-777 *3))))
+ (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *2 (-2 (|:| -1606 *1) (|:| |coef2| *1)))
+ (-4 *1 (-1058 *3 *4 *5)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-1168)) (-4 *4 (-1044)) (-4 *4 (-845))
+ (-5 *2 (-2 (|:| |var| (-608 *1)) (|:| -1300 (-562))))
+ (-4 *1 (-429 *4))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1044)) (-4 *4 (-845))
+ (-5 *2 (-2 (|:| |var| (-608 *1)) (|:| -1300 (-562))))
+ (-4 *1 (-429 *4))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1104)) (-4 *3 (-845))
+ (-5 *2 (-2 (|:| |var| (-608 *1)) (|:| -1300 (-562))))
+ (-4 *1 (-429 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |val| (-887 *3)) (|:| -1300 (-766))))
+ (-5 *1 (-887 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-5 *2 (-2 (|:| |var| *5) (|:| -1300 (-766))))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044))
+ (-4 *7 (-944 *6 *4 *5))
+ (-5 *2 (-2 (|:| |var| *5) (|:| -1300 (-562))))
+ (-5 *1 (-945 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-362)
+ (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $))
+ (-15 -4079 (*7 $))))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1256 *4)) (-4 *4 (-635 (-562))) (-5 *2 (-112))
+ (-5 *1 (-1283 *4)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1054 (-1019 *4) (-1164 (-1019 *4)))) (-5 *3 (-857))
+ (-5 *1 (-1019 *4)) (-4 *4 (-13 (-843) (-362) (-1017))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
+(((*1 *2)
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
(((*1 *2 *1) (-12 (-4 *1 (-131)) (-5 *2 (-766))))
((*1 *2 *3 *1 *2)
(-12 (-5 *2 (-562)) (-4 *1 (-372 *3)) (-4 *3 (-1207))
@@ -805,65 +686,66 @@
((*1 *2 *3 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-562)) (-5 *3 (-140))))
((*1 *2 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-562)))))
(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (-143)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1256 *4)) (-4 *4 (-635 (-562))) (-5 *2 (-112))
- (-5 *1 (-1283 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-766)) (-4 *1 (-1232 *4)) (-4 *4 (-1044))
+ (-5 *2 (-1256 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-816)) (-5 *2 (-52)) (-5 *1 (-826)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1168))
+ (-4 *5 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2 (-2 (|:| -2929 *3) (|:| |coeff| *3))) (-5 *1 (-555 *5 *3))
+ (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-3 (-406 (-947 *6)) (-1157 (-1168) (-947 *6))))
+ (-5 *5 (-766)) (-4 *6 (-451)) (-5 *2 (-639 (-683 (-406 (-947 *6)))))
+ (-5 *1 (-291 *6)) (-5 *4 (-683 (-406 (-947 *6))))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *3
+ (-2 (|:| |eigval| (-3 (-406 (-947 *5)) (-1157 (-1168) (-947 *5))))
+ (|:| |eigmult| (-766)) (|:| |eigvec| (-639 *4))))
+ (-4 *5 (-451)) (-5 *2 (-639 (-683 (-406 (-947 *5)))))
+ (-5 *1 (-291 *5)) (-5 *4 (-683 (-406 (-947 *5)))))))
(((*1 *2 *1)
(-12
(-5 *2
(-639
(-639
- (-3 (|:| -3254 (-1168))
- (|:| -2177 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562))))))))))
+ (-3 (|:| -3253 (-1168))
+ (|:| -1852 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562))))))))))
(-5 *1 (-1172)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-554)) (-4 *4 (-845))
- (-5 *1 (-571 *4 *2)) (-4 *2 (-429 *4)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-224)) (-5 *4 (-562))
- (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))
- (-5 *2 (-1030)) (-5 *1 (-743)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5)
- (-12 (-5 *3 (-224)) (-5 *4 (-562))
- (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))
- (-5 *2 (-1030)) (-5 *1 (-741)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-639 (-1164 *4))) (-5 *3 (-1164 *4))
- (-4 *4 (-904)) (-5 *1 (-657 *4)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
+ (-5 *1 (-983 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
+ (-5 *1 (-1099 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-766)) (-5 *4 (-562)) (-5 *1 (-444 *2)) (-4 *2 (-1044)))))
+(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-754)))))
(((*1 *1)
(-12 (-4 *3 (-1092)) (-5 *1 (-880 *2 *3 *4)) (-4 *2 (-1092))
(-4 *4 (-660 *3))))
((*1 *1) (-12 (-5 *1 (-884 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1150)) (-5 *4 (-168 (-224))) (-5 *5 (-562))
+ (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 (-480 *3 *4))) (-14 *3 (-639 (-1168)))
+ (-4 *4 (-451)) (-5 *1 (-627 *3 *4)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 (-112) *7 (-639 *7))) (-4 *1 (-1200 *4 *5 *6 *7))
- (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1044)) (-5 *2 (-1256 *3)) (-5 *1 (-707 *3 *4))
- (-4 *4 (-1232 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-326 *3)) (-4 *3 (-1207))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-515 *3 *4)) (-4 *3 (-1207))
- (-14 *4 (-562)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-766)) (-5 *5 (-639 *3)) (-4 *3 (-306)) (-4 *6 (-845))
- (-4 *7 (-788)) (-5 *2 (-112)) (-5 *1 (-621 *6 *7 *3 *8))
- (-4 *8 (-944 *3 *7 *6)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-224))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-224))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-378))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-378)))))
+ (-12 (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-766)) (-4 *5 (-554))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
(((*1 *2 *1) (-12 (-5 *1 (-685 *2)) (-4 *2 (-609 (-857)))))
((*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-562))))
((*1 *2 *1) (-12 (-4 *1 (-1129)) (-5 *2 (-1150))))
@@ -900,118 +782,108 @@
((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1173))))
((*1 *2 *1) (-12 (-5 *2 (-224)) (-5 *1 (-1173))))
((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1173)))))
-(((*1 *2 *1) (-12 (-5 *1 (-173 *2)) (-4 *2 (-306))))
- ((*1 *2 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306))))
- ((*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-306))))
- ((*1 *2 *1) (-12 (-4 *1 (-1053)) (-5 *2 (-562)))))
-(((*1 *2)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-916)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
- ((*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-262)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-752)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1256 (-1168))) (-5 *3 (-1256 (-452 *4 *5 *6 *7)))
- (-5 *1 (-452 *4 *5 *6 *7)) (-4 *4 (-171)) (-14 *5 (-916))
- (-14 *6 (-639 (-1168))) (-14 *7 (-1256 (-683 *4)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-452 *4 *5 *6 *7)))
- (-5 *1 (-452 *4 *5 *6 *7)) (-4 *4 (-171)) (-14 *5 (-916))
- (-14 *6 (-639 *2)) (-14 *7 (-1256 (-683 *4)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-452 *3 *4 *5 *6))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168)))
- (-14 *6 (-1256 (-683 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-1168))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168)))
- (-14 *6 (-1256 (-683 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1168)) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171))
- (-14 *4 (-916)) (-14 *5 (-639 *2)) (-14 *6 (-1256 (-683 *3)))))
- ((*1 *1)
- (-12 (-5 *1 (-452 *2 *3 *4 *5)) (-4 *2 (-171)) (-14 *3 (-916))
- (-14 *4 (-639 (-1168))) (-14 *5 (-1256 (-683 *2))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1277 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
- (-5 *2 (-814 *3))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-872 *2)) (-4 *2 (-1207))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-874 *2)) (-4 *2 (-1207))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-877 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN))))
+ (-5 *2 (-1030)) (-5 *1 (-743)))))
+(((*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1150)) (-5 *1 (-52)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-362)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4))
+ (-5 *2 (-766)) (-5 *1 (-520 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6))))
((*1 *2 *1)
- (-12 (-4 *2 (-841)) (-5 *1 (-1279 *3 *2)) (-4 *3 (-1044)))))
-(((*1 *2)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 (-168 (-406 (-562))))) (-5 *2 (-639 (-168 *4)))
- (-5 *1 (-759 *4)) (-4 *4 (-13 (-362) (-843))))))
-(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-171)) (-4 *2 (-554))))
- ((*1 *1 *1) (|partial| -4 *1 (-717))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-639 (-938 *4))) (-4 *1 (-1126 *4)) (-4 *4 (-1044))
+ (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-4 *3 (-554)) (-5 *2 (-766))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4))
+ (-4 *6 (-372 *4)) (-5 *2 (-766)) (-5 *1 (-682 *4 *5 *6 *3))
+ (-4 *3 (-681 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
+ (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-4 *5 (-554))
(-5 *2 (-766)))))
+(((*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-224)) (-5 *1 (-304)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1168)) (-4 *5 (-362)) (-5 *2 (-639 (-1201 *5)))
+ (-5 *1 (-1264 *5)) (-5 *4 (-1201 *5)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-683 *6)) (-5 *5 (-1 (-417 (-1164 *6)) (-1164 *6)))
+ (-4 *6 (-362))
+ (-5 *2
+ (-639
+ (-2 (|:| |outval| *7) (|:| |outmult| (-562))
+ (|:| |outvect| (-639 (-683 *7))))))
+ (-5 *1 (-531 *6 *7 *4)) (-4 *7 (-362)) (-4 *4 (-13 (-362) (-843))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211))
+ (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-683 *5))) (-4 *5 (-306)) (-4 *5 (-1044))
+ (-5 *2 (-1256 (-1256 *5))) (-5 *1 (-1024 *5)) (-5 *4 (-1256 *5)))))
+(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
+ (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562))
+ (-5 *2 (-1030)) (-5 *1 (-751)))))
(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-562)) (-5 *3 (-916)) (-4 *1 (-403))))
((*1 *1 *2 *2) (-12 (-5 *2 (-562)) (-4 *1 (-403))))
((*1 *2 *1)
(-12 (-4 *1 (-1095 *3 *4 *5 *2 *6)) (-4 *3 (-1092)) (-4 *4 (-1092))
(-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))))
-(((*1 *2 *1) (-12 (-4 *1 (-424 *3)) (-4 *3 (-1092)) (-5 *2 (-766)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-639 (-1068 *4 *5 *2))) (-4 *4 (-1092))
- (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4))))
- (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4))))
- (-5 *1 (-54 *4 *5 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-639 (-1068 *5 *6 *2))) (-5 *4 (-916)) (-4 *5 (-1092))
- (-4 *6 (-13 (-1044) (-881 *5) (-845) (-610 (-887 *5))))
- (-4 *2 (-13 (-429 *6) (-881 *5) (-610 (-887 *5))))
- (-5 *1 (-54 *5 *6 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *1) (-5 *1 (-576))))
+(((*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-1232 (-406 (-562))))
+ (-5 *2 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562))))
+ (-5 *1 (-908 *3 *4)) (-4 *4 (-1232 (-406 *3)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1232 (-406 *2))) (-5 *2 (-562)) (-5 *1 (-908 *4 *3))
+ (-4 *3 (-1232 (-406 *4))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-1193 *3))) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-262)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-224)) (-5 *3 (-766)) (-5 *1 (-225))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-168 (-224))) (-5 *3 (-766)) (-5 *1 (-225))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1131))))
+ (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
+ (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788))
+ (-5 *2 (-112)) (-5 *1 (-503 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-170))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1202 *3)) (-4 *3 (-969)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-639 *6)) (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
+ (-4 *3 (-554)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 *5)) (-4 *5 (-1232 *3)) (-4 *3 (-306))
+ (-5 *2 (-112)) (-5 *1 (-454 *3 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 (-1168))) (-4 *6 (-362))
+ (-5 *2 (-639 (-293 (-947 *6)))) (-5 *1 (-537 *5 *6 *7))
+ (-4 *5 (-451)) (-4 *7 (-13 (-362) (-843))))))
+(((*1 *2 *2 *1 *3 *4)
+ (-12 (-5 *2 (-639 *8)) (-5 *3 (-1 *8 *8 *8))
+ (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1200 *5 *6 *7 *8)) (-4 *5 (-554))
+ (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)))))
+(((*1 *1) (-5 *1 (-1056))))
(((*1 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-448 *3 *4 *5 *6)))))
-(((*1 *2)
- (-12 (-5 *2 (-766)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-766)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-128)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1218 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1247 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1495 *8)))
- (-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1064 *4 *5 *6 *7)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-983 *4 *5 *6 *7 *8))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1495 *8)))
- (-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1064 *4 *5 *6 *7)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-1099 *4 *5 *6 *7 *8)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224)))
- (-5 *2 (-1030)) (-5 *1 (-749)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-562))) (-4 *3 (-1044)) (-5 *1 (-592 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-562))) (-4 *1 (-1216 *3)) (-4 *3 (-1044))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-562))) (-4 *1 (-1247 *3)) (-4 *3 (-1044)))))
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1173)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-406 (-562)))
+ (-5 *1 (-432 *4 *3)) (-4 *3 (-429 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-608 *3)) (-4 *3 (-429 *5))
+ (-4 *5 (-13 (-845) (-554) (-1033 (-562))))
+ (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-432 *5 *3)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
+ (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
+ (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
+ (|:| |abserr| (-224)) (|:| |relerr| (-224))))
+ (-5 *2 (-378)) (-5 *1 (-204)))))
(((*1 *2 *3 *1)
(-12 (-5 *3 (-1280 *4 *2)) (-4 *1 (-373 *4 *2)) (-4 *4 (-845))
(-4 *2 (-171))))
@@ -1029,40 +901,79 @@
((*1 *1 *1)
(-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34)))
(-4 *3 (-13 (-1092) (-34))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378))))
- ((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-378)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *2 (-562))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
- (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))))
+ (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
+ (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-562)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))))
(((*1 *2 *1 *3 *4)
(-12 (-5 *3 (-467)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-639 *3)) (-5 *1 (-956 *3)) (-4 *3 (-544)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 *4))))
- (-4 *3 (-1092)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-643 *3 *4 *5)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
+(((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030))
+ (-5 *1 (-743)))))
+(((*1 *2 *3 *2)
+ (-12
+ (-5 *2
+ (-639
+ (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-766)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *3 (-788)) (-4 *6 (-944 *4 *3 *5)) (-4 *4 (-451)) (-4 *5 (-845))
+ (-5 *1 (-448 *4 *3 *5 *6)))))
+(((*1 *2)
+ (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-416 *3)))))
+(((*1 *2)
+ (-12 (-4 *3 (-554)) (-5 *2 (-639 (-683 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-416 *3)))))
+(((*1 *2 *3 *4 *2 *5 *6)
+ (-12
(-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -1602 *6) (|:| |sol?| (-112))) (-562)
- *6))
- (-4 *6 (-362)) (-4 *7 (-1232 *6))
- (-5 *2 (-2 (|:| |answer| (-583 (-406 *7))) (|:| |a0| *6)))
- (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))))
-(((*1 *1 *1 *2 *2 *1)
- (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044))
- (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788))
- (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-182)) (-5 *1 (-247)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-900 *4)) (-4 *4 (-1092)) (-5 *2 (-639 (-766)))
- (-5 *1 (-899 *4)))))
+ (-2 (|:| |done| (-639 *11))
+ (|:| |todo| (-639 (-2 (|:| |val| *3) (|:| -1501 *11))))))
+ (-5 *6 (-766))
+ (-5 *2 (-639 (-2 (|:| |val| (-639 *10)) (|:| -1501 *11))))
+ (-5 *3 (-639 *10)) (-5 *4 (-639 *11)) (-4 *10 (-1058 *7 *8 *9))
+ (-4 *11 (-1064 *7 *8 *9 *10)) (-4 *7 (-451)) (-4 *8 (-788))
+ (-4 *9 (-845)) (-5 *1 (-1062 *7 *8 *9 *10 *11))))
+ ((*1 *2 *3 *4 *2 *5 *6)
+ (-12
+ (-5 *5
+ (-2 (|:| |done| (-639 *11))
+ (|:| |todo| (-639 (-2 (|:| |val| *3) (|:| -1501 *11))))))
+ (-5 *6 (-766))
+ (-5 *2 (-639 (-2 (|:| |val| (-639 *10)) (|:| -1501 *11))))
+ (-5 *3 (-639 *10)) (-5 *4 (-639 *11)) (-4 *10 (-1058 *7 *8 *9))
+ (-4 *11 (-1101 *7 *8 *9 *10)) (-4 *7 (-451)) (-4 *8 (-788))
+ (-4 *9 (-845)) (-5 *1 (-1137 *7 *8 *9 *10 *11)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-406 (-947 (-168 (-562))))))
+ (-5 *2 (-639 (-639 (-293 (-947 (-168 *4)))))) (-5 *1 (-377 *4))
+ (-4 *4 (-13 (-362) (-843)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-293 (-406 (-947 (-168 (-562)))))))
+ (-5 *2 (-639 (-639 (-293 (-947 (-168 *4)))))) (-5 *1 (-377 *4))
+ (-4 *4 (-13 (-362) (-843)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-406 (-947 (-168 (-562)))))
+ (-5 *2 (-639 (-293 (-947 (-168 *4))))) (-5 *1 (-377 *4))
+ (-4 *4 (-13 (-362) (-843)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-293 (-406 (-947 (-168 (-562))))))
+ (-5 *2 (-639 (-293 (-947 (-168 *4))))) (-5 *1 (-377 *4))
+ (-4 *4 (-13 (-362) (-843))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-639 (-1 *4 (-639 *4)))) (-4 *4 (-1092))
+ (-5 *1 (-113 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1092))
+ (-5 *1 (-113 *4))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-114)) (-5 *2 (-639 (-1 *4 (-639 *4))))
+ (-5 *1 (-113 *4)) (-4 *4 (-1092)))))
(((*1 *2 *3)
(-12 (-4 *5 (-13 (-610 *2) (-171))) (-5 *2 (-887 *4))
(-5 *1 (-169 *4 *5 *3)) (-4 *4 (-1092)) (-4 *3 (-165 *5))))
@@ -1097,7 +1008,7 @@
((*1 *1 *2)
(-4037
(-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5))
- (-12 (-2236 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562)))
+ (-12 (-2234 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562)))
(-4 *5 (-610 (-1168))))
(-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)))
(-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5))
@@ -1108,12 +1019,12 @@
(-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168))) (-4 *3 (-1044))
(-4 *4 (-788)) (-4 *5 (-845))))
((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1495 *8)))
+ (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1501 *8)))
(-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1064 *4 *5 *6 *7)) (-4 *4 (-451))
(-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1150))
(-5 *1 (-1062 *4 *5 *6 *7 *8))))
((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1495 *8)))
+ (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1501 *8)))
(-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1101 *4 *5 *6 *7)) (-4 *4 (-451))
(-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1150))
(-5 *1 (-1137 *4 *5 *6 *7 *8))))
@@ -1145,6 +1056,8 @@
(-4 *4 (-13 (-843) (-306) (-146) (-1017))) (-14 *6 (-639 (-1168)))
(-5 *2 (-639 (-775 *4 (-859 *6)))) (-5 *1 (-1282 *4 *5 *6))
(-14 *5 (-639 (-1168))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-1193 *3))) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997)))))
@@ -1164,56 +1077,61 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))))
-(((*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-766)) (-5 *1 (-587)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367))
- (-5 *2 (-1164 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367))
- (-5 *2 (-1164 *3)))))
-(((*1 *2 *3 *3)
- (-12 (|has| *2 (-6 (-4404 "*"))) (-4 *5 (-372 *2)) (-4 *6 (-372 *2))
- (-4 *2 (-1044)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1232 *2))
- (-4 *4 (-681 *2 *5 *6)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+ (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *2 (-639 *1)) (-4 *1 (-1058 *3 *4 *5)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4))))
+ (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-114)) (-5 *4 (-766)) (-4 *5 (-451)) (-4 *5 (-845))
+ (-4 *5 (-1033 (-562))) (-4 *5 (-554)) (-5 *1 (-41 *5 *2))
+ (-4 *2 (-429 *5))
+ (-4 *2
+ (-13 (-362) (-301)
+ (-10 -8 (-15 -4063 ((-1117 *5 (-608 $)) $))
+ (-15 -4079 ((-1117 *5 (-608 $)) $))
+ (-15 -4053 ($ (-1117 *5 (-608 $))))))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-562)) (-5 *2 (-639 (-639 (-224)))) (-5 *1 (-1203)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-1164 *4))
+ (-5 *1 (-527 *4)))))
(((*1 *2 *1 *3 *3 *2)
(-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1207))
(-4 *4 (-372 *2)) (-4 *5 (-372 *2))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "right") (|has| *1 (-6 -4403)) (-4 *1 (-119 *3))
+ (-12 (-5 *2 "right") (|has| *1 (-6 -4404)) (-4 *1 (-119 *3))
(-4 *3 (-1207))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "left") (|has| *1 (-6 -4403)) (-4 *1 (-119 *3))
+ (-12 (-5 *2 "left") (|has| *1 (-6 -4404)) (-4 *1 (-119 *3))
(-4 *3 (-1207))))
((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-287 *3 *2)) (-4 *3 (-1092))
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-287 *3 *2)) (-4 *3 (-1092))
(-4 *2 (-1207))))
((*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1168)) (-5 *1 (-628))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 (-1223 (-562))) (|has| *1 (-6 -4403)) (-4 *1 (-645 *2))
+ (-12 (-5 *3 (-1223 (-562))) (|has| *1 (-6 -4404)) (-4 *1 (-645 *2))
(-4 *2 (-1207))))
((*1 *1 *1 *2 *2 *1)
(-12 (-5 *2 (-639 (-562))) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044))
(-4 *4 (-372 *3)) (-4 *5 (-372 *3))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "value") (|has| *1 (-6 -4403)) (-4 *1 (-1005 *2))
+ (-12 (-5 *3 "value") (|has| *1 (-6 -4404)) (-4 *1 (-1005 *2))
(-4 *2 (-1207))))
((*1 *2 *1 *2) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207))))
((*1 *2 *1 *3 *2)
(-12 (-4 *1 (-1183 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "last") (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2))
+ (-12 (-5 *3 "last") (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2))
(-4 *2 (-1207))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "rest") (|has| *1 (-6 -4403)) (-4 *1 (-1244 *3))
+ (-12 (-5 *2 "rest") (|has| *1 (-6 -4404)) (-4 *1 (-1244 *3))
(-4 *3 (-1207))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "first") (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2))
+ (-12 (-5 *3 "first") (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2))
(-4 *2 (-1207)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-874 (-1 (-224) (-224)))) (-5 *4 (-1086 (-378)))
@@ -1268,17 +1186,22 @@
(-12 (-5 *3 (-877 *5)) (-5 *4 (-1084 (-378)))
(-4 *5 (-13 (-610 (-535)) (-1092))) (-5 *2 (-1125 (-224)))
(-5 *1 (-258 *5)))))
-(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-112))
- (-5 *6 (-224)) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-68 APROD))))
- (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-73 MSOLVE))))
- (-5 *2 (-1030)) (-5 *1 (-751)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-600 *2 *3)) (-4 *3 (-1207)) (-4 *2 (-1092))
- (-4 *2 (-845)))))
+(((*1 *1 *1) (-4 *1 (-625)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997) (-1192))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
+ (-4 *3 (-13 (-362) (-1192) (-997))))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1))
- (-4 *1 (-1058 *3 *4 *5)))))
+ (-12 (-4 *1 (-322 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-130))
+ (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 *4))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-2 (|:| -4221 *3) (|:| -3044 *4))))
+ (-5 *1 (-730 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-721))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787))
+ (-5 *2 (-1148 (-2 (|:| |k| *4) (|:| |c| *3)))))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
@@ -1295,50 +1218,62 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-1211))
- (-4 *6 (-1232 (-406 *5)))
- (-5 *2
- (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
- (|:| |gd| *5)))
- (-4 *1 (-341 *4 *5 *6)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1094 (-1094 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-562))) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562))
+ (-14 *4 (-766)) (-4 *5 (-171)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1495 *9))))
+ (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1501 *9))))
(-5 *4 (-766)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8))
(-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-1261))
(-5 *1 (-1062 *5 *6 *7 *8 *9))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1495 *9))))
+ (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1501 *9))))
(-5 *4 (-766)) (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8))
(-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-1261))
(-5 *1 (-1137 *5 *6 *7 *8 *9)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044))
- (-5 *2 (-639 (-639 (-639 (-766))))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-168 (-224)))) (-5 *2 (-1030))
- (-5 *1 (-751)))))
-(((*1 *2 *1) (-12 (-5 *2 (-817)) (-5 *1 (-816)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-938 (-224)))) (-5 *1 (-1257)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 *8)) (-4 *8 (-944 *5 *7 *6))
+ (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168))))
+ (-4 *7 (-788))
+ (-5 *2
+ (-639
+ (-2 (|:| -2172 (-766))
+ (|:| |eqns|
+ (-639
+ (-2 (|:| |det| *8) (|:| |rows| (-639 (-562)))
+ (|:| |cols| (-639 (-562))))))
+ (|:| |fgb| (-639 *8)))))
+ (-5 *1 (-919 *5 *6 *7 *8)) (-5 *4 (-766)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-362)) (-4 *3 (-1044))
+ (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-847 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-362)) (-4 *5 (-1044))
+ (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-848 *5 *3))
+ (-4 *3 (-847 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1164 *5)) (-4 *5 (-362)) (-5 *2 (-639 *6))
+ (-5 *1 (-531 *5 *6 *4)) (-4 *6 (-362)) (-4 *4 (-13 (-362) (-843))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-4 *3 (-1092))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-562)) (-5 *4 (-417 *2)) (-4 *2 (-944 *7 *5 *6))
+ (-5 *1 (-737 *5 *6 *7 *2)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-306)))))
+(((*1 *2 *3)
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (-5 *2 (-2 (|:| -2429 (-114)) (|:| |w| (-224)))) (-5 *1 (-203)))))
+(((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259))))
+ ((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))))
(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-143))))
((*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-143)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1150)) (-5 *2 (-562)) (-5 *1 (-1189 *4))
- (-4 *4 (-1044)))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
@@ -1355,27 +1290,26 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-215 *4 *2))
- (-4 *2 (-1232 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1150)) (-5 *1 (-304)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
-(((*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-256)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-237 *3 *2)) (-4 *2 (-1207)) (-4 *2 (-1044))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-857))))
- ((*1 *1 *1) (-5 *1 (-857)))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-938 (-224))) (-5 *2 (-224)) (-5 *1 (-1203))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-1044)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1232 *5))
- (-4 *5 (-13 (-27) (-429 *4)))
- (-4 *4 (-13 (-845) (-554) (-1033 (-562))))
- (-4 *7 (-1232 (-406 *6))) (-5 *1 (-550 *4 *5 *6 *7 *2))
- (-4 *2 (-341 *5 *6 *7)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-52)) (-5 *1 (-1185)))))
+(((*1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))))
+(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-97)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-639 (-947 *6))) (-5 *4 (-639 (-1168))) (-4 *6 (-451))
+ (-5 *2 (-639 (-639 *7))) (-5 *1 (-537 *6 *7 *5)) (-4 *7 (-362))
+ (-4 *5 (-13 (-362) (-843))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-562)) (-5 *1 (-567 *3)) (-4 *3 (-1033 *2)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788))
+ (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1093 *3 *4)) (-14 *3 (-916))
+ (-14 *4 (-916)))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
@@ -1392,35 +1326,98 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-4 *1 (-322 *4 *2)) (-4 *4 (-1092))
- (-4 *2 (-130)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-608 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4)))
- (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-276 *4 *2)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-112)) (-5 *1 (-114)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))))
-(((*1 *1) (-5 *1 (-140))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *5 (-608 *4)) (-5 *6 (-1164 *4))
- (-4 *4 (-13 (-429 *7) (-27) (-1192)))
- (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4))))
- (-5 *1 (-558 *7 *4 *3)) (-4 *3 (-650 *4)) (-4 *3 (-1092))))
- ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
- (-12 (-5 *5 (-608 *4)) (-5 *6 (-406 (-1164 *4)))
- (-4 *4 (-13 (-429 *7) (-27) (-1192)))
- (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4))))
- (-5 *1 (-558 *7 *4 *3)) (-4 *3 (-650 *4)) (-4 *3 (-1092)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-2 (|:| -2533 *4) (|:| -2277 (-562)))))
+ (-4 *4 (-1092)) (-5 *2 (-1 *4)) (-5 *1 (-1012 *4)))))
+(((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-406 *6)) (|:| |c| (-406 *6))
+ (|:| -3354 *6)))
+ (-5 *1 (-1010 *5 *6)) (-5 *3 (-406 *6)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-766)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1208 *3)) (-4 *3 (-845))
+ (-4 *3 (-1092)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
+(((*1 *2 *3 *4 *3 *3)
+ (-12 (-5 *3 (-293 *6)) (-5 *4 (-114)) (-4 *6 (-429 *5))
+ (-4 *5 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52))
+ (-5 *1 (-316 *5 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-293 *7)) (-5 *4 (-114)) (-5 *5 (-639 *7))
+ (-4 *7 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535))))
+ (-5 *2 (-52)) (-5 *1 (-316 *6 *7))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-639 (-293 *7))) (-5 *4 (-639 (-114))) (-5 *5 (-293 *7))
+ (-4 *7 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535))))
+ (-5 *2 (-52)) (-5 *1 (-316 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-639 (-293 *8))) (-5 *4 (-639 (-114))) (-5 *5 (-293 *8))
+ (-5 *6 (-639 *8)) (-4 *8 (-429 *7))
+ (-4 *7 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52))
+ (-5 *1 (-316 *7 *8))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-639 *7)) (-5 *4 (-639 (-114))) (-5 *5 (-293 *7))
+ (-4 *7 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535))))
+ (-5 *2 (-52)) (-5 *1 (-316 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 (-114))) (-5 *6 (-639 (-293 *8)))
+ (-4 *8 (-429 *7)) (-5 *5 (-293 *8))
+ (-4 *7 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52))
+ (-5 *1 (-316 *7 *8))))
+ ((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-293 *5)) (-5 *4 (-114)) (-4 *5 (-429 *6))
+ (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52))
+ (-5 *1 (-316 *6 *5))))
+ ((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-114)) (-5 *5 (-293 *3)) (-4 *3 (-429 *6))
+ (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52))
+ (-5 *1 (-316 *6 *3))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-114)) (-5 *5 (-293 *3)) (-4 *3 (-429 *6))
+ (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52))
+ (-5 *1 (-316 *6 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-114)) (-5 *5 (-293 *3)) (-5 *6 (-639 *3))
+ (-4 *3 (-429 *7)) (-4 *7 (-13 (-845) (-554) (-610 (-535))))
+ (-5 *2 (-52)) (-5 *1 (-316 *7 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-639 (-503 *3 *4 *5 *6))) (-4 *3 (-362)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845))
+ (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-639 *1)) (-5 *3 (-639 *7)) (-4 *1 (-1064 *4 *5 *6 *7))
+ (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1))
+ (-4 *1 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1))
+ (-4 *1 (-1064 *4 *5 *6 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9))
+ (-4 *9 (-1058 *6 *7 *8)) (-4 *6 (-554)) (-4 *7 (-788))
+ (-4 *8 (-845)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2774 (-639 *9))))
+ (-5 *3 (-639 *9)) (-4 *1 (-1200 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-2 (|:| |bas| *1) (|:| -2774 (-639 *8))))
+ (-5 *3 (-639 *8)) (-4 *1 (-1200 *5 *6 *7 *8)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-315 (-378))) (-5 *2 (-315 (-224))) (-5 *1 (-304)))))
+(((*1 *1 *1 *1) (-4 *1 (-962))))
(((*1 *1 *1) (-4 *1 (-95))) ((*1 *1 *1 *1) (-5 *1 (-224)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
@@ -1441,6 +1438,8 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
+(((*1 *1) (-5 *1 (-818))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-639 *8)) (-5 *4 (-135 *5 *6 *7)) (-14 *5 (-562))
(-14 *6 (-766)) (-4 *7 (-171)) (-4 *8 (-171))
@@ -1450,55 +1449,19 @@
(-4 *8 (-1044)) (-4 *2 (-944 *9 *7 *5))
(-5 *1 (-723 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-788))
(-4 *4 (-944 *8 *6 *5)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (-5 *2 (-1148 (-224))) (-5 *1 (-191))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-315 (-224))) (-5 *4 (-639 (-1168)))
- (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-299))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *4 (-639 (-1168)))
- (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-299)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562)))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
- (-12 (-5 *3 (-916)) (-5 *4 (-224)) (-5 *5 (-562)) (-5 *6 (-869))
- (-5 *2 (-1261)) (-5 *1 (-1257)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-222 *2 *3)) (-4 *2 (-13 (-1044) (-845)))
- (-14 *3 (-639 (-1168))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2355 *4)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1044)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-544))))
(((*1 *2 *1)
- (-12 (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4)))
- (-5 *2 (-1256 *6)) (-5 *1 (-335 *3 *4 *5 *6))
- (-4 *6 (-341 *3 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-1164 *3)) (-5 *1 (-41 *4 *3))
- (-4 *3
- (-13 (-362) (-301)
- (-10 -8 (-15 -4065 ((-1117 *4 (-608 $)) $))
- (-15 -4076 ((-1117 *4 (-608 $)) $))
- (-15 -4054 ($ (-1117 *4 (-608 $))))))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-362)) (-4 *4 (-554)) (-4 *5 (-1232 *4))
- (-5 *2 (-2 (|:| -2401 (-619 *4 *5)) (|:| -3937 (-406 *5))))
- (-5 *1 (-619 *4 *5)) (-5 *3 (-406 *5))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 (-1156 *3 *4))) (-5 *1 (-1156 *3 *4))
- (-14 *3 (-916)) (-4 *4 (-1044))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-451)) (-4 *3 (-1044))
- (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
- (-4 *1 (-1232 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-131)) (-5 *1 (-1076 *2))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-562) *2 *2)) (-4 *2 (-131)) (-5 *1 (-1076 *2)))))
+ (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *5 (-367))
+ (-5 *2 (-766)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-788)) (-4 *4 (-845)) (-4 *6 (-306)) (-5 *2 (-417 *3))
+ (-5 *1 (-737 *5 *4 *6 *3)) (-4 *3 (-944 *6 *5 *4)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 (-224) (-224))) (-5 *4 (-1086 (-378)))
(-5 *5 (-639 (-262))) (-5 *2 (-1257)) (-5 *1 (-254))))
@@ -1629,8 +1592,8 @@
(-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171))
(-4 *6 (-237 (-3492 *3) (-766)))
(-14 *7
- (-1 (-112) (-2 (|:| -2466 *5) (|:| -1960 *6))
- (-2 (|:| -2466 *5) (|:| -1960 *6))))
+ (-1 (-112) (-2 (|:| -2464 *5) (|:| -1300 *6))
+ (-2 (|:| -2464 *5) (|:| -1300 *6))))
(-5 *1 (-460 *3 *4 *5 *6 *7 *2)) (-4 *5 (-845))
(-4 *2 (-944 *4 *6 (-859 *3)))))
((*1 *1 *1 *2)
@@ -1709,7 +1672,8 @@
(-12 (-4 *1 (-1273 *3 *2)) (-4 *3 (-845)) (-4 *2 (-1044))))
((*1 *1 *1 *2)
(-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-841)))))
-(((*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-315 *3)) (-4 *3 (-554)) (-4 *3 (-845)))))
(((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1044))
(-4 *4 (-787))))
@@ -1817,9 +1781,9 @@
(-4 *6 (-362)) (-5 *2 (-583 *6)) (-5 *1 (-582 *5 *6))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-1 *6 *5))
- (-5 *4 (-3 (-2 (|:| -3860 *5) (|:| |coeff| *5)) "failed"))
+ (-5 *4 (-3 (-2 (|:| -2929 *5) (|:| |coeff| *5)) "failed"))
(-4 *5 (-362)) (-4 *6 (-362))
- (-5 *2 (-2 (|:| -3860 *6) (|:| |coeff| *6)))
+ (-5 *2 (-2 (|:| -2929 *6) (|:| |coeff| *6)))
(-5 *1 (-582 *5 *6))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed"))
@@ -1938,7 +1902,7 @@
(-4 *8 (-1044)) (-4 *6 (-788))
(-4 *2
(-13 (-1092)
- (-10 -8 (-15 -1835 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-766))))))
+ (-10 -8 (-15 -1836 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-766))))))
(-5 *1 (-946 *6 *7 *8 *5 *2)) (-4 *5 (-944 *8 *6 *7))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-953 *5)) (-4 *5 (-1207))
@@ -1952,7 +1916,7 @@
(-4 *6
(-13 (-845)
(-10 -8 (-15 -4208 ((-1168) $))
- (-15 -2444 ((-3 $ "failed") (-1168))))))
+ (-15 -2443 ((-3 $ "failed") (-1168))))))
(-5 *1 (-979 *4 *5 *6 *2))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-554)) (-4 *6 (-554))
@@ -2059,63 +2023,46 @@
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-639 (-1164 *5))) (-5 *3 (-1164 *5))
- (-4 *5 (-165 *4)) (-4 *4 (-544)) (-5 *1 (-148 *4 *5))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-639 *3)) (-4 *3 (-1232 *5))
- (-4 *5 (-1232 *4)) (-4 *4 (-348)) (-5 *1 (-357 *4 *5 *3))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-639 (-1164 (-562)))) (-5 *3 (-1164 (-562)))
- (-5 *1 (-570))))
+ (-12 (-5 *2 (-683 *4)) (-5 *3 (-916)) (-4 *4 (-1044))
+ (-5 *1 (-1023 *4))))
((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-639 (-1164 *1))) (-5 *3 (-1164 *1))
- (-4 *1 (-904)))))
+ (-12 (-5 *2 (-639 (-683 *4))) (-5 *3 (-916)) (-4 *4 (-1044))
+ (-5 *1 (-1023 *4)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-916))
- (-5 *2 (-1256 (-639 (-2 (|:| -2534 *4) (|:| -2466 (-1112))))))
- (-5 *1 (-345 *4)) (-4 *4 (-348)))))
+ (-12 (-5 *3 (-1168)) (-5 *2 (-1 *6 *5)) (-5 *1 (-701 *4 *5 *6))
+ (-4 *4 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207)))))
(((*1 *2 *1)
(-12 (-5 *2 (-639 *5)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562))
(-14 *4 (-766)) (-4 *5 (-171)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-766)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1208 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1092)) (-5 *2 (-112))
+ (-5 *1 (-1208 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *1 *1) (-4 *1 (-1136))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-916)) (-5 *1 (-1093 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
-(((*1 *1 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-921))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-921))))
- ((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-922))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-922)))))
-(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-378)) (-5 *1 (-1035)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1247 *4))
- (-4 *4 (-38 (-406 (-562)))) (-5 *2 (-1 (-1148 *4) (-1148 *4)))
- (-5 *1 (-1249 *4 *5)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-243 *2)) (-4 *2 (-1207))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207))))
+ (-12 (-4 *3 (-348)) (-4 *4 (-328 *3)) (-4 *5 (-1232 *4))
+ (-5 *1 (-772 *3 *4 *5 *2 *6)) (-4 *2 (-1232 *5)) (-14 *6 (-916))))
((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
+ (-12 (-5 *2 (-766)) (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-4 *3 (-367))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-362)) (-4 *2 (-367)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-900 *3)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
+ (-5 *2
+ (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
+ (|:| |success| (-112))))
+ (-5 *1 (-784)) (-5 *5 (-562)))))
(((*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-639 *1)) (-4 *1 (-301))))
((*1 *1 *2 *1) (-12 (-4 *1 (-301)) (-5 *2 (-114))))
((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-608 *3)) (-4 *3 (-845))))
((*1 *1 *2 *3 *4)
(-12 (-5 *2 (-114)) (-5 *3 (-639 *5)) (-5 *4 (-766)) (-4 *5 (-845))
(-5 *1 (-608 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-356 *3)) (-4 *3 (-348)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1208 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-112)))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
@@ -2135,39 +2082,21 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857))))
+ ((*1 *1 *1) (-5 *1 (-857))))
(((*1 *1 *1) (-4 *1 (-544))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-315 *3)) (-4 *3 (-13 (-1044) (-845)))
+ (-5 *1 (-222 *3 *4)) (-14 *4 (-639 (-1168))))))
+(((*1 *1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-262)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
- (-5 *2 (-639 (-947 *4)))))
- ((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-639 (-947 *4))) (-5 *1 (-415 *3 *4))
- (-4 *3 (-416 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-639 (-947 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-639 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1256 (-452 *4 *5 *6 *7))) (-5 *2 (-639 (-947 *4)))
- (-5 *1 (-452 *4 *5 *6 *7)) (-4 *4 (-554)) (-4 *4 (-171))
- (-14 *5 (-916)) (-14 *6 (-639 (-1168))) (-14 *7 (-1256 (-683 *4))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-845)) (-4 *5 (-904)) (-4 *6 (-788))
- (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-417 (-1164 *8)))
- (-5 *1 (-901 *5 *6 *7 *8)) (-5 *4 (-1164 *8))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-904)) (-4 *5 (-1232 *4)) (-5 *2 (-417 (-1164 *5)))
- (-5 *1 (-902 *4 *5)) (-5 *3 (-1164 *5)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-329)))))
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-766))
+ (-5 *1 (-448 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-562))) (-5 *1 (-1042)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-528)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-4 *1 (-107 *3)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997)))))
@@ -2184,46 +2113,52 @@
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3))))
((*1 *1 *1) (-4 *1 (-1195))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4))))
- (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
-(((*1 *1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-3 (-406 (-947 *5)) (-1157 (-1168) (-947 *5))))
- (-4 *5 (-451)) (-5 *2 (-639 (-683 (-406 (-947 *5)))))
- (-5 *1 (-291 *5)) (-5 *4 (-683 (-406 (-947 *5)))))))
-(((*1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))
- (-5 *2 (-639 (-406 (-562)))) (-5 *1 (-1015 *4))
- (-4 *4 (-1232 (-562))))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-224)) (-5 *4 (-562))
- (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))
- (-5 *2 (-1030)) (-5 *1 (-743)))))
-(((*1 *2)
- (-12 (-4 *4 (-362)) (-5 *2 (-916)) (-5 *1 (-327 *3 *4))
- (-4 *3 (-328 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-362)) (-5 *2 (-828 (-916))) (-5 *1 (-327 *3 *4))
- (-4 *3 (-328 *4))))
- ((*1 *2) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-916))))
+ (-12 (-5 *3 (-639 (-683 *5))) (-5 *4 (-562)) (-4 *5 (-362))
+ (-4 *5 (-1044)) (-5 *2 (-112)) (-5 *1 (-1024 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-683 *4))) (-4 *4 (-362)) (-4 *4 (-1044))
+ (-5 *2 (-112)) (-5 *1 (-1024 *4)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168)))
+ (-14 *4 (-639 (-1168))) (-4 *5 (-386))))
((*1 *2)
- (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-828 (-916))))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-146)) (-4 *2 (-306)) (-4 *2 (-451)) (-4 *3 (-845))
- (-4 *4 (-788)) (-5 *1 (-982 *2 *3 *4 *5)) (-4 *5 (-944 *2 *4 *3))))
- ((*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-315 (-562))) (-5 *1 (-1111))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168)))
+ (-14 *4 (-639 (-1168))) (-4 *5 (-386)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-639 *1)) (-5 *3 (-639 *7)) (-4 *1 (-1064 *4 *5 *6 *7))
+ (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1))
+ (-4 *1 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1))
+ (-4 *1 (-1064 *4 *5 *6 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 (-639 *8))) (-5 *3 (-639 *8))
+ (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788))
+ (-4 *7 (-845)) (-5 *2 (-112)) (-5 *1 (-972 *5 *6 *7 *8)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-971 *4 *5 *6 *3)) (-4 *4 (-1044)) (-4 *5 (-788))
+ (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-4 *4 (-554))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
+(((*1 *1) (-5 *1 (-557))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *4)) (-4 *4 (-1092)) (-5 *2 (-1261))
+ (-5 *1 (-1208 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 *4)) (-4 *4 (-1092)) (-5 *2 (-1261))
+ (-5 *1 (-1208 *4)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997)))))
@@ -2240,29 +2175,35 @@
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3))))
((*1 *1 *1) (-4 *1 (-1195))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-562)) (-5 *1 (-690 *2)) (-4 *2 (-1232 *3)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-608 *4)) (-4 *4 (-845)) (-4 *2 (-845))
- (-5 *1 (-607 *2 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-1256 (-562))) (-5 *3 (-562)) (-5 *1 (-1102))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-1256 (-562))) (-5 *3 (-639 (-562))) (-5 *4 (-562))
- (-5 *1 (-1102)))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1))
+ (-4 *1 (-1058 *3 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-814 *3)) (-4 *3 (-845)) (-5 *1 (-666 *3)))))
+(((*1 *1) (-5 *1 (-140))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-362) (-843)))
+ (-5 *2 (-639 (-2 (|:| -2656 (-639 *3)) (|:| -3964 *5))))
+ (-5 *1 (-180 *5 *3)) (-4 *3 (-1232 (-168 *5)))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-362) (-843)))
+ (-5 *2 (-639 (-2 (|:| -2656 (-639 *3)) (|:| -3964 *4))))
+ (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *2) (-12 (-5 *2 (-828 (-562))) (-5 *1 (-533))))
((*1 *1) (-12 (-5 *1 (-828 *2)) (-4 *2 (-1092)))))
-(((*1 *1 *2 *2) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-869)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))))
+(((*1 *1 *1) (-12 (-5 *1 (-173 *2)) (-4 *2 (-306)))))
+(((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-639 (-1022 *5 *6 *7 *8))) (-5 *1 (-1022 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-639 (-1138 *5 *6 *7 *8))) (-5 *1 (-1138 *5 *6 *7 *8)))))
(((*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-329)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
@@ -2280,35 +2221,32 @@
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3))))
((*1 *1 *1) (-4 *1 (-1195))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-1124 *4 *2))
- (-4 *2 (-13 (-600 (-562) *4) (-10 -7 (-6 -4402) (-6 -4403))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-845)) (-4 *3 (-1207)) (-5 *1 (-1124 *3 *2))
- (-4 *2 (-13 (-600 (-562) *3) (-10 -7 (-6 -4402) (-6 -4403)))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *3)
- (-12 (-14 *4 (-639 (-1168))) (-14 *5 (-766))
- (-5 *2
- (-639
- (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4)
- (-246 *4 (-406 (-562))))))
- (-5 *1 (-504 *4 *5))
- (-5 *3
- (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4)
- (-246 *4 (-406 (-562))))))))
-(((*1 *1 *1) (-4 *1 (-1053))))
-(((*1 *2 *1 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-306))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3148 *1)))
- (-4 *1 (-306)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1188)))))
+(((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
+(((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12
+ (-5 *3
+ (-1 (-3 (-2 (|:| -2929 *4) (|:| |coeff| *4)) "failed") *4))
+ (-4 *4 (-362)) (-5 *1 (-572 *4 *2)) (-4 *2 (-1232 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-1207)) (-4 *2 (-845))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-372 *3)) (-4 *3 (-1207))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-845))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)) (-4 *3 (-1044))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-639 (-1156 *3 *4))) (-5 *1 (-1156 *3 *4))
+ (-14 *3 (-916)) (-4 *4 (-1044))))
+ ((*1 *1 *1 *1)
+ (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))))
+(((*1 *2 *1) (-12 (-4 *1 (-554)) (-5 *2 (-112)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1092) (-34)))
+ (-4 *3 (-13 (-1092) (-34))))))
(((*1 *2)
(-12 (-4 *2 (-13 (-429 *3) (-997))) (-5 *1 (-275 *3 *2))
(-4 *3 (-13 (-845) (-554)))))
@@ -2316,12 +2254,9 @@
(-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168)))
(-14 *3 (-639 (-1168))) (-4 *4 (-386))))
((*1 *1) (-5 *1 (-476))) ((*1 *1) (-4 *1 (-1192))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *5 (-766)) (-4 *6 (-1092)) (-4 *7 (-895 *6))
- (-5 *2 (-683 *7)) (-5 *1 (-686 *6 *7 *3 *4)) (-4 *3 (-372 *7))
- (-4 *4 (-13 (-372 *6) (-10 -7 (-6 -4402)))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1216 *3)))))
+ (-12 (-5 *2 (-639 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
+ (-5 *1 (-583 *3)) (-4 *3 (-362)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997)))))
@@ -2341,65 +2276,48 @@
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3))))
((*1 *1 *1) (-4 *1 (-1195))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-987 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-141 *4 *5 *3))
- (-4 *3 (-372 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-987 *4))
- (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
- (-5 *1 (-502 *4 *5 *6 *3)) (-4 *6 (-372 *4)) (-4 *3 (-372 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-683 *5)) (-4 *5 (-987 *4)) (-4 *4 (-554))
- (-5 *2 (-2 (|:| |num| (-683 *4)) (|:| |den| *4)))
- (-5 *1 (-687 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562)))))
- (-4 *6 (-1232 *5))
- (-5 *2 (-2 (|:| -3342 *7) (|:| |rh| (-639 (-406 *6)))))
- (-5 *1 (-802 *5 *6 *7 *3)) (-5 *4 (-639 (-406 *6)))
- (-4 *7 (-650 *6)) (-4 *3 (-650 (-406 *6)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-987 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1225 *4 *5 *3))
- (-4 *3 (-1232 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-639 *5) *6))
- (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5))
- (-5 *2 (-639 (-2 (|:| -1497 *5) (|:| -3342 *3))))
- (-5 *1 (-804 *5 *6 *3 *7)) (-4 *3 (-650 *6))
- (-4 *7 (-650 (-406 *6))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-824)) (-5 *3 (-1150)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)))))
-(((*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-556 *3)) (-4 *3 (-544)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-5 *2 (-112))))
- ((*1 *2 *3 *1 *4)
- (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1200 *5 *6 *7 *3))
- (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-112)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-406 (-1164 (-315 *3)))) (-4 *3 (-13 (-554) (-845)))
- (-5 *1 (-1122 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *2 (-562))))
+ (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *2 (-112))))
((*1 *2 *1)
(-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
- (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))))
+ (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1118 *4 *3 *5))) (-4 *4 (-38 (-406 (-562))))
+ (-4 *4 (-1044)) (-4 *3 (-845)) (-5 *1 (-1118 *4 *3 *5))
+ (-4 *5 (-944 *4 (-530 *3) *3))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1201 *4))) (-5 *3 (-1168)) (-5 *1 (-1201 *4))
+ (-4 *4 (-38 (-406 (-562)))) (-4 *4 (-1044)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-683 *5)) (-4 *5 (-1044)) (-5 *1 (-1048 *3 *4 *5))
+ (-14 *3 (-766)) (-14 *4 (-766)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-168 (-224))) (-5 *4 (-562)) (-5 *2 (-1030))
+ (-5 *1 (-753)))))
+(((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-3 *3 (-639 *1)))
+ (-4 *1 (-1064 *4 *5 *6 *3)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-417 *3)) (-4 *3 (-554)) (-5 *1 (-418 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-5 *2 (-766)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2)
+ (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261))
+ (-5 *1 (-983 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261))
+ (-5 *1 (-1099 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *4 (-608 *3)) (-5 *5 (-1 (-1164 *3) (-1164 *3)))
+ (-4 *3 (-13 (-27) (-429 *6))) (-4 *6 (-13 (-845) (-554)))
+ (-5 *2 (-583 *3)) (-5 *1 (-549 *6 *3)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997)))))
@@ -2420,47 +2338,23 @@
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3))))
((*1 *1 *1) (-4 *1 (-1195))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-639 *7)) (-5 *3 (-112)) (-4 *7 (-1058 *4 *5 *6))
- (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
(-5 *1 (-972 *4 *5 *6 *7)))))
+(((*1 *1 *1 *1) (-5 *1 (-857))))
(((*1 *2 *1) (-12 (-5 *2 (-1206)) (-5 *1 (-179))))
((*1 *2 *1) (-12 (-5 *2 (-1206)) (-5 *1 (-675))))
((*1 *2 *1) (-12 (-5 *2 (-1206)) (-5 *1 (-965))))
((*1 *2 *1) (-12 (-5 *2 (-1206)) (-5 *1 (-1066))))
((*1 *2 *1) (-12 (-5 *2 (-1173)) (-5 *1 (-1110)))))
-(((*1 *1 *1) (-4 *1 (-625)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997) (-1192))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168))
- (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *2 (-583 *3)) (-5 *1 (-425 *5 *3))
- (-4 *3 (-13 (-1192) (-29 *5))))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-869))
- (-5 *5 (-916)) (-5 *6 (-639 (-262))) (-5 *2 (-1257))
- (-5 *1 (-1260))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-639 (-262)))
- (-5 *2 (-1257)) (-5 *1 (-1260)))))
-(((*1 *1 *1) (-5 *1 (-1056))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788))
- (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-639 (-639 (-562)))) (-5 *1 (-966))
- (-5 *3 (-639 (-562))))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562)))))
- (-4 *4 (-1232 (-406 *2))) (-5 *2 (-562)) (-5 *1 (-908 *4 *5))
- (-4 *5 (-1232 (-406 *4))))))
+ (-12 (-5 *3 (-639 (-480 *4 *5))) (-14 *4 (-639 (-1168)))
+ (-4 *5 (-451)) (-5 *2 (-639 (-246 *4 *5))) (-5 *1 (-627 *4 *5)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-494)))))
+(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-966)))))
(((*1 *2 *1) (-12 (-5 *2 (-1117 (-562) (-608 (-48)))) (-5 *1 (-48))))
((*1 *2 *1)
(-12 (-4 *3 (-987 *2)) (-4 *4 (-1232 *3)) (-4 *2 (-306))
@@ -2476,9 +2370,19 @@
(-12 (-4 *4 (-171)) (-4 *2 (|SubsetCategory| (-721) *4))
(-5 *1 (-656 *3 *4 *2)) (-4 *3 (-712 *4))))
((*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-168 (-224))))
+ (-5 *2 (-1030)) (-5 *1 (-749)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-451)) (-4 *3 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
- (-5 *1 (-448 *4 *3 *5 *6)) (-4 *6 (-944 *4 *3 *5)))))
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
+(((*1 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-367)) (-4 *2 (-1092)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-109))) (-5 *1 (-174)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997)))))
@@ -2499,66 +2403,49 @@
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3))))
((*1 *1 *1) (-4 *1 (-1195))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-815)) (-14 *5 (-1168))
- (-5 *2 (-639 *4)) (-5 *1 (-1106 *4 *5)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))
- (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-551)))))
+(((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-639
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
+ (|:| |xpnt| (-562)))))
+ (-5 *1 (-417 *3)) (-4 *3 (-554))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-766)) (-4 *3 (-348)) (-4 *5 (-1232 *3))
+ (-5 *2 (-639 (-1164 *3))) (-5 *1 (-497 *3 *5 *6))
+ (-4 *6 (-1232 *5)))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-406 *4)) (-4 *4 (-1232 *3))
- (-4 *3 (-13 (-362) (-146) (-1033 (-562)))) (-5 *1 (-566 *3 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-693)) (-5 *1 (-304)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168))
- (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *5))))
- (-5 *1 (-1121 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-13 (-306) (-845) (-146)))
- (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1121 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-293 (-406 (-947 *5)))) (-5 *4 (-1168))
- (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *5))))
- (-5 *1 (-1121 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-293 (-406 (-947 *4))))
- (-4 *4 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *4))))
- (-5 *1 (-1121 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168)))
- (-4 *5 (-13 (-306) (-845) (-146)))
- (-5 *2 (-639 (-639 (-293 (-315 *5))))) (-5 *1 (-1121 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-406 (-947 *4))))
- (-4 *4 (-13 (-306) (-845) (-146)))
- (-5 *2 (-639 (-639 (-293 (-315 *4))))) (-5 *1 (-1121 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-293 (-406 (-947 *5))))) (-5 *4 (-639 (-1168)))
- (-4 *5 (-13 (-306) (-845) (-146)))
- (-5 *2 (-639 (-639 (-293 (-315 *5))))) (-5 *1 (-1121 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-293 (-406 (-947 *4)))))
- (-4 *4 (-13 (-306) (-845) (-146)))
- (-5 *2 (-639 (-639 (-293 (-315 *4))))) (-5 *1 (-1121 *4)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-279))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-3 (-562) (-224) (-1168) (-1150) (-1173)))
- (-5 *1 (-1173)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-1256 *5))) (-5 *4 (-562)) (-5 *2 (-1256 *5))
- (-5 *1 (-1024 *5)) (-4 *5 (-362)) (-4 *5 (-367)) (-4 *5 (-1044)))))
+ (-12 (-5 *2 (-639 *3)) (-4 *3 (-1232 (-562))) (-5 *1 (-485 *3)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-938 (-224))) (-5 *2 (-1261)) (-5 *1 (-467)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |lm| (-385 *3)) (|:| |mm| (-385 *3)) (|:| |rm| (-385 *3))))
+ (-5 *1 (-385 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |lm| (-814 *3)) (|:| |mm| (-814 *3)) (|:| |rm| (-814 *3))))
+ (-5 *1 (-814 *3)) (-4 *3 (-845)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-608 *1)) (-4 *1 (-301)))))
+(((*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-5 *1 (-1181 *2)) (-4 *2 (-362)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-857))))
+ ((*1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-766)) (-4 *4 (-554)) (-5 *1 (-964 *4 *2))
+ (-4 *2 (-1232 *4)))))
(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-4 *1 (-150 *3))))
((*1 *1 *2)
(-12
- (-5 *2 (-639 (-2 (|:| -1960 (-766)) (|:| -2328 *4) (|:| |num| *4))))
+ (-5 *2 (-639 (-2 (|:| -1300 (-766)) (|:| -2328 *4) (|:| |num| *4))))
(-4 *4 (-1232 *3)) (-4 *3 (-13 (-362) (-146))) (-5 *1 (-398 *3 *4))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-12 (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-5 *3 (-639 (-947 (-562)))) (-5 *4 (-112)) (-5 *1 (-436))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-12 (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-5 *3 (-639 (-1168))) (-5 *4 (-112)) (-5 *1 (-436))))
((*1 *2 *1)
(-12 (-5 *2 (-1148 *3)) (-5 *1 (-597 *3)) (-4 *3 (-1207))))
@@ -2578,24 +2465,24 @@
((*1 *1 *2 *3)
(-12 (-5 *1 (-708 *2 *3 *4)) (-4 *2 (-845)) (-4 *3 (-1092))
(-14 *4
- (-1 (-112) (-2 (|:| -2466 *2) (|:| -1960 *3))
- (-2 (|:| -2466 *2) (|:| -1960 *3))))))
+ (-1 (-112) (-2 (|:| -2464 *2) (|:| -1300 *3))
+ (-2 (|:| -2464 *2) (|:| -1300 *3))))))
((*1 *1 *2 *3) (-12 (-5 *2 (-505)) (-5 *3 (-1110)) (-5 *1 (-833))))
((*1 *1 *2 *3)
(-12 (-5 *1 (-868 *2 *3)) (-4 *2 (-1207)) (-4 *3 (-1207))))
((*1 *1 *2)
- (-12 (-5 *2 (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 *4))))
+ (-12 (-5 *2 (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 *4))))
(-4 *4 (-1092)) (-5 *1 (-884 *3 *4)) (-4 *3 (-1092))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-639 *5)) (-4 *5 (-13 (-1092) (-34)))
(-5 *2 (-639 (-1132 *3 *5))) (-5 *1 (-1132 *3 *5))
(-4 *3 (-13 (-1092) (-34)))))
((*1 *2 *3)
- (-12 (-5 *3 (-639 (-2 (|:| |val| *4) (|:| -1495 *5))))
+ (-12 (-5 *3 (-639 (-2 (|:| |val| *4) (|:| -1501 *5))))
(-4 *4 (-13 (-1092) (-34))) (-4 *5 (-13 (-1092) (-34)))
(-5 *2 (-639 (-1132 *4 *5))) (-5 *1 (-1132 *4 *5))))
((*1 *1 *2)
- (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -1495 *4)))
+ (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -1501 *4)))
(-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34)))
(-5 *1 (-1132 *3 *4))))
((*1 *1 *2 *3)
@@ -2634,98 +2521,107 @@
(-12 (-4 *3 (-171)) (-4 *2 (-712 *3)) (-5 *1 (-656 *2 *3 *4))
(-4 *4 (|SubsetCategory| (-721) *3))))
((*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))))
-(((*1 *2)
- (-12 (-4 *3 (-1044)) (-5 *2 (-953 (-707 *3 *4))) (-5 *1 (-707 *3 *4))
- (-4 *4 (-1232 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-315 (-224))) (-5 *2 (-315 (-406 (-562))))
- (-5 *1 (-304)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1150)) (-5 *3 (-562)) (-5 *1 (-240)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-433))
+(((*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-112)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-639 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554))
+ (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-972 *5 *6 *7 *8)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1164 *9)) (-5 *4 (-639 *7)) (-5 *5 (-639 (-639 *8)))
+ (-4 *7 (-845)) (-4 *8 (-306)) (-4 *9 (-944 *8 *6 *7)) (-4 *6 (-788))
(-5 *2
- (-639
- (-3 (|:| -3254 (-1168))
- (|:| -2177 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562)))))))))
- (-5 *1 (-1172)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
- (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-817)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-766)) (-5 *1 (-669 *3)) (-4 *3 (-1044))
- (-4 *3 (-1092)))))
+ (-2 (|:| |upol| (-1164 *8)) (|:| |Lval| (-639 *8))
+ (|:| |Lfact|
+ (-639 (-2 (|:| -1635 (-1164 *8)) (|:| -1300 (-562)))))
+ (|:| |ctpol| *8)))
+ (-5 *1 (-737 *6 *7 *8 *9)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857))))
+ ((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *2 (-1232 *4)) (-5 *1 (-802 *4 *2 *3 *5))
+ (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2))
+ (-4 *5 (-650 (-406 *2)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *2 (-1232 *4)) (-5 *1 (-802 *4 *2 *5 *3))
+ (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-650 *2))
+ (-4 *3 (-650 (-406 *2))))))
(((*1 *1 *1) (-4 *1 (-625)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2))
(-4 *2 (-13 (-429 *3) (-997) (-1192))))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-4 *3 (-1092))
- (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-947 *6))) (-5 *4 (-639 (-1168)))
+ (-4 *6 (-13 (-554) (-1033 *5))) (-4 *5 (-554))
+ (-5 *2 (-639 (-639 (-293 (-406 (-947 *6)))))) (-5 *1 (-1034 *5 *6)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4))))
+ (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
(((*1 *1 *2)
(-12 (-5 *2 (-1256 *3)) (-4 *3 (-362)) (-14 *6 (-1256 (-683 *3)))
(-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-916)) (-14 *5 (-639 (-1168)))))
((*1 *1 *2) (-12 (-5 *2 (-1117 (-562) (-608 (-48)))) (-5 *1 (-48))))
((*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1207))))
((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-338 (-4066 'JINT 'X 'ELAM) (-4066) (-693))))
+ (-12 (-5 *2 (-1256 (-338 (-4064 'JINT 'X 'ELAM) (-4064) (-693))))
(-5 *1 (-61 *3)) (-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-338 (-4066) (-4066 'XC) (-693))))
+ (-12 (-5 *2 (-1256 (-338 (-4064) (-4064 'XC) (-693))))
(-5 *1 (-63 *3)) (-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-338 (-4066 'X) (-4066) (-693))) (-5 *1 (-64 *3))
+ (-12 (-5 *2 (-338 (-4064 'X) (-4064) (-693))) (-5 *1 (-64 *3))
(-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-338 (-4066) (-4066 'XC) (-693))) (-5 *1 (-66 *3))
+ (-12 (-5 *2 (-338 (-4064) (-4064 'XC) (-693))) (-5 *1 (-66 *3))
(-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-338 (-4066 'X) (-4066 '-3172) (-693))))
+ (-12 (-5 *2 (-1256 (-338 (-4064 'X) (-4064 '-3171) (-693))))
(-5 *1 (-71 *3)) (-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-338 (-4066) (-4066 'X) (-693))))
+ (-12 (-5 *2 (-1256 (-338 (-4064) (-4064 'X) (-693))))
(-5 *1 (-74 *3)) (-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-338 (-4066 'X 'EPS) (-4066 '-3172) (-693))))
+ (-12 (-5 *2 (-1256 (-338 (-4064 'X 'EPS) (-4064 '-3171) (-693))))
(-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1168)) (-14 *4 (-1168))
(-14 *5 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-338 (-4066 'EPS) (-4066 'YA 'YB) (-693))))
+ (-12 (-5 *2 (-1256 (-338 (-4064 'EPS) (-4064 'YA 'YB) (-693))))
(-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1168)) (-14 *4 (-1168))
(-14 *5 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-338 (-4066) (-4066 'X) (-693))) (-5 *1 (-77 *3))
+ (-12 (-5 *2 (-338 (-4064) (-4064 'X) (-693))) (-5 *1 (-77 *3))
(-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-338 (-4066) (-4066 'X) (-693))) (-5 *1 (-78 *3))
+ (-12 (-5 *2 (-338 (-4064) (-4064 'X) (-693))) (-5 *1 (-78 *3))
(-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-338 (-4066) (-4066 'XC) (-693))))
+ (-12 (-5 *2 (-1256 (-338 (-4064) (-4064 'XC) (-693))))
(-5 *1 (-79 *3)) (-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-338 (-4066) (-4066 'X) (-693))))
+ (-12 (-5 *2 (-1256 (-338 (-4064) (-4064 'X) (-693))))
(-5 *1 (-80 *3)) (-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-338 (-4066 'X '-3172) (-4066) (-693))))
+ (-12 (-5 *2 (-1256 (-338 (-4064 'X '-3171) (-4064) (-693))))
(-5 *1 (-82 *3)) (-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-683 (-338 (-4066 'X '-3172) (-4066) (-693))))
+ (-12 (-5 *2 (-683 (-338 (-4064 'X '-3171) (-4064) (-693))))
(-5 *1 (-83 *3)) (-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-683 (-338 (-4066 'X) (-4066) (-693)))) (-5 *1 (-84 *3))
+ (-12 (-5 *2 (-683 (-338 (-4064 'X) (-4064) (-693)))) (-5 *1 (-84 *3))
(-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-338 (-4066 'X) (-4066) (-693))))
+ (-12 (-5 *2 (-1256 (-338 (-4064 'X) (-4064) (-693))))
(-5 *1 (-85 *3)) (-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-1256 (-338 (-4066 'X) (-4066 '-3172) (-693))))
+ (-12 (-5 *2 (-1256 (-338 (-4064 'X) (-4064 '-3171) (-693))))
(-5 *1 (-86 *3)) (-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-683 (-338 (-4066 'XL 'XR 'ELAM) (-4066) (-693))))
+ (-12 (-5 *2 (-683 (-338 (-4064 'XL 'XR 'ELAM) (-4064) (-693))))
(-5 *1 (-87 *3)) (-14 *3 (-1168))))
((*1 *1 *2)
- (-12 (-5 *2 (-338 (-4066 'X) (-4066 '-3172) (-693))) (-5 *1 (-89 *3))
+ (-12 (-5 *2 (-338 (-4064 'X) (-4064 '-3171) (-693))) (-5 *1 (-89 *3))
(-14 *3 (-1168))))
((*1 *1 *2)
(-12 (-5 *2 (-639 (-135 *3 *4 *5))) (-5 *1 (-135 *3 *4 *5))
@@ -2796,65 +2692,65 @@
((*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-4 *1 (-395))))
((*1 *1 *2)
(-12 (-5 *2 (-293 (-315 (-168 (-378))))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-293 (-315 (-378)))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-293 (-315 (-562)))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-315 (-168 (-378)))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-315 (-378))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-315 (-562))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-293 (-315 (-688)))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-293 (-315 (-693)))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-293 (-315 (-695)))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-315 (-688))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-315 (-693))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-315 (-695))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12
(-5 *2 (-2 (|:| |localSymbols| (-1172)) (|:| -3473 (-639 (-329)))))
(-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168))
- (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-639 (-329))) (-5 *1 (-397 *3 *4 *5 *6))
- (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *3 (-1168)) (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-329)) (-5 *1 (-397 *3 *4 *5 *6)) (-14 *3 (-1168))
- (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
+ (-14 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
(-14 *5 (-639 (-1168))) (-14 *6 (-1172))))
((*1 *1 *2)
(-12 (-5 *2 (-330 *4)) (-4 *4 (-13 (-845) (-21)))
@@ -2957,7 +2853,7 @@
(-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
(-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
((*1 *1 *2)
- (-12 (-5 *2 (-639 (-2 (|:| -4221 *3) (|:| -3045 *4))))
+ (-12 (-5 *2 (-639 (-2 (|:| -4221 *3) (|:| -3044 *4))))
(-4 *3 (-1044)) (-4 *4 (-721)) (-5 *1 (-730 *3 *4))))
((*1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-758))))
((*1 *1 *2)
@@ -2966,25 +2862,25 @@
(-3
(|:| |nia|
(-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
(|:| |relerr| (-224))))
(|:| |mdnia|
(-2 (|:| |fn| (-315 (-224)))
- (|:| -1590 (-639 (-1086 (-838 (-224)))))
+ (|:| -2147 (-639 (-1086 (-838 (-224)))))
(|:| |abserr| (-224)) (|:| |relerr| (-224))))))
(-5 *1 (-764))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |fn| (-315 (-224)))
- (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224))
+ (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224))
(|:| |relerr| (-224))))
(-5 *1 (-764))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
(|:| |relerr| (-224))))
(-5 *1 (-764))))
((*1 *2 *3) (-12 (-5 *2 (-769)) (-5 *1 (-768 *3)) (-4 *3 (-1207))))
@@ -3002,23 +2898,23 @@
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224)))
+ (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224)))
(|:| |lb| (-639 (-838 (-224))))
(|:| |cf| (-639 (-315 (-224))))
(|:| |ub| (-639 (-838 (-224))))))
(|:| |lsa|
(-2 (|:| |lfn| (-639 (-315 (-224))))
- (|:| -3729 (-639 (-224)))))))
+ (|:| -3730 (-639 (-224)))))))
(-5 *1 (-836))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))
+ (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))
(-5 *1 (-836))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224)))
+ (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224)))
(|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224))))
(|:| |ub| (-639 (-838 (-224))))))
(-5 *1 (-836))))
@@ -3121,23 +3017,24 @@
((*1 *1 *2)
(-12 (-5 *2 (-658 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171))
(-5 *1 (-1276 *3 *4)))))
-(((*1 *2 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1030))
- (-5 *1 (-741)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *2 (-639 *1)) (-4 *1 (-1058 *3 *4 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-562))) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562))
- (-14 *4 (-766)) (-4 *5 (-171)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-490)) (-5 *4 (-949)) (-5 *2 (-685 (-532)))
+ (-5 *1 (-532))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-949)) (-4 *3 (-1092)) (-5 *2 (-685 *1))
+ (-4 *1 (-762 *3)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *6 (-916)) (-4 *5 (-306)) (-4 *3 (-1232 *5))
+ (-5 *2 (-2 (|:| |plist| (-639 *3)) (|:| |modulo| *5)))
+ (-5 *1 (-459 *5 *3)) (-5 *4 (-639 *3)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378)))
+ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378)))
(|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167))))
(-5 *1 (-1167)))))
-(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-97)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-315 (-224)))) (-5 *2 (-112)) (-5 *1 (-266)))))
(((*1 *2 *3)
(|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1207))))
((*1 *1 *2)
@@ -3215,24 +3112,24 @@
((*1 *1 *2)
(|partial| -4037
(-12 (-5 *2 (-947 *3))
- (-12 (-2236 (-4 *3 (-38 (-406 (-562)))))
- (-2236 (-4 *3 (-38 (-562)))) (-4 *5 (-610 (-1168))))
+ (-12 (-2234 (-4 *3 (-38 (-406 (-562)))))
+ (-2234 (-4 *3 (-38 (-562)))) (-4 *5 (-610 (-1168))))
(-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788))
(-4 *5 (-845)))
(-12 (-5 *2 (-947 *3))
- (-12 (-2236 (-4 *3 (-544))) (-2236 (-4 *3 (-38 (-406 (-562)))))
+ (-12 (-2234 (-4 *3 (-544))) (-2234 (-4 *3 (-38 (-406 (-562)))))
(-4 *3 (-38 (-562))) (-4 *5 (-610 (-1168))))
(-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788))
(-4 *5 (-845)))
(-12 (-5 *2 (-947 *3))
- (-12 (-2236 (-4 *3 (-987 (-562)))) (-4 *3 (-38 (-406 (-562))))
+ (-12 (-2234 (-4 *3 (-987 (-562)))) (-4 *3 (-38 (-406 (-562))))
(-4 *5 (-610 (-1168))))
(-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788))
(-4 *5 (-845)))))
((*1 *1 *2)
(|partial| -4037
(-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5))
- (-12 (-2236 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562)))
+ (-12 (-2234 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562)))
(-4 *5 (-610 (-1168))))
(-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)))
(-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5))
@@ -3242,50 +3139,9 @@
(|partial| -12 (-5 *2 (-947 (-406 (-562)))) (-4 *1 (-1058 *3 *4 *5))
(-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168)))
(-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)))))
-(((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-406 *6)) (|:| |c| (-406 *6))
- (|:| -3355 *6)))
- (-5 *1 (-1010 *5 *6)) (-5 *3 (-406 *6)))))
-(((*1 *1) (-5 *1 (-818))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-1 *6 *5)) (-5 *1 (-701 *4 *5 *6))
- (-4 *4 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-315 *3)) (-4 *3 (-13 (-1044) (-845)))
- (-5 *1 (-222 *3 *4)) (-14 *4 (-639 (-1168))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-814 *3)) (-4 *3 (-845)) (-5 *1 (-666 *3)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
- ((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-168 (-224))) (-5 *4 (-562)) (-5 *2 (-1030))
- (-5 *1 (-753)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-480 *4 *5))) (-14 *4 (-639 (-1168)))
- (-4 *5 (-451)) (-5 *2 (-639 (-246 *4 *5))) (-5 *1 (-627 *4 *5)))))
-(((*1 *1 *2 *2)
- (-12
- (-5 *2
- (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378)))
- (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167))))
- (-5 *1 (-1167)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-602)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-551)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1164 *9)) (-5 *4 (-639 *7)) (-5 *5 (-639 (-639 *8)))
- (-4 *7 (-845)) (-4 *8 (-306)) (-4 *9 (-944 *8 *6 *7)) (-4 *6 (-788))
- (-5 *2
- (-2 (|:| |upol| (-1164 *8)) (|:| |Lval| (-639 *8))
- (|:| |Lfact|
- (-639 (-2 (|:| -1635 (-1164 *8)) (|:| -1960 (-562)))))
- (|:| |ctpol| *8)))
- (-5 *1 (-737 *6 *7 *8 *9)))))
+ (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-585 *4))
+ (-4 *4 (-348)))))
(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
(-12 (-5 *2 (-562))
(-5 *3
@@ -3293,15 +3149,59 @@
(|:| |polj| *4)))
(-4 *6 (-788)) (-4 *4 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *7 (-845))
(-5 *1 (-448 *5 *6 *7 *4)))))
+(((*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-1044)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (-5 *2
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular| "There are singularities at both end points")
+ (|:| |notEvaluated| "End point continuity not yet evaluated")))
+ (-5 *1 (-191)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-479)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
+ ((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)) (-4 *2 (-362))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-362)) (-5 *1 (-653 *4 *2))
+ (-4 *2 (-650 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-602)))))
+(((*1 *1 *2 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378)))
+ (|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167))))
+ (-5 *1 (-1167)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1256 *4)) (-5 *3 (-766)) (-4 *4 (-348))
+ (-5 *1 (-527 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-362))
(-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
(-5 *1 (-572 *5 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-666 *3)) (-4 *3 (-845)) (-4 *1 (-373 *3 *4))
- (-4 *4 (-171)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1148 (-406 *3))) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-766)) (-4 *4 (-13 (-554) (-146)))
+ (-5 *1 (-1226 *4 *2)) (-4 *2 (-1232 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-156))))
+ ((*1 *2 *1) (-12 (-5 *2 (-156)) (-5 *1 (-869))))
+ ((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
+(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-766)) (-4 *1 (-230 *4))
(-4 *4 (-1044))))
@@ -3357,205 +3257,202 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1248 *3 *4 *5))
(-4 *3 (-1044)) (-14 *5 *3))))
-(((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348))
+ (-5 *2 (-1256 (-639 (-2 (|:| -2533 *4) (|:| -2464 (-1112))))))
+ (-5 *1 (-345 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2))
+ (-4 *2 (-429 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1084 *2)) (-4 *2 (-429 *4)) (-4 *4 (-13 (-845) (-554)))
+ (-5 *1 (-157 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1084 *1)) (-4 *1 (-159))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-159)) (-5 *2 (-1168)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1104)) (-4 *3 (-845)) (-5 *2 (-639 *1))
+ (-4 *1 (-429 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3))
+ (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *2 (-639 *1)) (-4 *1 (-944 *3 *4 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-639 (-857))) (-5 *2 (-1261)) (-5 *1 (-1130)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-4 *2 (-1092))
- (-5 *1 (-884 *4 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168))
- (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562))))
- (-5 *2 (-2 (|:| -3670 *3) (|:| |nconst| *3))) (-5 *1 (-565 *5 *3))
- (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
+ (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044))
+ (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-639 *3))
+ (-5 *1 (-945 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-362)
+ (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $))
+ (-15 -4079 (*7 $))))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-516)))))
(((*1 *1 *1) (-5 *1 (-1167)))
((*1 *1 *2)
(-12
(-5 *2
- (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378)))
+ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378)))
(|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167))))
(-5 *1 (-1167)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1150)) (-5 *2 (-213 (-501))) (-5 *1 (-832)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-156)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
(((*1 *1 *1) (-4 *1 (-625)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2))
(-4 *2 (-13 (-429 *3) (-997) (-1192))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-639 (-938 *3))) (-4 *3 (-1044)) (-4 *1 (-1126 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-639 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-938 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-766)) (-4 *2 (-554)) (-5 *1 (-964 *2 *4))
+ (-4 *4 (-1232 *2)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-959 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))))
(((*1 *2 *1) (-12 (-5 *2 (-639 (-1206))) (-5 *1 (-675))))
((*1 *2 *1) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-1110)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1044))
- (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283)))
- (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-362)) (-4 *1 (-328 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1232 *4)) (-4 *4 (-1211))
- (-4 *1 (-341 *4 *3 *5)) (-4 *5 (-1232 (-406 *3)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1256 *4)) (-5 *3 (-1256 *1)) (-4 *4 (-171))
- (-4 *1 (-366 *4))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1256 *4)) (-5 *3 (-1256 *1)) (-4 *4 (-171))
- (-4 *1 (-369 *4 *5)) (-4 *5 (-1232 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1256 *3)) (-4 *3 (-171)) (-4 *1 (-408 *3 *4))
- (-4 *4 (-1232 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-171)) (-4 *1 (-416 *3)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-3
- (|:| |noa|
- (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224)))
- (|:| |lb| (-639 (-838 (-224))))
- (|:| |cf| (-639 (-315 (-224))))
- (|:| |ub| (-639 (-838 (-224))))))
- (|:| |lsa|
- (-2 (|:| |lfn| (-639 (-315 (-224))))
- (|:| -3729 (-639 (-224)))))))
- (-5 *2 (-639 (-1150))) (-5 *1 (-266)))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-451)) (-4 *4 (-845))
- (-5 *1 (-571 *4 *2)) (-4 *2 (-283)) (-4 *2 (-429 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-544))))
- ((*1 *1 *1) (-4 *1 (-1053))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261))
- (-5 *1 (-1065 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261))
- (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))))
-(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466))))
- ((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466))))
- ((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-348)) (-5 *2 (-112)) (-5 *1 (-215 *4 *3))
- (-4 *3 (-1232 *4)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-505)) (-5 *3 (-1110)) (-5 *1 (-1107)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-666 *3)) (-4 *3 (-845)) (-4 *1 (-373 *3 *4))
+ (-4 *4 (-171)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-639 (-900 *3))) (-4 *3 (-1092)) (-5 *1 (-899 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
+ (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-2 (|:| |totdeg| (-766)) (|:| -4201 *4))) (-5 *5 (-766))
+ (-4 *4 (-944 *6 *7 *8)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
+ (-5 *2
+ (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-5 *1 (-448 *6 *7 *8 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224)))
+ (-5 *6 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
+ (-5 *2
+ (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
+ (|:| |success| (-112))))
+ (-5 *1 (-784)) (-5 *5 (-562)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-639 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-330 *3)) (-4 *3 (-845)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-884 *4 *3))
+ (-4 *3 (-1092)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-554)) (-4 *3 (-1044))
+ (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-847 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-554)) (-4 *5 (-1044))
+ (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-848 *5 *3))
+ (-4 *3 (-847 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-262))) (-5 *4 (-1168)) (-5 *2 (-112))
- (-5 *1 (-262)))))
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
(((*1 *1 *2)
(-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-1256 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1148 *3)) (-4 *3 (-1092))
- (-4 *3 (-1207)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-562))
- (-5 *1 (-448 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-639 (-315 (-224)))) (-5 *1 (-266)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4402)) (-4 *1 (-234 *3))
- (-4 *3 (-1092))))
- ((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4402)) (-4 *1 (-234 *2)) (-4 *2 (-1092))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)) (-4 *2 (-1092))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-281 *3)) (-4 *3 (-1207))))
- ((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-606 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-562)) (-4 *4 (-1092))
- (-5 *1 (-732 *4))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-5 *1 (-732 *2)) (-4 *2 (-1092))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34)))
- (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1495 *4))))
- (-5 *1 (-771 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *1 *1) (-4 *1 (-625)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997) (-1192))))))
+(((*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-256)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-916)) (-4 *5 (-554)) (-5 *2 (-683 *5))
- (-5 *1 (-951 *5 *3)) (-4 *3 (-650 *5)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-562)) (-5 *1 (-378)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-639 (-608 *2))) (-5 *4 (-639 (-1168)))
- (-4 *2 (-13 (-429 (-168 *5)) (-997) (-1192)))
- (-4 *5 (-13 (-554) (-845))) (-5 *1 (-596 *5 *6 *2))
- (-4 *6 (-13 (-429 *5) (-997) (-1192))))))
+ (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451))
+ (-14 *6 (-639 (-1168)))
+ (-5 *2
+ (-639 (-1138 *5 (-530 (-859 *6)) (-859 *6) (-775 *5 (-859 *6)))))
+ (-5 *1 (-624 *5 *6)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-562))) (-5 *1 (-246 *3 *4))
+ (-14 *3 (-639 (-1168))) (-4 *4 (-1044))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-562))) (-14 *3 (-639 (-1168)))
+ (-5 *1 (-453 *3 *4 *5)) (-4 *4 (-1044))
+ (-4 *5 (-237 (-3492 *3) (-766)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-562))) (-5 *1 (-480 *3 *4))
+ (-14 *3 (-639 (-1168))) (-4 *4 (-1044)))))
+(((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-857))) (-5 *2 (-1261)) (-5 *1 (-1130)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1164 *7)) (-4 *5 (-1044))
- (-4 *7 (-1044)) (-4 *2 (-1232 *5)) (-5 *1 (-500 *5 *2 *6 *7))
- (-4 *6 (-1232 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1044)) (-4 *7 (-1044))
- (-4 *4 (-1232 *5)) (-5 *2 (-1164 *7)) (-5 *1 (-500 *5 *4 *6 *7))
- (-4 *6 (-1232 *4)))))
-(((*1 *1 *1 *1) (-4 *1 (-962))))
+ (-12 (-5 *4 (-1168))
+ (-4 *5 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2 (-583 *3)) (-5 *1 (-555 *5 *3))
+ (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-1164 (-947 *4))) (-5 *1 (-415 *3 *4))
+ (-4 *3 (-416 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-4 *3 (-362))
+ (-5 *2 (-1164 (-947 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-362)) (-5 *1 (-284 *3 *2)) (-4 *2 (-1247 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-547))))))
(((*1 *2 *3)
(-12 (-4 *4 (-845))
(-5 *2
(-2 (|:| |f1| (-639 *4)) (|:| |f2| (-639 (-639 (-639 *4))))
(|:| |f3| (-639 (-639 *4))) (|:| |f4| (-639 (-639 (-639 *4))))))
(-5 *1 (-1178 *4)) (-5 *3 (-639 (-639 (-639 *4)))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-1102)))))
-(((*1 *2 *3) (-12 (-5 *3 (-817)) (-5 *2 (-52)) (-5 *1 (-824)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-639 *3)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-416 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-279))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
- (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1279 *3 *4)) (-4 *3 (-1044))
- (-4 *4 (-841)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-845)) (-5 *4 (-639 *6))
- (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-639 *4))))
- (-5 *1 (-1178 *6)) (-5 *5 (-639 *4)))))
+ (|partial| -12 (-5 *3 (-947 *4)) (-4 *4 (-1044)) (-4 *4 (-610 *2))
+ (-5 *2 (-378)) (-5 *1 (-780 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-947 *5)) (-5 *4 (-916)) (-4 *5 (-1044))
+ (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554))
+ (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-916)) (-4 *5 (-554))
+ (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-315 *4)) (-4 *4 (-554)) (-4 *4 (-845))
+ (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554))
+ (-4 *5 (-845)) (-4 *5 (-610 *2)) (-5 *2 (-378))
+ (-5 *1 (-780 *5)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-904)) (-5 *2 (-417 (-1164 *1))) (-5 *3 (-1164 *1)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-683 (-406 (-947 (-562)))))
- (-5 *2 (-639 (-683 (-315 (-562))))) (-5 *1 (-1026))
- (-5 *3 (-315 (-562))))))
+ (-12 (-5 *3 (-683 (-315 (-224)))) (-5 *2 (-378)) (-5 *1 (-204)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-348)) (-5 *3 (-562)) (-5 *2 (-1180 (-916) (-766))))))
+ (-12 (-5 *3 (-1256 (-1256 *4))) (-4 *4 (-1044)) (-5 *2 (-683 *4))
+ (-5 *1 (-1024 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-416 *4)))))
+(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1042)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-818)) (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1102)))))
(((*1 *2 *3)
(-12 (-5 *2 (-639 (-1150))) (-5 *1 (-240)) (-5 *3 (-1150))))
((*1 *2 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-240))))
((*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-647 (-406 *6))) (-5 *4 (-406 *6)) (-4 *6 (-1232 *5))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4))))
- (-5 *1 (-805 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-647 (-406 *6))) (-4 *6 (-1232 *5))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-5 *2 (-2 (|:| -3928 (-639 (-406 *6))) (|:| -1545 (-683 *5))))
- (-5 *1 (-805 *5 *6)) (-5 *4 (-639 (-406 *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-648 *6 (-406 *6))) (-5 *4 (-406 *6)) (-4 *6 (-1232 *5))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4))))
- (-5 *1 (-805 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-648 *6 (-406 *6))) (-4 *6 (-1232 *5))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-5 *2 (-2 (|:| -3928 (-639 (-406 *6))) (|:| -1545 (-683 *5))))
- (-5 *1 (-805 *5 *6)) (-5 *4 (-639 (-406 *6))))))
(((*1 *2 *1)
(|partial| -12 (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788))
(-5 *2 (-112)) (-5 *1 (-982 *3 *4 *5 *6))
@@ -3563,11 +3460,16 @@
((*1 *2 *1)
(-12 (-5 *2 (-112)) (-5 *1 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34)))
(-4 *4 (-13 (-1092) (-34))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
-(((*1 *1) (-5 *1 (-224))) ((*1 *1) (-5 *1 (-378))))
+(((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-143)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1164 *7))
+ (-4 *5 (-1044)) (-4 *7 (-1044)) (-4 *2 (-1232 *5))
+ (-5 *1 (-500 *5 *2 *6 *7)) (-4 *6 (-1232 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4))
+ (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-114))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-1150)) (-4 *4 (-845)) (-5 *1 (-924 *4 *2))
@@ -3575,72 +3477,51 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-1168)) (-5 *4 (-1150)) (-5 *2 (-315 (-562)))
(-5 *1 (-925)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *3 (-639 (-562)))
- (-5 *1 (-878)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-112)) (-5 *1 (-824)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
- (-5 *2
- (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
- (|:| |success| (-112))))
- (-5 *1 (-784)) (-5 *5 (-562)))))
-(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
- (-12 (-5 *3 (-1150)) (-5 *5 (-683 (-224))) (-5 *6 (-683 (-562)))
- (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-752)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *6)) (-5 *4 (-1168)) (-4 *6 (-429 *5))
- (-4 *5 (-845)) (-5 *2 (-639 (-608 *6))) (-5 *1 (-571 *5 *6)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-766)) (-5 *1 (-114))))
+ ((*1 *2 *1) (-12 (-4 *1 (-830 *3)) (-4 *3 (-1092)) (-5 *2 (-55)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-4 *2 (-1092))
+ (-5 *1 (-884 *4 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-828 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-838 *3)) (-4 *3 (-1092)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4)))
- (-5 *2 (-2 (|:| |num| (-1256 *4)) (|:| |den| *4))))))
-(((*1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1092)) (-4 *3 (-895 *5)) (-5 *2 (-1256 *3))
- (-5 *1 (-686 *5 *3 *6 *4)) (-4 *6 (-372 *3))
- (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4402)))))))
-(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
- (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562))
- (-5 *2 (-1030)) (-5 *1 (-751)))))
-(((*1 *1 *2)
+ (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3))
+ (-4 *3 (-962)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
+(((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787))
+ (-5 *2 (-639 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092))
+ (-5 *2 (-639 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1148 *3)) (-5 *1 (-593 *3)) (-4 *3 (-1044))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 *3)) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044))
+ (-4 *4 (-721))))
+ ((*1 *2 *1) (-12 (-4 *1 (-847 *3)) (-4 *3 (-1044)) (-5 *2 (-639 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1247 *3)) (-4 *3 (-1044)) (-5 *2 (-1148 *3)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4))))
+ (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *2 *2 *2)
(-12
(-5 *2
(-639
- (-2
- (|:| -2320
- (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (|:| -2694
- (-2
- (|:| |endPointContinuity|
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular|
- "There are singularities at both end points")
- (|:| |notEvaluated|
- "End point continuity not yet evaluated")))
- (|:| |singularitiesStream|
- (-3 (|:| |str| (-1148 (-224)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -1590
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite|
- "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite|
- "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated"))))))))
- (-5 *1 (-557)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-855)) (-5 *2 (-685 (-129))) (-5 *3 (-129)))))
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-766)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-788)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451)) (-4 *5 (-845))
+ (-5 *1 (-448 *3 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171))))
+ ((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+ (-12 (-5 *3 (-916)) (-5 *4 (-417 *6)) (-4 *6 (-1232 *5))
+ (-4 *5 (-1044)) (-5 *2 (-639 *6)) (-5 *1 (-443 *5 *6)))))
(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-311)) (-5 *1 (-295))))
((*1 *2 *3)
(-12 (-5 *3 (-639 (-1150))) (-5 *2 (-311)) (-5 *1 (-295))))
@@ -3648,15 +3529,20 @@
((*1 *2 *3 *4)
(-12 (-5 *4 (-639 (-1150))) (-5 *3 (-1150)) (-5 *2 (-311))
(-5 *1 (-295)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-639 (-2 (|:| |val| (-639 *6)) (|:| -1495 *7))))
- (-4 *6 (-1058 *3 *4 *5)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-983 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-639 (-2 (|:| |val| (-639 *6)) (|:| -1495 *7))))
- (-4 *6 (-1058 *3 *4 *5)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-1099 *3 *4 *5 *6 *7)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *1)
+ (|partial| -12
+ (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451)))
+ (-5 *2 (-838 *4)) (-5 *1 (-312 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1192) (-429 *3))) (-14 *5 (-1168))
+ (-14 *6 *4)))
+ ((*1 *2 *1)
+ (|partial| -12
+ (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451)))
+ (-5 *2 (-838 *4)) (-5 *1 (-1242 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1192) (-429 *3))) (-14 *5 (-1168))
+ (-14 *6 *4))))
(((*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1207))))
((*1 *1 *2)
(-12 (-5 *2 (-947 (-378))) (-5 *1 (-338 *3 *4 *5))
@@ -3712,11 +3598,11 @@
(-3
(|:| |nia|
(-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
(|:| |relerr| (-224))))
(|:| |mdnia|
(-2 (|:| |fn| (-315 (-224)))
- (|:| -1590 (-639 (-1086 (-838 (-224)))))
+ (|:| -2147 (-639 (-1086 (-838 (-224)))))
(|:| |abserr| (-224)) (|:| |relerr| (-224))))))
(-5 *1 (-764))))
((*1 *2 *1)
@@ -3732,13 +3618,13 @@
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224)))
+ (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224)))
(|:| |lb| (-639 (-838 (-224))))
(|:| |cf| (-639 (-315 (-224))))
(|:| |ub| (-639 (-838 (-224))))))
(|:| |lsa|
(-2 (|:| |lfn| (-639 (-315 (-224))))
- (|:| -3729 (-639 (-224)))))))
+ (|:| -3730 (-639 (-224)))))))
(-5 *1 (-836))))
((*1 *2 *1)
(-12
@@ -3759,24 +3645,24 @@
((*1 *1 *2)
(-4037
(-12 (-5 *2 (-947 *3))
- (-12 (-2236 (-4 *3 (-38 (-406 (-562)))))
- (-2236 (-4 *3 (-38 (-562)))) (-4 *5 (-610 (-1168))))
+ (-12 (-2234 (-4 *3 (-38 (-406 (-562)))))
+ (-2234 (-4 *3 (-38 (-562)))) (-4 *5 (-610 (-1168))))
(-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788))
(-4 *5 (-845)))
(-12 (-5 *2 (-947 *3))
- (-12 (-2236 (-4 *3 (-544))) (-2236 (-4 *3 (-38 (-406 (-562)))))
+ (-12 (-2234 (-4 *3 (-544))) (-2234 (-4 *3 (-38 (-406 (-562)))))
(-4 *3 (-38 (-562))) (-4 *5 (-610 (-1168))))
(-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788))
(-4 *5 (-845)))
(-12 (-5 *2 (-947 *3))
- (-12 (-2236 (-4 *3 (-987 (-562)))) (-4 *3 (-38 (-406 (-562))))
+ (-12 (-2234 (-4 *3 (-987 (-562)))) (-4 *3 (-38 (-406 (-562))))
(-4 *5 (-610 (-1168))))
(-4 *3 (-1044)) (-4 *1 (-1058 *3 *4 *5)) (-4 *4 (-788))
(-4 *5 (-845)))))
((*1 *1 *2)
(-4037
(-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5))
- (-12 (-2236 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562)))
+ (-12 (-2234 (-4 *3 (-38 (-406 (-562))))) (-4 *3 (-38 (-562)))
(-4 *5 (-610 (-1168))))
(-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)))
(-12 (-5 *2 (-947 (-562))) (-4 *1 (-1058 *3 *4 *5))
@@ -3786,842 +3672,955 @@
(-12 (-5 *2 (-947 (-406 (-562)))) (-4 *1 (-1058 *3 *4 *5))
(-4 *3 (-38 (-406 (-562)))) (-4 *5 (-610 (-1168))) (-4 *3 (-1044))
(-4 *4 (-788)) (-4 *5 (-845)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
- (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
- (-5 *2 (-1030)) (-5 *1 (-747)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-406 (-562)))
- (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-276 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-554)) (-4 *2 (-451)) (-5 *1 (-964 *2 *3))
+ (-4 *3 (-1232 *2)))))
(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-2 (|:| -1635 (-1164 *6)) (|:| -1960 (-562)))))
- (-4 *6 (-306)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-562))
- (-5 *1 (-737 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))))
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (-5 *2 (-639 (-224))) (-5 *1 (-203)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-766))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
+ (-4 *4 (-1044)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-27))
- (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-4 *5 (-1232 *4)) (-5 *2 (-639 (-647 (-406 *5))))
- (-5 *1 (-651 *4 *5)) (-5 *3 (-647 (-406 *5))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1092)) (-4 *4 (-1092))
- (-4 *6 (-1092)) (-5 *2 (-1 *6 *5)) (-5 *1 (-678 *5 *4 *6)))))
+ (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1092) (-1033 *5)))
+ (-4 *5 (-881 *4)) (-4 *4 (-1092)) (-5 *2 (-1 (-112) *5))
+ (-5 *1 (-926 *4 *5 *6)))))
+(((*1 *1 *1 *1) (-5 *1 (-857))))
(((*1 *2)
- (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1239 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1216 *3))
- (-5 *2 (-406 (-562))))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *4 (-224))
+ (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 (-639 *7) *7 (-1164 *7))) (-5 *5 (-1 (-417 *7) *7))
+ (-4 *7 (-1232 *6)) (-4 *6 (-13 (-362) (-146) (-1033 (-406 (-562)))))
+ (-5 *2 (-639 (-2 (|:| |frac| (-406 *7)) (|:| -3339 *3))))
+ (-5 *1 (-804 *6 *7 *3 *8)) (-4 *3 (-650 *7))
+ (-4 *8 (-650 (-406 *7)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
(-5 *2
- (-2 (|:| |brans| (-639 (-639 (-938 *4))))
- (|:| |xValues| (-1086 *4)) (|:| |yValues| (-1086 *4))))
- (-5 *1 (-152)) (-5 *3 (-639 (-639 (-938 *4)))))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
+ (-639 (-2 (|:| |frac| (-406 *6)) (|:| -3339 (-648 *6 (-406 *6))))))
+ (-5 *1 (-807 *5 *6)) (-5 *3 (-648 *6 (-406 *6))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1168))
+ (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562))))
+ (-5 *2 (-2 (|:| -3542 *3) (|:| |nconst| *3))) (-5 *1 (-565 *5 *3))
+ (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
+(((*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
+ ((*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *1 *1) (-4 *1 (-1131))))
(((*1 *1 *2 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1207))))
((*1 *1 *2 *1) (-12 (-5 *1 (-1148 *2)) (-4 *2 (-1207)))))
-(((*1 *1 *1) (-4 *1 (-172)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-363 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *1) (-5 *1 (-290))))
(((*1 *2 *1) (-12 (-4 *1 (-403)) (-5 *2 (-562))))
((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-693)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-1168))
- (-4 *4 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-618 *4 *2)) (-4 *2 (-13 (-1192) (-954) (-29 *4))))))
-(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1223 (-562))))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-877 *2)) (-4 *2 (-1207)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-126 *3)))))
-(((*1 *2)
- (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-416 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451))
- (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *1 (-972 *3 *4 *5 *6)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-13 (-362) (-146)))
- (-5 *2 (-639 (-2 (|:| -1960 (-766)) (|:| -2328 *4) (|:| |num| *4))))
- (-5 *1 (-398 *3 *4)) (-4 *4 (-1232 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-301)) (-5 *2 (-639 (-114))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4))
- (-4 *4 (-348)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 *3)) (-4 *3 (-1064 *5 *6 *7 *8)) (-4 *5 (-451))
- (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7))
- (-5 *2 (-112)) (-5 *1 (-983 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 *3)) (-4 *3 (-1064 *5 *6 *7 *8)) (-4 *5 (-451))
- (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7))
- (-5 *2 (-112)) (-5 *1 (-1099 *5 *6 *7 *8 *3)))))
-(((*1 *2)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 *8)) (-4 *8 (-944 *5 *7 *6))
- (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168))))
- (-4 *7 (-788))
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
+ (-5 *2 (-683 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-683 *4)) (-5 *1 (-415 *3 *4))
+ (-4 *3 (-416 *4))))
+ ((*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))))
+(((*1 *2 *3)
+ (-12
(-5 *2
- (-639
- (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8))
- (|:| |wcond| (-639 (-947 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1256 (-406 (-947 *5))))
- (|:| -3928 (-639 (-1256 (-406 (-947 *5))))))))))
- (-5 *1 (-919 *5 *6 *7 *8)) (-5 *4 (-639 *8))))
+ (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))
+ (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 *8)) (-5 *4 (-639 (-1168))) (-4 *8 (-944 *5 *7 *6))
- (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168))))
- (-4 *7 (-788))
- (-5 *2
- (-639
- (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8))
- (|:| |wcond| (-639 (-947 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1256 (-406 (-947 *5))))
- (|:| -3928 (-639 (-1256 (-406 (-947 *5))))))))))
- (-5 *1 (-919 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-683 *7)) (-4 *7 (-944 *4 *6 *5))
- (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
- (-4 *6 (-788))
+ (-12
(-5 *2
- (-639
- (-2 (|:| |eqzro| (-639 *7)) (|:| |neqzro| (-639 *7))
- (|:| |wcond| (-639 (-947 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1256 (-406 (-947 *4))))
- (|:| -3928 (-639 (-1256 (-406 (-947 *4))))))))))
- (-5 *1 (-919 *4 *5 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-683 *9)) (-5 *5 (-916)) (-4 *9 (-944 *6 *8 *7))
- (-4 *6 (-13 (-306) (-146))) (-4 *7 (-13 (-845) (-610 (-1168))))
- (-4 *8 (-788))
+ (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))
+ (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562)))
+ (-5 *4 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))))
+ ((*1 *2 *3 *4)
+ (-12
(-5 *2
- (-639
- (-2 (|:| |eqzro| (-639 *9)) (|:| |neqzro| (-639 *9))
- (|:| |wcond| (-639 (-947 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1256 (-406 (-947 *6))))
- (|:| -3928 (-639 (-1256 (-406 (-947 *6))))))))))
- (-5 *1 (-919 *6 *7 *8 *9)) (-5 *4 (-639 *9))))
+ (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))
+ (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))) (-5 *4 (-406 (-562)))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-683 *9)) (-5 *4 (-639 (-1168))) (-5 *5 (-916))
- (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146)))
- (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788))
+ (-12 (-5 *5 (-406 (-562)))
+ (-5 *2 (-639 (-2 (|:| -1589 *5) (|:| -1603 *5)))) (-5 *1 (-1015 *3))
+ (-4 *3 (-1232 (-562))) (-5 *4 (-2 (|:| -1589 *5) (|:| -1603 *5)))))
+ ((*1 *2 *3)
+ (-12
(-5 *2
- (-639
- (-2 (|:| |eqzro| (-639 *9)) (|:| |neqzro| (-639 *9))
- (|:| |wcond| (-639 (-947 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1256 (-406 (-947 *6))))
- (|:| -3928 (-639 (-1256 (-406 (-947 *6))))))))))
- (-5 *1 (-919 *6 *7 *8 *9))))
+ (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))
+ (-5 *1 (-1016 *3)) (-4 *3 (-1232 (-406 (-562))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 *8)) (-5 *4 (-916)) (-4 *8 (-944 *5 *7 *6))
- (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168))))
- (-4 *7 (-788))
+ (-12
(-5 *2
- (-639
- (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8))
- (|:| |wcond| (-639 (-947 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1256 (-406 (-947 *5))))
- (|:| -3928 (-639 (-1256 (-406 (-947 *5))))))))))
- (-5 *1 (-919 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-683 *9)) (-5 *4 (-639 *9)) (-5 *5 (-1150))
- (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146)))
- (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-562))
- (-5 *1 (-919 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-683 *9)) (-5 *4 (-639 (-1168))) (-5 *5 (-1150))
- (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146)))
- (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-562))
- (-5 *1 (-919 *6 *7 *8 *9))))
+ (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))
+ (-5 *1 (-1016 *3)) (-4 *3 (-1232 (-406 (-562))))
+ (-5 *4 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 *8)) (-5 *4 (-1150)) (-4 *8 (-944 *5 *7 *6))
- (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168))))
- (-4 *7 (-788)) (-5 *2 (-562)) (-5 *1 (-919 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-683 *10)) (-5 *4 (-639 *10)) (-5 *5 (-916))
- (-5 *6 (-1150)) (-4 *10 (-944 *7 *9 *8)) (-4 *7 (-13 (-306) (-146)))
- (-4 *8 (-13 (-845) (-610 (-1168)))) (-4 *9 (-788)) (-5 *2 (-562))
- (-5 *1 (-919 *7 *8 *9 *10))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-683 *10)) (-5 *4 (-639 (-1168))) (-5 *5 (-916))
- (-5 *6 (-1150)) (-4 *10 (-944 *7 *9 *8)) (-4 *7 (-13 (-306) (-146)))
- (-4 *8 (-13 (-845) (-610 (-1168)))) (-4 *9 (-788)) (-5 *2 (-562))
- (-5 *1 (-919 *7 *8 *9 *10))))
+ (-12 (-5 *4 (-406 (-562)))
+ (-5 *2 (-639 (-2 (|:| -1589 *4) (|:| -1603 *4)))) (-5 *1 (-1016 *3))
+ (-4 *3 (-1232 *4))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-683 *9)) (-5 *4 (-916)) (-5 *5 (-1150))
- (-4 *9 (-944 *6 *8 *7)) (-4 *6 (-13 (-306) (-146)))
- (-4 *7 (-13 (-845) (-610 (-1168)))) (-4 *8 (-788)) (-5 *2 (-562))
- (-5 *1 (-919 *6 *7 *8 *9)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 (-378))) (-5 *1 (-262))))
- ((*1 *1)
- (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-554)) (-4 *2 (-171))))
- ((*1 *2 *1) (-12 (-5 *1 (-417 *2)) (-4 *2 (-554)))))
-(((*1 *1 *1) (-4 *1 (-544))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
- (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-224))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1030))
- (-5 *1 (-744)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1256 *4)) (-4 *4 (-416 *3)) (-4 *3 (-306))
- (-4 *3 (-554)) (-5 *1 (-43 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-916)) (-4 *4 (-362)) (-5 *2 (-1256 *1))
- (-4 *1 (-328 *4))))
- ((*1 *2) (-12 (-4 *3 (-362)) (-5 *2 (-1256 *1)) (-4 *1 (-328 *3))))
- ((*1 *2)
- (-12 (-4 *3 (-171)) (-4 *4 (-1232 *3)) (-5 *2 (-1256 *1))
- (-4 *1 (-408 *3 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-306)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4))
- (-5 *2 (-1256 *6)) (-5 *1 (-412 *3 *4 *5 *6))
- (-4 *6 (-13 (-408 *4 *5) (-1033 *4)))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-306)) (-4 *4 (-987 *3)) (-4 *5 (-1232 *4))
- (-5 *2 (-1256 *6)) (-5 *1 (-413 *3 *4 *5 *6 *7))
- (-4 *6 (-408 *4 *5)) (-14 *7 *2)))
- ((*1 *2) (-12 (-4 *3 (-171)) (-5 *2 (-1256 *1)) (-4 *1 (-416 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-916)) (-5 *2 (-1256 (-1256 *4))) (-5 *1 (-527 *4))
+ (-12 (-5 *5 (-406 (-562)))
+ (-5 *2 (-639 (-2 (|:| -1589 *5) (|:| -1603 *5)))) (-5 *1 (-1016 *3))
+ (-4 *3 (-1232 *5)) (-5 *4 (-2 (|:| -1589 *5) (|:| -1603 *5))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-639 (-505))) (-5 *2 (-505)) (-5 *1 (-482)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4))
(-4 *4 (-348)))))
-(((*1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-362)) (-4 *3 (-1044))
- (-5 *1 (-1152 *3)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-3 (-406 (-947 *6)) (-1157 (-1168) (-947 *6))))
- (-5 *5 (-766)) (-4 *6 (-451)) (-5 *2 (-639 (-683 (-406 (-947 *6)))))
- (-5 *1 (-291 *6)) (-5 *4 (-683 (-406 (-947 *6))))))
- ((*1 *2 *3 *4)
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044))
+ (-14 *4 (-639 (-1168)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845)))
+ (-14 *4 (-639 (-1168))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1150)) (-5 *2 (-213 (-501))) (-5 *1 (-832)))))
+(((*1 *2 *3 *3)
(-12
(-5 *3
- (-2 (|:| |eigval| (-3 (-406 (-947 *5)) (-1157 (-1168) (-947 *5))))
- (|:| |eigmult| (-766)) (|:| |eigvec| (-639 *4))))
- (-4 *5 (-451)) (-5 *2 (-639 (-683 (-406 (-947 *5)))))
- (-5 *1 (-291 *5)) (-5 *4 (-683 (-406 (-947 *5)))))))
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-788)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *6 (-845))
+ (-5 *2 (-112)) (-5 *1 (-448 *4 *5 *6 *7)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1090 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1168)) (-5 *2 (-1 (-224) (-224))) (-5 *1 (-698 *3))
+ (-4 *3 (-610 (-535)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1168)) (-5 *2 (-1 (-224) (-224) (-224)))
+ (-5 *1 (-698 *3)) (-4 *3 (-610 (-535))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-538 *4 *2 *5 *6))
+ (-4 *4 (-306)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-766))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *2) (-12 (-5 *2 (-1086 (-838 (-224)))) (-5 *1 (-304)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-639 *3)) (-4 *3 (-306)) (-5 *1 (-178 *3)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
+(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1092))))
+ ((*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1092)))))
+(((*1 *1 *1) (-4 *1 (-544))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1044))
+ (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283)))
+ (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-843)) (-5 *1 (-302 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-279))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-900 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-639 (-639 *4)))) (-5 *2 (-639 (-639 *4)))
+ (-5 *1 (-1178 *4)) (-4 *4 (-845)))))
(((*1 *2 *3) (-12 (-5 *3 (-535)) (-5 *1 (-534 *2)) (-4 *2 (-1207))))
((*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-535)))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1150)) (-5 *4 (-168 (-224))) (-5 *5 (-562))
- (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *1 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)) (-4 *2 (-1092))))
+ ((*1 *1 *1) (-12 (-4 *1 (-689 *2)) (-4 *2 (-1092)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-362)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4))
- (-5 *2 (-766)) (-5 *1 (-520 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-4 *3 (-554)) (-5 *2 (-766))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4))
- (-4 *6 (-372 *4)) (-5 *2 (-766)) (-5 *1 (-682 *4 *5 *6 *3))
- (-4 *3 (-681 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
- (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-4 *5 (-554))
- (-5 *2 (-766)))))
-(((*1 *1) (-5 *1 (-576))))
-(((*1 *1) (-5 *1 (-1056))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168))
- (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-276 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))))
+ (-12 (-4 *4 (-38 (-406 (-562))))
+ (-5 *2 (-2 (|:| -4206 (-1148 *4)) (|:| -2977 (-1148 *4))))
+ (-5 *1 (-1154 *4)) (-5 *3 (-1148 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *4)) (-4 *4 (-362)) (-5 *2 (-683 *4))
+ (-5 *1 (-809 *4 *5)) (-4 *5 (-650 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *5)) (-5 *4 (-766)) (-4 *5 (-362))
+ (-5 *2 (-683 *5)) (-5 *1 (-809 *5 *6)) (-4 *6 (-650 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-857)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1249 *3 *2))
- (-4 *2 (-1247 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-326 *3)) (-4 *3 (-1207))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-562)) (-5 *1 (-515 *3 *4)) (-4 *3 (-1207)) (-14 *4 *2))))
+(((*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-362)) (-4 *1 (-328 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1232 *4)) (-4 *4 (-1211))
+ (-4 *1 (-341 *4 *3 *5)) (-4 *5 (-1232 (-406 *3)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1256 *4)) (-5 *3 (-1256 *1)) (-4 *4 (-171))
+ (-4 *1 (-366 *4))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1256 *4)) (-5 *3 (-1256 *1)) (-4 *4 (-171))
+ (-4 *1 (-369 *4 *5)) (-4 *5 (-1232 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1256 *3)) (-4 *3 (-171)) (-4 *1 (-408 *3 *4))
+ (-4 *4 (-1232 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1256 *3)) (-4 *3 (-171)) (-4 *1 (-416 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-562)) (-4 *4 (-1232 (-406 *3))) (-5 *2 (-916))
- (-5 *1 (-908 *4 *5)) (-4 *5 (-1232 (-406 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1173)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-243 *2)) (-4 *2 (-1207)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-535)))))
-(((*1 *2 *3 *3 *1)
- (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-1096)) (-5 *1 (-290)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+ (-12 (-5 *3 (-1150)) (-5 *2 (-639 (-1173))) (-5 *1 (-875)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
+ (-5 *2
+ (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
+ (|:| |success| (-112))))
+ (-5 *1 (-784)) (-5 *5 (-562)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
- (-5 *1 (-436)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171))))
+ (|partial| -12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-544))
+ (-5 *2 (-406 (-562)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-417 *3)) (-4 *3 (-544))
+ (-4 *3 (-554))))
+ ((*1 *2 *1) (|partial| -12 (-4 *1 (-544)) (-5 *2 (-406 (-562)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-792 *3)) (-4 *3 (-171)) (-4 *3 (-544))
+ (-5 *2 (-406 (-562)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-828 *3)) (-4 *3 (-544))
+ (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-838 *3)) (-4 *3 (-544))
+ (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-992 *3)) (-4 *3 (-171)) (-4 *3 (-544))
+ (-5 *2 (-406 (-562)))))
((*1 *2 *3)
- (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-1 (-224) (-224) (-224)))
- (-5 *4 (-1 (-224) (-224) (-224) (-224)))
- (-5 *2 (-1 (-938 (-224)) (-224) (-224))) (-5 *1 (-691)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044))))
- ((*1 *2 *1 *1)
- (-12 (-4 *2 (-1044)) (-5 *1 (-50 *2 *3)) (-14 *3 (-639 (-1168)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-639 (-916))) (-4 *2 (-362)) (-5 *1 (-151 *4 *2 *5))
- (-14 *4 (-916)) (-14 *5 (-988 *4 *2))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-315 *3)) (-5 *1 (-222 *3 *4))
- (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168)))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-322 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-130))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-381 *2 *3)) (-4 *3 (-1092)) (-4 *2 (-1044))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-4 *2 (-554)) (-5 *1 (-619 *2 *4))
- (-4 *4 (-1232 *2))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-703 *2)) (-4 *2 (-1044))))
- ((*1 *2 *1 *3)
- (-12 (-4 *2 (-1044)) (-5 *1 (-730 *2 *3)) (-4 *3 (-721))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-639 *5)) (-5 *3 (-639 (-766))) (-4 *1 (-735 *4 *5))
- (-4 *4 (-1044)) (-4 *5 (-845))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-766)) (-4 *1 (-735 *4 *2)) (-4 *4 (-1044))
- (-4 *2 (-845))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-847 *2)) (-4 *2 (-1044))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-639 *6)) (-5 *3 (-639 (-766))) (-4 *1 (-944 *4 *5 *6))
- (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-766)) (-4 *1 (-944 *4 *5 *2)) (-4 *4 (-1044))
- (-4 *5 (-788)) (-4 *2 (-845))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-766)) (-4 *2 (-944 *4 (-530 *5) *5))
- (-5 *1 (-1118 *4 *5 *2)) (-4 *4 (-1044)) (-4 *5 (-845))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-947 *4)) (-5 *1 (-1201 *4))
- (-4 *4 (-1044)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
- (-12 (-5 *4 (-639 (-112))) (-5 *5 (-683 (-224)))
- (-5 *6 (-683 (-562))) (-5 *7 (-224)) (-5 *3 (-562)) (-5 *2 (-1030))
- (-5 *1 (-749)))))
+ (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-1003 *3))
+ (-4 *3 (-1033 *2)))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766))
+ (-4 *4 (-171))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2))
+ (-4 *2 (-429 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1084 *2)) (-4 *2 (-429 *4)) (-4 *4 (-13 (-845) (-554)))
+ (-5 *1 (-157 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1084 *1)) (-4 *1 (-159))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-159)) (-5 *2 (-1168))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-464 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-766)) (-5 *1 (-1276 *3 *4)) (-4 *3 (-845))
+ (-4 *4 (-171)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
- (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4))))
- ((*1 *2 *3 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
- (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-168 (-224)))) (-5 *2 (-1030))
- (-5 *1 (-749)))))
+ (-12 (-5 *2 (-639 (-1164 (-562)))) (-5 *1 (-190)) (-5 *3 (-562)))))
+(((*1 *2)
+ (-12 (-4 *3 (-554)) (-5 *2 (-639 (-683 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-416 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1148 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-191))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1148 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-299))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1148 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-304)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378))
- (|:| |expense| (-378)) (|:| |accuracy| (-378))
- (|:| |intermediateResults| (-378))))
- (-5 *2 (-1030)) (-5 *1 (-304)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-916)) (-4 *1 (-237 *3 *4)) (-4 *4 (-1044))
- (-4 *4 (-1207))))
- ((*1 *1 *2)
- (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171))
- (-4 *5 (-237 (-3492 *3) (-766)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2466 *2) (|:| -1960 *5))
- (-2 (|:| -2466 *2) (|:| -1960 *5))))
- (-5 *1 (-460 *3 *4 *2 *5 *6 *7)) (-4 *2 (-845))
- (-4 *7 (-944 *4 *5 (-859 *3)))))
- ((*1 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-325 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044))
- (-4 *2 (-451))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 *4)) (-4 *4 (-1232 (-562))) (-5 *2 (-639 (-562)))
- (-5 *1 (-485 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-451))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845)) (-4 *3 (-451)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
+ (-3
+ (|:| |noa|
+ (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224)))
+ (|:| |lb| (-639 (-838 (-224))))
+ (|:| |cf| (-639 (-315 (-224))))
+ (|:| |ub| (-639 (-838 (-224))))))
+ (|:| |lsa|
+ (-2 (|:| |lfn| (-639 (-315 (-224))))
+ (|:| -3730 (-639 (-224)))))))
+ (-5 *2 (-639 (-1150))) (-5 *1 (-266)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-140))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-143)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *5 *5))
- (-4 *5 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1092)) (-4 *6 (-1092))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-678 *4 *5 *6)) (-4 *5 (-1092)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-816)) (-5 *4 (-52)) (-5 *2 (-1261)) (-5 *1 (-826)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *1 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-524)))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))))
+(((*1 *1) (-5 *1 (-1257))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259))))
+ ((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-378)) (-5 *1 (-1056)))))
+(((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-406 (-947 (-562)))))
+ (-5 *2 (-639 (-639 (-293 (-947 *4))))) (-5 *1 (-379 *4))
+ (-4 *4 (-13 (-843) (-362)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-293 (-406 (-947 (-562))))))
+ (-5 *2 (-639 (-639 (-293 (-947 *4))))) (-5 *1 (-379 *4))
+ (-4 *4 (-13 (-843) (-362)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-406 (-947 (-562)))) (-5 *2 (-639 (-293 (-947 *4))))
+ (-5 *1 (-379 *4)) (-4 *4 (-13 (-843) (-362)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-293 (-406 (-947 (-562)))))
+ (-5 *2 (-639 (-293 (-947 *4)))) (-5 *1 (-379 *4))
+ (-4 *4 (-13 (-843) (-362)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1168))
+ (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-4 *4 (-13 (-29 *6) (-1192) (-954)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -4291 (-639 *4))))
+ (-5 *1 (-646 *6 *4 *3)) (-4 *3 (-650 *4))))
+ ((*1 *2 *3 *2 *4 *2 *5)
+ (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-639 *2))
+ (-4 *2 (-13 (-29 *6) (-1192) (-954)))
+ (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *1 (-646 *6 *2 *3)) (-4 *3 (-650 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 *5)) (-4 *5 (-362))
(-5 *2
- (-2 (|:| |solns| (-639 *5))
- (|:| |maps| (-639 (-2 (|:| |arg| *5) (|:| |res| *5))))))
- (-5 *1 (-1120 *3 *5)) (-4 *3 (-1232 *5)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-747)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-683 *2)) (-5 *4 (-766))
- (-4 *2 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $)))))
- (-4 *5 (-1232 *2)) (-5 *1 (-498 *2 *5 *6)) (-4 *6 (-408 *2 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-554)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367))
- (-5 *2 (-1164 *3)))))
-(((*1 *2 *3 *2)
- (-12
+ (-2 (|:| |particular| (-3 (-1256 *5) "failed"))
+ (|:| -4291 (-639 (-1256 *5)))))
+ (-5 *1 (-661 *5)) (-5 *4 (-1256 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-639 *5))) (-4 *5 (-362))
(-5 *2
- (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224))
- (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224))
- (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))
- (-5 *3 (-639 (-262))) (-5 *1 (-260))))
- ((*1 *1 *2)
- (-12
+ (-2 (|:| |particular| (-3 (-1256 *5) "failed"))
+ (|:| -4291 (-639 (-1256 *5)))))
+ (-5 *1 (-661 *5)) (-5 *4 (-1256 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 *5)) (-4 *5 (-362))
(-5 *2
- (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224))
- (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224))
- (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))
- (-5 *1 (-262))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258))))
- ((*1 *2 *1 *3 *3 *4 *4 *4)
- (-12 (-5 *3 (-562)) (-5 *4 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258))))
- ((*1 *2 *1 *3)
- (-12
- (-5 *3
- (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224))
- (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224))
- (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))
- (-5 *2 (-1261)) (-5 *1 (-1258))))
- ((*1 *2 *1)
- (-12
+ (-639
+ (-2 (|:| |particular| (-3 (-1256 *5) "failed"))
+ (|:| -4291 (-639 (-1256 *5))))))
+ (-5 *1 (-661 *5)) (-5 *4 (-639 (-1256 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-639 *5))) (-4 *5 (-362))
(-5 *2
- (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -3878 (-224))
- (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224))
- (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))
- (-5 *1 (-1258))))
- ((*1 *2 *1 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1030)) (-5 *3 (-1168)) (-5 *1 (-191)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-639
+ (-2 (|:| |particular| (-3 (-1256 *5) "failed"))
+ (|:| -4291 (-639 (-1256 *5))))))
+ (-5 *1 (-661 *5)) (-5 *4 (-639 (-1256 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4404))))
+ (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4404))))
(-5 *2
- (-3 (|:| |%expansion| (-312 *5 *3 *6 *7))
- (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))))
- (-5 *1 (-419 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1192) (-429 *5)))
- (-14 *6 (-1168)) (-14 *7 *3))))
-(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
- (-12 (-5 *3 (-562)) (-5 *5 (-112)) (-5 *6 (-683 (-224)))
- (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN))))
- (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-748)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-554))
- (-4 *7 (-944 *3 *5 *6))
- (-5 *2 (-2 (|:| -1960 (-766)) (|:| -4221 *8) (|:| |radicand| *8)))
- (-5 *1 (-948 *5 *6 *3 *7 *8)) (-5 *4 (-766))
- (-4 *8
- (-13 (-362)
- (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $))))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2))
- (-4 *4 (-372 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-665))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1093 *3 *4)) (-14 *3 (-916))
- (-14 *4 (-916)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-639 *6)) (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044))
- (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
- (-4 *3 (-554)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-857)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
- (-4 *4 (-1044)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-742)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1092) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1132 *4 *5)) (-4 *4 (-13 (-1092) (-34))))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-293 (-828 *3)))
- (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *2 (-828 *3)) (-5 *1 (-632 *5 *3))
- (-4 *3 (-13 (-27) (-1192) (-429 *5)))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4))))
+ (-5 *1 (-662 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-293 (-828 (-947 *5)))) (-4 *5 (-451))
- (-5 *2 (-828 (-406 (-947 *5)))) (-5 *1 (-633 *5))
+ (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4404))))
+ (-4 *7 (-13 (-372 *5) (-10 -7 (-6 -4404))))
+ (-5 *2
+ (-639
+ (-2 (|:| |particular| (-3 *7 "failed")) (|:| -4291 (-639 *7)))))
+ (-5 *1 (-662 *5 *6 *7 *3)) (-5 *4 (-639 *7))
+ (-4 *3 (-681 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-639 (-1168))) (-4 *5 (-554))
+ (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-765 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-554))
+ (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-765 *4))))
+ ((*1 *2 *2 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1168))
+ (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *1 (-767 *5 *2)) (-4 *2 (-13 (-29 *5) (-1192) (-954)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-683 *7)) (-5 *5 (-1168))
+ (-4 *7 (-13 (-29 *6) (-1192) (-954)))
+ (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *2
+ (-2 (|:| |particular| (-1256 *7)) (|:| -4291 (-639 (-1256 *7)))))
+ (-5 *1 (-797 *6 *7)) (-5 *4 (-1256 *7))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-683 *6)) (-5 *4 (-1168))
+ (-4 *6 (-13 (-29 *5) (-1192) (-954)))
+ (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *2 (-639 (-1256 *6))) (-5 *1 (-797 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-639 (-293 *7))) (-5 *4 (-639 (-114)))
+ (-5 *5 (-1168)) (-4 *7 (-13 (-29 *6) (-1192) (-954)))
+ (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *2
+ (-2 (|:| |particular| (-1256 *7)) (|:| -4291 (-639 (-1256 *7)))))
+ (-5 *1 (-797 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-639 *7)) (-5 *4 (-639 (-114)))
+ (-5 *5 (-1168)) (-4 *7 (-13 (-29 *6) (-1192) (-954)))
+ (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *2
+ (-2 (|:| |particular| (-1256 *7)) (|:| -4291 (-639 (-1256 *7)))))
+ (-5 *1 (-797 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-293 *7)) (-5 *4 (-114)) (-5 *5 (-1168))
+ (-4 *7 (-13 (-29 *6) (-1192) (-954)))
+ (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *2
+ (-3 (-2 (|:| |particular| *7) (|:| -4291 (-639 *7))) *7 "failed"))
+ (-5 *1 (-797 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-114)) (-5 *5 (-1168))
+ (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *2
+ (-3 (-2 (|:| |particular| *3) (|:| -4291 (-639 *3))) *3 "failed"))
+ (-5 *1 (-797 *6 *3)) (-4 *3 (-13 (-29 *6) (-1192) (-954)))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *3 (-293 *2)) (-5 *4 (-114)) (-5 *5 (-639 *2))
+ (-4 *2 (-13 (-29 *6) (-1192) (-954))) (-5 *1 (-797 *6 *2))
+ (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))))
+ ((*1 *2 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-114)) (-5 *4 (-293 *2)) (-5 *5 (-639 *2))
+ (-4 *2 (-13 (-29 *6) (-1192) (-954)))
+ (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *1 (-797 *6 *2))))
+ ((*1 *2 *3) (-12 (-5 *3 (-803)) (-5 *2 (-1030)) (-5 *1 (-800))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-803)) (-5 *4 (-1056)) (-5 *2 (-1030)) (-5 *1 (-800))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1256 (-315 (-378)))) (-5 *4 (-378)) (-5 *5 (-639 *4))
+ (-5 *2 (-1030)) (-5 *1 (-800))))
+ ((*1 *2 *3 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1256 (-315 (-378)))) (-5 *4 (-378)) (-5 *5 (-639 *4))
+ (-5 *2 (-1030)) (-5 *1 (-800))))
+ ((*1 *2 *3 *4 *4 *5 *6 *4)
+ (-12 (-5 *3 (-1256 (-315 *4))) (-5 *5 (-639 (-378)))
+ (-5 *6 (-315 (-378))) (-5 *4 (-378)) (-5 *2 (-1030)) (-5 *1 (-800))))
+ ((*1 *2 *3 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1256 (-315 (-378)))) (-5 *4 (-378)) (-5 *5 (-639 *4))
+ (-5 *2 (-1030)) (-5 *1 (-800))))
+ ((*1 *2 *3 *4 *4 *5 *6 *5 *4)
+ (-12 (-5 *3 (-1256 (-315 *4))) (-5 *5 (-639 (-378)))
+ (-5 *6 (-315 (-378))) (-5 *4 (-378)) (-5 *2 (-1030)) (-5 *1 (-800))))
+ ((*1 *2 *3 *4 *4 *5 *6 *5 *4 *4)
+ (-12 (-5 *3 (-1256 (-315 *4))) (-5 *5 (-639 (-378)))
+ (-5 *6 (-315 (-378))) (-5 *4 (-378)) (-5 *2 (-1030)) (-5 *1 (-800))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12
+ (-5 *5
+ (-1
+ (-3 (-2 (|:| |particular| *6) (|:| -4291 (-639 *6))) "failed")
+ *7 *6))
+ (-4 *6 (-362)) (-4 *7 (-650 *6))
+ (-5 *2 (-2 (|:| |particular| (-1256 *6)) (|:| -4291 (-683 *6))))
+ (-5 *1 (-808 *6 *7)) (-5 *3 (-683 *6)) (-5 *4 (-1256 *6))))
+ ((*1 *2 *3) (-12 (-5 *3 (-893)) (-5 *2 (-1030)) (-5 *1 (-892))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-893)) (-5 *4 (-1056)) (-5 *2 (-1030)) (-5 *1 (-892))))
+ ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8)
+ (-12 (-5 *4 (-766)) (-5 *6 (-639 (-639 (-315 *3)))) (-5 *7 (-1150))
+ (-5 *8 (-224)) (-5 *5 (-639 (-315 (-378)))) (-5 *3 (-378))
+ (-5 *2 (-1030)) (-5 *1 (-892))))
+ ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7)
+ (-12 (-5 *4 (-766)) (-5 *6 (-639 (-639 (-315 *3)))) (-5 *7 (-1150))
+ (-5 *5 (-639 (-315 (-378)))) (-5 *3 (-378)) (-5 *2 (-1030))
+ (-5 *1 (-892))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-947 (-406 (-562)))) (-5 *2 (-639 (-378)))
+ (-5 *1 (-1018)) (-5 *4 (-378))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-947 (-562))) (-5 *2 (-639 (-378))) (-5 *1 (-1018))
+ (-5 *4 (-378))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1123 *4))
+ (-5 *3 (-315 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1123 *4))
+ (-5 *3 (-293 (-315 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1168))
+ (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *2 (-639 (-293 (-315 *5)))) (-5 *1 (-1123 *5))
+ (-5 *3 (-293 (-315 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1168))
+ (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *2 (-639 (-293 (-315 *5)))) (-5 *1 (-1123 *5))
+ (-5 *3 (-315 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 (-1168)))
+ (-4 *5 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *2 (-639 (-639 (-293 (-315 *5))))) (-5 *1 (-1123 *5))
+ (-5 *3 (-639 (-293 (-315 *5))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168)))
+ (-4 *5 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *5))))))
+ (-5 *1 (-1176 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 (-1168))) (-4 *5 (-554))
+ (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-1176 *5))
+ (-5 *3 (-639 (-293 (-406 (-947 *5)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-406 (-947 *4)))) (-4 *4 (-554))
+ (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-1176 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-639 (-639 (-293 (-406 (-947 *4))))))
+ (-5 *1 (-1176 *4)) (-5 *3 (-639 (-293 (-406 (-947 *4)))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1168)) (-4 *5 (-554))
+ (-5 *2 (-639 (-293 (-406 (-947 *5))))) (-5 *1 (-1176 *5))
(-5 *3 (-406 (-947 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-293 (-406 (-947 *5)))) (-5 *3 (-406 (-947 *5)))
- (-4 *5 (-451)) (-5 *2 (-828 *3)) (-5 *1 (-633 *5)))))
-(((*1 *1 *2 *2 *2)
- (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192)))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362))))
- ((*1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362))))
- ((*1 *2 *1 *3 *4 *4)
- (-12 (-5 *3 (-916)) (-5 *4 (-378)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-168 (-224)) (-168 (-224)))) (-5 *4 (-1086 (-224)))
- (-5 *2 (-1258)) (-5 *1 (-256)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1241 *3 *4 *5)) (-4 *3 (-13 (-362) (-845)))
- (-14 *4 (-1168)) (-14 *5 *3) (-5 *1 (-318 *3 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-1 (-378))) (-5 *1 (-1035)) (-5 *3 (-378)))))
-(((*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258))))
- ((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-600 *2 *3)) (-4 *3 (-1207)) (-4 *2 (-1092))
- (-4 *2 (-845)))))
-(((*1 *2)
- (-12 (-5 *2 (-953 (-1112))) (-5 *1 (-342 *3 *4)) (-14 *3 (-916))
- (-14 *4 (-916))))
- ((*1 *2)
- (-12 (-5 *2 (-953 (-1112))) (-5 *1 (-343 *3 *4)) (-4 *3 (-348))
- (-14 *4 (-1164 *3))))
- ((*1 *2)
- (-12 (-5 *2 (-953 (-1112))) (-5 *1 (-344 *3 *4)) (-4 *3 (-348))
- (-14 *4 (-916)))))
-(((*1 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))))
-(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-754)))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-639 *1)) (-4 *1 (-915)))))
+ (-12 (-5 *4 (-1168)) (-4 *5 (-554))
+ (-5 *2 (-639 (-293 (-406 (-947 *5))))) (-5 *1 (-1176 *5))
+ (-5 *3 (-293 (-406 (-947 *5))))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-639 (-293 (-406 (-947 *4)))))
+ (-5 *1 (-1176 *4)) (-5 *3 (-406 (-947 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-639 (-293 (-406 (-947 *4)))))
+ (-5 *1 (-1176 *4)) (-5 *3 (-293 (-406 (-947 *4)))))))
(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-1207)) (-5 *1 (-181 *3 *2))
- (-4 *2 (-668 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1266)))))
+ (-12
+ (-5 *2
+ (-639
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-766)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-788)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451)) (-4 *5 (-845))
+ (-5 *1 (-448 *3 *4 *5 *6)))))
+(((*1 *2)
+ (-12 (-4 *3 (-554)) (-5 *2 (-639 (-683 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-416 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-857)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-224)) (-5 *5 (-562)) (-5 *2 (-1202 *3))
- (-5 *1 (-785 *3)) (-4 *3 (-969))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-112))
- (-5 *1 (-1202 *2)) (-4 *2 (-969)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-766)) (-4 *4 (-554)) (-5 *1 (-964 *4 *2))
- (-4 *2 (-1232 *4)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-639 (-960))) (-5 *1 (-290)))))
+ (-12 (-5 *4 (-639 *7)) (-5 *5 (-639 (-639 *8))) (-4 *7 (-845))
+ (-4 *8 (-306)) (-4 *6 (-788)) (-4 *9 (-944 *8 *6 *7))
+ (-5 *2
+ (-2 (|:| |unitPart| *9)
+ (|:| |suPart|
+ (-639 (-2 (|:| -1635 (-1164 *9)) (|:| -1300 (-562)))))))
+ (-5 *1 (-737 *6 *7 *8 *9)) (-5 *3 (-1164 *9)))))
+(((*1 *1) (-5 *1 (-467))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-451)) (-4 *4 (-845))
+ (-5 *1 (-571 *4 *2)) (-4 *2 (-283)) (-4 *2 (-429 *4)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-215 *4 *2))
+ (-4 *2 (-1232 *4))))
+ ((*1 *2 *2 *3 *2 *3)
+ (-12 (-5 *3 (-562)) (-5 *1 (-690 *2)) (-4 *2 (-1232 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2355 *4)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-562)) (-4 *2 (-429 *3)) (-5 *1 (-32 *3 *2))
+ (-4 *3 (-1033 *4)) (-4 *3 (-13 (-845) (-554))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-306)) (-4 *6 (-372 *5)) (-4 *4 (-372 *5))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4))))
+ (-5 *1 (-1116 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-1058 *4 *5 *6)) (-4 *4 (-554))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *2)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1256 *6)) (-5 *4 (-1256 (-562))) (-5 *5 (-562))
+ (-4 *6 (-1092)) (-5 *2 (-1 *6)) (-5 *1 (-1012 *6)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-997))
+ (-4 *2 (-1044)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-544))))
+ ((*1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *1 *1 *1) (-4 *1 (-544))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4))
+ (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
+(((*1 *1 *2 *3 *3 *4 *4)
+ (-12 (-5 *2 (-947 (-562))) (-5 *3 (-1168))
+ (-5 *4 (-1086 (-406 (-562)))) (-5 *1 (-30)))))
+(((*1 *1) (-5 *1 (-1074))))
(((*1 *1 *1) (-5 *1 (-857))) ((*1 *1 *1 *1) (-5 *1 (-857)))
((*1 *1 *2 *2) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207))))
((*1 *1 *2) (-12 (-5 *1 (-1223 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-374 *4 *2))
- (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4403)))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))))
+(((*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-486)))))
+(((*1 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-367)) (-4 *2 (-362)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
+ (-12 (-5 *3 (-562)) (-5 *5 (-112)) (-5 *6 (-683 (-224)))
+ (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-750)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *1) (-12 (-5 *1 (-583 *2)) (-4 *2 (-362)))))
-(((*1 *2 *2) (|partial| -12 (-5 *2 (-315 (-224))) (-5 *1 (-266)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-562))) (-5 *4 (-900 (-562)))
- (-5 *2 (-683 (-562))) (-5 *1 (-587))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-639 (-683 (-562))))
- (-5 *1 (-587))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-562))) (-5 *4 (-639 (-900 (-562))))
- (-5 *2 (-639 (-683 (-562)))) (-5 *1 (-587)))))
+(((*1 *2) (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1259))))
+ ((*1 *2 *2) (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1259)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-1148 *3))) (-5 *1 (-1148 *3)) (-4 *3 (-1207)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
- (-4 *4 (-1044)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-544))))
+ (-12 (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-843)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362)))
+ (-4 *3 (-1232 *4)) (-5 *2 (-112)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-845))
- (-5 *2 (-2 (|:| -4221 (-562)) (|:| |var| (-608 *1))))
- (-4 *1 (-429 *3)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
- (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
- ((*1 *2 *3) (-12 (-5 *3 (-966)) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+ (-12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-544))
+ (-5 *2 (-406 (-562)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-406 (-562))) (-5 *1 (-417 *3)) (-4 *3 (-544))
+ (-4 *3 (-554))))
+ ((*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-406 (-562)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-792 *3)) (-4 *3 (-171)) (-4 *3 (-544))
+ (-5 *2 (-406 (-562)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-406 (-562))) (-5 *1 (-828 *3)) (-4 *3 (-544))
+ (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-406 (-562))) (-5 *1 (-838 *3)) (-4 *3 (-544))
+ (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-992 *3)) (-4 *3 (-171)) (-4 *3 (-544))
+ (-5 *2 (-406 (-562)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-406 (-562))) (-5 *1 (-1003 *3)) (-4 *3 (-1033 *2)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-119 *2)) (-4 *2 (-1207)))))
(((*1 *2)
- (-12 (-5 *2 (-683 (-905 *3))) (-5 *1 (-350 *3 *4)) (-14 *3 (-916))
- (-14 *4 (-916))))
- ((*1 *2)
- (-12 (-5 *2 (-683 *3)) (-5 *1 (-351 *3 *4)) (-4 *3 (-348))
- (-14 *4
- (-3 (-1164 *3)
- (-1256 (-639 (-2 (|:| -2534 *3) (|:| -2466 (-1112)))))))))
+ (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-904))
+ (-5 *1 (-456 *3 *4 *2 *5)) (-4 *5 (-944 *2 *3 *4))))
((*1 *2)
- (-12 (-5 *2 (-683 *3)) (-5 *1 (-352 *3 *4)) (-4 *3 (-348))
- (-14 *4 (-916)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-639 (-683 *4))) (-5 *2 (-683 *4)) (-4 *4 (-1044))
- (-5 *1 (-1024 *4)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-639
- (-2 (|:| -2173 (-766))
- (|:| |eqns|
- (-639
- (-2 (|:| |det| *7) (|:| |rows| (-639 (-562)))
- (|:| |cols| (-639 (-562))))))
- (|:| |fgb| (-639 *7)))))
- (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146)))
- (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-766))
- (-5 *1 (-919 *4 *5 *6 *7)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-112)))))
-(((*1 *1) (-5 *1 (-156)))
- ((*1 *2 *1) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))))
-(((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-156)))))
+ (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *2 (-904))
+ (-5 *1 (-901 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4))))
+ ((*1 *2) (-12 (-4 *2 (-904)) (-5 *1 (-902 *2 *3)) (-4 *3 (-1232 *2)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845))
+ (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-944 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1044)) (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1)))
+ (-4 *1 (-1232 *3)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-362)) (-5 *1 (-891 *2 *3))
+ (-4 *2 (-1232 *3)))))
(((*1 *2 *1)
- (-12 (-4 *2 (-1092)) (-5 *1 (-959 *3 *2)) (-4 *3 (-1092)))))
+ (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-4 *3 (-554))
+ (-5 *2 (-1164 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-170)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1172)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261))
+ (-5 *1 (-1065 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261))
+ (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-191))))
+ (|partial| -12 (-5 *3 (-947 (-168 *4))) (-4 *4 (-171))
+ (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-947 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-171))
+ (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-639 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-299))))
+ (|partial| -12 (-5 *3 (-947 *4)) (-4 *4 (-1044))
+ (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-947 *5)) (-5 *4 (-916)) (-4 *5 (-1044))
+ (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-639 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-304)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *5 *6)) (-4 *6 (-610 (-1168)))
- (-4 *4 (-362)) (-4 *5 (-788)) (-4 *6 (-845))
- (-5 *2 (-1157 (-639 (-947 *4)) (-639 (-293 (-947 *4)))))
- (-5 *1 (-503 *4 *5 *6 *7)))))
+ (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554))
+ (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-916)) (-4 *5 (-554))
+ (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-406 (-947 (-168 *4)))) (-4 *4 (-554))
+ (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-406 (-947 (-168 *5)))) (-5 *4 (-916))
+ (-4 *5 (-554)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378)))
+ (-5 *1 (-780 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-315 *4)) (-4 *4 (-554)) (-4 *4 (-845))
+ (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554))
+ (-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378)))
+ (-5 *1 (-780 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-315 (-168 *4))) (-4 *4 (-554)) (-4 *4 (-845))
+ (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-315 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-554))
+ (-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378)))
+ (-5 *1 (-780 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329))
- (-5 *1 (-331)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-766)) (-4 *5 (-362)) (-5 *2 (-173 *6))
- (-5 *1 (-862 *5 *4 *6)) (-4 *4 (-1247 *5)) (-4 *6 (-1232 *5)))))
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2)
+ (-12 (-5 *2 (-2 (|:| -3665 (-639 *3)) (|:| -3979 (-639 *3))))
+ (-5 *1 (-1208 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554))
+ (-5 *2 (-2 (|:| -4221 *4) (|:| -3380 *3) (|:| -1441 *3)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-1058 *3 *4 *5))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-554)) (-4 *3 (-1044))
+ (-5 *2 (-2 (|:| -4221 *3) (|:| -3380 *1) (|:| -1441 *1)))
+ (-4 *1 (-1232 *3)))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-554)) (-4 *2 (-171)))))
(((*1 *2 *1)
(-12 (-4 *3 (-1092)) (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 *2)))
(-5 *2 (-887 *3)) (-5 *1 (-1068 *3 *4 *5))
(-4 *5 (-13 (-429 *4) (-881 *3) (-610 *2))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4))
- (-5 *2
- (-3 (|:| |overq| (-1164 (-406 (-562))))
- (|:| |overan| (-1164 (-48))) (|:| -4253 (-112))))
- (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))))
-(((*1 *1 *1 *1) (-5 *1 (-161)))
- ((*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-161)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-315 (-224))) (-5 *4 (-1168))
+ (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-191))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-315 (-224))) (-5 *4 (-1168))
+ (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-299)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2))
+ (-4 *2 (-429 *4))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-159)) (-5 *2 (-1168))))
+ ((*1 *1 *1) (-4 *1 (-159))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-535)))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
- (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *6 (-224))
- (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-746)))))
-(((*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2))
- (-4 *4 (-13 (-845) (-554))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
- (-5 *2 (-2 (|:| |k| (-814 *3)) (|:| |c| *4))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-1256 (-683 *4))) (-5 *1 (-90 *4 *5))
- (-5 *3 (-683 *4)) (-4 *5 (-650 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-762 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))))
-(((*1 *2)
- (-12 (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4)))
- (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $)))))
- (-4 *4 (-1232 *3))
- (-5 *2
- (-2 (|:| -3928 (-683 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-683 *3))))
- (-5 *1 (-349 *3 *4 *5)) (-4 *5 (-408 *3 *4))))
- ((*1 *2)
- (-12 (-4 *3 (-1232 (-562)))
- (-5 *2
- (-2 (|:| -3928 (-683 (-562))) (|:| |basisDen| (-562))
- (|:| |basisInv| (-683 (-562)))))
- (-5 *1 (-763 *3 *4)) (-4 *4 (-408 (-562) *3))))
- ((*1 *2)
- (-12 (-4 *3 (-348)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 *4))
- (-5 *2
- (-2 (|:| -3928 (-683 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-683 *4))))
- (-5 *1 (-980 *3 *4 *5 *6)) (-4 *6 (-719 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-348)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 *4))
- (-5 *2
- (-2 (|:| -3928 (-683 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-683 *4))))
- (-5 *1 (-1265 *3 *4 *5 *6)) (-4 *6 (-408 *4 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-306)) (-5 *1 (-454 *3 *2)) (-4 *2 (-1232 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-306)) (-5 *1 (-459 *3 *2)) (-4 *2 (-1232 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-306)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-766)))
+ (-5 *1 (-538 *3 *2 *4 *5)) (-4 *2 (-1232 *3)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
(-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *2)
- (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1164 *9)) (-5 *4 (-639 *7)) (-4 *7 (-845))
+ (-4 *9 (-944 *8 *6 *7)) (-4 *6 (-788)) (-4 *8 (-306))
+ (-5 *2 (-639 (-766))) (-5 *1 (-737 *6 *7 *8 *9)) (-5 *5 (-766)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1 (-938 (-224)) (-938 (-224)))) (-5 *3 (-639 (-262)))
+ (-5 *1 (-260))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-938 (-224)) (-938 (-224)))) (-5 *1 (-262))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 (-480 *5 *6))) (-5 *3 (-480 *5 *6))
+ (-14 *5 (-639 (-1168))) (-4 *6 (-451)) (-5 *2 (-1256 *6))
+ (-5 *1 (-627 *5 *6)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-1124 *4 *2))
+ (-4 *2 (-13 (-600 (-562) *4) (-10 -7 (-6 -4403) (-6 -4404))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-845)) (-4 *3 (-1207)) (-5 *1 (-1124 *3 *2))
+ (-4 *2 (-13 (-600 (-562) *3) (-10 -7 (-6 -4403) (-6 -4404)))))))
+(((*1 *1 *1) (|partial| -4 *1 (-1143))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1030))
+ (-5 *1 (-741)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-112)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| |k| (-1168)) (|:| |c| (-1278 *3)))))
- (-5 *1 (-1278 *3)) (-4 *3 (-1044))))
+ (-12 (-5 *2 (-639 (-2 (|:| |k| (-666 *3)) (|:| |c| *4))))
+ (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845))
+ (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-112)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -4221 *3) (|:| |gap| (-766)) (|:| -3380 (-777 *3))
+ (|:| -1441 (-777 *3))))
+ (-5 *1 (-777 *3)) (-4 *3 (-1044))))
+ ((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845))
+ (-5 *2
+ (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -3380 *1)
+ (|:| -1441 *1)))
+ (-4 *1 (-1058 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *2
+ (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -3380 *1)
+ (|:| -1441 *1)))
+ (-4 *1 (-1058 *3 *4 *5)))))
+(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466))))
+ ((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466))))
+ ((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
+(((*1 *2 *3)
+ (-12 (|has| *6 (-6 -4404)) (-4 *4 (-362)) (-4 *5 (-372 *4))
+ (-4 *6 (-372 *4)) (-5 *2 (-639 *6)) (-5 *1 (-520 *4 *5 *6 *3))
+ (-4 *3 (-681 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (|has| *9 (-6 -4404)) (-4 *4 (-554)) (-4 *5 (-372 *4))
+ (-4 *6 (-372 *4)) (-4 *7 (-987 *4)) (-4 *8 (-372 *7))
+ (-4 *9 (-372 *7)) (-5 *2 (-639 *6))
+ (-5 *1 (-521 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-681 *4 *5 *6))
+ (-4 *10 (-681 *7 *8 *9))))
((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| |k| *3) (|:| |c| (-1280 *3 *4)))))
- (-5 *1 (-1280 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-751)))))
-(((*1 *1 *1) (-5 *1 (-224)))
- ((*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
- ((*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *1 *1) (-4 *1 (-1131))) ((*1 *1 *1 *1) (-4 *1 (-1131))))
-(((*1 *1 *1) (-12 (-4 *1 (-373 *2 *3)) (-4 *2 (-845)) (-4 *3 (-171))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-623 *2 *3 *4)) (-4 *2 (-845))
- (-4 *3 (-13 (-171) (-712 (-406 (-562))))) (-14 *4 (-916))))
- ((*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845))))
- ((*1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))))
+ (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-4 *3 (-554)) (-5 *2 (-639 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4))
+ (-4 *6 (-372 *4)) (-5 *2 (-639 *6)) (-5 *1 (-682 *4 *5 *6 *3))
+ (-4 *3 (-681 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
+ (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-4 *5 (-554))
+ (-5 *2 (-639 *7)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-146))
+ (-4 *3 (-306)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *1 (-972 *3 *4 *5 *6)))))
+(((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-406 *6)) (|:| |h| *6)
+ (|:| |c1| (-406 *6)) (|:| |c2| (-406 *6)) (|:| -3354 *6)))
+ (-5 *1 (-1011 *5 *6)) (-5 *3 (-406 *6)))))
(((*1 *1 *2 *2 *2)
(-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192)))))
((*1 *2 *1 *3 *4 *4)
(-12 (-5 *3 (-916)) (-5 *4 (-378)) (-5 *2 (-1261)) (-5 *1 (-1257))))
((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
- (-5 *2 (-1030)) (-5 *1 (-746)))))
-(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-676 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *3 (-639 (-869)))
- (-5 *1 (-467)))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-2 (|:| |ans| *7) (|:| -1602 *7) (|:| |sol?| (-112)))
- (-562) *7))
- (-5 *6 (-639 (-406 *8))) (-4 *7 (-362)) (-4 *8 (-1232 *7))
- (-5 *3 (-406 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-572 *7 *8)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1261))
- (-5 *1 (-448 *4 *5 *6 *7)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *1) (-5 *1 (-140))))
+ (-12 (-5 *3 (-480 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044))
+ (-5 *2 (-947 *5)) (-5 *1 (-939 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044))
+ (-5 *2 (-639 (-639 (-639 (-938 *3))))))))
+(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-639 (-639 *7)))
+ (-5 *1 (-447 *4 *5 *6 *7)) (-5 *3 (-639 *7))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788))
+ (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-639 (-639 *8)))
+ (-5 *1 (-447 *5 *6 *7 *8)) (-5 *3 (-639 *8))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-639 (-639 *7)))
+ (-5 *1 (-447 *4 *5 *6 *7)) (-5 *3 (-639 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788))
+ (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-639 (-639 *8)))
+ (-5 *1 (-447 *5 *6 *7 *8)) (-5 *3 (-639 *8)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1086 (-838 (-378)))) (-5 *2 (-1086 (-838 (-224))))
+ (-5 *1 (-304)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-5 *2 (-639 *5))
+ (-5 *1 (-885 *4 *5)) (-4 *5 (-1207)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-348)) (-5 *2 (-112)) (-5 *1 (-215 *4 *3))
+ (-4 *3 (-1232 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-275 *4 *3))
+ (-4 *3 (-13 (-429 *4) (-997))))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1495 *4))))
- (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
- (-12
- (-5 *3
- (-2 (|:| |det| *12) (|:| |rows| (-639 (-562)))
- (|:| |cols| (-639 (-562)))))
- (-5 *4 (-683 *12)) (-5 *5 (-639 (-406 (-947 *9))))
- (-5 *6 (-639 (-639 *12))) (-5 *7 (-766)) (-5 *8 (-562))
- (-4 *9 (-13 (-306) (-146))) (-4 *12 (-944 *9 *11 *10))
- (-4 *10 (-13 (-845) (-610 (-1168)))) (-4 *11 (-788))
- (-5 *2
- (-2 (|:| |eqzro| (-639 *12)) (|:| |neqzro| (-639 *12))
- (|:| |wcond| (-639 (-947 *9)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1256 (-406 (-947 *9))))
- (|:| -3928 (-639 (-1256 (-406 (-947 *9)))))))))
- (-5 *1 (-919 *9 *10 *11 *12)))))
+ (-12 (-5 *3 (-639 (-838 (-224)))) (-5 *4 (-224)) (-5 *2 (-639 *4))
+ (-5 *1 (-266)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857))))
+ ((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)))))
(((*1 *2 *1) (-12 (-5 *2 (-639 (-960))) (-5 *1 (-109))))
((*1 *2 *1) (-12 (-5 *2 (-45 (-1150) (-769))) (-5 *1 (-114)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
- (-4 *4 (-1092)))))
-(((*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1150)) (-5 *1 (-304)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1033 (-562))) (-4 *1 (-301)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
-(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (-562)) (-5 *2 (-112)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-13 (-843) (-362))) (-5 *2 (-112)) (-5 *1 (-1054 *4 *3))
- (-4 *3 (-1232 *4)))))
-(((*1 *2 *3 *3 *2 *4)
- (-12 (-5 *3 (-683 *2)) (-5 *4 (-562))
- (-4 *2 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $)))))
- (-4 *5 (-1232 *2)) (-5 *1 (-498 *2 *5 *6)) (-4 *6 (-408 *2 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1115 *3 *4 *2 *5)) (-4 *4 (-1044)) (-4 *5 (-237 *3 *4))
- (-4 *2 (-237 *3 *4)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4))
- (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112))))
+ (-12 (-4 *4 (-348)) (-5 *2 (-417 *3)) (-5 *1 (-215 *4 *3))
+ (-4 *3 (-1232 *4))))
((*1 *2 *3)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1207))
- (-4 *5 (-372 *4)) (-4 *2 (-372 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *6 *2 *7)) (-4 *6 (-1044))
- (-4 *7 (-237 *4 *6)) (-4 *2 (-237 *5 *6)))))
+ (-12 (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3))
+ (-4 *3 (-1232 (-562)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 (-766))) (-5 *2 (-417 *3)) (-5 *1 (-441 *3))
+ (-4 *3 (-1232 (-562)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-639 (-766))) (-5 *5 (-766)) (-5 *2 (-417 *3))
+ (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3))
+ (-4 *3 (-1232 (-562)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-417 *3)) (-5 *1 (-1002 *3))
+ (-4 *3 (-1232 (-406 (-562))))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-417 *3)) (-5 *1 (-1221 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-362))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-1257))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-554))
+ (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-1227 *4 *3))
+ (-4 *3 (-1232 *4)))))
+(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (-562)) (-5 *2 (-112)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-505)) (-5 *3 (-1110)) (-5 *1 (-1107)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-554)) (-5 *2 (-112)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *6))
- (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 (-900 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
+ (-4 *4 (-1044)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-937)) (-5 *3 (-562)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4))))
+ (-12 (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4))))
(-5 *1 (-1133 *3 *4)) (-4 *3 (-13 (-1092) (-34)))
(-4 *4 (-13 (-1092) (-34))))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-562)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-766)) (-4 *5 (-171))))
- ((*1 *1 *1 *2 *1 *2)
- (-12 (-5 *2 (-562)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-766)) (-4 *5 (-171))))
- ((*1 *2 *2 *3)
- (-12
- (-5 *2
- (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4)
- (-246 *4 (-406 (-562)))))
- (-5 *3 (-639 (-859 *4))) (-14 *4 (-639 (-1168))) (-14 *5 (-766))
- (-5 *1 (-504 *4 *5)))))
-(((*1 *1 *1 *1) (-4 *1 (-301))) ((*1 *1 *1) (-4 *1 (-301))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-4 *6 (-1058 *3 *4 *5)) (-5 *1 (-620 *3 *4 *5 *6 *7 *2))
+ (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *2 (-1101 *3 *4 *5 *6)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788))
+ (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *3 (-1058 *4 *5 *6))
+ (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1501 *1))))
+ (-4 *1 (-1064 *4 *5 *6 *3)))))
+(((*1 *2 *1 *2)
+ (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-293 *2)) (-4 *2 (-721)) (-4 *2 (-1207)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-639 *5)) (-5 *4 (-639 *6)) (-4 *5 (-1092))
(-4 *6 (-1207)) (-5 *2 (-1 *6 *5)) (-5 *1 (-636 *5 *6))))
@@ -4641,23 +4640,62 @@
(-12 (-5 *3 (-639 *5)) (-5 *4 (-639 *2)) (-5 *6 (-1 *2 *5))
(-4 *5 (-1092)) (-4 *2 (-1207)) (-5 *1 (-636 *5 *2))))
((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (-143)) (-5 *2 (-766)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-855)) (-5 *3 (-128)) (-5 *2 (-766)))))
-(((*1 *1) (-5 *1 (-143))) ((*1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-5 *2 (-112)))))
-(((*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1150)) (-5 *1 (-781)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1256 *4)) (-5 *3 (-1112)) (-4 *4 (-348))
- (-5 *1 (-527 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3))))
- ((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
+(((*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-556 *3)) (-4 *3 (-544))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-5 *2 (-417 *3))
+ (-5 *1 (-737 *4 *5 *6 *3)) (-4 *3 (-944 *6 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306))
+ (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-417 (-1164 *7)))
+ (-5 *1 (-737 *4 *5 *6 *7)) (-5 *3 (-1164 *7))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-451)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *2 (-417 *1)) (-4 *1 (-944 *3 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-845)) (-4 *5 (-788)) (-4 *6 (-451)) (-5 *2 (-417 *3))
+ (-5 *1 (-974 *4 *5 *6 *3)) (-4 *3 (-944 *6 *5 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-451))
+ (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-417 (-1164 (-406 *7))))
+ (-5 *1 (-1163 *4 *5 *6 *7)) (-5 *3 (-1164 (-406 *7)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-417 *1)) (-4 *1 (-1211))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-417 *3)) (-5 *1 (-1235 *4 *3))
+ (-4 *3 (-13 (-1232 *4) (-554) (-10 -8 (-15 -1606 ($ $ $)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
+ (-14 *5 (-639 (-1168)))
+ (-5 *2
+ (-639 (-1138 *4 (-530 (-859 *6)) (-859 *6) (-775 *4 (-859 *6)))))
+ (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-330 *3)) (-4 *3 (-845)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1054 (-1019 *3) (-1164 (-1019 *3))))
+ (-5 *1 (-1019 *3)) (-4 *3 (-13 (-843) (-362) (-1017))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-112)) (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3))
+ (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3))
+ (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
+ ((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1007)) (-5 *2 (-857)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1200 *4 *5 *3 *6)) (-4 *4 (-554)) (-4 *5 (-788))
+ (-4 *3 (-845)) (-4 *6 (-1058 *4 *5 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-112)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1044)) (-5 *1 (-707 *3 *4))
+ (-4 *4 (-1232 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-754)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-639 (-947 *3))) (-4 *3 (-451))
+ (-5 *1 (-359 *3 *4)) (-14 *4 (-639 (-1168)))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-639 (-775 *3 (-859 *4)))) (-4 *3 (-451))
+ (-14 *4 (-639 (-1168))) (-5 *1 (-624 *3 *4)))))
(((*1 *2 *2)
(-12 (-4 *3 (-845)) (-5 *1 (-924 *3 *2)) (-4 *2 (-429 *3))))
((*1 *2 *3)
@@ -4665,304 +4703,506 @@
(((*1 *2 *1)
(-12 (-5 *2 (-639 *4)) (-5 *1 (-1133 *3 *4))
(-4 *3 (-13 (-1092) (-34))) (-4 *4 (-13 (-1092) (-34))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-1170 (-406 (-562))))
- (-5 *1 (-189)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-362) (-1033 (-406 *2)))) (-5 *2 (-562))
- (-5 *1 (-115 *4 *3)) (-4 *3 (-1232 *4)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *1 *1) (-5 *1 (-1056))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-362))
- (-5 *1 (-520 *2 *4 *5 *3)) (-4 *3 (-681 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2))
- (|has| *2 (-6 (-4404 "*"))) (-4 *2 (-1044))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-171))
- (-5 *1 (-682 *2 *4 *5 *3)) (-4 *3 (-681 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2))
- (-4 *5 (-237 *3 *2)) (|has| *2 (-6 (-4404 "*"))) (-4 *2 (-1044)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1164 *6)) (-4 *6 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *2 (-1164 *7)) (-5 *1 (-320 *4 *5 *6 *7))
- (-4 *7 (-944 *6 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 (-639 *2))) (-5 *4 (-639 *5))
- (-4 *5 (-38 (-406 (-562)))) (-4 *2 (-1247 *5))
- (-5 *1 (-1249 *5 *2)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-112)) (-5 *5 (-683 (-224)))
- (-5 *2 (-1030)) (-5 *1 (-750)))))
-(((*1 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
-(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-798)))))
+ (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4))))
- (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 *4)) (-4 *4 (-843)) (-4 *4 (-362)) (-5 *2 (-766))
- (-5 *1 (-940 *4 *5)) (-4 *5 (-1232 *4)))))
+ (-12 (-5 *3 (-639 (-262))) (-5 *4 (-1168)) (-5 *2 (-112))
+ (-5 *1 (-262)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-900 *4)) (-4 *4 (-1092)) (-5 *2 (-639 (-766)))
+ (-5 *1 (-899 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3))
+ (-4 *3 (-962)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-683 *7)) (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *6 *5))
+ (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
+ (-4 *6 (-788)) (-5 *1 (-919 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-750)))))
+(((*1 *1) (-5 *1 (-1171))))
+(((*1 *2 *1) (-12 (-4 *1 (-1113 *2)) (-4 *2 (-1207)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1148 *3)) (-4 *3 (-1092))
+ (-4 *3 (-1207)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-639 (-170)))))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *8 (-1058 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |val| (-639 *8))
+ (|:| |towers| (-639 (-1022 *5 *6 *7 *8)))))
+ (-5 *1 (-1022 *5 *6 *7 *8)) (-5 *3 (-639 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *8 (-1058 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |val| (-639 *8))
+ (|:| |towers| (-639 (-1138 *5 *6 *7 *8)))))
+ (-5 *1 (-1138 *5 *6 *7 *8)) (-5 *3 (-639 *8)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-608 *6))) (-5 *4 (-1168)) (-5 *2 (-608 *6))
+ (-4 *6 (-429 *5)) (-4 *5 (-845)) (-5 *1 (-571 *5 *6)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168))
- (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-315 *5)))
- (-5 *1 (-1121 *5))))
+ (-12 (-5 *3 (-1164 *5)) (-4 *5 (-451)) (-5 *2 (-639 *6))
+ (-5 *1 (-537 *5 *6 *4)) (-4 *6 (-362)) (-4 *4 (-13 (-362) (-843)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168)))
- (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-639 (-315 *5))))
- (-5 *1 (-1121 *5)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-362)) (-4 *3 (-1044))
- (-5 *1 (-1152 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171))))
- ((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1172)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-329)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-1044)))))
+ (-12 (-5 *3 (-947 *5)) (-4 *5 (-451)) (-5 *2 (-639 *6))
+ (-5 *1 (-537 *5 *6 *4)) (-4 *6 (-362)) (-4 *4 (-13 (-362) (-843))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-1058 *3 *4 *2)) (-4 *2 (-845))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 *2)) (-5 *1 (-178 *2)) (-4 *2 (-306))))
- ((*1 *2 *3 *2)
- (-12 (-5 *3 (-639 (-639 *4))) (-5 *2 (-639 *4)) (-4 *4 (-306))
- (-5 *1 (-178 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-639 *8))
- (-5 *4
- (-639
- (-2 (|:| -3928 (-683 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-683 *7)))))
- (-5 *5 (-766)) (-4 *8 (-1232 *7)) (-4 *7 (-1232 *6)) (-4 *6 (-348))
+ (|partial| -12 (-4 *4 (-13 (-362) (-146) (-1033 (-562))))
+ (-4 *5 (-1232 *4))
+ (-5 *2 (-2 (|:| -2929 (-406 *5)) (|:| |coeff| (-406 *5))))
+ (-5 *1 (-566 *4 *5)) (-5 *3 (-406 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-362)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5))
(-5 *2
- (-2 (|:| -3928 (-683 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-683 *7))))
- (-5 *1 (-497 *6 *7 *8))))
- ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
+ (-2 (|:| -1416 (-412 *4 (-406 *4) *5 *6)) (|:| |principalPart| *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362))
+ (-5 *2
+ (-2 (|:| |poly| *6) (|:| -2450 (-406 *6))
+ (|:| |special| (-406 *6))))
+ (-5 *1 (-722 *5 *6)) (-5 *3 (-406 *6))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-362)) (-5 *2 (-639 *3)) (-5 *1 (-891 *3 *4))
+ (-4 *3 (-1232 *4))))
+ ((*1 *2 *3 *4 *4)
+ (|partial| -12 (-5 *4 (-766)) (-4 *5 (-362))
+ (-5 *2 (-2 (|:| -1589 *3) (|:| -1603 *3))) (-5 *1 (-891 *3 *5))
+ (-4 *3 (-1232 *5))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112))
+ (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451))
+ (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1062 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112))
+ (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451))
+ (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1062 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112))
+ (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451))
+ (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1137 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112))
+ (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451))
+ (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))))
+(((*1 *2 *1) (-12 (-5 *2 (-482)) (-5 *1 (-217))))
+ ((*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207))))
+ ((*1 *2 *1) (-12 (-5 *2 (-482)) (-5 *1 (-670))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)))))
(((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-916)) (-5 *2 (-766)) (-5 *1 (-1093 *4 *5)) (-14 *4 *3)
(-14 *5 *3))))
(((*1 *2 *3 *2)
(-12 (-5 *1 (-673 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *5)))))
+ (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-608 *3)) (-4 *3 (-845)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-224))) (-5 *2 (-1256 (-693))) (-5 *1 (-304)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-562))
+ (-5 *1 (-448 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-639 (-1164 *7))) (-5 *3 (-1164 *7))
+ (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-904)) (-4 *5 (-788))
+ (-4 *6 (-845)) (-5 *1 (-901 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-639 (-1164 *5))) (-5 *3 (-1164 *5))
+ (-4 *5 (-1232 *4)) (-4 *4 (-904)) (-5 *1 (-902 *4 *5)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-1207)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1232 *6))
- (-4 *6 (-13 (-27) (-429 *5)))
- (-4 *5 (-13 (-845) (-554) (-1033 (-562)))) (-4 *8 (-1232 (-406 *7)))
- (-5 *2 (-583 *3)) (-5 *1 (-550 *5 *6 *7 *8 *3))
- (-4 *3 (-341 *6 *7 *8)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
- (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))))
+ (-12 (-5 *4 (-639 (-859 *5))) (-14 *5 (-639 (-1168))) (-4 *6 (-451))
+ (-5 *2 (-639 (-639 (-246 *5 *6)))) (-5 *1 (-470 *5 *6 *7))
+ (-5 *3 (-639 (-246 *5 *6))) (-4 *7 (-451)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-795))
- (-5 *3
- (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
- (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
- (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
- (|:| |abserr| (-224)) (|:| |relerr| (-224))))
- (-5 *2 (-1030)))))
-(((*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-52)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
-(((*1 *1)
- (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23))
- (-14 *4 *3))))
+ (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
+ (-4 *3 (-13 (-362) (-1192) (-997))))))
+(((*1 *2 *3)
+ (-12 (-14 *4 (-639 (-1168))) (-4 *5 (-451))
+ (-5 *2
+ (-2 (|:| |glbase| (-639 (-246 *4 *5))) (|:| |glval| (-639 (-562)))))
+ (-5 *1 (-627 *4 *5)) (-5 *3 (-639 (-246 *4 *5))))))
+(((*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1055))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1055)))))
+(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-1214))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1141 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *2 (-639 (-224)))
+ (-5 *1 (-467)))))
(((*1 *2 *2 *3)
(-12 (-5 *1 (-673 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 (-562)))
- (-5 *2 (-1256 (-562))) (-5 *1 (-1283 *4)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 *1)) (|has| *1 (-6 -4404)) (-4 *1 (-1005 *3))
+ (-4 *3 (-1207)))))
+(((*1 *2 *2) (-12 (-5 *2 (-639 (-315 (-224)))) (-5 *1 (-266)))))
(((*1 *1 *1)
(-12 (-4 *1 (-1095 *2 *3 *4 *5 *6)) (-4 *2 (-1092)) (-4 *3 (-1092))
(-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)))))
-(((*1 *2)
- (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
- (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261))
- (-5 *1 (-1065 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
- (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261))
- (-5 *1 (-1100 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
- (-5 *2
- (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
- (|:| |success| (-112))))
- (-5 *1 (-784)) (-5 *5 (-562)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1044)) (-5 *2 (-112)) (-5 *1 (-443 *4 *3))
+ (-4 *3 (-1232 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-857)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 (-766))
+ (-14 *4 (-766)) (-4 *5 (-171)))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-372 *2)) (-4 *2 (-1207))
+ (-4 *2 (-845))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4404))
+ (-4 *1 (-372 *3)) (-4 *3 (-1207)))))
(((*1 *2 *1)
(-12 (-4 *1 (-252 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-845))
(-4 *5 (-788)) (-4 *2 (-265 *4)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-845)) (-5 *2 (-639 (-639 *4))) (-5 *1 (-1178 *4))
- (-5 *3 (-639 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1256 (-1256 (-562)))) (-5 *3 (-916)) (-5 *1 (-465)))))
-(((*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-315 (-378))) (-5 *2 (-315 (-224))) (-5 *1 (-304)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *5 (-367))
- (-5 *2 (-766)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-766)) (-5 *2 (-112)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1131))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-639 (-406 (-947 (-562))))) (-5 *4 (-639 (-1168)))
+ (-5 *2 (-639 (-639 *5))) (-5 *1 (-379 *5))
+ (-4 *5 (-13 (-843) (-362)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-406 (-947 (-562)))) (-5 *2 (-639 *4)) (-5 *1 (-379 *4))
+ (-4 *4 (-13 (-843) (-362))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1164 *2)) (-4 *2 (-429 *4)) (-4 *4 (-13 (-845) (-554)))
+ (-5 *1 (-32 *4 *2)))))
(((*1 *1 *1)
(-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
(-4 *4 (-845))))
((*1 *1) (-4 *1 (-1143))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4403)) (-4 *1 (-234 *3))
+ (-4 *3 (-1092))))
+ ((*1 *1 *2 *1)
+ (-12 (|has| *1 (-6 -4403)) (-4 *1 (-234 *2)) (-4 *2 (-1092))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)) (-4 *2 (-1092))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-281 *3)) (-4 *3 (-1207))))
+ ((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-606 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-562)) (-4 *4 (-1092))
+ (-5 *1 (-732 *4))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-5 *1 (-732 *2)) (-4 *2 (-1092))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34)))
+ (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))))
(((*1 *1 *1)
(-12 (-4 *1 (-1095 *2 *3 *4 *5 *6)) (-4 *2 (-1092)) (-4 *3 (-1092))
(-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-900 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-938 *5)) (-5 *3 (-766)) (-4 *5 (-1044))
+ (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-639 *3)) (-4 *3 (-306)) (-5 *1 (-178 *3)))))
+(((*1 *1 *1 *1) (-5 *1 (-857))) ((*1 *1 *1) (-5 *1 (-857)))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1164 (-562))) (-5 *3 (-562)) (-4 *1 (-864 *4)))))
+(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
+ (|partial| -12 (-5 *4 (-639 *11)) (-5 *5 (-639 (-1164 *9)))
+ (-5 *6 (-639 *9)) (-5 *7 (-639 *12)) (-5 *8 (-639 (-766)))
+ (-4 *11 (-845)) (-4 *9 (-306)) (-4 *12 (-944 *9 *10 *11))
+ (-4 *10 (-788)) (-5 *2 (-639 (-1164 *12)))
+ (-5 *1 (-702 *10 *11 *9 *12)) (-5 *3 (-1164 *12)))))
+(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-435)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
+ (-12 (-5 *4 (-562)) (-5 *5 (-1150)) (-5 *6 (-683 (-224)))
+ (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))))
+ (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))
+ (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))))
(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-562))) (-5 *1 (-1042)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-971 *4 *5 *6 *3)) (-4 *4 (-1044)) (-4 *5 (-788))
- (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-4 *4 (-554))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-869)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1092) (-34)))
- (-4 *3 (-13 (-1092) (-34))))))
+ (-12 (-5 *3 (-562)) (|has| *1 (-6 -4394)) (-4 *1 (-403))
+ (-5 *2 (-916)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-367)) (-4 *2 (-1092)))))
-(((*1 *2 *3) (-12 (-5 *3 (-639 *2)) (-5 *1 (-1181 *2)) (-4 *2 (-362)))))
-(((*1 *2 *3 *3 *4)
(-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
(-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4))))
- (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2))
- (-4 *2 (-429 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1084 *2)) (-4 *2 (-429 *4)) (-4 *4 (-13 (-845) (-554)))
- (-5 *1 (-157 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1084 *1)) (-4 *1 (-159))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-159)) (-5 *2 (-1168)))))
+ (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1501 *4))))
+ (-5 *1 (-771 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *2 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-683 *4)) (-5 *3 (-766)) (-4 *4 (-1044))
+ (-5 *1 (-684 *4)))))
(((*1 *1 *2) (-12 (-4 *1 (-660 *2)) (-4 *2 (-1207))))
((*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1168)))))
+(((*1 *2) (-12 (-5 *2 (-639 (-766))) (-5 *1 (-1259))))
+ ((*1 *2 *2) (-12 (-5 *2 (-639 (-766))) (-5 *1 (-1259)))))
+(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-746)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2))
+ (-4 *4 (-372 *2)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
- (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
-(((*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-683 (-315 (-224)))) (-5 *2 (-378)) (-5 *1 (-204)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4))))
- (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+ (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845))
+ (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-639 *4)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-293 *3))) (-5 *1 (-293 *3)) (-4 *3 (-554))
+ (-4 *3 (-1207)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-916)) (-4 *5 (-554)) (-5 *2 (-683 *5))
+ (-5 *1 (-951 *5 *3)) (-4 *3 (-650 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1092) (-1033 *5)))
- (-4 *5 (-881 *4)) (-4 *4 (-1092)) (-5 *2 (-1 (-112) *5))
- (-5 *1 (-926 *4 *5 *6)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-639 (-505))) (-5 *2 (-505)) (-5 *1 (-482)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-639 *3)) (-4 *3 (-306)) (-5 *1 (-178 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
+ (-12 (-5 *3 (-1168)) (-5 *2 (-535)) (-5 *1 (-534 *4))
+ (-4 *4 (-1207)))))
+(((*1 *1 *2) (-12 (-5 *2 (-315 (-168 (-378)))) (-5 *1 (-329))))
+ ((*1 *1 *2) (-12 (-5 *2 (-315 (-562))) (-5 *1 (-329))))
+ ((*1 *1 *2) (-12 (-5 *2 (-315 (-378))) (-5 *1 (-329))))
+ ((*1 *1 *2) (-12 (-5 *2 (-315 (-688))) (-5 *1 (-329))))
+ ((*1 *1 *2) (-12 (-5 *2 (-315 (-695))) (-5 *1 (-329))))
+ ((*1 *1 *2) (-12 (-5 *2 (-315 (-693))) (-5 *1 (-329))))
+ ((*1 *1) (-5 *1 (-329))))
(((*1 *2 *3)
- (-12 (-5 *2 (-639 (-1164 (-562)))) (-5 *1 (-190)) (-5 *3 (-562)))))
+ (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
+ (-4 *3 (-13 (-362) (-1192) (-997))))))
+(((*1 *2 *2 *3)
+ (|partial| -12
+ (-5 *3 (-639 (-2 (|:| |func| *2) (|:| |pole| (-112)))))
+ (-4 *2 (-13 (-429 *4) (-997))) (-4 *4 (-13 (-845) (-554)))
+ (-5 *1 (-275 *4 *2)))))
+(((*1 *1 *1) (-12 (-5 *1 (-604 *2)) (-4 *2 (-1092))))
+ ((*1 *1 *1) (-5 *1 (-628))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-816)) (-5 *4 (-52)) (-5 *2 (-1261)) (-5 *1 (-826)))))
-(((*1 *2)
- (-12 (-4 *3 (-554)) (-5 *2 (-639 (-683 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-416 *3)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))))
-(((*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-486)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-362)) (-5 *1 (-891 *2 *3))
- (-4 *2 (-1232 *3)))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-554)) (-4 *2 (-171)))))
-(((*1 *1 *1) (|partial| -4 *1 (-1143))))
-(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))))
+ (|partial| -12 (-5 *4 (-1168)) (-4 *5 (-610 (-887 (-562))))
+ (-4 *5 (-881 (-562)))
+ (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562))))
+ (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
+ (-5 *1 (-565 *5 *3)) (-4 *3 (-625))
+ (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
+(((*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-216)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1044)) (-4 *3 (-1232 *4)) (-4 *2 (-1247 *4))
+ (-5 *1 (-1250 *4 *3 *5 *2)) (-4 *5 (-650 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
(((*1 *2 *1) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192)))))
((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857))))
((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1092)) (-5 *2 (-1150)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-562)) (-5 *1 (-378)))))
+(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1177)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-567 *3)) (-4 *3 (-1033 (-562)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
+ (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
+(((*1 *2 *3 *1 *4)
+ (-12 (-5 *3 (-1132 *5 *6)) (-5 *4 (-1 (-112) *6 *6))
+ (-4 *5 (-13 (-1092) (-34))) (-4 *6 (-13 (-1092) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1133 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-766)) (-4 *5 (-1044)) (-5 *2 (-562))
+ (-5 *1 (-442 *5 *3 *6)) (-4 *3 (-1232 *5))
+ (-4 *6 (-13 (-403) (-1033 *5) (-362) (-1192) (-283)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *4 *3 *5))
+ (-4 *3 (-1232 *4))
+ (-4 *5 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))))))
+(((*1 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-91 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-348)) (-5 *2 (-417 *3)) (-5 *1 (-215 *4 *3))
- (-4 *3 (-1232 *4))))
+ (-12 (-4 *2 (-362)) (-4 *2 (-843)) (-5 *1 (-940 *2 *3))
+ (-4 *3 (-1232 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-819)) (-5 *1 (-820)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
+ (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030))
+ (-5 *1 (-750)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-608 *2))) (-5 *4 (-639 (-1168)))
+ (-4 *2 (-13 (-429 (-168 *5)) (-997) (-1192)))
+ (-4 *5 (-13 (-554) (-845))) (-5 *1 (-596 *5 *6 *2))
+ (-4 *6 (-13 (-429 *5) (-997) (-1192))))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562))))
((*1 *2 *3)
- (-12 (-5 *2 (-417 *3)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3))
- (-4 *3 (-1232 (-562)))))
+ (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-683 *2)) (-4 *2 (-171)) (-5 *1 (-145 *2))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-171)) (-4 *2 (-1232 *4)) (-5 *1 (-176 *4 *2 *3))
+ (-4 *3 (-719 *4 *2))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 (-766))) (-5 *2 (-417 *3)) (-5 *1 (-441 *3))
- (-4 *3 (-1232 (-562)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-639 (-766))) (-5 *5 (-766)) (-5 *2 (-417 *3))
- (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-766)) (-5 *2 (-417 *3)) (-5 *1 (-441 *3))
- (-4 *3 (-1232 (-562)))))
+ (-12 (-5 *3 (-683 (-406 (-947 *5)))) (-5 *4 (-1168))
+ (-5 *2 (-947 *5)) (-5 *1 (-291 *5)) (-4 *5 (-451))))
((*1 *2 *3)
- (-12 (-5 *2 (-417 *3)) (-5 *1 (-1002 *3))
- (-4 *3 (-1232 (-406 (-562))))))
+ (-12 (-5 *3 (-683 (-406 (-947 *4)))) (-5 *2 (-947 *4))
+ (-5 *1 (-291 *4)) (-4 *4 (-451))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-171)) (-4 *2 (-1232 *3))))
((*1 *2 *3)
- (-12 (-5 *2 (-417 *3)) (-5 *1 (-1221 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-293 *2)) (-4 *2 (-721)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1200 *4 *5 *3 *6)) (-4 *4 (-554)) (-4 *5 (-788))
- (-4 *3 (-845)) (-4 *6 (-1058 *4 *5 *3)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-750)))))
+ (-12 (-5 *3 (-683 (-168 (-406 (-562)))))
+ (-5 *2 (-947 (-168 (-406 (-562))))) (-5 *1 (-759 *4))
+ (-4 *4 (-13 (-362) (-843)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 (-168 (-406 (-562))))) (-5 *4 (-1168))
+ (-5 *2 (-947 (-168 (-406 (-562))))) (-5 *1 (-759 *5))
+ (-4 *5 (-13 (-362) (-843)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *2 (-947 (-406 (-562))))
+ (-5 *1 (-774 *4)) (-4 *4 (-13 (-362) (-843)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *4 (-1168))
+ (-5 *2 (-947 (-406 (-562)))) (-5 *1 (-774 *5))
+ (-4 *5 (-13 (-362) (-843))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *1) (-12 (-5 *2 (-182)) (-5 *1 (-279)))))
+(((*1 *1 *2 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1150)) (-5 *1 (-984))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-1086 *4)) (-4 *4 (-1207))
+ (-5 *1 (-1084 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1168))
+ (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *2 (-1 *5 *5)) (-5 *1 (-799 *4 *5))
+ (-4 *5 (-13 (-29 *4) (-1192) (-954))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-1214))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1131))))
-(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
- (|partial| -12 (-5 *4 (-639 *11)) (-5 *5 (-639 (-1164 *9)))
- (-5 *6 (-639 *9)) (-5 *7 (-639 *12)) (-5 *8 (-639 (-766)))
- (-4 *11 (-845)) (-4 *9 (-306)) (-4 *12 (-944 *9 *10 *11))
- (-4 *10 (-788)) (-5 *2 (-639 (-1164 *12)))
- (-5 *1 (-702 *10 *11 *9 *12)) (-5 *3 (-1164 *12)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
-(((*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-216)))))
-(((*1 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))))
+ (-12 (-5 *4 (-562)) (-5 *2 (-639 (-2 (|:| -1635 *3) (|:| -2250 *4))))
+ (-5 *1 (-690 *3)) (-4 *3 (-1232 *4)))))
(((*1 *2 *3)
(-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4))
(-5 *2 (-417 *3)) (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))))
+(((*1 *2 *3 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |cycle?| (-112)) (|:| -2177 (-766)) (|:| |period| (-766))))
+ (-5 *1 (-1148 *4)) (-4 *4 (-1207)) (-5 *3 (-766)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4)
+ (-246 *4 (-406 (-562)))))
+ (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-112))
+ (-5 *1 (-504 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *3))
+ (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-639 *3)) (-4 *3 (-1058 *4 *5 *6)) (-4 *4 (-554))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-639 *7) (-639 *7))) (-5 *2 (-639 *7))
+ (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788))
+ (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1164 *7)) (-4 *5 (-1044))
+ (-4 *7 (-1044)) (-4 *2 (-1232 *5)) (-5 *1 (-500 *5 *2 *6 *7))
+ (-4 *6 (-1232 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1044)) (-4 *7 (-1044))
+ (-4 *4 (-1232 *5)) (-5 *2 (-1164 *7)) (-5 *1 (-500 *5 *4 *6 *7))
+ (-4 *6 (-1232 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 *10))
+ (-5 *1 (-620 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1064 *5 *6 *7 *8))
+ (-4 *10 (-1101 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451))
+ (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1041 *5 *6)))
+ (-5 *1 (-624 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451))
+ (-14 *6 (-639 (-1168)))
+ (-5 *2
+ (-639 (-1138 *5 (-530 (-859 *6)) (-859 *6) (-775 *5 (-859 *6)))))
+ (-5 *1 (-624 *5 *6))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-639 (-1022 *5 *6 *7 *8))) (-5 *1 (-1022 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-639 (-1022 *5 *6 *7 *8))) (-5 *1 (-1022 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451))
+ (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1041 *5 *6)))
+ (-5 *1 (-1041 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 *1))
+ (-4 *1 (-1064 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-639 (-1138 *5 *6 *7 *8))) (-5 *1 (-1138 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-639 (-1138 *5 *6 *7 *8))) (-5 *1 (-1138 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1))
+ (-4 *1 (-1200 *4 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-114)) (-4 *2 (-1092)) (-4 *2 (-845))
+ (-5 *1 (-113 *2)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-562)) (-4 *4 (-13 (-554) (-146))) (-5 *1 (-536 *4 *2))
+ (-4 *2 (-1247 *4))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-562)) (-4 *4 (-13 (-362) (-367) (-610 *3)))
+ (-4 *5 (-1232 *4)) (-4 *6 (-719 *4 *5)) (-5 *1 (-540 *4 *5 *6 *2))
+ (-4 *2 (-1247 *6))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-562)) (-4 *4 (-13 (-362) (-367) (-610 *3)))
+ (-5 *1 (-541 *4 *2)) (-4 *2 (-1247 *4))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-13 (-554) (-146)))
+ (-5 *1 (-1144 *4)))))
(((*1 *2)
(-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5)))
(-5 *2 (-766)) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6))))
@@ -4970,206 +5210,108 @@
(-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
(-4 *5 (-1232 (-406 *4))) (-5 *2 (-766))))
((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-417 *3)) (-4 *3 (-554)))))
-(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
- (-12 (-5 *3 (-1150)) (-5 *5 (-683 (-224))) (-5 *6 (-224))
- (-5 *7 (-683 (-562))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-747)))))
-(((*1 *2 *1) (-12 (-5 *2 (-182)) (-5 *1 (-279)))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1150)) (-5 *1 (-984))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-1086 *4)) (-4 *4 (-1207))
- (-5 *1 (-1084 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 *3)) (-4 *3 (-944 *5 *6 *7)) (-4 *5 (-451))
- (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
- (-5 *1 (-448 *5 *6 *7 *3)))))
-(((*1 *1) (-5 *1 (-818))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-252 *2 *3 *4 *5)) (-4 *2 (-1044)) (-4 *3 (-845))
- (-4 *4 (-265 *3)) (-4 *5 (-788)))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-1172)) (-5 *1 (-1171)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1229 *4 *5)) (-5 *3 (-639 *5)) (-14 *4 (-1168))
+ (-4 *5 (-362)) (-5 *1 (-918 *4 *5))))
((*1 *2 *3 *3)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-639 *10)) (-5 *5 (-112)) (-4 *10 (-1064 *6 *7 *8 *9))
- (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
- (-4 *9 (-1058 *6 *7 *8))
- (-5 *2
- (-639
- (-2 (|:| -3342 (-639 *9)) (|:| -1495 *10) (|:| |ineq| (-639 *9)))))
- (-5 *1 (-983 *6 *7 *8 *9 *10)) (-5 *3 (-639 *9))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-639 *10)) (-5 *5 (-112)) (-4 *10 (-1064 *6 *7 *8 *9))
- (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
- (-4 *9 (-1058 *6 *7 *8))
- (-5 *2
- (-639
- (-2 (|:| -3342 (-639 *9)) (|:| -1495 *10) (|:| |ineq| (-639 *9)))))
- (-5 *1 (-1099 *6 *7 *8 *9 *10)) (-5 *3 (-639 *9)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-562)) (-4 *3 (-171)) (-4 *5 (-372 *3))
- (-4 *6 (-372 *3)) (-5 *1 (-682 *3 *5 *6 *2))
- (-4 *2 (-681 *3 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+ (-12 (-5 *3 (-639 *5)) (-4 *5 (-362)) (-5 *2 (-1164 *5))
+ (-5 *1 (-918 *4 *5)) (-14 *4 (-1168))))
+ ((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-639 *6)) (-5 *4 (-766)) (-4 *6 (-362))
+ (-5 *2 (-406 (-947 *6))) (-5 *1 (-1045 *5 *6)) (-14 *5 (-1168)))))
+(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1209)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))))
+(((*1 *1 *1 *1) (-4 *1 (-962))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-528)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-916)) (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044))
+ (-4 *4 (-787))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-406 (-562))) (-4 *1 (-1237 *3)) (-4 *3 (-1044)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-224)))) (-5 *1 (-921)))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-677 *4 *3)) (-4 *4 (-1092))
- (-4 *3 (-1092)))))
+ (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-306))
+ (-5 *2 (-406 (-417 (-947 *4)))) (-5 *1 (-1037 *4)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-417 *3)) (-4 *3 (-554)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-1044)) (-5 *1 (-707 *3 *2)) (-4 *2 (-1232 *3)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-151 *2 *3 *4)) (-14 *2 (-916)) (-4 *3 (-362))
- (-14 *4 (-988 *2 *3))))
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3))))
((*1 *1 *1)
+ (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168))
+ (-14 *4 *2))))
+(((*1 *2 *1 *3 *3)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-600 *3 *4)) (-4 *3 (-1092))
+ (-4 *4 (-1207)) (-5 *2 (-1261)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-1102)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1164 (-947 *6))) (-4 *6 (-554))
+ (-4 *2 (-944 (-406 (-947 *6)) *5 *4)) (-5 *1 (-727 *5 *4 *6 *2))
+ (-4 *5 (-788))
+ (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857))))
+ ((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -1923 (-639 (-857))) (|:| -1593 (-639 (-857)))
+ (|:| |presup| (-639 (-857))) (|:| -3142 (-639 (-857)))
+ (|:| |args| (-639 (-857)))))
+ (-5 *1 (-1168)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1501 *4))))
+ (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-348)) (-5 *2 (-417 (-1164 (-1164 *4))))
+ (-5 *1 (-1205 *4)) (-5 *3 (-1164 (-1164 *4))))))
+(((*1 *1 *1 *1)
(|partial| -12 (-4 *2 (-171)) (-5 *1 (-288 *2 *3 *4 *5 *6 *7))
(-4 *3 (-1232 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
(-14 *6 (-1 (-3 *4 "failed") *4 *4))
(-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-171)) (-4 *2 (-554))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *2 (-171))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-5 *1 (-706 *2 *3 *4 *5 *6)) (-4 *2 (-171))
(-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
(-14 *5 (-1 (-3 *3 "failed") *3 *3))
(-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
- ((*1 *1 *1) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362))))
- ((*1 *1) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362))))
- ((*1 *1 *1) (|partial| -4 *1 (-717)))
- ((*1 *1 *1) (|partial| -4 *1 (-721)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
- (-5 *1 (-771 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-4 *1 (-1061 *3 *2)) (-4 *3 (-13 (-843) (-362)))
- (-4 *2 (-1232 *3))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-306)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4))
- (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
- (-5 *1 (-1116 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| |polnum| (-777 *3)) (|:| |polden| *3) (|:| -3761 (-766))))
- (-5 *1 (-777 *3)) (-4 *3 (-1044))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -3761 (-766))))
- (-4 *1 (-1058 *3 *4 *5)))))
-(((*1 *1 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171))))
- ((*1 *1 *1 *1) (-4 *1 (-472)))
- ((*1 *1 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171))))
- ((*1 *2 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-878))))
- ((*1 *1 *1) (-5 *1 (-966)))
- ((*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))))
-(((*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259))))
- ((*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))))
-(((*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-683 *11)) (-5 *4 (-639 (-406 (-947 *8))))
- (-5 *5 (-766)) (-5 *6 (-1150)) (-4 *8 (-13 (-306) (-146)))
- (-4 *11 (-944 *8 *10 *9)) (-4 *9 (-13 (-845) (-610 (-1168))))
- (-4 *10 (-788))
- (-5 *2
- (-2
- (|:| |rgl|
- (-639
- (-2 (|:| |eqzro| (-639 *11)) (|:| |neqzro| (-639 *11))
- (|:| |wcond| (-639 (-947 *8)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1256 (-406 (-947 *8))))
- (|:| -3928 (-639 (-1256 (-406 (-947 *8))))))))))
- (|:| |rgsz| (-562))))
- (-5 *1 (-919 *8 *9 *10 *11)) (-5 *7 (-562)))))
-(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-1212))))))
-(((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))))
-(((*1 *2 *1) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192)))))
- ((*1 *1 *1 *1) (-4 *1 (-788))))
-(((*1 *1 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)) (-4 *2 (-554))))
- ((*1 *1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030))
- (-5 *1 (-750)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-224)) (-5 *4 (-562))
- (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030))
- (-5 *1 (-743)))))
-(((*1 *2) (-12 (-4 *3 (-171)) (-5 *2 (-1256 *1)) (-4 *1 (-366 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3))
- (-4 *3 (-1232 *2)))))
-(((*1 *1 *1) (-12 (-5 *1 (-961 *2)) (-4 *2 (-962)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857))))
- ((*1 *2 *1)
- (-12
- (-5 *2
- (-2 (|:| -3562 (-639 (-857))) (|:| -3659 (-639 (-857)))
- (|:| |presup| (-639 (-857))) (|:| -2074 (-639 (-857)))
- (|:| |args| (-639 (-857)))))
- (-5 *1 (-1168)))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *2 (-171))
+ (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
+ (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-639 *5) *6))
- (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5))
- (-5 *2 (-639 (-2 (|:| |poly| *6) (|:| -3342 *3))))
- (-5 *1 (-804 *5 *6 *3 *7)) (-4 *3 (-650 *6))
- (-4 *7 (-650 (-406 *6)))))
+ (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *4 (-639 (-1168)))
+ (-5 *2 (-683 (-315 (-224)))) (-5 *1 (-204))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-639 *5) *6))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-4 *6 (-1232 *5))
- (-5 *2 (-639 (-2 (|:| |poly| *6) (|:| -3342 (-648 *6 (-406 *6))))))
- (-5 *1 (-807 *5 *6)) (-5 *3 (-648 *6 (-406 *6))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-739 *3)) (-4 *3 (-171)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-766)) (-4 *6 (-1092)) (-4 *3 (-895 *6))
- (-5 *2 (-683 *3)) (-5 *1 (-686 *6 *3 *7 *4)) (-4 *7 (-372 *3))
- (-4 *4 (-13 (-372 *6) (-10 -7 (-6 -4402)))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2835 *4)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1150)) (-5 *3 (-818)) (-5 *1 (-817)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1164 *1)) (-5 *4 (-1168)) (-4 *1 (-27))
- (-5 *2 (-639 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1164 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-947 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-639 *1))
- (-4 *1 (-29 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *2 (-639 *1)) (-4 *1 (-29 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
+ (-12 (-4 *5 (-1092)) (-4 *6 (-895 *5)) (-5 *2 (-683 *6))
+ (-5 *1 (-686 *5 *6 *3 *4)) (-4 *3 (-372 *6))
+ (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-315 (-224)))) (-5 *2 (-112)) (-5 *1 (-266))))
+ ((*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-112)) (-5 *1 (-266))))
((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+ (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))))
+(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
+ (-12 (-5 *3 (-1150)) (-5 *5 (-683 (-224))) (-5 *6 (-224))
+ (-5 *7 (-683 (-562))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-747)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-916))
- (-5 *2
- (-3 (-1164 *4)
- (-1256 (-639 (-2 (|:| -2534 *4) (|:| -2466 (-1112)))))))
- (-5 *1 (-345 *4)) (-4 *4 (-348)))))
-(((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259))))
- ((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))))
-(((*1 *2 *3 *4 *4 *5)
- (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-639 *3))
- (-4 *3 (-13 (-429 *6) (-27) (-1192)))
- (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-564 *6 *3 *7)) (-4 *7 (-1092)))))
+ (-12 (-4 *4 (-348)) (-5 *2 (-417 (-1164 (-1164 *4))))
+ (-5 *1 (-1205 *4)) (-5 *3 (-1164 (-1164 *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044))
+ (-5 *2 (-947 *5)) (-5 *1 (-939 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1207)) (-5 *2 (-639 *1)) (-4 *1 (-1005 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-1156 *3 *4))) (-5 *1 (-1156 *3 *4))
+ (-14 *3 (-916)) (-4 *4 (-1044)))))
+(((*1 *2 *3) (-12 (-5 *3 (-817)) (-5 *2 (-52)) (-5 *1 (-824)))))
(((*1 *2 *3)
(-12 (-4 *4 (-1044))
(-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283)))
@@ -5184,357 +5326,239 @@
((*1 *2 *1)
(-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-997))
(-4 *2 (-1044)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
- (-5 *2 (-1030)) (-5 *1 (-747)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-467)) (-5 *3 (-639 (-262))) (-5 *1 (-1257))))
- ((*1 *1 *1) (-5 *1 (-1257))))
-(((*1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-529 *3)) (-4 *3 (-13 (-721) (-25))))))
-(((*1 *2 *3 *4 *3 *4 *4 *4)
- (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030))
- (-5 *1 (-751)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
- (-4 *6 (-788)) (-4 *7 (-944 *4 *6 *5))
- (-5 *2
- (-2 (|:| |sysok| (-112)) (|:| |z0| (-639 *7)) (|:| |n0| (-639 *7))))
- (-5 *1 (-919 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-429 *3) (-997))) (-5 *1 (-275 *3 *2))
- (-4 *3 (-13 (-845) (-554))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-788)) (-4 *5 (-1044)) (-4 *6 (-944 *5 *4 *2))
+ (-4 *2 (-845)) (-5 *1 (-945 *4 *2 *5 *6 *3))
+ (-4 *3
+ (-13 (-362)
+ (-10 -8 (-15 -4053 ($ *6)) (-15 -4063 (*6 $))
+ (-15 -4079 (*6 $)))))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554))
+ (-5 *2 (-1168)) (-5 *1 (-1038 *4)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-1179 *3)))))
+ (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-4 *1 (-898 *3)))))
+(((*1 *1 *2 *2 *3 *1)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-1096)) (-5 *1 (-290)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-1044))
+ (-5 *1 (-1152 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-562)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044))
+ (-14 *4 (-1168)) (-14 *5 *3))))
+(((*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-544))))
+ ((*1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 *3)) (-4 *3 (-944 *5 *6 *7)) (-4 *5 (-451))
+ (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
+ (-5 *1 (-448 *5 *6 *7 *3)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
- (-4 *3 (-13 (-362) (-1192) (-997))))))
-(((*1 *2 *1 *3 *3 *3 *2)
- (-12 (-5 *3 (-766)) (-5 *1 (-669 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
-(((*1 *2)
- (-12 (-14 *4 (-766)) (-4 *5 (-1207)) (-5 *2 (-133))
- (-5 *1 (-236 *3 *4 *5)) (-4 *3 (-237 *4 *5))))
- ((*1 *2)
- (-12 (-4 *4 (-362)) (-5 *2 (-133)) (-5 *1 (-327 *3 *4))
- (-4 *3 (-328 *4))))
- ((*1 *2)
- (-12 (-5 *2 (-766)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
- (-4 *5 (-171))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-562))
- (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788))
- (-5 *2 (-562)) (-5 *1 (-503 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-975 *3)) (-4 *3 (-1044)) (-5 *2 (-916))))
- ((*1 *2) (-12 (-4 *1 (-1263 *3)) (-4 *3 (-362)) (-5 *2 (-133)))))
-(((*1 *1 *1 *1) (-4 *1 (-756))))
-(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1177)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+ (-12 (-5 *3 (-1134 *4 *2)) (-14 *4 (-916))
+ (-4 *2 (-13 (-1044) (-10 -7 (-6 (-4405 "*")))))
+ (-5 *1 (-897 *4 *2)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1208 *2))
- (-4 *2 (-1092))))
+ (-12 (-5 *4 (-1168))
+ (-4 *5 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *2
+ (-2 (|:| |func| *3) (|:| |kers| (-639 (-608 *3)))
+ (|:| |vals| (-639 *3))))
+ (-5 *1 (-276 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
+(((*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-639 *3)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-416 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-562)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-191))))
((*1 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-845))
- (-5 *1 (-1208 *2)))))
+ (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-299))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-304)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
- (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))))
-(((*1 *1 *1) (-5 *1 (-1056))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1054 (-1019 *4) (-1164 (-1019 *4)))) (-5 *3 (-857))
- (-5 *1 (-1019 *4)) (-4 *4 (-13 (-843) (-362) (-1017))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-766)) (-5 *4 (-562)) (-5 *1 (-444 *2)) (-4 *2 (-1044)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN))))
- (-5 *2 (-1030)) (-5 *1 (-743)))))
+ (-12 (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787))
+ (-5 *2 (-766))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092))
+ (-5 *2 (-766))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-766)) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044))
+ (-4 *4 (-721)))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *1) (-5 *1 (-818))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *4)) (-4 *4 (-1044)) (-5 *2 (-1256 *4))
+ (-5 *1 (-1169 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-916)) (-5 *2 (-1256 *3)) (-5 *1 (-1169 *3))
+ (-4 *3 (-1044)))))
+(((*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259))))
+ ((*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-279))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
+ (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1279 *3 *4)) (-4 *3 (-1044))
+ (-4 *4 (-841)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-306)) (-4 *3 (-987 *2)) (-4 *4 (-1232 *3))
+ (-5 *1 (-412 *2 *3 *4 *5)) (-4 *5 (-13 (-408 *3 *4) (-1033 *3))))))
+(((*1 *2)
+ (-12 (-5 *2 (-1256 (-1093 *3 *4))) (-5 *1 (-1093 *3 *4))
+ (-14 *3 (-916)) (-14 *4 (-916)))))
(((*1 *2 *3 *4)
(-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
(-5 *1 (-700 *3 *4)) (-4 *3 (-1207)) (-4 *4 (-1207)))))
(((*1 *2) (-12 (-5 *2 (-838 (-562))) (-5 *1 (-533))))
((*1 *1) (-12 (-5 *1 (-838 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
- (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562))
- (-5 *2 (-1030)) (-5 *1 (-751)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 *5)) (-4 *5 (-1232 *3)) (-4 *3 (-306))
- (-5 *2 (-112)) (-5 *1 (-454 *3 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *3 *4 *2 *5 *6)
- (-12
- (-5 *5
- (-2 (|:| |done| (-639 *11))
- (|:| |todo| (-639 (-2 (|:| |val| *3) (|:| -1495 *11))))))
- (-5 *6 (-766))
- (-5 *2 (-639 (-2 (|:| |val| (-639 *10)) (|:| -1495 *11))))
- (-5 *3 (-639 *10)) (-5 *4 (-639 *11)) (-4 *10 (-1058 *7 *8 *9))
- (-4 *11 (-1064 *7 *8 *9 *10)) (-4 *7 (-451)) (-4 *8 (-788))
- (-4 *9 (-845)) (-5 *1 (-1062 *7 *8 *9 *10 *11))))
- ((*1 *2 *3 *4 *2 *5 *6)
- (-12
- (-5 *5
- (-2 (|:| |done| (-639 *11))
- (|:| |todo| (-639 (-2 (|:| |val| *3) (|:| -1495 *11))))))
- (-5 *6 (-766))
- (-5 *2 (-639 (-2 (|:| |val| (-639 *10)) (|:| -1495 *11))))
- (-5 *3 (-639 *10)) (-5 *4 (-639 *11)) (-4 *10 (-1058 *7 *8 *9))
- (-4 *11 (-1101 *7 *8 *9 *10)) (-4 *7 (-451)) (-4 *8 (-788))
- (-4 *9 (-845)) (-5 *1 (-1137 *7 *8 *9 *10 *11)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
- (-4 *3 (-13 (-362) (-1192) (-997))))))
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2))
+ (-4 *4 (-13 (-845) (-554))))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-417 *2)) (-4 *2 (-306)) (-5 *1 (-909 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168))
+ (-4 *5 (-13 (-306) (-146))) (-5 *2 (-52)) (-5 *1 (-910 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-417 (-947 *6))) (-5 *5 (-1168)) (-5 *3 (-947 *6))
+ (-4 *6 (-13 (-306) (-146))) (-5 *2 (-52)) (-5 *1 (-910 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-190)) (-5 *3 (-562))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-778 *2)) (-4 *2 (-171))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-252 *2 *3 *4 *5)) (-4 *2 (-1044)) (-4 *3 (-845))
+ (-4 *4 (-265 *3)) (-4 *5 (-788)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-562)) (-5 *4 (-417 *2)) (-4 *2 (-944 *7 *5 *6))
- (-5 *1 (-737 *5 *6 *7 *2)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-306)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-554)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-362) (-301)
- (-10 -8 (-15 -4065 ((-1117 *3 (-608 $)) $))
- (-15 -4076 ((-1117 *3 (-608 $)) $))
- (-15 -4054 ($ (-1117 *3 (-608 $)))))))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-554)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-362) (-301)
- (-10 -8 (-15 -4065 ((-1117 *3 (-608 $)) $))
- (-15 -4076 ((-1117 *3 (-608 $)) $))
- (-15 -4054 ($ (-1117 *3 (-608 $)))))))))
+ (|partial| -12 (-5 *3 (-114)) (-5 *4 (-639 *2)) (-5 *1 (-113 *2))
+ (-4 *2 (-1092))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 *2))
- (-4 *2
- (-13 (-362) (-301)
- (-10 -8 (-15 -4065 ((-1117 *4 (-608 $)) $))
- (-15 -4076 ((-1117 *4 (-608 $)) $))
- (-15 -4054 ($ (-1117 *4 (-608 $)))))))
- (-4 *4 (-554)) (-5 *1 (-41 *4 *2))))
+ (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-639 *4))) (-4 *4 (-1092))
+ (-5 *1 (-113 *4))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 (-608 *2)))
- (-4 *2
- (-13 (-362) (-301)
- (-10 -8 (-15 -4065 ((-1117 *4 (-608 $)) $))
- (-15 -4076 ((-1117 *4 (-608 $)) $))
- (-15 -4054 ($ (-1117 *4 (-608 $)))))))
- (-4 *4 (-554)) (-5 *1 (-41 *4 *2)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1094 *3)) (-5 *1 (-900 *3)) (-4 *3 (-367))
- (-4 *3 (-1092)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-639 (-683 *6))) (-5 *4 (-112)) (-5 *5 (-562))
- (-5 *2 (-683 *6)) (-5 *1 (-1024 *6)) (-4 *6 (-362)) (-4 *6 (-1044))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 (-683 *4))) (-5 *2 (-683 *4)) (-5 *1 (-1024 *4))
- (-4 *4 (-362)) (-4 *4 (-1044))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-639 (-683 *5))) (-5 *4 (-562)) (-5 *2 (-683 *5))
- (-5 *1 (-1024 *5)) (-4 *5 (-362)) (-4 *5 (-1044)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-766)) (-5 *1 (-584 *2)) (-4 *2 (-544))))
+ (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1092))
+ (-5 *1 (-113 *4))))
((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -3241 *3) (|:| -1960 (-766)))) (-5 *1 (-584 *3))
- (-4 *3 (-544)))))
+ (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-639 *4)))
+ (-5 *1 (-113 *4)) (-4 *4 (-1092))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-642 *3)) (-4 *3 (-1044))
+ (-5 *1 (-709 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-831 *3)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-14 *5 (-639 (-1168))) (-4 *2 (-171))
+ (-4 *4 (-237 (-3492 *5) (-766)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2464 *3) (|:| -1300 *4))
+ (-2 (|:| -2464 *3) (|:| -1300 *4))))
+ (-5 *1 (-460 *5 *2 *3 *4 *6 *7)) (-4 *3 (-845))
+ (-4 *7 (-944 *2 *4 (-859 *5))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788))
+ (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1062 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788))
+ (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)) (-4 *2 (-362))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-362)) (-5 *1 (-653 *4 *2))
+ (-4 *2 (-650 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-562)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-5 *2 (-1261)) (-5 *1 (-448 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))))
(((*1 *2) (-12 (-5 *2 (-838 (-562))) (-5 *1 (-533))))
((*1 *1) (-12 (-5 *1 (-838 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-232)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4))
- (-4 *6 (-788)) (-5 *2 (-1 *1 (-766))) (-4 *1 (-252 *3 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1044)) (-4 *3 (-845)) (-4 *5 (-265 *3)) (-4 *6 (-788))
- (-5 *2 (-1 *1 (-766))) (-4 *1 (-252 *4 *3 *5 *6))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-265 *2)) (-4 *2 (-845)))))
-(((*1 *2 *3 *4 *4 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
- (-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-224)) (-5 *2 (-112)) (-5 *1 (-298 *4 *5)) (-14 *4 *3)
- (-14 *5 *3)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1086 (-838 (-224)))) (-5 *3 (-224)) (-5 *2 (-112))
- (-5 *1 (-304))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
- (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))))
-(((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451)))
- (-5 *2
- (-2
- (|:| |%term|
- (-2 (|:| |%coef| (-1241 *4 *5 *6))
- (|:| |%expon| (-318 *4 *5 *6))
- (|:| |%expTerms|
- (-639 (-2 (|:| |k| (-406 (-562))) (|:| |c| *4))))))
- (|:| |%type| (-1150))))
- (-5 *1 (-1242 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1192) (-429 *3)))
- (-14 *5 (-1168)) (-14 *6 *4))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-766)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044))
- (-14 *4 (-639 (-1168)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-562)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845)))
- (-14 *4 (-639 (-1168)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845))
- (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-766))))
- ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-274))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1164 *8)) (-5 *4 (-639 *6)) (-4 *6 (-845))
- (-4 *8 (-944 *7 *5 *6)) (-4 *5 (-788)) (-4 *7 (-1044))
- (-5 *2 (-639 (-766))) (-5 *1 (-320 *5 *6 *7 *8))))
- ((*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-916))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171))
- (-5 *2 (-766))))
- ((*1 *2 *1) (-12 (-4 *1 (-469 *3 *2)) (-4 *3 (-171)) (-4 *2 (-23))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-554)) (-5 *2 (-562)) (-5 *1 (-619 *3 *4))
- (-4 *4 (-1232 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-703 *3)) (-4 *3 (-1044)) (-5 *2 (-766))))
- ((*1 *2 *1) (-12 (-4 *1 (-847 *3)) (-4 *3 (-1044)) (-5 *2 (-766))))
- ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-899 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-900 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-639 *6)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 (-766)))))
+ (-12 (-4 *4 (-13 (-554) (-146))) (-5 *2 (-639 *3))
+ (-5 *1 (-1226 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-1172)) (-5 *1 (-1171)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-766)) (-5 *2 (-1229 *5 *4)) (-5 *1 (-1166 *4 *5 *6))
+ (-4 *4 (-1044)) (-14 *5 (-1168)) (-14 *6 *4)))
((*1 *2 *1 *3)
- (-12 (-4 *1 (-944 *4 *5 *3)) (-4 *4 (-1044)) (-4 *5 (-788))
- (-4 *3 (-845)) (-5 *2 (-766))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-968 *3 *2 *4)) (-4 *3 (-1044)) (-4 *4 (-845))
- (-4 *2 (-787))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-766))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1218 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1247 *3))
- (-5 *2 (-562))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1239 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1216 *3))
- (-5 *2 (-406 (-562)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-828 (-916)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1277 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
- (-5 *2 (-766)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-348)) (-5 *2 (-953 (-1164 *4))) (-5 *1 (-356 *4))
- (-5 *3 (-1164 *4)))))
+ (-12 (-5 *3 (-766)) (-5 *2 (-1229 *5 *4)) (-5 *1 (-1248 *4 *5 *6))
+ (-4 *4 (-1044)) (-14 *5 (-1168)) (-14 *6 *4))))
+(((*1 *2 *2) (-12 (-5 *1 (-956 *2)) (-4 *2 (-544)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-845)) (-5 *4 (-639 *6))
+ (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-639 *4))))
+ (-5 *1 (-1178 *6)) (-5 *5 (-639 *4)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1150) (-769))) (-5 *1 (-114)))))
(((*1 *1 *1) (-5 *1 (-857)))
((*1 *2 *1)
(-12 (-4 *1 (-1095 *2 *3 *4 *5 *6)) (-4 *3 (-1092)) (-4 *4 (-1092))
(-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092))))
((*1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-1149))))
((*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1168)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-766)) (-4 *4 (-1044))
- (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-1232 *4)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-938 (-224)) (-938 (-224)))) (-5 *1 (-262))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-328 *4)) (-4 *4 (-362))
- (-5 *2 (-683 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-1256 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
- (-5 *2 (-683 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
- (-5 *2 (-1256 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171))
- (-4 *5 (-1232 *4)) (-5 *2 (-683 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171))
- (-4 *5 (-1232 *4)) (-5 *2 (-1256 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-408 *4 *5)) (-4 *4 (-171))
- (-4 *5 (-1232 *4)) (-5 *2 (-683 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3))
- (-5 *2 (-1256 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-416 *4)) (-4 *4 (-171))
- (-5 *2 (-683 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-1256 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 (-683 *5))) (-5 *3 (-683 *5)) (-4 *5 (-362))
- (-5 *2 (-1256 *5)) (-5 *1 (-1078 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-554)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
+ (-5 *1 (-1197 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1112)) (-5 *2 (-1261)) (-5 *1 (-826)))))
(((*1 *1 *1)
(-12 (-4 *1 (-252 *2 *3 *4 *5)) (-4 *2 (-1044)) (-4 *3 (-845))
(-4 *4 (-265 *3)) (-4 *5 (-788)))))
(((*1 *1 *2)
(-12 (-5 *2 (-916)) (-5 *1 (-151 *3 *4 *5)) (-14 *3 *2)
(-4 *4 (-362)) (-14 *5 (-988 *3 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-2 (|:| -1635 *4) (|:| -3598 (-562)))))
- (-4 *4 (-1232 (-562))) (-5 *2 (-732 (-766))) (-5 *1 (-441 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-417 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-1044))
- (-5 *2 (-732 (-766))) (-5 *1 (-443 *4 *5)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-401)) (-5 *2 (-766))))
- ((*1 *1 *1) (-4 *1 (-401))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
+ (-12 (-4 *4 (-1044))
+ (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283)))
+ (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-916)) (-4 *5 (-1044))
+ (-4 *2 (-13 (-403) (-1033 *5) (-362) (-1192) (-283)))
+ (-5 *1 (-442 *5 *3 *2)) (-4 *3 (-1232 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-904)) (-5 *2 (-417 (-1164 *1))) (-5 *3 (-1164 *1)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
+ (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
+ (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
+ (|:| |abserr| (-224)) (|:| |relerr| (-224))))
+ (-5 *2 (-378)) (-5 *1 (-204)))))
(((*1 *2 *2 *3)
- (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562)))))
- (-4 *3 (-1232 *4)) (-5 *1 (-804 *4 *3 *2 *5)) (-4 *2 (-650 *3))
- (-4 *5 (-650 (-406 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-406 *5))
- (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4))
- (-5 *1 (-804 *4 *5 *2 *6)) (-4 *2 (-650 *5)) (-4 *6 (-650 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)) (-4 *3 (-1044))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-5 *2 (-406 *1)) (-4 *1 (-1232 *3)) (-4 *3 (-1044))
- (-4 *3 (-554))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-554)) (-4 *3 (-171)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2))
- (-4 *2 (-681 *3 *4 *5)))))
+ (-12 (-5 *2 (-639 (-947 *4))) (-5 *3 (-639 (-1168))) (-4 *4 (-451))
+ (-5 *1 (-913 *4)))))
(((*1 *2 *2 *3)
- (-12 (-4 *4 (-788))
- (-4 *3 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *5 (-554))
- (-5 *1 (-727 *4 *3 *5 *2)) (-4 *2 (-944 (-406 (-947 *5)) *4 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *4 (-1044)) (-4 *5 (-788))
- (-4 *3
- (-13 (-845)
- (-10 -8 (-15 -4208 ((-1168) $))
- (-15 -2444 ((-3 $ "failed") (-1168))))))
- (-5 *1 (-979 *4 *5 *3 *2)) (-4 *2 (-944 (-947 *4) *5 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 *6))
- (-4 *6
- (-13 (-845)
- (-10 -8 (-15 -4208 ((-1168) $))
- (-15 -2444 ((-3 $ "failed") (-1168))))))
- (-4 *4 (-1044)) (-4 *5 (-788)) (-5 *1 (-979 *4 *5 *6 *2))
- (-4 *2 (-944 (-947 *4) *5 *6)))))
-(((*1 *1 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-306))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-446 *4 *5 *6 *2)))))
(((*1 *2 *1)
(-12
(-5 *2
@@ -5547,119 +5571,97 @@
(|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save")
(|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")))
(-5 *1 (-329)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-639 (-1168)))
- (-5 *2 (-639 (-639 (-378)))) (-5 *1 (-1018)) (-5 *5 (-378))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
- (-14 *5 (-639 (-1168))) (-5 *2 (-639 (-639 (-1019 (-406 *4)))))
- (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7))
- (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7))
- (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7))
- (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-947 *4)))
- (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2 (-639 (-639 (-1019 (-406 *4))))) (-5 *1 (-1282 *4 *5 *6))
- (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-451)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
- (-5 *2 (-639 *3)) (-5 *1 (-972 *4 *5 *6 *3))
- (-4 *3 (-1058 *4 *5 *6)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-815)) (-14 *5 (-1168))
- (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *6)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-406 (-562))) (-5 *1 (-592 *3)) (-4 *3 (-38 *2))
- (-4 *3 (-1044)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *2 *2)
- (-12
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-639 (-639 (-639 *5)))) (-5 *3 (-1 (-112) *5 *5))
+ (-5 *4 (-639 *5)) (-4 *5 (-845)) (-5 *1 (-1178 *5)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-639 *10)) (-5 *5 (-112)) (-4 *10 (-1064 *6 *7 *8 *9))
+ (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
+ (-4 *9 (-1058 *6 *7 *8))
(-5 *2
- (-2 (|:| -3928 (-683 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-683 *3))))
- (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $)))))
- (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-742)))))
-(((*1 *2 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150))
- (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+ (-639
+ (-2 (|:| -3339 (-639 *9)) (|:| -1501 *10) (|:| |ineq| (-639 *9)))))
+ (-5 *1 (-983 *6 *7 *8 *9 *10)) (-5 *3 (-639 *9))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-639 *10)) (-5 *5 (-112)) (-4 *10 (-1064 *6 *7 *8 *9))
+ (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
+ (-4 *9 (-1058 *6 *7 *8))
+ (-5 *2
+ (-639
+ (-2 (|:| -3339 (-639 *9)) (|:| -1501 *10) (|:| |ineq| (-639 *9)))))
+ (-5 *1 (-1099 *6 *7 *8 *9 *10)) (-5 *3 (-639 *9)))))
+(((*1 *2 *1 *1 *3 *4)
+ (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6))
+ (-4 *5 (-13 (-1092) (-34))) (-4 *6 (-13 (-1092) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1132 *5 *6)))))
+(((*1 *1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-683 (-406 (-947 (-562)))))
+ (-5 *2 (-639 (-683 (-315 (-562))))) (-5 *1 (-1026))
+ (-5 *3 (-315 (-562))))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1232 (-406 (-562)))) (-5 *1 (-908 *3 *2))
+ (-4 *2 (-1232 (-406 *3))))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *3 (-112)) (-5 *1 (-110))))
+ ((*1 *2 *2) (-12 (-5 *2 (-916)) (|has| *1 (-6 -4394)) (-4 *1 (-403))))
+ ((*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-362)) (-5 *2 (-639 *3)) (-5 *1 (-940 *4 *3))
- (-4 *3 (-1232 *4)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
- (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224)))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-75 FCN JACOBF JACEPS))))
- (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-76 G JACOBG JACGEP))))
- (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))))
+ (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878))
+ (-5 *3 (-639 (-562)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878))
+ (-5 *3 (-639 (-562))))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-746)))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-562)) (-4 *3 (-171)) (-4 *5 (-372 *3))
+ (-4 *6 (-372 *3)) (-5 *1 (-682 *3 *5 *6 *2))
+ (-4 *2 (-681 *3 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-262))) (-5 *1 (-1257))))
((*1 *2 *1) (-12 (-5 *2 (-639 (-262))) (-5 *1 (-1257))))
((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-262))) (-5 *1 (-1258))))
((*1 *2 *1) (-12 (-5 *2 (-639 (-262))) (-5 *1 (-1258)))))
-(((*1 *1) (-5 *1 (-143)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-260))))
- ((*1 *1 *2) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-262)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1094 *3)) (-5 *1 (-899 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1094 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-234 *3))))
- ((*1 *1) (-12 (-4 *1 (-234 *2)) (-4 *2 (-1092)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1092)) (-4 *2 (-895 *5)) (-5 *1 (-686 *5 *2 *3 *4))
+ (-4 *3 (-372 *2)) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))))))
+(((*1 *2)
+ (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
+ (-4 *4 (-1092)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1044)) (-4 *2 (-681 *4 *5 *6))
+ (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1232 *4)) (-4 *5 (-372 *4))
+ (-4 *6 (-372 *4)))))
(((*1 *2 *3 *2)
(-12 (-5 *2 (-1150)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-262))))
((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257))))
((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *3 *2)
- (-12 (-4 *1 (-782)) (-5 *2 (-1030))
- (-5 *3
- (-2 (|:| |fn| (-315 (-224)))
- (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))))
- ((*1 *2 *3 *2)
- (-12 (-4 *1 (-782)) (-5 *2 (-1030))
- (-5 *3
- (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
- (|:| |relerr| (-224)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-112))
+ (-5 *2 (-1030)) (-5 *1 (-740)))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-742)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-451)) (-4 *4 (-554))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1732 *4)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466))))
- ((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466))))
- ((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224)))
- (-5 *2 (-1030)) (-5 *1 (-752)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-766))
- (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $)))))
- (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))))
+ (-12 (-4 *4 (-554)) (-5 *2 (-639 (-766))) (-5 *1 (-964 *4 *3))
+ (-4 *3 (-1232 *4)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562))
+ (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))
+ (-5 *2 (-1030)) (-5 *1 (-743)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4402)) (-4 *1 (-150 *3))
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4403)) (-4 *1 (-150 *3))
(-4 *3 (-1207))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3))))
@@ -5670,183 +5672,143 @@
(-4 *5 (-788)) (-4 *3 (-845)) (-4 *2 (-1058 *4 *5 *3))))
((*1 *2 *1 *3)
(-12 (-5 *3 (-766)) (-5 *1 (-1204 *2)) (-4 *2 (-1207)))))
-(((*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-551)))))
+(((*1 *2 *3 *2)
+ (|partial| -12 (-5 *3 (-916)) (-5 *1 (-441 *2))
+ (-4 *2 (-1232 (-562)))))
+ ((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-916)) (-5 *4 (-766)) (-5 *1 (-441 *2))
+ (-4 *2 (-1232 (-562)))))
+ ((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-916)) (-5 *4 (-639 (-766))) (-5 *1 (-441 *2))
+ (-4 *2 (-1232 (-562)))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *3 (-916)) (-5 *4 (-639 (-766))) (-5 *5 (-766))
+ (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562)))))
+ ((*1 *2 *3 *2 *4 *5 *6)
+ (|partial| -12 (-5 *3 (-916)) (-5 *4 (-639 (-766))) (-5 *5 (-766))
+ (-5 *6 (-112)) (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-916)) (-5 *4 (-417 *2)) (-4 *2 (-1232 *5))
+ (-5 *1 (-443 *5 *2)) (-4 *5 (-1044)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1044)) (-4 *4 (-1232 *3)) (-5 *1 (-163 *3 *4 *2))
+ (-4 *2 (-1232 *4))))
+ ((*1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 (-639 *2) *2 *2 *2)) (-4 *2 (-1092))
+ (-5 *1 (-103 *2))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1092)) (-5 *1 (-103 *2)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 (-246 *5 *6))) (-4 *6 (-451))
+ (-5 *2 (-246 *5 *6)) (-14 *5 (-639 (-1168))) (-5 *1 (-627 *5 *6)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-1150)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
+ (-4 *4 (-1058 *6 *7 *8)) (-5 *2 (-1261))
+ (-5 *1 (-771 *6 *7 *8 *4 *5)) (-4 *5 (-1064 *6 *7 *8 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-916))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-916))
+ (-5 *1 (-527 *4)))))
(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-639 (-1256 *4))) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
+ (-12 (-4 *4 (-362)) (-5 *2 (-916)) (-5 *1 (-327 *3 *4))
+ (-4 *3 (-328 *4))))
((*1 *2)
- (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-4 *3 (-554))
- (-5 *2 (-639 (-1256 *3))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34)))
- (-4 *4 (-13 (-1092) (-34))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-168 *5)) (-4 *5 (-13 (-429 *4) (-997) (-1192)))
- (-4 *4 (-13 (-554) (-845)))
- (-4 *2 (-13 (-429 (-168 *4)) (-997) (-1192)))
- (-5 *1 (-596 *4 *5 *2)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1207)) (-5 *1 (-181 *3 *2)) (-4 *2 (-668 *3)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-325 *3 *4)) (-4 *3 (-1044))
- (-4 *4 (-787)) (-4 *3 (-171)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *1 (-59 *3)) (-4 *3 (-1207))))
- ((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-59 *3)))))
+ (-12 (-4 *4 (-362)) (-5 *2 (-828 (-916))) (-5 *1 (-327 *3 *4))
+ (-4 *3 (-328 *4))))
+ ((*1 *2) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-916))))
+ ((*1 *2)
+ (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-828 (-916))))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-746)))))
(((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *3 (-639 (-262)))
- (-5 *1 (-260))))
- ((*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-262))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-467))))
- ((*1 *2 *1) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-467)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))))
+(((*1 *1 *1 *1) (-4 *1 (-544))))
+(((*1 *2 *1) (-12 (-4 *1 (-348)) (-5 *2 (-766))))
+ ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-401)) (-5 *2 (-766)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-562)) (|has| *1 (-6 -4393)) (-4 *1 (-403))
- (-5 *2 (-916)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-221 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-4 *1 (-253 *3))))
- ((*1 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-1 (-112) *8))) (-4 *8 (-1058 *5 *6 *7))
- (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-2 (|:| |goodPols| (-639 *8)) (|:| |badPols| (-639 *8))))
- (-5 *1 (-972 *5 *6 *7 *8)) (-5 *4 (-639 *8)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
+ (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-677 *4 *3)) (-4 *4 (-1092))
+ (-4 *3 (-1092)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1261))
+ (-5 *1 (-448 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-1232 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-980 *4 *2 *3 *5))
+ (-4 *4 (-348)) (-4 *5 (-719 *2 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-583 *3)) (-4 *3 (-362)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-938 *4)) (-4 *4 (-1044)) (-5 *1 (-1156 *3 *4))
- (-14 *3 (-916)))))
-(((*1 *1 *2 *3)
- (-12
- (-5 *3
- (-639
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
- (|:| |xpnt| (-562)))))
- (-4 *2 (-554)) (-5 *1 (-417 *2))))
+ (-12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-146)) (-4 *2 (-306)) (-4 *2 (-451)) (-4 *3 (-845))
+ (-4 *4 (-788)) (-5 *1 (-982 *2 *3 *4 *5)) (-4 *5 (-944 *2 *4 *3))))
+ ((*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-315 (-562))) (-5 *1 (-1111))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
+ (-14 *5 (-639 (-1168)))
+ (-5 *2
+ (-639 (-2 (|:| -1333 (-1164 *4)) (|:| -2205 (-639 (-947 *4))))))
+ (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2
+ (-639 (-2 (|:| -1333 (-1164 *5)) (|:| -2205 (-639 (-947 *5))))))
+ (-5 *1 (-1282 *5 *6 *7)) (-5 *3 (-639 (-947 *5)))
+ (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2
+ (-639 (-2 (|:| -1333 (-1164 *5)) (|:| -2205 (-639 (-947 *5))))))
+ (-5 *1 (-1282 *5 *6 *7)) (-5 *3 (-639 (-947 *5)))
+ (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2
+ (-639 (-2 (|:| -1333 (-1164 *5)) (|:| -2205 (-639 (-947 *5))))))
+ (-5 *1 (-1282 *5 *6 *7)) (-5 *3 (-639 (-947 *5)))
+ (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |contp| (-562))
- (|:| -1510 (-639 (-2 (|:| |irr| *4) (|:| -2762 (-562)))))))
- (-4 *4 (-1232 (-562))) (-5 *2 (-417 *4)) (-5 *1 (-441 *4)))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
- (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224)))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-84 FCNF))))
- (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-224))
- (-5 *2 (-1030)) (-5 *1 (-744)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451))
- (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1041 *5 *6)))
- (-5 *1 (-624 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787))
- (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092))
- (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-1044))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-554)) (-5 *2 (-112)) (-5 *1 (-619 *3 *4))
- (-4 *4 (-1232 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044))
- (-4 *4 (-721))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
- (-5 *2 (-112)))))
+ (-12 (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2
+ (-639 (-2 (|:| -1333 (-1164 *4)) (|:| -2205 (-639 (-947 *4))))))
+ (-5 *1 (-1282 *4 *5 *6)) (-5 *3 (-639 (-947 *4)))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))))
(((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-597 *3))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-900 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378))))
- ((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-378)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-174)))))
(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-562)))) (-4 *5 (-1232 *4))
- (-5 *2 (-2 (|:| |ans| (-406 *5)) (|:| |nosol| (-112))))
- (-5 *1 (-1010 *4 *5)) (-5 *3 (-406 *5)))))
-(((*1 *1) (-4 *1 (-348)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 *5)) (-4 *5 (-429 *4))
- (-4 *4 (-13 (-554) (-845) (-146)))
- (-5 *2
- (-2 (|:| |primelt| *5) (|:| |poly| (-639 (-1164 *5)))
- (|:| |prim| (-1164 *5))))
- (-5 *1 (-431 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-554) (-845) (-146)))
- (-5 *2
- (-2 (|:| |primelt| *3) (|:| |pol1| (-1164 *3))
- (|:| |pol2| (-1164 *3)) (|:| |prim| (-1164 *3))))
- (-5 *1 (-431 *4 *3)) (-4 *3 (-27)) (-4 *3 (-429 *4))))
- ((*1 *2 *3 *4 *3 *4)
- (-12 (-5 *3 (-947 *5)) (-5 *4 (-1168)) (-4 *5 (-13 (-362) (-146)))
- (-5 *2
- (-2 (|:| |coef1| (-562)) (|:| |coef2| (-562))
- (|:| |prim| (-1164 *5))))
- (-5 *1 (-955 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-639 (-1168)))
- (-4 *5 (-13 (-362) (-146)))
- (-5 *2
- (-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 *5)))
- (|:| |prim| (-1164 *5))))
- (-5 *1 (-955 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-639 (-947 *6))) (-5 *4 (-639 (-1168))) (-5 *5 (-1168))
- (-4 *6 (-13 (-362) (-146)))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *5)) (-4 *5 (-429 *4)) (-4 *4 (-13 (-845) (-554)))
+ (-5 *2 (-857)) (-5 *1 (-32 *4 *5)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1150)) (-5 *4 (-168 (-224))) (-5 *5 (-562))
+ (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1090 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-562)) (-5 *1 (-690 *2)) (-4 *2 (-1232 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-683 (-406 (-947 (-562)))))
(-5 *2
- (-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 *6)))
- (|:| |prim| (-1164 *6))))
- (-5 *1 (-955 *6)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-224)) (-5 *1 (-30))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-417 *4) *4)) (-4 *4 (-554)) (-5 *2 (-417 *4))
- (-5 *1 (-418 *4))))
- ((*1 *1 *1) (-5 *1 (-921)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921))))
- ((*1 *1 *1) (-5 *1 (-922)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))
- (-5 *4 (-406 (-562))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562)))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))
- (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562)))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))
- (-5 *4 (-406 (-562))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 *4))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))
- (-5 *1 (-1016 *3)) (-4 *3 (-1232 (-406 (-562))))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3))
- (-4 *3 (-1232 *2)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-426 *3 *2)) (-4 *3 (-13 (-171) (-38 (-406 (-562)))))
- (-4 *2 (-13 (-845) (-21))))))
-(((*1 *1 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)) (-4 *2 (-1053))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168)))
- (-14 *3 (-639 (-1168))) (-4 *4 (-386))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)) (-4 *2 (-1053))))
- ((*1 *1 *1) (-4 *1 (-843)))
- ((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)) (-4 *2 (-1053))))
- ((*1 *1 *1) (-4 *1 (-1053))) ((*1 *1 *1) (-4 *1 (-1131))))
+ (-639
+ (-2 (|:| |radval| (-315 (-562))) (|:| |radmult| (-562))
+ (|:| |radvect| (-639 (-683 (-315 (-562))))))))
+ (-5 *1 (-1026)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-916)) (-4 *6 (-13 (-554) (-845)))
(-5 *2 (-639 (-315 *6))) (-5 *1 (-220 *5 *6)) (-5 *3 (-315 *6))
@@ -5873,135 +5835,196 @@
((*1 *2 *1)
(-12 (-5 *2 (-1271 *3 *4)) (-5 *1 (-1280 *3 *4)) (-4 *3 (-845))
(-4 *4 (-1044)))))
-(((*1 *1 *1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-554)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-363 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092))
- (-5 *2 (-1150)))))
+(((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 (-406 (-562))))
+ (-5 *2
+ (-639
+ (-2 (|:| |outval| *4) (|:| |outmult| (-562))
+ (|:| |outvect| (-639 (-683 *4))))))
+ (-5 *1 (-774 *4)) (-4 *4 (-13 (-362) (-843))))))
(((*1 *2 *2)
- (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
- (-5 *1 (-175 *3)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4402)) (-4 *1 (-600 *4 *3)) (-4 *4 (-1092))
- (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1164 *7)) (-5 *3 (-562)) (-4 *7 (-944 *6 *4 *5))
- (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044))
- (-5 *1 (-320 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-843)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362)))
- (-4 *3 (-1232 *4)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-171)) (-4 *2 (-23)) (-5 *1 (-288 *3 *4 *2 *5 *6 *7))
- (-4 *4 (-1232 *3)) (-14 *5 (-1 *4 *4 *2))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2))
- (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-23)) (-5 *1 (-706 *3 *2 *4 *5 *6)) (-4 *3 (-171))
- (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2))
- (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2))))
- ((*1 *2)
- (-12 (-4 *2 (-1232 *3)) (-5 *1 (-707 *3 *2)) (-4 *3 (-1044))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-23)) (-5 *1 (-710 *3 *2 *4 *5 *6)) (-4 *3 (-171))
- (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2))
- (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2))))
- ((*1 *2) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))))
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2))
+ (-4 *2 (-429 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-168 (-562))) (-5 *2 (-112)) (-5 *1 (-445))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4)
+ (-246 *4 (-406 (-562)))))
+ (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-112))
+ (-5 *1 (-504 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-956 *3)) (-4 *3 (-544))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1211)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1094 *4)) (-4 *4 (-1092)) (-5 *2 (-1 *4))
- (-5 *1 (-1012 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-378))) (-5 *1 (-1035)) (-5 *3 (-378))))
+ (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4))
+ (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112))))
((*1 *2 *3)
- (-12 (-5 *3 (-1086 (-562))) (-5 *2 (-1 (-562))) (-5 *1 (-1042)))))
-(((*1 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393))))
- ((*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 (-639 *8))) (-5 *3 (-639 *8))
- (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146)))
- (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-112))
- (-5 *1 (-919 *5 *6 *7 *8)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788))
- (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168)))
+ (-4 *5 (-554)) (-5 *2 (-639 (-639 (-947 *5)))) (-5 *1 (-1176 *5)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-417 (-1164 *1))) (-5 *1 (-315 *4)) (-5 *3 (-1164 *1))
+ (-4 *4 (-451)) (-4 *4 (-554)) (-4 *4 (-845))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-904)) (-5 *2 (-417 (-1164 *1))) (-5 *3 (-1164 *1)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-608 *4)) (-4 *4 (-845)) (-4 *2 (-845))
+ (-5 *1 (-607 *2 *4)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1044))
+ (-4 *2 (-1216 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-170))))))
(((*1 *2 *3)
(-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-529 *3)) (-4 *3 (-13 (-721) (-25))))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-14 *4 (-639 (-1168))) (-4 *2 (-171))
+ (-4 *3 (-237 (-3492 *4) (-766)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2464 *5) (|:| -1300 *3))
+ (-2 (|:| -2464 *5) (|:| -1300 *3))))
+ (-5 *1 (-460 *4 *2 *5 *3 *6 *7)) (-4 *5 (-845))
+ (-4 *7 (-944 *2 *3 (-859 *4))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1207))
+ (-4 *5 (-372 *4)) (-4 *2 (-372 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *6 *2 *7)) (-4 *6 (-1044))
+ (-4 *7 (-237 *4 *6)) (-4 *2 (-237 *5 *6)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-103 *3)))))
+ (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1207)) (-4 *3 (-372 *2))
+ (-4 *4 (-372 *2))))
+ ((*1 *1 *1 *2)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-600 *3 *2)) (-4 *3 (-1092))
+ (-4 *2 (-1207)))))
(((*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-52)))))
+(((*1 *2 *1 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-857) (-857) (-857))) (-5 *4 (-562)) (-5 *2 (-857))
+ (-5 *1 (-643 *5 *6 *7)) (-4 *5 (-1092)) (-4 *6 (-23)) (-14 *7 *6)))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-857)) (-5 *1 (-849 *3 *4 *5)) (-4 *3 (-1044))
+ (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-224)) (-5 *1 (-857))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-857))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-857))))
+ ((*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857))))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-857)) (-5 *1 (-1164 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1044)) (-5 *1 (-889 *2 *3)) (-4 *2 (-1232 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-834))
- (-5 *3
- (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224)))
- (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224))))
- (|:| |ub| (-639 (-838 (-224))))))
- (-5 *2 (-1030))))
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
+ (-5 *2 (-683 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-683 *4)) (-5 *1 (-415 *3 *4))
+ (-4 *3 (-416 *4))))
+ ((*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-554))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-554)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-647 (-406 *6))) (-5 *4 (-1 (-639 *5) *6))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-4 *6 (-1232 *5)) (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-647 (-406 *7))) (-5 *4 (-1 (-639 *6) *7))
+ (-5 *5 (-1 (-417 *7) *7))
+ (-4 *6 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-4 *7 (-1232 *6)) (-5 *2 (-639 (-406 *7))) (-5 *1 (-807 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-648 *6 (-406 *6))) (-5 *4 (-1 (-639 *5) *6))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-4 *6 (-1232 *5)) (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-648 *7 (-406 *7))) (-5 *4 (-1 (-639 *6) *7))
+ (-5 *5 (-1 (-417 *7) *7))
+ (-4 *6 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-4 *7 (-1232 *6)) (-5 *2 (-639 (-406 *7))) (-5 *1 (-807 *6 *7))))
((*1 *2 *3)
- (-12 (-4 *1 (-834))
- (-5 *3
- (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))
- (-5 *2 (-1030)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-696 *4 *5 *6 *7))
- (-4 *4 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207))
- (-4 *7 (-1207)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+ (-12 (-5 *3 (-647 (-406 *5))) (-4 *5 (-1232 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-5 *2 (-639 (-406 *5))) (-5 *1 (-807 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-647 (-406 *6))) (-5 *4 (-1 (-417 *6) *6))
+ (-4 *6 (-1232 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-648 *5 (-406 *5))) (-4 *5 (-1232 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-5 *2 (-639 (-406 *5))) (-5 *1 (-807 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-648 *6 (-406 *6))) (-5 *4 (-1 (-417 *6) *6))
+ (-4 *6 (-1232 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6)))))
+(((*1 *2)
+ (|partial| -12 (-4 *3 (-554)) (-4 *3 (-171))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -4291 (-639 *1))))
+ (-4 *1 (-366 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-452 *3 *4 *5 *6))
+ (|:| -4291 (-639 (-452 *3 *4 *5 *6)))))
+ (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *6))
+ (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-900 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-293 *2)) (-4 *2 (-721)) (-4 *2 (-1207)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224)))
- (-5 *2 (-1030)) (-5 *1 (-742)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
- ((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1132 *3 *2)) (-4 *3 (-13 (-1092) (-34)))
- (-4 *2 (-13 (-1092) (-34))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-1168))
- (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-4 *4 (-13 (-29 *6) (-1192) (-954)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -3928 (-639 *4))))
- (-5 *1 (-796 *6 *4 *3)) (-4 *3 (-650 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-306))
- (-5 *2 (-766)) (-5 *1 (-454 *5 *3)))))
-(((*1 *1) (-5 *1 (-156))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-820)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-666 *3)) (-4 *3 (-845))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-671 *3)) (-4 *3 (-845))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-814 *3)) (-4 *3 (-845)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-362)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
- (-5 *1 (-520 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5))))
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-554)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-417 *3)) (-4 *3 (-544)) (-4 *3 (-554))))
+ ((*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-792 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-828 *3)) (-4 *3 (-544)) (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-838 *3)) (-4 *3 (-544)) (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-992 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-112))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-554)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4))
- (-4 *7 (-987 *4)) (-4 *2 (-681 *7 *8 *9))
- (-5 *1 (-521 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-681 *4 *5 *6))
- (-4 *8 (-372 *7)) (-4 *9 (-372 *7))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044))
- (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (-4 *2 (-362))))
- ((*1 *2 *2)
- (|partial| -12 (-4 *3 (-362)) (-4 *3 (-171)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2))
- (-4 *2 (-681 *3 *4 *5))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-683 *2)) (-4 *2 (-362)) (-4 *2 (-1044))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-1115 *2 *3 *4 *5)) (-4 *3 (-1044))
- (-4 *4 (-237 *2 *3)) (-4 *5 (-237 *2 *3)) (-4 *3 (-362))))
- ((*1 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-1178 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1177)))))
-(((*1 *2 *1) (-12 (|has| *1 (-6 -4402)) (-4 *1 (-34)) (-5 *2 (-766))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1003 *3)) (-4 *3 (-1033 (-406 (-562)))))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1247 *4)) (-5 *1 (-1249 *4 *2))
+ (-4 *4 (-38 (-406 (-562)))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1256 (-562))) (-5 *3 (-562)) (-5 *1 (-1102))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-1256 (-562))) (-5 *3 (-639 (-562))) (-5 *4 (-562))
+ (-5 *1 (-1102)))))
+(((*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))))
+(((*1 *1) (-5 *1 (-1077))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)))))
+(((*1 *2 *1) (-12 (|has| *1 (-6 -4403)) (-4 *1 (-34)) (-5 *2 (-766))))
((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-128))))
((*1 *2 *1)
(-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
@@ -6009,100 +6032,72 @@
((*1 *2 *1)
(-12 (-5 *2 (-766)) (-5 *1 (-1279 *3 *4)) (-4 *3 (-1044))
(-4 *4 (-841)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
+ (-4 *4 (-1044)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-639 (-315 (-224)))) (-5 *3 (-224)) (-5 *2 (-112))
+ (-5 *1 (-209)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
- (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
- (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
- (|:| |abserr| (-224)) (|:| |relerr| (-224))))
- (-5 *2
- (-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))))
- (-5 *1 (-204)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1148 *4)) (-5 *3 (-1 *4 (-562))) (-4 *4 (-1044))
- (-5 *1 (-1152 *4)))))
-(((*1 *1 *2)
- (-12
- (-5 *2
- (-639
- (-2
- (|:| -2320
- (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
- (|:| |fn| (-1256 (-315 (-224))))
- (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224)))
- (|:| |g| (-315 (-224))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (|:| -2694
- (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378))
- (|:| |expense| (-378)) (|:| |accuracy| (-378))
- (|:| |intermediateResults| (-378)))))))
- (-5 *1 (-798)))))
+ (-12 (-5 *3 (-1164 (-562))) (-5 *2 (-562)) (-5 *1 (-937)))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1223 *3)) (-4 *3 (-1207)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *3 *2))
- (-4 *2 (-13 (-27) (-1192) (-429 (-168 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562))))
- (-5 *1 (-187 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168))
- (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-1196 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-845)) (-5 *2 (-1179 (-639 *4))) (-5 *1 (-1178 *4))
- (-5 *3 (-639 *4)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-884 *4 *3))
- (-4 *3 (-1092)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-639 (-938 *3))) (-4 *3 (-1044)) (-4 *1 (-1126 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-639 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-938 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-766)) (-4 *4 (-362)) (-5 *1 (-891 *2 *4))
- (-4 *2 (-1232 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1223 *3)) (-4 *3 (-1207)))))
+ (-12 (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)) (-5 *2 (-639 *6))
+ (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 *8)) (-5 *4 (-766)) (-4 *8 (-944 *5 *7 *6))
+ (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168))))
+ (-4 *7 (-788))
+ (-5 *2
+ (-639
+ (-2 (|:| |det| *8) (|:| |rows| (-639 (-562)))
+ (|:| |cols| (-639 (-562))))))
+ (-5 *1 (-919 *5 *6 *7 *8)))))
+(((*1 *1 *2 *2) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))))
(((*1 *2 *1)
(|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3))
(-4 *3 (-1092)))))
+(((*1 *2 *1) (-12 (-5 *2 (-212 4 (-129))) (-5 *1 (-577)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-417 (-1164 *1))) (-5 *1 (-315 *4)) (-5 *3 (-1164 *1))
- (-4 *4 (-451)) (-4 *4 (-554)) (-4 *4 (-845))))
+ (-12 (-5 *3 (-608 *5)) (-4 *5 (-429 *4)) (-4 *4 (-1033 (-562)))
+ (-4 *4 (-13 (-845) (-554))) (-5 *2 (-1164 *5)) (-5 *1 (-32 *4 *5))))
((*1 *2 *3)
- (-12 (-4 *1 (-904)) (-5 *2 (-417 (-1164 *1))) (-5 *3 (-1164 *1)))))
-(((*1 *2 *2 *2 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-608 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1168)))
- (-4 *2 (-13 (-429 *5) (-27) (-1192)))
- (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *1 (-564 *5 *2 *6)) (-4 *6 (-1092)))))
-(((*1 *1 *2 *3 *3 *4 *5)
- (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *3 (-639 (-869)))
- (-5 *4 (-639 (-916))) (-5 *5 (-639 (-262))) (-5 *1 (-467))))
- ((*1 *1 *2 *3 *3 *4)
- (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *3 (-639 (-869)))
- (-5 *4 (-639 (-916))) (-5 *1 (-467))))
- ((*1 *1 *2) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-467))))
- ((*1 *1 *1) (-5 *1 (-467))))
-(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-378)) (-5 *3 (-1150)) (-5 *1 (-97))))
- ((*1 *2 *3 *2) (-12 (-5 *2 (-378)) (-5 *3 (-1150)) (-5 *1 (-97)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -2641 (-562)) (|:| -1510 (-639 *3))))
- (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-916)) (-5 *2 (-1256 (-1256 (-562)))) (-5 *1 (-465)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-4 *3 (-554))
- (-5 *2 (-1164 *3)))))
+ (-12 (-5 *3 (-608 *1)) (-4 *1 (-1044)) (-4 *1 (-301))
+ (-5 *2 (-1164 *1)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-916)) (-5 *2 (-1164 *3)) (-5 *1 (-1181 *3))
+ (-4 *3 (-362)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-562)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-766)) (-4 *5 (-171))))
+ ((*1 *1 *1 *2 *1 *2)
+ (-12 (-5 *2 (-562)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-766)) (-4 *5 (-171))))
+ ((*1 *2 *2 *3)
+ (-12
+ (-5 *2
+ (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4)
+ (-246 *4 (-406 (-562)))))
+ (-5 *3 (-639 (-859 *4))) (-14 *4 (-639 (-1168))) (-14 *5 (-766))
+ (-5 *1 (-504 *4 *5)))))
(((*1 *2 *1)
(-12
(-5 *2
@@ -6111,7 +6106,7 @@
(-2 (|:| |var| (-1168))
(|:| |arrayIndex| (-639 (-947 (-562))))
(|:| |rand|
- (-2 (|:| |ints2Floats?| (-112)) (|:| -2404 (-857))))))
+ (-2 (|:| |ints2Floats?| (-112)) (|:| -2400 (-857))))))
(|:| |arrayAssignmentBranch|
(-2 (|:| |var| (-1168)) (|:| |rand| (-857))
(|:| |ints2Floats?| (-112))))
@@ -6119,88 +6114,54 @@
(-2 (|:| |switch| (-1167)) (|:| |thenClause| (-329))
(|:| |elseClause| (-329))))
(|:| |returnBranch|
- (-2 (|:| -2974 (-112))
- (|:| -2534
- (-2 (|:| |ints2Floats?| (-112)) (|:| -2404 (-857))))))
+ (-2 (|:| -3087 (-112))
+ (|:| -2533
+ (-2 (|:| |ints2Floats?| (-112)) (|:| -2400 (-857))))))
(|:| |blockBranch| (-639 (-329)))
(|:| |commentBranch| (-639 (-1150))) (|:| |callBranch| (-1150))
(|:| |forBranch|
- (-2 (|:| -1590 (-1084 (-947 (-562))))
+ (-2 (|:| -2147 (-1084 (-947 (-562))))
(|:| |span| (-947 (-562))) (|:| -3265 (-329))))
(|:| |labelBranch| (-1112))
(|:| |loopBranch| (-2 (|:| |switch| (-1167)) (|:| -3265 (-329))))
(|:| |commonBranch|
- (-2 (|:| -3254 (-1168)) (|:| |contents| (-639 (-1168)))))
+ (-2 (|:| -3253 (-1168)) (|:| |contents| (-639 (-1168)))))
(|:| |printBranch| (-639 (-857)))))
(-5 *1 (-329)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
+ (-4 *4 (-1092)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-329)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7))))
- (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
-(((*1 *2 *3 *4 *3 *5 *3)
- (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562))
- (-5 *2 (-1030)) (-5 *1 (-749)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-262))))
- ((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))))
+ (|partial| -12 (-5 *3 (-335 *5 *6 *7 *8)) (-4 *5 (-429 *4))
+ (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6)))
+ (-4 *8 (-341 *5 *6 *7))
+ (-4 *4 (-13 (-845) (-554) (-1033 (-562))))
+ (-5 *2 (-2 (|:| -1993 (-766)) (|:| -1407 *8)))
+ (-5 *1 (-906 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-335 (-406 (-562)) *4 *5 *6))
+ (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-1232 (-406 *4)))
+ (-4 *6 (-341 (-406 (-562)) *4 *5))
+ (-5 *2 (-2 (|:| -1993 (-766)) (|:| -1407 *6)))
+ (-5 *1 (-907 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *4 *3 *5))
- (-4 *3 (-1232 *4))
- (-4 *5 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1271 (-1168) *3)) (-4 *3 (-1044)) (-5 *1 (-1278 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1271 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
- (-5 *1 (-1280 *3 *4)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-766)) (-5 *6 (-112)) (-4 *7 (-451)) (-4 *8 (-788))
- (-4 *9 (-845)) (-4 *3 (-1058 *7 *8 *9))
- (-5 *2
- (-2 (|:| |done| (-639 *4))
- (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))))
- (-5 *1 (-1062 *7 *8 *9 *3 *4)) (-4 *4 (-1064 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
- (-4 *3 (-1058 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-639 *4))
- (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))))
- (-5 *1 (-1062 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-639 *4))
- (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))))
- (-5 *1 (-1062 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-766)) (-5 *6 (-112)) (-4 *7 (-451)) (-4 *8 (-788))
- (-4 *9 (-845)) (-4 *3 (-1058 *7 *8 *9))
- (-5 *2
- (-2 (|:| |done| (-639 *4))
- (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))))
- (-5 *1 (-1137 *7 *8 *9 *3 *4)) (-4 *4 (-1101 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
- (-4 *3 (-1058 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-639 *4))
- (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))))
- (-5 *1 (-1137 *6 *7 *8 *3 *4)) (-4 *4 (-1101 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-639 *4))
- (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))))
- (-5 *1 (-1137 *5 *6 *7 *3 *4)) (-4 *4 (-1101 *5 *6 *7 *3)))))
+ (-12 (-5 *2 (-417 (-1164 *1))) (-5 *1 (-315 *4)) (-5 *3 (-1164 *1))
+ (-4 *4 (-451)) (-4 *4 (-554)) (-4 *4 (-845))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-904)) (-5 *2 (-417 (-1164 *1))) (-5 *3 (-1164 *1)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-483 *3)))))
(((*1 *1 *2 *3) (-12 (-5 *2 (-1096)) (-5 *3 (-769)) (-5 *1 (-52)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1168)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-683 (-406 (-947 (-562)))))
+ (-5 *2 (-683 (-315 (-562)))) (-5 *1 (-1026)))))
(((*1 *2 *2 *3)
(-12 (-5 *2 (-1168)) (-5 *3 (-639 (-535))) (-5 *1 (-535)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-972 *4 *5 *6 *7)))))
(((*1 *1) (-5 *1 (-576)))
((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-858))))
((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-858))))
@@ -6209,131 +6170,151 @@
((*1 *2 *3 *1)
(-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1148 *4))
(-4 *4 (-1092)) (-4 *4 (-1207)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-348))
- (-5 *2 (-639 (-2 (|:| |deg| (-766)) (|:| -2754 *3))))
- (-5 *1 (-215 *4 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1232 (-48))))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1132 *4 *5)) (-4 *4 (-13 (-1092) (-34)))
- (-4 *5 (-13 (-1092) (-34))) (-5 *2 (-112)) (-5 *1 (-1133 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-417 (-1164 (-562)))) (-5 *1 (-190)) (-5 *3 (-562)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *1 *1 *1) (-4 *1 (-301))) ((*1 *1 *1) (-4 *1 (-301))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |preimage| (-639 *3)) (|:| |image| (-639 *3))))
- (-5 *1 (-900 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1168))
+ (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3))
+ (-4 *3 (-962)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *2 *2 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-608 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1168)))
+ (-4 *2 (-13 (-429 *5) (-27) (-1192)))
+ (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *1 (-564 *5 *2 *6)) (-4 *6 (-1092)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-1168)) (-5 *6 (-112))
+ (-4 *7 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-4 *3 (-13 (-1192) (-954) (-29 *7)))
(-5 *2
- (-2 (|:| |zeros| (-1148 (-224))) (|:| |ones| (-1148 (-224)))
- (|:| |singularities| (-1148 (-224)))))
- (-5 *1 (-105)))))
+ (-3 (|:| |f1| (-838 *3)) (|:| |f2| (-639 (-838 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-218 *7 *3)) (-5 *5 (-838 *3)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451))
- (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *1 (-972 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-639 *7)) (-5 *3 (-112)) (-4 *7 (-1058 *4 *5 *6))
- (-4 *4 (-451)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
- (-5 *1 (-972 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
- (|partial| -12 (-5 *2 (-639 (-1164 *13))) (-5 *3 (-1164 *13))
- (-5 *4 (-639 *12)) (-5 *5 (-639 *10)) (-5 *6 (-639 *13))
- (-5 *7 (-639 (-639 (-2 (|:| -2734 (-766)) (|:| |pcoef| *13)))))
- (-5 *8 (-639 (-766))) (-5 *9 (-1256 (-639 (-1164 *10))))
- (-4 *12 (-845)) (-4 *10 (-306)) (-4 *13 (-944 *10 *11 *12))
- (-4 *11 (-788)) (-5 *1 (-702 *11 *12 *10 *13)))))
-(((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))))
+ (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *3 *2))
+ (-4 *2 (-13 (-27) (-1192) (-429 (-168 *3))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))))
+(((*1 *2 *2) (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-685 (-186))) (-5 *1 (-186)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-841)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-639 (-639 (-639 *4)))) (-5 *3 (-639 *4)) (-4 *4 (-845))
- (-5 *1 (-1178 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
- (-4 *4 (-1044)))))
+ (-12 (-4 *2 (-1232 *4)) (-5 *1 (-804 *4 *2 *3 *5))
+ (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2))
+ (-4 *5 (-650 (-406 *2))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1256 (-766))) (-5 *1 (-669 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-766)) (-4 *5 (-348)) (-4 *6 (-1232 *5))
+ (-5 *2
+ (-639
+ (-2 (|:| -4291 (-683 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-683 *6)))))
+ (-5 *1 (-497 *5 *6 *7))
+ (-5 *3
+ (-2 (|:| -4291 (-683 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-683 *6))))
+ (-4 *7 (-1232 *6)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-639 *1)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5))
- (-4 *4 (-372 *3)) (-4 *5 (-372 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-639 *3)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5))
- (-4 *4 (-372 *3)) (-4 *5 (-372 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1044)) (-5 *1 (-683 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-639 *4)) (-4 *4 (-1044)) (-4 *1 (-1115 *3 *4 *5 *6))
- (-4 *5 (-237 *3 *4)) (-4 *6 (-237 *3 *4)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-734 *3)))))
+ (|partial| -12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5))
+ (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *1 (-1269 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-639 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554))
+ (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1269 *5 *6 *7 *8)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1256 *4)) (-5 *3 (-562)) (-4 *4 (-348))
- (-5 *1 (-527 *4)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (-5 *2 (-112)) (-5 *1 (-299)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-766)) (-5 *1 (-778 *2)) (-4 *2 (-38 (-406 (-562))))
- (-4 *2 (-171)))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
- (-12 (-5 *3 (-224)) (-5 *4 (-562))
- (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030))
- (-5 *1 (-743)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
- (-4 *3 (-13 (-362) (-1192) (-997)))))
- ((*1 *2)
- (|partial| -12 (-4 *4 (-1211)) (-4 *5 (-1232 (-406 *2)))
- (-4 *2 (-1232 *4)) (-5 *1 (-340 *3 *4 *2 *5))
- (-4 *3 (-341 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-341 *3 *2 *4)) (-4 *3 (-1211))
- (-4 *4 (-1232 (-406 *2))) (-4 *2 (-1232 *3)))))
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-1124 *4 *2))
+ (-4 *2 (-13 (-600 (-562) *4) (-10 -7 (-6 -4403) (-6 -4404))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-845)) (-4 *3 (-1207)) (-5 *1 (-1124 *3 *2))
+ (-4 *2 (-13 (-600 (-562) *3) (-10 -7 (-6 -4403) (-6 -4404)))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 *1)) (-5 *4 (-1256 *1)) (-4 *1 (-635 *5))
+ (-4 *5 (-1044))
+ (-5 *2 (-2 (|:| -1767 (-683 *5)) (|:| |vec| (-1256 *5))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-683 *1)) (-4 *1 (-635 *4)) (-4 *4 (-1044))
+ (-5 *2 (-683 *4)))))
+(((*1 *1 *2 *3 *3 *4 *5)
+ (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *3 (-639 (-869)))
+ (-5 *4 (-639 (-916))) (-5 *5 (-639 (-262))) (-5 *1 (-467))))
+ ((*1 *1 *2 *3 *3 *4)
+ (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *3 (-639 (-869)))
+ (-5 *4 (-639 (-916))) (-5 *1 (-467))))
+ ((*1 *1 *2) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-467))))
+ ((*1 *1 *1) (-5 *1 (-467))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))))
(((*1 *2 *1)
- (-12 (-4 *2 (-1092)) (-5 *1 (-959 *2 *3)) (-4 *3 (-1092)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-224) (-224) (-224)))
- (-5 *4 (-3 (-1 (-224) (-224) (-224) (-224)) "undefined"))
- (-5 *5 (-1086 (-224))) (-5 *6 (-639 (-262))) (-5 *2 (-1125 (-224)))
- (-5 *1 (-691))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-224)))
- (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-691))))
- ((*1 *2 *2 *3 *4 *4 *5)
- (-12 (-5 *2 (-1125 (-224))) (-5 *3 (-1 (-938 (-224)) (-224) (-224)))
- (-5 *4 (-1086 (-224))) (-5 *5 (-639 (-262))) (-5 *1 (-691)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1148 (-562))) (-5 *1 (-1152 *4)) (-4 *4 (-1044))
- (-5 *3 (-562)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-683 *2)) (-4 *4 (-1232 *2))
- (-4 *2 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $)))))
- (-5 *1 (-498 *2 *4 *5)) (-4 *5 (-408 *2 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2))
- (-4 *5 (-237 *3 *2)) (-4 *2 (-1044)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-838 (-378))) (-5 *2 (-838 (-224))) (-5 *1 (-304)))))
+ (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-5 *2 (-112)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-855)) (-5 *3 (-128)) (-5 *2 (-766)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-788))
+ (-4 *3 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *5 (-554))
+ (-5 *1 (-727 *4 *3 *5 *2)) (-4 *2 (-944 (-406 (-947 *5)) *4 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1044)) (-4 *5 (-788))
+ (-4 *3
+ (-13 (-845)
+ (-10 -8 (-15 -4208 ((-1168) $))
+ (-15 -2443 ((-3 $ "failed") (-1168))))))
+ (-5 *1 (-979 *4 *5 *3 *2)) (-4 *2 (-944 (-947 *4) *5 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-639 *6))
+ (-4 *6
+ (-13 (-845)
+ (-10 -8 (-15 -4208 ((-1168) $))
+ (-15 -2443 ((-3 $ "failed") (-1168))))))
+ (-4 *4 (-1044)) (-4 *5 (-788)) (-5 *1 (-979 *4 *5 *6 *2))
+ (-4 *2 (-944 (-947 *4) *5 *6)))))
+(((*1 *2 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-559)) (-5 *3 (-562))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-937)) (-5 *3 (-562)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-747)))))
+(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-378)) (-5 *3 (-1150)) (-5 *1 (-97))))
+ ((*1 *2 *3 *2) (-12 (-5 *2 (-378)) (-5 *3 (-1150)) (-5 *1 (-97)))))
+(((*1 *2 *2) (-12 (-5 *2 (-315 (-224))) (-5 *1 (-209)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788))
+ (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-639 *3))
+ (-5 *1 (-588 *5 *6 *7 *8 *3)) (-4 *3 (-1101 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146)))
+ (-5 *2
+ (-639 (-2 (|:| -1333 (-1164 *5)) (|:| -2205 (-639 (-947 *5))))))
+ (-5 *1 (-1070 *5 *6)) (-5 *3 (-639 (-947 *5)))
+ (-14 *6 (-639 (-1168)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-306) (-146)))
+ (-5 *2
+ (-639 (-2 (|:| -1333 (-1164 *4)) (|:| -2205 (-639 (-947 *4))))))
+ (-5 *1 (-1070 *4 *5)) (-5 *3 (-639 (-947 *4)))
+ (-14 *5 (-639 (-1168)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146)))
+ (-5 *2
+ (-639 (-2 (|:| -1333 (-1164 *5)) (|:| -2205 (-639 (-947 *5))))))
+ (-5 *1 (-1070 *5 *6)) (-5 *3 (-639 (-947 *5)))
+ (-14 *6 (-639 (-1168))))))
+(((*1 *1) (-5 *1 (-143))) ((*1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 *4)) (-4 *4 (-362)) (-4 *2 (-1232 *4))
+ (-5 *1 (-917 *4 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
(((*1 *2 *1) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-182)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-554)) (-4 *3 (-171)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2))
- (-4 *2 (-681 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-916)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
+ ((*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-262)))))
(((*1 *1 *2)
(-12 (-5 *2 (-639 (-562))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044))
(-14 *4 (-639 (-1168)))))
@@ -6366,16 +6347,15 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-766)) (-5 *1 (-1276 *3 *4))
(-4 *4 (-712 (-406 (-562)))) (-4 *3 (-845)) (-4 *4 (-171)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171))))
- ((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1171)))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-168 (-224))))
+ (-5 *2 (-1030)) (-5 *1 (-749)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1150)) (-5 *1 (-191))))
- ((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
+ (-12 (-5 *2 (-2 (|:| -4066 (-562)) (|:| -2656 (-639 *3))))
+ (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6))
- (-5 *2 (-2 (|:| |bas| (-475 *4 *5 *6 *7)) (|:| -2775 (-639 *7))))
- (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
+ (-12 (-5 *2 (-608 *4)) (-5 *1 (-607 *3 *4)) (-4 *3 (-845))
+ (-4 *4 (-845)))))
(((*1 *2 *3 *2)
(-12 (-5 *2 (-639 (-378))) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-378))) (-5 *1 (-467))))
@@ -6384,480 +6364,469 @@
(-12 (-5 *3 (-916)) (-5 *4 (-869)) (-5 *2 (-1261)) (-5 *1 (-1257))))
((*1 *2 *1 *3 *4)
(-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
-(((*1 *1 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)) (-4 *2 (-1044))))
- ((*1 *1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *5)) (-5 *4 (-639 (-1 *6 (-639 *6))))
- (-4 *5 (-38 (-406 (-562)))) (-4 *6 (-1247 *5)) (-5 *2 (-639 *6))
- (-5 *1 (-1249 *5 *6)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-385 *2)) (-4 *2 (-1092))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-329)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 *3)) (-4 *3 (-1101 *5 *6 *7 *8))
- (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-588 *5 *6 *7 *8 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-683 *5))) (-5 *4 (-562)) (-4 *5 (-362))
- (-4 *5 (-1044)) (-5 *2 (-112)) (-5 *1 (-1024 *5))))
+ (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554))
+ (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-2 (|:| |goodPols| (-639 *8)) (|:| |badPols| (-639 *8))))
+ (-5 *1 (-972 *5 *6 *7 *8)) (-5 *4 (-639 *8)))))
+(((*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258))))
+ ((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))))
+(((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-417 *3)) (-4 *3 (-554))))
((*1 *2 *3)
- (-12 (-5 *3 (-639 (-683 *4))) (-4 *4 (-362)) (-4 *4 (-1044))
- (-5 *2 (-112)) (-5 *1 (-1024 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-683 *5)) (-4 *5 (-1044)) (-5 *1 (-1048 *3 *4 *5))
- (-14 *3 (-766)) (-14 *4 (-766)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *1)
- (-12
+ (-12 (-5 *3 (-639 (-2 (|:| -1635 *4) (|:| -2250 (-562)))))
+ (-4 *4 (-1232 (-562))) (-5 *2 (-766)) (-5 *1 (-441 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
+(((*1 *2 *3)
+ (-12 (-14 *4 (-639 (-1168))) (-14 *5 (-766))
(-5 *2
(-639
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
- (|:| |xpnt| (-562)))))
- (-5 *1 (-417 *3)) (-4 *3 (-554))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-766)) (-4 *3 (-348)) (-4 *5 (-1232 *3))
- (-5 *2 (-639 (-1164 *3))) (-5 *1 (-497 *3 *5 *6))
- (-4 *6 (-1232 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *2 (-1232 *4)) (-5 *1 (-802 *4 *2 *3 *5))
- (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2))
- (-4 *5 (-650 (-406 *2)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *2 (-1232 *4)) (-5 *1 (-802 *4 *2 *5 *3))
- (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-650 *2))
- (-4 *3 (-650 (-406 *2))))))
-(((*1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-1044)))))
+ (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4)
+ (-246 *4 (-406 (-562))))))
+ (-5 *1 (-504 *4 *5))
+ (-5 *3
+ (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4)
+ (-246 *4 (-406 (-562))))))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (-5 *2
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite| "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite| "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated")))
+ (-5 *1 (-191)))))
+(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
+ (|partial| -12 (-5 *3 (-608 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1168))) (-5 *5 (-1164 *2))
+ (-4 *2 (-13 (-429 *6) (-27) (-1192)))
+ (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *1 (-558 *6 *2 *7)) (-4 *7 (-1092))))
+ ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
+ (|partial| -12 (-5 *3 (-608 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1168)))
+ (-5 *5 (-406 (-1164 *2))) (-4 *2 (-13 (-429 *6) (-27) (-1192)))
+ (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *1 (-558 *6 *2 *7)) (-4 *7 (-1092)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-916)) (-5 *2 (-1256 (-1256 (-562)))) (-5 *1 (-465)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-899 *4))
+ (-4 *4 (-1092))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-639 *3)) (-5 *1 (-964 *4 *3))
+ (-4 *3 (-1232 *4)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-947 (-224))) (-5 *2 (-315 (-378))) (-5 *1 (-304)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-857)) (-5 *1 (-1148 *3)) (-4 *3 (-1092))
+ (-4 *3 (-1207)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1076 *3)) (-4 *3 (-131)))))
-(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-156))))
- ((*1 *2 *1) (-12 (-5 *2 (-156)) (-5 *1 (-869))))
- ((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-766)) (-4 *2 (-554)) (-5 *1 (-964 *2 *4))
- (-4 *4 (-1232 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-1164 (-947 *4))) (-5 *1 (-415 *3 *4))
- (-4 *3 (-416 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-4 *3 (-362))
- (-5 *2 (-1164 (-947 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *1) (-5 *1 (-185))))
+(((*1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
+ (-12 (-5 *4 (-683 (-562))) (-5 *5 (-112)) (-5 *7 (-683 (-224)))
+ (-5 *3 (-562)) (-5 *6 (-224)) (-5 *2 (-1030)) (-5 *1 (-749)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3))
- (-4 *3 (-962)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
- ((*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *1 *1) (-4 *1 (-1131))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168)) (-5 *2 (-1 (-224) (-224))) (-5 *1 (-698 *3))
- (-4 *3 (-610 (-535)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1168)) (-5 *2 (-1 (-224) (-224) (-224)))
- (-5 *1 (-698 *3)) (-4 *3 (-610 (-535))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-279))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
- (-5 *2
- (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
- (|:| |success| (-112))))
- (-5 *1 (-784)) (-5 *5 (-562)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-140))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-143)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+ (-12 (-4 *2 (-1232 *3)) (-5 *1 (-398 *3 *2))
+ (-4 *3 (-13 (-362) (-146))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-4 *3 (-554))
+ (-5 *2 (-1164 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-262)))))
+(((*1 *1) (-5 *1 (-185))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1247 *4))
+ (-4 *4 (-38 (-406 (-562))))
+ (-5 *2 (-1 (-1148 *4) (-1148 *4) (-1148 *4))) (-5 *1 (-1249 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1150)) (-5 *1 (-781)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224)))
+ (-5 *2 (-1030)) (-5 *1 (-742)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-5 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-479)))))
+(((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 (-562)) (-5 *1 (-1148 *3)) (-4 *3 (-1207))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *1 *1 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
+ (-4 *1 (-306))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3147 *1)))
+ (-4 *1 (-306)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7))))
+ (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-562)) (-4 *2 (-429 *3)) (-5 *1 (-32 *3 *2))
- (-4 *3 (-1033 *4)) (-4 *3 (-13 (-845) (-554))))))
+ (-12 (-5 *3 (-406 (-562))) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-554)) (-4 *8 (-944 *7 *5 *6))
+ (-5 *2 (-2 (|:| -1300 (-766)) (|:| -4221 *9) (|:| |radicand| *9)))
+ (-5 *1 (-948 *5 *6 *7 *8 *9)) (-5 *4 (-766))
+ (-4 *9
+ (-13 (-362)
+ (-10 -8 (-15 -4053 ($ *8)) (-15 -4063 (*8 $)) (-15 -4079 (*8 $))))))))
+(((*1 *1 *2) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))))
(((*1 *1) (-5 *1 (-185))))
(((*1 *2 *1 *3)
(|partial| -12 (-5 *3 (-1150)) (-5 *2 (-769)) (-5 *1 (-114))))
((*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1096)) (-5 *1 (-960)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-362)) (-4 *3 (-1044))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3147 *1)))
+ (-4 *1 (-847 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-843)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362)))
- (-4 *3 (-1232 *4)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1164 *9)) (-5 *4 (-639 *7)) (-4 *7 (-845))
- (-4 *9 (-944 *8 *6 *7)) (-4 *6 (-788)) (-4 *8 (-306))
- (-5 *2 (-639 (-766))) (-5 *1 (-737 *6 *7 *8 *9)) (-5 *5 (-766)))))
+ (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
+ (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
+(((*1 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1188)))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-562)) (-5 *3 (-916)) (-5 *1 (-693))))
+ ((*1 *2 *2 *2 *3 *4)
+ (-12 (-5 *2 (-683 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5))
+ (-4 *5 (-362)) (-5 *1 (-973 *5)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171))))
+ ((*1 *2 *3 *3 *2)
+ (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))))
+(((*1 *2 *3 *4 *3 *5 *3)
+ (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562))
+ (-5 *2 (-1030)) (-5 *1 (-749)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))))
+(((*1 *1) (-5 *1 (-185))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1044)) (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1256 *4)) (-5 *3 (-1112)) (-4 *4 (-348))
+ (-5 *1 (-527 *4)))))
+(((*1 *1) (-5 *1 (-156)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-944 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845))
+ (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-766)) (-5 *3 (-938 *5)) (-4 *5 (-1044))
+ (-5 *1 (-1156 *4 *5)) (-14 *4 (-916))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-639 (-766))) (-5 *3 (-766)) (-5 *1 (-1156 *4 *5))
+ (-14 *4 (-916)) (-4 *5 (-1044))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-639 (-766))) (-5 *3 (-938 *5)) (-4 *5 (-1044))
+ (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *5 (-766)) (-4 *6 (-1092)) (-4 *7 (-895 *6))
+ (-5 *2 (-683 *7)) (-5 *1 (-686 *6 *7 *3 *4)) (-4 *3 (-372 *7))
+ (-4 *4 (-13 (-372 *6) (-10 -7 (-6 -4403)))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-536 *3 *2))
+ (-4 *2 (-1247 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-4 *4 (-1232 *3))
+ (-4 *5 (-719 *3 *4)) (-5 *1 (-540 *3 *4 *5 *2)) (-4 *2 (-1247 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-5 *1 (-541 *3 *2))
+ (-4 *2 (-1247 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-13 (-554) (-146)))
+ (-5 *1 (-1144 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-262))))
+ ((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-641 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-348)) (-4 *5 (-328 *4)) (-4 *6 (-1232 *5))
+ (-5 *2 (-639 *3)) (-5 *1 (-772 *4 *5 *6 *3 *7)) (-4 *3 (-1232 *6))
+ (-14 *7 (-916)))))
+(((*1 *2 *1) (-12 (-5 *1 (-1202 *2)) (-4 *2 (-969)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1033 (-562))) (-4 *3 (-13 (-845) (-554)))
+ (-5 *1 (-32 *3 *2)) (-4 *2 (-429 *3))))
+ ((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-1164 *4)) (-5 *1 (-164 *3 *4))
+ (-4 *3 (-165 *4))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1044)) (-4 *1 (-301))))
+ ((*1 *2) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-1164 *3))))
+ ((*1 *2) (-12 (-4 *1 (-719 *3 *2)) (-4 *3 (-171)) (-4 *2 (-1232 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1061 *3 *2)) (-4 *3 (-13 (-843) (-362)))
+ (-4 *2 (-1232 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1216 *3)))))
+(((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *6))))
+ (-5 *4 (-1021 (-838 (-562)))) (-5 *5 (-1168)) (-5 *7 (-406 (-562)))
+ (-4 *6 (-1044)) (-5 *2 (-857)) (-5 *1 (-592 *6)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |var| (-639 (-1168))) (|:| |pred| (-52))))
+ (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *4 *3 *5))
+ (-4 *3 (-1232 *4))
+ (-4 *5 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-766)) (-4 *4 (-13 (-554) (-146)))
+ (-5 *1 (-1226 *4 *2)) (-4 *2 (-1232 *4)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5))
+ (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *1 (-1269 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-639 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554))
+ (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1269 *5 *6 *7 *8)))))
+(((*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3))))
+ ((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))))
(((*1 *2 *2)
(-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-146))
(-4 *3 (-306)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
(-5 *1 (-972 *3 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112)) (-5 *1 (-275 *4 *3))
- (-4 *3 (-13 (-429 *4) (-997))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-112)) (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3))
- (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-417 *3))
- (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-900 *4)) (-4 *4 (-1092)) (-5 *2 (-639 (-766)))
- (-5 *1 (-899 *4)))))
-(((*1 *1) (-5 *1 (-185))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *8 (-1058 *5 *6 *7))
- (-5 *2
- (-2 (|:| |val| (-639 *8))
- (|:| |towers| (-639 (-1022 *5 *6 *7 *8)))))
- (-5 *1 (-1022 *5 *6 *7 *8)) (-5 *3 (-639 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *8 (-1058 *5 *6 *7))
- (-5 *2
- (-2 (|:| |val| (-639 *8))
- (|:| |towers| (-639 (-1138 *5 *6 *7 *8)))))
- (-5 *1 (-1138 *5 *6 *7 *8)) (-5 *3 (-639 *8)))))
+(((*1 *2 *1) (-12 (-4 *1 (-184)) (-5 *2 (-639 (-860))))))
(((*1 *2 *3)
(-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
(-4 *3 (-13 (-362) (-1192) (-997))))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-372 *2)) (-4 *2 (-1207))
- (-4 *2 (-845))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4403))
- (-4 *1 (-372 *3)) (-4 *3 (-1207)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-639 *3)) (-4 *3 (-306)) (-5 *1 (-178 *3)))))
-(((*1 *2) (-12 (-5 *2 (-639 (-766))) (-5 *1 (-1259))))
- ((*1 *2 *2) (-12 (-5 *2 (-639 (-766))) (-5 *1 (-1259)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
- (-4 *3 (-13 (-362) (-1192) (-997))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-567 *3)) (-4 *3 (-1033 (-562)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
- (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-683 *2)) (-4 *2 (-171)) (-5 *1 (-145 *2))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-171)) (-4 *2 (-1232 *4)) (-5 *1 (-176 *4 *2 *3))
- (-4 *3 (-719 *4 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 (-406 (-947 *5)))) (-5 *4 (-1168))
- (-5 *2 (-947 *5)) (-5 *1 (-291 *5)) (-4 *5 (-451))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-683 (-406 (-947 *4)))) (-5 *2 (-947 *4))
- (-5 *1 (-291 *4)) (-4 *4 (-451))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-171)) (-4 *2 (-1232 *3))))
+ (-12 (-4 *4 (-554)) (-4 *5 (-987 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-141 *4 *5 *3))
+ (-4 *3 (-372 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-683 (-168 (-406 (-562)))))
- (-5 *2 (-947 (-168 (-406 (-562))))) (-5 *1 (-759 *4))
- (-4 *4 (-13 (-362) (-843)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 (-168 (-406 (-562))))) (-5 *4 (-1168))
- (-5 *2 (-947 (-168 (-406 (-562))))) (-5 *1 (-759 *5))
- (-4 *5 (-13 (-362) (-843)))))
+ (-12 (-4 *4 (-554)) (-4 *5 (-987 *4))
+ (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
+ (-5 *1 (-502 *4 *5 *6 *3)) (-4 *6 (-372 *4)) (-4 *3 (-372 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *2 (-947 (-406 (-562))))
- (-5 *1 (-774 *4)) (-4 *4 (-13 (-362) (-843)))))
+ (-12 (-5 *3 (-683 *5)) (-4 *5 (-987 *4)) (-4 *4 (-554))
+ (-5 *2 (-2 (|:| |num| (-683 *4)) (|:| |den| *4)))
+ (-5 *1 (-687 *4 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *4 (-1168))
- (-5 *2 (-947 (-406 (-562)))) (-5 *1 (-774 *5))
- (-4 *5 (-13 (-362) (-843))))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-916)) (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044))
- (-4 *4 (-787))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-406 (-562))) (-4 *1 (-1237 *3)) (-4 *3 (-1044)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1495 *4))))
- (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-788)) (-4 *5 (-1044)) (-4 *6 (-944 *5 *4 *2))
- (-4 *2 (-845)) (-5 *1 (-945 *4 *2 *5 *6 *3))
- (-4 *3
- (-13 (-362)
- (-10 -8 (-15 -4054 ($ *6)) (-15 -4065 (*6 $))
- (-15 -4076 (*6 $)))))))
+ (-12 (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562)))))
+ (-4 *6 (-1232 *5))
+ (-5 *2 (-2 (|:| -3339 *7) (|:| |rh| (-639 (-406 *6)))))
+ (-5 *1 (-802 *5 *6 *7 *3)) (-5 *4 (-639 (-406 *6)))
+ (-4 *7 (-650 *6)) (-4 *3 (-650 (-406 *6)))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554))
- (-5 *2 (-1168)) (-5 *1 (-1038 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-562)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))))
-(((*1 *2)
- (-12 (-5 *2 (-1256 (-1093 *3 *4))) (-5 *1 (-1093 *3 *4))
- (-14 *3 (-916)) (-14 *4 (-916)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-562)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-5 *2 (-1261)) (-5 *1 (-448 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1112)) (-5 *2 (-1261)) (-5 *1 (-826)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-306))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-446 *4 *5 *6 *2)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *3 (-112)) (-5 *1 (-110))))
- ((*1 *2 *2) (-12 (-5 *2 (-916)) (|has| *1 (-6 -4393)) (-4 *1 (-403))))
- ((*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1092)) (-4 *2 (-895 *5)) (-5 *1 (-686 *5 *2 *3 *4))
- (-4 *3 (-372 *2)) (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4402)))))))
-(((*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *2)
- (|partial| -12 (-5 *3 (-916)) (-5 *1 (-441 *2))
- (-4 *2 (-1232 (-562)))))
- ((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-916)) (-5 *4 (-766)) (-5 *1 (-441 *2))
- (-4 *2 (-1232 (-562)))))
- ((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-916)) (-5 *4 (-639 (-766))) (-5 *1 (-441 *2))
- (-4 *2 (-1232 (-562)))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *3 (-916)) (-5 *4 (-639 (-766))) (-5 *5 (-766))
- (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562)))))
- ((*1 *2 *3 *2 *4 *5 *6)
- (|partial| -12 (-5 *3 (-916)) (-5 *4 (-639 (-766))) (-5 *5 (-766))
- (-5 *6 (-112)) (-5 *1 (-441 *2)) (-4 *2 (-1232 (-562)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-916)) (-5 *4 (-417 *2)) (-4 *2 (-1232 *5))
- (-5 *1 (-443 *5 *2)) (-4 *5 (-1044)))))
-(((*1 *2 *1) (-12 (-4 *1 (-348)) (-5 *2 (-766))))
- ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-401)) (-5 *2 (-766)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-174)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2))
- (-4 *2 (-429 *3)))))
+ (-12 (-4 *4 (-554)) (-4 *5 (-987 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1225 *4 *5 *3))
+ (-4 *3 (-1232 *5)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-170))))))
+ (|partial| -12 (-4 *1 (-1218 *3 *2)) (-4 *3 (-1044))
+ (-4 *2 (-1247 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1271 (-1168) *3)) (-4 *3 (-1044)) (-5 *1 (-1278 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1271 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
+ (-5 *1 (-1280 *3 *4)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-378))))
((*1 *1 *1 *1) (-4 *1 (-544)))
((*1 *1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362))))
((*1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362))))
((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-766)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-647 (-406 *6))) (-5 *4 (-1 (-639 *5) *6))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-4 *6 (-1232 *5)) (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-647 (-406 *7))) (-5 *4 (-1 (-639 *6) *7))
- (-5 *5 (-1 (-417 *7) *7))
- (-4 *6 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-4 *7 (-1232 *6)) (-5 *2 (-639 (-406 *7))) (-5 *1 (-807 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-648 *6 (-406 *6))) (-5 *4 (-1 (-639 *5) *6))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-4 *6 (-1232 *5)) (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-648 *7 (-406 *7))) (-5 *4 (-1 (-639 *6) *7))
- (-5 *5 (-1 (-417 *7) *7))
- (-4 *6 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-4 *7 (-1232 *6)) (-5 *2 (-639 (-406 *7))) (-5 *1 (-807 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-647 (-406 *5))) (-4 *5 (-1232 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-5 *2 (-639 (-406 *5))) (-5 *1 (-807 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-647 (-406 *6))) (-5 *4 (-1 (-417 *6) *6))
- (-4 *6 (-1232 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-648 *5 (-406 *5))) (-4 *5 (-1232 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-5 *2 (-639 (-406 *5))) (-5 *1 (-807 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-648 *6 (-406 *6))) (-5 *4 (-1 (-417 *6) *6))
- (-4 *6 (-1232 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-5 *2 (-639 (-406 *6))) (-5 *1 (-807 *5 *6)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-750)))))
(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
+ ((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224)))
+ (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-63 LSFUN2))))
+ (-5 *2 (-1030)) (-5 *1 (-748)))))
(((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-766)) (-4 *2 (-1092))
(-5 *1 (-672 *2)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *2) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-105)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1131))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845))
- (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-766)) (-5 *1 (-777 *3)) (-4 *3 (-1044))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *1 (-958 *3 *2)) (-4 *2 (-130)) (-4 *3 (-554))
- (-4 *3 (-1044)) (-4 *2 (-787))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-766)) (-5 *1 (-1164 *3)) (-4 *3 (-1044))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-966)) (-4 *2 (-130)) (-5 *1 (-1170 *3)) (-4 *3 (-554))
- (-4 *3 (-1044))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-766)) (-5 *1 (-1229 *4 *3)) (-14 *4 (-1168))
- (-4 *3 (-1044)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
- (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
- (-5 *1 (-983 *3 *4 *5 *6 *7))))
+(((*1 *1 *1) (-4 *1 (-142)))
((*1 *2 *2)
- (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
- (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
- (-5 *1 (-1099 *3 *4 *5 *6 *7)))))
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-451)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-1170 (-406 (-562))))
+ (-5 *1 (-189)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-554))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-554)))))
+(((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
+(((*1 *1) (-5 *1 (-1056))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-362)) (-4 *5 (-554))
+ (-12 (-5 *4 (-1 (-639 *5) *6))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5))
+ (-5 *2 (-639 (-2 (|:| -1497 *5) (|:| -3339 *3))))
+ (-5 *1 (-804 *5 *6 *3 *7)) (-4 *3 (-650 *6))
+ (-4 *7 (-650 (-406 *6))))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6
+ *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8
+ *9)
+ (-12 (-5 *4 (-683 (-224))) (-5 *5 (-112)) (-5 *6 (-224))
+ (-5 *7 (-683 (-562)))
+ (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-80 CONFUN))))
+ (-5 *9 (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN))))
+ (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-748)))))
+(((*1 *1) (-5 *1 (-1258))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-766)) (-5 *6 (-112)) (-4 *7 (-451)) (-4 *8 (-788))
+ (-4 *9 (-845)) (-4 *3 (-1058 *7 *8 *9))
(-5 *2
- (-2 (|:| |minor| (-639 (-916))) (|:| -3342 *3)
- (|:| |minors| (-639 (-639 (-916)))) (|:| |ops| (-639 *3))))
- (-5 *1 (-90 *5 *3)) (-5 *4 (-916)) (-4 *3 (-650 *5)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-322 *3 *4)) (-4 *3 (-1092))
- (-4 *4 (-130)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
+ (-2 (|:| |done| (-639 *4))
+ (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))))
+ (-5 *1 (-1062 *7 *8 *9 *3 *4)) (-4 *4 (-1064 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
+ (-4 *3 (-1058 *6 *7 *8))
(-5 *2
- (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
- (|:| |success| (-112))))
- (-5 *1 (-784)) (-5 *5 (-562)))))
+ (-2 (|:| |done| (-639 *4))
+ (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))))
+ (-5 *1 (-1062 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-639 *4))
+ (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))))
+ (-5 *1 (-1062 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-766)) (-5 *6 (-112)) (-4 *7 (-451)) (-4 *8 (-788))
+ (-4 *9 (-845)) (-4 *3 (-1058 *7 *8 *9))
+ (-5 *2
+ (-2 (|:| |done| (-639 *4))
+ (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))))
+ (-5 *1 (-1137 *7 *8 *9 *3 *4)) (-4 *4 (-1101 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
+ (-4 *3 (-1058 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-639 *4))
+ (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))))
+ (-5 *1 (-1137 *6 *7 *8 *3 *4)) (-4 *4 (-1101 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-639 *4))
+ (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))))
+ (-5 *1 (-1137 *5 *6 *7 *3 *4)) (-4 *4 (-1101 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))))
(((*1 *2 *1 *1)
(-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
(-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-306)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
- (-5 *1 (-1116 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -1602 *6) (|:| |sol?| (-112))) (-562)
- *6))
- (-4 *6 (-362)) (-4 *7 (-1232 *6))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-362) (-1033 (-406 *2)))) (-5 *2 (-562))
+ (-5 *1 (-115 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207))
+ (-5 *2 (-639 *3)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *5 (-608 *4)) (-5 *6 (-1168))
+ (-4 *4 (-13 (-429 *7) (-27) (-1192)))
+ (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
(-5 *2
- (-3 (-2 (|:| |answer| (-406 *7)) (|:| |a0| *6))
- (-2 (|:| -3860 (-406 *7)) (|:| |coeff| (-406 *7))) "failed"))
- (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))))
-(((*1 *2)
- (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))))
-(((*1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207)))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4))))
+ (-5 *1 (-564 *7 *4 *3)) (-4 *3 (-650 *4)) (-4 *3 (-1092)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348))
- (-4 *2
- (-13 (-401)
- (-10 -7 (-15 -4054 (*2 *4)) (-15 -1999 ((-916) *2))
- (-15 -3928 ((-1256 *2) (-916))) (-15 -4374 (*2 *2)))))
- (-5 *1 (-355 *2 *4)))))
+ (-12
+ (-5 *3
+ (-2 (|:| -1767 (-683 (-406 (-947 *4))))
+ (|:| |vec| (-639 (-406 (-947 *4)))) (|:| -2172 (-766))
+ (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))
+ (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
+ (-4 *6 (-788))
+ (-5 *2
+ (-2 (|:| |partsol| (-1256 (-406 (-947 *4))))
+ (|:| -4291 (-639 (-1256 (-406 (-947 *4)))))))
+ (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-824)) (-5 *3 (-1150)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1168)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1164 *9)) (-5 *4 (-639 *7)) (-5 *5 (-639 *8))
- (-4 *7 (-845)) (-4 *8 (-1044)) (-4 *9 (-944 *8 *6 *7))
- (-4 *6 (-788)) (-5 *2 (-1164 *8)) (-5 *1 (-320 *6 *7 *8 *9)))))
-(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171))))
- ((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1112)) (-5 *2 (-112)) (-5 *1 (-816)))))
-(((*1 *1 *1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044))
- (-4 *4 (-788)) (-4 *5 (-845)) (-4 *3 (-554)))))
+ (-12 (-5 *3 (-1 *4 (-562))) (-5 *5 (-1 (-1148 *4))) (-4 *4 (-362))
+ (-4 *4 (-1044)) (-5 *2 (-1148 *4)) (-5 *1 (-1152 *4)))))
+(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-34)))
+ ((*1 *1) (-5 *1 (-129)))
+ ((*1 *1)
+ (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766))
+ (-4 *4 (-171))))
+ ((*1 *1) (-4 *1 (-721))) ((*1 *1) (-5 *1 (-1168)))
+ ((*1 *1) (-12 (-5 *1 (-1175 *2)) (-14 *2 (-916))))
+ ((*1 *1) (-5 *1 (-1212))) ((*1 *1) (-5 *1 (-1213)))
+ ((*1 *1) (-5 *1 (-1214))))
(((*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-949)))))
(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-310))))
((*1 *2 *1)
(-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
(-4 *4 (-1044)))))
-(((*1 *2 *2) (-12 (-5 *2 (-916)) (|has| *1 (-6 -4393)) (-4 *1 (-403))))
+(((*1 *2 *2) (-12 (-5 *2 (-916)) (|has| *1 (-6 -4394)) (-4 *1 (-403))))
((*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916))))
((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-693))))
((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-693)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378)))
- (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261))
- (-5 *1 (-783))))
- ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
- (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378)))
- (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261))
- (-5 *1 (-783)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-750)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-995 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-362)) (-5 *2 (-639 *3)) (-5 *1 (-940 *4 *3))
- (-4 *3 (-1232 *4)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1168))
- (-4 *4 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-555 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2)
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-315 (-224))) (-5 *2 (-315 (-378))) (-5 *1 (-304)))))
+ (-12 (-4 *4 (-845)) (-5 *2 (-639 (-639 (-639 *4))))
+ (-5 *1 (-1178 *4)) (-5 *3 (-639 (-639 *4))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-766)) (-5 *1 (-778 *2)) (-4 *2 (-38 (-406 (-562))))
+ (-4 *2 (-171)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-562)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1207))
+ (-4 *5 (-372 *4)) (-4 *3 (-372 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1164 *3)) (-4 *3 (-367)) (-4 *1 (-328 *3))
+ (-4 *3 (-362)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
- (-4 *6 (-788)) (-5 *2 (-406 (-947 *4))) (-5 *1 (-919 *4 *5 *6 *3))
- (-4 *3 (-944 *4 *6 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-683 *7)) (-4 *7 (-944 *4 *6 *5))
- (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
- (-4 *6 (-788)) (-5 *2 (-683 (-406 (-947 *4))))
- (-5 *1 (-919 *4 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *6 *5))
- (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
- (-4 *6 (-788)) (-5 *2 (-639 (-406 (-947 *4))))
- (-5 *1 (-919 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
+ (-12 (-4 *4 (-348))
+ (-5 *2 (-639 (-2 (|:| |deg| (-766)) (|:| -2723 *3))))
+ (-5 *1 (-215 *4 *3)) (-4 *3 (-1232 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-947 (-562))) (-5 *2 (-639 *1)) (-4 *1 (-1007))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-947 (-406 (-562)))) (-5 *2 (-639 *1)) (-4 *1 (-1007))))
- ((*1 *2 *3) (-12 (-5 *3 (-947 *1)) (-4 *1 (-1007)) (-5 *2 (-639 *1))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1164 (-562))) (-5 *2 (-639 *1)) (-4 *1 (-1007))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1164 (-406 (-562)))) (-5 *2 (-639 *1)) (-4 *1 (-1007))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1164 *1)) (-4 *1 (-1007)) (-5 *2 (-639 *1))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-843) (-362))) (-4 *3 (-1232 *4)) (-5 *2 (-639 *1))
- (-4 *1 (-1061 *4 *3)))))
+ (-12 (-5 *3 (-639 (-2 (|:| |deg| (-766)) (|:| -2723 *5))))
+ (-4 *5 (-1232 *4)) (-4 *4 (-348)) (-5 *2 (-639 *5))
+ (-5 *1 (-215 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-2 (|:| -1635 *5) (|:| -2250 (-562)))))
+ (-5 *4 (-562)) (-4 *5 (-1232 *4)) (-5 *2 (-639 *5))
+ (-5 *1 (-690 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-516))))
((*1 *2 *1)
(-12 (-4 *2 (-13 (-1092) (-34))) (-5 *1 (-1132 *3 *2))
@@ -6868,120 +6837,108 @@
(-4 *4 (-1092))))
((*1 *1 *2)
(-12 (-4 *1 (-363 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-921)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-315 (-378))) (-5 *1 (-304)))))
+(((*1 *1 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1164 *6)) (-5 *3 (-562)) (-4 *6 (-306)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-5 *1 (-737 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-315 (-562))) (|:| -3197 (-315 (-378)))
+ (-3 (|:| I (-315 (-562))) (|:| -3196 (-315 (-378)))
(|:| CF (-315 (-168 (-378)))) (|:| |switch| (-1167))))
(-5 *1 (-1167)))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554))
- (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-538 *4 *2 *5 *6))
- (-4 *4 (-306)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-766))))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-112))
- (-5 *2 (-1030)) (-5 *1 (-740)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 *4))))
- (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092)) (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-356 *3)) (-4 *3 (-348)))))
+(((*1 *2 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-746)))))
+(((*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-556 *3)) (-4 *3 (-544)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1030)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7))))
- (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1168))
- (-4 *5 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *2 (-2 (|:| -3860 *3) (|:| |coeff| *3))) (-5 *1 (-555 *5 *3))
- (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1232 (-48))))))
+(((*1 *2 *3 *4 *5 *6 *7 *6)
+ (|partial| -12
+ (-5 *5
+ (-2 (|:| |contp| *3)
+ (|:| -2656 (-639 (-2 (|:| |irr| *10) (|:| -2794 (-562)))))))
+ (-5 *6 (-639 *3)) (-5 *7 (-639 *8)) (-4 *8 (-845)) (-4 *3 (-306))
+ (-4 *10 (-944 *3 *9 *8)) (-4 *9 (-788))
+ (-5 *2
+ (-2 (|:| |polfac| (-639 *10)) (|:| |correct| *3)
+ (|:| |corrfact| (-639 (-1164 *3)))))
+ (-5 *1 (-621 *8 *9 *3 *10)) (-5 *4 (-639 (-1164 *3))))))
+(((*1 *1 *1) (-5 *1 (-1056))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-748)))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1168)) (-4 *5 (-362)) (-5 *2 (-639 (-1201 *5)))
- (-5 *1 (-1264 *5)) (-5 *4 (-1201 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *3 (-1232 (-406 (-562))))
- (-5 *2 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562))))
- (-5 *1 (-908 *3 *4)) (-4 *4 (-1232 (-406 *3)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1232 (-406 *2))) (-5 *2 (-562)) (-5 *1 (-908 *4 *3))
- (-4 *3 (-1232 (-406 *4))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030))
- (-5 *1 (-743)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1200 *5 *6 *7 *3))
+ (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-112)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1132 *4 *5)) (-4 *4 (-13 (-1092) (-34)))
+ (-4 *5 (-13 (-1092) (-34))) (-5 *2 (-112)) (-5 *1 (-1133 *4 *5)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *1) (|partial| -12 (-4 *1 (-1007)) (-5 *2 (-857)))))
(((*1 *1 *1 *1 *2)
(-12 (-5 *2 (-562)) (-4 *1 (-645 *3)) (-4 *3 (-1207))))
((*1 *1 *2 *1 *3)
(-12 (-5 *3 (-562)) (-4 *1 (-645 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-114)) (-5 *4 (-766)) (-4 *5 (-451)) (-4 *5 (-845))
- (-4 *5 (-1033 (-562))) (-4 *5 (-554)) (-5 *1 (-41 *5 *2))
- (-4 *2 (-429 *5))
- (-4 *2
- (-13 (-362) (-301)
- (-10 -8 (-15 -4065 ((-1117 *5 (-608 $)) $))
- (-15 -4076 ((-1117 *5 (-608 $)) $))
- (-15 -4054 ($ (-1117 *5 (-608 $))))))))))
(((*1 *1 *1) (-4 *1 (-655))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 *8)) (-4 *8 (-944 *5 *7 *6))
- (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168))))
- (-4 *7 (-788))
- (-5 *2
- (-639
- (-2 (|:| -2173 (-766))
- (|:| |eqns|
- (-639
- (-2 (|:| |det| *8) (|:| |rows| (-639 (-562)))
- (|:| |cols| (-639 (-562))))))
- (|:| |fgb| (-639 *8)))))
- (-5 *1 (-919 *5 *6 *7 *8)) (-5 *4 (-766)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-639 (-947 *6))) (-5 *4 (-639 (-1168))) (-4 *6 (-451))
- (-5 *2 (-639 (-639 *7))) (-5 *1 (-537 *6 *7 *5)) (-4 *7 (-362))
- (-4 *5 (-13 (-362) (-843))))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-766)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-1208 *3)) (-4 *3 (-845))
- (-4 *3 (-1092)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2835 *4)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)))))
(((*1 *1) (-5 *1 (-329))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-766)) (-5 *2 (-112))))
+(((*1 *1 *1 *1) (-5 *1 (-224)))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3))))
((*1 *2 *3 *3)
- (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1208 *3)) (-4 *3 (-1092))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1092)) (-5 *2 (-112))
- (-5 *1 (-1208 *3)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-639
- (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 *3))
- (|:| |logand| (-1164 *3)))))
- (-5 *1 (-583 *3)) (-4 *3 (-362)))))
+ (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035))))
+ ((*1 *1 *1 *1) (-4 *1 (-1131))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *3 *4 *5 *5 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *3 (-947 *6)) (-5 *4 (-1168))
+ (-5 *5 (-838 *7))
+ (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-4 *7 (-13 (-1192) (-29 *6))) (-5 *1 (-223 *6 *7))))
+ ((*1 *2 *3 *4 *4 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1164 *6)) (-5 *4 (-838 *6))
+ (-4 *6 (-13 (-1192) (-29 *5)))
+ (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-223 *5 *6)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-406 (-1164 (-315 *3)))) (-4 *3 (-13 (-554) (-845)))
+ (-5 *1 (-1122 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-766)) (-5 *1 (-584 *2)) (-4 *2 (-544)))))
-(((*1 *2)
- (-12 (-4 *4 (-362)) (-5 *2 (-766)) (-5 *1 (-327 *3 *4))
- (-4 *3 (-328 *4))))
- ((*1 *2) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-766)))))
+ (-12 (-5 *2 (-417 (-1164 (-562)))) (-5 *1 (-190)) (-5 *3 (-562)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2355 *3) (|:| |coef1| (-777 *3))))
+ (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))))
(((*1 *2 *2 *3)
(-12 (-5 *3 (-406 (-562))) (-4 *4 (-1033 (-562)))
(-4 *4 (-13 (-845) (-554))) (-5 *1 (-32 *4 *2)) (-4 *2 (-429 *4))))
@@ -7054,74 +7011,71 @@
(-5 *1 (-1154 *3))))
((*1 *1 *1 *2)
(-12 (-4 *1 (-1247 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-362))
+ (-5 *1 (-520 *2 *4 *5 *3)) (-4 *3 (-681 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2))
+ (|has| *2 (-6 (-4405 "*"))) (-4 *2 (-1044))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-171))
+ (-5 *1 (-682 *2 *4 *5 *3)) (-4 *3 (-681 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2))
+ (-4 *5 (-237 *3 *2)) (|has| *2 (-6 (-4405 "*"))) (-4 *2 (-1044)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-562)) (-4 *5 (-348)) (-5 *2 (-417 (-1164 (-1164 *5))))
- (-5 *1 (-1205 *5)) (-5 *3 (-1164 (-1164 *5))))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-898 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-1148 *3))) (-5 *2 (-1148 *3)) (-5 *1 (-1152 *3))
- (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)))))
-(((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-402 *3)) (-4 *3 (-403))))
- ((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-402 *3)) (-4 *3 (-403))))
- ((*1 *2 *2) (-12 (-5 *2 (-916)) (|has| *1 (-6 -4393)) (-4 *1 (-403))))
- ((*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916))))
- ((*1 *2 *1) (-12 (-4 *1 (-864 *3)) (-5 *2 (-1148 (-562))))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-554)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
- (-5 *1 (-1197 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-639 (-406 *7)))
- (-4 *7 (-1232 *6)) (-5 *3 (-406 *7)) (-4 *6 (-362))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-572 *6 *7)))))
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1092))
+ (-4 *6 (-1092)) (-5 *2 (-1 *6 *5)) (-5 *1 (-678 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-417 *3)) (-5 *1 (-909 *3)) (-4 *3 (-306)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224)))
+ (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-79 LSFUN1))))
+ (-5 *2 (-1030)) (-5 *1 (-748)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-435)))))
(((*1 *1 *1)
- (-12 (-4 *1 (-1200 *2 *3 *4 *5)) (-4 *2 (-554)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *5 (-1058 *2 *3 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1606 *3)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-146))
+ (-4 *3 (-306)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *1 (-972 *3 *4 *5 *6)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
- (-4 *6 (-788)) (-5 *2 (-639 *3)) (-5 *1 (-919 *4 *5 *6 *3))
- (-4 *3 (-944 *4 *6 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845)) (-4 *5 (-1058 *3 *4 *2)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2835 *3) (|:| |coef2| (-777 *3))))
- (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
+ (-12 (-5 *3 (-1164 *6)) (-4 *6 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *2 (-1164 *7)) (-5 *1 (-320 *4 *5 *6 *7))
+ (-4 *7 (-944 *6 *4 *5)))))
+(((*1 *2 *1)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -2429 (-114)) (|:| |arg| (-639 (-887 *3)))))
+ (-5 *1 (-887 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-114)) (-5 *2 (-639 (-887 *4)))
+ (-5 *1 (-887 *4)) (-4 *4 (-1092)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1232 *5))
- (-5 *1 (-722 *5 *2)) (-4 *5 (-362)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168))
- (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-276 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4)))))
- ((*1 *1 *1) (-5 *1 (-378)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4))))
- (-5 *1 (-771 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
-(((*1 *1)
- (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766))
- (-4 *4 (-171)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1164 *3)) (-5 *1 (-909 *3)) (-4 *3 (-306)))))
+ (-12 (-5 *3 (-683 (-168 (-406 (-562)))))
+ (-5 *2
+ (-639
+ (-2 (|:| |outval| (-168 *4)) (|:| |outmult| (-562))
+ (|:| |outvect| (-639 (-683 (-168 *4)))))))
+ (-5 *1 (-759 *4)) (-4 *4 (-13 (-362) (-843))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *2 (-562))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
+ (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))))
+(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-390)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |preimage| (-639 *3)) (|:| |image| (-639 *3))))
+ (-5 *1 (-900 *3)) (-4 *3 (-1092)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-683 *4)) (-4 *4 (-362)) (-5 *2 (-1164 *4))
- (-5 *1 (-531 *4 *5 *6)) (-4 *5 (-362)) (-4 *6 (-13 (-362) (-843))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1141 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))))
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-562)) (-5 *1 (-485 *4))
+ (-4 *4 (-1232 *2)))))
(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-31))))
((*1 *2 *1) (-12 (-5 *2 (-1173)) (-5 *1 (-49))))
((*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-132))))
@@ -7133,44 +7087,47 @@
((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1014))))
((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1059))))
((*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-1088)))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224)))
+ (-5 *2 (-1030)) (-5 *1 (-742)))))
(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-244 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 (-639 *2))) (-5 *4 (-639 *5))
+ (-4 *5 (-38 (-406 (-562)))) (-4 *2 (-1247 *5))
+ (-5 *1 (-1249 *5 *2)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-857)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
+(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224)))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))))
+ (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))
+ (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-1 (-583 *3) *3 (-1168)))
+ (-5 *6
+ (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
+ (-1168)))
+ (-4 *3 (-283)) (-4 *3 (-625)) (-4 *3 (-1033 *4)) (-4 *3 (-429 *7))
+ (-5 *4 (-1168)) (-4 *7 (-610 (-887 (-562)))) (-4 *7 (-451))
+ (-4 *7 (-881 (-562))) (-4 *7 (-845)) (-5 *2 (-583 *3))
+ (-5 *1 (-571 *7 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-112))
- (-5 *1 (-187 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 (-168 *4))))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *2 (-112)) (-5 *1 (-1196 *4 *3))
- (-4 *3 (-13 (-27) (-1192) (-429 *4))))))
-(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1207)))))
-(((*1 *1 *1 *1) (-4 *1 (-142)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544))))
- ((*1 *1 *1 *1) (-5 *1 (-857)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-562))) (-5 *1 (-1042))
- (-5 *3 (-562)))))
-(((*1 *2 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-396)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-554))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *3))
- (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-406 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-554))
- (-4 *4 (-1044)) (-4 *2 (-1247 *4)) (-5 *1 (-1250 *4 *5 *6 *2))
- (-4 *6 (-650 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))))
+ (-12 (-5 *3 (-1168))
+ (-5 *2
+ (-2 (|:| |zeros| (-1148 (-224))) (|:| |ones| (-1148 (-224)))
+ (|:| |singularities| (-1148 (-224)))))
+ (-5 *1 (-105)))))
(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-96))))
((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-109))))
((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-114))))
@@ -7186,161 +7143,127 @@
((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1067 *3)) (-14 *3 *2)))
((*1 *2 *1) (-12 (-5 *2 (-505)) (-5 *1 (-1107))))
((*1 *1 *1) (-5 *1 (-1168))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-639 *7)) (-5 *3 (-562)) (-4 *7 (-944 *4 *5 *6))
- (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-5 *1 (-448 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
- (-14 *5 (-639 (-1168))) (-5 *2 (-639 (-639 (-1019 (-406 *4)))))
- (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7))
- (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7))
- (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-947 *4)))
- (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2 (-639 (-639 (-1019 (-406 *4))))) (-5 *1 (-1282 *4 *5 *6))
- (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-150 *2))
- (-4 *2 (-1207)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)) (-4 *5 (-362))
- (-5 *2 (-112)) (-5 *1 (-661 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4403))))
- (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))) (-5 *2 (-112))
- (-5 *1 (-662 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-817)) (-5 *1 (-816)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))))
-(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788))
- (-4 *8 (-845)) (-4 *9 (-1058 *6 *7 *8))
- (-5 *2
- (-2 (|:| -3342 (-639 *9)) (|:| -1495 *4) (|:| |ineq| (-639 *9))))
- (-5 *1 (-983 *6 *7 *8 *9 *4)) (-5 *3 (-639 *9))
- (-4 *4 (-1064 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788))
- (-4 *8 (-845)) (-4 *9 (-1058 *6 *7 *8))
- (-5 *2
- (-2 (|:| -3342 (-639 *9)) (|:| -1495 *4) (|:| |ineq| (-639 *9))))
- (-5 *1 (-1099 *6 *7 *8 *9 *4)) (-5 *3 (-639 *9))
- (-4 *4 (-1064 *6 *7 *8 *9)))))
+(((*1 *1) (-5 *1 (-436))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-112)) (-5 *5 (-683 (-224)))
+ (-5 *2 (-1030)) (-5 *1 (-750)))))
(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1021 (-838 (-562))))
- (-5 *3 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *4)))) (-4 *4 (-1044))
- (-5 *1 (-592 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-467)))))
-(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1168)))))
+ (-12 (-5 *1 (-426 *3 *2)) (-4 *3 (-13 (-171) (-38 (-406 (-562)))))
+ (-4 *2 (-13 (-845) (-21))))))
+(((*1 *1) (-5 *1 (-140))) ((*1 *1 *1) (-5 *1 (-143)))
+ ((*1 *1 *1) (-4 *1 (-1136))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-639 (-1132 *4 *5))) (-5 *3 (-1 (-112) *5 *5))
+ (-4 *4 (-13 (-1092) (-34))) (-4 *5 (-13 (-1092) (-34)))
+ (-5 *1 (-1133 *4 *5))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-1132 *3 *4))) (-4 *3 (-13 (-1092) (-34)))
+ (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-975 *2)) (-4 *2 (-1044))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-1044)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-174))) (-5 *1 (-1077)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-639 *7)) (-5 *3 (-112)) (-4 *7 (-1058 *4 *5 *6))
+ (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-5 *1 (-972 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451))
+ (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *1 (-972 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-639 *7)) (-5 *3 (-112)) (-4 *7 (-1058 *4 *5 *6))
+ (-4 *4 (-451)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-5 *1 (-972 *4 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5)))
+ (-5 *2 (-112)) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224)))
+ (-5 *2 (-1030)) (-5 *1 (-742)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-554) (-146)))
- (-5 *2 (-2 (|:| -1588 *3) (|:| -1602 *3))) (-5 *1 (-1226 *4 *3))
- (-4 *3 (-1232 *4)))))
+ (-12 (-5 *3 (-335 *5 *6 *7 *8)) (-4 *5 (-429 *4)) (-4 *6 (-1232 *5))
+ (-4 *7 (-1232 (-406 *6))) (-4 *8 (-341 *5 *6 *7))
+ (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-112))
+ (-5 *1 (-906 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-335 (-406 (-562)) *4 *5 *6))
+ (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-1232 (-406 *4)))
+ (-4 *6 (-341 (-406 (-562)) *4 *5)) (-5 *2 (-112))
+ (-5 *1 (-907 *4 *5 *6)))))
(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-31))))
((*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916)))) ((*1 *1) (-4 *1 (-544)))
((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-693))))
((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
-(((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150))
- (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-815)) (-14 *5 (-1168))
- (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
- (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224)))
- (-5 *2 (-1030)) (-5 *1 (-752)))))
-(((*1 *2)
- (-12 (-4 *3 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-1261))
- (-5 *1 (-432 *3 *4)) (-4 *4 (-429 *3)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
+(((*1 *1) (-12 (-4 *1 (-1040 *2)) (-4 *2 (-23)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-639 (-1229 *5 *4)))
+ (-5 *1 (-1106 *4 *5)) (-5 *3 (-1229 *5 *4)))))
(((*1 *2)
- (-12 (-4 *1 (-348))
- (-5 *2 (-639 (-2 (|:| -1635 (-562)) (|:| -1960 (-562))))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-938 *4))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
- (-4 *4 (-1044)))))
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-715)) (-5 *2 (-916))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-717)) (-5 *2 (-766)))))
+(((*1 *1 *1) (-4 *1 (-625)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997) (-1192))))))
+(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
+ (|partial| -12 (-5 *2 (-639 (-1164 *13))) (-5 *3 (-1164 *13))
+ (-5 *4 (-639 *12)) (-5 *5 (-639 *10)) (-5 *6 (-639 *13))
+ (-5 *7 (-639 (-639 (-2 (|:| -2542 (-766)) (|:| |pcoef| *13)))))
+ (-5 *8 (-639 (-766))) (-5 *9 (-1256 (-639 (-1164 *10))))
+ (-4 *12 (-845)) (-4 *10 (-306)) (-4 *13 (-944 *10 *11 *12))
+ (-4 *11 (-788)) (-5 *1 (-702 *11 *12 *10 *13)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-869)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788))
+ (-5 *2
+ (-2 (|:| |mval| (-683 *4)) (|:| |invmval| (-683 *4))
+ (|:| |genIdeal| (-503 *4 *5 *6 *7))))
+ (-5 *1 (-503 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044))
(-5 *2
- (-2 (|:| -2865 (-766)) (|:| |curves| (-766))
+ (-2 (|:| -1358 (-766)) (|:| |curves| (-766))
(|:| |polygons| (-766)) (|:| |constructs| (-766)))))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
+(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-798)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1232 *2)) (-4 *2 (-1211)) (-5 *1 (-147 *2 *4 *3))
+ (-4 *3 (-1232 (-406 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-362) (-843))) (-5 *1 (-180 *3 *2))
+ (-4 *2 (-1232 (-168 *3))))))
+(((*1 *2 *2 *2 *3 *3)
+ (-12 (-5 *3 (-766)) (-4 *4 (-1044)) (-5 *1 (-1228 *4 *2))
+ (-4 *2 (-1232 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1168))
+ (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2 (-583 *3)) (-5 *1 (-425 *5 *3))
+ (-4 *3 (-13 (-1192) (-29 *5))))))
+(((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *3 *4 *3)
(-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-750)))))
+ (-5 *1 (-742)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-451))
- (-5 *2
- (-639
- (-2 (|:| |eigval| (-3 (-406 (-947 *4)) (-1157 (-1168) (-947 *4))))
- (|:| |eigmult| (-766))
- (|:| |eigvec| (-639 (-683 (-406 (-947 *4))))))))
- (-5 *1 (-291 *4)) (-5 *3 (-683 (-406 (-947 *4)))))))
-(((*1 *2 *1) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
- (-5 *2 (-1030)) (-5 *1 (-745)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-256)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-119 *2)) (-4 *2 (-1207)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 (-562))) (-4 *3 (-1044)) (-5 *1 (-99 *3))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-99 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-99 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
- (-4 *3 (-1058 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-639 *4))
- (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))))
- (-5 *1 (-1062 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-639 *4))
- (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))))
- (-5 *1 (-1062 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
- (-4 *3 (-1058 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-639 *4))
- (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))))
- (-5 *1 (-1137 *6 *7 *8 *3 *4)) (-4 *4 (-1101 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-639 *4))
- (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))))
- (-5 *1 (-1137 *5 *6 *7 *3 *4)) (-4 *4 (-1101 *5 *6 *7 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1156 3 *3)) (-4 *3 (-1044)) (-4 *1 (-1126 *3))))
- ((*1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-554)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
- (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-845)) (-4 *3 (-1092)))))
(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-62 *3)) (-14 *3 (-1168))))
((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-69 *3)) (-14 *3 (-1168))))
((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-72 *3)) (-14 *3 (-1168))))
@@ -7351,195 +7274,180 @@
((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130))))
((*1 *2 *3)
(-12 (-5 *3 (-639 (-857))) (-5 *2 (-1261)) (-5 *1 (-1130)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1044)) (-4 *3 (-845))
- (-5 *2 (-2 (|:| |val| *1) (|:| -1960 (-562)))) (-4 *1 (-429 *3))))
- ((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| |val| (-887 *3)) (|:| -1960 (-887 *3))))
- (-5 *1 (-887 *3)) (-4 *3 (-1092))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044))
- (-4 *7 (-944 *6 *4 *5))
- (-5 *2 (-2 (|:| |val| *3) (|:| -1960 (-562))))
- (-5 *1 (-945 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-362)
- (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $))
- (-15 -4076 (*7 $))))))))
-(((*1 *2 *3) (-12 (-5 *3 (-490)) (-5 *2 (-685 (-577))) (-5 *1 (-577)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1044)) (-4 *7 (-1044))
- (-4 *6 (-1232 *5)) (-5 *2 (-1164 (-1164 *7)))
- (-5 *1 (-500 *5 *6 *4 *7)) (-4 *4 (-1232 *6)))))
-(((*1 *1 *1 *1) (|partial| -4 *1 (-130))))
-(((*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-224)) (-5 *1 (-304)))))
-(((*1 *2 *1) (-12 (-4 *1 (-184)) (-5 *2 (-639 (-112))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-900 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1092)) (-5 *2 (-884 *3 *4)) (-5 *1 (-880 *3 *4 *5))
- (-4 *3 (-1092)) (-4 *5 (-660 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-944 *3 *5 *4)) (-5 *1 (-982 *3 *4 *5 *2))
- (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-224) (-224) (-224)))
- (-5 *4 (-3 (-1 (-224) (-224) (-224) (-224)) "undefined"))
- (-5 *5 (-1086 (-224))) (-5 *6 (-639 (-262))) (-5 *2 (-1125 (-224)))
- (-5 *1 (-691)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-857))))
- ((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-957)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168))
- (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *2 (-583 *3)) (-5 *1 (-425 *5 *3))
- (-4 *3 (-13 (-1192) (-29 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-554) (-1033 (-562)) (-146)))
- (-5 *2 (-583 (-406 (-947 *5)))) (-5 *1 (-568 *5))
- (-5 *3 (-406 (-947 *5))))))
(((*1 *2 *3 *4)
(-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4))
- (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-554) (-845)))
- (-4 *2 (-13 (-429 *4) (-997) (-1192))) (-5 *1 (-596 *4 *2 *3))
- (-4 *3 (-13 (-429 (-168 *4)) (-997) (-1192))))))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4))))
+ (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-490)) (-5 *2 (-685 (-577))) (-5 *1 (-577)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-639 (-777 *3))) (-5 *1 (-777 *3)) (-4 *3 (-554))
+ (-4 *3 (-1044)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-274)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-766)) (-4 *6 (-362)) (-5 *4 (-1201 *6))
+ (-5 *2 (-1 (-1148 *4) (-1148 *4))) (-5 *1 (-1264 *6))
+ (-5 *5 (-1148 *4)))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-869))
+ (-5 *5 (-916)) (-5 *6 (-639 (-262))) (-5 *2 (-1257))
+ (-5 *1 (-1260))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-639 (-262)))
+ (-5 *2 (-1257)) (-5 *1 (-1260)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-215 *4 *2))
+ (-4 *2 (-1232 *4)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-224) (-224))) (-5 *1 (-317)) (-5 *3 (-224)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-855)) (-5 *2 (-685 (-547))) (-5 *3 (-547)))))
+ (-12 (-5 *3 (-1168)) (-5 *2 (-685 (-186))) (-5 *1 (-186)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-114)) (-4 *4 (-1044)) (-5 *1 (-709 *4 *2))
+ (-4 *2 (-642 *4))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-831 *2)) (-4 *2 (-1044)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-857))))
+ ((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-957)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-922))
- (-5 *2
- (-2 (|:| |brans| (-639 (-639 (-938 (-224)))))
- (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))))
- (-5 *1 (-152))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-922)) (-5 *4 (-406 (-562)))
- (-5 *2
- (-2 (|:| |brans| (-639 (-639 (-938 (-224)))))
- (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))))
- (-5 *1 (-152))))
- ((*1 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |brans| (-639 (-639 (-938 (-224)))))
- (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))))
- (-5 *1 (-152)) (-5 *3 (-639 (-938 (-224))))))
- ((*1 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |brans| (-639 (-639 (-938 (-224)))))
- (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))))
- (-5 *1 (-152)) (-5 *3 (-639 (-639 (-938 (-224)))))))
- ((*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-262)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+ (-12 (-5 *3 (-639 *4)) (-4 *4 (-843)) (-4 *4 (-362)) (-5 *2 (-766))
+ (-5 *1 (-940 *4 *5)) (-4 *5 (-1232 *4)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-306))))
+ ((*1 *2 *1 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |lm| (-385 *3)) (|:| |rm| (-385 *3))))
+ (-5 *1 (-385 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3380 (-766)) (|:| -1441 (-766))))
+ (-5 *1 (-766))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-406 (-562))) (-4 *1 (-552 *3))
+ (-4 *3 (-13 (-403) (-1192)))))
+ ((*1 *1 *2) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192)))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))))
(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+ (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-416 *3)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1258))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+(((*1 *1 *1) (-5 *1 (-1056))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-841)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-451)) (-4 *4 (-554))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| -3959 *4))) (-5 *1 (-964 *4 *3))
+ (-4 *3 (-1232 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 (-1148 *7))) (-4 *6 (-845))
- (-4 *7 (-944 *5 (-530 *6) *6)) (-4 *5 (-1044))
- (-5 *2 (-1 (-1148 *7) *7)) (-5 *1 (-1118 *5 *6 *7)))))
+ (|partial| -12 (-5 *4 (-639 (-406 *6))) (-5 *3 (-406 *6))
+ (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-566 *5 *6)))))
(((*1 *2 *3 *3)
(-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035)))))
(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-390)))))
-(((*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259))))
- ((*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-639 (-480 *4 *5))) (-5 *3 (-639 (-859 *4)))
- (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *1 (-470 *4 *5 *6))
- (-4 *6 (-451)))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1232 *6))
- (-4 *6 (-13 (-362) (-146) (-1033 *4))) (-5 *4 (-562))
- (-5 *2
- (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112))))
- (|:| -3342
- (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
- (|:| |beta| *3)))))
- (-5 *1 (-1010 *6 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-1213))))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
- (-4 *3 (-1058 *6 *7 *8))
- (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4))))
- (-5 *1 (-1065 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1495 *9))))
- (-5 *5 (-112)) (-4 *8 (-1058 *6 *7 *4)) (-4 *9 (-1064 *6 *7 *4 *8))
- (-4 *6 (-451)) (-4 *7 (-788)) (-4 *4 (-845))
- (-5 *2 (-639 (-2 (|:| |val| *8) (|:| -1495 *9))))
- (-5 *1 (-1065 *6 *7 *4 *8 *9)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
-(((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-326 *3)) (-4 *3 (-1207))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-766)) (-5 *1 (-515 *3 *4)) (-4 *3 (-1207))
- (-14 *4 (-562)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-315 (-224))) (-5 *2 (-406 (-562))) (-5 *1 (-304)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1256 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-362))
- (-4 *1 (-719 *5 *6)) (-4 *5 (-171)) (-4 *6 (-1232 *5))
- (-5 *2 (-683 *5)))))
+ (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168))
+ (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-315 *5)))
+ (-5 *1 (-1121 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168)))
+ (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-639 (-315 *5))))
+ (-5 *1 (-1121 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-480 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044))
- (-5 *2 (-246 *4 *5)) (-5 *1 (-939 *4 *5)))))
+ (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-953 (-1112)))
+ (-5 *1 (-345 *4)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-224) (-224) (-224) (-224))) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224) (-224))) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *1 (-262)))))
+ (|partial| -12 (-5 *2 (-1271 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171))
+ (-5 *1 (-658 *3 *4))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-658 *3 *4)) (-5 *1 (-1276 *3 *4))
+ (-4 *3 (-845)) (-4 *4 (-171)))))
+(((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-938 (-224))) (-5 *4 (-869)) (-5 *5 (-916))
+ (-5 *2 (-1261)) (-5 *1 (-467))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-938 (-224))) (-5 *2 (-1261)) (-5 *1 (-467))))
+ ((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-639 (-938 (-224)))) (-5 *4 (-869)) (-5 *5 (-916))
+ (-5 *2 (-1261)) (-5 *1 (-467)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1044)) (-4 *5 (-1232 *4)) (-5 *2 (-1 *6 (-639 *6)))
+ (-5 *1 (-1250 *4 *5 *3 *6)) (-4 *3 (-650 *5)) (-4 *6 (-1247 *4)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788))
+ (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-639 (-639 (-639 *4)))) (-5 *3 (-639 *4)) (-4 *4 (-845))
+ (-5 *1 (-1178 *4)))))
+(((*1 *1 *2 *3 *4)
+ (-12
+ (-5 *3
+ (-639
+ (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 *2))
+ (|:| |logand| (-1164 *2)))))
+ (-5 *4 (-639 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
+ (-4 *2 (-362)) (-5 *1 (-583 *2)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3)))))
+ (-12 (-4 *3 (-554)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-362) (-301)
+ (-10 -8 (-15 -4063 ((-1117 *3 (-608 $)) $))
+ (-15 -4079 ((-1117 *3 (-608 $)) $))
+ (-15 -4053 ($ (-1117 *3 (-608 $))))))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-362)) (-4 *3 (-1044))
+ (-5 *1 (-1152 *3)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *4 (-451)) (-4 *3 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
+ (-5 *1 (-448 *4 *3 *5 *6)) (-4 *6 (-944 *4 *3 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1092)) (-4 *3 (-895 *5)) (-5 *2 (-683 *3))
+ (-5 *1 (-686 *5 *3 *6 *4)) (-4 *6 (-372 *3))
+ (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-766)) (-5 *4 (-1256 *2)) (-4 *5 (-306))
+ (-4 *6 (-987 *5)) (-4 *2 (-13 (-408 *6 *7) (-1033 *6)))
+ (-5 *1 (-412 *5 *6 *7 *2)) (-4 *7 (-1232 *6)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-451)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-639 (-639 (-562)))) (-5 *1 (-966))
+ (-5 *3 (-639 (-562))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
+ (-4 *4 (-1044)))))
(((*1 *2)
- (-12 (-4 *2 (-13 (-429 *3) (-997))) (-5 *1 (-275 *3 *2))
- (-4 *3 (-13 (-845) (-554))))))
-(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
- (|partial| -12 (-5 *5 (-1168))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-639 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-639 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -3860 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1192) (-27) (-429 *8)))
- (-4 *8 (-13 (-451) (-845) (-146) (-1033 *3) (-635 *3)))
- (-5 *3 (-562)) (-5 *2 (-639 *4)) (-5 *1 (-1009 *8 *4)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-128)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-551)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 (-1168))) (-4 *4 (-1092))
- (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4))))
- (-5 *1 (-54 *4 *5 *2))
- (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))))))
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))))
(((*1 *2 *3) (-12 (-5 *3 (-387)) (-5 *2 (-1261)) (-5 *1 (-390))))
((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-390)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1164 *1)) (-4 *1 (-1007)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
- (-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1172)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1232 *4)) (-4 *4 (-1211))
+ (-4 *1 (-341 *4 *3 *5)) (-4 *5 (-1232 (-406 *3))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
- (-4 *4 (-1044)))))
-(((*1 *2 *3) (-12 (-5 *3 (-836)) (-5 *2 (-1030)) (-5 *1 (-835))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-315 (-378)))) (-5 *4 (-639 (-378)))
- (-5 *2 (-1030)) (-5 *1 (-835)))))
+ (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1))
+ (-4 *1 (-1058 *3 *4 *5)))))
+(((*1 *2 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-749)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1 (-1148 *4) (-1148 *4))) (-5 *2 (-1148 *4))
(-5 *1 (-1281 *4)) (-4 *4 (-1207))))
@@ -7573,69 +7481,113 @@
(-4 *6 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))) (-4 *4 (-1092))
(-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4))))
(-5 *1 (-1068 *4 *5 *6)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-938 (-224)) (-224) (-224)))
- (-5 *3 (-1 (-224) (-224) (-224) (-224))) (-5 *1 (-254)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1077)))))
-(((*1 *2)
- (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-416 *3)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-306))
+ (-5 *1 (-911 *3 *4 *5 *2)) (-4 *2 (-944 *5 *3 *4))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1164 *6)) (-4 *6 (-944 *5 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *5 (-306)) (-5 *1 (-911 *3 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *6 *4 *5))
+ (-5 *1 (-911 *4 *5 *6 *2)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-4 *6 (-306)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-639 *1)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5))
+ (-4 *4 (-372 *3)) (-4 *5 (-372 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-639 *3)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5))
+ (-4 *4 (-372 *3)) (-4 *5 (-372 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1044)) (-5 *1 (-683 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-639 *4)) (-4 *4 (-1044)) (-4 *1 (-1115 *3 *4 *5 *6))
+ (-4 *5 (-237 *3 *4)) (-4 *6 (-237 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-2 (|:| |den| (-562)) (|:| |gcdnum| (-562)))))
+ (-4 *4 (-1232 (-406 *2))) (-5 *2 (-562)) (-5 *1 (-908 *4 *5))
+ (-4 *5 (-1232 (-406 *4))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-374 *4 *2))
+ (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4404)))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-301)) (-4 *2 (-1207))))
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-639 (-608 *1))) (-5 *3 (-639 *1)) (-4 *1 (-301))))
((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-293 *1))) (-4 *1 (-301))))
((*1 *1 *1 *2) (-12 (-5 *2 (-293 *1)) (-4 *1 (-301)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-608 *3)) (-4 *3 (-13 (-429 *5) (-27) (-1192)))
- (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *2 (-583 *3)) (-5 *1 (-564 *5 *3 *6)) (-4 *6 (-1092)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
- (-5 *2
- (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
- (|:| |success| (-112))))
- (-5 *1 (-784)) (-5 *5 (-562)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1256 (-766))) (-5 *1 (-669 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-559)) (-5 *3 (-562))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-937)) (-5 *3 (-562)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-329)))))
+(((*1 *2 *1) (-12 (-4 *1 (-325 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787))))
+ ((*1 *2 *1) (-12 (-4 *1 (-703 *3)) (-4 *3 (-1044)) (-5 *2 (-766))))
+ ((*1 *2 *1) (-12 (-4 *1 (-847 *3)) (-4 *3 (-1044)) (-5 *2 (-766))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-639 *6)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 (-766)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-944 *4 *5 *3)) (-4 *4 (-1044)) (-4 *5 (-788))
+ (-4 *3 (-845)) (-5 *2 (-766)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-544))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 *4)) (-4 *4 (-362)) (-4 *2 (-1232 *4))
- (-5 *1 (-917 *4 *2)))))
-(((*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258))))
- ((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))))
+ (-12 (-4 *4 (-451)) (-4 *3 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
+ (-5 *1 (-448 *4 *3 *5 *6)) (-4 *6 (-944 *4 *3 *5)))))
+(((*1 *2 *3 *4 *2 *2 *5)
+ (|partial| -12 (-5 *2 (-838 *4)) (-5 *3 (-608 *4)) (-5 *5 (-112))
+ (-4 *4 (-13 (-1192) (-29 *6)))
+ (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-223 *6 *4)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-5 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-479)))))
+ (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044))
+ (-5 *2 (-639 (-639 (-938 *3))))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-639 (-639 (-938 *4)))) (-5 *3 (-112)) (-4 *4 (-1044))
+ (-4 *1 (-1126 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-639 (-639 (-938 *3)))) (-4 *3 (-1044))
+ (-4 *1 (-1126 *3))))
+ ((*1 *1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-639 (-639 (-639 *4)))) (-5 *3 (-112))
+ (-4 *1 (-1126 *4)) (-4 *4 (-1044))))
+ ((*1 *1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-639 (-639 (-938 *4)))) (-5 *3 (-112))
+ (-4 *1 (-1126 *4)) (-4 *4 (-1044))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-639 (-639 (-639 *5)))) (-5 *3 (-639 (-170)))
+ (-5 *4 (-170)) (-4 *1 (-1126 *5)) (-4 *5 (-1044))))
+ ((*1 *1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-639 (-639 (-938 *5)))) (-5 *3 (-639 (-170)))
+ (-5 *4 (-170)) (-4 *1 (-1126 *5)) (-4 *5 (-1044)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-734 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4))))
+ (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-1044)))))
+(((*1 *2)
+ (|partial| -12 (-4 *4 (-1211)) (-4 *5 (-1232 (-406 *2)))
+ (-4 *2 (-1232 *4)) (-5 *1 (-340 *3 *4 *2 *5))
+ (-4 *3 (-341 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-341 *3 *2 *4)) (-4 *3 (-1211))
+ (-4 *4 (-1232 (-406 *2))) (-4 *2 (-1232 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
- (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
-(((*1 *1) (-5 *1 (-156)))
- ((*1 *2 *1) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))))
-(((*1 *2 *1) (-12 (-5 *1 (-1202 *2)) (-4 *2 (-969)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-146))
- (-4 *3 (-306)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *1 (-972 *3 *4 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *5 (-608 *4)) (-5 *6 (-1168))
- (-4 *4 (-13 (-429 *7) (-27) (-1192)))
- (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4))))
- (-5 *1 (-564 *7 *4 *3)) (-4 *3 (-650 *4)) (-4 *3 (-1092)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-845)) (-5 *2 (-639 (-639 (-639 *4))))
- (-5 *1 (-1178 *4)) (-5 *3 (-639 (-639 *4))))))
+ (-12 (-4 *1 (-1033 (-562))) (-4 *1 (-301)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-815)) (-14 *5 (-1168))
+ (-5 *2 (-639 *4)) (-5 *1 (-1106 *4 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-544)) (-5 *1 (-158 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-909 *3)) (-4 *3 (-306)))))
(((*1 *1 *2)
(-12 (-5 *2 (-766)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044))
(-14 *4 (-639 (-1168)))))
@@ -7651,118 +7603,139 @@
(-12 (-5 *2 (-766)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
(-4 *5 (-171))))
((*1 *1) (-12 (-4 *2 (-171)) (-4 *1 (-719 *2 *3)) (-4 *3 (-1232 *2)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *1) (-12 (-5 *2 (-417 *3)) (-5 *1 (-909 *3)) (-4 *3 (-306)))))
-(((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| -2431 (-114)) (|:| |arg| (-639 (-887 *3)))))
- (-5 *1 (-887 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *2 (-639 (-887 *4)))
- (-5 *1 (-887 *4)) (-4 *4 (-1092)))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-857)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
-(((*1 *1) (-5 *1 (-140))) ((*1 *1 *1) (-5 *1 (-143)))
- ((*1 *1 *1) (-4 *1 (-1136))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-5 *2 (-112))
+ (-5 *1 (-884 *4 *5)) (-4 *5 (-1092))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-5 *2 (-112))
+ (-5 *1 (-885 *5 *3)) (-4 *3 (-1207))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *6)) (-5 *4 (-887 *5)) (-4 *5 (-1092))
+ (-4 *6 (-1207)) (-5 *2 (-112)) (-5 *1 (-885 *5 *6)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1256 *4)) (-5 *3 (-562)) (-4 *4 (-348))
+ (-5 *1 (-527 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-362))
+ (-5 *2 (-639 (-2 (|:| C (-683 *5)) (|:| |g| (-1256 *5)))))
+ (-5 *1 (-973 *5)) (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-639 (-1229 *5 *4)))
- (-5 *1 (-1106 *4 *5)) (-5 *3 (-1229 *5 *4)))))
+ (-12 (-5 *3 (-639 *2)) (-5 *1 (-178 *2)) (-4 *2 (-306))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *3 (-639 (-639 *4))) (-5 *2 (-639 *4)) (-4 *4 (-306))
+ (-5 *1 (-178 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-639 *8))
+ (-5 *4
+ (-639
+ (-2 (|:| -4291 (-683 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-683 *7)))))
+ (-5 *5 (-766)) (-4 *8 (-1232 *7)) (-4 *7 (-1232 *6)) (-4 *6 (-348))
+ (-5 *2
+ (-2 (|:| -4291 (-683 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-683 *7))))
+ (-5 *1 (-497 *6 *7 *8))))
+ ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
+(((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378)))
+ (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261))
+ (-5 *1 (-783)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))
+ (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
(((*1 *1 *2)
(-12 (-5 *2 (-639 (-1068 *3 *4 *5))) (-4 *3 (-1092))
(-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3))))
(-4 *5 (-13 (-429 *4) (-881 *3) (-610 (-887 *3))))
(-5 *1 (-1069 *3 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-362) (-843))) (-5 *1 (-180 *3 *2))
- (-4 *2 (-1232 (-168 *3))))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-639 (-777 *3))) (-5 *1 (-777 *3)) (-4 *3 (-554))
- (-4 *3 (-1044)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))))
(((*1 *2)
- (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-416 *3)))))
+ (-12 (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4)))
+ (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (-5 *2 (-112)) (-5 *1 (-299)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 (-436)))))
+ (-12 (-5 *2 (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 (-436)))))
(-5 *1 (-1172)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1271 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171))
- (-5 *1 (-658 *3 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-658 *3 *4)) (-5 *1 (-1276 *3 *4))
- (-4 *3 (-845)) (-4 *4 (-171)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-766)) (-5 *4 (-1256 *2)) (-4 *5 (-306))
- (-4 *6 (-987 *5)) (-4 *2 (-13 (-408 *6 *7) (-1033 *6)))
- (-5 *1 (-412 *5 *6 *7 *2)) (-4 *7 (-1232 *6)))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-749)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-544))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1033 (-562))) (-4 *1 (-301)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378)))
- (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261))
- (-5 *1 (-783)))))
+ (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *5)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
(((*1 *2 *3)
(-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306))
(-5 *2 (-639 (-766))) (-5 *1 (-773 *3 *4 *5 *6 *7))
(-4 *3 (-1232 *6)) (-4 *7 (-944 *6 *4 *5)))))
+(((*1 *2 *3 *3 *3 *4 *5 *6)
+ (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224)))
+ (-5 *5 (-1086 (-224))) (-5 *6 (-639 (-262))) (-5 *2 (-1125 (-224)))
+ (-5 *1 (-691)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-406 *4)) (-4 *4 (-1232 *3))
+ (-4 *3 (-13 (-362) (-146) (-1033 (-562)))) (-5 *1 (-566 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-341 *4 *5 *6)) (-4 *4 (-1211))
+ (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5)))
+ (-5 *2 (-2 (|:| |num| (-683 *5)) (|:| |den| *5))))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-766)) (-5 *1 (-778 *2)) (-4 *2 (-38 (-406 (-562))))
+ (-4 *2 (-171)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)) (-4 *2 (-845))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-281 *3)) (-4 *3 (-1207))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-845)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-224))) (-5 *2 (-1256 (-693))) (-5 *1 (-304)))))
(((*1 *2 *3 *4 *5 *6 *5)
(-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150))
(-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-4 *1 (-322 *2 *4)) (-4 *4 (-130))
- (-4 *2 (-1092))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-360 *2)) (-4 *2 (-1092))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-385 *2)) (-4 *2 (-1092))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-4 *2 (-1092)) (-5 *1 (-643 *2 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4)))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-814 *2)) (-4 *2 (-845)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (-5 *2 (-562)) (-5 *1 (-203)))))
-(((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-356 *3)) (-4 *3 (-348)))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-4 *1 (-325 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-1044)) (-5 *1 (-443 *3 *2)) (-4 *2 (-1232 *3)))))
(((*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207))))
((*1 *1 *1)
(-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
(-4 *4 (-845))))
((*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
- (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1279 *3 *4)) (-4 *3 (-1044))
- (-4 *4 (-841)))))
-(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+(((*1 *1 *1) (-4 *1 (-864 *2))))
+(((*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-693)) (-5 *1 (-304)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
(-12 (-5 *3 (-224)) (-5 *4 (-562))
(-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030))
(-5 *1 (-743)))))
-(((*1 *2 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-445)) (-5 *3 (-562)))))
-(((*1 *1) (-5 *1 (-436))))
-(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *1 (-792 *2)) (-4 *2 (-171))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-994 *3)) (-4 *3 (-171)) (-5 *1 (-794 *3)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-639 (-562))) (-5 *1 (-1102)) (-5 *3 (-562)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-114))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-301)) (-5 *3 (-1168)) (-5 *2 (-112))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-301)) (-5 *3 (-114)) (-5 *2 (-112))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-608 *4)) (-4 *4 (-845))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-608 *4)) (-4 *4 (-845))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1092)) (-5 *2 (-112)) (-5 *1 (-882 *5 *3 *4))
+ (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *6)) (-4 *6 (-881 *5)) (-4 *5 (-1092))
+ (-5 *2 (-112)) (-5 *1 (-882 *5 *6 *4)) (-4 *4 (-610 (-887 *5))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-766)) (-4 *1 (-230 *4))
(-4 *4 (-1044))))
@@ -7785,38 +7758,58 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-639 *3)) (-4 *1 (-895 *3)) (-4 *3 (-1092))))
((*1 *1 *1 *2) (-12 (-4 *1 (-895 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-112)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-683 *3))
- (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $)))))
- (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-683 *3))
- (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $)))))
- (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4402)) (-4 *1 (-234 *3))
- (-4 *3 (-1092))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-971 *4 *5 *3 *6)) (-4 *4 (-1044)) (-4 *5 (-788))
+ (-4 *3 (-845)) (-4 *6 (-1058 *4 *5 *3)) (-5 *2 (-112)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-4 *1 (-322 *2 *4)) (-4 *4 (-130))
+ (-4 *2 (-1092))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-360 *2)) (-4 *2 (-1092))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-385 *2)) (-4 *2 (-1092))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-4 *2 (-1092)) (-5 *1 (-643 *2 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4)))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *1 (-814 *2)) (-4 *2 (-845)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-1156 3 *3))))
- ((*1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-1258))))
- ((*1 *2 *1) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-1258)))))
-(((*1 *1 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393))))
- ((*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1256 *5)) (-4 *5 (-787)) (-5 *2 (-112))
- (-5 *1 (-840 *4 *5)) (-14 *4 (-766)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-306)) (-4 *3 (-171)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3)))
- (-5 *1 (-682 *3 *4 *5 *6)) (-4 *6 (-681 *3 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-694 *3))
- (-4 *3 (-306)))))
+ (-12 (-4 *1 (-689 *3)) (-4 *3 (-1092))
+ (-5 *2 (-639 (-2 (|:| -2693 *3) (|:| -1723 (-766))))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168))
+ (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *5))))
+ (-5 *1 (-1121 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-13 (-306) (-845) (-146)))
+ (-5 *2 (-639 (-293 (-315 *4)))) (-5 *1 (-1121 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-293 (-406 (-947 *5)))) (-5 *4 (-1168))
+ (-4 *5 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *5))))
+ (-5 *1 (-1121 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-293 (-406 (-947 *4))))
+ (-4 *4 (-13 (-306) (-845) (-146))) (-5 *2 (-639 (-293 (-315 *4))))
+ (-5 *1 (-1121 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168)))
+ (-4 *5 (-13 (-306) (-845) (-146)))
+ (-5 *2 (-639 (-639 (-293 (-315 *5))))) (-5 *1 (-1121 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-406 (-947 *4))))
+ (-4 *4 (-13 (-306) (-845) (-146)))
+ (-5 *2 (-639 (-639 (-293 (-315 *4))))) (-5 *1 (-1121 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-293 (-406 (-947 *5))))) (-5 *4 (-639 (-1168)))
+ (-4 *5 (-13 (-306) (-845) (-146)))
+ (-5 *2 (-639 (-639 (-293 (-315 *5))))) (-5 *1 (-1121 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-293 (-406 (-947 *4)))))
+ (-4 *4 (-13 (-306) (-845) (-146)))
+ (-5 *2 (-639 (-639 (-293 (-315 *4))))) (-5 *1 (-1121 *4)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-378)) (-5 *1 (-1056)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
(((*1 *1 *2 *3)
(-12 (-5 *2 (-1168)) (-5 *3 (-639 *1)) (-4 *1 (-429 *4))
(-4 *4 (-845))))
@@ -7827,94 +7820,249 @@
((*1 *1 *2 *1 *1)
(-12 (-5 *2 (-1168)) (-4 *1 (-429 *3)) (-4 *3 (-845))))
((*1 *1 *2 *1) (-12 (-5 *2 (-1168)) (-4 *1 (-429 *3)) (-4 *3 (-845)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-406 (-562))) (-5 *1 (-1019 *3))
- (-4 *3 (-13 (-843) (-362) (-1017)))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3))
- (-4 *3 (-1232 *2))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *1 (-1061 *2 *3)) (-4 *2 (-13 (-843) (-362)))
- (-4 *3 (-1232 *2)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 (-639 (-639 *4)))) (-5 *2 (-639 (-639 *4)))
- (-4 *4 (-845)) (-5 *1 (-1178 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 (-246 *4 *5))) (-5 *2 (-246 *4 *5))
- (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *1 (-627 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-168 *4)) (-5 *1 (-180 *4 *3))
- (-4 *4 (-13 (-362) (-843))) (-4 *3 (-1232 *2)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-467)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
-(((*1 *2)
- (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
- (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261))
- (-5 *1 (-983 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
- (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261))
- (-5 *1 (-1099 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
+ (|partial| -12 (-4 *4 (-1211)) (-4 *5 (-1232 *4))
+ (-5 *2 (-2 (|:| |radicand| (-406 *5)) (|:| |deg| (-766))))
+ (-5 *1 (-147 *4 *5 *3)) (-4 *3 (-1232 (-406 *5))))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-921)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-1164 *3)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-279))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-3 (-562) (-224) (-1168) (-1150) (-1173)))
+ (-5 *1 (-1173)))))
(((*1 *2 *2)
(-12 (-4 *3 (-845)) (-5 *1 (-924 *3 *2)) (-4 *2 (-429 *3))))
((*1 *2 *3)
(-12 (-5 *3 (-1168)) (-5 *2 (-315 (-562))) (-5 *1 (-925)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1092)) (-4 *2 (-895 *4)) (-5 *1 (-686 *4 *2 *5 *3))
+ (-4 *5 (-372 *2)) (-4 *3 (-13 (-372 *4) (-10 -7 (-6 -4403)))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1021 (-838 (-562)))) (-5 *1 (-592 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
(((*1 *2 *3)
(-12 (-5 *3 (-639 (-535))) (-5 *2 (-1168)) (-5 *1 (-535)))))
-(((*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-315 (-224)))) (-5 *2 (-112)) (-5 *1 (-266)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1256 *4)) (-5 *3 (-766)) (-4 *4 (-348))
- (-5 *1 (-527 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-516)))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
- (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224)))
- (-5 *6 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))))
+ (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
+ (-4 *3 (-13 (-362) (-1192) (-997)))))
+ ((*1 *2)
+ (|partial| -12 (-4 *4 (-1211)) (-4 *5 (-1232 (-406 *2)))
+ (-4 *2 (-1232 *4)) (-5 *1 (-340 *3 *4 *2 *5))
+ (-4 *3 (-341 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-341 *3 *2 *4)) (-4 *3 (-1211))
+ (-4 *4 (-1232 (-406 *2))) (-4 *2 (-1232 *3)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451))
- (-14 *6 (-639 (-1168)))
- (-5 *2
- (-639 (-1138 *5 (-530 (-859 *6)) (-859 *6) (-775 *5 (-859 *6)))))
- (-5 *1 (-624 *5 *6)))))
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1232 *6))
+ (-4 *6 (-13 (-27) (-429 *5)))
+ (-4 *5 (-13 (-845) (-554) (-1033 (-562)))) (-4 *8 (-1232 (-406 *7)))
+ (-5 *2 (-583 *3)) (-5 *1 (-550 *5 *6 *7 *8 *3))
+ (-4 *3 (-341 *6 *7 *8)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1056)) (-5 *3 (-1150)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1256 (-1256 *4))) (-4 *4 (-1044)) (-5 *2 (-683 *4))
- (-5 *1 (-1024 *4)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-766)) (-5 *1 (-114))))
- ((*1 *2 *1) (-12 (-4 *1 (-830 *3)) (-4 *3 (-1092)) (-5 *2 (-55)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (-5 *2 (-562)) (-5 *1 (-203)))))
+(((*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)) (-5 *2 (-112))
+ (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34)))
+ (-4 *4 (-13 (-1092) (-34))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-1256 *5))) (-5 *4 (-562)) (-5 *2 (-1256 *5))
+ (-5 *1 (-1024 *5)) (-4 *5 (-362)) (-4 *5 (-367)) (-4 *5 (-1044)))))
(((*1 *1 *2) (-12 (-5 *1 (-1193 *2)) (-4 *2 (-1092))))
((*1 *1 *2)
(-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-1193 *3))))
((*1 *1 *2 *3)
(-12 (-5 *3 (-639 (-1193 *2))) (-5 *1 (-1193 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171))))
- ((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))))
-(((*1 *1 *1 *1) (-5 *1 (-857))))
(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044))
- (-14 *4 (-639 (-1168)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845)))
- (-14 *4 (-639 (-1168))))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
+ (-12 (-4 *2 (-1092)) (-5 *1 (-959 *2 *3)) (-4 *3 (-1092)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 *4)) (-4 *4 (-362)) (-5 *2 (-683 *4))
- (-5 *1 (-809 *4 *5)) (-4 *5 (-650 *4))))
+ (|partial| -12 (-4 *4 (-13 (-554) (-845) (-1033 (-562))))
+ (-4 *5 (-429 *4)) (-5 *2 (-417 (-1164 (-406 (-562)))))
+ (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))))
+(((*1 *2)
+ (-12 (-4 *1 (-348))
+ (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1084 (-838 *3))) (-4 *3 (-13 (-1192) (-954) (-29 *5)))
+ (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2
+ (-3 (|:| |f1| (-838 *3)) (|:| |f2| (-639 (-838 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-218 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1084 (-838 *3))) (-5 *5 (-1150))
+ (-4 *3 (-13 (-1192) (-954) (-29 *6)))
+ (-4 *6 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2
+ (-3 (|:| |f1| (-838 *3)) (|:| |f2| (-639 (-838 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-218 *6 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *5)) (-5 *4 (-766)) (-4 *5 (-362))
- (-5 *2 (-683 *5)) (-5 *1 (-809 *5 *6)) (-4 *6 (-650 *5)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *1 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))))
+ (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1084 (-838 (-315 *5))))
+ (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2
+ (-3 (|:| |f1| (-838 (-315 *5))) (|:| |f2| (-639 (-838 (-315 *5))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-219 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-406 (-947 *6))) (-5 *4 (-1084 (-838 (-315 *6))))
+ (-5 *5 (-1150))
+ (-4 *6 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2
+ (-3 (|:| |f1| (-838 (-315 *6))) (|:| |f2| (-639 (-838 (-315 *6))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-219 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1084 (-838 (-406 (-947 *5))))) (-5 *3 (-406 (-947 *5)))
+ (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2
+ (-3 (|:| |f1| (-838 (-315 *5))) (|:| |f2| (-639 (-838 (-315 *5))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-219 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1084 (-838 (-406 (-947 *6))))) (-5 *5 (-1150))
+ (-5 *3 (-406 (-947 *6)))
+ (-4 *6 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2
+ (-3 (|:| |f1| (-838 (-315 *6))) (|:| |f2| (-639 (-838 (-315 *6))))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-219 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1168))
+ (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2 (-3 *3 (-639 *3))) (-5 *1 (-427 *5 *3))
+ (-4 *3 (-13 (-1192) (-954) (-29 *5)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-473 *3 *4 *5))
+ (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3)))
+ ((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378))))
+ (-5 *5 (-378)) (-5 *6 (-1056)) (-5 *2 (-1030)) (-5 *1 (-563))))
+ ((*1 *2 *3) (-12 (-5 *3 (-764)) (-5 *2 (-1030)) (-5 *1 (-563))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378))))
+ (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378))))
+ (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378))))
+ (-5 *2 (-1030)) (-5 *1 (-563))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378)))))
+ (-5 *2 (-1030)) (-5 *1 (-563))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378)))))
+ (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378)))))
+ (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563))))
+ ((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378)))))
+ (-5 *5 (-378)) (-5 *6 (-1056)) (-5 *2 (-1030)) (-5 *1 (-563))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-315 (-378))) (-5 *4 (-1084 (-838 (-378))))
+ (-5 *5 (-1150)) (-5 *2 (-1030)) (-5 *1 (-563))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-315 (-378))) (-5 *4 (-1084 (-838 (-378))))
+ (-5 *5 (-1168)) (-5 *2 (-1030)) (-5 *1 (-563))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-562)))) (-4 *5 (-1232 *4))
+ (-5 *2 (-583 (-406 *5))) (-5 *1 (-566 *4 *5)) (-5 *3 (-406 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-146))
+ (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))))
+ (-5 *2 (-3 (-315 *5) (-639 (-315 *5)))) (-5 *1 (-586 *5))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-735 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-845))
+ (-4 *3 (-38 (-406 (-562))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1168)) (-5 *1 (-947 *3)) (-4 *3 (-38 (-406 (-562))))
+ (-4 *3 (-1044))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-4 *2 (-845))
+ (-5 *1 (-1118 *3 *2 *4)) (-4 *4 (-944 *3 (-530 *2) *2))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044))
+ (-5 *1 (-1152 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1159 *3 *4 *5))
+ (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1165 *3 *4 *5))
+ (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1166 *3 *4 *5))
+ (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3)))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *1 (-1201 *3)) (-4 *3 (-38 (-406 (-562))))
+ (-4 *3 (-1044))))
+ ((*1 *1 *1 *2)
+ (-4037
+ (-12 (-5 *2 (-1168)) (-4 *1 (-1216 *3)) (-4 *3 (-1044))
+ (-12 (-4 *3 (-29 (-562))) (-4 *3 (-954)) (-4 *3 (-1192))
+ (-4 *3 (-38 (-406 (-562))))))
+ (-12 (-5 *2 (-1168)) (-4 *1 (-1216 *3)) (-4 *3 (-1044))
+ (-12 (|has| *3 (-15 -1401 ((-639 *2) *3)))
+ (|has| *3 (-15 -3081 (*3 *3 *2))) (-4 *3 (-38 (-406 (-562))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1216 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1220 *3 *4 *5))
+ (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562))))))
+ ((*1 *1 *1 *2)
+ (-4037
+ (-12 (-5 *2 (-1168)) (-4 *1 (-1237 *3)) (-4 *3 (-1044))
+ (-12 (-4 *3 (-29 (-562))) (-4 *3 (-954)) (-4 *3 (-1192))
+ (-4 *3 (-38 (-406 (-562))))))
+ (-12 (-5 *2 (-1168)) (-4 *1 (-1237 *3)) (-4 *3 (-1044))
+ (-12 (|has| *3 (-15 -1401 ((-639 *2) *3)))
+ (|has| *3 (-15 -3081 (*3 *3 *2))) (-4 *3 (-38 (-406 (-562))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1237 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1241 *3 *4 *5))
+ (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-4037
+ (-12 (-5 *2 (-1168)) (-4 *1 (-1247 *3)) (-4 *3 (-1044))
+ (-12 (-4 *3 (-29 (-562))) (-4 *3 (-954)) (-4 *3 (-1192))
+ (-4 *3 (-38 (-406 (-562))))))
+ (-12 (-5 *2 (-1168)) (-4 *1 (-1247 *3)) (-4 *3 (-1044))
+ (-12 (|has| *3 (-15 -1401 ((-639 *2) *3)))
+ (|has| *3 (-15 -3081 (*3 *3 *2))) (-4 *3 (-38 (-406 (-562))))))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1247 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562))))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1248 *3 *4 *5))
+ (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-562))) (-5 *1 (-1042)))))
+(((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-356 *3)) (-4 *3 (-348)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
@@ -7931,59 +8079,38 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-639 *7)) (-5 *5 (-639 (-639 *8))) (-4 *7 (-845))
- (-4 *8 (-306)) (-4 *6 (-788)) (-4 *9 (-944 *8 *6 *7))
- (-5 *2
- (-2 (|:| |unitPart| *9)
- (|:| |suPart|
- (-639 (-2 (|:| -1635 (-1164 *9)) (|:| -1960 (-562)))))))
- (-5 *1 (-737 *6 *7 *8 *9)) (-5 *3 (-1164 *9)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-997))
- (-4 *2 (-1044)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1044)) (-5 *2 (-953 (-707 *3 *4))) (-5 *1 (-707 *3 *4))
+ (-4 *4 (-1232 *3)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-639 (-279))) (-5 *1 (-279))))
+ ((*1 *2 *1) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-1173)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
(((*1 *1 *2 *3)
(-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1168)) (-5 *1 (-329)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
- (-12 (-5 *3 (-562)) (-5 *5 (-112)) (-5 *6 (-683 (-224)))
- (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-750)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-170)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2))
- (-4 *2 (-429 *4))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-159)) (-5 *2 (-1168))))
- ((*1 *1 *1) (-4 *1 (-159))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-362)) (-4 *6 (-1232 (-406 *2)))
+ (-4 *2 (-1232 *5)) (-5 *1 (-214 *5 *2 *6 *3))
+ (-4 *3 (-341 *5 *2 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
+ (-4 *3 (-13 (-362) (-1192) (-997))))))
(((*1 *2 *2 *3)
(-12 (-4 *3 (-362)) (-5 *1 (-284 *3 *2)) (-4 *2 (-1247 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| |k| (-666 *3)) (|:| |c| *4))))
- (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845))
- (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-639 (-639 *7)))
- (-5 *1 (-447 *4 *5 *6 *7)) (-5 *3 (-639 *7))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788))
- (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-639 (-639 *8)))
- (-5 *1 (-447 *5 *6 *7 *8)) (-5 *3 (-639 *8))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-639 (-639 *7)))
- (-5 *1 (-447 *4 *5 *6 *7)) (-5 *3 (-639 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788))
- (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-639 (-639 *8)))
- (-5 *1 (-447 *5 *6 *7 *8)) (-5 *3 (-639 *8)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-1257))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *1 *2)
- (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-795))
+ (-5 *3
+ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
+ (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
+ (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
+ (|:| |abserr| (-224)) (|:| |relerr| (-224))))
+ (-5 *2 (-1030)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-562)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-417 *2)) (-4 *2 (-554)))))
+(((*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-224)) (-5 *1 (-1259))))
+ ((*1 *2) (-12 (-5 *2 (-224)) (-5 *1 (-1259)))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-4 *1 (-325 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
@@ -8000,25 +8127,29 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-639 (-947 *3))) (-4 *3 (-451))
- (-5 *1 (-359 *3 *4)) (-14 *4 (-639 (-1168)))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-639 (-775 *3 (-859 *4)))) (-4 *3 (-451))
- (-14 *4 (-639 (-1168))) (-5 *1 (-624 *3 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1113 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *1) (-12 (-5 *2 (-482)) (-5 *1 (-217))))
- ((*1 *1 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207))))
- ((*1 *2 *1) (-12 (-5 *2 (-482)) (-5 *1 (-670))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)))))
+(((*1 *1 *1) (-5 *1 (-1056))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1092))
+ (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3))))
+ (-5 *2 (-639 (-1168))) (-5 *1 (-1068 *3 *4 *5))
+ (-4 *5 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-224) (-224) (-224)))
+ (-5 *4 (-3 (-1 (-224) (-224) (-224) (-224)) "undefined"))
+ (-5 *5 (-1086 (-224))) (-5 *6 (-639 (-262))) (-5 *2 (-1125 (-224)))
+ (-5 *1 (-691))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-938 (-224)) (-224) (-224))) (-5 *4 (-1086 (-224)))
+ (-5 *5 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-691))))
+ ((*1 *2 *2 *3 *4 *4 *5)
+ (-12 (-5 *2 (-1125 (-224))) (-5 *3 (-1 (-938 (-224)) (-224) (-224)))
+ (-5 *4 (-1086 (-224))) (-5 *5 (-639 (-262))) (-5 *1 (-691)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-451)) (-4 *4 (-815))
+ (-14 *5 (-1168)) (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *2 (-639 (-224)))
- (-5 *1 (-467)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1164 *2)) (-4 *2 (-429 *4)) (-4 *4 (-13 (-845) (-554)))
- (-5 *1 (-32 *4 *2)))))
+ (-12 (-5 *3 (-315 (-224))) (-5 *2 (-315 (-406 (-562))))
+ (-5 *1 (-304)))))
(((*1 *2 *1) (-12 (-4 *1 (-253 *3)) (-4 *3 (-1207)) (-5 *2 (-766))))
((*1 *2 *1) (-12 (-4 *1 (-301)) (-5 *2 (-766))))
((*1 *2 *3)
@@ -8028,21 +8159,17 @@
((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-608 *3)) (-4 *3 (-845))))
((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857))))
((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
- (-12 (-5 *4 (-562)) (-5 *5 (-1150)) (-5 *6 (-683 (-224)))
- (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))))
- (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))))
- (-5 *9 (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))
- (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-819)) (-5 *1 (-820)))))
+(((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1035)))))
+(((*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-52)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
+ (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1279 *3 *4)) (-4 *3 (-1044))
+ (-4 *4 (-841)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-742)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
@@ -8060,55 +8187,24 @@
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4)
- (-246 *4 (-406 (-562)))))
- (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-112))
- (-5 *1 (-504 *4 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1209)))))
-(((*1 *2 *1 *3 *3)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-600 *3 *4)) (-4 *3 (-1092))
- (-4 *4 (-1207)) (-5 *2 (-1261)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044))
- (-5 *2 (-947 *5)) (-5 *1 (-939 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168))
- (-4 *5 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *2
- (-2 (|:| |func| *3) (|:| |kers| (-639 (-608 *3)))
- (|:| |vals| (-639 *3))))
- (-5 *1 (-276 *5 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-114)) (-5 *4 (-639 *2)) (-5 *1 (-113 *2))
- (-4 *2 (-1092))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-639 *4))) (-4 *4 (-1092))
- (-5 *1 (-113 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1092))
- (-5 *1 (-113 *4))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-639 *4)))
- (-5 *1 (-113 *4)) (-4 *4 (-1092))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-642 *3)) (-4 *3 (-1044))
- (-5 *1 (-709 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-831 *3)))))
-(((*1 *2 *2) (-12 (-5 *1 (-956 *2)) (-4 *2 (-544)))))
+ (-12 (-4 *4 (-554))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2736 *4)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1044))
- (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283)))
- (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-916)) (-4 *5 (-1044))
- (-4 *2 (-13 (-403) (-1033 *5) (-362) (-1192) (-283)))
- (-5 *1 (-442 *5 *3 *2)) (-4 *3 (-1232 *5)))))
+ (-12 (-5 *2 (-1148 (-562))) (-5 *1 (-1152 *4)) (-4 *4 (-1044))
+ (-5 *3 (-562)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1150)) (-5 *3 (-562)) (-5 *1 (-240)))))
+(((*1 *1) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))))
+(((*1 *1) (-5 *1 (-140))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
+(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562))
+ (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030))
+ (-5 *1 (-743)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-374 *4 *2))
+ (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4404)))))))
(((*1 *1 *2 *3)
(-12 (-4 *1 (-381 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1092))))
((*1 *2 *3 *4)
@@ -8117,6 +8213,25 @@
((*1 *1 *2 *3)
(-12 (-5 *2 (-814 *4)) (-4 *4 (-845)) (-4 *1 (-1273 *4 *3))
(-4 *3 (-1044)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168))
+ (-14 *4 *2))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-683 *2)) (-4 *4 (-1232 *2))
+ (-4 *2 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $)))))
+ (-5 *1 (-498 *2 *4 *5)) (-4 *5 (-408 *2 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2))
+ (-4 *5 (-237 *3 *2)) (-4 *2 (-1044)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-433))
+ (-5 *2
+ (-639
+ (-3 (|:| -3253 (-1168))
+ (|:| -1852 (-639 (-3 (|:| S (-1168)) (|:| P (-947 (-562)))))))))
+ (-5 *1 (-1172)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
@@ -8133,45 +8248,19 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *2 *1 *1 *3 *4)
- (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6))
- (-4 *5 (-13 (-1092) (-34))) (-4 *6 (-13 (-1092) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1132 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-1150)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
- (-4 *4 (-1058 *6 *7 *8)) (-5 *2 (-1261))
- (-5 *1 (-771 *6 *7 *8 *4 *5)) (-4 *5 (-1064 *6 *7 *8 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-583 *3)) (-4 *3 (-362)))))
-(((*1 *2 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-916)) (-5 *1 (-781)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
+ (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *6 (-224))
+ (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-746)))))
+(((*1 *1)
+ (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23))
+ (-14 *4 *3))))
(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1044)) (-5 *1 (-889 *2 *3)) (-4 *2 (-1232 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-417 *3)) (-4 *3 (-544)) (-4 *3 (-554))))
- ((*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-792 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-828 *3)) (-4 *3 (-544)) (-4 *3 (-1092))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-838 *3)) (-4 *3 (-544)) (-4 *3 (-1092))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-992 *3)) (-4 *3 (-171)) (-4 *3 (-544)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-1003 *3)) (-4 *3 (-1033 (-406 (-562)))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
- (-4 *4 (-1044)))))
+ (-12 (-4 *3 (-1044)) (-5 *1 (-1228 *3 *2)) (-4 *2 (-1232 *3)))))
+(((*1 *2 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-445)) (-5 *3 (-562)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
@@ -8188,37 +8277,35 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2)
- (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
- (-4 *4 (-1092)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
+ (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
+(((*1 *1) (-5 *1 (-818))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-240)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-639 (-766))) (-5 *1 (-964 *4 *3))
- (-4 *3 (-1232 *4)))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
- (-5 *2 (-1030)) (-5 *1 (-746)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1090 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))))
+ (-12 (-4 *4 (-13 (-451) (-146))) (-5 *2 (-417 *3))
+ (-5 *1 (-100 *4 *3)) (-4 *3 (-1232 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-13 (-451) (-146)))
+ (-5 *2 (-417 *3)) (-5 *1 (-100 *5 *3)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-417 (-1164 *1))) (-5 *1 (-315 *4)) (-5 *3 (-1164 *1))
- (-4 *4 (-451)) (-4 *4 (-554)) (-4 *4 (-845))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-904)) (-5 *2 (-417 (-1164 *1))) (-5 *3 (-1164 *1)))))
+ (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 (-562)))
+ (-5 *2 (-1256 (-562))) (-5 *1 (-1283 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
- (-5 *2 (-683 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-683 *4)) (-5 *1 (-415 *3 *4))
- (-4 *3 (-416 *4))))
- ((*1 *2) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1247 *4)) (-5 *1 (-1249 *4 *2))
- (-4 *4 (-38 (-406 (-562)))))))
+ (-12 (-5 *3 (-647 (-406 *2))) (-4 *2 (-1232 *4)) (-5 *1 (-805 *4 *2))
+ (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-648 *2 (-406 *2))) (-4 *2 (-1232 *4))
+ (-5 *1 (-805 *4 *2))
+ (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-750)))))
+(((*1 *1) (-5 *1 (-436))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997)))))
@@ -8235,59 +8322,33 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1164 (-562))) (-5 *2 (-562)) (-5 *1 (-937)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 *8)) (-5 *4 (-766)) (-4 *8 (-944 *5 *7 *6))
- (-4 *5 (-13 (-306) (-146))) (-4 *6 (-13 (-845) (-610 (-1168))))
- (-4 *7 (-788))
- (-5 *2
- (-639
- (-2 (|:| |det| *8) (|:| |rows| (-639 (-562)))
- (|:| |cols| (-639 (-562))))))
- (-5 *1 (-919 *5 *6 *7 *8)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-335 *5 *6 *7 *8)) (-4 *5 (-429 *4))
- (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6)))
- (-4 *8 (-341 *5 *6 *7))
- (-4 *4 (-13 (-845) (-554) (-1033 (-562))))
- (-5 *2 (-2 (|:| -1900 (-766)) (|:| -1407 *8)))
- (-5 *1 (-906 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-335 (-406 (-562)) *4 *5 *6))
- (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-1232 (-406 *4)))
- (-4 *6 (-341 (-406 (-562)) *4 *5))
- (-5 *2 (-2 (|:| -1900 (-766)) (|:| -1407 *6)))
- (-5 *1 (-907 *4 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3))
- (-4 *3 (-962)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5))
- (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *1 (-1269 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-639 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554))
- (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1269 *5 *6 *7 *8)))))
+ (-12 (-5 *3 (-838 (-378))) (-5 *2 (-838 (-224))) (-5 *1 (-304)))))
(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-916)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
- ((*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-262)))))
+ (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
+ (-4 *4 (-1092)))))
+(((*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
+ ((*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (-5 *2
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite| "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite| "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated")))
- (-5 *1 (-191)))))
+ (-12 (-5 *3 (-1256 *4)) (-4 *4 (-1044)) (-4 *2 (-1232 *4))
+ (-5 *1 (-443 *4 *2))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-406 (-1164 (-315 *5)))) (-5 *3 (-1256 (-315 *5)))
+ (-5 *4 (-562)) (-4 *5 (-13 (-554) (-845))) (-5 *1 (-1122 *5)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -1606 (-777 *3)) (|:| |coef1| (-777 *3))))
+ (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *2 (-2 (|:| -1606 *1) (|:| |coef1| *1)))
+ (-4 *1 (-1058 *3 *4 *5)))))
+(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *1 (-792 *2)) (-4 *2 (-171))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-994 *3)) (-4 *3 (-171)) (-5 *1 (-794 *3)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997)))))
@@ -8304,55 +8365,56 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
- (-12 (-5 *4 (-683 (-562))) (-5 *5 (-112)) (-5 *7 (-683 (-224)))
- (-5 *3 (-562)) (-5 *6 (-224)) (-5 *2 (-1030)) (-5 *1 (-749)))))
-(((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-562)) (-5 *1 (-1148 *3)) (-4 *3 (-1207))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-562)) (-5 *3 (-916)) (-5 *1 (-693))))
- ((*1 *2 *2 *2 *3 *4)
- (-12 (-5 *2 (-683 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5))
- (-4 *5 (-362)) (-5 *1 (-973 *5)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1168)) (-5 *5 (-1086 (-224))) (-5 *2 (-922))
+ (-5 *1 (-920 *3)) (-4 *3 (-610 (-535)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1168)) (-5 *2 (-922)) (-5 *1 (-920 *3))
+ (-4 *3 (-610 (-535)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *1 (-922))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-922)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-817)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-554)) (-4 *3 (-171)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2))
+ (-4 *2 (-681 *3 *4 *5)))))
(((*1 *1 *1 *1) (-5 *1 (-129)))
((*1 *1 *1 *1) (-12 (-5 *1 (-1175 *2)) (-14 *2 (-916))))
((*1 *1 *1 *1) (-5 *1 (-1212))) ((*1 *1 *1 *1) (-5 *1 (-1213)))
((*1 *1 *1 *1) (-5 *1 (-1214))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-766)) (-5 *3 (-938 *5)) (-4 *5 (-1044))
- (-5 *1 (-1156 *4 *5)) (-14 *4 (-916))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-639 (-766))) (-5 *3 (-766)) (-5 *1 (-1156 *4 *5))
- (-14 *4 (-916)) (-4 *5 (-1044))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-639 (-766))) (-5 *3 (-938 *5)) (-4 *5 (-1044))
- (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))))
-(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *6))))
- (-5 *4 (-1021 (-838 (-562)))) (-5 *5 (-1168)) (-5 *7 (-406 (-562)))
- (-4 *6 (-1044)) (-5 *2 (-857)) (-5 *1 (-592 *6)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4403)) (-4 *1 (-488 *4))
+ (-4 *4 (-1207)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-766)) (-4 *4 (-306)) (-4 *6 (-1232 *4))
+ (-5 *2 (-1256 (-639 *6))) (-5 *1 (-454 *4 *6)) (-5 *5 (-639 *6)))))
(((*1 *2 *2) (|partial| -12 (-5 *2 (-315 (-224))) (-5 *1 (-304))))
((*1 *2 *1)
(|partial| -12
(-5 *2 (-2 (|:| |num| (-887 *3)) (|:| |den| (-887 *3))))
(-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1218 *3 *2)) (-4 *3 (-1044))
- (-4 *2 (-1247 *3)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *3 *3 *5 *6 *3 *6 *6 *5 *6 *6 *6 *6
- *5 *3 *3 *3 *3 *3 *6 *6 *6 *3 *3 *3 *3 *3 *7 *4 *4 *4 *4 *3 *8
- *9)
- (-12 (-5 *4 (-683 (-224))) (-5 *5 (-112)) (-5 *6 (-224))
- (-5 *7 (-683 (-562)))
- (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-80 CONFUN))))
- (-5 *9 (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN))))
- (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-748)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-562)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1207))
- (-4 *5 (-372 *4)) (-4 *3 (-372 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261))
+ (-5 *1 (-1065 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261))
+ (-5 *1 (-1100 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))))
+(((*1 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544))))
+ ((*1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-966)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-639 (-562))) (-5 *1 (-1102)) (-5 *3 (-562)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-451)) (-4 *3 (-845)) (-4 *3 (-1033 (-562)))
+ (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-429 *3))
+ (-4 *2
+ (-13 (-362) (-301)
+ (-10 -8 (-15 -4063 ((-1117 *3 (-608 $)) $))
+ (-15 -4079 ((-1117 *3 (-608 $)) $))
+ (-15 -4053 ($ (-1117 *3 (-608 $))))))))))
(((*1 *2 *2 *2 *3 *4)
(-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1044))
(-5 *1 (-848 *5 *2)) (-4 *2 (-847 *5)))))
@@ -8372,38 +8434,43 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *2 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-746)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23))
- (-14 *4 *3))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-766)) (-5 *1 (-669 *3)) (-4 *3 (-1044))
+ (-4 *3 (-1092)))))
+(((*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))))
(((*1 *1 *1 *1) (-5 *1 (-129)))
((*1 *1 *1 *1) (-12 (-5 *1 (-1175 *2)) (-14 *2 (-916))))
((*1 *1 *1 *1) (-5 *1 (-1212))) ((*1 *1 *1 *1) (-5 *1 (-1213)))
((*1 *1 *1 *1) (-5 *1 (-1214))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-435)))))
-(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-390)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-937)) (-5 *3 (-562)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
+ (-5 *2 (-683 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-1053)) (-4 *3 (-1192))
+ (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
(((*1 *1)
- (-12 (-4 *1 (-403)) (-2236 (|has| *1 (-6 -4393)))
- (-2236 (|has| *1 (-6 -4385)))))
+ (-12 (-4 *1 (-403)) (-2234 (|has| *1 (-6 -4394)))
+ (-2234 (|has| *1 (-6 -4386)))))
((*1 *2 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-1092)) (-4 *2 (-845))))
((*1 *1) (-4 *1 (-839))) ((*1 *1 *1 *1) (-4 *1 (-845)))
((*1 *2 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-845)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-174))) (-5 *1 (-1077)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-715)) (-5 *2 (-916))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-717)) (-5 *2 (-766)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-766)) (-4 *6 (-362)) (-5 *4 (-1201 *6))
- (-5 *2 (-1 (-1148 *4) (-1148 *4))) (-5 *1 (-1264 *6))
- (-5 *5 (-1148 *4)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
+ (-5 *2
+ (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
+ (|:| |success| (-112))))
+ (-5 *1 (-784)) (-5 *5 (-562)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-766)) (-5 *2 (-1 (-1148 (-947 *4)) (-1148 (-947 *4))))
+ (-5 *1 (-1264 *4)) (-4 *4 (-362)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997)))))
@@ -8423,45 +8490,37 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1258))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1044)) (-4 *5 (-1232 *4)) (-5 *2 (-1 *6 (-639 *6)))
- (-5 *1 (-1250 *4 *5 *3 *6)) (-4 *3 (-650 *5)) (-4 *6 (-1247 *4)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-451)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-788)) (-4 *4 (-845)) (-4 *5 (-306))
- (-5 *1 (-911 *3 *4 *5 *2)) (-4 *2 (-944 *5 *3 *4))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1164 *6)) (-4 *6 (-944 *5 *3 *4)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *5 (-306)) (-5 *1 (-911 *3 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *6 *4 *5))
- (-5 *1 (-911 *4 *5 *6 *2)) (-4 *4 (-788)) (-4 *5 (-845))
- (-4 *6 (-306)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171))))
+ ((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1171)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-4 *3 (-1092))
+ (-5 *2 (-112)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-751)))))
(((*1 *1 *1) (-5 *1 (-224)))
((*1 *1 *1)
(-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168)))
(-14 *3 (-639 (-1168))) (-4 *4 (-386))))
((*1 *1 *1) (-5 *1 (-378))) ((*1 *1) (-5 *1 (-378))))
-(((*1 *2 *3 *4 *2 *2 *5)
- (|partial| -12 (-5 *2 (-838 *4)) (-5 *3 (-608 *4)) (-5 *5 (-112))
- (-4 *4 (-13 (-1192) (-29 *6)))
- (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-223 *6 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-544)) (-5 *1 (-158 *2)))))
-(((*1 *2)
- (-12 (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4)))
- (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-562)) (-5 *1 (-240))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-562)) (-5 *1 (-240)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-683 *3))
+ (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $)))))
+ (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-683 *3))
+ (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $)))))
+ (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-341 *4 *5 *6)) (-4 *4 (-1211))
- (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5)))
- (-5 *2 (-2 (|:| |num| (-683 *5)) (|:| |den| *5))))))
+ (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
+ (-4 *3 (-13 (-362) (-1192) (-997))))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997)))))
@@ -8481,62 +8540,62 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *1 *1) (-4 *1 (-864 *2))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-378)) (-5 *1 (-1056)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1021 (-838 (-562)))) (-5 *1 (-592 *3)) (-4 *3 (-1044)))))
-(((*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)) (-5 *2 (-112))
- (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34)))
- (-4 *4 (-13 (-1092) (-34))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
- (-4 *3 (-13 (-362) (-1192) (-997))))))
-(((*1 *1 *1) (-5 *1 (-1056))))
+(((*1 *2 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1030))
+ (-5 *1 (-741)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-554))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2455 *4)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168))
- (-14 *4 *2))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-451) (-146))) (-5 *2 (-417 *3))
- (-5 *1 (-100 *4 *3)) (-4 *3 (-1232 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-13 (-451) (-146)))
- (-5 *2 (-417 *3)) (-5 *1 (-100 *5 *3)))))
+ (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1150)) (-5 *1 (-191))))
+ ((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
+(((*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-1164 *3)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN))))
+ (-5 *2 (-1030)) (-5 *1 (-743)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329))
+ (-5 *1 (-331)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1168)) (-5 *5 (-1086 (-224))) (-5 *2 (-922))
- (-5 *1 (-920 *3)) (-4 *3 (-610 (-535)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168)) (-5 *2 (-922)) (-5 *1 (-920 *3))
- (-4 *3 (-610 (-535)))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *1 (-922))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-922)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
- (-5 *2 (-683 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))))
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
+(((*1 *2 *1) (-12 (-5 *2 (-966)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4403)) (-4 *1 (-234 *3))
+ (-4 *3 (-1092))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-1 (-1148 (-947 *4)) (-1148 (-947 *4))))
- (-5 *1 (-1264 *4)) (-4 *4 (-362)))))
-(((*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-1164 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-1193 *3))) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))))
+ (|partial| -12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6))
+ (-5 *2 (-2 (|:| |bas| (-475 *4 *5 *6 *7)) (|:| -2774 (-639 *7))))
+ (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1092)) (-4 *5 (-1092))
+ (-5 *2 (-1 *5)) (-5 *1 (-677 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-1044))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-968 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-787))
+ (-4 *5 (-845)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-845)) (-5 *2 (-639 (-639 *4))) (-5 *1 (-1178 *4))
+ (-5 *3 (-639 *4)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-819)) (-5 *3 (-639 (-1168))) (-5 *1 (-820)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1094 (-1094 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
-(((*1 *1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))))
+ (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-1156 3 *3))))
+ ((*1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-1258))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-1258)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-1211))
+ (-4 *6 (-1232 (-406 *5)))
+ (-5 *2
+ (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
+ (|:| |gd| *5)))
+ (-4 *1 (-341 *4 *5 *6)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23))
(-14 *4 *3)))
@@ -8546,218 +8605,190 @@
((*1 *1 *1 *1)
(-12 (-5 *1 (-669 *2)) (-4 *2 (-1044)) (-4 *2 (-1092)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-2 (|:| -2534 *4) (|:| -1929 (-562)))))
- (-4 *4 (-1092)) (-5 *2 (-1 *4)) (-5 *1 (-1012 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+ (-12 (-5 *3 (-1 *5 (-639 *5))) (-4 *5 (-1247 *4))
+ (-4 *4 (-38 (-406 (-562))))
+ (-5 *2 (-1 (-1148 *4) (-639 (-1148 *4)))) (-5 *1 (-1249 *4 *5)))))
+(((*1 *1 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)) (-4 *2 (-1044))))
+ ((*1 *1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-322 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-130))
+ (-4 *3 (-787)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2))
+ (-4 *4 (-372 *2)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-683 *4)) (-5 *3 (-916)) (-4 *4 (-1044))
- (-5 *1 (-1023 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-639 (-683 *4))) (-5 *3 (-916)) (-4 *4 (-1044))
- (-5 *1 (-1023 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857))))
- ((*1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168)))
- (-14 *4 (-639 (-1168))) (-4 *5 (-386))))
- ((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-338 *3 *4 *5)) (-14 *3 (-639 (-1168)))
- (-14 *4 (-639 (-1168))) (-4 *5 (-386)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1))
- (-4 *1 (-1058 *3 *4 *5)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12
- (-5 *3
- (-1 (-3 (-2 (|:| -3860 *4) (|:| |coeff| *4)) "failed") *4))
- (-4 *4 (-362)) (-5 *1 (-572 *4 *2)) (-4 *2 (-1232 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
- (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-972 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-639 *3)) (-4 *3 (-1232 (-562))) (-5 *1 (-485 *3)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-639 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554))
- (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-972 *5 *6 *7 *8)))))
+ (-12 (-5 *2 (-1256 (-1256 (-562)))) (-5 *3 (-916)) (-5 *1 (-465)))))
+(((*1 *1 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-585 *4))
- (-4 *4 (-348)))))
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
+ ((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1148 (-406 *3))) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-156)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+ (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044))
+ (-5 *2 (-639 (-639 (-639 (-766))))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *5)) (-5 *4 (-639 (-1 *6 (-639 *6))))
+ (-4 *5 (-38 (-406 (-562)))) (-4 *6 (-1247 *5)) (-5 *2 (-639 *6))
+ (-5 *1 (-1249 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-766)) (-5 *3 (-938 *4)) (-4 *1 (-1126 *4))
+ (-4 *4 (-1044))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-766)) (-5 *4 (-938 (-224))) (-5 *2 (-1261))
+ (-5 *1 (-1258)))))
+(((*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-112)))))
+(((*1 *1 *2) (-12 (-5 *2 (-182)) (-5 *1 (-247)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393))))
+ ((*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
+(((*1 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))))
(((*1 *1 *1) (-12 (-5 *1 (-499 *2)) (-14 *2 (-562))))
((*1 *1 *1) (-5 *1 (-1112))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
- (-5 *2
- (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
- (|:| |success| (-112))))
- (-5 *1 (-784)) (-5 *5 (-562)))))
(((*1 *1 *2 *1 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329))))
((*1 *1 *2 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168))
- (-4 *5 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *2 (-583 *3)) (-5 *1 (-555 *5 *3))
- (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
-(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1042)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-133))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-828 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-838 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-499 *2)) (-14 *2 (-562))))
- ((*1 *1 *1 *1) (-5 *1 (-1112))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 (-639 *7) *7 (-1164 *7))) (-5 *5 (-1 (-417 *7) *7))
- (-4 *7 (-1232 *6)) (-4 *6 (-13 (-362) (-146) (-1033 (-406 (-562)))))
- (-5 *2 (-639 (-2 (|:| |frac| (-406 *7)) (|:| -3342 *3))))
- (-5 *1 (-804 *6 *7 *3 *8)) (-4 *3 (-650 *7))
- (-4 *8 (-650 (-406 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-5 *2
- (-639 (-2 (|:| |frac| (-406 *6)) (|:| -3342 (-648 *6 (-406 *6))))))
- (-5 *1 (-807 *5 *6)) (-5 *3 (-648 *6 (-406 *6))))))
-(((*1 *2 *3 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-788)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *6 (-845))
- (-5 *2 (-112)) (-5 *1 (-448 *4 *5 *6 *7)))))
-(((*1 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-843)) (-5 *1 (-302 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-326 *3)) (-4 *3 (-1207))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-562)) (-5 *1 (-515 *3 *4)) (-4 *3 (-1207)) (-14 *4 *2))))
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1501 *4))))
+ (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-385 *2)) (-4 *2 (-1092))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1148 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-191))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1148 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-299))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1148 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-304)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-524)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112)))))
-(((*1 *2) (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1259))))
- ((*1 *2 *2) (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1259)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1172)))))
+ (-12 (-4 *4 (-13 (-554) (-845)))
+ (-4 *2 (-13 (-429 (-168 *4)) (-997) (-1192)))
+ (-5 *1 (-596 *4 *3 *2)) (-4 *3 (-13 (-429 *4) (-997) (-1192))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
+ (-5 *2 (-1261)) (-5 *1 (-1171))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1168))
+ (-5 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-5 *2 (-1261))
+ (-5 *1 (-1171))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *3 (-1168))
+ (-5 *4 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-5 *2 (-1261))
+ (-5 *1 (-1171)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-499 *2)) (-14 *2 (-562))))
((*1 *1 *1 *1) (-5 *1 (-1112))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-306)) (-5 *1 (-454 *3 *2)) (-4 *2 (-1232 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-306)) (-5 *1 (-459 *3 *2)) (-4 *2 (-1232 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-306)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-766)))
- (-5 *1 (-538 *3 *2 *4 *5)) (-4 *2 (-1232 *3)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -4221 *3) (|:| |gap| (-766)) (|:| -2097 (-777 *3))
- (|:| -2264 (-777 *3))))
- (-5 *1 (-777 *3)) (-4 *3 (-1044))))
- ((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845))
- (-5 *2
- (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -2097 *1)
- (|:| -2264 *1)))
- (-4 *1 (-1058 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *2
- (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -2097 *1)
- (|:| -2264 *1)))
- (-4 *1 (-1058 *3 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-5 *2 (-639 *5))
- (-5 *1 (-885 *4 *5)) (-4 *5 (-1207)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-554)) (-5 *2 (-112)))))
-(((*1 *2 *3) (-12 (-5 *2 (-417 *3)) (-5 *1 (-556 *3)) (-4 *3 (-544))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-5 *2 (-417 *3))
- (-5 *1 (-737 *4 *5 *6 *3)) (-4 *3 (-944 *6 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306))
- (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-417 (-1164 *7)))
- (-5 *1 (-737 *4 *5 *6 *7)) (-5 *3 (-1164 *7))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-451)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *2 (-417 *1)) (-4 *1 (-944 *3 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-845)) (-4 *5 (-788)) (-4 *6 (-451)) (-5 *2 (-417 *3))
- (-5 *1 (-974 *4 *5 *6 *3)) (-4 *3 (-944 *6 *5 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-451))
- (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-417 (-1164 (-406 *7))))
- (-5 *1 (-1163 *4 *5 *6 *7)) (-5 *3 (-1164 (-406 *7)))))
- ((*1 *2 *1) (-12 (-5 *2 (-417 *1)) (-4 *1 (-1211))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-417 *3)) (-5 *1 (-1235 *4 *3))
- (-4 *3 (-13 (-1232 *4) (-554) (-10 -8 (-15 -1606 ($ $ $)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
- (-14 *5 (-639 (-1168)))
- (-5 *2
- (-639 (-1138 *4 (-530 (-859 *6)) (-859 *6) (-775 *4 (-859 *6)))))
- (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1256 *5)) (-4 *5 (-787)) (-5 *2 (-112))
+ (-5 *1 (-840 *4 *5)) (-14 *4 (-766)))))
+(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-168 (-224)))) (-5 *2 (-1030))
+ (-5 *1 (-751)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-329)))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-639 (-170)))))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-608 *3)) (-4 *3 (-845)))))
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))))
+(((*1 *2 *1) (-12 (-5 *1 (-583 *2)) (-4 *2 (-362)))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-556 *2)) (-4 *2 (-544)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-499 *2)) (-14 *2 (-562))))
+ ((*1 *1 *1 *1) (-5 *1 (-1112))))
+(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-817)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-306)) (-4 *3 (-171)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3)))
+ (-5 *1 (-682 *3 *4 *5 *6)) (-4 *6 (-681 *3 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-694 *3))
+ (-4 *3 (-306)))))
+(((*1 *2 *1) (-12 (-5 *2 (-817)) (-5 *1 (-816)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1168)) (-5 *5 (-1086 (-224))) (-5 *2 (-922))
+ (-5 *1 (-920 *3)) (-4 *3 (-610 (-535)))))
+ ((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *4 (-1168)) (-5 *5 (-1086 (-224))) (-5 *2 (-922))
+ (-5 *1 (-920 *3)) (-4 *3 (-610 (-535)))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921))))
+ ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-921))))
+ ((*1 *1 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-921))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922))))
+ ((*1 *1 *2 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-922))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-922))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-639 (-1 (-224) (-224)))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-922))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-639 (-1 (-224) (-224)))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-922))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-922))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-922)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 *1)) (|has| *1 (-6 -4403)) (-4 *1 (-1005 *3))
- (-4 *3 (-1207)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))))
-(((*1 *2 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-683 *4)) (-5 *3 (-766)) (-4 *4 (-1044))
- (-5 *1 (-684 *4)))))
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-535)) (-5 *1 (-534 *4))
- (-4 *4 (-1207)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1092)) (-5 *2 (-1150)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
- (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030))
- (-5 *1 (-750)))))
+ (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-416 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))))
+(((*1 *2 *2) (|partial| -12 (-5 *2 (-315 (-224))) (-5 *1 (-266)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-406 (-562))) (-5 *1 (-1019 *3))
+ (-4 *3 (-13 (-843) (-362) (-1017)))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3))
+ (-4 *3 (-1232 *2))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *1 (-1061 *2 *3)) (-4 *2 (-13 (-843) (-362)))
+ (-4 *3 (-1232 *2)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-639 (-2 (|:| |totdeg| (-766)) (|:| -4201 *3))))
+ (-5 *4 (-766)) (-4 *3 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788))
+ (-4 *7 (-845)) (-5 *1 (-448 *5 *6 *7 *3)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *5)) (-5 *4 (-916)) (-4 *5 (-845))
+ (-5 *2 (-59 (-639 (-666 *5)))) (-5 *1 (-666 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 *3)) (-4 *3 (-1101 *5 *6 *7 *8))
+ (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-588 *5 *6 *7 *8 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1188)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *1 *2 *2)
(-12 (-5 *2 (-766)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5))
(-4 *4 (-372 *3)) (-4 *5 (-372 *3))))
((*1 *1 *2)
(-12 (-5 *2 (-766)) (-4 *1 (-1254 *3)) (-4 *3 (-23)) (-4 *3 (-1207)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-639 (-639 (-639 *4)))) (-5 *2 (-639 (-639 *4)))
+ (-4 *4 (-845)) (-5 *1 (-1178 *4)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-742)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *3))
- (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-639 *3)) (-4 *3 (-1058 *4 *5 *6)) (-4 *4 (-554))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 (-639 *7) (-639 *7))) (-5 *2 (-639 *7))
- (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554)) (-4 *5 (-788))
- (-4 *6 (-845)) (-5 *1 (-972 *4 *5 *6 *7)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-528)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1164 (-947 *6))) (-4 *6 (-554))
- (-4 *2 (-944 (-406 (-947 *6)) *5 *4)) (-5 *1 (-727 *5 *4 *6 *2))
- (-4 *5 (-788))
- (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))))))
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-836)) (-5 *4 (-1056)) (-5 *2 (-1030)) (-5 *1 (-835))))
((*1 *2 *3) (-12 (-5 *3 (-836)) (-5 *2 (-1030)) (-5 *1 (-835))))
@@ -8774,85 +8805,79 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-639 (-315 (-378)))) (-5 *4 (-639 (-378)))
(-5 *2 (-1030)) (-5 *1 (-835)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1207)) (-5 *2 (-639 *1)) (-4 *1 (-1005 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 (-1156 *3 *4))) (-5 *1 (-1156 *3 *4))
- (-14 *3 (-916)) (-4 *4 (-1044)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-306)) (-4 *3 (-987 *2)) (-4 *4 (-1232 *3))
- (-5 *1 (-412 *2 *3 *4 *5)) (-4 *5 (-13 (-408 *3 *4) (-1033 *3))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1606 *3)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788))
- (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1062 *5 *6 *7 *8 *9))))
+ (-12 (-5 *3 (-639 (-562))) (-5 *4 (-900 (-562)))
+ (-5 *2 (-683 (-562))) (-5 *1 (-587))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-639 (-683 (-562))))
+ (-5 *1 (-587))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788))
- (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1150) (-769))) (-5 *1 (-114)))))
+ (-12 (-5 *3 (-639 (-562))) (-5 *4 (-639 (-900 (-562))))
+ (-5 *2 (-639 (-683 (-562)))) (-5 *1 (-587)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-639 (-246 *4 *5))) (-5 *2 (-246 *4 *5))
+ (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *1 (-627 *4 *5)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
- (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
- (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
- (|:| |abserr| (-224)) (|:| |relerr| (-224))))
- (-5 *2 (-378)) (-5 *1 (-204)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-490)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-647 *4)) (-4 *4 (-341 *5 *6 *7))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
- (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6)))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4))))
- (-5 *1 (-801 *5 *6 *7 *4)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-639 (-562))) (-5 *1 (-1102)) (-5 *3 (-562)))))
+ (-12 (-5 *3 (-1256 (-639 (-2 (|:| -2533 *4) (|:| -2464 (-1112))))))
+ (-4 *4 (-348)) (-5 *2 (-766)) (-5 *1 (-345 *4))))
+ ((*1 *2)
+ (-12 (-5 *2 (-766)) (-5 *1 (-350 *3 *4)) (-14 *3 (-916))
+ (-14 *4 (-916))))
+ ((*1 *2)
+ (-12 (-5 *2 (-766)) (-5 *1 (-351 *3 *4)) (-4 *3 (-348))
+ (-14 *4
+ (-3 (-1164 *3)
+ (-1256 (-639 (-2 (|:| -2533 *3) (|:| -2464 (-1112)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-766)) (-5 *1 (-352 *3 *4)) (-4 *3 (-348))
+ (-14 *4 (-916)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-938 (-224)))) (-5 *1 (-1257)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-750)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-562)) (|has| *1 (-6 -4394)) (-4 *1 (-403))
+ (-5 *2 (-916)))))
+(((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-584 *3)) (-4 *3 (-544)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1044)) (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
+ (-4 *4 (-1044)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-406 *2)) (-4 *2 (-1232 *5))
+ (-5 *1 (-802 *5 *2 *3 *6))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562)))))
+ (-4 *3 (-650 *2)) (-4 *6 (-650 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 (-406 *2))) (-4 *2 (-1232 *5))
+ (-5 *1 (-802 *5 *2 *3 *6))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2))
+ (-4 *6 (-650 (-406 *2))))))
+(((*1 *1) (-5 *1 (-156)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *2 (-1256 (-315 (-378))))
- (-5 *1 (-304)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-224)) (-5 *4 (-562))
- (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030))
- (-5 *1 (-743)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
+ (-12 (-5 *2 (-168 *4)) (-5 *1 (-180 *4 *3))
+ (-4 *4 (-13 (-362) (-843))) (-4 *3 (-1232 *2)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2))
- (-4 *4 (-13 (-845) (-554))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788))
- (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-451)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 (-859 *5))) (-14 *5 (-639 (-1168))) (-4 *6 (-451))
- (-5 *2
- (-2 (|:| |dpolys| (-639 (-246 *5 *6)))
- (|:| |coords| (-639 (-562)))))
- (-5 *1 (-470 *5 *6 *7)) (-5 *3 (-639 (-246 *5 *6))) (-4 *7 (-451)))))
-(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-869))))
- ((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
-(((*1 *2 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-742)))))
+ (-12 (-5 *3 (-1150)) (-5 *2 (-562)) (-5 *1 (-1189 *4))
+ (-4 *4 (-1044)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-221 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-4 *1 (-253 *3))))
+ ((*1 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
+(((*1 *2)
+ (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-416 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-947 *5)) (-4 *5 (-1044)) (-5 *2 (-246 *4 *5))
+ (-5 *1 (-939 *4 *5)) (-14 *4 (-639 (-1168))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))))
+(((*1 *1 *1) (-5 *1 (-1056))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-467)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *1 *2)
(-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5))
(-4 *4 (-372 *3)) (-4 *5 (-372 *3))))
@@ -8864,467 +8889,41 @@
(-12 (-5 *2 (-639 (-639 *5))) (-4 *5 (-1044))
(-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *6 (-237 *4 *5))
(-4 *7 (-237 *3 *5)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-112)) (-5 *5 (-1094 (-766))) (-5 *6 (-766))
- (-5 *2
- (-2 (|:| |contp| (-562))
- (|:| -1510 (-639 (-2 (|:| |irr| *3) (|:| -2762 (-562)))))))
- (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34)))
- (-4 *3 (-13 (-1092) (-34))))))
-(((*1 *2 *2 *3) (-12 (-5 *2 (-562)) (-5 *3 (-766)) (-5 *1 (-559)))))
-(((*1 *2 *3 *3 *3 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1223 (-562))) (-4 *1 (-645 *3)) (-4 *3 (-1207))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-645 *3)) (-4 *3 (-1207)))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
- (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378)))
- (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261))
- (-5 *1 (-783)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1223 (-562))) (-4 *1 (-281 *3)) (-4 *3 (-1207))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-639 (-562))) (-5 *3 (-683 (-562))) (-5 *1 (-1102)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-32 *3 *4))
- (-4 *4 (-429 *3))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-766)) (-5 *1 (-114))))
- ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-114))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *4))
- (-4 *4 (-429 *3))))
- ((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-114)) (-5 *1 (-162))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *4))
- (-4 *4 (-13 (-429 *3) (-997)))))
- ((*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-300 *3)) (-4 *3 (-301))))
- ((*1 *2 *2) (-12 (-4 *1 (-301)) (-5 *2 (-114))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *4 (-845)) (-5 *1 (-428 *3 *4))
- (-4 *3 (-429 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *4))
- (-4 *4 (-429 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-608 *3)) (-4 *3 (-845))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *4))
- (-4 *4 (-13 (-429 *3) (-997) (-1192)))))
- ((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1014)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-362)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5)) (-5 *2 (-112)))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-554)) (-4 *3 (-171))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -3928 (-639 *1))))
- (-4 *1 (-366 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-452 *3 *4 *5 *6))
- (|:| -3928 (-639 (-452 *3 *4 *5 *6)))))
- (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-947 *5)) (-4 *5 (-1044)) (-5 *2 (-480 *4 *5))
- (-5 *1 (-939 *4 *5)) (-14 *4 (-639 (-1168))))))
-(((*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-133)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-451))
- (-5 *2 (-480 *4 *5)) (-5 *1 (-627 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1092)) (-4 *6 (-1092))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-678 *4 *5 *6)) (-4 *4 (-1092)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-584 *2)) (-4 *2 (-544)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-279)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-562) (-562))) (-5 *1 (-360 *3)) (-4 *3 (-1092))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-766) (-766))) (-5 *1 (-385 *3)) (-4 *3 (-1092))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
- (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-448 *4 *5 *6 *2)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-1044))
- (-5 *1 (-1152 *4))))
- ((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-562)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044))
- (-14 *4 (-1168)) (-14 *5 *3))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1256 (-683 *4))) (-4 *4 (-171))
- (-5 *2 (-1256 (-683 (-947 *4)))) (-5 *1 (-188 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1256 *5)) (-4 *5 (-787)) (-5 *2 (-112))
- (-5 *1 (-840 *4 *5)) (-14 *4 (-766)))))
-(((*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-129)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-639 *6) "failed") (-562) *6 *6)) (-4 *6 (-362))
- (-4 *7 (-1232 *6))
- (-5 *2 (-2 (|:| |answer| (-583 (-406 *7))) (|:| |a0| *6)))
- (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1168)) (-4 *5 (-362)) (-5 *2 (-1148 (-1148 (-947 *5))))
- (-5 *1 (-1264 *5)) (-5 *4 (-1148 (-947 *5))))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-639 *4)) (-4 *4 (-362)) (-5 *2 (-1256 *4))
- (-5 *1 (-809 *4 *3)) (-4 *3 (-650 *4)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-747)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *5 (-1150))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-82 PDEF))))
- (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1030))
- (-5 *1 (-745)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-215 *4 *2))
+ (-4 *2 (-1232 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-766)) (-5 *2 (-639 (-1168))) (-5 *1 (-209))
- (-5 *3 (-1168))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-315 (-224))) (-5 *4 (-766)) (-5 *2 (-639 (-1168)))
- (-5 *1 (-266))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171))
- (-5 *2 (-639 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 *3)) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845))
- (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916))))
- ((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-666 *3)) (-4 *3 (-845))))
- ((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-671 *3)) (-4 *3 (-845))))
- ((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-814 *3)) (-4 *3 (-845))))
- ((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-888 *3)) (-4 *3 (-845))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
- (-5 *2 (-639 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-326 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-515 *3 *4))
- (-14 *4 (-562)))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
- (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 *4)) (-4 *4 (-845)) (-5 *2 (-639 (-658 *4 *5)))
- (-5 *1 (-623 *4 *5 *6)) (-4 *5 (-13 (-171) (-712 (-406 (-562)))))
- (-14 *6 (-916)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224)))
- (-5 *2 (-1030)) (-5 *1 (-749)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-217))))
- ((*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-438))))
- ((*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-833))))
- ((*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-1107))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-639 (-1173))) (-5 *3 (-1173)) (-5 *1 (-1110)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-766)) (-4 *1 (-1232 *4)) (-4 *4 (-1044))
- (-5 *2 (-1256 *4)))))
+ (-12 (-5 *3 (-639 (-1 (-112) *8))) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-2 (|:| |goodPols| (-639 *8)) (|:| |badPols| (-639 *8))))
+ (-5 *1 (-972 *5 *6 *7 *8)) (-5 *4 (-639 *8)))))
(((*1 *2 *1 *3)
- (-12 (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))) (-5 *2 (-112)))))
-(((*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-224)) (-5 *1 (-304)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1254 *3)) (-4 *3 (-1207)) (-4 *3 (-1044))
- (-5 *2 (-683 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *2 *1 *3 *4)
- (-12 (-5 *2 (-639 *8)) (-5 *3 (-1 *8 *8 *8))
- (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1200 *5 *6 *7 *8)) (-4 *5 (-554))
- (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-171)) (-4 *2 (-1044)) (-5 *1 (-709 *2 *3))
- (-4 *3 (-642 *2))))
- ((*1 *2 *2) (-12 (-5 *1 (-831 *2)) (-4 *2 (-171)) (-4 *2 (-1044)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
- (-5 *2
- (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
- (|:| |success| (-112))))
- (-5 *1 (-784)) (-5 *5 (-562)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-325 *3 *4)) (-4 *3 (-1044))
- (-4 *4 (-787)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845)) (-4 *3 (-171))))
- ((*1 *2 *3 *3)
- (-12 (-4 *2 (-554)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-554))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-171)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1247 *2)) (-4 *2 (-1044)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-315 *4)) (-4 *4 (-13 (-823) (-845) (-1044)))
- (-5 *2 (-1150)) (-5 *1 (-821 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-315 *5)) (-5 *4 (-112))
- (-4 *5 (-13 (-823) (-845) (-1044))) (-5 *2 (-1150))
- (-5 *1 (-821 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-817)) (-5 *4 (-315 *5))
- (-4 *5 (-13 (-823) (-845) (-1044))) (-5 *2 (-1261))
- (-5 *1 (-821 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-817)) (-5 *4 (-315 *6)) (-5 *5 (-112))
- (-4 *6 (-13 (-823) (-845) (-1044))) (-5 *2 (-1261))
- (-5 *1 (-821 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-823)) (-5 *2 (-1150))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-823)) (-5 *3 (-112)) (-5 *2 (-1150))))
- ((*1 *2 *3 *1) (-12 (-4 *1 (-823)) (-5 *3 (-817)) (-5 *2 (-1261))))
- ((*1 *2 *3 *1 *4)
- (-12 (-4 *1 (-823)) (-5 *3 (-817)) (-5 *4 (-112)) (-5 *2 (-1261)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-5 *2
- (-2 (|:| |contp| (-562))
- (|:| -1510 (-639 (-2 (|:| |irr| *3) (|:| -2762 (-562)))))))
- (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-5 *2
- (-2 (|:| |contp| (-562))
- (|:| -1510 (-639 (-2 (|:| |irr| *3) (|:| -2762 (-562)))))))
- (-5 *1 (-1221 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *1 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))))
-(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1259)))))
-(((*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)) (-4 *2 (-1192))))
- ((*1 *2 *1) (-12 (-5 *1 (-330 *2)) (-4 *2 (-845))))
- ((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-608 *3)) (-4 *3 (-845)))))
-(((*1 *2 *2) (-12 (-5 *2 (-387)) (-5 *1 (-435))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-387)) (-5 *1 (-435)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-112))
- (-5 *2 (-1030)) (-5 *1 (-748)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *2 (-639 (-639 *3)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
- (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-639 (-639 *5)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 (-639 *3))) (-5 *1 (-1179 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1092)) (-5 *2 (-884 *3 *5)) (-5 *1 (-880 *3 *4 *5))
- (-4 *3 (-1092)) (-4 *5 (-660 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 (-143))) (-5 *1 (-140))))
- ((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-140)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168))
- (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *1 (-799 *4 *2)) (-4 *2 (-13 (-29 *4) (-1192) (-954))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *2)) (-4 *2 (-171))))
- ((*1 *2) (-12 (-4 *2 (-171)) (-5 *1 (-415 *3 *2)) (-4 *3 (-416 *2))))
- ((*1 *2) (-12 (-4 *1 (-416 *2)) (-4 *2 (-171)))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
- (-5 *2 (-1030)) (-5 *1 (-747)))))
-(((*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1150)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-766)) (-4 *4 (-13 (-1044) (-712 (-406 (-562)))))
- (-4 *5 (-845)) (-5 *1 (-1272 *4 *5 *2)) (-4 *2 (-1277 *5 *4)))))
-(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
- (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224)))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197)))) (-5 *3 (-224))
- (-5 *2 (-1030)) (-5 *1 (-743)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-754)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-814 *4)) (-4 *4 (-845)) (-5 *2 (-112))
- (-5 *1 (-666 *4)))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1170 (-406 (-562)))) (-5 *2 (-406 (-562)))
- (-5 *1 (-189)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-524)))))
-(((*1 *1 *1) (|partial| -4 *1 (-144))) ((*1 *1 *1) (-4 *1 (-348)))
- ((*1 *1 *1) (|partial| -12 (-4 *1 (-144)) (-4 *1 (-904)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3))
- (-4 *3 (-1232 (-168 *2))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112))
- (-5 *1 (-32 *4 *5)) (-4 *5 (-429 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112))
- (-5 *1 (-157 *4 *5)) (-4 *5 (-429 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112))
- (-5 *1 (-275 *4 *5)) (-4 *5 (-13 (-429 *4) (-997)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-300 *4)) (-4 *4 (-301))))
- ((*1 *2 *3) (-12 (-4 *1 (-301)) (-5 *3 (-114)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *5 (-845)) (-5 *2 (-112))
- (-5 *1 (-428 *4 *5)) (-4 *4 (-429 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112))
- (-5 *1 (-430 *4 *5)) (-4 *5 (-429 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112))
- (-5 *1 (-626 *4 *5)) (-4 *5 (-13 (-429 *4) (-997) (-1192))))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *5 (-1033 (-48)))
- (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4))
- (-5 *2 (-417 (-1164 (-48)))) (-5 *1 (-434 *4 *5 *3))
- (-4 *3 (-1232 *5)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-112))
- (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-4 *3 (-13 (-27) (-1192) (-429 *6) (-10 -8 (-15 -4054 ($ *7)))))
- (-4 *7 (-843))
- (-4 *8
- (-13 (-1234 *3 *7) (-362) (-1192)
- (-10 -8 (-15 -4029 ($ $)) (-15 -2667 ($ $)))))
- (-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))))
- (-5 *1 (-421 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1150)) (-4 *9 (-978 *8))
- (-14 *10 (-1168)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1125 (-224))) (-5 *3 (-639 (-262))) (-5 *1 (-1258))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1125 (-224))) (-5 *3 (-1150)) (-5 *1 (-1258))))
- ((*1 *1 *1) (-5 *1 (-1258))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 (-1269 *4 *5 *6 *7)))
- (-5 *1 (-1269 *4 *5 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-639 *9)) (-5 *4 (-1 (-112) *9 *9))
- (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1058 *6 *7 *8)) (-4 *6 (-554))
- (-4 *7 (-788)) (-4 *8 (-845)) (-5 *2 (-639 (-1269 *6 *7 *8 *9)))
- (-5 *1 (-1269 *6 *7 *8 *9)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-451))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *3 (-1058 *4 *5 *6))
- (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *1))))
- (-4 *1 (-1064 *4 *5 *6 *3))))
- ((*1 *1 *1) (-4 *1 (-1211)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-554)) (-5 *1 (-1235 *3 *2))
- (-4 *2 (-13 (-1232 *3) (-554) (-10 -8 (-15 -1606 ($ $ $))))))))
-(((*1 *1) (-5 *1 (-112))) ((*1 *1) (-5 *1 (-613))))
-(((*1 *1 *1) (-4 *1 (-554))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *1 *1 *1) (-4 *1 (-142)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788))
- (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1062 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788))
- (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))))
-(((*1 *2 *3)
(-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4))
(-4 *5 (-1232 (-406 *3))) (-5 *2 (-112))))
- ((*1 *2 *3)
+ ((*1 *2 *1 *3)
(-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
-(((*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
- ((*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *1 *1) (-4 *1 (-1131))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562))))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-5 *2 (-1256 (-3 (-467) "undefined"))) (-5 *1 (-1257)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-480 *4 *5))) (-14 *4 (-639 (-1168)))
- (-4 *5 (-451))
- (-5 *2
- (-2 (|:| |gblist| (-639 (-246 *4 *5)))
- (|:| |gvlist| (-639 (-562)))))
- (-5 *1 (-627 *4 *5)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))
- (-5 *2 (-378)) (-5 *1 (-266))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *2 (-378)) (-5 *1 (-304)))))
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
- (-4 *4 (-1044)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-362)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
- (-5 *1 (-520 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
-(((*1 *2)
- (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-416 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *2 (-562))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
- (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1112)) (-5 *1 (-838 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-817)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-556 *2)) (-4 *2 (-544)))))
-(((*1 *2 *1) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1188)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-406 *2)) (-4 *2 (-1232 *5))
- (-5 *1 (-802 *5 *2 *3 *6))
- (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562)))))
- (-4 *3 (-650 *2)) (-4 *6 (-650 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 (-406 *2))) (-4 *2 (-1232 *5))
- (-5 *1 (-802 *5 *2 *3 *6))
- (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2))
- (-4 *6 (-650 (-406 *2))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1113 *2)) (-4 *2 (-1207)))))
-(((*1 *1 *1) (-5 *1 (-1056))))
+ (-12 (-5 *2 (-1223 (-562))) (-4 *1 (-645 *3)) (-4 *3 (-1207))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-645 *3)) (-4 *3 (-1207)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4403)) (-4 *1 (-488 *4))
+ (-4 *4 (-1207)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2455 *4)))
+ (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2736 *4)))
(-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-544))))
+(((*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1150)) (-5 *1 (-304)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-170)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
+ (-4 *4 (-1044)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
+(((*1 *1)
+ (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766))
+ (-4 *4 (-171)))))
(((*1 *2 *1 *3)
(-12 (-4 *1 (-898 *3)) (-4 *3 (-1092)) (-5 *2 (-1094 *3))))
((*1 *2 *1 *3)
@@ -9335,15 +8934,114 @@
(-5 *3 (-1094 *4))))
((*1 *2 *1 *3)
(-12 (-5 *2 (-1094 *3)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-845))
+ (-5 *2 (-2 (|:| -4221 (-562)) (|:| |var| (-608 *1))))
+ (-4 *1 (-429 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-256)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-922))
+ (-5 *2
+ (-2 (|:| |brans| (-639 (-639 (-938 (-224)))))
+ (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))))
+ (-5 *1 (-152))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-922)) (-5 *4 (-406 (-562)))
+ (-5 *2
+ (-2 (|:| |brans| (-639 (-639 (-938 (-224)))))
+ (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))))
+ (-5 *1 (-152)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-938 *4)) (-4 *4 (-1044)) (-5 *1 (-1156 *3 *4))
+ (-14 *3 (-916)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-639 *5)) (-4 *5 (-171)) (-5 *1 (-135 *3 *4 *5))
+ (-14 *3 (-562)) (-14 *4 (-766)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
+ (-5 *2 (-112)))))
(((*1 *2 *2 *3)
(|partial| -12 (-5 *2 (-619 *4 *5))
(-5 *3
- (-1 (-2 (|:| |ans| *4) (|:| -1602 *4) (|:| |sol?| (-112)))
+ (-1 (-2 (|:| |ans| *4) (|:| -1603 *4) (|:| |sol?| (-112)))
(-562) *4))
(-4 *4 (-362)) (-4 *5 (-1232 *4)) (-5 *1 (-572 *4 *5)))))
+(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
+ (-12 (-5 *5 (-683 (-224))) (-5 *6 (-683 (-562))) (-5 *3 (-562))
+ (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-119 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-256)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1171)) (-5 *3 (-1168)))))
+(((*1 *1 *2 *3)
+ (-12
+ (-5 *3
+ (-639
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
+ (|:| |xpnt| (-562)))))
+ (-4 *2 (-554)) (-5 *1 (-417 *2))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |contp| (-562))
+ (|:| -2656 (-639 (-2 (|:| |irr| *4) (|:| -2794 (-562)))))))
+ (-4 *4 (-1232 (-562))) (-5 *2 (-417 *4)) (-5 *1 (-441 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1148 (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1152 *4))
+ (-4 *4 (-38 (-406 (-562)))) (-4 *4 (-1044)))))
(((*1 *1 *1 *2)
(-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-451)) (-4 *4 (-845))
(-4 *5 (-788)) (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
+ ((*1 *2 *3) (-12 (-5 *3 (-966)) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3 (-562))) (-4 *3 (-1044)) (-5 *1 (-99 *3))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-99 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-99 *3)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-237 *3 *2)) (-4 *2 (-1207)) (-4 *2 (-1044))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-857))))
+ ((*1 *1 *1) (-5 *1 (-857)))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-938 (-224))) (-5 *2 (-224)) (-5 *1 (-1203))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-1044)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-528))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-575))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-856)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-766)) (-5 *2 (-639 (-1168))) (-5 *1 (-209))
+ (-5 *3 (-1168))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-315 (-224))) (-5 *4 (-766)) (-5 *2 (-639 (-1168)))
+ (-5 *1 (-266))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171))
+ (-5 *2 (-639 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 *3)) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845))
+ (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916))))
+ ((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-666 *3)) (-4 *3 (-845))))
+ ((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-671 *3)) (-4 *3 (-845))))
+ ((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-814 *3)) (-4 *3 (-845))))
+ ((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-888 *3)) (-4 *3 (-845))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
+ (-5 *2 (-639 *3)))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
+ (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224)))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-84 FCNF))))
+ (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-744)))))
(((*1 *2 *2)
(-12 (-5 *2 (-639 (-947 *3))) (-4 *3 (-451)) (-5 *1 (-359 *3 *4))
(-14 *4 (-639 (-1168)))))
@@ -9364,6 +9062,73 @@
((*1 *2 *2)
(-12 (-5 *2 (-639 (-775 *3 (-859 *4)))) (-4 *3 (-451))
(-14 *4 (-639 (-1168))) (-5 *1 (-624 *3 *4)))))
+(((*1 *2)
+ (-12 (-5 *2 (-683 (-905 *3))) (-5 *1 (-350 *3 *4)) (-14 *3 (-916))
+ (-14 *4 (-916))))
+ ((*1 *2)
+ (-12 (-5 *2 (-683 *3)) (-5 *1 (-351 *3 *4)) (-4 *3 (-348))
+ (-14 *4
+ (-3 (-1164 *3)
+ (-1256 (-639 (-2 (|:| -2533 *3) (|:| -2464 (-1112)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-683 *3)) (-5 *1 (-352 *3 *4)) (-4 *3 (-348))
+ (-14 *4 (-916)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
+ (-4 *3 (-1058 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-639 *4))
+ (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))))
+ (-5 *1 (-1062 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-639 *4))
+ (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))))
+ (-5 *1 (-1062 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-766)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
+ (-4 *3 (-1058 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-639 *4))
+ (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))))
+ (-5 *1 (-1137 *6 *7 *8 *3 *4)) (-4 *4 (-1101 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-639 *4))
+ (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))))
+ (-5 *1 (-1137 *5 *6 *7 *3 *4)) (-4 *4 (-1101 *5 *6 *7 *3)))))
+(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-751)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-217))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-438))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-833))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1110)) (-5 *1 (-1107))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-639 (-1173))) (-5 *3 (-1173)) (-5 *1 (-1110)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1232 *5))
+ (-4 *5 (-13 (-27) (-429 *4)))
+ (-4 *4 (-13 (-845) (-554) (-1033 (-562))))
+ (-4 *7 (-1232 (-406 *6))) (-5 *1 (-550 *4 *5 *6 *7 *2))
+ (-4 *2 (-341 *5 *6 *7)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044))
+ (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451))
+ (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1041 *5 *6)))
+ (-5 *1 (-624 *5 *6)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1254 *3)) (-4 *3 (-1207)) (-4 *3 (-1044))
+ (-5 *2 (-683 *3)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-742)))))
(((*1 *2 *3 *3)
(-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
(-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
@@ -9372,19 +9137,42 @@
(-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
(-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
(-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1030)) (-5 *1 (-304))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-1030))) (-5 *2 (-1030)) (-5 *1 (-304))))
- ((*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-645 *3)) (-4 *3 (-1207))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-645 *2)) (-4 *2 (-1207))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-645 *2)) (-4 *2 (-1207))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-645 *2)) (-4 *2 (-1207))))
- ((*1 *1 *1 *1) (-5 *1 (-1056)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1148 (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1145 *4))
- (-4 *4 (-1207))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-639 (-683 *4))) (-5 *2 (-683 *4)) (-4 *4 (-1044))
+ (-5 *1 (-1024 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1156 3 *3)) (-4 *3 (-1044)) (-4 *1 (-1126 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-52)) (-5 *1 (-1185)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787))
+ (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092))
+ (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-1044))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-554)) (-5 *2 (-112)) (-5 *1 (-619 *3 *4))
+ (-4 *4 (-1232 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044))
+ (-4 *4 (-721))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362))
+ (-5 *2 (-2 (|:| -2929 (-406 *6)) (|:| |coeff| (-406 *6))))
+ (-5 *1 (-572 *5 *6)) (-5 *3 (-406 *6)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1131))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044))
(-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))))
@@ -9397,17 +9185,116 @@
((*1 *2 *3 *1)
(-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788))
(-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-639
+ (-2 (|:| -2172 (-766))
+ (|:| |eqns|
+ (-639
+ (-2 (|:| |det| *7) (|:| |rows| (-639 (-562)))
+ (|:| |cols| (-639 (-562))))))
+ (|:| |fgb| (-639 *7)))))
+ (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146)))
+ (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-766))
+ (-5 *1 (-919 *4 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
+ (-4 *4 (-1092)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-554)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-4 *1 (-322 *4 *2)) (-4 *4 (-1092))
+ (-4 *2 (-130)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-861 *4 *5 *6 *7))
+ (-4 *4 (-1044)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 *3))
+ (-14 *7 *3)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-766)) (-4 *4 (-1044)) (-4 *5 (-845)) (-4 *6 (-788))
+ (-14 *8 (-639 *5)) (-5 *2 (-1261))
+ (-5 *1 (-1268 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-944 *4 *6 *5))
+ (-14 *9 (-639 *3)) (-14 *10 *3))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-900 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-306)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4))
+ (-5 *2
+ (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
+ (-5 *1 (-1116 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))))
+(((*1 *2 *1)
+ (-12 (-4 *4 (-1092)) (-5 *2 (-884 *3 *5)) (-5 *1 (-880 *3 *4 *5))
+ (-4 *3 (-1092)) (-4 *5 (-660 *4)))))
+(((*1 *1) (-5 *1 (-156)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))))
(((*1 *1 *1)
(-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1044)) (-14 *3 (-639 (-1168)))))
((*1 *1 *1)
(-12 (-5 *1 (-222 *2 *3)) (-4 *2 (-13 (-1044) (-845)))
(-14 *3 (-639 (-1168))))))
(((*1 *2 *1)
+ (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
+ (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))))
+(((*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-766)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))))
+(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378))))
+ ((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-378)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-639 *3))
+ (-4 *3 (-13 (-27) (-1192) (-429 *6)))
+ (-4 *6 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-555 *6 *3)))))
+(((*1 *2 *1)
(-12 (-4 *1 (-1064 *3 *4 *5 *6)) (-4 *3 (-451)) (-4 *4 (-788))
(-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112))))
((*1 *2 *3 *1)
(-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788))
(-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-156)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1044)) (-4 *3 (-845))
+ (-5 *2 (-2 (|:| |val| *1) (|:| -1300 (-562)))) (-4 *1 (-429 *3))))
+ ((*1 *2 *1)
+ (|partial| -12
+ (-5 *2 (-2 (|:| |val| (-887 *3)) (|:| -1300 (-887 *3))))
+ (-5 *1 (-887 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044))
+ (-4 *7 (-944 *6 *4 *5))
+ (-5 *2 (-2 (|:| |val| *3) (|:| -1300 (-562))))
+ (-5 *1 (-945 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-362)
+ (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $))
+ (-15 -4079 (*7 $))))))))
+(((*1 *1 *1) (-12 (-5 *1 (-417 *2)) (-4 *2 (-554)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-1077))) (-5 *1 (-290)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-608 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4)))
+ (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-276 *4 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4))
+ (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-683 *3))
+ (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $)))))
+ (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1092)) (-5 *1 (-959 *3 *2)) (-4 *3 (-1092)))))
(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
(-12 (-5 *4 (-562)) (-5 *5 (-1150)) (-5 *6 (-683 (-224)))
(-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))))
@@ -9415,16 +9302,211 @@
(-5 *9 (-3 (|:| |fn| (-387)) (|:| |fp| (-71 PEDERV))))
(-5 *10 (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))
(-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))))
+(((*1 *2 *3 *4 *5 *4 *4 *4)
+ (-12 (-4 *6 (-845)) (-5 *3 (-639 *6)) (-5 *5 (-639 *3))
+ (-5 *2
+ (-2 (|:| |f1| *3) (|:| |f2| (-639 *5)) (|:| |f3| *5)
+ (|:| |f4| (-639 *5))))
+ (-5 *1 (-1178 *6)) (-5 *4 (-639 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-639 (-1229 *5 *4)))
+ (-5 *1 (-1106 *4 *5)) (-5 *3 (-1229 *5 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-562)))) (-4 *5 (-1232 *4))
+ (-5 *2 (-2 (|:| |ans| (-406 *5)) (|:| |nosol| (-112))))
+ (-5 *1 (-1010 *4 *5)) (-5 *3 (-406 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-639 (-947 *4))) (-5 *3 (-639 (-1168))) (-4 *4 (-451))
+ (-5 *1 (-913 *4)))))
+(((*1 *1) (-5 *1 (-112))) ((*1 *1) (-5 *1 (-613))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-960))) (-5 *1 (-109)))))
(((*1 *2)
(-12 (-4 *3 (-1044)) (-5 *2 (-953 (-707 *3 *4))) (-5 *1 (-707 *3 *4))
(-4 *4 (-1232 *3)))))
(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-191))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-299))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-224))) (-5 *2 (-639 (-1150))) (-5 *1 (-304)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-577)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1044)) (-4 *7 (-1044))
+ (-4 *6 (-1232 *5)) (-5 *2 (-1164 (-1164 *7)))
+ (-5 *1 (-500 *5 *6 *4 *7)) (-4 *4 (-1232 *6)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-639 (-406 (-947 *6))))
+ (-5 *3 (-406 (-947 *6)))
+ (-4 *6 (-13 (-554) (-1033 (-562)) (-146)))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-568 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-833))) (-5 *1 (-139)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *1) (-4 *1 (-348)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 *5)) (-4 *5 (-429 *4))
+ (-4 *4 (-13 (-554) (-845) (-146)))
+ (-5 *2
+ (-2 (|:| |primelt| *5) (|:| |poly| (-639 (-1164 *5)))
+ (|:| |prim| (-1164 *5))))
+ (-5 *1 (-431 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-554) (-845) (-146)))
+ (-5 *2
+ (-2 (|:| |primelt| *3) (|:| |pol1| (-1164 *3))
+ (|:| |pol2| (-1164 *3)) (|:| |prim| (-1164 *3))))
+ (-5 *1 (-431 *4 *3)) (-4 *3 (-27)) (-4 *3 (-429 *4))))
+ ((*1 *2 *3 *4 *3 *4)
+ (-12 (-5 *3 (-947 *5)) (-5 *4 (-1168)) (-4 *5 (-13 (-362) (-146)))
+ (-5 *2
+ (-2 (|:| |coef1| (-562)) (|:| |coef2| (-562))
+ (|:| |prim| (-1164 *5))))
+ (-5 *1 (-955 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-639 (-1168)))
+ (-4 *5 (-13 (-362) (-146)))
+ (-5 *2
+ (-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 *5)))
+ (|:| |prim| (-1164 *5))))
+ (-5 *1 (-955 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-639 (-947 *6))) (-5 *4 (-639 (-1168))) (-5 *5 (-1168))
+ (-4 *6 (-13 (-362) (-146)))
+ (-5 *2
+ (-2 (|:| -4221 (-639 (-562))) (|:| |poly| (-639 (-1164 *6)))
+ (|:| |prim| (-1164 *6))))
+ (-5 *1 (-955 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-52)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *5 *6)) (-4 *6 (-610 (-1168)))
+ (-4 *4 (-362)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-5 *2 (-1157 (-639 (-947 *4)) (-639 (-293 (-947 *4)))))
+ (-5 *1 (-503 *4 *5 *6 *7)))))
+(((*1 *2 *3)
(-12 (-4 *4 (-1044)) (-5 *2 (-562)) (-5 *1 (-442 *4 *3 *5))
(-4 *3 (-1232 *4))
(-4 *5 (-13 (-403) (-1033 *4) (-362) (-1192) (-283))))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1256 (-639 *3))) (-4 *4 (-306))
+ (-5 *2 (-639 *3)) (-5 *1 (-454 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *1 *1 *1) (|partial| -4 *1 (-130))))
+(((*1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1259))))
+ ((*1 *2 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1259)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1202 *3)) (-4 *3 (-969)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1056)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-224)) (-5 *1 (-30))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-417 *4) *4)) (-4 *4 (-554)) (-5 *2 (-417 *4))
+ (-5 *1 (-418 *4))))
+ ((*1 *1 *1) (-5 *1 (-921)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921))))
+ ((*1 *1 *1) (-5 *1 (-922)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))
+ (-5 *4 (-406 (-562))) (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562)))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))
+ (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562)))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))
+ (-5 *4 (-406 (-562))) (-5 *1 (-1016 *3)) (-4 *3 (-1232 *4))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))
+ (-5 *1 (-1016 *3)) (-4 *3 (-1232 (-406 (-562))))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3))
+ (-4 *3 (-1232 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1202 *3)) (-4 *3 (-969)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1113 *2)) (-4 *2 (-1207)))))
(((*1 *2 *1 *3 *4)
(-12 (-5 *3 (-1150)) (-5 *4 (-1112)) (-5 *2 (-112)) (-5 *1 (-816)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329))
+ (-5 *1 (-331)))))
+(((*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-224)) (-5 *1 (-304)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2))
+ (-4 *4 (-13 (-845) (-554))))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
+(((*1 *1) (-5 *1 (-140))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1030)) (-5 *1 (-304))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-1030))) (-5 *2 (-1030)) (-5 *1 (-304))))
+ ((*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-645 *3)) (-4 *3 (-1207))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-645 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-645 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-645 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *1 *1) (-5 *1 (-1056)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1148 (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1145 *4))
+ (-4 *4 (-1207))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *2 *1) (|partial| -12 (-5 *1 (-364 *2)) (-4 *2 (-1092))))
+ ((*1 *2 *1) (|partial| -12 (-5 *2 (-1150)) (-5 *1 (-1188)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-426 *3 *2)) (-4 *3 (-13 (-171) (-38 (-406 (-562)))))
+ (-4 *2 (-13 (-845) (-21))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))))
(((*1 *1) (-5 *1 (-143))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *2 *1) (-12 (-4 *1 (-184)) (-5 *2 (-639 (-112))))))
+(((*1 *1) (-5 *1 (-436))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *5 (-608 *4)) (-5 *6 (-1164 *4))
+ (-4 *4 (-13 (-429 *7) (-27) (-1192)))
+ (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4))))
+ (-5 *1 (-558 *7 *4 *3)) (-4 *3 (-650 *4)) (-4 *3 (-1092))))
+ ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
+ (-12 (-5 *5 (-608 *4)) (-5 *6 (-406 (-1164 *4)))
+ (-4 *4 (-13 (-429 *7) (-27) (-1192)))
+ (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4))))
+ (-5 *1 (-558 *7 *4 *3)) (-4 *3 (-650 *4)) (-4 *3 (-1092)))))
+(((*1 *1 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)) (-4 *2 (-1053))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168)))
+ (-14 *3 (-639 (-1168))) (-4 *4 (-386))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)) (-4 *2 (-1053))))
+ ((*1 *1 *1) (-4 *1 (-843)))
+ ((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)) (-4 *2 (-1053))))
+ ((*1 *1 *1) (-4 *1 (-1053))) ((*1 *1 *1) (-4 *1 (-1131))))
+(((*1 *1 *1) (-5 *1 (-1056))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-360 (-114))) (-4 *2 (-1044)) (-5 *1 (-709 *2 *4))
+ (-4 *4 (-642 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-360 (-114))) (-5 *1 (-831 *2)) (-4 *2 (-1044)))))
+(((*1 *1 *1) (-5 *1 (-535))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-938 *5)) (-4 *5 (-1044)) (-5 *2 (-766))
(-5 *1 (-1156 *4 *5)) (-14 *4 (-916))))
@@ -9434,172 +9516,250 @@
((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-639 (-766))) (-5 *3 (-938 *5)) (-4 *5 (-1044))
(-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-315 (-224)))) (-5 *4 (-766))
- (-5 *2 (-683 (-224))) (-5 *1 (-266)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 (-562)))
- (-5 *2 (-1256 (-406 (-562)))) (-5 *1 (-1283 *4)))))
-(((*1 *1 *1) (-5 *1 (-535))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-857))) ((*1 *1 *1 *1) (-5 *1 (-857)))
- ((*1 *1 *1) (-5 *1 (-857))))
-(((*1 *2)
- (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5)))
- (-5 *2 (-639 (-639 *4))) (-5 *1 (-340 *3 *4 *5 *6))
- (-4 *3 (-341 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-4 *3 (-367)) (-5 *2 (-639 (-639 *3))))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-766)) (-4 *5 (-362)) (-5 *2 (-173 *6))
+ (-5 *1 (-862 *5 *4 *6)) (-4 *4 (-1247 *5)) (-4 *6 (-1232 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-5 *1 (-900 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1148 (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1152 *4))
- (-4 *4 (-1044)))))
-(((*1 *2 *2) (-12 (-5 *1 (-956 *2)) (-4 *2 (-544)))))
+ (-12 (-5 *3 (-293 (-947 (-562))))
+ (-5 *2
+ (-2 (|:| |varOrder| (-639 (-1168)))
+ (|:| |inhom| (-3 (-639 (-1256 (-766))) "failed"))
+ (|:| |hom| (-639 (-1256 (-766))))))
+ (-5 *1 (-235)))))
+(((*1 *2 *2 *2 *2 *3)
+ (-12 (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2))
- (-4 *4 (-13 (-845) (-554))))))
-(((*1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1185)))))
-(((*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258))))
- ((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-575))))
- ((*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-575)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (-5 *2 (-1148 (-224))) (-5 *1 (-191))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-315 (-224))) (-5 *4 (-639 (-1168)))
+ (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-299))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *4 (-639 (-1168)))
+ (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-299)))))
+(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1171))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171))))
+ ((*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))))
+(((*1 *1 *1 *1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-554)))))
(((*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-301))))
((*1 *1 *1) (-4 *1 (-301))) ((*1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-916)) (-5 *1 (-781)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-683 (-315 (-224))))
+ (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4))
(-5 *2
- (-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))))
- (-5 *1 (-204)))))
-(((*1 *1 *1) (-4 *1 (-1136))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-1164 (-947 *4))) (-5 *1 (-415 *3 *4))
- (-4 *3 (-416 *4))))
+ (-3 (|:| |overq| (-1164 (-406 (-562))))
+ (|:| |overan| (-1164 (-48))) (|:| -4254 (-112))))
+ (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-315 (-224)))) (-5 *4 (-766))
+ (-5 *2 (-683 (-224))) (-5 *1 (-266)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-845)) (-5 *1 (-1178 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *4 (-1092)) (-5 *2 (-884 *3 *4)) (-5 *1 (-880 *3 *4 *5))
+ (-4 *3 (-1092)) (-4 *5 (-660 *4)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-683 (-562))) (-5 *3 (-639 (-562))) (-5 *1 (-1102)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-182))) (-5 *1 (-139)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562)))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *2) (-12 (-4 *2 (-171)) (-5 *1 (-164 *3 *2)) (-4 *3 (-165 *2))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *2 *4)) (-4 *4 (-1232 *2))
+ (-4 *2 (-171))))
((*1 *2)
- (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-4 *3 (-362))
- (-5 *2 (-1164 (-947 *3)))))
+ (-12 (-4 *4 (-1232 *2)) (-4 *2 (-171)) (-5 *1 (-407 *3 *2 *4))
+ (-4 *3 (-408 *2 *4))))
+ ((*1 *2) (-12 (-4 *1 (-408 *2 *3)) (-4 *3 (-1232 *2)) (-4 *2 (-171))))
((*1 *2)
- (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-12 (-4 *3 (-1232 *2)) (-5 *2 (-562)) (-5 *1 (-763 *3 *4))
+ (-4 *4 (-408 *2 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845)) (-4 *3 (-171))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-554)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-171)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-363 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092))
+ (-5 *2 (-1150)))))
+(((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-695))))
+ ((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-695)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 (-562)))
+ (-5 *2 (-1256 (-406 (-562)))) (-5 *1 (-1283 *4)))))
+(((*1 *1 *1 *1) (-5 *1 (-161)))
+ ((*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-161)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-944 *3 *5 *4)) (-5 *1 (-982 *3 *4 *5 *2))
+ (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
(-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
(-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-436)) (-5 *1 (-1172)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-451))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1164 *6)) (-4 *6 (-944 *5 *3 *4)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *5 (-904)) (-5 *1 (-456 *3 *4 *5 *6))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-904)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-535)))))
-(((*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-156))))
- ((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-182))) (-5 *1 (-139)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-1113 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-216))))
- ((*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-486))))
- ((*1 *1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-306))))
+(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
+ (-12 (-5 *3 (-916)) (-5 *4 (-224)) (-5 *5 (-562)) (-5 *6 (-869))
+ (-5 *2 (-1261)) (-5 *1 (-1257)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *2 (-562))))
((*1 *2 *1)
- (-12 (-5 *2 (-406 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562))))
- ((*1 *1 *1) (-4 *1 (-1053))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-916)) (-5 *1 (-1027 *2))
- (-4 *2 (-13 (-1092) (-10 -8 (-15 * ($ $ $))))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-583 *2)) (-4 *2 (-13 (-29 *4) (-1192)))
- (-5 *1 (-581 *4 *2))
- (-4 *4 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-583 (-406 (-947 *4))))
- (-4 *4 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))))
- (-5 *2 (-315 *4)) (-5 *1 (-586 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-1173))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-1173))) (-5 *1 (-1173)))))
+ (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
+ (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-536 *3 *2))
- (-4 *2 (-1247 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-4 *4 (-1232 *3))
- (-4 *5 (-719 *3 *4)) (-5 *1 (-540 *3 *4 *5 *2)) (-4 *2 (-1247 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-5 *1 (-541 *3 *2))
- (-4 *2 (-1247 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-13 (-554) (-146)))
- (-5 *1 (-1144 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-921)))))
+ (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
+ (-5 *1 (-175 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-904)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-417 (-1164 *7)))
- (-5 *1 (-901 *4 *5 *6 *7)) (-5 *3 (-1164 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-904)) (-4 *5 (-1232 *4)) (-5 *2 (-417 (-1164 *5)))
- (-5 *1 (-902 *4 *5)) (-5 *3 (-1164 *5)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-362)) (-5 *1 (-1020 *3 *2)) (-4 *2 (-650 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-362)) (-5 *2 (-2 (|:| -3342 *3) (|:| -2431 (-639 *5))))
- (-5 *1 (-1020 *5 *3)) (-5 *4 (-639 *5)) (-4 *3 (-650 *5)))))
+ (-12 (-5 *2 (-1148 (-562))) (-5 *1 (-1152 *4)) (-4 *4 (-1044))
+ (-5 *3 (-562)))))
(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-754)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-117 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-562))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-866 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-12 (-5 *1 (-866 *2)) (-14 *2 (-562))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-562)) (-14 *3 *2) (-5 *1 (-867 *3 *4))
- (-4 *4 (-864 *3))))
- ((*1 *1 *1)
- (-12 (-14 *2 (-562)) (-5 *1 (-867 *2 *3)) (-4 *3 (-864 *2))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-562)) (-4 *1 (-1218 *3 *4)) (-4 *3 (-1044))
- (-4 *4 (-1247 *3))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1218 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-1247 *2)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1092)) (-5 *2 (-112)) (-5 *1 (-880 *3 *4 *5))
- (-4 *3 (-1092)) (-4 *5 (-660 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-884 *3 *4)) (-4 *3 (-1092))
- (-4 *4 (-1092)))))
-(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-182))) (-5 *1 (-139)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1207)) (-5 *2 (-639 *1)) (-4 *1 (-1005 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-639 (-766)))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-857))) ((*1 *1 *1 *1) (-5 *1 (-857)))
+ ((*1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
+ (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *6 (-224))
+ (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-746)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-224) (-224) (-224)))
+ (-5 *4 (-3 (-1 (-224) (-224) (-224) (-224)) "undefined"))
+ (-5 *5 (-1086 (-224))) (-5 *6 (-639 (-262))) (-5 *2 (-1125 (-224)))
+ (-5 *1 (-691)))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-451))
+ (-5 *2
+ (-639
+ (-2 (|:| |eigval| (-3 (-406 (-947 *4)) (-1157 (-1168) (-947 *4))))
+ (|:| |geneigvec| (-639 (-683 (-406 (-947 *4))))))))
+ (-5 *1 (-291 *4)) (-5 *3 (-683 (-406 (-947 *4)))))))
(((*1 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-329))))
((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-329)))))
-(((*1 *2 *3) (-12 (-5 *3 (-168 (-562))) (-5 *2 (-112)) (-5 *1 (-445))))
- ((*1 *2 *3)
- (-12
- (-5 *3
- (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4)
- (-246 *4 (-406 (-562)))))
- (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-112))
- (-5 *1 (-504 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-956 *3)) (-4 *3 (-544))))
- ((*1 *2 *1) (-12 (-4 *1 (-1211)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1207)) (-4 *3 (-372 *2))
- (-4 *4 (-372 *2))))
- ((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-600 *3 *2)) (-4 *3 (-1092))
- (-4 *2 (-1207)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *1) (-5 *1 (-1077))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-222 *2 *3)) (-4 *2 (-13 (-1044) (-845)))
+ (-14 *3 (-639 (-1168))))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4403)) (-4 *1 (-600 *4 *3)) (-4 *4 (-1092))
+ (-4 *3 (-1207)) (-4 *3 (-1092)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562))))
+ (-5 *4 (-315 (-168 (-378)))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562))))
+ (-5 *4 (-315 (-378))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562))))
+ (-5 *4 (-315 (-562))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-168 (-378)))))
+ (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-378)))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-562)))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-168 (-378)))))
+ (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-378)))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-562)))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-168 (-378)))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-378))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-562))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562))))
+ (-5 *4 (-315 (-688))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562))))
+ (-5 *4 (-315 (-693))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562))))
+ (-5 *4 (-315 (-695))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-688)))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-693)))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-695)))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-688)))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-693)))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-695)))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-688))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-693))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-695))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-688))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-693))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-695))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-688))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-693))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-695))) (-5 *1 (-329))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1150)) (-5 *1 (-329))))
+ ((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *2)
+ (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5)))
+ (-5 *2 (-639 (-639 *4))) (-5 *1 (-340 *3 *4 *5 *6))
+ (-4 *3 (-341 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-4 *3 (-367)) (-5 *2 (-639 (-639 *3))))))
+(((*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-3 (-2 (|:| -2929 *7) (|:| |coeff| *7)) "failed") *7))
+ (-5 *6 (-639 (-406 *8))) (-4 *7 (-362)) (-4 *8 (-1232 *7))
+ (-5 *3 (-406 *8))
+ (-5 *2
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-572 *7 *8)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-916)) (-5 *2 (-1164 *3)) (-5 *1 (-1181 *3))
- (-4 *3 (-362)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-972 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-4 *2 (-1232 *4)) (-5 *1 (-804 *4 *2 *3 *5))
- (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *3 (-650 *2))
- (-4 *5 (-650 (-406 *2))))))
+ (-12 (-5 *4 (-1168))
+ (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2 (-583 *3)) (-5 *1 (-425 *5 *3))
+ (-4 *3 (-13 (-1192) (-29 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1168)) (-4 *5 (-13 (-554) (-1033 (-562)) (-146)))
+ (-5 *2 (-583 (-406 (-947 *5)))) (-5 *1 (-568 *5))
+ (-5 *3 (-406 (-947 *5))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1148 *2)) (-4 *2 (-306)) (-5 *1 (-173 *2)))))
(((*1 *2 *1)
(-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3))
(-4 *5 (-372 *3)) (-5 *2 (-766))))
@@ -9607,79 +9767,62 @@
(-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
(-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-766)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788))
- (-4 *7 (-845)) (-4 *8 (-1058 *5 *6 *7)) (-5 *2 (-639 *3))
- (-5 *1 (-588 *5 *6 *7 *8 *3)) (-4 *3 (-1101 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146)))
- (-5 *2
- (-639 (-2 (|:| -1646 (-1164 *5)) (|:| -3593 (-639 (-947 *5))))))
- (-5 *1 (-1070 *5 *6)) (-5 *3 (-639 (-947 *5)))
- (-14 *6 (-639 (-1168)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-306) (-146)))
- (-5 *2
- (-639 (-2 (|:| -1646 (-1164 *4)) (|:| -3593 (-639 (-947 *4))))))
- (-5 *1 (-1070 *4 *5)) (-5 *3 (-639 (-947 *4)))
- (-14 *5 (-639 (-1168)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146)))
- (-5 *2
- (-639 (-2 (|:| -1646 (-1164 *5)) (|:| -3593 (-639 (-947 *5))))))
- (-5 *1 (-1070 *5 *6)) (-5 *3 (-639 (-947 *5)))
- (-14 *6 (-639 (-1168))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554))
- (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-2 (|:| |goodPols| (-639 *8)) (|:| |badPols| (-639 *8))))
- (-5 *1 (-972 *5 *6 *7 *8)) (-5 *4 (-639 *8)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-947 (-224))) (-5 *2 (-315 (-378))) (-5 *1 (-304)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1247 *4))
- (-4 *4 (-38 (-406 (-562))))
- (-5 *2 (-1 (-1148 *4) (-1148 *4) (-1148 *4))) (-5 *1 (-1249 *4 *5)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-362)) (-4 *3 (-1044))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3148 *1)))
- (-4 *1 (-847 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1044)) (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)))))
+ (-12 (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4)))
+ (-5 *2 (-1256 *6)) (-5 *1 (-335 *3 *4 *5 *6))
+ (-4 *6 (-341 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1164 *7)) (-5 *3 (-562)) (-4 *7 (-944 *6 *4 *5))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044))
+ (-5 *1 (-320 *4 *5 *6 *7)))))
+(((*1 *2) (-12 (-5 *2 (-1139 (-1150))) (-5 *1 (-390)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-348)) (-4 *5 (-328 *4)) (-4 *6 (-1232 *5))
- (-5 *2 (-639 *3)) (-5 *1 (-772 *4 *5 *6 *3 *7)) (-4 *3 (-1232 *6))
- (-14 *7 (-916)))))
+ (-12 (-5 *3 (-1148 (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1152 *4))
+ (-4 *4 (-1044)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4))
+ (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))))
+ (-12 (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211))
+ (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-1023 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-639 (-683 *3))) (-4 *3 (-1044)) (-5 *1 (-1023 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-1023 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-639 (-683 *3))) (-4 *3 (-1044)) (-5 *1 (-1023 *3)))))
(((*1 *2 *1)
(-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3))
(-4 *5 (-372 *3)) (-5 *2 (-766))))
((*1 *2 *1)
(-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
(-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-766)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-451)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
-(((*1 *2)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))))
-(((*1 *1 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-1164 *3)) (-5 *1 (-41 *4 *3))
+ (-4 *3
+ (-13 (-362) (-301)
+ (-10 -8 (-15 -4063 ((-1117 *4 (-608 $)) $))
+ (-15 -4079 ((-1117 *4 (-608 $)) $))
+ (-15 -4053 ($ (-1117 *4 (-608 $))))))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-552 *3)) (-4 *3 (-13 (-403) (-1192))) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-843)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362)))
+ (-4 *3 (-1232 *4)) (-5 *2 (-112)))))
+(((*1 *1 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-1092)) (-4 *2 (-367)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-562)) (|has| *1 (-6 -4404)) (-4 *1 (-372 *3))
+ (-4 *3 (-1207)))))
(((*1 *2 *3)
(-12
(-5 *3
(-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
(|:| |relerr| (-224))))
(-5 *2
(-2
@@ -9697,7 +9840,7 @@
(-3 (|:| |str| (-1148 (-224)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -1590
+ (|:| -2147
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -9705,77 +9848,103 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-557)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
- (-5 *2 (-1030)) (-5 *1 (-748)))))
-(((*1 *2 *3 *4 *5 *5 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *3 (-947 *6)) (-5 *4 (-1168))
- (-5 *5 (-838 *7))
- (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-4 *7 (-13 (-1192) (-29 *6))) (-5 *1 (-223 *6 *7))))
- ((*1 *2 *3 *4 *4 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1164 *6)) (-5 *4 (-838 *6))
- (-4 *6 (-13 (-1192) (-29 *5)))
- (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-223 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1092))
- (-4 *6 (-1092)) (-5 *2 (-1 *6 *5)) (-5 *1 (-678 *4 *5 *6)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-426 *3 *2)) (-4 *3 (-13 (-171) (-38 (-406 (-562)))))
- (-4 *2 (-13 (-845) (-21))))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *2) (-12 (-5 *1 (-956 *2)) (-4 *2 (-544)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2))
+ (-4 *4 (-13 (-845) (-554))))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-52)) (-5 *1 (-887 *4))
+ (-4 *4 (-1092)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-554) (-845)))
+ (-4 *2 (-13 (-429 *4) (-997) (-1192))) (-5 *1 (-596 *4 *2 *3))
+ (-4 *3 (-13 (-429 (-168 *4)) (-997) (-1192))))))
+(((*1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-824)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-362)) (-4 *4 (-554)) (-4 *5 (-1232 *4))
+ (-5 *2 (-2 (|:| -3408 (-619 *4 *5)) (|:| -4374 (-406 *5))))
+ (-5 *1 (-619 *4 *5)) (-5 *3 (-406 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-1156 *3 *4))) (-5 *1 (-1156 *3 *4))
+ (-14 *3 (-916)) (-4 *4 (-1044))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-451)) (-4 *3 (-1044))
+ (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
+ (-4 *1 (-1232 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-916))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-171)) (-4 *2 (-23)) (-5 *1 (-288 *3 *4 *2 *5 *6 *7))
+ (-4 *4 (-1232 *3)) (-14 *5 (-1 *4 *4 *2))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2))
+ (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-23)) (-5 *1 (-706 *3 *2 *4 *5 *6)) (-4 *3 (-171))
+ (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2))
+ (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2))))
+ ((*1 *2)
+ (-12 (-4 *2 (-1232 *3)) (-5 *1 (-707 *3 *2)) (-4 *3 (-1044))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-23)) (-5 *1 (-710 *3 *2 *4 *5 *6)) (-4 *3 (-171))
+ (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2))
+ (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2))))
+ ((*1 *2) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1232 *2)) (-4 *2 (-1211)) (-5 *1 (-147 *2 *4 *3))
- (-4 *3 (-1232 (-406 *4))))))
-(((*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-274)))))
+ (-12 (-4 *4 (-554)) (-5 *2 (-953 *3)) (-5 *1 (-1155 *4 *3))
+ (-4 *3 (-1232 *4)))))
(((*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1150)))))
(((*1 *1) (-5 *1 (-329))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-406 (-562))) (-4 *1 (-552 *3))
- (-4 *3 (-13 (-403) (-1192)))))
- ((*1 *1 *2) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192)))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
+ (-5 *2 (-2 (|:| |k| (-814 *3)) (|:| |c| *4))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-953 (-1112)))
- (-5 *1 (-345 *4)))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *4 (-451)) (-4 *3 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
- (-5 *1 (-448 *4 *3 *5 *6)) (-4 *6 (-944 *4 *3 *5)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1232 *4)) (-4 *4 (-1211))
- (-4 *1 (-341 *4 *3 *5)) (-4 *5 (-1232 (-406 *3))))))
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2))
+ (-4 *4 (-13 (-845) (-554))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *7)) (-4 *7 (-845))
+ (-4 *8 (-944 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1256 (-406 *8)) "failed"))
+ (|:| -4291 (-639 (-1256 (-406 *8))))))
+ (-5 *1 (-663 *5 *6 *7 *8)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-224) (-224))) (-5 *1 (-317)) (-5 *3 (-224)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1005 *2)) (-4 *2 (-1207)))))
(((*1 *1 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-1207))))
((*1 *2 *2)
(-12 (-4 *3 (-1044)) (-5 *1 (-443 *3 *2)) (-4 *2 (-1232 *3))))
((*1 *1 *1)
(-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23))
(-14 *4 *3))))
-(((*1 *2)
- (|partial| -12 (-4 *4 (-1211)) (-4 *5 (-1232 (-406 *2)))
- (-4 *2 (-1232 *4)) (-5 *1 (-340 *3 *4 *2 *5))
- (-4 *3 (-341 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-341 *3 *2 *4)) (-4 *3 (-1211))
- (-4 *4 (-1232 (-406 *2))) (-4 *2 (-1232 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-362))
- (-5 *2 (-639 (-2 (|:| C (-683 *5)) (|:| |g| (-1256 *5)))))
- (-5 *1 (-973 *5)) (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207)) (-4 *2 (-845))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-281 *3)) (-4 *3 (-1207))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-845)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-131)) (-5 *1 (-1076 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-562) *2 *2)) (-4 *2 (-131)) (-5 *1 (-1076 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1094 *4)) (-4 *4 (-1092)) (-5 *2 (-1 *4))
+ (-5 *1 (-1012 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-378))) (-5 *1 (-1035)) (-5 *3 (-378))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1086 (-562))) (-5 *2 (-1 (-562))) (-5 *1 (-1042)))))
+(((*1 *1 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-372 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-554)) (-4 *2 (-1044))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-554))))
+ ((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *3 (-1058 *4 *5 *6))
+ (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *1))))
+ (-4 *1 (-1064 *4 *5 *6 *3)))))
(((*1 *2 *1 *2 *3)
(-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1150)) (-5 *1 (-1257))))
((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1257))))
@@ -9784,439 +9953,330 @@
(-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1150)) (-5 *1 (-1258))))
((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1258))))
((*1 *2 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1258)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-689 *3)) (-4 *3 (-1092))
- (-5 *2 (-639 (-2 (|:| -2694 *3) (|:| -1723 (-766))))))))
-(((*1 *2 *1) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-1164 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1185)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-1256 (-683 *4))) (-5 *1 (-90 *4 *5))
+ (-5 *3 (-683 *4)) (-4 *5 (-650 *4)))))
(((*1 *2 *1)
(-12 (-5 *2 (-1086 *3)) (-5 *1 (-1084 *3)) (-4 *3 (-1207))))
((*1 *1 *2 *2) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207))))
((*1 *1 *2) (-12 (-5 *1 (-1223 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1084 (-838 *3))) (-4 *3 (-13 (-1192) (-954) (-29 *5)))
- (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *2
- (-3 (|:| |f1| (-838 *3)) (|:| |f2| (-639 (-838 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-218 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1084 (-838 *3))) (-5 *5 (-1150))
- (-4 *3 (-13 (-1192) (-954) (-29 *6)))
- (-4 *6 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *2
- (-3 (|:| |f1| (-838 *3)) (|:| |f2| (-639 (-838 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-218 *6 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1084 (-838 (-315 *5))))
- (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *2
- (-3 (|:| |f1| (-838 (-315 *5))) (|:| |f2| (-639 (-838 (-315 *5))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-219 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-406 (-947 *6))) (-5 *4 (-1084 (-838 (-315 *6))))
- (-5 *5 (-1150))
- (-4 *6 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *2
- (-3 (|:| |f1| (-838 (-315 *6))) (|:| |f2| (-639 (-838 (-315 *6))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-219 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1084 (-838 (-406 (-947 *5))))) (-5 *3 (-406 (-947 *5)))
- (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-855)) (-5 *2 (-685 (-547))) (-5 *3 (-547)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |pde| (-639 (-315 (-224))))
+ (|:| |constraints|
+ (-639
+ (-2 (|:| |start| (-224)) (|:| |finish| (-224))
+ (|:| |grid| (-766)) (|:| |boundaryType| (-562))
+ (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224))))))
+ (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150))
+ (|:| |tol| (-224))))
+ (-5 *2 (-112)) (-5 *1 (-209)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-170)))))
+(((*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))))
+(((*1 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-129))))))
+(((*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258))))
+ ((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))))
+(((*1 *2 *1) (-12 (-4 *1 (-762 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))))
+(((*1 *1 *2) (-12 (-5 *2 (-814 *3)) (-4 *3 (-845)) (-5 *1 (-666 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-922))
(-5 *2
- (-3 (|:| |f1| (-838 (-315 *5))) (|:| |f2| (-639 (-838 (-315 *5))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-219 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1084 (-838 (-406 (-947 *6))))) (-5 *5 (-1150))
- (-5 *3 (-406 (-947 *6)))
- (-4 *6 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-2 (|:| |brans| (-639 (-639 (-938 (-224)))))
+ (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))))
+ (-5 *1 (-152))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-922)) (-5 *4 (-406 (-562)))
(-5 *2
- (-3 (|:| |f1| (-838 (-315 *6))) (|:| |f2| (-639 (-838 (-315 *6))))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-219 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168))
- (-4 *5 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *2 (-3 *3 (-639 *3))) (-5 *1 (-427 *5 *3))
- (-4 *3 (-13 (-1192) (-954) (-29 *5)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-473 *3 *4 *5))
- (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3)))
- ((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378))))
- (-5 *5 (-378)) (-5 *6 (-1056)) (-5 *2 (-1030)) (-5 *1 (-563))))
- ((*1 *2 *3) (-12 (-5 *3 (-764)) (-5 *2 (-1030)) (-5 *1 (-563))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378))))
- (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378))))
- (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-315 (-378))) (-5 *4 (-1086 (-838 (-378))))
- (-5 *2 (-1030)) (-5 *1 (-563))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378)))))
- (-5 *2 (-1030)) (-5 *1 (-563))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378)))))
- (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378)))))
- (-5 *5 (-378)) (-5 *2 (-1030)) (-5 *1 (-563))))
- ((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-315 (-378))) (-5 *4 (-639 (-1086 (-838 (-378)))))
- (-5 *5 (-378)) (-5 *6 (-1056)) (-5 *2 (-1030)) (-5 *1 (-563))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-315 (-378))) (-5 *4 (-1084 (-838 (-378))))
- (-5 *5 (-1150)) (-5 *2 (-1030)) (-5 *1 (-563))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-315 (-378))) (-5 *4 (-1084 (-838 (-378))))
- (-5 *5 (-1168)) (-5 *2 (-1030)) (-5 *1 (-563))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-562)))) (-4 *5 (-1232 *4))
- (-5 *2 (-583 (-406 *5))) (-5 *1 (-566 *4 *5)) (-5 *3 (-406 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-146))
- (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))))
- (-5 *2 (-3 (-315 *5) (-639 (-315 *5)))) (-5 *1 (-586 *5))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-735 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-845))
- (-4 *3 (-38 (-406 (-562))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1168)) (-5 *1 (-947 *3)) (-4 *3 (-38 (-406 (-562))))
- (-4 *3 (-1044))))
- ((*1 *1 *1 *2 *3)
- (-12 (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-4 *2 (-845))
- (-5 *1 (-1118 *3 *2 *4)) (-4 *4 (-944 *3 (-530 *2) *2))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044))
- (-5 *1 (-1152 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1159 *3 *4 *5))
- (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1165 *3 *4 *5))
- (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1166 *3 *4 *5))
- (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3)))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *1 (-1201 *3)) (-4 *3 (-38 (-406 (-562))))
- (-4 *3 (-1044))))
- ((*1 *1 *1 *2)
- (-4037
- (-12 (-5 *2 (-1168)) (-4 *1 (-1216 *3)) (-4 *3 (-1044))
- (-12 (-4 *3 (-29 (-562))) (-4 *3 (-954)) (-4 *3 (-1192))
- (-4 *3 (-38 (-406 (-562))))))
- (-12 (-5 *2 (-1168)) (-4 *1 (-1216 *3)) (-4 *3 (-1044))
- (-12 (|has| *3 (-15 -1402 ((-639 *2) *3)))
- (|has| *3 (-15 -2667 (*3 *3 *2))) (-4 *3 (-38 (-406 (-562))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1216 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1220 *3 *4 *5))
- (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562))))))
- ((*1 *1 *1 *2)
- (-4037
- (-12 (-5 *2 (-1168)) (-4 *1 (-1237 *3)) (-4 *3 (-1044))
- (-12 (-4 *3 (-29 (-562))) (-4 *3 (-954)) (-4 *3 (-1192))
- (-4 *3 (-38 (-406 (-562))))))
- (-12 (-5 *2 (-1168)) (-4 *1 (-1237 *3)) (-4 *3 (-1044))
- (-12 (|has| *3 (-15 -1402 ((-639 *2) *3)))
- (|has| *3 (-15 -2667 (*3 *3 *2))) (-4 *3 (-38 (-406 (-562))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1237 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1241 *3 *4 *5))
- (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-4037
- (-12 (-5 *2 (-1168)) (-4 *1 (-1247 *3)) (-4 *3 (-1044))
- (-12 (-4 *3 (-29 (-562))) (-4 *3 (-954)) (-4 *3 (-1192))
- (-4 *3 (-38 (-406 (-562))))))
- (-12 (-5 *2 (-1168)) (-4 *1 (-1247 *3)) (-4 *3 (-1044))
- (-12 (|has| *3 (-15 -1402 ((-639 *2) *3)))
- (|has| *3 (-15 -2667 (*3 *3 *2))) (-4 *3 (-38 (-406 (-562))))))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1247 *2)) (-4 *2 (-1044)) (-4 *2 (-38 (-406 (-562))))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1252 *4)) (-14 *4 (-1168)) (-5 *1 (-1248 *3 *4 *5))
- (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)) (-14 *5 *3))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-562)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-417 *2)) (-4 *2 (-554)))))
-(((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1035)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-746)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-647 (-406 *2))) (-4 *2 (-1232 *4)) (-5 *1 (-805 *4 *2))
- (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))))
+ (-2 (|:| |brans| (-639 (-639 (-938 (-224)))))
+ (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))))
+ (-5 *1 (-152))))
((*1 *2 *3)
- (-12 (-5 *3 (-648 *2 (-406 *2))) (-4 *2 (-1232 *4))
- (-5 *1 (-805 *4 *2))
- (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562))))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1256 *4)) (-4 *4 (-1044)) (-4 *2 (-1232 *4))
- (-5 *1 (-443 *4 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-406 (-1164 (-315 *5)))) (-5 *3 (-1256 (-315 *5)))
- (-5 *4 (-562)) (-4 *5 (-13 (-554) (-845))) (-5 *1 (-1122 *5)))))
-(((*1 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544))))
- ((*1 *1 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-966)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-562)) (-5 *1 (-240))))
+ (-12
+ (-5 *2
+ (-2 (|:| |brans| (-639 (-639 (-938 (-224)))))
+ (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))))
+ (-5 *1 (-152)) (-5 *3 (-639 (-938 (-224))))))
((*1 *2 *3)
- (-12 (-5 *3 (-639 (-1150))) (-5 *2 (-562)) (-5 *1 (-240)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+ (-12
+ (-5 *2
+ (-2 (|:| |brans| (-639 (-639 (-938 (-224)))))
+ (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))))
+ (-5 *1 (-152)) (-5 *3 (-639 (-639 (-938 (-224)))))))
+ ((*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-262)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 (-562)))))
+ (-5 *1 (-360 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 (-766)))))
+ (-5 *1 (-385 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-2 (|:| -1635 *3) (|:| -1300 (-562)))))
+ (-5 *1 (-417 *3)) (-4 *3 (-554))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 (-766)))))
+ (-5 *1 (-814 *3)) (-4 *3 (-845)))))
(((*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-819)) (-5 *3 (-639 (-1168))) (-5 *1 (-820)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-639 (-1164 *5))) (-5 *3 (-1164 *5))
+ (-4 *5 (-165 *4)) (-4 *4 (-544)) (-5 *1 (-148 *4 *5))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-639 *3)) (-4 *3 (-1232 *5))
+ (-4 *5 (-1232 *4)) (-4 *4 (-348)) (-5 *1 (-357 *4 *5 *3))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-639 (-1164 (-562)))) (-5 *3 (-1164 (-562)))
+ (-5 *1 (-570))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-639 (-1164 *1))) (-5 *3 (-1164 *1))
+ (-4 *1 (-904)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393))))
+ ((*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-938 *4)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
+ (-4 *4 (-1044)))))
(((*1 *1 *1 *1)
- (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2))
- (-4 *4 (-372 *2)))))
-(((*1 *1 *2) (-12 (-5 *2 (-182)) (-5 *1 (-247)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9))
- (-4 *9 (-1058 *6 *7 *8)) (-4 *6 (-554)) (-4 *7 (-788))
- (-4 *8 (-845)) (-5 *2 (-2 (|:| |bas| *1) (|:| -2775 (-639 *9))))
- (-5 *3 (-639 *9)) (-4 *1 (-1200 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-2 (|:| |bas| *1) (|:| -2775 (-639 *8))))
- (-5 *3 (-639 *8)) (-4 *1 (-1200 *5 *6 *7 *8)))))
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))))
(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1257))))
((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1258)))))
(((*1 *1) (-5 *1 (-1261))))
+(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-575))))
+ ((*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-575)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-417 *4)) (-4 *4 (-554)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-168 (-224)) (-168 (-224)))) (-5 *4 (-1086 (-224)))
+ (-5 *5 (-112)) (-5 *2 (-1258)) (-5 *1 (-256)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-916))
+ (-5 *2 (-1256 (-639 (-2 (|:| -2533 *4) (|:| -2464 (-1112))))))
+ (-5 *1 (-345 *4)) (-4 *4 (-348)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-788)) (-4 *4 (-845)) (-4 *6 (-306)) (-5 *2 (-417 *3))
- (-5 *1 (-737 *5 *4 *6 *3)) (-4 *3 (-944 *6 *5 *4)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
- (-5 *2
- (-2 (|:| -2534 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
- (|:| |success| (-112))))
- (-5 *1 (-784)) (-5 *5 (-562)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-528)))))
-(((*1 *1) (-5 *1 (-557))))
-(((*1 *1 *1) (-12 (-5 *1 (-173 *2)) (-4 *2 (-306)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
- (-5 *1 (-583 *3)) (-4 *3 (-362)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-5 *2 (-766)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-168 (-224))))
- (-5 *2 (-1030)) (-5 *1 (-749)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-857))))
- ((*1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-490)) (-5 *4 (-949)) (-5 *2 (-685 (-532)))
- (-5 *1 (-532))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-949)) (-4 *3 (-1092)) (-5 *2 (-685 *1))
- (-4 *1 (-762 *3)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)) (-4 *2 (-362))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-362)) (-5 *1 (-653 *4 *2))
- (-4 *2 (-650 *4)))))
+ (-12 (-5 *4 (-639 (-639 *8))) (-5 *3 (-639 *8))
+ (-4 *8 (-944 *5 *7 *6)) (-4 *5 (-13 (-306) (-146)))
+ (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-112))
+ (-5 *1 (-919 *5 *6 *7 *8)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
- (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4))))
- ((*1 *2 *3 *3 *3)
- (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
- (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-2 (|:| |totdeg| (-766)) (|:| -4380 *4))) (-5 *5 (-766))
- (-4 *4 (-944 *6 *7 *8)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
+ (-12 (-5 *3 (-639 (-1168))) (-4 *4 (-13 (-306) (-146)))
+ (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788))
+ (-5 *2 (-639 (-406 (-947 *4)))) (-5 *1 (-919 *4 *5 *6 *7))
+ (-4 *7 (-944 *4 *6 *5)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-1256 *5)) (-4 *5 (-635 *4)) (-4 *4 (-554))
+ (-5 *2 (-1256 *4)) (-5 *1 (-634 *4 *5)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1211)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4)))
+ (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $)))))
+ (-4 *4 (-1232 *3))
(-5 *2
- (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-5 *1 (-448 *6 *7 *8 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-256)))))
+ (-2 (|:| -4291 (-683 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-683 *3))))
+ (-5 *1 (-349 *3 *4 *5)) (-4 *5 (-408 *3 *4))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1232 (-562)))
+ (-5 *2
+ (-2 (|:| -4291 (-683 (-562))) (|:| |basisDen| (-562))
+ (|:| |basisInv| (-683 (-562)))))
+ (-5 *1 (-763 *3 *4)) (-4 *4 (-408 (-562) *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-348)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 *4))
+ (-5 *2
+ (-2 (|:| -4291 (-683 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-683 *4))))
+ (-5 *1 (-980 *3 *4 *5 *6)) (-4 *6 (-719 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-348)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 *4))
+ (-5 *2
+ (-2 (|:| -4291 (-683 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-683 *4))))
+ (-5 *1 (-1265 *3 *4 *5 *6)) (-4 *6 (-408 *4 *5)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-947 *4)) (-4 *4 (-1044)) (-4 *4 (-610 *2))
- (-5 *2 (-378)) (-5 *1 (-780 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-947 *5)) (-5 *4 (-916)) (-4 *5 (-1044))
- (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554))
- (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-916)) (-4 *5 (-554))
- (-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5))))
+ (-12 (-5 *3 (-683 (-315 (-224))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))))
+ (-5 *1 (-204)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-639 (-562))) (-5 *1 (-1102)) (-5 *3 (-562)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788))
+ (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))))
+(((*1 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-367)) (-4 *2 (-362))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-315 *4)) (-4 *4 (-554)) (-4 *4 (-845))
- (-4 *4 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554))
- (-4 *5 (-845)) (-4 *5 (-610 *2)) (-5 *2 (-378))
- (-5 *1 (-780 *5)))))
+ (-12 (-5 *3 (-916)) (-5 *2 (-1256 *4)) (-5 *1 (-527 *4))
+ (-4 *4 (-348)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *1 *1) (-4 *1 (-1136))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1164 *7))
- (-4 *5 (-1044)) (-4 *7 (-1044)) (-4 *2 (-1232 *5))
- (-5 *1 (-500 *5 *2 *6 *7)) (-4 *6 (-1232 *2)))))
-(((*1 *2 *2 *2)
- (-12
- (-5 *2
- (-639
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-766)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-788)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451)) (-4 *5 (-845))
- (-5 *1 (-448 *3 *4 *5 *6)))))
+ (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 (-1148 *7))) (-4 *6 (-845))
+ (-4 *7 (-944 *5 (-530 *6) *6)) (-4 *5 (-1044))
+ (-5 *2 (-1 (-1148 *7) *7)) (-5 *1 (-1118 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-947 *4)) (-4 *4 (-13 (-306) (-146)))
+ (-4 *2 (-944 *4 *6 *5)) (-5 *1 (-919 *4 *5 *6 *2))
+ (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)))))
+(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-766))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
- (-4 *4 (-1044)))))
+ (|partial| -12 (-5 *2 (-916)) (-5 *1 (-1093 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-922)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-1044)) (-5 *1 (-443 *3 *2)) (-4 *2 (-1232 *3)))))
(((*1 *2 *3)
- (-12
- (-5 *2
- (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))
- (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562)))))
+ (-12 (-5 *3 (-766)) (-5 *2 (-1164 *4)) (-5 *1 (-527 *4))
+ (-4 *4 (-348)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-1164 (-947 *4))) (-5 *1 (-415 *3 *4))
+ (-4 *3 (-416 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-4 *3 (-362))
+ (-5 *2 (-1164 (-947 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259))))
+ ((*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
+(((*1 *2 *1 *2) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))))
+(((*1 *1 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-921))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-921))))
+ ((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-922))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-938 (-224)) (-224))) (-5 *3 (-1086 (-224)))
+ (-5 *1 (-922)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-746)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-103 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *1 (-448 *3 *4 *5 *2)) (-4 *2 (-944 *3 *4 *5)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-436)) (-5 *1 (-1172)))))
+(((*1 *2)
+ (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1134 *3 *4)) (-14 *3 (-916)) (-4 *4 (-362))
+ (-5 *1 (-988 *3 *4)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-639 (-480 *4 *5))) (-5 *3 (-639 (-859 *4)))
+ (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *1 (-470 *4 *5 *6))
+ (-4 *6 (-451)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1164 *1)) (-5 *3 (-1168)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-947 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1168)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-845) (-554)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-845) (-554)))))
((*1 *2 *3 *4)
- (-12
+ (-12 (-5 *3 (-1164 *2)) (-5 *4 (-1168)) (-4 *2 (-429 *5))
+ (-5 *1 (-32 *5 *2)) (-4 *5 (-13 (-845) (-554)))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1164 *1)) (-5 *3 (-916)) (-4 *1 (-1007))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-1164 *1)) (-5 *3 (-916)) (-5 *4 (-857))
+ (-4 *1 (-1007))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *3 (-916)) (-4 *4 (-13 (-843) (-362)))
+ (-4 *1 (-1061 *4 *2)) (-4 *2 (-1232 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-378)) (-5 *1 (-1035)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $)))))
+ (-4 *4 (-1232 *3))
(-5 *2
- (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))
- (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562)))
- (-5 *4 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))))
- ((*1 *2 *3 *4)
- (-12
+ (-2 (|:| -4291 (-683 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-683 *3))))
+ (-5 *1 (-349 *3 *4 *5)) (-4 *5 (-408 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-562)) (-4 *4 (-1232 *3))
(-5 *2
- (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))
- (-5 *1 (-1015 *3)) (-4 *3 (-1232 (-562))) (-5 *4 (-406 (-562)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-406 (-562)))
- (-5 *2 (-639 (-2 (|:| -1588 *5) (|:| -1602 *5)))) (-5 *1 (-1015 *3))
- (-4 *3 (-1232 (-562))) (-5 *4 (-2 (|:| -1588 *5) (|:| -1602 *5)))))
+ (-2 (|:| -4291 (-683 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-683 *3))))
+ (-5 *1 (-763 *4 *5)) (-4 *5 (-408 *3 *4))))
((*1 *2 *3)
- (-12
+ (-12 (-4 *4 (-348)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 *3))
(-5 *2
- (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))
- (-5 *1 (-1016 *3)) (-4 *3 (-1232 (-406 (-562))))))
- ((*1 *2 *3 *4)
- (-12
+ (-2 (|:| -4291 (-683 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-683 *3))))
+ (-5 *1 (-980 *4 *3 *5 *6)) (-4 *6 (-719 *3 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-348)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 *3))
(-5 *2
- (-639 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562))))))
- (-5 *1 (-1016 *3)) (-4 *3 (-1232 (-406 (-562))))
- (-5 *4 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-406 (-562)))
- (-5 *2 (-639 (-2 (|:| -1588 *4) (|:| -1602 *4)))) (-5 *1 (-1016 *3))
- (-4 *3 (-1232 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-406 (-562)))
- (-5 *2 (-639 (-2 (|:| -1588 *5) (|:| -1602 *5)))) (-5 *1 (-1016 *3))
- (-4 *3 (-1232 *5)) (-5 *4 (-2 (|:| -1588 *5) (|:| -1602 *5))))))
-(((*1 *2 *2) (-12 (-5 *2 (-1086 (-838 (-224)))) (-5 *1 (-304)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2)
- (-12 (-4 *3 (-554)) (-5 *2 (-639 (-683 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-416 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *2)
+ (-2 (|:| -4291 (-683 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-683 *3))))
+ (-5 *1 (-1265 *4 *3 *5 *6)) (-4 *6 (-408 *3 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-834))
+ (-5 *3
+ (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224)))
+ (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224))))
+ (|:| |ub| (-639 (-838 (-224))))))
+ (-5 *2 (-1030))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-834))
+ (-5 *3
+ (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))
+ (-5 *2 (-1030)))))
+(((*1 *2 *1)
(-12
(-5 *2
- (-639
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-766)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-788)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451)) (-4 *5 (-845))
- (-5 *1 (-448 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1256 *6)) (-5 *4 (-1256 (-562))) (-5 *5 (-562))
- (-4 *6 (-1092)) (-5 *2 (-1 *6)) (-5 *1 (-1012 *6)))))
-(((*1 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-367)) (-4 *2 (-362)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845))
- (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-944 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1044)) (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1)))
- (-4 *1 (-1232 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554))
- (-5 *2 (-2 (|:| -4221 *4) (|:| -2097 *3) (|:| -2264 *3)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-1058 *3 *4 *5))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-554)) (-4 *3 (-1044))
- (-5 *2 (-2 (|:| -4221 *3) (|:| -2097 *1) (|:| -2264 *1)))
- (-4 *1 (-1232 *3)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1030))
- (-5 *1 (-741)))))
+ (-1256
+ (-2 (|:| |scaleX| (-224)) (|:| |scaleY| (-224))
+ (|:| |deltaX| (-224)) (|:| |deltaY| (-224)) (|:| -1358 (-562))
+ (|:| -2370 (-562)) (|:| |spline| (-562)) (|:| -2041 (-562))
+ (|:| |axesColor| (-869)) (|:| -3426 (-562))
+ (|:| |unitsColor| (-869)) (|:| |showing| (-562)))))
+ (-5 *1 (-1257)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044))
- (-5 *2 (-639 (-639 (-639 (-938 *3))))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-362))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
- (-4 *6 (-1058 *3 *4 *5)) (-5 *1 (-620 *3 *4 *5 *6 *7 *2))
- (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *2 (-1101 *3 *4 *5 *6)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1256 *3)) (-4 *3 (-1044)) (-5 *1 (-707 *3 *4))
- (-4 *4 (-1232 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-362) (-146) (-1033 (-562))))
- (-4 *5 (-1232 *4))
- (-5 *2 (-2 (|:| -3860 (-406 *5)) (|:| |coeff| (-406 *5))))
- (-5 *1 (-566 *4 *5)) (-5 *3 (-406 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1055))))
- ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1055)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
-(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-435)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1168)) (-4 *5 (-610 (-887 (-562))))
- (-4 *5 (-881 (-562)))
- (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562))))
- (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
- (-5 *1 (-565 *5 *3)) (-4 *3 (-625))
- (-4 *3 (-13 (-27) (-1192) (-429 *5))))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-91 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-562)) (-5 *2 (-639 (-2 (|:| -1635 *3) (|:| -3598 *4))))
- (-5 *1 (-690 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1229 *4 *5)) (-5 *3 (-639 *5)) (-14 *4 (-1168))
- (-4 *5 (-362)) (-5 *1 (-918 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 *5)) (-4 *5 (-362)) (-5 *2 (-1164 *5))
- (-5 *1 (-918 *4 *5)) (-14 *4 (-1168))))
- ((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-639 *6)) (-5 *4 (-766)) (-4 *6 (-362))
- (-5 *2 (-406 (-947 *6))) (-5 *1 (-1045 *5 *6)) (-14 *5 (-1168)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-306))
- (-5 *2 (-406 (-417 (-947 *4)))) (-5 *1 (-1037 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-315 (-224)))) (-5 *2 (-112)) (-5 *1 (-266))))
- ((*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-112)) (-5 *1 (-266))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-544))))
- ((*1 *1 *1) (-4 *1 (-1053))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+ (-12 (-5 *2 (-639 (-2 (|:| |k| (-1168)) (|:| |c| (-1278 *3)))))
+ (-5 *1 (-1278 *3)) (-4 *3 (-1044))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-2 (|:| |k| *3) (|:| |c| (-1280 *3 *4)))))
+ (-5 *1 (-1280 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-451))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1164 *6)) (-4 *6 (-944 *5 *3 *4)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *5 (-904)) (-5 *1 (-456 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-904)))))
(((*1 *2 *3 *2 *3)
(-12 (-5 *2 (-436)) (-5 *3 (-1168)) (-5 *1 (-1171))))
((*1 *2 *3 *2) (-12 (-5 *2 (-436)) (-5 *3 (-1168)) (-5 *1 (-1171))))
@@ -10229,52 +10289,68 @@
(-12 (-5 *2 (-436)) (-5 *3 (-1168)) (-5 *1 (-1172))))
((*1 *2 *3 *2 *1)
(-12 (-5 *2 (-436)) (-5 *3 (-639 (-1168))) (-5 *1 (-1172)))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1232 *6))
+ (-4 *6 (-13 (-362) (-146) (-1033 *4))) (-5 *4 (-562))
+ (-5 *2
+ (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112))))
+ (|:| -3339
+ (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
+ (|:| |beta| *3)))))
+ (-5 *1 (-1010 *6 *3)))))
+(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
+ (-12 (-5 *4 (-562))
+ (-5 *6
+ (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4336 (-378))))
+ (-5 *7 (-1 (-1261) (-1256 *5) (-1256 *5) (-378)))
+ (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261))
+ (-5 *1 (-783))))
+ ((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
+ (-12 (-5 *4 (-562))
+ (-5 *6
+ (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4336 (-378))))
+ (-5 *7 (-1 (-1261) (-1256 *5) (-1256 *5) (-378)))
+ (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261))
+ (-5 *1 (-783)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 (-766) *2)) (-5 *4 (-766)) (-4 *2 (-1092))
+ (-5 *1 (-672 *2))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1 *3 (-766) *3)) (-4 *3 (-1092)) (-5 *1 (-676 *3)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-190)) (-5 *3 (-562))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-778 *2)) (-4 *2 (-171))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))))
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1247 *4))
+ (-4 *4 (-38 (-406 (-562)))) (-5 *2 (-1 (-1148 *4) (-1148 *4)))
+ (-5 *1 (-1249 *4 *5)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-554) (-146))) (-5 *2 (-639 *3))
- (-5 *1 (-1226 *4 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-639 (-639 (-639 *5)))) (-5 *3 (-1 (-112) *5 *5))
- (-5 *4 (-639 *5)) (-4 *5 (-845)) (-5 *1 (-1178 *5)))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-746)))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-112))
- (-5 *2 (-1030)) (-5 *1 (-740)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 (-246 *5 *6))) (-4 *6 (-451))
- (-5 *2 (-246 *5 *6)) (-14 *5 (-639 (-1168))) (-5 *1 (-627 *5 *6)))))
+ (-12 (-5 *3 (-1168)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-696 *4 *5 *6 *7))
+ (-4 *4 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207))
+ (-4 *7 (-1207)))))
+(((*1 *2 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-559)) (-5 *3 (-562)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-204))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-639 (-378))) (-5 *2 (-378)) (-5 *1 (-204)))))
(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-240))))
((*1 *2 *3)
(-12 (-5 *3 (-639 (-1150))) (-5 *2 (-1261)) (-5 *1 (-240)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1261))
- (-5 *1 (-448 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-112)) (-5 *1 (-266)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1150)) (-5 *1 (-191))))
- ((*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1150)) (-5 *1 (-299))))
- ((*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1150)) (-5 *1 (-304)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -3860 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-362)) (-4 *7 (-1232 *6))
- (-5 *2 (-2 (|:| |answer| (-583 (-406 *7))) (|:| |a0| *6)))
- (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 (-2 (|:| -1635 (-1164 *6)) (|:| -1960 (-562)))))
- (-4 *6 (-306)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
- (-5 *1 (-737 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5))))
- ((*1 *1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044)))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-751)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-535)))))
+(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693))))
+ ((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693)))))
+(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-1213))))))
+(((*1 *2)
+ (-12
+ (-5 *2 (-2 (|:| -3979 (-639 (-1168))) (|:| -3665 (-639 (-1168)))))
+ (-5 *1 (-1209)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-243 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-281 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *1 *2)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
(((*1 *1 *2 *2 *3)
(-12 (-5 *3 (-639 (-1168))) (-4 *4 (-1092))
(-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4))))
@@ -10285,287 +10361,196 @@
(-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3))))
(-5 *1 (-1068 *3 *4 *2))
(-4 *2 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845))
- (-5 *2 (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -2264 *1)))
- (-4 *1 (-1058 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *2 (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -2264 *1)))
- (-4 *1 (-1058 *3 *4 *5)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-756))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1261)) (-5 *1 (-1209))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1261)) (-5 *1 (-1209)))))
+(((*1 *1 *1) (-5 *1 (-224)))
+ ((*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
+ ((*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *1 *1) (-4 *1 (-1131))) ((*1 *1 *1 *1) (-4 *1 (-1131))))
+(((*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-156))))
+ ((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
+ (-4 *3 (-1058 *6 *7 *8))
+ (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4))))
+ (-5 *1 (-1065 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1501 *9))))
+ (-5 *5 (-112)) (-4 *8 (-1058 *6 *7 *4)) (-4 *9 (-1064 *6 *7 *4 *8))
+ (-4 *6 (-451)) (-4 *7 (-788)) (-4 *4 (-845))
+ (-5 *2 (-639 (-2 (|:| |val| *8) (|:| -1501 *9))))
+ (-5 *1 (-1065 *6 *7 *4 *8 *9)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-766)) (-5 *2 (-112)) (-5 *1 (-584 *3)) (-4 *3 (-544)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-325 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787))
+ (-4 *2 (-451))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-341 *2 *3 *4)) (-4 *2 (-1211)) (-4 *3 (-1232 *2))
+ (-4 *4 (-1232 (-406 *3)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-451))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845)) (-4 *3 (-451))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-451))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-306)) (-4 *3 (-554)) (-5 *1 (-1155 *3 *2))
+ (-4 *2 (-1232 *3)))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *3 *3 *4 *5 *5 *5 *5 *5 *5 *6 *6 *6 *3 *3 *5
+ *7 *3 *8)
+ (-12 (-5 *5 (-683 (-224))) (-5 *6 (-112)) (-5 *7 (-683 (-562)))
+ (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-65 QPHESS))))
+ (-5 *3 (-562)) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-748)))))
+(((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-356 *3)) (-4 *3 (-348)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211))
+ (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-293 *2)) (-4 *2 (-721)) (-4 *2 (-1207)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044))
- (-14 *4 (-639 (-1168)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1207))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845)))
- (-14 *4 (-639 (-1168)))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-666 *3)) (-4 *3 (-845))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-671 *3)) (-4 *3 (-845))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-845)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-1044))
- (-5 *1 (-1152 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-562)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044))
- (-14 *4 (-1168)) (-14 *5 *3))))
-(((*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1188))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1188)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-1172)))))
+ (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-1202 *3))
+ (-4 *3 (-969)))))
+(((*1 *1 *1) (-12 (-4 *1 (-373 *2 *3)) (-4 *2 (-845)) (-4 *3 (-171))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-623 *2 *3 *4)) (-4 *2 (-845))
+ (-4 *3 (-13 (-171) (-712 (-406 (-562))))) (-14 *4 (-916))))
+ ((*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845))))
+ ((*1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-1113 *2)) (-4 *2 (-1207)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1164 *2)) (-4 *2 (-944 (-406 (-947 *6)) *5 *4))
+ (-5 *1 (-727 *5 *4 *6 *2)) (-4 *5 (-788))
+ (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)))))
+ (-4 *6 (-554)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
- (-5 *2 (-814 *3))))
+ (-12 (-5 *2 (-1148 (-406 *3))) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1208 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1150)) (-5 *3 (-562)) (-5 *1 (-1056)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-732 *3))))
+ ((*1 *1 *2) (-12 (-5 *1 (-732 *2)) (-4 *2 (-1092))))
+ ((*1 *1) (-12 (-5 *1 (-732 *2)) (-4 *2 (-1092)))))
+(((*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-216))))
+ ((*1 *2 *1) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-486))))
+ ((*1 *1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-306))))
((*1 *2 *1)
- (-12 (-4 *2 (-841)) (-5 *1 (-1279 *3 *2)) (-4 *3 (-1044)))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-766)) (-5 *1 (-164 *3 *4))
- (-4 *3 (-165 *4))))
- ((*1 *2)
- (-12 (-14 *4 *2) (-4 *5 (-1207)) (-5 *2 (-766))
- (-5 *1 (-236 *3 *4 *5)) (-4 *3 (-237 *4 *5))))
- ((*1 *2)
- (-12 (-4 *4 (-845)) (-5 *2 (-766)) (-5 *1 (-428 *3 *4))
- (-4 *3 (-429 *4))))
- ((*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-543 *3)) (-4 *3 (-544))))
- ((*1 *2) (-12 (-4 *1 (-758)) (-5 *2 (-766))))
+ (-12 (-5 *2 (-406 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562))))
+ ((*1 *1 *1) (-4 *1 (-1053))))
+(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-746)))))
+(((*1 *2 *2) (-12 (-5 *2 (-639 (-683 (-315 (-562))))) (-5 *1 (-1026)))))
+(((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-326 *3)) (-4 *3 (-1207))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-766)) (-5 *1 (-515 *3 *4)) (-4 *3 (-1207))
+ (-14 *4 (-562)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *6 (-554)) (-4 *2 (-944 *3 *5 *4))
+ (-5 *1 (-727 *5 *4 *6 *2)) (-5 *3 (-406 (-947 *6))) (-4 *5 (-788))
+ (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))))))
+(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-750)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
+ (-5 *2 (-639 (-947 *4)))))
((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-766)) (-5 *1 (-791 *3 *4))
- (-4 *3 (-792 *4))))
+ (-12 (-4 *4 (-171)) (-5 *2 (-639 (-947 *4))) (-5 *1 (-415 *3 *4))
+ (-4 *3 (-416 *4))))
((*1 *2)
- (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-986 *3 *4))
- (-4 *3 (-987 *4))))
+ (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-639 (-947 *3)))))
((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-766)) (-5 *1 (-991 *3 *4))
- (-4 *3 (-992 *4))))
- ((*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1006 *3)) (-4 *3 (-1007))))
- ((*1 *2) (-12 (-4 *1 (-1044)) (-5 *2 (-766))))
- ((*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1052 *3)) (-4 *3 (-1053)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1207))
- (-4 *5 (-1207)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-239 *6 *7)) (-14 *6 (-766))
- (-4 *7 (-1207)) (-4 *5 (-1207)) (-5 *2 (-239 *6 *5))
- (-5 *1 (-238 *6 *7 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1207)) (-4 *5 (-1207))
- (-4 *2 (-372 *5)) (-5 *1 (-370 *6 *4 *5 *2)) (-4 *4 (-372 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1092)) (-4 *5 (-1092))
- (-4 *2 (-424 *5)) (-5 *1 (-422 *6 *4 *5 *2)) (-4 *4 (-424 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-639 *6)) (-4 *6 (-1207))
- (-4 *5 (-1207)) (-5 *2 (-639 *5)) (-5 *1 (-637 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-953 *6)) (-4 *6 (-1207))
- (-4 *5 (-1207)) (-5 *2 (-953 *5)) (-5 *1 (-952 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1148 *6)) (-4 *6 (-1207))
- (-4 *3 (-1207)) (-5 *2 (-1148 *3)) (-5 *1 (-1146 *6 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1256 *6)) (-4 *6 (-1207))
- (-4 *5 (-1207)) (-5 *2 (-1256 *5)) (-5 *1 (-1255 *6 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *5)) (-5 *4 (-916)) (-4 *5 (-845))
- (-5 *2 (-639 (-666 *5))) (-5 *1 (-666 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-191))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-299))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-304)))))
-(((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-128)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788))
- (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *1 *1) (-5 *1 (-224))) ((*1 *1 *1) (-5 *1 (-378)))
- ((*1 *1) (-5 *1 (-378))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-766)) (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-112)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-562)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451))
- (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *1 (-972 *3 *4 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
- (-5 *1 (-175 *3)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-1282 *5 *6 *7))
- (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-1282 *5 *6 *7))
- (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
+ (-12 (-5 *2 (-639 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3)))))
((*1 *2 *3)
- (-12 (-5 *3 (-639 (-947 *4)))
- (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2 (-639 (-1041 *4 *5))) (-5 *1 (-1282 *4 *5 *6))
- (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-766)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257))))
- ((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-766)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-766)) (-4 *5 (-362)) (-5 *2 (-406 *6))
- (-5 *1 (-862 *5 *4 *6)) (-4 *4 (-1247 *5)) (-4 *6 (-1232 *5))))
- ((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-766)) (-5 *4 (-1248 *5 *6 *7)) (-4 *5 (-362))
- (-14 *6 (-1168)) (-14 *7 *5) (-5 *2 (-406 (-1229 *6 *5)))
- (-5 *1 (-863 *5 *6 *7))))
- ((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-766)) (-5 *4 (-1248 *5 *6 *7)) (-4 *5 (-362))
- (-14 *6 (-1168)) (-14 *7 *5) (-5 *2 (-406 (-1229 *6 *5)))
- (-5 *1 (-863 *5 *6 *7)))))
-(((*1 *2 *3 *4 *4 *3 *5)
- (-12 (-5 *4 (-608 *3)) (-5 *5 (-1164 *3))
- (-4 *3 (-13 (-429 *6) (-27) (-1192)))
- (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *2 (-583 *3)) (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092))))
- ((*1 *2 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *4 (-608 *3)) (-5 *5 (-406 (-1164 *3)))
- (-4 *3 (-13 (-429 *6) (-27) (-1192)))
- (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *2 (-583 *3)) (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092)))))
+ (-12 (-5 *3 (-1256 (-452 *4 *5 *6 *7))) (-5 *2 (-639 (-947 *4)))
+ (-5 *1 (-452 *4 *5 *6 *7)) (-4 *4 (-554)) (-4 *4 (-171))
+ (-14 *5 (-916)) (-14 *6 (-639 (-1168))) (-14 *7 (-1256 (-683 *4))))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224)))
+ (-5 *2 (-1030)) (-5 *1 (-742)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1171)))))
+(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-676 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6))
- (-5 *2 (-639 (-2 (|:| -1450 *1) (|:| -3316 (-639 *7)))))
- (-5 *3 (-639 *7)) (-4 *1 (-1200 *4 *5 *6 *7)))))
-(((*1 *2) (-12 (-5 *2 (-1139 (-1150))) (-5 *1 (-390)))))
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
+ ((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))))
-(((*1 *1 *1) (-4 *1 (-1053)))
- ((*1 *1 *1 *2 *2)
- (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-947 (-406 (-562)))) (-5 *4 (-1168))
- (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-299)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-639 *4)) (-4 *4 (-1092)) (-4 *4 (-1207)) (-5 *2 (-112))
- (-5 *1 (-1148 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-766)) (-4 *3 (-1044)) (-4 *1 (-681 *3 *4 *5))
- (-4 *4 (-372 *3)) (-4 *5 (-372 *3))))
- ((*1 *1 *2)
- (-12 (-4 *2 (-1044)) (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2))
- (-4 *5 (-237 *3 *2)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-766)) (-4 *5 (-554))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
- (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224)))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-70 APROD)))) (-5 *4 (-224))
- (-5 *2 (-1030)) (-5 *1 (-751)))))
-(((*1 *2)
- (-12
- (-5 *2
- (-1256 (-639 (-2 (|:| -2534 (-905 *3)) (|:| -2466 (-1112))))))
- (-5 *1 (-350 *3 *4)) (-14 *3 (-916)) (-14 *4 (-916))))
- ((*1 *2)
- (-12 (-5 *2 (-1256 (-639 (-2 (|:| -2534 *3) (|:| -2466 (-1112))))))
- (-5 *1 (-351 *3 *4)) (-4 *3 (-348)) (-14 *4 (-3 (-1164 *3) *2))))
- ((*1 *2)
- (-12 (-5 *2 (-1256 (-639 (-2 (|:| -2534 *3) (|:| -2466 (-1112))))))
- (-5 *1 (-352 *3 *4)) (-4 *3 (-348)) (-14 *4 (-916)))))
+ (-12 (-5 *3 (-315 (-224))) (-5 *2 (-406 (-562))) (-5 *1 (-304)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-562)) (-4 *1 (-1216 *4)) (-4 *4 (-1044)) (-4 *4 (-554))
+ (-5 *2 (-406 (-947 *4)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-4 *1 (-1216 *4)) (-4 *4 (-1044)) (-4 *4 (-554))
+ (-5 *2 (-406 (-947 *4))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1232 (-406 *2))) (-5 *2 (-562)) (-5 *1 (-908 *4 *3))
- (-4 *3 (-1232 (-406 *4))))))
-(((*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-869))
- (-5 *5 (-916)) (-5 *6 (-639 (-262))) (-5 *2 (-467)) (-5 *1 (-1260))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *2 (-467))
- (-5 *1 (-1260))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-639 (-262)))
- (-5 *2 (-467)) (-5 *1 (-1260)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))))
-(((*1 *1 *1 *1) (-5 *1 (-857))))
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
+ ((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))))
(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-171)) (-4 *2 (-554))))
- ((*1 *1 *1) (|partial| -4 *1 (-717))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
+ (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845))
+ (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-916)) (-5 *1 (-1027 *2))
+ (-4 *2 (-13 (-1092) (-10 -8 (-15 * ($ $ $))))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *3 (-639 (-869)))
+ (-5 *1 (-467)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
- (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
- (-5 *1 (-983 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
- (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
- (-5 *1 (-1099 *3 *4 *5 *6 *7)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-872 *2)) (-4 *2 (-1207))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-874 *2)) (-4 *2 (-1207))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-5 *1 (-877 *2)) (-4 *2 (-1207)))))
+ (-12
+ (-5 *2
+ (-982 (-406 (-562)) (-859 *3) (-239 *4 (-766))
+ (-246 *3 (-406 (-562)))))
+ (-14 *3 (-639 (-1168))) (-14 *4 (-766)) (-5 *1 (-981 *3 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-683 *5))) (-4 *5 (-306)) (-4 *5 (-1044))
- (-5 *2 (-1256 (-1256 *5))) (-5 *1 (-1024 *5)) (-5 *4 (-1256 *5)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-639 *6)) (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044))
- (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
- (-4 *3 (-554)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
- (-5 *2 (-112)))))
+ (-12 (-5 *3 (-1256 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-362))
+ (-4 *1 (-719 *5 *6)) (-4 *5 (-171)) (-4 *6 (-1232 *5))
+ (-5 *2 (-683 *5)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-1256 *5)) (-5 *3 (-766)) (-5 *4 (-1112)) (-4 *5 (-348))
+ (-5 *1 (-527 *5)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1132 *3 *2)) (-4 *3 (-13 (-1092) (-34)))
+ (-4 *2 (-13 (-1092) (-34))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-406 (-947 (-168 (-562))))))
- (-5 *2 (-639 (-639 (-293 (-947 (-168 *4)))))) (-5 *1 (-377 *4))
- (-4 *4 (-13 (-362) (-843)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-293 (-406 (-947 (-168 (-562)))))))
- (-5 *2 (-639 (-639 (-293 (-947 (-168 *4)))))) (-5 *1 (-377 *4))
- (-4 *4 (-13 (-362) (-843)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-947 (-168 (-562)))))
- (-5 *2 (-639 (-293 (-947 (-168 *4))))) (-5 *1 (-377 *4))
- (-4 *4 (-13 (-362) (-843)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-293 (-406 (-947 (-168 (-562))))))
- (-5 *2 (-639 (-293 (-947 (-168 *4))))) (-5 *1 (-377 *4))
- (-4 *4 (-13 (-362) (-843))))))
-(((*1 *1 *1) (-4 *1 (-625)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997) (-1192))))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (-5 *2 (-2 (|:| -2431 (-114)) (|:| |w| (-224)))) (-5 *1 (-203)))))
-(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001)))))
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1232 *6))
+ (-4 *6 (-13 (-27) (-429 *5)))
+ (-4 *5 (-13 (-845) (-554) (-1033 (-562)))) (-4 *8 (-1232 (-406 *7)))
+ (-5 *2 (-583 *3)) (-5 *1 (-550 *5 *6 *7 *8 *3))
+ (-4 *3 (-341 *6 *7 *8)))))
+(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-853))))
((*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-960))))
((*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-984))))
@@ -10573,237 +10558,145 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-1092) (-34))) (-5 *1 (-1132 *2 *3))
(-4 *3 (-13 (-1092) (-34))))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-884 *5 *3)) (-5 *4 (-887 *5)) (-4 *5 (-1092))
- (-4 *3 (-165 *6)) (-4 (-947 *6) (-881 *5))
- (-4 *6 (-13 (-881 *5) (-171))) (-5 *1 (-177 *5 *6 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-884 *4 *1)) (-5 *3 (-887 *4)) (-4 *1 (-881 *4))
- (-4 *4 (-1092))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-884 *5 *6)) (-5 *4 (-887 *5)) (-4 *5 (-1092))
- (-4 *6 (-13 (-1092) (-1033 *3))) (-4 *3 (-881 *5))
- (-5 *1 (-926 *5 *3 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-884 *5 *3)) (-4 *5 (-1092))
- (-4 *3 (-13 (-429 *6) (-610 *4) (-881 *5) (-1033 (-608 $))))
- (-5 *4 (-887 *5)) (-4 *6 (-13 (-554) (-845) (-881 *5)))
- (-5 *1 (-927 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-884 (-562) *3)) (-5 *4 (-887 (-562))) (-4 *3 (-544))
- (-5 *1 (-928 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-884 *5 *6)) (-5 *3 (-608 *6)) (-4 *5 (-1092))
- (-4 *6 (-13 (-845) (-1033 (-608 $)) (-610 *4) (-881 *5)))
- (-5 *4 (-887 *5)) (-5 *1 (-929 *5 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-880 *5 *6 *3)) (-5 *4 (-887 *5)) (-4 *5 (-1092))
- (-4 *6 (-881 *5)) (-4 *3 (-660 *6)) (-5 *1 (-930 *5 *6 *3))))
- ((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *5 (-1 (-884 *6 *3) *8 (-887 *6) (-884 *6 *3)))
- (-4 *8 (-845)) (-5 *2 (-884 *6 *3)) (-5 *4 (-887 *6))
- (-4 *6 (-1092)) (-4 *3 (-13 (-944 *9 *7 *8) (-610 *4)))
- (-4 *7 (-788)) (-4 *9 (-13 (-1044) (-845) (-881 *6)))
- (-5 *1 (-931 *6 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-884 *5 *3)) (-4 *5 (-1092))
- (-4 *3 (-13 (-944 *8 *6 *7) (-610 *4))) (-5 *4 (-887 *5))
- (-4 *7 (-881 *5)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *8 (-13 (-1044) (-845) (-881 *5)))
- (-5 *1 (-931 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-884 *5 *3)) (-4 *5 (-1092)) (-4 *3 (-987 *6))
- (-4 *6 (-13 (-554) (-881 *5) (-610 *4))) (-5 *4 (-887 *5))
- (-5 *1 (-934 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-884 *5 (-1168))) (-5 *3 (-1168)) (-5 *4 (-887 *5))
- (-4 *5 (-1092)) (-5 *1 (-935 *5))))
- ((*1 *2 *3 *4 *5 *2 *6)
- (-12 (-5 *4 (-639 (-887 *7))) (-5 *5 (-1 *9 (-639 *9)))
- (-5 *6 (-1 (-884 *7 *9) *9 (-887 *7) (-884 *7 *9))) (-4 *7 (-1092))
- (-4 *9 (-13 (-1044) (-610 (-887 *7)) (-1033 *8)))
- (-5 *2 (-884 *7 *9)) (-5 *3 (-639 *9)) (-4 *8 (-13 (-1044) (-845)))
- (-5 *1 (-936 *7 *8 *9)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-639 (-480 *5 *6))) (-5 *4 (-859 *5))
- (-14 *5 (-639 (-1168))) (-5 *2 (-480 *5 *6)) (-5 *1 (-627 *5 *6))
- (-4 *6 (-451))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-480 *5 *6))) (-5 *4 (-859 *5))
- (-14 *5 (-639 (-1168))) (-5 *2 (-480 *5 *6)) (-5 *1 (-627 *5 *6))
- (-4 *6 (-451)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-916)) (-5 *1 (-1025 *2))
- (-4 *2 (-13 (-1092) (-10 -8 (-15 -1835 ($ $ $))))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-562)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-766)) (-4 *5 (-171))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766))
- (-4 *4 (-171))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2))
- (-4 *4 (-372 *2))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-1044)) (-4 *1 (-681 *3 *2 *4)) (-4 *2 (-372 *3))
- (-4 *4 (-372 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1134 *2 *3)) (-14 *2 (-766)) (-4 *3 (-1044)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-112)) (-5 *5 (-683 (-168 (-224))))
- (-5 *2 (-1030)) (-5 *1 (-750)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-915)) (-5 *2 (-2 (|:| -4221 (-639 *1)) (|:| -3148 *1)))
- (-5 *3 (-639 *1)))))
-(((*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-279)))))
-(((*1 *2 *1) (-12 (-4 *1 (-950)) (-5 *2 (-639 (-639 (-938 (-224)))))))
- ((*1 *2 *1) (-12 (-4 *1 (-969)) (-5 *2 (-639 (-639 (-938 (-224))))))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *2 (-1092)) (-5 *1 (-1184 *3 *2)) (-4 *3 (-1092)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-362)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
- (-5 *1 (-520 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5))))
+ (-12 (-5 *3 (-583 *2)) (-4 *2 (-13 (-29 *4) (-1192)))
+ (-5 *1 (-581 *4 *2))
+ (-4 *4 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))))))
((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4))
- (-4 *7 (-987 *4)) (-4 *2 (-681 *7 *8 *9))
- (-5 *1 (-521 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-681 *4 *5 *6))
- (-4 *8 (-372 *7)) (-4 *9 (-372 *7))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2))
- (-4 *4 (-372 *2)) (-4 *2 (-306))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-306)) (-4 *3 (-171)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2))
- (-4 *2 (-681 *3 *4 *5))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1047 *2 *3 *4 *5 *6)) (-4 *4 (-1044))
- (-4 *5 (-237 *3 *4)) (-4 *6 (-237 *2 *4)) (-4 *4 (-306)))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-639 (-608 *2))) (-5 *4 (-1168))
- (-4 *2 (-13 (-27) (-1192) (-429 *5)))
- (-4 *5 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-276 *5 *2)))))
+ (-12 (-5 *3 (-583 (-406 (-947 *4))))
+ (-4 *4 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))))
+ (-5 *2 (-315 *4)) (-5 *1 (-586 *4)))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-916)) (-5 *1 (-1025 *2))
+ (-4 *2 (-13 (-1092) (-10 -8 (-15 -1836 ($ $ $))))))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
- (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
- (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
- (|:| |abserr| (-224)) (|:| |relerr| (-224))))
- (-5 *2 (-378)) (-5 *1 (-204)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4)))
- (-5 *2 (-1256 *6)) (-5 *1 (-335 *3 *4 *5 *6))
- (-4 *6 (-341 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092))
- (-5 *2 (-639 (-2 (|:| |k| *4) (|:| |c| *3))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| |k| (-888 *3)) (|:| |c| *4))))
- (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845))
- (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 (-666 *3))) (-5 *1 (-888 *3)) (-4 *3 (-845)))))
+ (-12 (-5 *3 (-480 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044))
+ (-5 *2 (-246 *4 *5)) (-5 *1 (-939 *4 *5)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-747)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-639 (-608 *5))) (-5 *3 (-1168)) (-4 *5 (-429 *4))
+ (-4 *4 (-845)) (-5 *1 (-571 *4 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-845)) (-4 *5 (-904)) (-4 *6 (-788))
+ (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-417 (-1164 *8)))
+ (-5 *1 (-901 *5 *6 *7 *8)) (-5 *4 (-1164 *8))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-904)) (-4 *5 (-1232 *4)) (-5 *2 (-417 (-1164 *5)))
+ (-5 *1 (-902 *4 *5)) (-5 *3 (-1164 *5)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-1168))
+ (-4 *6 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-4 *4 (-13 (-29 *6) (-1192) (-954)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -4291 (-639 *4))))
+ (-5 *1 (-796 *6 *4 *3)) (-4 *3 (-650 *4)))))
(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
- (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
- (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
- (|:| |abserr| (-224)) (|:| |relerr| (-224))))
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-676 *2)) (-4 *2 (-1092))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 (-639 *5) (-639 *5))) (-5 *4 (-562))
+ (-5 *2 (-639 *5)) (-5 *1 (-676 *5)) (-4 *5 (-1092)))))
+(((*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *7) (|:| -1603 *7) (|:| |sol?| (-112)))
+ (-562) *7))
+ (-5 *6 (-639 (-406 *8))) (-4 *7 (-362)) (-4 *8 (-1232 *7))
+ (-5 *3 (-406 *8))
(-5 *2
- (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378))
- (|:| |expense| (-378)) (|:| |accuracy| (-378))
- (|:| |intermediateResults| (-378))))
- (-5 *1 (-798)))))
-(((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2)
- (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
- (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261))
- (-5 *1 (-1065 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
- (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261))
- (-5 *1 (-1100 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))))
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-572 *7 *8)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-224) (-224) (-224) (-224))) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224) (-224))) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-224) (-224))) (-5 *1 (-262)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-916)) (-5 *2 (-467)) (-5 *1 (-1257)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-362)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-503 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-306))
+ (-5 *2 (-766)) (-5 *1 (-454 *5 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-683 (-406 (-947 (-562)))))
- (-5 *2 (-639 (-683 (-315 (-562))))) (-5 *1 (-1026)))))
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-1261))
+ (-5 *1 (-448 *4 *5 *6 *7)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1167)) (-5 *1 (-329)))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-562)) (-4 *3 (-171)) (-4 *5 (-372 *3))
+ (-4 *6 (-372 *3)) (-5 *1 (-682 *3 *5 *6 *2))
+ (-4 *2 (-681 *3 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-5 *1 (-329)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092))
+ (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-329)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1164 *3)) (-4 *3 (-1044)) (-4 *1 (-1232 *3)))))
+(((*1 *1) (-5 *1 (-156))))
(((*1 *2 *3)
- (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4))
- (-4 *4 (-348)))))
+ (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-416 *4)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-1173))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-1173))) (-5 *1 (-1173)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-429 *3) (-997))) (-5 *1 (-275 *3 *2))
+ (-4 *3 (-13 (-845) (-554))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4))
- (-4 *4 (-348)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
- (-4 *3 (-1058 *6 *7 *8))
- (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4))))
- (-5 *1 (-1100 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1495 *9))))
- (-5 *5 (-112)) (-4 *8 (-1058 *6 *7 *4)) (-4 *9 (-1064 *6 *7 *4 *8))
- (-4 *6 (-451)) (-4 *7 (-788)) (-4 *4 (-845))
- (-5 *2 (-639 (-2 (|:| |val| *8) (|:| -1495 *9))))
- (-5 *1 (-1100 *6 *7 *4 *8 *9)))))
-(((*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-544))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-916)) (-5 *4 (-869)) (-5 *2 (-1261)) (-5 *1 (-1257))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-610 (-887 *3))) (-4 *3 (-881 *3))
- (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-610 (-887 *3))) (-4 *2 (-881 *3))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-639 (-639 *6))) (-4 *6 (-944 *3 *5 *4))
- (-4 *3 (-13 (-306) (-146))) (-4 *4 (-13 (-845) (-610 (-1168))))
- (-4 *5 (-788)) (-5 *1 (-919 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-508 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-845)))))
+ (-12 (-5 *3 (-766)) (-4 *4 (-362)) (-4 *5 (-1232 *4)) (-5 *2 (-1261))
+ (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1232 (-406 *5))) (-14 *7 *6))))
(((*1 *2 *3)
- (-12 (-5 *3 (-683 (-406 (-947 *4)))) (-4 *4 (-451))
- (-5 *2 (-639 (-3 (-406 (-947 *4)) (-1157 (-1168) (-947 *4)))))
- (-5 *1 (-291 *4)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261))
- (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261))
- (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
+ (-12 (-5 *3 (-1179 (-639 *4))) (-4 *4 (-845))
+ (-5 *2 (-639 (-639 *4))) (-5 *1 (-1178 *4)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4))))
+ (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
(((*1 *1 *2 *3)
(-12 (-5 *1 (-868 *2 *3)) (-4 *2 (-1207)) (-4 *3 (-1207)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329))
- (-5 *1 (-331))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-1084 (-947 (-562)))) (-5 *2 (-329))
- (-5 *1 (-331))))
- ((*1 *1 *2 *2 *2)
- (-12 (-5 *2 (-766)) (-5 *1 (-669 *3)) (-4 *3 (-1044))
- (-4 *3 (-1092)))))
-(((*1 *2 *2 *3 *3)
- (|partial| -12 (-5 *3 (-1168))
- (-4 *4 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-573 *4 *2))
- (-4 *2 (-13 (-1192) (-954) (-1131) (-29 *4))))))
+(((*1 *2 *3 *4)
+ (-12
+ (-5 *3
+ (-639
+ (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8))
+ (|:| |wcond| (-639 (-947 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1256 (-406 (-947 *5))))
+ (|:| -4291 (-639 (-1256 (-406 (-947 *5))))))))))
+ (-5 *4 (-1150)) (-4 *5 (-13 (-306) (-146))) (-4 *8 (-944 *5 *7 *6))
+ (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-562))
+ (-5 *1 (-919 *5 *6 *7 *8)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-820)))))
+(((*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259))))
+ ((*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))))
(((*1 *2 *2 *2)
(-12 (-5 *2 (-639 (-608 *4))) (-4 *4 (-429 *3)) (-4 *3 (-845))
(-5 *1 (-571 *3 *4))))
@@ -10812,85 +10705,123 @@
((*1 *1 *2 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092))))
((*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-52)) (-5 *1 (-824)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-562)) (-4 *4 (-171)) (-4 *5 (-372 *4))
- (-4 *6 (-372 *4)) (-5 *1 (-682 *4 *5 *6 *2))
- (-4 *2 (-681 *4 *5 *6)))))
-(((*1 *1 *1 *2 *2)
- (|partial| -12 (-5 *2 (-916)) (-5 *1 (-1093 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-322 *3 *4)) (-4 *3 (-1092))
+ (-4 *4 (-130))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-360 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-385 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-643 *3 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-536 *3 *2))
+ (-4 *2 (-1247 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-4 *4 (-1232 *3))
+ (-4 *5 (-719 *3 *4)) (-5 *1 (-540 *3 *4 *5 *2)) (-4 *2 (-1247 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-5 *1 (-541 *3 *2))
+ (-4 *2 (-1247 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-13 (-554) (-146)))
+ (-5 *1 (-1144 *3)))))
+(((*1 *1) (-5 *1 (-140))))
+(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
+ (|partial| -12 (-5 *5 (-1168))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-639 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-639 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -2929 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1192) (-27) (-429 *8)))
+ (-4 *8 (-13 (-451) (-845) (-146) (-1033 *3) (-635 *3)))
+ (-5 *3 (-562)) (-5 *2 (-639 *4)) (-5 *1 (-1009 *8 *4)))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))))
(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1177)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-639 (-562))) (-5 *3 (-112)) (-5 *1 (-1102)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1247 *4)) (-5 *1 (-1249 *4 *2))
- (-4 *4 (-38 (-406 (-562)))))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1168)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-696 *3 *5 *6 *7))
- (-4 *3 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207))
- (-4 *7 (-1207))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1168)) (-5 *2 (-1 *6 *5)) (-5 *1 (-701 *3 *5 *6))
- (-4 *3 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1044))
- (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283)))
- (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1168))
- (-4 *5 (-13 (-554) (-1033 (-562)) (-146)))
- (-5 *2
- (-2 (|:| -3860 (-406 (-947 *5))) (|:| |coeff| (-406 (-947 *5)))))
- (-5 *1 (-568 *5)) (-5 *3 (-406 (-947 *5))))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1171)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-666 *3)) (-4 *3 (-845))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-671 *3)) (-4 *3 (-845))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-814 *3)) (-4 *3 (-845)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
+(((*1 *2 *2 *3)
+ (-12
+ (-5 *2
+ (-2 (|:| |partsol| (-1256 (-406 (-947 *4))))
+ (|:| -4291 (-639 (-1256 (-406 (-947 *4)))))))
+ (-5 *3 (-639 *7)) (-4 *4 (-13 (-306) (-146)))
+ (-4 *7 (-944 *4 *6 *5)) (-4 *5 (-13 (-845) (-610 (-1168))))
+ (-4 *6 (-788)) (-5 *1 (-919 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1168)) (-5 *6 (-639 (-608 *3)))
+ (-5 *5 (-608 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *7)))
+ (-4 *7 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *2 (-2 (|:| -2929 *3) (|:| |coeff| *3)))
+ (-5 *1 (-555 *7 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-562))) (-5 *4 (-562)) (-5 *2 (-52))
- (-5 *1 (-1000)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-311)) (-5 *1 (-824)))))
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1501 *4))))
+ (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-921)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1044)) (-4 *2 (-681 *4 *5 *6))
- (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1232 *4)) (-4 *5 (-372 *4))
- (-4 *6 (-372 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258))))
- ((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-855)) (-5 *2 (-685 (-1214))) (-5 *3 (-1214)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-750)))))
-(((*1 *2)
- (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-416 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4))
- (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-170)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
- (-4 *4 (-1044)))))
+ (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
+ (-4 *6 (-788)) (-5 *2 (-639 (-639 (-562))))
+ (-5 *1 (-919 *4 *5 *6 *7)) (-5 *3 (-562)) (-4 *7 (-944 *4 *6 *5)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-128)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-857)))))
+(((*1 *1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-788))
+ (-4 *5 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *6 (-554))
+ (-5 *2 (-2 (|:| -1593 (-947 *6)) (|:| -1693 (-947 *6))))
+ (-5 *1 (-727 *4 *5 *6 *3)) (-4 *3 (-944 (-406 (-947 *6)) *4 *5)))))
+(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
+ (-12
+ (-5 *3
+ (-2 (|:| |det| *12) (|:| |rows| (-639 (-562)))
+ (|:| |cols| (-639 (-562)))))
+ (-5 *4 (-683 *12)) (-5 *5 (-639 (-406 (-947 *9))))
+ (-5 *6 (-639 (-639 *12))) (-5 *7 (-766)) (-5 *8 (-562))
+ (-4 *9 (-13 (-306) (-146))) (-4 *12 (-944 *9 *11 *10))
+ (-4 *10 (-13 (-845) (-610 (-1168)))) (-4 *11 (-788))
+ (-5 *2
+ (-2 (|:| |eqzro| (-639 *12)) (|:| |neqzro| (-639 *12))
+ (|:| |wcond| (-639 (-947 *9)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1256 (-406 (-947 *9))))
+ (|:| -4291 (-639 (-1256 (-406 (-947 *9)))))))))
+ (-5 *1 (-919 *9 *10 *11 *12)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-904)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-417 (-1164 *7)))
+ (-5 *1 (-901 *4 *5 *6 *7)) (-5 *3 (-1164 *7))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-904)) (-4 *5 (-1232 *4)) (-5 *2 (-417 (-1164 *5)))
+ (-5 *1 (-902 *4 *5)) (-5 *3 (-1164 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-904)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-417 (-1164 *7)))
+ (-5 *1 (-901 *4 *5 *6 *7)) (-5 *3 (-1164 *7))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-904)) (-4 *5 (-1232 *4)) (-5 *2 (-417 (-1164 *5)))
+ (-5 *1 (-902 *4 *5)) (-5 *3 (-1164 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *3 *1)
- (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1171)) (-5 *3 (-1168)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-528))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-575))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-856)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044))
- (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))))
+ (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
+ (-5 *1 (-175 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-367))))
((*1 *2 *3 *3)
(-12 (-5 *3 (-916)) (-5 *2 (-1256 *4)) (-5 *1 (-527 *4))
@@ -10898,85 +10829,83 @@
((*1 *2 *1)
(-12 (-4 *2 (-845)) (-5 *1 (-708 *2 *3 *4)) (-4 *3 (-1092))
(-14 *4
- (-1 (-112) (-2 (|:| -2466 *2) (|:| -1960 *3))
- (-2 (|:| -2466 *2) (|:| -1960 *3)))))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362))
- (-5 *2 (-2 (|:| -3860 (-406 *6)) (|:| |coeff| (-406 *6))))
- (-5 *1 (-572 *5 *6)) (-5 *3 (-406 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-861 *4 *5 *6 *7))
- (-4 *4 (-1044)) (-14 *5 (-639 (-1168))) (-14 *6 (-639 *3))
- (-14 *7 *3)))
+ (-1 (-112) (-2 (|:| -2464 *2) (|:| -1300 *3))
+ (-2 (|:| -2464 *2) (|:| -1300 *3)))))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-362)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
+ (-5 *1 (-520 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-766)) (-4 *4 (-1044)) (-4 *5 (-845)) (-4 *6 (-788))
- (-14 *8 (-639 *5)) (-5 *2 (-1261))
- (-5 *1 (-1268 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-944 *4 *6 *5))
- (-14 *9 (-639 *3)) (-14 *10 *3))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4))
- (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+ (|partial| -12 (-4 *4 (-554)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4))
+ (-4 *7 (-987 *4)) (-4 *2 (-681 *7 *8 *9))
+ (-5 *1 (-521 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-681 *4 *5 *6))
+ (-4 *8 (-372 *7)) (-4 *9 (-372 *7))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044))
+ (-4 *3 (-372 *2)) (-4 *4 (-372 *2)) (-4 *2 (-362))))
+ ((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-362)) (-4 *3 (-171)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2))
+ (-4 *2 (-681 *3 *4 *5))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-683 *2)) (-4 *2 (-362)) (-4 *2 (-1044))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-1115 *2 *3 *4 *5)) (-4 *3 (-1044))
+ (-4 *4 (-237 *2 *3)) (-4 *5 (-237 *2 *3)) (-4 *3 (-362))))
+ ((*1 *2 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-1178 *3)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
+ (-4 *4 (-1092)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-639 (-947 *4))) (-5 *3 (-639 (-1168))) (-4 *4 (-451))
- (-5 *1 (-913 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-857)) (-5 *1 (-52)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1056)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
-(((*1 *1 *1) (-5 *1 (-1056))))
-(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1171))))
- ((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171))))
- ((*1 *2 *3 *1) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))))
-(((*1 *2) (-12 (-4 *2 (-171)) (-5 *1 (-164 *3 *2)) (-4 *3 (-165 *2))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *2 *4)) (-4 *4 (-1232 *2))
- (-4 *2 (-171))))
- ((*1 *2)
- (-12 (-4 *4 (-1232 *2)) (-4 *2 (-171)) (-5 *1 (-407 *3 *2 *4))
- (-4 *3 (-408 *2 *4))))
- ((*1 *2) (-12 (-4 *1 (-408 *2 *3)) (-4 *3 (-1232 *2)) (-4 *2 (-171))))
- ((*1 *2)
- (-12 (-4 *3 (-1232 *2)) (-5 *2 (-562)) (-5 *1 (-763 *3 *4))
- (-4 *4 (-408 *2 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845)) (-4 *3 (-171))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-554)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2))))
- ((*1 *2 *1) (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-171)))))
+ (-12 (-4 *3 (-362)) (-5 *1 (-1020 *3 *2)) (-4 *2 (-650 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-362)) (-5 *2 (-2 (|:| -3339 *3) (|:| -2429 (-639 *5))))
+ (-5 *1 (-1020 *5 *3)) (-5 *4 (-639 *5)) (-4 *3 (-650 *5)))))
+(((*1 *2 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-559)) (-5 *3 (-562)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-551)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-526)) (-5 *3 (-128)) (-5 *2 (-766)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-3 (-406 (-947 *5)) (-1157 (-1168) (-947 *5))))
+ (-4 *5 (-451)) (-5 *2 (-639 (-683 (-406 (-947 *5)))))
+ (-5 *1 (-291 *5)) (-5 *4 (-683 (-406 (-947 *5)))))))
+(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1177)))))
(((*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-153))))
((*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-1059)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *2 (-562))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
- (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))))
-(((*1 *2)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))))
+(((*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
+ (-5 *1 (-175 *3)))))
(((*1 *2 *3 *3)
(-12 (-5 *2 (-1 (-378))) (-5 *1 (-1035)) (-5 *3 (-378)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))))
-(((*1 *1 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-1092)) (-4 *2 (-367)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-916))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
-(((*1 *1 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-117 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-562))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-866 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-12 (-5 *1 (-866 *2)) (-14 *2 (-562))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-562)) (-14 *3 *2) (-5 *1 (-867 *3 *4))
+ (-4 *4 (-864 *3))))
((*1 *1 *1)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-372 *2)) (-4 *2 (-1207))))
+ (-12 (-14 *2 (-562)) (-5 *1 (-867 *2 *3)) (-4 *3 (-864 *2))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-562)) (-4 *1 (-1218 *3 *4)) (-4 *3 (-1044))
+ (-4 *4 (-1247 *3))))
((*1 *1 *1)
- (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
- (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-938 *4)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
- (-4 *4 (-1044)))))
+ (-12 (-4 *1 (-1218 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-1247 *2)))))
+(((*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1150)) (-5 *1 (-304)))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-554)) (-4 *2 (-171)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-639 (-1168))) (-4 *4 (-1092))
+ (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4))))
+ (-5 *1 (-54 *4 *5 *2))
+ (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4)))))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1096)) (-5 *1 (-279)))))
+(((*1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207)))))
(((*1 *2 *1) (-12 (-4 *1 (-265 *2)) (-4 *2 (-845))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-1168)) (-5 *1 (-859 *3)) (-14 *3 (-639 *2))))
@@ -10987,116 +10916,150 @@
(-12 (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787))
(-5 *2 (-1168))))
((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1252 *3)) (-14 *3 *2))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-1168))) (-4 *4 (-13 (-306) (-146)))
- (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788))
- (-5 *2 (-639 (-406 (-947 *4)))) (-5 *1 (-919 *4 *5 *6 *7))
- (-4 *7 (-944 *4 *6 *5)))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-1044)) (-5 *1 (-443 *3 *2)) (-4 *2 (-1232 *3)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
+(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))))
+(((*1 *1) (-5 *1 (-818))))
(((*1 *1 *2)
(-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-1139 *3)))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-746)))))
-(((*1 *2 *3)
- (-12 (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $)))))
- (-4 *4 (-1232 *3))
- (-5 *2
- (-2 (|:| -3928 (-683 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-683 *3))))
- (-5 *1 (-349 *3 *4 *5)) (-4 *5 (-408 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-562)) (-4 *4 (-1232 *3))
- (-5 *2
- (-2 (|:| -3928 (-683 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-683 *3))))
- (-5 *1 (-763 *4 *5)) (-4 *5 (-408 *3 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-348)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 *3))
- (-5 *2
- (-2 (|:| -3928 (-683 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-683 *3))))
- (-5 *1 (-980 *4 *3 *5 *6)) (-4 *6 (-719 *3 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-348)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 *3))
- (-5 *2
- (-2 (|:| -3928 (-683 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-683 *3))))
- (-5 *1 (-1265 *4 *3 *5 *6)) (-4 *6 (-408 *3 *5)))))
-(((*1 *2 *3) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-559)) (-5 *3 (-562)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-756))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211))
- (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-972 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))))
-(((*1 *1 *2)
- (-12 (-4 *3 (-1044)) (-5 *1 (-822 *2 *3)) (-4 *2 (-703 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1232 *6))
- (-4 *6 (-13 (-27) (-429 *5)))
- (-4 *5 (-13 (-845) (-554) (-1033 (-562)))) (-4 *8 (-1232 (-406 *7)))
- (-5 *2 (-583 *3)) (-5 *1 (-550 *5 *6 *7 *8 *3))
- (-4 *3 (-341 *6 *7 *8)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1033 (-562))) (-4 *1 (-301)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1164 *1)) (-4 *1 (-1007)))))
+(((*1 *2 *1)
+ (-12 (-4 *4 (-1092)) (-5 *2 (-112)) (-5 *1 (-880 *3 *4 *5))
+ (-4 *3 (-1092)) (-4 *5 (-660 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-884 *3 *4)) (-4 *3 (-1092))
+ (-4 *4 (-1092)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5)))
+ (-5 *2 (-766)) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-766)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-676 *2)) (-4 *2 (-1092))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-639 *5) (-639 *5))) (-5 *4 (-562))
- (-5 *2 (-639 *5)) (-5 *1 (-676 *5)) (-4 *5 (-1092)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-362)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-503 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1164 *3)) (-4 *3 (-1044)) (-4 *1 (-1232 *3)))))
-(((*1 *2 *3 *4)
(-12
(-5 *3
- (-639
- (-2 (|:| |eqzro| (-639 *8)) (|:| |neqzro| (-639 *8))
- (|:| |wcond| (-639 (-947 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1256 (-406 (-947 *5))))
- (|:| -3928 (-639 (-1256 (-406 (-947 *5))))))))))
- (-5 *4 (-1150)) (-4 *5 (-13 (-306) (-146))) (-4 *8 (-944 *5 *7 *6))
- (-4 *6 (-13 (-845) (-610 (-1168)))) (-4 *7 (-788)) (-5 *2 (-562))
- (-5 *1 (-919 *5 *6 *7 *8)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
- (-5 *2 (-1030)) (-5 *1 (-747)))))
-(((*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-137))))
- ((*1 *2 *1) (-12 (-4 *1 (-184)) (-5 *2 (-185)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-733)))))
-(((*1 *1) (-5 *1 (-818))))
+ (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))
+ (-5 *2 (-639 (-406 (-562)))) (-5 *1 (-1015 *4))
+ (-4 *4 (-1232 (-562))))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| -2172 (-378)) (|:| -3254 (-1150))
+ (-2 (|:| -1806 (-378)) (|:| -3253 (-1150))
(|:| |explanations| (-639 (-1150)))))
(-5 *2 (-1030)) (-5 *1 (-304))))
((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| -2172 (-378)) (|:| -3254 (-1150))
+ (-2 (|:| -1806 (-378)) (|:| -3253 (-1150))
(|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))))
(-5 *2 (-1030)) (-5 *1 (-304)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
+ (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
+ (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
+ (|:| |abserr| (-224)) (|:| |relerr| (-224))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-378)) (|:| |stabilityFactor| (-378))))
+ (-5 *1 (-204)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *1 *2)
+ (-12 (-4 *3 (-1044)) (-5 *1 (-822 *2 *3)) (-4 *2 (-703 *3)))))
+(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-112)) (-5 *1 (-824)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))
+ (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1148 *4)) (-5 *3 (-1 *4 (-562))) (-4 *4 (-1044))
+ (-5 *1 (-1152 *4)))))
(((*1 *2 *3 *4 *5 *3)
(-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
(-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *1) (-5 *1 (-436))))
+(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-137))))
+ ((*1 *2 *1) (-12 (-4 *1 (-184)) (-5 *2 (-185)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-733)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-13 (-843) (-362))) (-5 *2 (-112)) (-5 *1 (-1054 *4 *3))
+ (-4 *3 (-1232 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-182))) (-5 *1 (-139)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
+ (-4 *4 (-1044)))))
+(((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-554)) (-4 *4 (-987 *3)) (-5 *1 (-141 *3 *4 *2))
+ (-4 *2 (-372 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-4 *5 (-987 *4)) (-4 *2 (-372 *4))
+ (-5 *1 (-502 *4 *5 *2 *3)) (-4 *3 (-372 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-683 *5)) (-4 *5 (-987 *4)) (-4 *4 (-554))
+ (-5 *2 (-683 *4)) (-5 *1 (-687 *4 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-554)) (-4 *4 (-987 *3)) (-5 *1 (-1225 *3 *4 *2))
+ (-4 *2 (-1232 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-639
+ (-2
+ (|:| -2319
+ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
+ (|:| |fn| (-1256 (-315 (-224))))
+ (|:| |yinit| (-639 (-224))) (|:| |intvals| (-639 (-224)))
+ (|:| |g| (-315 (-224))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (|:| -2693
+ (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378))
+ (|:| |expense| (-378)) (|:| |accuracy| (-378))
+ (|:| |intermediateResults| (-378)))))))
+ (-5 *1 (-798)))))
(((*1 *2 *3)
(-12 (-5 *3 (-639 (-608 *5))) (-4 *4 (-845)) (-5 *2 (-608 *5))
(-5 *1 (-571 *4 *5)) (-4 *5 (-429 *4)))))
+(((*1 *2 *3)
+ (-12 (|has| *2 (-6 (-4405 "*"))) (-4 *5 (-372 *2)) (-4 *6 (-372 *2))
+ (-4 *2 (-1044)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1232 *2))
+ (-4 *4 (-681 *2 *5 *6)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1207)) (-5 *2 (-639 *1)) (-4 *1 (-1005 *3)))))
+(((*1 *2 *3 *3 *2 *4)
+ (-12 (-5 *3 (-683 *2)) (-5 *4 (-562))
+ (-4 *2 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $)))))
+ (-4 *5 (-1232 *2)) (-5 *1 (-498 *2 *5 *6)) (-4 *6 (-408 *2 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-836)) (-5 *2 (-1030)) (-5 *1 (-835))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-315 (-378)))) (-5 *4 (-639 (-378)))
+ (-5 *2 (-1030)) (-5 *1 (-835)))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *4 (-1 (-3 (-562) "failed") *5)) (-4 *5 (-1044))
+ (-5 *2 (-562)) (-5 *1 (-542 *5 *3)) (-4 *3 (-1232 *5))))
+ ((*1 *2 *3 *4 *2 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-562) "failed") *4)) (-4 *4 (-1044))
+ (-5 *2 (-562)) (-5 *1 (-542 *4 *3)) (-4 *3 (-1232 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-562) "failed") *4)) (-4 *4 (-1044))
+ (-5 *2 (-562)) (-5 *1 (-542 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *2 *2 *1)
(-12 (-5 *2 (-1280 *3 *4)) (-4 *1 (-373 *3 *4)) (-4 *3 (-845))
(-4 *4 (-171))))
@@ -11110,26 +11073,144 @@
(-4 *4 (-1044))))
((*1 *1 *1 *2)
(-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *3 *2))
+ (-4 *2 (-13 (-27) (-1192) (-429 (-168 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562))))
+ (-5 *1 (-187 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168))
+ (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-1196 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))))
+(((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1095 *3 *4 *5 *6 *2)) (-4 *3 (-1092)) (-4 *4 (-1092))
+ (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1115 *3 *4 *2 *5)) (-4 *4 (-1044)) (-4 *5 (-237 *3 *4))
+ (-4 *2 (-237 *3 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-639 (-766)))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092))
+ (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-845)) (-5 *2 (-1179 (-639 *4))) (-5 *1 (-1178 *4))
+ (-5 *3 (-639 *4)))))
(((*1 *2 *3 *4 *4)
(-12 (-5 *3 (-639 *5)) (-5 *4 (-562)) (-4 *5 (-843)) (-4 *5 (-362))
(-5 *2 (-766)) (-5 *1 (-940 *5 *6)) (-4 *6 (-1232 *5)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1164 *1)) (-5 *3 (-1168)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-947 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1168)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-845) (-554)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-845) (-554))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1164 (-406 (-947 *3)))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-131)) (-5 *3 (-766)) (-5 *2 (-1261)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1256 (-639 (-2 (|:| -2533 *4) (|:| -2464 (-1112))))))
+ (-4 *4 (-348)) (-5 *2 (-683 *4)) (-5 *1 (-345 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-554)) (-4 *4 (-845))
+ (-5 *1 (-571 *4 *2)) (-4 *2 (-429 *4)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-884 *4 *3))
+ (-4 *3 (-1092)))))
(((*1 *1 *1 *2)
(-12 (-5 *2 (-1150)) (-4 *1 (-363 *3 *4)) (-4 *3 (-1092))
(-4 *4 (-1092)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-406 (-947 *4))) (-5 *3 (-1168))
+ (-4 *4 (-13 (-554) (-1033 (-562)) (-146))) (-5 *1 (-568 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *2 (-171)) (-4 *2 (-1044)) (-5 *1 (-709 *2 *3))
+ (-4 *3 (-642 *2))))
+ ((*1 *2 *2) (-12 (-5 *1 (-831 *2)) (-4 *2 (-171)) (-4 *2 (-1044)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168))
+ (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-276 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-938 (-224)) (-224) (-224)))
+ (-5 *3 (-1 (-224) (-224) (-224) (-224))) (-5 *1 (-254)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
+ (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
+ (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
+ (|:| |abserr| (-224)) (|:| |relerr| (-224))))
+ (-5 *2 (-378)) (-5 *1 (-204)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562))
+ (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))
+ (-5 *2 (-1030)) (-5 *1 (-743)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-639 (-938 *3))) (-4 *3 (-1044)) (-4 *1 (-1126 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-639 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-938 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))))
(((*1 *2 *3 *3 *2)
(|partial| -12 (-5 *2 (-766))
(-4 *3 (-13 (-721) (-367) (-10 -7 (-15 ** (*3 *3 (-562))))))
(-5 *1 (-245 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-38 (-406 (-562)))) (-5 *1 (-1249 *3 *2))
+ (-4 *2 (-1247 *3)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
+ (-5 *2
+ (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
+ (|:| |success| (-112))))
+ (-5 *1 (-784)) (-5 *5 (-562)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1092) (-34)))
+ (-4 *3 (-13 (-1092) (-34))))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1077)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
+(((*1 *1 *1) (-4 *1 (-544))))
+(((*1 *2 *3 *3 *3 *3 *4 *5)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562))
+ (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))
+ (-5 *2 (-1030)) (-5 *1 (-741)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-766)) (-4 *4 (-362)) (-5 *1 (-891 *2 *4))
+ (-4 *2 (-1232 *4)))))
(((*1 *2 *1)
(-12
(-5 *2
(-639
(-2
- (|:| -2320
+ (|:| -2319
(-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
(|:| |relerr| (-224))))
- (|:| -2694
+ (|:| -2693
(-2
(|:| |endPointContinuity|
(-3 (|:| |continuous| "Continuous at the end points")
@@ -11145,7 +11226,7 @@
(-3 (|:| |str| (-1148 (-224)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -1590
+ (|:| -2147
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite|
"The bottom of range is infinite")
@@ -11157,270 +11238,113 @@
((*1 *2 *1)
(-12 (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207))
(-5 *2 (-639 *4)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)))))
-(((*1 *2 *1) (-12 (-5 *2 (-212 4 (-129))) (-5 *1 (-577)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-483 *3)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-1168)) (-5 *6 (-112))
- (-4 *7 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-4 *3 (-13 (-1192) (-954) (-29 *7)))
- (-5 *2
- (-3 (|:| |f1| (-838 *3)) (|:| |f2| (-639 (-838 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-218 *7 *3)) (-5 *5 (-838 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 *1)) (-5 *4 (-1256 *1)) (-4 *1 (-635 *5))
- (-4 *5 (-1044))
- (-5 *2 (-2 (|:| -1545 (-683 *5)) (|:| |vec| (-1256 *5))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-683 *1)) (-4 *1 (-635 *4)) (-4 *4 (-1044))
- (-5 *2 (-683 *4)))))
-(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-747)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1095 *3 *4 *5 *6 *2)) (-4 *3 (-1092)) (-4 *4 (-1092))
- (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-168 (-224))))
- (-5 *2 (-1030)) (-5 *1 (-749)))))
-(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
- (|partial| -12 (-5 *3 (-608 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1168))) (-5 *5 (-1164 *2))
- (-4 *2 (-13 (-429 *6) (-27) (-1192)))
- (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *1 (-558 *6 *2 *7)) (-4 *7 (-1092))))
- ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
- (|partial| -12 (-5 *3 (-608 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1168)))
- (-5 *5 (-406 (-1164 *2))) (-4 *2 (-13 (-429 *6) (-27) (-1192)))
- (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *1 (-558 *6 *2 *7)) (-4 *7 (-1092)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1232 *3)) (-5 *1 (-398 *3 *2))
- (-4 *3 (-13 (-362) (-146))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-562))) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-554)) (-4 *8 (-944 *7 *5 *6))
- (-5 *2 (-2 (|:| -1960 (-766)) (|:| -4221 *9) (|:| |radicand| *9)))
- (-5 *1 (-948 *5 *6 *7 *8 *9)) (-5 *4 (-766))
- (-4 *9
- (-13 (-362)
- (-10 -8 (-15 -4054 ($ *8)) (-15 -4065 (*8 $)) (-15 -4076 (*8 $))))))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171))))
- ((*1 *2 *3 *3 *2)
- (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171)))))
+(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
+ (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224)))
+ (-5 *5 (-1086 (-224))) (-5 *6 (-562)) (-5 *2 (-1202 (-921)))
+ (-5 *1 (-317))))
+ ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224)))
+ (-5 *5 (-1086 (-224))) (-5 *6 (-562)) (-5 *7 (-1150))
+ (-5 *2 (-1202 (-921))) (-5 *1 (-317))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224)))
+ (-5 *5 (-1086 (-224))) (-5 *6 (-224)) (-5 *7 (-562))
+ (-5 *2 (-1202 (-921))) (-5 *1 (-317))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
+ (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224)))
+ (-5 *5 (-1086 (-224))) (-5 *6 (-224)) (-5 *7 (-562)) (-5 *8 (-1150))
+ (-5 *2 (-1202 (-921))) (-5 *1 (-317)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-562)) (-4 *4 (-1232 (-406 *3))) (-5 *2 (-916))
+ (-5 *1 (-908 *4 *5)) (-4 *5 (-1232 (-406 *4))))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-325 *3 *4)) (-4 *3 (-1044))
+ (-4 *4 (-787)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-536 *3 *2))
- (-4 *2 (-1247 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-4 *4 (-1232 *3))
- (-4 *5 (-719 *3 *4)) (-5 *1 (-540 *3 *4 *5 *2)) (-4 *2 (-1247 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-5 *1 (-541 *3 *2))
- (-4 *2 (-1247 *3))))
+ (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-419 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1192) (-429 *3)))
+ (-14 *4 (-1168)) (-14 *5 *2)))
((*1 *2 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-13 (-554) (-146)))
- (-5 *1 (-1144 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |var| (-639 (-1168))) (|:| |pred| (-52))))
- (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224)))
- (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-63 LSFUN2))))
- (-5 *2 (-1030)) (-5 *1 (-748)))))
-(((*1 *1) (-5 *1 (-1258))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *4 (-562))) (-5 *5 (-1 (-1148 *4))) (-4 *4 (-362))
- (-4 *4 (-1044)) (-5 *2 (-1148 *4)) (-5 *1 (-1152 *4)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1164 *3)) (-4 *3 (-367)) (-4 *1 (-328 *3))
- (-4 *3 (-362)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1030)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-562)) (-5 *1 (-485 *4))
- (-4 *4 (-1232 *2)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))))
-(((*1 *2)
- (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5)))
- (-5 *2 (-112)) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-869)) (-5 *3 (-639 (-262))) (-5 *1 (-260)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-742)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-215 *4 *2))
- (-4 *2 (-1232 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-451)) (-4 *4 (-554))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| -1732 *4))) (-5 *1 (-964 *4 *3))
- (-4 *3 (-1232 *4)))))
-(((*1 *1 *2 *3 *4)
- (-12
- (-5 *3
- (-639
- (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 *2))
- (|:| |logand| (-1164 *2)))))
- (-5 *4 (-639 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
- (-4 *2 (-362)) (-5 *1 (-583 *2)))))
+ (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-4 *2 (-13 (-27) (-1192) (-429 *3) (-10 -8 (-15 -4053 ($ *4)))))
+ (-4 *4 (-843))
+ (-4 *5
+ (-13 (-1234 *2 *4) (-362) (-1192)
+ (-10 -8 (-15 -4029 ($ $)) (-15 -3081 ($ $)))))
+ (-5 *1 (-421 *3 *2 *4 *5 *6 *7)) (-4 *6 (-978 *5)) (-14 *7 (-1168)))))
(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-374 *4 *2))
- (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4403)))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044))
- (-5 *2 (-639 (-639 (-938 *3))))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-639 (-639 (-938 *4)))) (-5 *3 (-112)) (-4 *4 (-1044))
- (-4 *1 (-1126 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-639 (-639 (-938 *3)))) (-4 *3 (-1044))
- (-4 *1 (-1126 *3))))
- ((*1 *1 *1 *2 *3 *3)
- (-12 (-5 *2 (-639 (-639 (-639 *4)))) (-5 *3 (-112))
- (-4 *1 (-1126 *4)) (-4 *4 (-1044))))
- ((*1 *1 *1 *2 *3 *3)
- (-12 (-5 *2 (-639 (-639 (-938 *4)))) (-5 *3 (-112))
- (-4 *1 (-1126 *4)) (-4 *4 (-1044))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-639 (-639 (-639 *5)))) (-5 *3 (-639 (-170)))
- (-5 *4 (-170)) (-4 *1 (-1126 *5)) (-4 *5 (-1044))))
- ((*1 *1 *1 *2 *3 *4)
- (-12 (-5 *2 (-639 (-639 (-938 *5)))) (-5 *3 (-639 (-170)))
- (-5 *4 (-170)) (-4 *1 (-1126 *5)) (-4 *5 (-1044)))))
-(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-909 *3)) (-4 *3 (-306)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
-(((*1 *1 *1) (-4 *1 (-544))))
+ (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-416 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
(((*1 *2 *2 *3)
- (-12 (-4 *4 (-1092)) (-4 *2 (-895 *4)) (-5 *1 (-686 *4 *2 *5 *3))
- (-4 *5 (-372 *2)) (-4 *3 (-13 (-372 *4) (-10 -7 (-6 -4402)))))))
-(((*1 *2)
- (-12 (-4 *1 (-348))
- (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-639 (-279))) (-5 *1 (-279))))
- ((*1 *2 *1) (-12 (-5 *2 (-639 (-1173))) (-5 *1 (-1173)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1092))
- (-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3))))
- (-5 *2 (-639 (-1168))) (-5 *1 (-1068 *3 *4 *5))
- (-4 *5 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))))))
-(((*1 *1) (-5 *1 (-140))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
- (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *6 (-224))
- (-5 *3 (-562)) (-5 *2 (-1030)) (-5 *1 (-747)))))
-(((*1 *1) (-5 *1 (-818))))
-(((*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
- ((*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-766)) (-4 *4 (-306)) (-4 *6 (-1232 *4))
- (-5 *2 (-1256 (-639 *6))) (-5 *1 (-454 *4 *6)) (-5 *5 (-639 *6)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-1053)) (-4 *3 (-1192))
- (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-751)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329))
- (-5 *1 (-331)))))
+ (|partial| -12 (-5 *2 (-639 (-1164 *4))) (-5 *3 (-1164 *4))
+ (-4 *4 (-904)) (-5 *1 (-657 *4)))))
(((*1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1150)) (-5 *2 (-639 (-1173))) (-5 *1 (-1128)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1092)) (-4 *5 (-1092))
- (-5 *2 (-1 *5)) (-5 *1 (-677 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 (-639 *5))) (-4 *5 (-1247 *4))
- (-4 *4 (-38 (-406 (-562))))
- (-5 *2 (-1 (-1148 *4) (-639 (-1148 *4)))) (-5 *1 (-1249 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1495 *4))))
- (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1168)) (-5 *5 (-1086 (-224))) (-5 *2 (-922))
- (-5 *1 (-920 *3)) (-4 *3 (-610 (-535)))))
- ((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *4 (-1168)) (-5 *5 (-1086 (-224))) (-5 *2 (-922))
- (-5 *1 (-920 *3)) (-4 *3 (-610 (-535)))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921))))
- ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-921))))
- ((*1 *1 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-921))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922))))
- ((*1 *1 *2 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-922))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-922))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-639 (-1 (-224) (-224)))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-922))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-639 (-1 (-224) (-224)))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-922))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-922))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-224) (-224))) (-5 *3 (-1086 (-224)))
- (-5 *1 (-922)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *5)) (-5 *4 (-916)) (-4 *5 (-845))
- (-5 *2 (-59 (-639 (-666 *5)))) (-5 *1 (-666 *5)))))
+ (-12 (-5 *3 (-406 *6)) (-4 *5 (-1211)) (-4 *6 (-1232 *5))
+ (-5 *2 (-2 (|:| -1300 (-766)) (|:| -4221 *3) (|:| |radicand| *6)))
+ (-5 *1 (-147 *5 *6 *7)) (-5 *4 (-766)) (-4 *7 (-1232 *3)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845)) (-4 *3 (-171))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *2 (-554)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-554))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-171)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1173)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-406 *4)) (-4 *4 (-1232 *3)) (-4 *3 (-13 (-362) (-146)))
+ (-5 *1 (-398 *3 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-947 (-224))) (-5 *2 (-224)) (-5 *1 (-304)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 (-112) *7 (-639 *7))) (-4 *1 (-1200 *4 *5 *6 *7))
+ (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
(((*1 *2 *1)
(-12 (-4 *2 (-1207)) (-5 *1 (-868 *3 *2)) (-4 *3 (-1207))))
((*1 *2 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
+(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001)))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))))
-(((*1 *1) (-5 *1 (-140))))
-(((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1118 *4 *3 *5))) (-4 *4 (-38 (-406 (-562))))
- (-4 *4 (-1044)) (-4 *3 (-845)) (-5 *1 (-1118 *4 *3 *5))
- (-4 *5 (-944 *4 (-530 *3) *3))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1201 *4))) (-5 *3 (-1168)) (-5 *1 (-1201 *4))
- (-4 *4 (-38 (-406 (-562)))) (-4 *4 (-1044)))))
-(((*1 *1 *1 *1) (-5 *1 (-857))))
+ (-12 (-4 *3 (-554)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-362) (-301)
+ (-10 -8 (-15 -4063 ((-1117 *3 (-608 $)) $))
+ (-15 -4079 ((-1117 *3 (-608 $)) $))
+ (-15 -4053 ($ (-1117 *3 (-608 $)))))))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-554)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-362) (-301)
+ (-10 -8 (-15 -4063 ((-1117 *3 (-608 $)) $))
+ (-15 -4079 ((-1117 *3 (-608 $)) $))
+ (-15 -4053 ($ (-1117 *3 (-608 $)))))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-639 *2))
+ (-4 *2
+ (-13 (-362) (-301)
+ (-10 -8 (-15 -4063 ((-1117 *4 (-608 $)) $))
+ (-15 -4079 ((-1117 *4 (-608 $)) $))
+ (-15 -4053 ($ (-1117 *4 (-608 $)))))))
+ (-4 *4 (-554)) (-5 *1 (-41 *4 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-639 (-608 *2)))
+ (-4 *2
+ (-13 (-362) (-301)
+ (-10 -8 (-15 -4063 ((-1117 *4 (-608 $)) $))
+ (-15 -4079 ((-1117 *4 (-608 $)) $))
+ (-15 -4053 ($ (-1117 *4 (-608 $)))))))
+ (-4 *4 (-554)) (-5 *1 (-41 *4 *2)))))
+(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1150)) (-5 *3 (-769)) (-5 *1 (-114)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1247 *2)) (-4 *2 (-1044)))))
(((*1 *2 *1 *3 *3 *2)
(-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1207))
(-4 *4 (-372 *2)) (-4 *5 (-372 *2))))
@@ -11453,13 +11377,13 @@
(-4 *4
(-13 (-845)
(-10 -8 (-15 -2343 ((-1150) $ *3)) (-15 -1479 ((-1261) $))
- (-15 -1966 ((-1261) $)))))))
+ (-15 -1359 ((-1261) $)))))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-984)) (-5 *1 (-213 *3))
(-4 *3
(-13 (-845)
(-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $))
- (-15 -1966 ((-1261) $)))))))
+ (-15 -1359 ((-1261) $)))))))
((*1 *2 *1 *3)
(-12 (-5 *3 "count") (-5 *2 (-766)) (-5 *1 (-244 *4)) (-4 *4 (-845))))
((*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-244 *3)) (-4 *3 (-845))))
@@ -11545,48 +11469,139 @@
(-12 (-5 *2 "rest") (-4 *1 (-1244 *3)) (-4 *3 (-1207))))
((*1 *2 *1 *3)
(-12 (-5 *3 "first") (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-938 (-224))) (-5 *2 (-1261)) (-5 *1 (-467)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-766)) (-4 *4 (-13 (-554) (-146)))
- (-5 *1 (-1226 *4 *2)) (-4 *2 (-1232 *4)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-243 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *3 *2)
+ (|partial| -12 (-5 *2 (-1256 *4)) (-5 *3 (-683 *4)) (-4 *4 (-362))
+ (-5 *1 (-661 *4))))
+ ((*1 *2 *3 *2)
+ (|partial| -12 (-4 *4 (-362))
+ (-4 *5 (-13 (-372 *4) (-10 -7 (-6 -4404))))
+ (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4404))))
+ (-5 *1 (-662 *4 *5 *2 *3)) (-4 *3 (-681 *4 *5 *2))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *4 (-639 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-362))
+ (-5 *1 (-809 *2 *3)) (-4 *3 (-650 *2))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-608 *3)) (-4 *3 (-13 (-429 *5) (-27) (-1192)))
+ (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *2 (-583 *3)) (-5 *1 (-564 *5 *3 *6)) (-4 *6 (-1092)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-639 (-938 *3))) (-4 *3 (-1044)) (-4 *1 (-1126 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-639 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-938 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-884 *4 *3))
+ (-12 (-4 *3 (-1044)) (-5 *2 (-1256 *3)) (-5 *1 (-707 *3 *4))
+ (-4 *4 (-1232 *3)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-884 *5 *3)) (-5 *4 (-887 *5)) (-4 *5 (-1092))
+ (-4 *3 (-165 *6)) (-4 (-947 *6) (-881 *5))
+ (-4 *6 (-13 (-881 *5) (-171))) (-5 *1 (-177 *5 *6 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-884 *4 *1)) (-5 *3 (-887 *4)) (-4 *1 (-881 *4))
+ (-4 *4 (-1092))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-884 *5 *6)) (-5 *4 (-887 *5)) (-4 *5 (-1092))
+ (-4 *6 (-13 (-1092) (-1033 *3))) (-4 *3 (-881 *5))
+ (-5 *1 (-926 *5 *3 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-884 *5 *3)) (-4 *5 (-1092))
+ (-4 *3 (-13 (-429 *6) (-610 *4) (-881 *5) (-1033 (-608 $))))
+ (-5 *4 (-887 *5)) (-4 *6 (-13 (-554) (-845) (-881 *5)))
+ (-5 *1 (-927 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-884 (-562) *3)) (-5 *4 (-887 (-562))) (-4 *3 (-544))
+ (-5 *1 (-928 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-884 *5 *6)) (-5 *3 (-608 *6)) (-4 *5 (-1092))
+ (-4 *6 (-13 (-845) (-1033 (-608 $)) (-610 *4) (-881 *5)))
+ (-5 *4 (-887 *5)) (-5 *1 (-929 *5 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-880 *5 *6 *3)) (-5 *4 (-887 *5)) (-4 *5 (-1092))
+ (-4 *6 (-881 *5)) (-4 *3 (-660 *6)) (-5 *1 (-930 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *5 (-1 (-884 *6 *3) *8 (-887 *6) (-884 *6 *3)))
+ (-4 *8 (-845)) (-5 *2 (-884 *6 *3)) (-5 *4 (-887 *6))
+ (-4 *6 (-1092)) (-4 *3 (-13 (-944 *9 *7 *8) (-610 *4)))
+ (-4 *7 (-788)) (-4 *9 (-13 (-1044) (-845) (-881 *6)))
+ (-5 *1 (-931 *6 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-884 *5 *3)) (-4 *5 (-1092))
+ (-4 *3 (-13 (-944 *8 *6 *7) (-610 *4))) (-5 *4 (-887 *5))
+ (-4 *7 (-881 *5)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *8 (-13 (-1044) (-845) (-881 *5)))
+ (-5 *1 (-931 *5 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-884 *5 *3)) (-4 *5 (-1092)) (-4 *3 (-987 *6))
+ (-4 *6 (-13 (-554) (-881 *5) (-610 *4))) (-5 *4 (-887 *5))
+ (-5 *1 (-934 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-884 *5 (-1168))) (-5 *3 (-1168)) (-5 *4 (-887 *5))
+ (-4 *5 (-1092)) (-5 *1 (-935 *5))))
+ ((*1 *2 *3 *4 *5 *2 *6)
+ (-12 (-5 *4 (-639 (-887 *7))) (-5 *5 (-1 *9 (-639 *9)))
+ (-5 *6 (-1 (-884 *7 *9) *9 (-887 *7) (-884 *7 *9))) (-4 *7 (-1092))
+ (-4 *9 (-13 (-1044) (-610 (-887 *7)) (-1033 *8)))
+ (-5 *2 (-884 *7 *9)) (-5 *3 (-639 *9)) (-4 *8 (-13 (-1044) (-845)))
+ (-5 *1 (-936 *7 *8 *9)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1094 *3)) (-5 *1 (-900 *3)) (-4 *3 (-367))
(-4 *3 (-1092)))))
(((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1150)) (-4 *1 (-388)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-362)) (-5 *1 (-284 *3 *2)) (-4 *2 (-1247 *3)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-818)) (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
-(((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451)))
- (-5 *2 (-838 *4)) (-5 *1 (-312 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1192) (-429 *3))) (-14 *5 (-1168))
- (-14 *6 *4)))
- ((*1 *2 *1)
- (|partial| -12
- (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451)))
- (-5 *2 (-838 *4)) (-5 *1 (-1242 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1192) (-429 *3))) (-14 *5 (-1168))
- (-14 *6 *4))))
-(((*1 *1) (-5 *1 (-290))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1090 *3)) (-4 *3 (-1092)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-900 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1))
+ (-4 *1 (-1064 *4 *5 *6 *3)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-315 *4)) (-4 *4 (-13 (-823) (-845) (-1044)))
+ (-5 *2 (-1150)) (-5 *1 (-821 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-315 *5)) (-5 *4 (-112))
+ (-4 *5 (-13 (-823) (-845) (-1044))) (-5 *2 (-1150))
+ (-5 *1 (-821 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-817)) (-5 *4 (-315 *5))
+ (-4 *5 (-13 (-823) (-845) (-1044))) (-5 *2 (-1261))
+ (-5 *1 (-821 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-817)) (-5 *4 (-315 *6)) (-5 *5 (-112))
+ (-4 *6 (-13 (-823) (-845) (-1044))) (-5 *2 (-1261))
+ (-5 *1 (-821 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-823)) (-5 *2 (-1150))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-823)) (-5 *3 (-112)) (-5 *2 (-1150))))
+ ((*1 *2 *3 *1) (-12 (-4 *1 (-823)) (-5 *3 (-817)) (-5 *2 (-1261))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-4 *1 (-823)) (-5 *3 (-817)) (-5 *4 (-112)) (-5 *2 (-1261)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *7 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-554))
+ (-4 *8 (-944 *7 *5 *6))
+ (-5 *2 (-2 (|:| -1300 (-766)) (|:| -4221 *3) (|:| |radicand| *3)))
+ (-5 *1 (-948 *5 *6 *7 *8 *3)) (-5 *4 (-766))
+ (-4 *3
+ (-13 (-362)
+ (-10 -8 (-15 -4053 ($ *8)) (-15 -4063 (*8 $)) (-15 -4079 (*8 $))))))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
+ (-5 *2
+ (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
+ (|:| |success| (-112))))
+ (-5 *1 (-784)) (-5 *5 (-562)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
+ (-4 *3 (-1058 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-639 *4))
+ (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))))
+ (-5 *1 (-1062 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-639 *4))
+ (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1501 *4))))))
+ (-5 *1 (-1137 *5 *6 *7 *3 *4)) (-4 *4 (-1101 *5 *6 *7 *3)))))
(((*1 *2 *2 *3 *2) (-12 (-5 *2 (-1150)) (-5 *3 (-562)) (-5 *1 (-240))))
((*1 *2 *2 *3 *4)
(-12 (-5 *2 (-639 (-1150))) (-5 *3 (-562)) (-5 *4 (-1150))
@@ -11595,329 +11610,209 @@
((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857))))
((*1 *2 *1)
(-12 (-4 *1 (-1234 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1150)) (-5 *2 (-639 (-1173))) (-5 *1 (-875)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *1) (-5 *1 (-1257))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
-(((*1 *1 *2 *3 *3 *4 *4)
- (-12 (-5 *2 (-947 (-562))) (-5 *3 (-1168))
- (-5 *4 (-1086 (-406 (-562)))) (-5 *1 (-30)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-1148 *3))) (-5 *1 (-1148 *3)) (-4 *3 (-1207)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-947 (-168 *4))) (-4 *4 (-171))
- (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-947 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-171))
- (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-947 *4)) (-4 *4 (-1044))
- (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-947 *5)) (-5 *4 (-916)) (-4 *5 (-1044))
- (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554))
- (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-916)) (-4 *5 (-554))
- (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-406 (-947 (-168 *4)))) (-4 *4 (-554))
- (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-406 (-947 (-168 *5)))) (-5 *4 (-916))
- (-4 *5 (-554)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378)))
- (-5 *1 (-780 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-315 *4)) (-4 *4 (-554)) (-4 *4 (-845))
- (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-326 *3)) (-4 *3 (-1207))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-515 *3 *4)) (-4 *3 (-1207))
+ (-14 *4 (-562)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-639 (-480 *5 *6))) (-5 *4 (-859 *5))
+ (-14 *5 (-639 (-1168))) (-5 *2 (-480 *5 *6)) (-5 *1 (-627 *5 *6))
+ (-4 *6 (-451))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554))
- (-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378)))
- (-5 *1 (-780 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-315 (-168 *4))) (-4 *4 (-554)) (-4 *4 (-845))
- (-4 *4 (-610 (-378))) (-5 *2 (-168 (-378))) (-5 *1 (-780 *4))))
+ (-12 (-5 *3 (-639 (-480 *5 *6))) (-5 *4 (-859 *5))
+ (-14 *5 (-639 (-1168))) (-5 *2 (-480 *5 *6)) (-5 *1 (-627 *5 *6))
+ (-4 *6 (-451)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1164 *3)) (-4 *3 (-348)) (-5 *1 (-356 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112))
+ (-5 *2
+ (-2 (|:| |contp| (-562))
+ (|:| -2656 (-639 (-2 (|:| |irr| *3) (|:| -2794 (-562)))))))
+ (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562)))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-315 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-554))
- (-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378)))
- (-5 *1 (-780 *5)))))
+ (-12 (-5 *4 (-112))
+ (-5 *2
+ (-2 (|:| |contp| (-562))
+ (|:| -2656 (-639 (-2 (|:| |irr| *3) (|:| -2794 (-562)))))))
+ (-5 *1 (-1221 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-535)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-1102)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-766)) (-5 *5 (-639 *3)) (-4 *3 (-306)) (-4 *6 (-845))
+ (-4 *7 (-788)) (-5 *2 (-112)) (-5 *1 (-621 *6 *7 *3 *8))
+ (-4 *8 (-944 *3 *7 *6)))))
(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-467))))
((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1257))))
((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-1258)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *3)
- (-12 (|has| *6 (-6 -4403)) (-4 *4 (-362)) (-4 *5 (-372 *4))
- (-4 *6 (-372 *4)) (-5 *2 (-639 *6)) (-5 *1 (-520 *4 *5 *6 *3))
- (-4 *3 (-681 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (|has| *9 (-6 -4403)) (-4 *4 (-554)) (-4 *5 (-372 *4))
- (-4 *6 (-372 *4)) (-4 *7 (-987 *4)) (-4 *8 (-372 *7))
- (-4 *9 (-372 *7)) (-5 *2 (-639 *6))
- (-5 *1 (-521 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-681 *4 *5 *6))
- (-4 *10 (-681 *7 *8 *9))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-4 *3 (-554)) (-5 *2 (-639 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4))
- (-4 *6 (-372 *4)) (-5 *2 (-639 *6)) (-5 *1 (-682 *4 *5 *6 *3))
- (-4 *3 (-681 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
- (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-4 *5 (-554))
- (-5 *2 (-639 *7)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-639 (-683 *6))) (-5 *4 (-112)) (-5 *5 (-562))
+ (-5 *2 (-683 *6)) (-5 *1 (-1024 *6)) (-4 *6 (-362)) (-4 *6 (-1044))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 (-683 *4))) (-5 *2 (-683 *4)) (-5 *1 (-1024 *4))
+ (-4 *4 (-362)) (-4 *4 (-1044))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-639 (-683 *5))) (-5 *4 (-562)) (-5 *2 (-683 *5))
+ (-5 *1 (-1024 *5)) (-4 *5 (-362)) (-4 *5 (-1044)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-838 (-224)))) (-5 *4 (-224)) (-5 *2 (-639 *4))
- (-5 *1 (-266)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
- (-4 *4 (-1044)))))
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845)) (-4 *5 (-1058 *3 *4 *2)))))
+(((*1 *1 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))))
+(((*1 *2 *3 *3 *1)
+ (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-1096)) (-5 *1 (-290)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-743)))))
(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1054 (-1019 *3) (-1164 (-1019 *3))))
- (-5 *1 (-1019 *3)) (-4 *3 (-13 (-843) (-362) (-1017))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-639 (-608 *6))) (-5 *4 (-1168)) (-5 *2 (-608 *6))
- (-4 *6 (-429 *5)) (-4 *5 (-845)) (-5 *1 (-571 *5 *6)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-639 (-1164 *7))) (-5 *3 (-1164 *7))
- (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-904)) (-4 *5 (-788))
- (-4 *6 (-845)) (-5 *1 (-901 *4 *5 *6 *7))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-639 (-1164 *5))) (-5 *3 (-1164 *5))
- (-4 *5 (-1232 *4)) (-4 *4 (-904)) (-5 *1 (-902 *4 *5)))))
+ (-12
+ (-5 *2
+ (-639
+ (-2 (|:| |scalar| (-406 (-562))) (|:| |coeff| (-1164 *3))
+ (|:| |logand| (-1164 *3)))))
+ (-5 *1 (-583 *3)) (-4 *3 (-362)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1044)) (-5 *2 (-112)) (-5 *1 (-443 *4 *3))
- (-4 *3 (-1232 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2))
- (-4 *4 (-372 *2)))))
-(((*1 *1 *1 *1) (-4 *1 (-655))))
-(((*1 *1 *2) (-12 (-5 *2 (-315 (-168 (-378)))) (-5 *1 (-329))))
- ((*1 *1 *2) (-12 (-5 *2 (-315 (-562))) (-5 *1 (-329))))
- ((*1 *1 *2) (-12 (-5 *2 (-315 (-378))) (-5 *1 (-329))))
- ((*1 *1 *2) (-12 (-5 *2 (-315 (-688))) (-5 *1 (-329))))
- ((*1 *1 *2) (-12 (-5 *2 (-315 (-695))) (-5 *1 (-329))))
- ((*1 *1 *2) (-12 (-5 *2 (-315 (-693))) (-5 *1 (-329))))
- ((*1 *1) (-5 *1 (-329))))
-(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1177)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562))))
+ (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-451)) (-5 *2 (-112))
+ (-5 *1 (-359 *4 *5)) (-14 *5 (-639 (-1168)))))
((*1 *2 *3)
- (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 *10))
- (-5 *1 (-620 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1064 *5 *6 *7 *8))
- (-4 *10 (-1101 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451))
- (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1041 *5 *6)))
- (-5 *1 (-624 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451))
- (-14 *6 (-639 (-1168)))
- (-5 *2
- (-639 (-1138 *5 (-530 (-859 *6)) (-859 *6) (-775 *5 (-859 *6)))))
- (-5 *1 (-624 *5 *6))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-639 (-1022 *5 *6 *7 *8))) (-5 *1 (-1022 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-639 (-1022 *5 *6 *7 *8))) (-5 *1 (-1022 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-639 (-775 *5 (-859 *6)))) (-5 *4 (-112)) (-4 *5 (-451))
- (-14 *6 (-639 (-1168))) (-5 *2 (-639 (-1041 *5 *6)))
- (-5 *1 (-1041 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845)) (-5 *2 (-639 *1))
- (-4 *1 (-1064 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-639 (-1138 *5 *6 *7 *8))) (-5 *1 (-1138 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-639 (-1138 *5 *6 *7 *8))) (-5 *1 (-1138 *5 *6 *7 *8))))
+ (-12 (-5 *3 (-639 (-775 *4 (-859 *5)))) (-4 *4 (-451))
+ (-14 *5 (-639 (-1168))) (-5 *2 (-112)) (-5 *1 (-624 *4 *5)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-224))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-224))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-378))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-766)) (-5 *2 (-406 (-562))) (-5 *1 (-378)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-562)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-766)) (-4 *5 (-171))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766))
+ (-4 *4 (-171))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2))
+ (-4 *4 (-372 *2))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-1044)) (-4 *1 (-681 *3 *2 *4)) (-4 *2 (-372 *3))
+ (-4 *4 (-372 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1134 *2 *3)) (-14 *2 (-766)) (-4 *3 (-1044)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-766)) (-5 *1 (-584 *2)) (-4 *2 (-544))))
((*1 *2 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1))
- (-4 *1 (-1200 *4 *5 *6 *7)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))))
-(((*1 *1 *1 *1)
- (|partial| -12 (-4 *2 (-171)) (-5 *1 (-288 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1232 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
- (-14 *6 (-1 (-3 *4 "failed") *4 *4))
- (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-5 *1 (-706 *2 *3 *4 *5 *6)) (-4 *2 (-171))
- (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
- (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
+ (-12 (-5 *2 (-2 (|:| -3240 *3) (|:| -1300 (-766)))) (-5 *1 (-584 *3))
+ (-4 *3 (-544)))))
+(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
+(((*1 *1 *1 *1) (-4 *1 (-655))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1280 *3 *4)) (-4 *1 (-373 *3 *4)) (-4 *3 (-845))
+ (-4 *4 (-171))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-385 *2)) (-4 *2 (-1092))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-814 *2)) (-4 *2 (-845))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-814 *2)) (-4 *2 (-845))))
((*1 *1 *1 *1)
- (|partial| -12 (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *2 (-171))
- (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
- (-14 *5 (-1 (-3 *3 "failed") *3 *3))
- (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3)))))
-(((*1 *1 *2 *2 *3 *1)
- (-12 (-5 *2 (-1168)) (-5 *3 (-1096)) (-5 *1 (-290)))))
+ (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-814 *3)) (-4 *1 (-1273 *3 *4)) (-4 *3 (-845))
+ (-4 *4 (-1044))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-191))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-299))))
+ (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
+ (-5 *1 (-175 *3)))))
+(((*1 *2 *1) (-12 (-5 *1 (-173 *2)) (-4 *2 (-306))))
+ ((*1 *2 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306))))
+ ((*1 *2 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)) (-4 *2 (-306))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1053)) (-5 *2 (-562)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-112)) (-5 *5 (-683 (-168 (-224))))
+ (-5 *2 (-1030)) (-5 *1 (-750)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-232)) (-4 *3 (-1044)) (-4 *4 (-845)) (-4 *5 (-265 *4))
+ (-4 *6 (-788)) (-5 *2 (-1 *1 (-766))) (-4 *1 (-252 *3 *4 *5 *6))))
((*1 *2 *3)
- (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-304)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-133)))))
+ (-12 (-4 *4 (-1044)) (-4 *3 (-845)) (-4 *5 (-265 *3)) (-4 *6 (-788))
+ (-5 *2 (-1 *1 (-766))) (-4 *1 (-252 *4 *3 *5 *6))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-766)) (-4 *1 (-265 *2)) (-4 *2 (-845)))))
(((*1 *1 *1 *1) (-4 *1 (-655))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)) (-4 *2 (-362))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-362)) (-5 *1 (-653 *4 *2))
- (-4 *2 (-650 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1244 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-639 (-947 *4))) (-5 *3 (-639 (-1168))) (-4 *4 (-451))
- (-5 *1 (-913 *4)))))
+(((*1 *1 *1 *1) (-4 *1 (-544))))
+(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1259)))))
(((*1 *1) (-12 (-4 *1 (-464 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23))))
((*1 *1) (-5 *1 (-535))) ((*1 *1) (-4 *1 (-717)))
((*1 *1) (-4 *1 (-721)))
((*1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092))))
((*1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-845)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1232 (-406 (-562)))) (-5 *1 (-908 *3 *2))
- (-4 *2 (-1232 (-406 *3))))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-766)) (-5 *1 (-584 *2)) (-4 *2 (-544)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2649 "void")))
+ (-5 *1 (-436)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1044)) (-4 *2 (-681 *4 *5 *6))
- (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1232 *4)) (-4 *5 (-372 *4))
- (-4 *6 (-372 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1044)) (-4 *4 (-1232 *3)) (-5 *1 (-163 *3 *4 *2))
- (-4 *2 (-1232 *4))))
- ((*1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
- (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))))
+ (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1184 *4 *5))
+ (-4 *4 (-1092)) (-4 *5 (-1092)))))
+(((*1 *2)
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-683 (-406 *4))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
- (-14 *5 (-639 (-1168)))
- (-5 *2
- (-639 (-2 (|:| -1646 (-1164 *4)) (|:| -3593 (-639 (-947 *4))))))
- (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2
- (-639 (-2 (|:| -1646 (-1164 *5)) (|:| -3593 (-639 (-947 *5))))))
- (-5 *1 (-1282 *5 *6 *7)) (-5 *3 (-639 (-947 *5)))
- (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2
- (-639 (-2 (|:| -1646 (-1164 *5)) (|:| -3593 (-639 (-947 *5))))))
- (-5 *1 (-1282 *5 *6 *7)) (-5 *3 (-639 (-947 *5)))
- (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2
- (-639 (-2 (|:| -1646 (-1164 *5)) (|:| -3593 (-639 (-947 *5))))))
- (-5 *1 (-1282 *5 *6 *7)) (-5 *3 (-639 (-947 *5)))
- (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
+ (-12 (-4 *1 (-915)) (-5 *2 (-2 (|:| -4221 (-639 *1)) (|:| -3147 *1)))
+ (-5 *3 (-639 *1)))))
+(((*1 *2 *3 *4 *4 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
- (-5 *2
- (-639 (-2 (|:| -1646 (-1164 *4)) (|:| -3593 (-639 (-947 *4))))))
- (-5 *1 (-1282 *4 *5 *6)) (-5 *3 (-639 (-947 *4)))
- (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))))
-(((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1044))
- (-4 *2 (-1216 *3)))))
+ (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))))
(((*1 *1) (-4 *1 (-23)))
((*1 *1) (-12 (-4 *1 (-469 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23))))
((*1 *1) (-5 *1 (-535)))
((*1 *1) (-12 (-5 *1 (-887 *2)) (-4 *2 (-1092)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-554))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-554)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *1) (-4 *1 (-348))))
-(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2)
+ (-12 (-4 *4 (-362)) (-5 *2 (-766)) (-5 *1 (-327 *3 *4))
+ (-4 *3 (-328 *4))))
+ ((*1 *2) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-766)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2))
- (|has| *2 (-6 (-4404 "*"))) (-4 *2 (-1044))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-171))
- (-5 *1 (-682 *2 *4 *5 *3)) (-4 *3 (-681 *2 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2))
- (-4 *5 (-237 *3 *2)) (|has| *2 (-6 (-4404 "*"))) (-4 *2 (-1044)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-5 *2 (-417 *3))
- (-5 *1 (-737 *4 *5 *6 *3)) (-4 *3 (-944 *6 *4 *5)))))
+ (-12 (-4 *3 (-1044)) (-5 *2 (-1256 *3)) (-5 *1 (-707 *3 *4))
+ (-4 *4 (-1232 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)) (-4 *2 (-1192))))
+ ((*1 *2 *1) (-12 (-5 *1 (-330 *2)) (-4 *2 (-845))))
+ ((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-608 *3)) (-4 *3 (-845)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-639 (-293 *4))) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845))
+ (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-916)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
+ ((*1 *1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-262)))))
+(((*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1092)) (-4 *5 (-1092))
- (-5 *2 (-1 *5 *4)) (-5 *1 (-677 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-843)) (-5 *2 (-562))))
- ((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-900 *3)) (-4 *3 (-1092))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362)))
- (-4 *3 (-1232 *4)) (-5 *2 (-562))))
- ((*1 *2 *3)
- (|partial| -12
- (-4 *4 (-13 (-554) (-845) (-1033 *2) (-635 *2) (-451)))
- (-5 *2 (-562)) (-5 *1 (-1108 *4 *3))
- (-4 *3 (-13 (-27) (-1192) (-429 *4)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-838 *3))
- (-4 *3 (-13 (-27) (-1192) (-429 *6)))
- (-4 *6 (-13 (-554) (-845) (-1033 *2) (-635 *2) (-451)))
- (-5 *2 (-562)) (-5 *1 (-1108 *6 *3))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-1150))
- (-4 *6 (-13 (-554) (-845) (-1033 *2) (-635 *2) (-451)))
- (-5 *2 (-562)) (-5 *1 (-1108 *6 *3))
- (-4 *3 (-13 (-27) (-1192) (-429 *6)))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-451)) (-5 *2 (-562))
- (-5 *1 (-1109 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-838 (-406 (-947 *6))))
- (-5 *3 (-406 (-947 *6))) (-4 *6 (-451)) (-5 *2 (-562))
- (-5 *1 (-1109 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-406 (-947 *6))) (-5 *4 (-1168))
- (-5 *5 (-1150)) (-4 *6 (-451)) (-5 *2 (-562)) (-5 *1 (-1109 *6))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *2 (-562)) (-5 *1 (-1189 *3)) (-4 *3 (-1044)))))
+ (-12 (-5 *3 (-224)) (-5 *2 (-112)) (-5 *1 (-298 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1086 (-838 (-224)))) (-5 *3 (-224)) (-5 *2 (-112))
+ (-5 *1 (-304))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
+ (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-114))))
+ ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-114))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845))
+ (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-766))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845))
+ (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-766))))
+ ((*1 *2 *1) (-12 (-4 *1 (-265 *3)) (-4 *3 (-845)) (-5 *2 (-766)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -2797)) (-5 *2 (-112)) (-5 *1 (-613))))
+ (-12 (-5 *3 (|[\|\|]| -2796)) (-5 *2 (-112)) (-5 *1 (-613))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -4378)) (-5 *2 (-112)) (-5 *1 (-613))))
+ (-12 (-5 *3 (|[\|\|]| -4380)) (-5 *2 (-112)) (-5 *1 (-613))))
((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| -1615)) (-5 *2 (-112)) (-5 *1 (-613))))
((*1 *2 *1 *3)
@@ -11996,442 +11891,529 @@
(-12 (-5 *3 (|[\|\|]| (-224))) (-5 *2 (-112)) (-5 *1 (-1173))))
((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| (-562))) (-5 *2 (-112)) (-5 *1 (-1173)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1266)))))
-(((*1 *2 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-746)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-528))))
- ((*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-528)))))
-(((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259))))
- ((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4))
- (-4 *4 (-348)))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-224) (-224) (-224)))
+ (-5 *4 (-1 (-224) (-224) (-224) (-224)))
+ (-5 *2 (-1 (-938 (-224)) (-224) (-224))) (-5 *1 (-691)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-562)) (-4 *5 (-348)) (-5 *2 (-417 (-1164 (-1164 *5))))
+ (-5 *1 (-1205 *5)) (-5 *3 (-1164 (-1164 *5))))))
+(((*1 *2 *2) (-12 (-5 *2 (-387)) (-5 *1 (-435))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-387)) (-5 *1 (-435)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-451)) (-4 *3 (-845)) (-4 *3 (-1033 (-562)))
+ (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-429 *3))
+ (-4 *2
+ (-13 (-362) (-301)
+ (-10 -8 (-15 -4063 ((-1117 *3 (-608 $)) $))
+ (-15 -4079 ((-1117 *3 (-608 $)) $))
+ (-15 -4053 ($ (-1117 *3 (-608 $))))))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| -4310 *1) (|:| -4390 *1) (|:| |associate| *1)))
+ (-4 *1 (-554)))))
+(((*1 *2 *3 *3 *3 *4)
(-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-746)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-329)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-788)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *6 (-845))
- (-5 *2 (-112)) (-5 *1 (-448 *4 *5 *6 *7)))))
+ (-5 *1 (-752)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
- (-5 *2 (-2 (|:| -1450 (-639 *6)) (|:| -3316 (-639 *6)))))))
-(((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
+ (|partial| -12
+ (-4 *3 (-13 (-845) (-1033 (-562)) (-635 (-562)) (-451)))
+ (-5 *2
+ (-2
+ (|:| |%term|
+ (-2 (|:| |%coef| (-1241 *4 *5 *6))
+ (|:| |%expon| (-318 *4 *5 *6))
+ (|:| |%expTerms|
+ (-639 (-2 (|:| |k| (-406 (-562))) (|:| |c| *4))))))
+ (|:| |%type| (-1150))))
+ (-5 *1 (-1242 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1192) (-429 *3)))
+ (-14 *5 (-1168)) (-14 *6 *4))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-279)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-562)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1207))
+ (-4 *3 (-372 *4)) (-4 *5 (-372 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *2 (-1044)) (-5 *1 (-50 *2 *3)) (-14 *3 (-639 (-1168)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-639 (-916))) (-4 *2 (-362)) (-5 *1 (-151 *4 *2 *5))
+ (-14 *4 (-916)) (-14 *5 (-988 *4 *2))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-315 *3)) (-5 *1 (-222 *3 *4))
+ (-4 *3 (-13 (-1044) (-845))) (-14 *4 (-639 (-1168)))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-322 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-130))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-381 *2 *3)) (-4 *3 (-1092)) (-4 *2 (-1044))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-4 *2 (-554)) (-5 *1 (-619 *2 *4))
+ (-4 *4 (-1232 *2))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-703 *2)) (-4 *2 (-1044))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *2 (-1044)) (-5 *1 (-730 *2 *3)) (-4 *3 (-721))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-639 *5)) (-5 *3 (-639 (-766))) (-4 *1 (-735 *4 *5))
+ (-4 *4 (-1044)) (-4 *5 (-845))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-766)) (-4 *1 (-735 *4 *2)) (-4 *4 (-1044))
+ (-4 *2 (-845))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-766)) (-4 *1 (-847 *2)) (-4 *2 (-1044))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-639 *6)) (-5 *3 (-639 (-766))) (-4 *1 (-944 *4 *5 *6))
+ (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *6 (-845))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-766)) (-4 *1 (-944 *4 *5 *2)) (-4 *4 (-1044))
+ (-4 *5 (-788)) (-4 *2 (-845))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-766)) (-4 *2 (-944 *4 (-530 *5) *5))
+ (-5 *1 (-1118 *4 *5 *2)) (-4 *4 (-1044)) (-4 *5 (-845))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-766)) (-5 *2 (-947 *4)) (-5 *1 (-1201 *4))
+ (-4 *4 (-1044)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123)))
((*1 *1 *1 *1) (-5 *1 (-1112))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-971 *4 *5 *6 *3)) (-4 *4 (-1044)) (-4 *5 (-788))
- (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-4 *4 (-554))
- (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
- ((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-1273 *3 *4)) (-4 *3 (-845))
- (-4 *4 (-1044)) (-4 *4 (-171))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044))
- (-4 *3 (-171)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-112)) (-5 *5 (-562)) (-4 *6 (-362)) (-4 *6 (-367))
- (-4 *6 (-1044)) (-5 *2 (-639 (-639 (-683 *6)))) (-5 *1 (-1024 *6))
- (-5 *3 (-639 (-683 *6)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-362)) (-4 *4 (-367)) (-4 *4 (-1044))
- (-5 *2 (-639 (-639 (-683 *4)))) (-5 *1 (-1024 *4))
- (-5 *3 (-639 (-683 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-362)) (-4 *5 (-367)) (-4 *5 (-1044))
- (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5))
- (-5 *3 (-639 (-683 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-916)) (-4 *5 (-362)) (-4 *5 (-367)) (-4 *5 (-1044))
- (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5))
- (-5 *3 (-639 (-683 *5))))))
-(((*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-97)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-348)) (-4 *2 (-1044)) (-5 *1 (-707 *2 *3))
- (-4 *3 (-1232 *2)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451))
- (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *1 (-972 *3 *4 *5 *6)))))
-(((*1 *1 *1) (-12 (-5 *1 (-173 *2)) (-4 *2 (-306))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562))))
- ((*1 *1 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207))))
- ((*1 *1 *1) (-4 *1 (-864 *2)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-968 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-787))
- (-4 *4 (-845)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-898 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-639 (-1206))) (-5 *3 (-1206)) (-5 *1 (-675)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-516)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1256 (-1168))) (-5 *3 (-1256 (-452 *4 *5 *6 *7)))
+ (-5 *1 (-452 *4 *5 *6 *7)) (-4 *4 (-171)) (-14 *5 (-916))
+ (-14 *6 (-639 (-1168))) (-14 *7 (-1256 (-683 *4)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-452 *4 *5 *6 *7)))
+ (-5 *1 (-452 *4 *5 *6 *7)) (-4 *4 (-171)) (-14 *5 (-916))
+ (-14 *6 (-639 *2)) (-14 *7 (-1256 (-683 *4)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1256 (-452 *3 *4 *5 *6))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168)))
+ (-14 *6 (-1256 (-683 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1256 (-1168))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-171)) (-14 *4 (-916)) (-14 *5 (-639 (-1168)))
+ (-14 *6 (-1256 (-683 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1168)) (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171))
+ (-14 *4 (-916)) (-14 *5 (-639 *2)) (-14 *6 (-1256 (-683 *3)))))
+ ((*1 *1)
+ (-12 (-5 *1 (-452 *2 *3 *4 *5)) (-4 *2 (-171)) (-14 *3 (-916))
+ (-14 *4 (-639 (-1168))) (-14 *5 (-1256 (-683 *2))))))
+(((*1 *2 *1) (-12 (-4 *1 (-950)) (-5 *2 (-639 (-639 (-938 (-224)))))))
+ ((*1 *2 *1) (-12 (-4 *1 (-969)) (-5 *2 (-639 (-639 (-938 (-224))))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *1)
+ (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171))
+ (-4 *5 (-237 (-3492 *3) (-766)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2464 *2) (|:| -1300 *5))
+ (-2 (|:| -2464 *2) (|:| -1300 *5))))
+ (-4 *2 (-845)) (-5 *1 (-460 *3 *4 *2 *5 *6 *7))
+ (-4 *7 (-944 *4 *5 (-859 *3))))))
(((*1 *1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1 *1) (-5 *1 (-857)))
((*1 *1 *1 *1) (-4 *1 (-962))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-562)) (|has| *1 (-6 -4403)) (-4 *1 (-1244 *3))
- (-4 *3 (-1207)))))
-(((*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
+ (-12 (-5 *4 (-639 (-112))) (-5 *5 (-683 (-224)))
+ (-5 *6 (-683 (-562))) (-5 *7 (-224)) (-5 *3 (-562)) (-5 *2 (-1030))
+ (-5 *1 (-749)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-1148 *3))) (-5 *2 (-1148 *3)) (-5 *1 (-1152 *3))
+ (-4 *3 (-38 (-406 (-562)))) (-4 *3 (-1044)))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-112))
+ (-5 *2 (-1030)) (-5 *1 (-748)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-683 (-406 (-947 (-562))))) (-5 *2 (-639 (-315 (-562))))
- (-5 *1 (-1026)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044))
- (-4 *4 (-788)) (-4 *5 (-845)) (-4 *3 (-554)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34)))
- (-4 *3 (-13 (-1092) (-34))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-608 (-48)))) (-5 *1 (-48))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-608 (-48))) (-5 *1 (-48))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1164 (-48))) (-5 *3 (-639 (-608 (-48)))) (-5 *1 (-48))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1164 (-48))) (-5 *3 (-608 (-48))) (-5 *1 (-48))))
- ((*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3))
- (-4 *3 (-1232 (-168 *2)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-916)) (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367))))
- ((*1 *2 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-362))))
+ (-12 (-5 *3 (-1164 *7)) (-4 *7 (-944 *6 *4 *5)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1044)) (-5 *2 (-1164 *6))
+ (-5 *1 (-320 *4 *5 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1277 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
+ (-5 *2 (-814 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-369 *2 *3)) (-4 *3 (-1232 *2)) (-4 *2 (-171))))
+ (-12 (-4 *2 (-841)) (-5 *1 (-1279 *3 *2)) (-4 *3 (-1044)))))
+(((*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787))))
((*1 *2 *1)
- (-12 (-4 *4 (-1232 *2)) (-4 *2 (-987 *3)) (-5 *1 (-412 *3 *2 *4 *5))
- (-4 *3 (-306)) (-4 *5 (-13 (-408 *2 *4) (-1033 *2)))))
+ (-12 (-5 *2 (-766)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044))
+ (-14 *4 (-639 (-1168)))))
((*1 *2 *1)
- (-12 (-4 *4 (-1232 *2)) (-4 *2 (-987 *3))
- (-5 *1 (-413 *3 *2 *4 *5 *6)) (-4 *3 (-306)) (-4 *5 (-408 *2 *4))
- (-14 *6 (-1256 *5))))
+ (-12 (-5 *2 (-562)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845)))
+ (-14 *4 (-639 (-1168)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845))
+ (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-766))))
+ ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-274))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-916)) (-4 *5 (-1044))
- (-4 *2 (-13 (-403) (-1033 *5) (-362) (-1192) (-283)))
- (-5 *1 (-442 *5 *3 *2)) (-4 *3 (-1232 *5))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-608 (-494)))) (-5 *1 (-494))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-608 (-494))) (-5 *1 (-494))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1164 (-494))) (-5 *3 (-639 (-608 (-494))))
- (-5 *1 (-494))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1164 (-494))) (-5 *3 (-608 (-494))) (-5 *1 (-494))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1256 *4)) (-5 *3 (-916)) (-4 *4 (-348))
- (-5 *1 (-527 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-451)) (-4 *5 (-719 *4 *2)) (-4 *2 (-1232 *4))
- (-5 *1 (-770 *4 *2 *5 *3)) (-4 *3 (-1232 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171))))
- ((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171))))
- ((*1 *1 *1) (-4 *1 (-1053))))
-(((*1 *1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1 *1) (-5 *1 (-857)))
- ((*1 *1 *1 *1) (-4 *1 (-962))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261))
- (-5 *1 (-1065 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261))
- (-5 *1 (-1100 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
-(((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1035)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
-(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-545))))))
-(((*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
-(((*1 *2) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-1190)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-38 (-406 (-562))))
- (-4 *2 (-171)))))
-(((*1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1) (-5 *1 (-857)))
- ((*1 *1 *1) (-4 *1 (-962))) ((*1 *1 *1) (-5 *1 (-1112))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1606 (-777 *3)) (|:| |coef2| (-777 *3))))
- (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *2 (-2 (|:| -1606 *1) (|:| |coef2| *1)))
- (-4 *1 (-1058 *3 *4 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-816)) (-5 *2 (-52)) (-5 *1 (-826)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-639 (-480 *3 *4))) (-14 *3 (-639 (-1168)))
- (-4 *4 (-451)) (-5 *1 (-627 *3 *4)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-683 *6)) (-5 *5 (-1 (-417 (-1164 *6)) (-1164 *6)))
- (-4 *6 (-362))
- (-5 *2
- (-639
- (-2 (|:| |outval| *7) (|:| |outmult| (-562))
- (|:| |outvect| (-639 (-683 *7))))))
- (-5 *1 (-531 *6 *7 *4)) (-4 *7 (-362)) (-4 *4 (-13 (-362) (-843))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
- (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5))))
+ (-12 (-5 *3 (-1164 *8)) (-5 *4 (-639 *6)) (-4 *6 (-845))
+ (-4 *8 (-944 *7 *5 *6)) (-4 *5 (-788)) (-4 *7 (-1044))
+ (-5 *2 (-639 (-766))) (-5 *1 (-320 *5 *6 *7 *8))))
+ ((*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-916))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-373 *3 *4)) (-4 *3 (-845)) (-4 *4 (-171))
+ (-5 *2 (-766))))
+ ((*1 *2 *1) (-12 (-4 *1 (-469 *3 *2)) (-4 *3 (-171)) (-4 *2 (-23))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-554)) (-5 *2 (-562)) (-5 *1 (-619 *3 *4))
+ (-4 *4 (-1232 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-703 *3)) (-4 *3 (-1044)) (-5 *2 (-766))))
+ ((*1 *2 *1) (-12 (-4 *1 (-847 *3)) (-4 *3 (-1044)) (-5 *2 (-766))))
+ ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-899 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-900 *3)) (-4 *3 (-1092))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788))
- (-5 *2 (-112)) (-5 *1 (-503 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1173)))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-639
- (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-766)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *3 (-788)) (-4 *6 (-944 *4 *3 *5)) (-4 *4 (-451)) (-4 *5 (-845))
- (-5 *1 (-448 *4 *3 *5 *6)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4))))
- (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-362)) (-4 *3 (-1044))
- (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-847 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-362)) (-4 *5 (-1044))
- (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-848 *5 *3))
- (-4 *3 (-847 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
-(((*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-743)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1280 *3 *4)) (-4 *1 (-373 *3 *4)) (-4 *3 (-845))
- (-4 *4 (-171))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-385 *2)) (-4 *2 (-1092))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-814 *2)) (-4 *2 (-845))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-814 *2)) (-4 *2 (-845))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-814 *3)) (-4 *1 (-1273 *3 *4)) (-4 *3 (-845))
- (-4 *4 (-1044))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-639 *3)) (-4 *3 (-1207)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433)))))
+ (-12 (-5 *3 (-639 *6)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 (-766)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-944 *4 *5 *3)) (-4 *4 (-1044)) (-4 *5 (-788))
+ (-4 *3 (-845)) (-5 *2 (-766))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-968 *3 *2 *4)) (-4 *3 (-1044)) (-4 *4 (-845))
+ (-4 *2 (-787))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-766))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1218 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1247 *3))
+ (-5 *2 (-562))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1239 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1216 *3))
+ (-5 *2 (-406 (-562)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-828 (-916)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1277 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
+ (-5 *2 (-766)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *2 (-1092)) (-5 *1 (-1184 *3 *2)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1044)) (-5 *2 (-1256 *3)) (-5 *1 (-707 *3 *4))
- (-4 *4 (-1232 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-451)) (-4 *3 (-845)) (-4 *3 (-1033 (-562)))
- (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-429 *3))
- (-4 *2
- (-13 (-362) (-301)
- (-10 -8 (-15 -4065 ((-1117 *3 (-608 $)) $))
- (-15 -4076 ((-1117 *3 (-608 $)) $))
- (-15 -4054 ($ (-1117 *3 (-608 $))))))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-639 (-1206))) (-5 *3 (-1206)) (-5 *1 (-675)))))
+ (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *2 (-639 (-639 *3)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
+ (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-639 (-639 *5)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-639 *3))) (-5 *1 (-1179 *3)) (-4 *3 (-1092)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1164 *7)) (-4 *7 (-944 *6 *4 *5)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1044)) (-5 *2 (-1164 *6))
- (-5 *1 (-320 *4 *5 *6 *7)))))
+ (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4))))
+ ((*1 *2 *3 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))))
+(((*1 *1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1 *1) (-5 *1 (-857)))
+ ((*1 *1 *1 *1) (-4 *1 (-962))))
+(((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-402 *3)) (-4 *3 (-403))))
+ ((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-402 *3)) (-4 *3 (-403))))
+ ((*1 *2 *2) (-12 (-5 *2 (-916)) (|has| *1 (-6 -4394)) (-4 *1 (-403))))
+ ((*1 *2) (-12 (-4 *1 (-403)) (-5 *2 (-916))))
+ ((*1 *2 *1) (-12 (-4 *1 (-864 *3)) (-5 *2 (-1148 (-562))))))
(((*1 *2 *2)
(-12
(-5 *2
- (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224)))
+ (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224)))
(|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224))))
(|:| |ub| (-639 (-838 (-224))))))
(-5 *1 (-266)))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3))
+ (-4 *3 (-1232 (-168 *2)))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3))
+ (-4 *3 (-1232 (-168 *2))))))
+(((*1 *2)
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
+(((*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-362)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
+ (-5 *1 (-520 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4))
+ (-4 *7 (-987 *4)) (-4 *2 (-681 *7 *8 *9))
+ (-5 *1 (-521 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-681 *4 *5 *6))
+ (-4 *8 (-372 *7)) (-4 *9 (-372 *7))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2))
+ (-4 *4 (-372 *2)) (-4 *2 (-306))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-306)) (-4 *3 (-171)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2))
+ (-4 *2 (-681 *3 *4 *5))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1047 *2 *3 *4 *5 *6)) (-4 *4 (-1044))
+ (-4 *5 (-237 *3 *4)) (-4 *6 (-237 *2 *4)) (-4 *4 (-306)))))
+(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
+ (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562))
+ (-5 *2 (-1030)) (-5 *1 (-751)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-348)) (-5 *2 (-953 (-1164 *4))) (-5 *1 (-356 *4))
+ (-5 *3 (-1164 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1150)) (-5 *1 (-1188)))))
+(((*1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1) (-5 *1 (-857)))
+ ((*1 *1 *1) (-4 *1 (-962))) ((*1 *1 *1) (-5 *1 (-1112))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-554)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
+ (-5 *1 (-1197 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1168)) (-5 *2 (-1 (-1164 (-947 *4)) (-947 *4)))
+ (-5 *1 (-1264 *4)) (-4 *4 (-362)))))
+(((*1 *2 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-168 (-224)))) (-5 *2 (-1030))
+ (-5 *1 (-749)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329))
(-5 *1 (-331)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-301))))
+ ((*1 *1 *1) (-4 *1 (-301)))
+ ((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857))))
+ ((*1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 (-168 (-406 (-562))))) (-5 *2 (-639 (-168 *4)))
+ (-5 *1 (-759 *4)) (-4 *4 (-13 (-362) (-843))))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-639 (-608 *2))) (-5 *4 (-1168))
+ (-4 *2 (-13 (-27) (-1192) (-429 *5)))
+ (-4 *5 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-276 *5 *2)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1007)) (-5 *2 (-857)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-639 *3)) (-4 *3 (-1207)))))
+(((*1 *2 *2) (-12 (-5 *1 (-584 *2)) (-4 *2 (-544)))))
(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-639 (-406 *7)))
+ (-4 *7 (-1232 *6)) (-5 *3 (-406 *7)) (-4 *6 (-362))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-572 *6 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-947 (-562)))) (-5 *1 (-436))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-683 (-224))) (-5 *2 (-1096))
+ (-5 *1 (-754))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-683 (-562))) (-5 *2 (-1096))
+ (-5 *1 (-754)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378))
+ (|:| |expense| (-378)) (|:| |accuracy| (-378))
+ (|:| |intermediateResults| (-378))))
+ (-5 *2 (-1030)) (-5 *1 (-304)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 (-143))) (-5 *1 (-140))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-140)))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-171)) (-4 *2 (-554))))
+ ((*1 *1 *1) (|partial| -4 *1 (-717))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-766)) (-4 *4 (-1044))
+ (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-1232 *4)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
+ (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
+ (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
+ (|:| |abserr| (-224)) (|:| |relerr| (-224))))
+ (-5 *2 (-378)) (-5 *1 (-204)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-1 (-112) *8))) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-2 (|:| |goodPols| (-639 *8)) (|:| |badPols| (-639 *8))))
+ (-5 *1 (-972 *5 *6 *7 *8)) (-5 *4 (-639 *8)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1501 *4))))
+ (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-916)) (-4 *1 (-237 *3 *4)) (-4 *4 (-1044))
+ (-4 *4 (-1207))))
+ ((*1 *1 *2)
+ (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171))
+ (-4 *5 (-237 (-3492 *3) (-766)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2464 *2) (|:| -1300 *5))
+ (-2 (|:| -2464 *2) (|:| -1300 *5))))
+ (-5 *1 (-460 *3 *4 *2 *5 *6 *7)) (-4 *2 (-845))
+ (-4 *7 (-944 *4 *5 (-859 *3)))))
+ ((*1 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168))
+ (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *1 (-799 *4 *2)) (-4 *2 (-13 (-29 *4) (-1192) (-954))))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1200 *2 *3 *4 *5)) (-4 *2 (-554)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *5 (-1058 *2 *3 *4)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-562)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1207))
(-4 *5 (-372 *4)) (-4 *2 (-372 *4))))
((*1 *2 *1 *3)
(-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *6 *7 *2)) (-4 *6 (-1044))
(-4 *7 (-237 *5 *6)) (-4 *2 (-237 *4 *6)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044))))
+ ((*1 *2)
+ (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-938 (-224)) (-938 (-224)))) (-5 *1 (-262))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-328 *4)) (-4 *4 (-362))
+ (-5 *2 (-683 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-1256 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
+ (-5 *2 (-683 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
+ (-5 *2 (-1256 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171))
+ (-4 *5 (-1232 *4)) (-5 *2 (-683 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171))
+ (-4 *5 (-1232 *4)) (-5 *2 (-1256 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-408 *4 *5)) (-4 *4 (-171))
+ (-4 *5 (-1232 *4)) (-5 *2 (-683 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3))
+ (-5 *2 (-1256 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-416 *4)) (-4 *4 (-171))
+ (-5 *2 (-683 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-1256 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 (-683 *5))) (-5 *3 (-683 *5)) (-4 *5 (-362))
+ (-5 *2 (-1256 *5)) (-5 *1 (-1078 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4)))
+ (-5 *2 (-1256 *6)) (-5 *1 (-335 *3 *4 *5 *6))
+ (-4 *6 (-341 *3 *4 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878))
+ (-5 *3 (-639 (-562))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-562)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-306))
+ (-4 *9 (-944 *8 *6 *7))
+ (-5 *2 (-2 (|:| -4201 (-1164 *9)) (|:| |polval| (-1164 *8))))
+ (-5 *1 (-737 *6 *7 *8 *9)) (-5 *3 (-1164 *9)) (-5 *4 (-1164 *8)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-325 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044))
+ (-4 *2 (-451))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 *4)) (-4 *4 (-1232 (-562))) (-5 *2 (-639 (-562)))
+ (-5 *1 (-485 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-451))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845)) (-4 *3 (-451)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *2)) (-4 *2 (-171))))
+ ((*1 *2) (-12 (-4 *2 (-171)) (-5 *1 (-415 *3 *2)) (-4 *3 (-416 *2))))
+ ((*1 *2) (-12 (-4 *1 (-416 *2)) (-4 *2 (-171)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1606 *3)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-856))))
((*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-856)))))
+(((*1 *2 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-1044))))
+ ((*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-639 (-938 *4))) (-4 *1 (-1126 *4)) (-4 *4 (-1044))
+ (-5 *2 (-766)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-2 (|:| -1635 *4) (|:| -2250 (-562)))))
+ (-4 *4 (-1232 (-562))) (-5 *2 (-732 (-766))) (-5 *1 (-441 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-417 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-1044))
+ (-5 *2 (-732 (-766))) (-5 *1 (-443 *4 *5)))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
+ (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-224))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))))
+ (-5 *2 (-1030)) (-5 *1 (-744))))
+ ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
+ (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-224))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))))
+ (-5 *8 (-387)) (-5 *2 (-1030)) (-5 *1 (-744)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+(((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-887 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1113 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
+ (-4 *6 (-788)) (-5 *2 (-639 *3)) (-5 *1 (-919 *4 *5 *6 *3))
+ (-4 *3 (-944 *4 *6 *5)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *2 *3 *2 *4 *5)
+ (-12 (-5 *2 (-639 *3)) (-5 *5 (-916)) (-4 *3 (-1232 *4))
+ (-4 *4 (-306)) (-5 *1 (-459 *4 *3)))))
(((*1 *1 *2 *3 *1)
(-12 (-5 *2 (-1168)) (-5 *3 (-639 (-960))) (-5 *1 (-290)))))
-(((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-112)) (-5 *1 (-887 *4))
- (-4 *4 (-1092)))))
-(((*1 *2 *1)
+(((*1 *2 *1) (-12 (-4 *1 (-424 *3)) (-4 *3 (-1092)) (-5 *2 (-766)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-401)) (-5 *2 (-766))))
+ ((*1 *1 *1) (-4 *1 (-401))))
+(((*1 *2 *1 *1)
(-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
(-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
(-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
- (|partial| -12 (-5 *2 (-639 (-1164 *11))) (-5 *3 (-1164 *11))
- (-5 *4 (-639 *10)) (-5 *5 (-639 *8)) (-5 *6 (-639 (-766)))
- (-5 *7 (-1256 (-639 (-1164 *8)))) (-4 *10 (-845))
- (-4 *8 (-306)) (-4 *11 (-944 *8 *9 *10)) (-4 *9 (-788))
- (-5 *1 (-702 *9 *10 *8 *11)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-639 *3)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-416 *4)))))
-(((*1 *1) (-5 *1 (-55))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-683 *4)) (-4 *4 (-1044)) (-5 *1 (-1134 *3 *4))
- (-14 *3 (-766)))))
-(((*1 *1) (-5 *1 (-798))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-1150)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845)) (-4 *5 (-1058 *3 *4 *2)))))
+(((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1168)) (-5 *3 (-112)) (-5 *1 (-887 *4))
+ (-4 *4 (-1092)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2
- (|:| |endPointContinuity|
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular|
- "There are singularities at both end points")
- (|:| |notEvaluated|
- "End point continuity not yet evaluated")))
- (|:| |singularitiesStream|
- (-3 (|:| |str| (-1148 (-224)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -1590
- (-3 (|:| |finite| "The range is finite")
- (|:| |lowerInfinite| "The bottom of range is infinite")
- (|:| |upperInfinite| "The top of range is infinite")
- (|:| |bothInfinite|
- "Both top and bottom points are infinite")
- (|:| |notEvaluated| "Range not yet evaluated")))))
- (-5 *2 (-1030)) (-5 *1 (-304)))))
+ (-12 (-5 *3 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044))
+ (-5 *2 (-480 *4 *5)) (-5 *1 (-939 *4 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-639 (-1068 *4 *5 *2))) (-4 *4 (-1092))
+ (-4 *5 (-13 (-1044) (-881 *4) (-845) (-610 (-887 *4))))
+ (-4 *2 (-13 (-429 *5) (-881 *4) (-610 (-887 *4))))
+ (-5 *1 (-54 *4 *5 *2))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-639 (-1068 *5 *6 *2))) (-5 *4 (-916)) (-4 *5 (-1092))
+ (-4 *6 (-13 (-1044) (-881 *5) (-845) (-610 (-887 *5))))
+ (-4 *2 (-13 (-429 *6) (-881 *5) (-610 (-887 *5))))
+ (-5 *1 (-54 *5 *6 *2)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-536 *3 *2))
- (-4 *2 (-1247 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-4 *4 (-1232 *3))
- (-4 *5 (-719 *3 *4)) (-5 *1 (-540 *3 *4 *5 *2)) (-4 *2 (-1247 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-5 *1 (-541 *3 *2))
- (-4 *2 (-1247 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-13 (-554) (-146)))
- (-5 *1 (-1144 *3)))))
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224)))
- (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-66 FUNCT1))))
- (-5 *2 (-1030)) (-5 *1 (-748)))))
-(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092))
+ (-5 *2 (-639 (-2 (|:| |k| *4) (|:| |c| *3))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-2 (|:| |k| (-888 *3)) (|:| |c| *4))))
+ (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845))
+ (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-666 *3))) (-5 *1 (-888 *3)) (-4 *3 (-845)))))
+(((*1 *2 *3 *4 *4 *3)
(-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-751)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -1606 (-777 *3)) (|:| |coef1| (-777 *3))
- (|:| |coef2| (-777 *3))))
- (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *2 (-2 (|:| -1606 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-1058 *3 *4 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-857)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-416 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-887 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1) (-12 (-4 *1 (-1113 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-52)) (-5 *1 (-824)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
- ((*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *1 *1) (-4 *1 (-1131))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-362)) (-4 *3 (-1044))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3148 *1)))
- (-4 *1 (-847 *3)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044))
- (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-554))
- (-5 *2 (-2 (|:| -1545 (-683 *5)) (|:| |vec| (-1256 (-639 (-916))))))
- (-5 *1 (-90 *5 *3)) (-5 *4 (-916)) (-4 *3 (-650 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
- (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-845)) (-4 *5 (-788))
- (-4 *6 (-554)) (-4 *7 (-944 *6 *5 *3))
- (-5 *1 (-461 *5 *3 *6 *7 *2))
- (-4 *2
- (-13 (-1033 (-406 (-562))) (-362)
- (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $))
- (-15 -4076 (*7 $))))))))
-(((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001))))
- ((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1168))
- (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-5 *1 (-1171)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4))
- (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
-(((*1 *1 *1) (-5 *1 (-1056))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-1082)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-417 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1232 (-48)))))
- ((*1 *2 *3 *1)
- (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3))))
- (-5 *1 (-121 *3)) (-4 *3 (-845))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-583 *4)) (-4 *4 (-13 (-29 *3) (-1192)))
- (-4 *3 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))))
- (-5 *1 (-581 *3 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-583 (-406 (-947 *3))))
- (-4 *3 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))))
- (-5 *1 (-586 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-362))
- (-5 *2 (-2 (|:| -2451 *3) (|:| |special| *3))) (-5 *1 (-722 *5 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1256 *5)) (-4 *5 (-362)) (-4 *5 (-1044))
- (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5))
- (-5 *3 (-639 (-683 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1256 (-1256 *5))) (-4 *5 (-362)) (-4 *5 (-1044))
- (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5))
- (-5 *3 (-639 (-683 *5)))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-140)) (-5 *2 (-639 *1)) (-4 *1 (-1136))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-143)) (-5 *2 (-639 *1)) (-4 *1 (-1136)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-306)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
- (-5 *1 (-1116 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-109)) (-5 *1 (-174))))
- ((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-109)) (-5 *1 (-1077)))))
+ (-5 *1 (-747)))))
(((*1 *2 *1)
(-12 (-5 *2 (-766)) (-5 *1 (-135 *3 *4 *5)) (-14 *3 (-562))
(-14 *4 *2) (-4 *5 (-171))))
@@ -12449,8 +12431,8 @@
(-12 (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)) (-4 *5 (-362))
(-5 *2 (-766)) (-5 *1 (-661 *5))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4403))))
- (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))) (-5 *2 (-766))
+ (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4404))))
+ (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4404)))) (-5 *2 (-766))
(-5 *1 (-662 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4))))
((*1 *2 *1)
(-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
@@ -12463,134 +12445,26 @@
(-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
(-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-4 *5 (-554))
(-5 *2 (-766)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-764))
- (-5 *2
- (-2 (|:| -2172 (-378)) (|:| -3254 (-1150))
- (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))))
- (-5 *1 (-563))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-764)) (-5 *4 (-1056))
- (-5 *2
- (-2 (|:| -2172 (-378)) (|:| -3254 (-1150))
- (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))))
- (-5 *1 (-563))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-782)) (-5 *3 (-1056))
- (-5 *4
- (-2 (|:| |fn| (-315 (-224)))
- (|:| -1590 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (-5 *2
- (-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))
- (|:| |extra| (-1030))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-782)) (-5 *3 (-1056))
- (-5 *4
- (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (-5 *2
- (-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))
- (|:| |extra| (-1030))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-795)) (-5 *3 (-1056))
- (-5 *4
- (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
- (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
- (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
- (|:| |abserr| (-224)) (|:| |relerr| (-224))))
- (-5 *2 (-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-803))
- (-5 *2
- (-2 (|:| -2172 (-378)) (|:| -3254 (-1150))
- (|:| |explanations| (-639 (-1150)))))
- (-5 *1 (-800))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-803)) (-5 *4 (-1056))
- (-5 *2
- (-2 (|:| -2172 (-378)) (|:| -3254 (-1150))
- (|:| |explanations| (-639 (-1150)))))
- (-5 *1 (-800))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-834)) (-5 *3 (-1056))
- (-5 *4
- (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))
- (-5 *2 (-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-834)) (-5 *3 (-1056))
- (-5 *4
- (-2 (|:| |fn| (-315 (-224))) (|:| -3729 (-639 (-224)))
- (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224))))
- (|:| |ub| (-639 (-838 (-224))))))
- (-5 *2 (-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-836))
- (-5 *2
- (-2 (|:| -2172 (-378)) (|:| -3254 (-1150))
- (|:| |explanations| (-639 (-1150)))))
- (-5 *1 (-835))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-836)) (-5 *4 (-1056))
- (-5 *2
- (-2 (|:| -2172 (-378)) (|:| -3254 (-1150))
- (|:| |explanations| (-639 (-1150)))))
- (-5 *1 (-835))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-890)) (-5 *3 (-1056))
- (-5 *4
- (-2 (|:| |pde| (-639 (-315 (-224))))
- (|:| |constraints|
- (-639
- (-2 (|:| |start| (-224)) (|:| |finish| (-224))
- (|:| |grid| (-766)) (|:| |boundaryType| (-562))
- (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224))))))
- (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150))
- (|:| |tol| (-224))))
- (-5 *2 (-2 (|:| -2172 (-378)) (|:| |explanations| (-1150))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-893))
- (-5 *2
- (-2 (|:| -2172 (-378)) (|:| -3254 (-1150))
- (|:| |explanations| (-639 (-1150)))))
- (-5 *1 (-892))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-893)) (-5 *4 (-1056))
- (-5 *2
- (-2 (|:| -2172 (-378)) (|:| -3254 (-1150))
- (|:| |explanations| (-639 (-1150)))))
- (-5 *1 (-892)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5)
- (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-1164 *3))
- (-4 *3 (-13 (-429 *6) (-27) (-1192)))
- (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *2 (-2 (|:| -3860 *3) (|:| |coeff| *3)))
- (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092))))
- ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-406 (-1164 *3)))
- (-4 *3 (-13 (-429 *6) (-27) (-1192)))
- (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *2 (-2 (|:| -3860 *3) (|:| |coeff| *3)))
- (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1150)) (-4 *4 (-13 (-306) (-146)))
- (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *5 *5))
+ (-4 *5 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
(-5 *2
- (-639
- (-2 (|:| |eqzro| (-639 *7)) (|:| |neqzro| (-639 *7))
- (|:| |wcond| (-639 (-947 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1256 (-406 (-947 *4))))
- (|:| -3928 (-639 (-1256 (-406 (-947 *4))))))))))
- (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562)))))
- (-4 *5 (-1232 *4))
- (-5 *2 (-639 (-2 (|:| |deg| (-766)) (|:| -3342 *5))))
- (-5 *1 (-804 *4 *5 *3 *6)) (-4 *3 (-650 *5))
- (-4 *6 (-650 (-406 *5))))))
+ (-2 (|:| |solns| (-639 *5))
+ (|:| |maps| (-639 (-2 (|:| |arg| *5) (|:| |res| *5))))))
+ (-5 *1 (-1120 *3 *5)) (-4 *3 (-1232 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
+ (-5 *2 (-112)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2355 *3) (|:| |coef2| (-777 *3))))
+ (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))))
+(((*1 *1 *1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044))
+ (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))))
(((*1 *2 *3 *3)
(-12 (-5 *3 (-766)) (-5 *2 (-1256 (-639 (-562)))) (-5 *1 (-479))))
((*1 *1 *2 *3)
@@ -12598,300 +12472,132 @@
((*1 *1 *2 *3)
(-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3))))
((*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-1193 *3))) (-5 *1 (-1193 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562)))))
+ (-4 *3 (-1232 *4)) (-5 *1 (-804 *4 *3 *2 *5)) (-4 *2 (-650 *3))
+ (-4 *5 (-650 (-406 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-406 *5))
+ (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *5 (-1232 *4))
+ (-5 *1 (-804 *4 *5 *2 *6)) (-4 *2 (-650 *5)) (-4 *6 (-650 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-293 (-838 *3))) (-4 *3 (-13 (-27) (-1192) (-429 *5)))
- (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *2
- (-3 (-838 *3)
- (-2 (|:| |leftHandLimit| (-3 (-838 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-838 *3) "failed")))
- "failed"))
- (-5 *1 (-632 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-293 *3)) (-5 *5 (-1150))
- (-4 *3 (-13 (-27) (-1192) (-429 *6)))
- (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *2 (-838 *3)) (-5 *1 (-632 *6 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-293 (-838 (-947 *5)))) (-4 *5 (-451))
- (-5 *2
- (-3 (-838 (-406 (-947 *5)))
- (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 *5))) "failed"))
- (|:| |rightHandLimit| (-3 (-838 (-406 (-947 *5))) "failed")))
- "failed"))
- (-5 *1 (-633 *5)) (-5 *3 (-406 (-947 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-293 (-406 (-947 *5)))) (-5 *3 (-406 (-947 *5)))
- (-4 *5 (-451))
- (-5 *2
- (-3 (-838 *3)
- (-2 (|:| |leftHandLimit| (-3 (-838 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-838 *3) "failed")))
- "failed"))
- (-5 *1 (-633 *5))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-293 (-406 (-947 *6)))) (-5 *5 (-1150))
- (-5 *3 (-406 (-947 *6))) (-4 *6 (-451)) (-5 *2 (-838 *3))
- (-5 *1 (-633 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-890))
- (-5 *3
- (-2 (|:| |pde| (-639 (-315 (-224))))
- (|:| |constraints|
- (-639
- (-2 (|:| |start| (-224)) (|:| |finish| (-224))
- (|:| |grid| (-766)) (|:| |boundaryType| (-562))
- (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224))))))
- (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150))
- (|:| |tol| (-224))))
- (-5 *2 (-1030)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-750)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-639
- (-2 (|:| -2173 (-766))
- (|:| |eqns|
- (-639
- (-2 (|:| |det| *7) (|:| |rows| (-639 (-562)))
- (|:| |cols| (-639 (-562))))))
- (|:| |fgb| (-639 *7)))))
- (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146)))
- (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-766))
- (-5 *1 (-919 *4 *5 *6 *7)))))
-(((*1 *2 *3 *3 *3 *4)
(-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-922))
- (-5 *2
- (-2 (|:| |brans| (-639 (-639 (-938 (-224)))))
- (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))))
- (-5 *1 (-152))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-922)) (-5 *4 (-406 (-562)))
- (-5 *2
- (-2 (|:| |brans| (-639 (-639 (-938 (-224)))))
- (|:| |xValues| (-1086 (-224))) (|:| |yValues| (-1086 (-224)))))
- (-5 *1 (-152)))))
-(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
- (-12 (-5 *5 (-683 (-224))) (-5 *6 (-683 (-562))) (-5 *3 (-562))
- (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-747)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
-(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
- (-5 *2 (-1030)) (-5 *1 (-751)))))
+ (-12 (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-141 *2 *4 *3))
+ (-4 *3 (-372 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-502 *2 *4 *5 *3))
+ (-4 *5 (-372 *2)) (-4 *3 (-372 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-683 *4)) (-4 *4 (-987 *2)) (-4 *2 (-554))
+ (-5 *1 (-687 *2 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-1225 *2 *4 *3))
+ (-4 *3 (-1232 *4)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-747)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
(-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
- (-4 *4 (-1092)))))
-(((*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
-(((*1 *1 *1) (-12 (-5 *1 (-417 *2)) (-4 *2 (-554)))))
-(((*1 *1 *1) (-5 *1 (-112))))
-(((*1 *2 *3 *4 *5 *4 *4 *4)
- (-12 (-4 *6 (-845)) (-5 *3 (-639 *6)) (-5 *5 (-639 *3))
- (-5 *2
- (-2 (|:| |f1| *3) (|:| |f2| (-639 *5)) (|:| |f3| *5)
- (|:| |f4| (-639 *5))))
- (-5 *1 (-1178 *6)) (-5 *4 (-639 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-577)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1256 (-639 *3))) (-4 *4 (-306))
- (-5 *2 (-639 *3)) (-5 *1 (-454 *4 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2))
- (-4 *4 (-13 (-845) (-554))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-293 (-947 (-562))))
- (-5 *2
- (-2 (|:| |varOrder| (-639 (-1168)))
- (|:| |inhom| (-3 (-639 (-1256 (-766))) "failed"))
- (|:| |hom| (-639 (-1256 (-766))))))
- (-5 *1 (-235)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-845)) (-5 *1 (-1178 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-3 (-2 (|:| -3860 *7) (|:| |coeff| *7)) "failed") *7))
- (-5 *6 (-639 (-406 *8))) (-4 *7 (-362)) (-4 *8 (-1232 *7))
- (-5 *3 (-406 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-572 *7 *8)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211))
- (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-639 (-1168))) (-5 *3 (-52)) (-5 *1 (-887 *4))
- (-4 *4 (-1092)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *7)) (-4 *7 (-845))
- (-4 *8 (-944 *5 *6 *7)) (-4 *5 (-554)) (-4 *6 (-788))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1256 (-406 *8)) "failed"))
- (|:| -3928 (-639 (-1256 (-406 *8))))))
- (-5 *1 (-663 *5 *6 *7 *8)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |pde| (-639 (-315 (-224))))
- (|:| |constraints|
- (-639
- (-2 (|:| |start| (-224)) (|:| |finish| (-224))
- (|:| |grid| (-766)) (|:| |boundaryType| (-562))
- (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224))))))
- (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150))
- (|:| |tol| (-224))))
- (-5 *2 (-112)) (-5 *1 (-209)))))
-(((*1 *1 *2) (-12 (-5 *2 (-814 *3)) (-4 *3 (-845)) (-5 *1 (-666 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-417 *4)) (-4 *4 (-554)))))
+(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
+ (|partial| -12 (-5 *2 (-639 (-1164 *11))) (-5 *3 (-1164 *11))
+ (-5 *4 (-639 *10)) (-5 *5 (-639 *8)) (-5 *6 (-639 (-766)))
+ (-5 *7 (-1256 (-639 (-1164 *8)))) (-4 *10 (-845))
+ (-4 *8 (-306)) (-4 *11 (-944 *8 *9 *10)) (-4 *9 (-788))
+ (-5 *1 (-702 *9 *10 *8 *11)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-262)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-1148 *3)))))
+ (-12 (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)) (-4 *3 (-1044))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-5 *2 (-406 *1)) (-4 *1 (-1232 *3)) (-4 *3 (-1044))
+ (-4 *3 (-554))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-947 *4)) (-4 *4 (-13 (-306) (-146)))
- (-4 *2 (-944 *4 *6 *5)) (-5 *1 (-919 *4 *5 *6 *2))
- (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1134 *3 *4)) (-14 *3 (-916)) (-4 *4 (-362))
- (-5 *1 (-988 *3 *4)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 (-766) *2)) (-5 *4 (-766)) (-4 *2 (-1092))
- (-5 *1 (-672 *2))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1 *3 (-766) *3)) (-4 *3 (-1092)) (-5 *1 (-676 *3)))))
-(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693))))
- ((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693)))))
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
+ (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
+ (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
+ (|:| |abserr| (-224)) (|:| |relerr| (-224))))
+ (-5 *2
+ (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378))
+ (|:| |expense| (-378)) (|:| |accuracy| (-378))
+ (|:| |intermediateResults| (-378))))
+ (-5 *1 (-798)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
+(((*1 *1 *1) (-5 *1 (-112))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-766)) (-4 *4 (-13 (-1044) (-712 (-406 (-562)))))
+ (-4 *5 (-845)) (-5 *1 (-1272 *4 *5 *2)) (-4 *2 (-1277 *5 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-766)) (-5 *2 (-112)) (-5 *1 (-584 *3)) (-4 *3 (-544)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *2) (-12 (-5 *2 (-639 (-683 (-315 (-562))))) (-5 *1 (-1026)))))
+ (-12 (-5 *3 (-406 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1232 *5))
+ (-5 *1 (-722 *5 *2)) (-4 *5 (-362)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
- ((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+ (-12 (-4 *4 (-554)) (-5 *2 (-639 *3)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-416 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-406 (-562))))) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-262)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-224)) (-5 *3 (-766)) (-5 *1 (-225))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-168 (-224))) (-5 *3 (-766)) (-5 *1 (-225))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1131))))
+(((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
(((*1 *2 *2)
- (-12
- (-5 *2
- (-982 (-406 (-562)) (-859 *3) (-239 *4 (-766))
- (-246 *3 (-406 (-562)))))
- (-14 *3 (-639 (-1168))) (-14 *4 (-766)) (-5 *1 (-981 *3 *4)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-747)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-562)) (-4 *3 (-171)) (-4 *5 (-372 *3))
- (-4 *6 (-372 *3)) (-5 *1 (-682 *3 *5 *6 *2))
- (-4 *2 (-681 *3 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-766)) (-4 *4 (-362)) (-4 *5 (-1232 *4)) (-5 *2 (-1261))
- (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1232 (-406 *5))) (-14 *7 *6))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
- (-4 *6 (-788)) (-5 *2 (-639 (-639 (-562))))
- (-5 *1 (-919 *4 *5 *6 *7)) (-5 *3 (-562)) (-4 *7 (-944 *4 *6 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-904)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-417 (-1164 *7)))
- (-5 *1 (-901 *4 *5 *6 *7)) (-5 *3 (-1164 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-904)) (-4 *5 (-1232 *4)) (-5 *2 (-417 (-1164 *5)))
- (-5 *1 (-902 *4 *5)) (-5 *3 (-1164 *5)))))
-(((*1 *2 *3) (-12 (-5 *2 (-406 (-562))) (-5 *1 (-559)) (-5 *3 (-562)))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-554)) (-4 *2 (-171)))))
-(((*1 *2)
- (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5)))
- (-5 *2 (-766)) (-5 *1 (-340 *3 *4 *5 *6)) (-4 *3 (-341 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-766)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-112)) (-5 *1 (-824)))))
-(((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))))
+ (|partial| -12 (-4 *3 (-554)) (-4 *3 (-171)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *1 (-682 *3 *4 *5 *2))
+ (-4 *2 (-681 *3 *4 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-683 *4)) (-5 *3 (-916)) (|has| *4 (-6 (-4405 "*")))
+ (-4 *4 (-1044)) (-5 *1 (-1023 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-639 (-683 *4))) (-5 *3 (-916))
+ (|has| *4 (-6 (-4405 "*"))) (-4 *4 (-1044)) (-5 *1 (-1023 *4)))))
+(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
+ (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224)))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196)))) (-5 *3 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-743)))))
(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *4 (-1 (-3 (-562) "failed") *5)) (-4 *5 (-1044))
- (-5 *2 (-562)) (-5 *1 (-542 *5 *3)) (-4 *3 (-1232 *5))))
- ((*1 *2 *3 *4 *2 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-562) "failed") *4)) (-4 *4 (-1044))
- (-5 *2 (-562)) (-5 *1 (-542 *4 *3)) (-4 *3 (-1232 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-562) "failed") *4)) (-4 *4 (-1044))
- (-5 *2 (-562)) (-5 *1 (-542 *4 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-131)) (-5 *3 (-766)) (-5 *2 (-1261)))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1133 *2 *3)) (-4 *2 (-13 (-1092) (-34)))
- (-4 *3 (-13 (-1092) (-34))))))
+ (-12 (-5 *3 (-683 *2)) (-5 *4 (-766))
+ (-4 *2 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $)))))
+ (-4 *5 (-1232 *2)) (-5 *1 (-498 *2 *5 *6)) (-4 *6 (-408 *2 *5)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-419 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1192) (-429 *3)))
- (-14 *4 (-1168)) (-14 *5 *2)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-4 *2 (-13 (-27) (-1192) (-429 *3) (-10 -8 (-15 -4054 ($ *4)))))
- (-4 *4 (-843))
- (-4 *5
- (-13 (-1234 *2 *4) (-362) (-1192)
- (-10 -8 (-15 -4029 ($ $)) (-15 -2667 ($ $)))))
- (-5 *1 (-421 *3 *2 *4 *5 *6 *7)) (-4 *6 (-978 *5)) (-14 *7 (-1168)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-406 *4)) (-4 *4 (-1232 *3)) (-4 *3 (-13 (-362) (-146)))
- (-5 *1 (-398 *3 *4)))))
-(((*1 *2 *3 *2)
- (|partial| -12 (-5 *2 (-1256 *4)) (-5 *3 (-683 *4)) (-4 *4 (-362))
- (-5 *1 (-661 *4))))
- ((*1 *2 *3 *2)
- (|partial| -12 (-4 *4 (-362))
- (-4 *5 (-13 (-372 *4) (-10 -7 (-6 -4403))))
- (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4403))))
- (-5 *1 (-662 *4 *5 *2 *3)) (-4 *3 (-681 *4 *5 *2))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *4 (-639 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-362))
- (-5 *1 (-809 *2 *3)) (-4 *3 (-650 *2))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
- (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *7 (-451)) (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-554))
- (-4 *8 (-944 *7 *5 *6))
- (-5 *2 (-2 (|:| -1960 (-766)) (|:| -4221 *3) (|:| |radicand| *3)))
- (-5 *1 (-948 *5 *6 *7 *8 *3)) (-5 *4 (-766))
- (-4 *3
- (-13 (-362)
- (-10 -8 (-15 -4054 ($ *8)) (-15 -4065 (*8 $)) (-15 -4076 (*8 $))))))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-766)) (-4 *5 (-348)) (-4 *6 (-1232 *5))
- (-5 *2
- (-639
- (-2 (|:| -3928 (-683 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-683 *6)))))
- (-5 *1 (-497 *5 *6 *7))
- (-5 *3
- (-2 (|:| -3928 (-683 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-683 *6))))
- (-4 *7 (-1232 *6)))))
+ (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-276 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168))
+ (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-276 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4)))))
+ ((*1 *1 *1) (-5 *1 (-378)))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7))
+ (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4))))
+ (-5 *1 (-771 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *1) (-5 *1 (-55))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-562)) (-5 *1 (-1189 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
+ (-12 (-5 *6 (-639 (-112))) (-5 *7 (-683 (-224)))
+ (-5 *8 (-683 (-562))) (-5 *3 (-562)) (-5 *4 (-224)) (-5 *5 (-112))
+ (-5 *2 (-1030)) (-5 *1 (-749)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-451))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-448 *3 *4 *5 *6)))))
(((*1 *2 *2 *3)
(-12 (-4 *4 (-788))
(-4 *3 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *5 (-554))
@@ -12901,674 +12607,920 @@
(-4 *3
(-13 (-845)
(-10 -8 (-15 -4208 ((-1168) $))
- (-15 -2444 ((-3 $ "failed") (-1168))))))
+ (-15 -2443 ((-3 $ "failed") (-1168))))))
(-5 *1 (-979 *4 *5 *3 *2)) (-4 *2 (-944 (-947 *4) *5 *3))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-639 *6))
(-4 *6
(-13 (-845)
(-10 -8 (-15 -4208 ((-1168) $))
- (-15 -2444 ((-3 $ "failed") (-1168))))))
+ (-15 -2443 ((-3 $ "failed") (-1168))))))
(-4 *4 (-1044)) (-4 *5 (-788)) (-5 *1 (-979 *4 *5 *6 *2))
(-4 *2 (-944 (-947 *4) *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-417 *3)) (-4 *3 (-554))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-2 (|:| -1635 *4) (|:| -3598 (-562)))))
- (-4 *4 (-1232 (-562))) (-5 *2 (-766)) (-5 *1 (-441 *4)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2 *3 *4 *4 *3)
+ (|partial| -12 (-5 *4 (-608 *3))
+ (-4 *3 (-13 (-429 *5) (-27) (-1192)))
+ (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *2 (-2 (|:| -2929 *3) (|:| |coeff| *3)))
+ (-5 *1 (-564 *5 *3 *6)) (-4 *6 (-1092)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-554)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1232 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-683 *4)) (-4 *4 (-1044)) (-5 *1 (-1134 *3 *4))
+ (-14 *3 (-766)))))
+(((*1 *1)
+ (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766))
+ (-4 *4 (-171)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-715)) (-5 *2 (-916))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-717)) (-5 *2 (-766)))))
+(((*1 *2)
+ (-12 (-5 *2 (-766)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-766)) (-5 *1 (-120 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *2)
+ (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261))
+ (-5 *1 (-1065 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-1261))
+ (-5 *1 (-1100 *3 *4 *5 *6 *7)) (-4 *7 (-1064 *3 *4 *5 *6)))))
+(((*1 *1 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-857)) (-5 *1 (-1148 *3)) (-4 *3 (-1092))
- (-4 *3 (-1207)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224)))
- (-5 *2 (-1030)) (-5 *1 (-742)))))
-(((*1 *2 *2) (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))))
+ (-12 (|has| *1 (-6 -4403)) (-4 *1 (-488 *3)) (-4 *3 (-1207))
+ (-5 *2 (-639 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-732 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1) (-12 (-5 *2 (-639 (-438))) (-5 *1 (-860)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-754)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367))
+ (-5 *2 (-1164 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1164 *3)) (-5 *1 (-909 *3)) (-4 *3 (-306)))))
+(((*1 *1) (-5 *1 (-798))))
+(((*1 *2 *3 *4 *4 *5 *6 *7)
+ (-12 (-5 *5 (-1168))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-639 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-639 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -2929 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1192) (-27) (-429 *8)))
+ (-4 *8 (-13 (-451) (-845) (-146) (-1033 *3) (-635 *3)))
+ (-5 *3 (-562))
+ (-5 *2 (-2 (|:| |ans| *4) (|:| -1603 *4) (|:| |sol?| (-112))))
+ (-5 *1 (-1008 *8 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-128)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))))
(((*1 *1 *1 *2)
- (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-944 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845))
- (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1033 (-562))) (-4 *3 (-13 (-845) (-554)))
- (-5 *1 (-32 *3 *2)) (-4 *2 (-429 *3))))
- ((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-1164 *4)) (-5 *1 (-164 *3 *4))
- (-4 *3 (-165 *4))))
- ((*1 *1 *1) (-12 (-4 *1 (-1044)) (-4 *1 (-301))))
- ((*1 *2) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-1164 *3))))
- ((*1 *2) (-12 (-4 *1 (-719 *3 *2)) (-4 *3 (-171)) (-4 *2 (-1232 *3))))
+ (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *1 *1 *1) (-4 *1 (-472))) ((*1 *1 *1 *1) (-4 *1 (-756))))
+(((*1 *2 *3 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224))
+ (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224))
+ (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))
+ (-5 *3 (-639 (-262))) (-5 *1 (-260))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224))
+ (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224))
+ (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))
+ (-5 *1 (-262))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258))))
+ ((*1 *2 *1 *3 *3 *4 *4 *4)
+ (-12 (-5 *3 (-562)) (-5 *4 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258))))
+ ((*1 *2 *1 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224))
+ (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224))
+ (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))
+ (-5 *2 (-1261)) (-5 *1 (-1258))))
((*1 *2 *1)
- (-12 (-4 *1 (-1061 *3 *2)) (-4 *3 (-13 (-843) (-362)))
- (-4 *2 (-1232 *3)))))
+ (-12
+ (-5 *2
+ (-2 (|:| |theta| (-224)) (|:| |phi| (-224)) (|:| -1978 (-224))
+ (|:| |scaleX| (-224)) (|:| |scaleY| (-224)) (|:| |scaleZ| (-224))
+ (|:| |deltaX| (-224)) (|:| |deltaY| (-224))))
+ (-5 *1 (-1258))))
+ ((*1 *2 *1 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
- (-4 *3 (-13 (-362) (-1192) (-997))))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-554))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-554)))))
+ (-12 (-5 *3 (-814 *4)) (-4 *4 (-845)) (-5 *2 (-112))
+ (-5 *1 (-666 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-683 *4)) (-4 *4 (-362)) (-5 *2 (-1164 *4))
+ (-5 *1 (-531 *4 *5 *6)) (-4 *5 (-362)) (-4 *6 (-13 (-362) (-843))))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2
+ (|:| |endPointContinuity|
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular|
+ "There are singularities at both end points")
+ (|:| |notEvaluated|
+ "End point continuity not yet evaluated")))
+ (|:| |singularitiesStream|
+ (-3 (|:| |str| (-1148 (-224)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2147
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite| "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite|
+ "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated")))))
+ (-5 *2 (-1030)) (-5 *1 (-304)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207))
- (-5 *2 (-639 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-766)) (-5 *1 (-778 *2)) (-4 *2 (-38 (-406 (-562))))
- (-4 *2 (-171)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1164 *6)) (-5 *3 (-562)) (-4 *6 (-306)) (-4 *4 (-788))
- (-4 *5 (-845)) (-5 *1 (-737 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))))
+ (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2464 *5) (|:| -1300 *2))
+ (-2 (|:| -2464 *5) (|:| -1300 *2))))
+ (-4 *2 (-237 (-3492 *3) (-766))) (-5 *1 (-460 *3 *4 *5 *2 *6 *7))
+ (-4 *5 (-845)) (-4 *7 (-944 *4 *2 (-859 *3))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1218 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1247 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-639 (-947 (-562)))) (-5 *4 (-639 (-1168)))
+ (-5 *2 (-639 (-639 (-378)))) (-5 *1 (-1018)) (-5 *5 (-378))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
+ (-14 *5 (-639 (-1168))) (-5 *2 (-639 (-639 (-1019 (-406 *4)))))
+ (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7))
+ (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7))
+ (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7))
+ (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-947 *4)))
+ (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2 (-639 (-639 (-1019 (-406 *4))))) (-5 *1 (-1282 *4 *5 *6))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-683 (-406 (-947 (-562)))))
+ (-5 *2 (-639 (-683 (-315 (-562))))) (-5 *1 (-1026)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *2)
(-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
(-4 *3 (-366 *4))))
((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))))
-(((*1 *1 *1 *1) (-5 *1 (-224)))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035))))
- ((*1 *1 *1 *1) (-4 *1 (-1131))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224)))
- (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-79 LSFUN1))))
- (-5 *2 (-1030)) (-5 *1 (-748)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 (-168 (-406 (-562)))))
- (-5 *2
- (-639
- (-2 (|:| |outval| (-168 *4)) (|:| |outmult| (-562))
- (|:| |outvect| (-639 (-683 (-168 *4)))))))
- (-5 *1 (-759 *4)) (-4 *4 (-13 (-362) (-843))))))
-(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224)))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN))))
- (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-88 OUTPUT))))
- (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-639 (-1132 *4 *5))) (-5 *3 (-1 (-112) *5 *5))
- (-4 *4 (-13 (-1092) (-34))) (-4 *5 (-13 (-1092) (-34)))
- (-5 *1 (-1133 *4 *5))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-1132 *3 *4))) (-4 *3 (-13 (-1092) (-34)))
- (-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))))
-(((*1 *2)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1030)) (-5 *3 (-1168)) (-5 *1 (-191)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-306))))
- ((*1 *2 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |lm| (-385 *3)) (|:| |rm| (-385 *3))))
- (-5 *1 (-385 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2097 (-766)) (|:| -2264 (-766))))
- (-5 *1 (-766))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-938 (-224))) (-5 *4 (-869)) (-5 *5 (-916))
- (-5 *2 (-1261)) (-5 *1 (-467))))
+ (-12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-536 *3 *2))
+ (-4 *2 (-1247 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-4 *4 (-1232 *3))
+ (-4 *5 (-719 *3 *4)) (-5 *1 (-540 *3 *4 *5 *2)) (-4 *2 (-1247 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-362) (-367) (-610 (-562)))) (-5 *1 (-541 *3 *2))
+ (-4 *2 (-1247 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-13 (-554) (-146)))
+ (-5 *1 (-1144 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1141 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-103 *3))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-938 (-224))) (-5 *2 (-1261)) (-5 *1 (-467))))
- ((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-639 (-938 (-224)))) (-5 *4 (-869)) (-5 *5 (-916))
- (-5 *2 (-1261)) (-5 *1 (-467)))))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1092)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-828 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-838 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1501 *8)))
+ (-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1064 *4 *5 *6 *7)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-983 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-639 *7)) (|:| -1501 *8)))
+ (-4 *7 (-1058 *4 *5 *6)) (-4 *8 (-1064 *4 *5 *6 *7)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-1099 *4 *5 *6 *7 *8)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-451)) (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-5 *2 (-639 *3)) (-5 *1 (-972 *4 *5 *6 *3))
+ (-4 *3 (-1058 *4 *5 *6)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4))
+ (-4 *4 (-348)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1092)) (-4 *3 (-895 *5)) (-5 *2 (-683 *3))
- (-5 *1 (-686 *5 *3 *6 *4)) (-4 *6 (-372 *3))
- (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4402)))))))
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112))
+ (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *2
+ (-3 (|:| |%expansion| (-312 *5 *3 *6 *7))
+ (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))))
+ (-5 *1 (-419 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1192) (-429 *5)))
+ (-14 *6 (-1168)) (-14 *7 *3))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-112))
+ (-5 *1 (-187 *4 *3)) (-4 *3 (-13 (-27) (-1192) (-429 (-168 *4))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *2 (-112)) (-5 *1 (-1196 *4 *3))
+ (-4 *3 (-13 (-27) (-1192) (-429 *4))))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1))
- (-4 *1 (-1058 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-325 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787))))
- ((*1 *2 *1) (-12 (-4 *1 (-703 *3)) (-4 *3 (-1044)) (-5 *2 (-766))))
- ((*1 *2 *1) (-12 (-4 *1 (-847 *3)) (-4 *3 (-1044)) (-5 *2 (-766))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-639 *6)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 (-766)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-944 *4 *5 *3)) (-4 *4 (-1044)) (-4 *5 (-788))
- (-4 *3 (-845)) (-5 *2 (-766)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
-(((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *3 *3 *3 *4 *5 *6)
- (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224)))
- (-5 *5 (-1086 (-224))) (-5 *6 (-639 (-262))) (-5 *2 (-1125 (-224)))
- (-5 *1 (-691)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-1044)) (-5 *1 (-443 *3 *2)) (-4 *2 (-1232 *3)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-971 *4 *5 *3 *6)) (-4 *4 (-1044)) (-4 *5 (-788))
- (-4 *3 (-845)) (-4 *6 (-1058 *4 *5 *3)) (-5 *2 (-112)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-921)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1056)) (-5 *3 (-1150)))))
+ (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |mval| (-683 *3)) (|:| |invmval| (-683 *3))
+ (|:| |genIdeal| (-503 *3 *4 *5 *6))))
+ (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-639 (-766))) (-5 *3 (-112)) (-5 *1 (-1156 *4 *5))
+ (-14 *4 (-916)) (-4 *5 (-1044)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-815)) (-14 *5 (-1168))
+ (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))))
+(((*1 *1) (-5 *1 (-436))))
(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-562))) (-5 *1 (-1042)))))
-(((*1 *2 *3) (-12 (-5 *3 (-378)) (-5 *2 (-224)) (-5 *1 (-1259))))
- ((*1 *2) (-12 (-5 *2 (-224)) (-5 *1 (-1259)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-742)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-374 *4 *2))
- (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4403)))))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1044)) (-5 *1 (-1228 *3 *2)) (-4 *2 (-1232 *3)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4))
+ (-4 *4 (-348)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1207)) (-5 *2 (-766)) (-5 *1 (-181 *4 *3))
+ (-4 *3 (-668 *4)))))
+(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
+ (-12 (-5 *3 (-562)) (-5 *5 (-112)) (-5 *6 (-683 (-224)))
+ (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-77 OBJFUN))))
+ (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-748)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1170 (-406 (-562)))) (-5 *2 (-406 (-562)))
+ (-5 *1 (-189)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224)))
+ (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-66 FUNCT1))))
+ (-5 *2 (-1030)) (-5 *1 (-748)))))
+(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1164 *1)) (-4 *1 (-1007)))))
+(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-817)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224)))
+ (-5 *2 (-1030)) (-5 *1 (-749)))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
+ (-4 *3 (-1058 *6 *7 *8))
+ (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *4))))
+ (-5 *1 (-1100 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-639 (-2 (|:| |val| (-639 *8)) (|:| -1501 *9))))
+ (-5 *5 (-112)) (-4 *8 (-1058 *6 *7 *4)) (-4 *9 (-1064 *6 *7 *4 *8))
+ (-4 *6 (-451)) (-4 *7 (-788)) (-4 *4 (-845))
+ (-5 *2 (-639 (-2 (|:| |val| *8) (|:| -1501 *9))))
+ (-5 *1 (-1100 *6 *7 *4 *8 *9)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-857)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 (-766))
+ (-14 *4 (-766)) (-4 *5 (-171)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-362) (-843))) (-5 *1 (-180 *3 *2))
+ (-4 *2 (-1232 (-168 *3))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-554))
+ (-4 *7 (-944 *3 *5 *6))
+ (-5 *2 (-2 (|:| -1300 (-766)) (|:| -4221 *8) (|:| |radicand| *8)))
+ (-5 *1 (-948 *5 *6 *3 *7 *8)) (-5 *4 (-766))
+ (-4 *8
+ (-13 (-362)
+ (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $))))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-524)))))
+(((*1 *1 *1 *1) (-4 *1 (-142)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544))))
+ ((*1 *1 *1 *1) (-5 *1 (-857)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-562))) (-5 *1 (-1042))
+ (-5 *3 (-562)))))
+(((*1 *2 *3 *4 *3 *4 *3)
(-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-750)))))
+ (-5 *1 (-751)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-639 (-639 *7)))
+ (-5 *1 (-447 *4 *5 *6 *7)) (-5 *3 (-639 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788))
+ (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-639 (-639 *8)))
+ (-5 *1 (-447 *5 *6 *7 *8)) (-5 *3 (-639 *8)))))
+(((*1 *1 *1) (-5 *1 (-1056))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-562))) (-4 *3 (-1044)) (-5 *1 (-592 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-562))) (-4 *1 (-1216 *3)) (-4 *3 (-1044))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 (-562))) (-4 *1 (-1247 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-639 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-766)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-766)) (-4 *1 (-650 *3)) (-4 *3 (-1044)) (-4 *3 (-362))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-766)) (-5 *4 (-1 *5 *5)) (-4 *5 (-362))
+ (-5 *1 (-653 *5 *2)) (-4 *2 (-650 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-554)) (-5 *1 (-619 *2 *3)) (-4 *3 (-1232 *2)))))
+(((*1 *1 *1) (|partial| -4 *1 (-144))) ((*1 *1 *1) (-4 *1 (-348)))
+ ((*1 *1 *1) (|partial| -12 (-4 *1 (-144)) (-4 *1 (-904)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-372 *2))
+ (-4 *4 (-372 *2)))))
(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1606 (-777 *3)) (|:| |coef1| (-777 *3))))
+ (-12
+ (-5 *2
+ (-2 (|:| -1606 (-777 *3)) (|:| |coef1| (-777 *3))
+ (|:| |coef2| (-777 *3))))
(-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044))))
((*1 *2 *1 *1)
(-12 (-4 *3 (-554)) (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *2 (-2 (|:| -1606 *1) (|:| |coef1| *1)))
+ (-5 *2 (-2 (|:| -1606 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
(-4 *1 (-1058 *3 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-451)) (-4 *3 (-845)) (-4 *3 (-1033 (-562)))
- (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-429 *3))
- (-4 *2
- (-13 (-362) (-301)
- (-10 -8 (-15 -4065 ((-1117 *3 (-608 $)) $))
- (-15 -4076 ((-1117 *3 (-608 $)) $))
- (-15 -4054 ($ (-1117 *3 (-608 $))))))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-938 *3) (-938 *3))) (-5 *1 (-175 *3))
- (-4 *3 (-13 (-362) (-1192) (-997))))))
-(((*1 *2 *1) (-12 (-5 *2 (-966)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
- ((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
-(((*1 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
- (-5 *1 (-1120 *3 *2)) (-4 *3 (-1232 *2)))))
+(((*1 *2 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-396)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-3 (|:| |fst| (-433)) (|:| -2650 "void")))
- (-5 *2 (-1261)) (-5 *1 (-1171))))
+ (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562)))))
+ (-4 *5 (-1232 *4)) (-5 *2 (-639 (-2 (|:| -2328 *5) (|:| -3680 *5))))
+ (-5 *1 (-802 *4 *5 *3 *6)) (-4 *3 (-650 *5))
+ (-4 *6 (-650 (-406 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1168))
- (-5 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-5 *2 (-1261))
- (-5 *1 (-1171))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *3 (-1168))
- (-5 *4 (-3 (|:| |fst| (-433)) (|:| -2650 "void"))) (-5 *2 (-1261))
- (-5 *1 (-1171)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-817)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-639 (-2 (|:| |totdeg| (-766)) (|:| -4380 *3))))
- (-5 *4 (-766)) (-4 *3 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *6 (-788))
- (-4 *7 (-845)) (-5 *1 (-448 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-742)))))
+ (-12 (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562)))))
+ (-4 *4 (-1232 *5)) (-5 *2 (-639 (-2 (|:| -2328 *4) (|:| -3680 *4))))
+ (-5 *1 (-802 *5 *4 *3 *6)) (-4 *3 (-650 *4))
+ (-4 *6 (-650 (-406 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562)))))
+ (-4 *5 (-1232 *4)) (-5 *2 (-639 (-2 (|:| -2328 *5) (|:| -3680 *5))))
+ (-5 *1 (-802 *4 *5 *6 *3)) (-4 *6 (-650 *5))
+ (-4 *3 (-650 (-406 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562)))))
+ (-4 *4 (-1232 *5)) (-5 *2 (-639 (-2 (|:| -2328 *4) (|:| -3680 *4))))
+ (-5 *1 (-802 *5 *4 *6 *3)) (-4 *6 (-650 *4))
+ (-4 *3 (-650 (-406 *4))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1256 (-639 (-2 (|:| -2534 *4) (|:| -2466 (-1112))))))
- (-4 *4 (-348)) (-5 *2 (-766)) (-5 *1 (-345 *4))))
- ((*1 *2)
- (-12 (-5 *2 (-766)) (-5 *1 (-350 *3 *4)) (-14 *3 (-916))
- (-14 *4 (-916))))
- ((*1 *2)
- (-12 (-5 *2 (-766)) (-5 *1 (-351 *3 *4)) (-4 *3 (-348))
- (-14 *4
- (-3 (-1164 *3)
- (-1256 (-639 (-2 (|:| -2534 *3) (|:| -2466 (-1112)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-766)) (-5 *1 (-352 *3 *4)) (-4 *3 (-348))
+ (-12 (-5 *3 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562)))))
+ (-5 *2 (-406 (-562))) (-5 *1 (-1015 *4)) (-4 *4 (-1232 (-562))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-406 (-562))) (-5 *1 (-592 *3)) (-4 *3 (-38 *2))
+ (-4 *3 (-1044)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-544))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562))))
+ (-5 *2 (-168 (-315 *4))) (-5 *1 (-187 *4 *3))
+ (-4 *3 (-13 (-27) (-1192) (-429 (-168 *4))))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *2 (-168 *3)) (-5 *1 (-1196 *4 *3))
+ (-4 *3 (-13 (-27) (-1192) (-429 *4))))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-362)) (-5 *1 (-284 *3 *2)) (-4 *2 (-1247 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-665))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1093 *3 *4)) (-14 *3 (-916))
(-14 *4 (-916)))))
-(((*1 *1) (-5 *1 (-156)))
- ((*1 *2 *1) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-608 *3)) (-5 *5 (-1 (-1164 *3) (-1164 *3)))
- (-4 *3 (-13 (-27) (-429 *6))) (-4 *6 (-13 (-845) (-554)))
- (-5 *2 (-583 *3)) (-5 *1 (-549 *6 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-109))) (-5 *1 (-174)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-766)) (-4 *4 (-554)) (-5 *1 (-964 *4 *2))
- (-4 *2 (-1232 *4)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *6 (-916)) (-4 *5 (-306)) (-4 *3 (-1232 *5))
- (-5 *2 (-2 (|:| |plist| (-639 *3)) (|:| |modulo| *5)))
- (-5 *1 (-459 *5 *3)) (-5 *4 (-639 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1104)) (-4 *3 (-845)) (-5 *2 (-639 *1))
- (-4 *1 (-429 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3))
- (-4 *3 (-1092))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *2 (-639 *1)) (-4 *1 (-944 *3 *4 *5))))
+ (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3))
+ (-4 *3 (-1232 (-168 *2))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-857)))))
+(((*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-766)))))
+(((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044))
- (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-639 *3))
- (-5 *1 (-945 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-362)
- (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $))
- (-15 -4076 (*7 $))))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-562))) (-5 *1 (-246 *3 *4))
- (-14 *3 (-639 (-1168))) (-4 *4 (-1044))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-562))) (-14 *3 (-639 (-1168)))
- (-5 *1 (-453 *3 *4 *5)) (-4 *4 (-1044))
- (-4 *5 (-237 (-3492 *3) (-766)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-562))) (-5 *1 (-480 *3 *4))
- (-14 *3 (-639 (-1168))) (-4 *4 (-1044)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-416 *4)))))
+ (-12 (-5 *3 (-639 (-857))) (-5 *2 (-1261)) (-5 *1 (-1130)))))
+(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378))))
+ ((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-378)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-916)) (-5 *4 (-869)) (-5 *2 (-1261)) (-5 *1 (-1257))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4))
- (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-916)) (-5 *4 (-417 *6)) (-4 *6 (-1232 *5))
- (-4 *5 (-1044)) (-5 *2 (-639 *6)) (-5 *1 (-443 *5 *6)))))
-(((*1 *2)
- (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
+ (-12 (-4 *4 (-362)) (-5 *2 (-639 (-1148 *4))) (-5 *1 (-284 *4 *5))
+ (-5 *3 (-1148 *4)) (-4 *5 (-1247 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-639 *6)) (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
+ (-4 *3 (-554)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4))
- (-4 *4 (-348)))))
-(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1092))))
- ((*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1092)))))
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112))
+ (-5 *1 (-32 *4 *5)) (-4 *5 (-429 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112))
+ (-5 *1 (-157 *4 *5)) (-4 *5 (-429 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112))
+ (-5 *1 (-275 *4 *5)) (-4 *5 (-13 (-429 *4) (-997)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-300 *4)) (-4 *4 (-301))))
+ ((*1 *2 *3) (-12 (-4 *1 (-301)) (-5 *3 (-114)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *5 (-845)) (-5 *2 (-112))
+ (-5 *1 (-428 *4 *5)) (-4 *4 (-429 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112))
+ (-5 *1 (-430 *4 *5)) (-4 *5 (-429 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-112))
+ (-5 *1 (-626 *4 *5)) (-4 *5 (-13 (-429 *4) (-997) (-1192))))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-554))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1232 *2)) (-4 *2 (-1044)) (-4 *2 (-554)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-416 *4)))))
+(((*1 *1) (-5 *1 (-140))) ((*1 *1 *1) (-5 *1 (-143)))
+ ((*1 *1 *1) (-4 *1 (-1136))))
(((*1 *1 *1) (-4 *1 (-625)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *2))
(-4 *2 (-13 (-429 *3) (-997) (-1192))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-38 (-406 (-562))))
- (-5 *2 (-2 (|:| -4207 (-1148 *4)) (|:| -2978 (-1148 *4))))
- (-5 *1 (-1154 *4)) (-5 *3 (-1148 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921))))
- ((*1 *2 *1) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *1) (-5 *1 (-467))))
+ (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1184 *4 *5))
+ (-4 *4 (-1092)) (-4 *5 (-1092)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1606 *3)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-12 (-4 *3 (-610 (-887 *3))) (-4 *3 (-881 *3))
+ (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-610 (-887 *3))) (-4 *2 (-881 *3))
(-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-4 *3 (-554))
- (-5 *2 (-1164 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-315 (-224))) (-5 *4 (-1168))
- (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-191))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-315 (-224))) (-5 *4 (-1168))
- (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-299)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-362)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1086 (-838 (-378)))) (-5 *2 (-1086 (-838 (-224))))
- (-5 *1 (-304)))))
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *2 (-562))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
+ (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))))
(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-554))
- (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-1227 *4 *3))
- (-4 *3 (-1232 *4)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788))
- (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
(-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *3 (-1058 *4 *5 *6))
- (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1495 *1))))
- (-4 *1 (-1064 *4 *5 *6 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-754)))))
-(((*1 *1) (-5 *1 (-1171))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-362)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5))
- (-5 *2
- (-2 (|:| -1416 (-412 *4 (-406 *4) *5 *6)) (|:| |principalPart| *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))))
+(((*1 *2 *2 *2)
+ (-12
(-5 *2
- (-2 (|:| |poly| *6) (|:| -2451 (-406 *6))
- (|:| |special| (-406 *6))))
- (-5 *1 (-722 *5 *6)) (-5 *3 (-406 *6))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-362)) (-5 *2 (-639 *3)) (-5 *1 (-891 *3 *4))
- (-4 *3 (-1232 *4))))
- ((*1 *2 *3 *4 *4)
- (|partial| -12 (-5 *4 (-766)) (-4 *5 (-362))
- (-5 *2 (-2 (|:| -1588 *3) (|:| -1602 *3))) (-5 *1 (-891 *3 *5))
- (-4 *3 (-1232 *5))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112))
- (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451))
- (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1062 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112))
- (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451))
- (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1062 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112))
- (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451))
- (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1137 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-639 *9)) (-5 *3 (-639 *8)) (-5 *4 (-112))
- (-4 *8 (-1058 *5 *6 *7)) (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451))
- (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1141 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-639 (-406 (-947 (-562))))) (-5 *4 (-639 (-1168)))
- (-5 *2 (-639 (-639 *5))) (-5 *1 (-379 *5))
- (-4 *5 (-13 (-843) (-362)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-947 (-562)))) (-5 *2 (-639 *4)) (-5 *1 (-379 *4))
- (-4 *4 (-13 (-843) (-362))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-562)) (|has| *1 (-6 -4393)) (-4 *1 (-403))
- (-5 *2 (-916)))))
+ (-2 (|:| -4291 (-683 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-683 *3))))
+ (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $)))))
+ (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-293 *3))) (-5 *1 (-293 *3)) (-4 *3 (-554))
- (-4 *3 (-1207)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1044)) (-4 *3 (-1232 *4)) (-4 *2 (-1247 *4))
- (-5 *1 (-1250 *4 *3 *5 *2)) (-4 *5 (-650 *3)))))
+ (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
+ (-4 *4 (-1044)))))
(((*1 *2 *3)
- (-12 (-4 *2 (-362)) (-4 *2 (-843)) (-5 *1 (-940 *2 *3))
- (-4 *3 (-1232 *2)))))
-(((*1 *2 *3 *1)
- (-12
- (-5 *2
- (-2 (|:| |cycle?| (-112)) (|:| -2178 (-766)) (|:| |period| (-766))))
- (-5 *1 (-1148 *4)) (-4 *4 (-1207)) (-5 *3 (-766)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))))
+ (|partial| -12 (-4 *5 (-1033 (-48)))
+ (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-4 *5 (-429 *4))
+ (-5 *2 (-417 (-1164 (-48)))) (-5 *1 (-434 *4 *5 *3))
+ (-4 *3 (-1232 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *3))
+ (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-52)) (-5 *1 (-824)))))
(((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3))))
((*1 *1 *1)
(-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168))
(-14 *4 *2))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-348)) (-5 *2 (-417 (-1164 (-1164 *4))))
- (-5 *1 (-1205 *4)) (-5 *3 (-1164 (-1164 *4))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1134 *4 *2)) (-14 *4 (-916))
- (-4 *2 (-13 (-1044) (-10 -7 (-6 (-4404 "*")))))
- (-5 *1 (-897 *4 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 *4)) (-4 *4 (-1044)) (-5 *2 (-1256 *4))
- (-5 *1 (-1169 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-916)) (-5 *2 (-1256 *3)) (-5 *1 (-1169 *3))
- (-4 *3 (-1044)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-14 *5 (-639 (-1168))) (-4 *2 (-171))
- (-4 *4 (-237 (-3492 *5) (-766)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2466 *3) (|:| -1960 *4))
- (-2 (|:| -2466 *3) (|:| -1960 *4))))
- (-5 *1 (-460 *5 *2 *3 *4 *6 *7)) (-4 *3 (-845))
- (-4 *7 (-944 *2 *4 (-859 *5))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-1229 *5 *4)) (-5 *1 (-1166 *4 *5 *6))
- (-4 *4 (-1044)) (-14 *5 (-1168)) (-14 *6 *4)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-1229 *5 *4)) (-5 *1 (-1248 *4 *5 *6))
- (-4 *4 (-1044)) (-14 *5 (-1168)) (-14 *6 *4))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-1044)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-639 *3)) (-5 *1 (-956 *3)) (-4 *3 (-544)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -2355 *3) (|:| |coef1| (-777 *3)) (|:| |coef2| (-777 *3))))
+ (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 (-639 *6))) (-4 *6 (-944 *3 *5 *4))
+ (-4 *3 (-13 (-306) (-146))) (-4 *4 (-13 (-845) (-610 (-1168))))
+ (-4 *5 (-788)) (-5 *1 (-919 *3 *4 *5 *6)))))
(((*1 *2 *3 *3 *4 *3)
(-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
(-5 *1 (-742)))))
-(((*1 *2 *1) (-12 (-4 *1 (-367)) (-5 *2 (-916))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-916))
- (-5 *1 (-527 *4)))))
(((*1 *2 *3)
- (-12 (-4 *3 (-1232 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-980 *4 *2 *3 *5))
- (-4 *4 (-348)) (-4 *5 (-719 *2 *3)))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1150)) (-5 *4 (-168 (-224))) (-5 *5 (-562))
- (-5 *2 (-1030)) (-5 *1 (-753)))))
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
+ (-5 *2 (-1256 (-683 *4)))))
+ ((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-1256 (-683 *4))) (-5 *1 (-415 *3 *4))
+ (-4 *3 (-416 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-1256 (-683 *3)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-1168))) (-4 *5 (-362))
+ (-5 *2 (-1256 (-683 (-406 (-947 *5))))) (-5 *1 (-1078 *5))
+ (-5 *4 (-683 (-406 (-947 *5))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-1168))) (-4 *5 (-362))
+ (-5 *2 (-1256 (-683 (-947 *5)))) (-5 *1 (-1078 *5))
+ (-5 *4 (-683 (-947 *5)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-683 *4))) (-4 *4 (-362))
+ (-5 *2 (-1256 (-683 *4))) (-5 *1 (-1078 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-406 (-947 *5)))) (-5 *4 (-639 (-1168)))
- (-4 *5 (-554)) (-5 *2 (-639 (-639 (-947 *5)))) (-5 *1 (-1176 *5)))))
-(((*1 *2 *1 *3 *3 *4)
- (-12 (-5 *3 (-1 (-857) (-857) (-857))) (-5 *4 (-562)) (-5 *2 (-857))
- (-5 *1 (-643 *5 *6 *7)) (-4 *5 (-1092)) (-4 *6 (-23)) (-14 *7 *6)))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-857)) (-5 *1 (-849 *3 *4 *5)) (-4 *3 (-1044))
- (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-224)) (-5 *1 (-857))))
- ((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-857))))
- ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-857))))
- ((*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857))))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-857)) (-5 *1 (-1164 *3)) (-4 *3 (-1044)))))
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362))
+ (-4 *7 (-1232 (-406 *6)))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| -2312 *3)))
+ (-5 *1 (-560 *5 *6 *7 *3)) (-4 *3 (-341 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362))
+ (-5 *2
+ (-2 (|:| |answer| (-406 *6)) (|:| -2312 (-406 *6))
+ (|:| |specpart| (-406 *6)) (|:| |polypart| *6)))
+ (-5 *1 (-561 *5 *6)) (-5 *3 (-406 *6)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-742)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-112))
+ (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-4 *3 (-13 (-27) (-1192) (-429 *6) (-10 -8 (-15 -4053 ($ *7)))))
+ (-4 *7 (-843))
+ (-4 *8
+ (-13 (-1234 *3 *7) (-362) (-1192)
+ (-10 -8 (-15 -4029 ($ $)) (-15 -3081 ($ $)))))
+ (-5 *2
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))))
+ (-5 *1 (-421 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1150)) (-4 *9 (-978 *8))
+ (-14 *10 (-1168)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-406 *5)) (-4 *5 (-1232 *4)) (-4 *4 (-554))
+ (-4 *4 (-1044)) (-4 *2 (-1247 *4)) (-5 *1 (-1250 *4 *5 *6 *2))
+ (-4 *6 (-650 *5)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1030)))))
(((*1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-554)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-639 (-315 (-224)))) (-5 *3 (-224)) (-5 *2 (-112))
- (-5 *1 (-209)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-451)) (-4 *4 (-845)) (-4 *5 (-788)) (-5 *2 (-639 *6))
- (-5 *1 (-982 *3 *4 *5 *6)) (-4 *6 (-944 *3 *5 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-329)))))
-(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466))))
- ((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466))))
- ((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-385 *2)) (-4 *2 (-1092))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))))
+ (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 *4))))
+ (-4 *3 (-1092)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-643 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *1 (-909 *2)) (-4 *2 (-306)))))
+(((*1 *2 *1) (-12 (-4 *1 (-508 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-845)))))
+(((*1 *1 *2 *3 *1 *3)
+ (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-884 *4 *3))
+ (-4 *3 (-1092)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *2)
- (|:| |polj| *2)))
- (-4 *5 (-788)) (-4 *2 (-944 *4 *5 *6)) (-5 *1 (-448 *4 *5 *6 *2))
- (-4 *4 (-451)) (-4 *6 (-845)))))
+ (-12 (-5 *3 (-1168)) (-4 *5 (-1211)) (-4 *6 (-1232 *5))
+ (-4 *7 (-1232 (-406 *6))) (-5 *2 (-639 (-947 *5)))
+ (-5 *1 (-340 *4 *5 *6 *7)) (-4 *4 (-341 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1168)) (-4 *1 (-341 *4 *5 *6)) (-4 *4 (-1211))
+ (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-4 *4 (-362))
+ (-5 *2 (-639 (-947 *4))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1125 (-224))) (-5 *3 (-639 (-262))) (-5 *1 (-1258))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1125 (-224))) (-5 *3 (-1150)) (-5 *1 (-1258))))
+ ((*1 *1 *1) (-5 *1 (-1258))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1092) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1132 *4 *5)) (-4 *4 (-13 (-1092) (-34))))))
+(((*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
+ ((*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *1 *1) (-4 *1 (-1131))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-781)))))
+(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693))))
+ ((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-562)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1044))
- (-5 *1 (-320 *4 *5 *2 *6)) (-4 *6 (-944 *2 *4 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-639 *6)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-766))))
+ (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))))
+(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-639 (-1022 *5 *6 *7 *3))) (-5 *1 (-1022 *5 *6 *7 *3))
+ (-4 *3 (-1058 *5 *6 *7))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-639 *6)) (-4 *1 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-1064 *3 *4 *5 *2)) (-4 *3 (-451)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5))))
+ ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-5 *2 (-639 (-1138 *5 *6 *7 *3))) (-5 *1 (-1138 *5 *6 *7 *3))
+ (-4 *3 (-1058 *5 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-5 *2 (-766)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1092)) (-4 *6 (-881 *5)) (-5 *2 (-880 *5 *6 (-639 *6)))
- (-5 *1 (-882 *5 *6 *4)) (-5 *3 (-639 *6)) (-4 *4 (-610 (-887 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1092)) (-5 *2 (-639 (-293 *3))) (-5 *1 (-882 *5 *3 *4))
- (-4 *3 (-1033 (-1168))) (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1092)) (-5 *2 (-639 (-293 (-947 *3))))
- (-5 *1 (-882 *5 *3 *4)) (-4 *3 (-1044))
- (-2236 (-4 *3 (-1033 (-1168)))) (-4 *3 (-881 *5))
- (-4 *4 (-610 (-887 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1092)) (-5 *2 (-884 *5 *3)) (-5 *1 (-882 *5 *3 *4))
- (-2236 (-4 *3 (-1033 (-1168)))) (-2236 (-4 *3 (-1044)))
- (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *3 *2))
- (-4 *2 (-13 (-27) (-1192) (-429 (-168 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562))))
- (-5 *1 (-187 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168))
- (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-1196 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))))
-(((*1 *2 *2 *3 *3 *4)
- (-12 (-5 *4 (-766)) (-4 *3 (-554)) (-5 *1 (-964 *3 *2))
- (-4 *2 (-1232 *3)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *1 (-583 *2)) (-4 *2 (-1033 *3))
- (-4 *2 (-362))))
- ((*1 *1 *2 *2) (-12 (-5 *1 (-583 *2)) (-4 *2 (-362))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-626 *4 *2))
- (-4 *2 (-13 (-429 *4) (-997) (-1192)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1084 *2)) (-4 *2 (-13 (-429 *4) (-997) (-1192)))
- (-4 *4 (-13 (-845) (-554))) (-5 *1 (-626 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-954)) (-5 *2 (-1168))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1084 *1)) (-4 *1 (-954)))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-140))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-143)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1150)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
- ((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-262)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *1 (-103 *3)) (-4 *3 (-1092)))))
+ (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
+ (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150))
+ (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -1603 *6) (|:| |sol?| (-112))) (-562)
+ *6))
+ (-4 *6 (-362)) (-4 *7 (-1232 *6))
+ (-5 *2 (-2 (|:| |answer| (-583 (-406 *7))) (|:| |a0| *6)))
+ (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-173 (-406 (-562)))) (-5 *1 (-117 *3)) (-14 *3 (-562))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *3 (-1148 *2)) (-4 *2 (-306)) (-5 *1 (-173 *2))))
- ((*1 *1 *2) (-12 (-5 *2 (-406 *3)) (-4 *3 (-306)) (-5 *1 (-173 *3))))
+ (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845))
+ (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-766))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845))
+ (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-766))))
+ ((*1 *2 *1) (-12 (-4 *1 (-265 *3)) (-4 *3 (-845)) (-5 *2 (-766))))
+ ((*1 *2 *1) (-12 (-4 *1 (-348)) (-5 *2 (-916))))
((*1 *2 *3)
- (-12 (-5 *2 (-173 (-562))) (-5 *1 (-760 *3)) (-4 *3 (-403))))
+ (-12 (-5 *3 (-335 *4 *5 *6 *7)) (-4 *4 (-13 (-367) (-362)))
+ (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-4 *7 (-341 *4 *5 *6))
+ (-5 *2 (-766)) (-5 *1 (-391 *4 *5 *6 *7))))
+ ((*1 *2 *1) (-12 (-4 *1 (-401)) (-5 *2 (-828 (-916)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-403)) (-5 *2 (-562))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-593 *3)) (-4 *3 (-1044))))
+ ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-593 *3)) (-4 *3 (-1044))))
((*1 *2 *1)
- (-12 (-5 *2 (-173 (-406 (-562)))) (-5 *1 (-866 *3)) (-14 *3 (-562))))
+ (-12 (-4 *3 (-554)) (-5 *2 (-562)) (-5 *1 (-619 *3 *4))
+ (-4 *4 (-1232 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-766)) (-4 *1 (-735 *4 *3)) (-4 *4 (-1044))
+ (-4 *3 (-845))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-735 *4 *3)) (-4 *4 (-1044)) (-4 *3 (-845))
+ (-5 *2 (-766))))
+ ((*1 *2 *1) (-12 (-4 *1 (-864 *3)) (-5 *2 (-766))))
+ ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-899 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-900 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-335 *5 *6 *7 *8)) (-4 *5 (-429 *4))
+ (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6)))
+ (-4 *8 (-341 *5 *6 *7))
+ (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-766))
+ (-5 *1 (-906 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-335 (-406 (-562)) *4 *5 *6))
+ (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-1232 (-406 *4)))
+ (-4 *6 (-341 (-406 (-562)) *4 *5)) (-5 *2 (-766))
+ (-5 *1 (-907 *4 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-335 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-362))
+ (-4 *7 (-1232 *6)) (-4 *4 (-1232 (-406 *7))) (-4 *8 (-341 *6 *7 *4))
+ (-4 *9 (-13 (-367) (-362))) (-5 *2 (-766))
+ (-5 *1 (-1013 *6 *7 *4 *8 *9))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1232 *3)) (-4 *3 (-1044)) (-4 *3 (-554))
+ (-5 *2 (-766))))
+ ((*1 *2 *1 *2)
+ (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787))))
((*1 *2 *1)
- (-12 (-14 *3 (-562)) (-5 *2 (-173 (-406 (-562))))
- (-5 *1 (-867 *3 *4)) (-4 *4 (-864 *3)))))
+ (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-5 *1 (-485 *2)) (-4 *2 (-1232 (-562))))))
+ (-12 (-5 *3 (-683 (-406 (-947 *4)))) (-4 *4 (-451))
+ (-5 *2 (-639 (-3 (-406 (-947 *4)) (-1157 (-1168) (-947 *4)))))
+ (-5 *1 (-291 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-416 *4)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *2 (-639 (-1164 *7))) (-5 *3 (-1164 *7))
- (-4 *7 (-944 *5 *6 *4)) (-4 *5 (-904)) (-4 *6 (-788))
- (-4 *4 (-845)) (-5 *1 (-901 *5 *6 *4 *7)))))
-(((*1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1259)))))
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-554))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 (-1269 *4 *5 *6 *7)))
+ (-5 *1 (-1269 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-639 *9)) (-5 *4 (-1 (-112) *9 *9))
+ (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1058 *6 *7 *8)) (-4 *6 (-554))
+ (-4 *7 (-788)) (-4 *8 (-845)) (-5 *2 (-639 (-1269 *6 *7 *8 *9)))
+ (-5 *1 (-1269 *6 *7 *8 *9)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-293 (-828 *3)))
+ (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *2 (-828 *3)) (-5 *1 (-632 *5 *3))
+ (-4 *3 (-13 (-27) (-1192) (-429 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-293 (-828 (-947 *5)))) (-4 *5 (-451))
+ (-5 *2 (-828 (-406 (-947 *5)))) (-5 *1 (-633 *5))
+ (-5 *3 (-406 (-947 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-293 (-406 (-947 *5)))) (-5 *3 (-406 (-947 *5)))
+ (-4 *5 (-451)) (-5 *2 (-828 *3)) (-5 *1 (-633 *5)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-362)) (-4 *3 (-1044))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -3147 *1)))
+ (-4 *1 (-847 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *3))))
+ (-5 *1 (-592 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207))
+ (-5 *2 (-112)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-639 *7)) (-5 *3 (-562)) (-4 *7 (-944 *4 *5 *6))
+ (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-5 *1 (-448 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-4 *6 (-1232 *9)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *9 (-306))
+ (-4 *10 (-944 *9 *7 *8))
+ (-5 *2
+ (-2 (|:| |deter| (-639 (-1164 *10)))
+ (|:| |dterm|
+ (-639 (-639 (-2 (|:| -2542 (-766)) (|:| |pcoef| *10)))))
+ (|:| |nfacts| (-639 *6)) (|:| |nlead| (-639 *10))))
+ (-5 *1 (-773 *6 *7 *8 *9 *10)) (-5 *3 (-1164 *10)) (-5 *4 (-639 *6))
+ (-5 *5 (-639 *10)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *2 (-1058 *4 *5 *6)) (-5 *1 (-771 *4 *5 *6 *2 *3))
+ (-4 *3 (-1064 *4 *5 *6 *2)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261))
+ (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1150)) (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-1261))
+ (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-362)) (-5 *2 (-639 *3)) (-5 *1 (-940 *4 *3))
+ (-4 *3 (-1232 *4)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-639 (-766))) (-5 *3 (-170)) (-5 *1 (-1156 *4 *5))
+ (-14 *4 (-916)) (-4 *5 (-1044)))))
+(((*1 *1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044))
+ (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-140))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-143)))))
+(((*1 *1 *2 *2 *2)
+ (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192)))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362))))
+ ((*1 *1 *2) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362))))
+ ((*1 *2 *1 *3 *4 *4)
+ (-12 (-5 *3 (-916)) (-5 *4 (-378)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-451))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *3 (-1058 *4 *5 *6))
+ (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1501 *1))))
+ (-4 *1 (-1064 *4 *5 *6 *3))))
+ ((*1 *1 *1) (-4 *1 (-1211)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-554)) (-5 *1 (-1235 *3 *2))
+ (-4 *2 (-13 (-1232 *3) (-554) (-10 -8 (-15 -1606 ($ $ $))))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-639 (-938 (-224)))))
- (-5 *2 (-639 (-1086 (-224)))) (-5 *1 (-923)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-909 *3)) (-4 *3 (-306)))))
-(((*1 *2 *3 *4 *5 *3 *6 *3)
- (-12 (-5 *3 (-562)) (-5 *5 (-168 (-224))) (-5 *6 (-1150))
- (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
- (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224)))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))))
- (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-224))
- (-5 *2 (-1030)) (-5 *1 (-750))))
- ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
+ (-12 (-5 *3 (-1041 *4 *5)) (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
+ (-14 *5 (-639 (-1168))) (-5 *2 (-639 (-639 (-1019 (-406 *4)))))
+ (-5 *1 (-1282 *4 *5 *6)) (-14 *6 (-639 (-1168)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7))
+ (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2 (-639 (-639 (-1019 (-406 *5))))) (-5 *1 (-1282 *5 *6 *7))
+ (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-947 *4)))
+ (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2 (-639 (-639 (-1019 (-406 *4))))) (-5 *1 (-1282 *4 *5 *6))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044))
+ (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1256 *5)) (-4 *5 (-635 *4)) (-4 *4 (-554))
+ (-5 *2 (-112)) (-5 *1 (-634 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451)) (-4 *5 (-788))
+ (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
(-12 (-5 *3 (-562)) (-5 *5 (-683 (-224)))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))))
- (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-387))
- (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-750)))))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-75 FCN JACOBF JACEPS))))
+ (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-76 G JACOBG JACGEP))))
+ (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-744)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-947 (-562))) (-5 *2 (-329))
+ (-5 *1 (-331))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-1084 (-947 (-562)))) (-5 *2 (-329))
+ (-5 *1 (-331))))
+ ((*1 *1 *2 *2 *2)
+ (-12 (-5 *2 (-766)) (-5 *1 (-669 *3)) (-4 *3 (-1044))
+ (-4 *3 (-1092)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-112))
+ (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-4 *3 (-13 (-27) (-1192) (-429 *6) (-10 -8 (-15 -4053 ($ *7)))))
+ (-4 *7 (-843))
+ (-4 *8
+ (-13 (-1234 *3 *7) (-362) (-1192)
+ (-10 -8 (-15 -4029 ($ $)) (-15 -3081 ($ $)))))
+ (-5 *2
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))))
+ (-5 *1 (-421 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1150)) (-4 *9 (-978 *8))
+ (-14 *10 (-1168)))))
(((*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-140))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1136)) (-5 *2 (-143)))))
(((*1 *2 *3) (-12 (-5 *3 (-639 (-52))) (-5 *2 (-1261)) (-5 *1 (-858)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-916)) (-5 *2 (-1261)) (-5 *1 (-213 *4))
- (-4 *4
- (-13 (-845)
- (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 (*2 $))
- (-15 -1966 (*2 $)))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1261)) (-5 *1 (-213 *3))
- (-4 *3
- (-13 (-845)
- (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 (*2 $))
- (-15 -1966 (*2 $)))))))
- ((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-501)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-1170 (-406 (-562))))
- (-5 *1 (-189)))))
-(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378))))
- ((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-378)))))
+(((*1 *1 *1) (-4 *1 (-554))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 (-168 (-224)) (-168 (-224)))) (-5 *4 (-1086 (-224)))
+ (-5 *2 (-1258)) (-5 *1 (-256)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-150 *2))
+ (-4 *2 (-1207)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845)) (-4 *5 (-1058 *3 *4 *2)))))
(((*1 *2 *3 *4)
- (-12 (-5 *2 (-639 (-168 *4))) (-5 *1 (-154 *3 *4))
- (-4 *3 (-1232 (-168 (-562)))) (-4 *4 (-13 (-362) (-843)))))
+ (-12 (-4 *5 (-554))
+ (-5 *2 (-2 (|:| -1767 (-683 *5)) (|:| |vec| (-1256 (-639 (-916))))))
+ (-5 *1 (-90 *5 *3)) (-5 *4 (-916)) (-4 *3 (-650 *5)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
+ (-4 *4 (-1092)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150))
+ (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *2 *3 *3)
+ (|partial| -12 (-5 *3 (-1168))
+ (-4 *4 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-573 *4 *2))
+ (-4 *2 (-13 (-1192) (-954) (-1131) (-29 *4))))))
+(((*1 *1) (-5 *1 (-143)))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-639 (-168 *4)))
- (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-639 (-168 *4)))
- (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))))
-(((*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1150)) (-5 *1 (-781)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1241 *3 *4 *5)) (-5 *1 (-318 *3 *4 *5))
- (-4 *3 (-13 (-362) (-845))) (-14 *4 (-1168)) (-14 *5 *3)))
- ((*1 *2 *1) (-12 (-4 *1 (-403)) (-5 *2 (-562))))
- ((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-417 *3)) (-4 *3 (-554))))
- ((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-693))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1092)) (-5 *1 (-708 *3 *2 *4)) (-4 *3 (-845))
- (-14 *4
- (-1 (-112) (-2 (|:| -2466 *3) (|:| -1960 *2))
- (-2 (|:| -2466 *3) (|:| -1960 *2)))))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-781)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171))
- (-4 *5 (-1232 *4)) (-5 *2 (-683 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3))
- (-5 *2 (-683 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
- (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-717)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-721)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
- (-5 *1 (-175 *3)))))
+ (-12 (-5 *3 (-639 (-262))) (-5 *2 (-1125 (-224))) (-5 *1 (-260))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1125 (-224))) (-5 *1 (-262)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *2 (-639 *4)) (-5 *1 (-774 *4))
+ (-4 *4 (-13 (-362) (-843))))))
+(((*1 *2 *1) (-12 (-5 *2 (-182)) (-5 *1 (-247)))))
(((*1 *1 *1) (-5 *1 (-48)))
((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1207))
(-4 *2 (-1207)) (-5 *1 (-58 *5 *2))))
((*1 *2 *3 *1 *2 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1092)) (|has| *1 (-6 -4402))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1092)) (|has| *1 (-6 -4403))
(-4 *1 (-150 *2)) (-4 *2 (-1207))))
((*1 *2 *3 *1 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4402)) (-4 *1 (-150 *2))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4403)) (-4 *1 (-150 *2))
(-4 *2 (-1207))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4402)) (-4 *1 (-150 *2))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4403)) (-4 *1 (-150 *2))
(-4 *2 (-1207))))
((*1 *2 *3)
(-12 (-4 *4 (-1044))
- (-5 *2 (-2 (|:| -4380 (-1164 *4)) (|:| |deg| (-916))))
+ (-5 *2 (-2 (|:| -4201 (-1164 *4)) (|:| |deg| (-916))))
(-5 *1 (-220 *4 *5)) (-5 *3 (-1164 *4)) (-4 *5 (-13 (-554) (-845)))))
((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-239 *5 *6)) (-14 *5 (-766))
@@ -13635,35 +13587,46 @@
((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1256 *5)) (-4 *5 (-1207))
(-4 *2 (-1207)) (-5 *1 (-1255 *5 *2)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-972 *4 *5 *6 *3)) (-4 *3 (-1058 *4 *5 *6)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-683 *3)) (-4 *3 (-306)) (-5 *1 (-694 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
- (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362)))
- (-4 *3 (-1232 *4)) (-5 *2 (-112)))))
-(((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1168)) (-5 *1 (-669 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1241 *3 *4 *5)) (-4 *3 (-13 (-362) (-845)))
+ (-14 *4 (-1168)) (-14 *5 *3) (-5 *1 (-318 *3 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1 (-378))) (-5 *1 (-1035)) (-5 *3 (-378)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
+ (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-639 (-1168))) (-4 *5 (-554))
+ (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-765 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-554))
+ (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-765 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-683 *7))
+ (-5 *5
+ (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -4291 (-639 *6)))
+ *7 *6))
+ (-4 *6 (-362)) (-4 *7 (-650 *6))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1256 *6) "failed"))
+ (|:| -4291 (-639 (-1256 *6)))))
+ (-5 *1 (-808 *6 *7)) (-5 *4 (-1256 *6)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1256 *5)) (-4 *5 (-787)) (-5 *2 (-112))
+ (-5 *1 (-840 *4 *5)) (-14 *4 (-766)))))
(((*1 *2 *3 *1)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-3 (-112) (-639 *1)))
- (-4 *1 (-1064 *4 *5 *6 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-38 (-406 (-562))))
- (-5 *2 (-2 (|:| -4074 (-1148 *4)) (|:| -4087 (-1148 *4))))
- (-5 *1 (-1154 *4)) (-5 *3 (-1148 *4)))))
-(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1150)) (-5 *3 (-818)) (-5 *1 (-817)))))
-(((*1 *2)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
-(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-754)))))
-(((*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1150)) (-5 *1 (-52)))))
+ (-12 (-5 *3 (-900 *4)) (-4 *4 (-1092)) (-5 *2 (-639 (-766)))
+ (-5 *1 (-899 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1094 *3)) (-5 *1 (-899 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1094 *3)) (-5 *1 (-900 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-845)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-608 *6)) (-4 *6 (-13 (-429 *5) (-27) (-1192)))
(-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
@@ -13682,161 +13645,116 @@
((*1 *2 *1)
(-12 (-4 *2 (-944 *3 *4 *5)) (-5 *1 (-1029 *3 *4 *5 *2 *6))
(-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845)) (-14 *6 (-639 *2)))))
+(((*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258))))
+ ((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))))
+(((*1 *1 *1 *1) (-4 *1 (-142)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *6)) (-5 *4 (-639 (-1168))) (-4 *6 (-362))
- (-5 *2 (-639 (-293 (-947 *6)))) (-5 *1 (-537 *5 *6 *7))
- (-4 *5 (-451)) (-4 *7 (-13 (-362) (-843))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-562)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-639 (-1 *4 (-639 *4)))) (-4 *4 (-1092))
- (-5 *1 (-113 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1092))
- (-5 *1 (-113 *4))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *2 (-639 (-1 *4 (-639 *4))))
- (-5 *1 (-113 *4)) (-4 *4 (-1092)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-322 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-130))
- (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 *4))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| -4221 *3) (|:| -3045 *4))))
- (-5 *1 (-730 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-721))))
+ (-12 (-5 *3 (-683 *5)) (-5 *4 (-1256 *5)) (-4 *5 (-362))
+ (-5 *2 (-112)) (-5 *1 (-661 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-362)) (-4 *6 (-13 (-372 *5) (-10 -7 (-6 -4404))))
+ (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4404)))) (-5 *2 (-112))
+ (-5 *1 (-662 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-845)) (-4 *5 (-788))
+ (-4 *6 (-554)) (-4 *7 (-944 *6 *5 *3))
+ (-5 *1 (-461 *5 *3 *6 *7 *2))
+ (-4 *2
+ (-13 (-1033 (-406 (-562))) (-362)
+ (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $))
+ (-15 -4079 (*7 $))))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-916)) (-4 *4 (-367)) (-4 *4 (-362)) (-5 *2 (-1164 *1))
+ (-4 *1 (-328 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-1164 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787))
- (-5 *2 (-1148 (-2 (|:| |k| *4) (|:| |c| *3)))))))
-(((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259))))
- ((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-639 (-916))) (-5 *1 (-1093 *3 *4)) (-14 *3 (-916))
- (-14 *4 (-916)))))
-(((*1 *1 *1 *1) (-4 *1 (-962))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-315 *3)) (-4 *3 (-554)) (-4 *3 (-845)))))
-(((*1 *2 *1) (-12 (-4 *1 (-388)) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-4 *1 (-107 *3)))))
+ (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-171)) (-4 *3 (-362))
+ (-4 *2 (-1232 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-1164 *4))
+ (-5 *1 (-527 *4)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-766)) (-5 *1 (-851 *2)) (-4 *2 (-171))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 *4)) (-4 *4 (-1092)) (-5 *2 (-1261))
- (-5 *1 (-1208 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 *4)) (-4 *4 (-1092)) (-5 *2 (-1261))
- (-5 *1 (-1208 *4)))))
-(((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-639 (-1022 *5 *6 *7 *8))) (-5 *1 (-1022 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-112)) (-4 *8 (-1058 *5 *6 *7))
- (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-639 (-1138 *5 *6 *7 *8))) (-5 *1 (-1138 *5 *6 *7 *8)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-114))))
- ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-114))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845))
- (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-766))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845))
- (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-766))))
- ((*1 *2 *1) (-12 (-4 *1 (-265 *3)) (-4 *3 (-845)) (-5 *2 (-766)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-562)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1207))
- (-4 *3 (-372 *4)) (-4 *5 (-372 *4)))))
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1092))
+ (-4 *6 (-1092)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-678 *4 *5 *6)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *1 *2 *3 *3 *3 *4)
+ (-12 (-4 *4 (-362)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 (-406 *3)))
+ (-4 *1 (-334 *4 *3 *5 *2)) (-4 *2 (-341 *4 *3 *5))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *3 (-562)) (-4 *2 (-362)) (-4 *4 (-1232 *2))
+ (-4 *5 (-1232 (-406 *4))) (-4 *1 (-334 *2 *4 *5 *6))
+ (-4 *6 (-341 *2 *4 *5))))
+ ((*1 *1 *2 *2)
+ (-12 (-4 *2 (-362)) (-4 *3 (-1232 *2)) (-4 *4 (-1232 (-406 *3)))
+ (-4 *1 (-334 *2 *3 *4 *5)) (-4 *5 (-341 *2 *3 *4))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4)))
+ (-4 *1 (-334 *3 *4 *5 *2)) (-4 *2 (-341 *3 *4 *5))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-412 *4 (-406 *4) *5 *6)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5)) (-4 *3 (-362))
+ (-4 *1 (-334 *3 *4 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-234 *3))))
+ ((*1 *1) (-12 (-4 *1 (-234 *2)) (-4 *2 (-1092)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-121 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *9 (-1064 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788))
+ (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1062 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 *9)) (-4 *8 (-1058 *5 *6 *7))
+ (-4 *9 (-1101 *5 *6 *7 *8)) (-4 *5 (-451)) (-4 *6 (-788))
+ (-4 *7 (-845)) (-5 *2 (-766)) (-5 *1 (-1137 *5 *6 *7 *8 *9)))))
(((*1 *2 *1)
- (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171))
- (-4 *5 (-237 (-3492 *3) (-766)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2466 *2) (|:| -1960 *5))
- (-2 (|:| -2466 *2) (|:| -1960 *5))))
- (-4 *2 (-845)) (-5 *1 (-460 *3 *4 *2 *5 *6 *7))
- (-4 *7 (-944 *4 *5 (-859 *3))))))
-(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))))
-(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
- (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562))
- (-5 *2 (-1030)) (-5 *1 (-751)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1007)) (-5 *2 (-857)))))
+ (-12 (-4 *1 (-600 *2 *3)) (-4 *3 (-1207)) (-4 *2 (-1092))
+ (-4 *2 (-845)))))
+(((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+(((*1 *2 *1) (-12 (-5 *2 (-817)) (-5 *1 (-816)))))
+(((*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4))
+ (-4 *6 (-372 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
+ (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-171)) (-4 *2 (-1044)) (-5 *1 (-709 *2 *3))
+ (-4 *3 (-642 *2))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-171)) (-4 *2 (-1044)) (-5 *1 (-709 *2 *3))
+ (-4 *3 (-642 *2))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-831 *2)) (-4 *2 (-171)) (-4 *2 (-1044))))
+ ((*1 *1 *1) (-12 (-5 *1 (-831 *2)) (-4 *2 (-171)) (-4 *2 (-1044)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+(((*1 *2 *3) (-12 (-5 *3 (-639 (-562))) (-5 *2 (-766)) (-5 *1 (-587)))))
+(((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-52)) (-5 *1 (-824)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-766)) (-4 *5 (-554))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-274)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-1 (-112) *8))) (-4 *8 (-1058 *5 *6 *7))
- (-4 *5 (-554)) (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-2 (|:| |goodPols| (-639 *8)) (|:| |badPols| (-639 *8))))
- (-5 *1 (-972 *5 *6 *7 *8)) (-5 *4 (-639 *8)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878))
- (-5 *3 (-639 (-562))))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
- (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-224))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))))
- (-5 *2 (-1030)) (-5 *1 (-744))))
- ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
- (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *5 (-224))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-61 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-87 BDYVAL))))
- (-5 *8 (-387)) (-5 *2 (-1030)) (-5 *1 (-744)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-971 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-554))
- (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-747)))))
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
+ (-5 *4 (-683 (-1164 *8))) (-4 *5 (-1044)) (-4 *8 (-1044))
+ (-4 *6 (-1232 *5)) (-5 *2 (-683 *6)) (-5 *1 (-500 *5 *6 *7 *8))
+ (-4 *7 (-1232 *6)))))
(((*1 *1) (-12 (-5 *1 (-685 *2)) (-4 *2 (-609 (-857))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-141 *2 *4 *3))
- (-4 *3 (-372 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-502 *2 *4 *5 *3))
- (-4 *5 (-372 *2)) (-4 *3 (-372 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-683 *4)) (-4 *4 (-987 *2)) (-4 *2 (-554))
- (-5 *1 (-687 *2 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-987 *2)) (-4 *2 (-554)) (-5 *1 (-1225 *2 *4 *3))
- (-4 *3 (-1232 *4)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-683 *4)) (-5 *3 (-916)) (|has| *4 (-6 (-4404 "*")))
- (-4 *4 (-1044)) (-5 *1 (-1023 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-639 (-683 *4))) (-5 *3 (-916))
- (|has| *4 (-6 (-4404 "*"))) (-4 *4 (-1044)) (-5 *1 (-1023 *4)))))
-(((*1 *2 *3 *4 *4 *3)
- (|partial| -12 (-5 *4 (-608 *3))
- (-4 *3 (-13 (-429 *5) (-27) (-1192)))
- (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *2 (-2 (|:| -3860 *3) (|:| |coeff| *3)))
- (-5 *1 (-564 *5 *3 *6)) (-4 *6 (-1092)))))
(((*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-49))))
((*1 *2 *1) (-12 (-5 *2 (-639 (-505))) (-5 *1 (-482)))))
-(((*1 *2 *1)
- (-12 (|has| *1 (-6 -4402)) (-4 *1 (-488 *3)) (-4 *3 (-1207))
- (-5 *2 (-639 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-639 *3)) (-5 *1 (-732 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-639 (-438))) (-5 *1 (-860)))))
-(((*1 *1 *1 *1) (-4 *1 (-472))) ((*1 *1 *1 *1) (-4 *1 (-756))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1207)) (-5 *2 (-766)) (-5 *1 (-181 *4 *3))
- (-4 *3 (-668 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-362) (-843))) (-5 *1 (-180 *3 *2))
- (-4 *2 (-1232 (-168 *3))))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-554)) (-5 *1 (-619 *2 *3)) (-4 *3 (-1232 *2)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562))))
- (-5 *2 (-168 (-315 *4))) (-5 *1 (-187 *4 *3))
- (-4 *3 (-13 (-27) (-1192) (-429 (-168 *4))))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *2 (-168 *3)) (-5 *1 (-1196 *4 *3))
- (-4 *3 (-13 (-27) (-1192) (-429 *4))))))
-(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))))
+(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001))))
+ ((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1001)))))
(((*1 *2 *3 *3)
(-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
(-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
@@ -13845,243 +13763,203 @@
(-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
(-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
(-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
- (-5 *2 (-1256 (-683 *4)))))
+(((*1 *2)
+ (-12 (-5 *2 (-953 (-1112))) (-5 *1 (-342 *3 *4)) (-14 *3 (-916))
+ (-14 *4 (-916))))
((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-1256 (-683 *4))) (-5 *1 (-415 *3 *4))
- (-4 *3 (-416 *4))))
+ (-12 (-5 *2 (-953 (-1112))) (-5 *1 (-343 *3 *4)) (-4 *3 (-348))
+ (-14 *4 (-1164 *3))))
((*1 *2)
- (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-1256 (-683 *3)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-1168))) (-4 *5 (-362))
- (-5 *2 (-1256 (-683 (-406 (-947 *5))))) (-5 *1 (-1078 *5))
- (-5 *4 (-683 (-406 (-947 *5))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-1168))) (-4 *5 (-362))
- (-5 *2 (-1256 (-683 (-947 *5)))) (-5 *1 (-1078 *5))
- (-5 *4 (-683 (-947 *5)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-683 *4))) (-4 *4 (-362))
- (-5 *2 (-1256 (-683 *4))) (-5 *1 (-1078 *4)))))
-(((*1 *1 *2 *3 *1 *3)
- (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-884 *4 *3))
- (-4 *3 (-1092)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845))
- (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-766))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845))
- (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-766))))
- ((*1 *2 *1) (-12 (-4 *1 (-265 *3)) (-4 *3 (-845)) (-5 *2 (-766))))
- ((*1 *2 *1) (-12 (-4 *1 (-348)) (-5 *2 (-916))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-335 *4 *5 *6 *7)) (-4 *4 (-13 (-367) (-362)))
- (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-4 *7 (-341 *4 *5 *6))
- (-5 *2 (-766)) (-5 *1 (-391 *4 *5 *6 *7))))
- ((*1 *2 *1) (-12 (-4 *1 (-401)) (-5 *2 (-828 (-916)))))
- ((*1 *2 *1) (-12 (-4 *1 (-403)) (-5 *2 (-562))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-593 *3)) (-4 *3 (-1044))))
- ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-593 *3)) (-4 *3 (-1044))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-554)) (-5 *2 (-562)) (-5 *1 (-619 *3 *4))
- (-4 *4 (-1232 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-735 *4 *3)) (-4 *4 (-1044))
- (-4 *3 (-845))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-735 *4 *3)) (-4 *4 (-1044)) (-4 *3 (-845))
- (-5 *2 (-766))))
- ((*1 *2 *1) (-12 (-4 *1 (-864 *3)) (-5 *2 (-766))))
- ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-899 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-900 *3)) (-4 *3 (-1092))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-335 *5 *6 *7 *8)) (-4 *5 (-429 *4))
- (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6)))
- (-4 *8 (-341 *5 *6 *7))
- (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-766))
- (-5 *1 (-906 *4 *5 *6 *7 *8))))
+ (-12 (-5 *2 (-953 (-1112))) (-5 *1 (-344 *3 *4)) (-4 *3 (-348))
+ (-14 *4 (-916)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4))
+ (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-335 (-406 (-562)) *4 *5 *6))
- (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-1232 (-406 *4)))
- (-4 *6 (-341 (-406 (-562)) *4 *5)) (-5 *2 (-766))
- (-5 *1 (-907 *4 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-335 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-362))
- (-4 *7 (-1232 *6)) (-4 *4 (-1232 (-406 *7))) (-4 *8 (-341 *6 *7 *4))
- (-4 *9 (-13 (-367) (-362))) (-5 *2 (-766))
- (-5 *1 (-1013 *6 *7 *4 *8 *9))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1232 *3)) (-4 *3 (-1044)) (-4 *3 (-554))
- (-5 *2 (-766))))
- ((*1 *2 *1 *2)
- (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-639 (-766))) (-5 *3 (-170)) (-5 *1 (-1156 *4 *5))
- (-14 *4 (-916)) (-4 *5 (-1044)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 (-406 (-562)))) (-5 *2 (-639 *4)) (-5 *1 (-774 *4))
- (-4 *4 (-13 (-362) (-843))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-639 (-262))) (-5 *4 (-1168))
- (-5 *1 (-261 *2)) (-4 *2 (-1207))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-639 (-262))) (-5 *4 (-1168)) (-5 *2 (-52))
- (-5 *1 (-262)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-121 *3)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-766)) (-4 *5 (-554))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))))
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
+(((*1 *2 *2) (-12 (-5 *2 (-683 (-315 (-562)))) (-5 *1 (-1026)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-642 *3)) (-4 *3 (-1044))
+ (-5 *1 (-709 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-831 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *1 (-782)) (-5 *2 (-1030))
+ (-5 *3
+ (-2 (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))))
+ ((*1 *2 *3 *2)
+ (-12 (-4 *1 (-782)) (-5 *2 (-1030))
+ (-5 *3
+ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224)))))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-562)) (-4 *4 (-171)) (-4 *5 (-372 *4))
+ (-4 *6 (-372 *4)) (-5 *1 (-682 *4 *5 *6 *2))
+ (-4 *2 (-681 *4 *5 *6)))))
(((*1 *1 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *3 *2 *2)
+ (-12 (-5 *2 (-639 (-480 *4 *5))) (-5 *3 (-859 *4))
+ (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *1 (-627 *4 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
+ ((*1 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *1 *1) (-4 *1 (-1131))))
+(((*1 *2 *1) (-12 (-4 *1 (-990 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788))
+ (-4 *8 (-845)) (-4 *9 (-1058 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| -3339 (-639 *9)) (|:| -1501 *4) (|:| |ineq| (-639 *9))))
+ (-5 *1 (-983 *6 *7 *8 *9 *4)) (-5 *3 (-639 *9))
+ (-4 *4 (-1064 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788))
+ (-4 *8 (-845)) (-4 *9 (-1058 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| -3339 (-639 *9)) (|:| -1501 *4) (|:| |ineq| (-639 *9))))
+ (-5 *1 (-1099 *6 *7 *8 *9 *4)) (-5 *3 (-639 *9))
+ (-4 *4 (-1064 *6 *7 *8 *9)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-466)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1044)) (-5 *1 (-1228 *3 *2)) (-4 *2 (-1232 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2355 *4)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 (-887 *6)))
+ (-5 *5 (-1 (-884 *6 *8) *8 (-887 *6) (-884 *6 *8))) (-4 *6 (-1092))
+ (-4 *8 (-13 (-1044) (-610 (-887 *6)) (-1033 *7)))
+ (-5 *2 (-884 *6 *8)) (-4 *7 (-13 (-1044) (-845)))
+ (-5 *1 (-936 *6 *7 *8)))))
+(((*1 *1 *1 *2 *2)
+ (|partial| -12 (-5 *2 (-916)) (-5 *1 (-1093 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-451)) (-4 *4 (-554))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3959 *4)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-417 *5)) (-4 *5 (-554))
(-5 *2
- (-2 (|:| -1960 (-766)) (|:| -4221 *5) (|:| |radicand| (-639 *5))))
+ (-2 (|:| -1300 (-766)) (|:| -4221 *5) (|:| |radicand| (-639 *5))))
(-5 *1 (-319 *5)) (-5 *4 (-766))))
((*1 *1 *1 *2) (-12 (-4 *1 (-997)) (-5 *2 (-562)))))
-(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-546))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-639 *1))
- (-4 *1 (-381 *3 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 (-730 *3 *4))) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044))
- (-4 *4 (-721))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367))
+ (-5 *2 (-1164 *3))))
((*1 *2 *1)
- (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1))
- (-4 *1 (-944 *3 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-306) (-146))) (-4 *4 (-13 (-845) (-610 (-1168))))
- (-4 *5 (-788)) (-5 *1 (-919 *3 *4 *5 *2)) (-4 *2 (-944 *3 *5 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-816)))))
+ (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367))
+ (-5 *2 (-1164 *3)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-639 (-262))) (-5 *4 (-1168))
+ (-5 *1 (-261 *2)) (-4 *2 (-1207))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-639 (-262))) (-5 *4 (-1168)) (-5 *2 (-52))
+ (-5 *1 (-262)))))
+(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-754)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
(((*1 *2 *3 *1)
- (-12 (-4 *4 (-362)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-503 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))))
+ (-12 (-5 *3 (-1168))
+ (-5 *2 (-3 (|:| |fst| (-433)) (|:| -2649 "void"))) (-5 *1 (-1171)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1021 (-838 (-562))))
+ (-5 *3 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *4)))) (-4 *4 (-1044))
+ (-5 *1 (-592 *4)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-306))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-446 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-639 *7)) (-5 *3 (-1150)) (-4 *7 (-944 *4 *5 *6))
- (-4 *4 (-306)) (-4 *5 (-788)) (-4 *6 (-845))
- (-5 *1 (-446 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-639 *7)) (-5 *3 (-1150)) (-4 *7 (-944 *4 *5 *6))
- (-4 *4 (-306)) (-4 *5 (-788)) (-4 *6 (-845))
- (-5 *1 (-446 *4 *5 *6 *7)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1044)))))
+ (-12 (-5 *2 (-639 *3)) (-4 *3 (-1232 (-562))) (-5 *1 (-485 *3)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
- (-5 *1 (-175 *3)))))
+ (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3))
+ (-4 *3 (-1092)))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
+(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466))))
+ ((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466))))
+ ((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1172)))))
+(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-546))))))
+(((*1 *2 *3 *3)
+ (-12 (|has| *2 (-6 (-4405 "*"))) (-4 *5 (-372 *2)) (-4 *6 (-372 *2))
+ (-4 *2 (-1044)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1232 *2))
+ (-4 *4 (-681 *2 *5 *6)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4))
- (-5 *2 (-2 (|:| -4221 (-406 *5)) (|:| |poly| *3)))
- (-5 *1 (-147 *4 *5 *3)) (-4 *3 (-1232 (-406 *5))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-373 *3 *4)) (-4 *3 (-845))
- (-4 *4 (-171))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-1277 *3 *4)) (-4 *3 (-845))
- (-4 *4 (-1044)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845))
- (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-639 (-766)))))
+ (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562))))
((*1 *2 *1)
- (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845))
- (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-639 (-766))))))
-(((*1 *2 *3) (-12 (-5 *3 (-406 (-562))) (-5 *2 (-224)) (-5 *1 (-304)))))
+ (-12 (-5 *2 (-1256 (-3 (-467) "undefined"))) (-5 *1 (-1257)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-639 *1)) (-4 *1 (-915)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-639 *4))
+ (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-467)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-1211)) (-4 *5 (-1232 *3)) (-4 *6 (-1232 (-406 *5)))
- (-5 *2 (-112)) (-5 *1 (-340 *4 *3 *5 *6)) (-4 *4 (-341 *3 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
(((*1 *2 *1) (-12 (-5 *2 (-138)) (-5 *1 (-139))))
((*1 *2 *1) (-12 (-5 *2 (-186)) (-5 *1 (-182))))
((*1 *2 *1) (-12 (-5 *2 (-248)) (-5 *1 (-247)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1044))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-885 *4 *3))
+ (-4 *3 (-1207))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-639 (-562))) (-5 *3 (-112)) (-5 *1 (-1102)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224)))
+ (-5 *2 (-1030)) (-5 *1 (-752)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *6 *5))
- (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
- (-4 *6 (-788)) (-5 *2 (-112)) (-5 *1 (-919 *4 *5 *6 *7))))
+ (|partial| -12 (-5 *3 (-683 *1)) (-4 *1 (-348)) (-5 *2 (-1256 *1))))
((*1 *2 *3)
- (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-13 (-306) (-146)))
- (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-112))
- (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))))
-(((*1 *2 *1) (-12 (-5 *1 (-961 *2)) (-4 *2 (-962)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092))))
+ (|partial| -12 (-5 *3 (-683 *1)) (-4 *1 (-144)) (-4 *1 (-904))
+ (-5 *2 (-1256 *1)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1044)) (-4 *4 (-1092)) (-5 *2 (-639 *1))
+ (-4 *1 (-381 *3 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
- (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-362))
- (-5 *2
- (-2 (|:| A (-683 *5))
- (|:| |eqs|
- (-639
- (-2 (|:| C (-683 *5)) (|:| |g| (-1256 *5)) (|:| -3342 *6)
- (|:| |rh| *5))))))
- (-5 *1 (-808 *5 *6)) (-5 *3 (-683 *5)) (-5 *4 (-1256 *5))
- (-4 *6 (-650 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-362)) (-4 *6 (-650 *5))
- (-5 *2 (-2 (|:| -1545 (-683 *6)) (|:| |vec| (-1256 *5))))
- (-5 *1 (-808 *5 *6)) (-5 *3 (-683 *6)) (-5 *4 (-1256 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-224)) (-5 *1 (-817)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-360 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-5 *2 (-766)) (-5 *1 (-385 *4)) (-4 *4 (-1092))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-4 *2 (-23)) (-5 *1 (-643 *4 *2 *5))
- (-4 *4 (-1092)) (-14 *5 *2)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-5 *2 (-766)) (-5 *1 (-814 *4)) (-4 *4 (-845)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-742)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1131))))
+ (-12 (-5 *2 (-639 (-730 *3 *4))) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044))
+ (-4 *4 (-721))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1))
+ (-4 *1 (-944 *3 *4 *5)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-306)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4))
+ (-12 (-5 *3 (-639 (-480 *4 *5))) (-14 *4 (-639 (-1168)))
+ (-4 *5 (-451))
(-5 *2
- (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
- (-5 *1 (-1116 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-639 *3))
- (-4 *3 (-13 (-27) (-1192) (-429 *6)))
- (-4 *6 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-555 *6 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-683 *3))
- (-4 *3 (-13 (-306) (-10 -8 (-15 -2921 ((-417 $) $)))))
- (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-960))) (-5 *1 (-109)))))
+ (-2 (|:| |gblist| (-639 (-246 *4 *5)))
+ (|:| |gvlist| (-639 (-562)))))
+ (-5 *1 (-627 *4 *5)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1202 *3)) (-4 *3 (-969)))))
-(((*1 *2 *1) (|partial| -12 (-5 *1 (-364 *2)) (-4 *2 (-1092))))
- ((*1 *2 *1) (|partial| -12 (-5 *2 (-1150)) (-5 *1 (-1188)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-360 (-114))) (-4 *2 (-1044)) (-5 *1 (-709 *2 *4))
- (-4 *4 (-642 *2))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-360 (-114))) (-5 *1 (-831 *2)) (-4 *2 (-1044)))))
+ (|partial| -12 (-4 *3 (-1207)) (-5 *1 (-181 *3 *2))
+ (-4 *2 (-668 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-1168)))))
+(((*1 *1 *1) (-5 *1 (-1056))))
+(((*1 *1) (-5 *1 (-436))))
+(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-112))
+ (-5 *6 (-224)) (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-68 APROD))))
+ (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-73 MSOLVE))))
+ (-5 *2 (-1030)) (-5 *1 (-751)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-747)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1247 *4)) (-5 *1 (-1249 *4 *2))
+ (-4 *4 (-38 (-406 (-562)))))))
(((*1 *1 *1 *2)
(-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787))
(-4 *2 (-362))))
@@ -14135,107 +14013,44 @@
((*1 *1 *1 *2)
(-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-362)) (-4 *2 (-1044))
(-4 *3 (-841)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-916)) (-5 *1 (-781)))))
-(((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-695))))
- ((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-695)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-306) (-146))) (-4 *4 (-13 (-845) (-610 (-1168))))
+ (-4 *5 (-788)) (-5 *1 (-919 *3 *4 *5 *2)) (-4 *2 (-944 *3 *5 *4)))))
+(((*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4
+ *4 *6 *4)
+ (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-669 (-224)))
+ (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-745)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-766))
+ (-4 *3 (-13 (-306) (-10 -8 (-15 -3788 ((-417 $) $)))))
+ (-4 *4 (-1232 *3)) (-5 *1 (-498 *3 *4 *5)) (-4 *5 (-408 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1266)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1148 (-562))) (-5 *1 (-1152 *4)) (-4 *4 (-1044))
- (-5 *3 (-562)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562))))
- (-5 *4 (-315 (-168 (-378)))) (-5 *1 (-329))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562))))
- (-5 *4 (-315 (-378))) (-5 *1 (-329))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562))))
- (-5 *4 (-315 (-562))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-168 (-378)))))
- (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-378)))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-562)))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-168 (-378)))))
- (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-378)))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-562)))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-168 (-378)))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-378))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-562))) (-5 *1 (-329))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562))))
- (-5 *4 (-315 (-688))) (-5 *1 (-329))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562))))
- (-5 *4 (-315 (-693))) (-5 *1 (-329))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1168)) (-5 *3 (-639 (-947 (-562))))
- (-5 *4 (-315 (-695))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-688)))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-693)))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-315 (-695)))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-688)))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-693)))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-315 (-695)))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-688))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-693))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-1256 (-695))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-688))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-693))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-683 (-695))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-688))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-693))) (-5 *1 (-329))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-315 (-695))) (-5 *1 (-329))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-1150)) (-5 *1 (-329))))
- ((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *2) (-12 (-5 *2 (-1139 (-1150))) (-5 *1 (-390)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-562)) (|has| *1 (-6 -4403)) (-4 *1 (-372 *3))
- (-4 *3 (-1207)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-953 *3)) (-5 *1 (-1155 *4 *3))
- (-4 *3 (-1232 *4)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-554)) (-4 *2 (-1044))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-554))))
- ((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *3 (-1058 *4 *5 *6))
- (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *1))))
- (-4 *1 (-1064 *4 *5 *6 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-129))))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))
+ (-5 *2 (-378)) (-5 *1 (-266))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *2 (-378)) (-5 *1 (-304)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-13 (-554) (-146)))
+ (-5 *2 (-2 (|:| -1589 *3) (|:| -1603 *3))) (-5 *1 (-1226 *4 *3))
+ (-4 *3 (-1232 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-1127))) (-5 *1 (-1082)))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
+ (|:| |xpnt| (-562))))
+ (-4 *4 (-13 (-1232 *3) (-554) (-10 -8 (-15 -1606 ($ $ $)))))
+ (-4 *3 (-554)) (-5 *1 (-1235 *3 *4)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-639 *3)) (-4 *3 (-944 *4 *6 *5)) (-4 *4 (-451))
+ (-4 *5 (-845)) (-4 *6 (-788)) (-5 *1 (-982 *4 *5 *6 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-600 *2 *3)) (-4 *3 (-1207)) (-4 *2 (-1092))
+ (-4 *2 (-845)))))
+(((*1 *1 *2) (-12 (-5 *2 (-156)) (-5 *1 (-869)))))
(((*1 *1 *1 *1) (-4 *1 (-21))) ((*1 *1 *1) (-4 *1 (-21)))
((*1 *1 *1 *1) (|partial| -5 *1 (-133)))
((*1 *1 *1 *1)
@@ -14243,7 +14058,7 @@
(-4 *2
(-13 (-845)
(-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $))
- (-15 -1966 ((-1261) $)))))))
+ (-15 -1359 ((-1261) $)))))))
((*1 *1 *1 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207))))
((*1 *1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207))))
((*1 *1 *1 *1)
@@ -14263,54 +14078,71 @@
((*1 *2 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203))))
((*1 *1 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-21))))
((*1 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-21)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1256 *5)) (-4 *5 (-635 *4)) (-4 *4 (-554))
- (-5 *2 (-1256 *4)) (-5 *1 (-634 *4 *5)))))
-(((*1 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-367)) (-4 *2 (-362))))
+(((*1 *1 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-816)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1168)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-696 *3 *5 *6 *7))
+ (-4 *3 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207))
+ (-4 *7 (-1207))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1168)) (-5 *2 (-1 *6 *5)) (-5 *1 (-701 *3 *5 *6))
+ (-4 *3 (-610 (-535))) (-4 *5 (-1207)) (-4 *6 (-1207)))))
+(((*1 *2 *1) (-12 (-4 *1 (-348)) (-5 *2 (-112))))
((*1 *2 *3)
- (-12 (-5 *3 (-916)) (-5 *2 (-1256 *4)) (-5 *1 (-527 *4))
- (-4 *4 (-348)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-1164 *4)) (-5 *1 (-527 *4))
- (-4 *4 (-348)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-451)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *1 (-448 *3 *4 *5 *2)) (-4 *2 (-944 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-1256
- (-2 (|:| |scaleX| (-224)) (|:| |scaleY| (-224))
- (|:| |deltaX| (-224)) (|:| |deltaY| (-224)) (|:| -2865 (-562))
- (|:| -1464 (-562)) (|:| |spline| (-562)) (|:| -2503 (-562))
- (|:| |axesColor| (-869)) (|:| -3426 (-562))
- (|:| |unitsColor| (-869)) (|:| |showing| (-562)))))
- (-5 *1 (-1257)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-204))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 (-378))) (-5 *2 (-378)) (-5 *1 (-204)))))
+ (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-112))
+ (-5 *1 (-356 *4)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-224)) (-5 *5 (-562)) (-5 *2 (-1202 *3))
+ (-5 *1 (-785 *3)) (-4 *3 (-969))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-639 (-938 (-224))))) (-5 *4 (-112))
+ (-5 *1 (-1202 *2)) (-4 *2 (-969)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-766)) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
+ (-4 *4 (-1044)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1261)) (-5 *1 (-1209))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1261)) (-5 *1 (-1209)))))
+ (-12 (-5 *2 (-417 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1232 (-48)))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3))))
+ (-5 *1 (-121 *3)) (-4 *3 (-845))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-583 *4)) (-4 *4 (-13 (-29 *3) (-1192)))
+ (-4 *3 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))))
+ (-5 *1 (-581 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-583 (-406 (-947 *3))))
+ (-4 *3 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))))
+ (-5 *1 (-586 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-362))
+ (-5 *2 (-2 (|:| -2450 *3) (|:| |special| *3))) (-5 *1 (-722 *5 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1256 *5)) (-4 *5 (-362)) (-4 *5 (-1044))
+ (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5))
+ (-5 *3 (-639 (-683 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1256 (-1256 *5))) (-4 *5 (-362)) (-4 *5 (-1044))
+ (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5))
+ (-5 *3 (-639 (-683 *5)))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-140)) (-5 *2 (-639 *1)) (-4 *1 (-1136))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-143)) (-5 *2 (-639 *1)) (-4 *1 (-1136)))))
+(((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-362))
+ (-5 *2 (-2 (|:| -2450 (-417 *3)) (|:| |special| (-417 *3))))
+ (-5 *1 (-722 *5 *3)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-639 (-938 (-224))))) (-5 *1 (-1202 *3))
- (-4 *3 (-969)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-732 *3))))
- ((*1 *1 *2) (-12 (-5 *1 (-732 *2)) (-4 *2 (-1092))))
- ((*1 *1) (-12 (-5 *1 (-732 *2)) (-4 *2 (-1092)))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1171)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-362)) (-4 *3 (-788)) (-4 *4 (-845))
- (-5 *1 (-503 *2 *3 *4 *5)) (-4 *5 (-944 *2 *3 *4)))))
-(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
+ (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1))
+ (-4 *1 (-1058 *3 *4 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-448 *4 *5 *6 *2)))))
(((*1 *1 *1 *1) (-4 *1 (-25))) ((*1 *1 *1 *1) (-5 *1 (-156)))
((*1 *1 *1 *1)
(-12 (-5 *1 (-213 *2))
(-4 *2
(-13 (-845)
(-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 ((-1261) $))
- (-15 -1966 ((-1261) $)))))))
+ (-15 -1359 ((-1261) $)))))))
((*1 *1 *1 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-25)) (-4 *2 (-1207))))
((*1 *1 *2 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-25)) (-4 *2 (-1207))))
((*1 *1 *2 *1)
@@ -14333,260 +14165,398 @@
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3))))
((*1 *2 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203))))
((*1 *1 *1 *1) (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-25)))))
-(((*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-551)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-362)) (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-503 *4 *5 *6 *3)) (-4 *3 (-944 *4 *5 *6)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-416 *4)))))
-(((*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259))))
- ((*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))))
-(((*1 *2 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |partsol| (-1256 (-406 (-947 *4))))
- (|:| -3928 (-639 (-1256 (-406 (-947 *4)))))))
- (-5 *3 (-639 *7)) (-4 *4 (-13 (-306) (-146)))
- (-4 *7 (-944 *4 *6 *5)) (-4 *5 (-13 (-845) (-610 (-1168))))
- (-4 *6 (-788)) (-5 *1 (-919 *4 *5 *6 *7)))))
+ (-12 (-4 *4 (-1044))
+ (-4 *2 (-13 (-403) (-1033 *4) (-362) (-1192) (-283)))
+ (-5 *1 (-442 *4 *3 *2)) (-4 *3 (-1232 *4)))))
+(((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-766)) (-4 *4 (-554)) (-5 *1 (-964 *4 *2))
+ (-4 *2 (-1232 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-362)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
+ (-5 *1 (-520 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-788))
- (-4 *5 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))) (-4 *6 (-554))
- (-5 *2 (-2 (|:| -3659 (-947 *6)) (|:| -1310 (-947 *6))))
- (-5 *1 (-727 *4 *5 *6 *3)) (-4 *3 (-944 (-406 (-947 *6)) *4 *5)))))
+ (-12 (-5 *2 (-1164 (-562))) (-5 *1 (-937)) (-5 *3 (-562))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-306)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
+ (-5 *1 (-1116 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150))
+ (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-378)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
+ ((*1 *1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-262)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1168))
+ (-4 *5 (-13 (-554) (-1033 (-562)) (-146)))
+ (-5 *2
+ (-2 (|:| -2929 (-406 (-947 *5))) (|:| |coeff| (-406 (-947 *5)))))
+ (-5 *1 (-568 *5)) (-5 *3 (-406 (-947 *5))))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-639 (-1256 *4))) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-4 *3 (-554))
+ (-5 *2 (-639 (-1256 *3))))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
- (-4 *2 (-429 *3)))))
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-306))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-446 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-639 *7)) (-5 *3 (-1150)) (-4 *7 (-944 *4 *5 *6))
+ (-4 *4 (-306)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-5 *1 (-446 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-639 *7)) (-5 *3 (-1150)) (-4 *7 (-944 *4 *5 *6))
+ (-4 *4 (-306)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-5 *1 (-446 *4 *5 *6 *7)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
- (-5 *1 (-175 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *1) (-5 *1 (-436))))
-(((*1 *2 *3)
- (-12 (|has| *2 (-6 (-4404 "*"))) (-4 *5 (-372 *2)) (-4 *6 (-372 *2))
- (-4 *2 (-1044)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1232 *2))
- (-4 *4 (-681 *2 *5 *6)))))
-(((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1164 *1)) (-5 *3 (-1168)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-947 *1)) (-4 *1 (-27))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1168)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-845) (-554)))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-845) (-554))))))
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
(((*1 *2 *3)
(-12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-5 *2 (-1 (-112) *5))
(-5 *1 (-885 *4 *5)) (-4 *5 (-1207))))
((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1158)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-406 (-947 *4))) (-5 *3 (-1168))
- (-4 *4 (-13 (-554) (-1033 (-562)) (-146))) (-5 *1 (-568 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
- (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224)))
- (-5 *5 (-1086 (-224))) (-5 *6 (-562)) (-5 *2 (-1202 (-921)))
- (-5 *1 (-317))))
- ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224)))
- (-5 *5 (-1086 (-224))) (-5 *6 (-562)) (-5 *7 (-1150))
- (-5 *2 (-1202 (-921))) (-5 *1 (-317))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224)))
- (-5 *5 (-1086 (-224))) (-5 *6 (-224)) (-5 *7 (-562))
- (-5 *2 (-1202 (-921))) (-5 *1 (-317))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
- (-12 (-5 *3 (-315 (-562))) (-5 *4 (-1 (-224) (-224)))
- (-5 *5 (-1086 (-224))) (-5 *6 (-224)) (-5 *7 (-562)) (-5 *8 (-1150))
- (-5 *2 (-1202 (-921))) (-5 *1 (-317)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 *6)) (-4 *5 (-1211)) (-4 *6 (-1232 *5))
- (-5 *2 (-2 (|:| -1960 (-766)) (|:| -4221 *3) (|:| |radicand| *6)))
- (-5 *1 (-147 *5 *6 *7)) (-5 *4 (-766)) (-4 *7 (-1232 *3)))))
-(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1150)) (-5 *3 (-769)) (-5 *1 (-114)))))
(((*1 *2 *3 *1)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1))
- (-4 *1 (-1064 *4 *5 *6 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
+ (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-639 (-960))) (-5 *1 (-290)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-815)) (-14 *5 (-1168))
+ (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-109)) (-5 *1 (-174))))
+ ((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-109)) (-5 *1 (-1077)))))
+(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562))
+ (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3196))))
+ (-5 *2 (-1030)) (-5 *1 (-743)))))
+(((*1 *2)
+ (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-416 *3)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-451)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1150))
+ (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *2 (-112)) (-5 *1 (-223 *4 *5)) (-4 *5 (-13 (-1192) (-29 *4))))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1171)))))
(((*1 *1 *1 *2)
- (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845)) (-4 *5 (-1058 *3 *4 *2)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34)))
+ (-4 *4 (-13 (-1092) (-34))))))
(((*1 *1 *1 *1) (-4 *1 (-306))) ((*1 *1 *1 *1) (-5 *1 (-766)))
((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
-(((*1 *1 *1 *1) (-4 *1 (-544))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-899 *4))
- (-4 *4 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
-(((*1 *1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-262)))))
-(((*1 *1 *2) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1044)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-363 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-641 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-766)) (-4 *4 (-13 (-554) (-146)))
- (-5 *1 (-1226 *4 *2)) (-4 *2 (-1232 *4)))))
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *2 (-562))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
+ (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-562)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1207)) (-5 *1 (-374 *4 *2))
+ (-4 *2 (-13 (-372 *4) (-10 -7 (-6 -4404)))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
- ((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
-(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))))
-(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-34)))
- ((*1 *1) (-5 *1 (-129)))
- ((*1 *1)
- (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766))
- (-4 *4 (-171))))
- ((*1 *1) (-4 *1 (-721))) ((*1 *1) (-5 *1 (-1168)))
- ((*1 *1) (-12 (-5 *1 (-1175 *2)) (-14 *2 (-916))))
- ((*1 *1) (-5 *1 (-1212))) ((*1 *1) (-5 *1 (-1213)))
- ((*1 *1) (-5 *1 (-1214))))
+ (-12 (-5 *3 (-764))
+ (-5 *2
+ (-2 (|:| -1806 (-378)) (|:| -3253 (-1150))
+ (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))))
+ (-5 *1 (-563))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-764)) (-5 *4 (-1056))
+ (-5 *2
+ (-2 (|:| -1806 (-378)) (|:| -3253 (-1150))
+ (|:| |explanations| (-639 (-1150))) (|:| |extra| (-1030))))
+ (-5 *1 (-563))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-782)) (-5 *3 (-1056))
+ (-5 *4
+ (-2 (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-639 (-1086 (-838 (-224))))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (-5 *2
+ (-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))
+ (|:| |extra| (-1030))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-782)) (-5 *3 (-1056))
+ (-5 *4
+ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (-5 *2
+ (-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))
+ (|:| |extra| (-1030))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-795)) (-5 *3 (-1056))
+ (-5 *4
+ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
+ (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
+ (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
+ (|:| |abserr| (-224)) (|:| |relerr| (-224))))
+ (-5 *2 (-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-803))
+ (-5 *2
+ (-2 (|:| -1806 (-378)) (|:| -3253 (-1150))
+ (|:| |explanations| (-639 (-1150)))))
+ (-5 *1 (-800))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-803)) (-5 *4 (-1056))
+ (-5 *2
+ (-2 (|:| -1806 (-378)) (|:| -3253 (-1150))
+ (|:| |explanations| (-639 (-1150)))))
+ (-5 *1 (-800))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-834)) (-5 *3 (-1056))
+ (-5 *4
+ (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))
+ (-5 *2 (-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-834)) (-5 *3 (-1056))
+ (-5 *4
+ (-2 (|:| |fn| (-315 (-224))) (|:| -3730 (-639 (-224)))
+ (|:| |lb| (-639 (-838 (-224)))) (|:| |cf| (-639 (-315 (-224))))
+ (|:| |ub| (-639 (-838 (-224))))))
+ (-5 *2 (-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-836))
+ (-5 *2
+ (-2 (|:| -1806 (-378)) (|:| -3253 (-1150))
+ (|:| |explanations| (-639 (-1150)))))
+ (-5 *1 (-835))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-836)) (-5 *4 (-1056))
+ (-5 *2
+ (-2 (|:| -1806 (-378)) (|:| -3253 (-1150))
+ (|:| |explanations| (-639 (-1150)))))
+ (-5 *1 (-835))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-890)) (-5 *3 (-1056))
+ (-5 *4
+ (-2 (|:| |pde| (-639 (-315 (-224))))
+ (|:| |constraints|
+ (-639
+ (-2 (|:| |start| (-224)) (|:| |finish| (-224))
+ (|:| |grid| (-766)) (|:| |boundaryType| (-562))
+ (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224))))))
+ (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150))
+ (|:| |tol| (-224))))
+ (-5 *2 (-2 (|:| -1806 (-378)) (|:| |explanations| (-1150))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-893))
+ (-5 *2
+ (-2 (|:| -1806 (-378)) (|:| -3253 (-1150))
+ (|:| |explanations| (-639 (-1150)))))
+ (-5 *1 (-892))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-893)) (-5 *4 (-1056))
+ (-5 *2
+ (-2 (|:| -1806 (-378)) (|:| -3253 (-1150))
+ (|:| |explanations| (-639 (-1150)))))
+ (-5 *1 (-892)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-503 (-406 (-562)) (-239 *5 (-766)) (-859 *4)
+ (-246 *4 (-406 (-562)))))
+ (-14 *4 (-639 (-1168))) (-14 *5 (-766)) (-5 *2 (-112))
+ (-5 *1 (-504 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4))
+ (-5 *2
+ (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-406 *5))
+ (|:| |c2| (-406 *5)) (|:| |deg| (-766))))
+ (-5 *1 (-147 *4 *5 *3)) (-4 *3 (-1232 (-406 *5))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-406 (-562))) (-5 *4 (-562)) (-5 *2 (-52))
+ (-5 *1 (-1000)))))
(((*1 *1 *1 *1) (-5 *1 (-857))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-845)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-2 (|:| |deg| (-766)) (|:| -2754 *5))))
- (-4 *5 (-1232 *4)) (-4 *4 (-348)) (-5 *2 (-639 *5))
- (-5 *1 (-215 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-2 (|:| -1635 *5) (|:| -3598 (-562)))))
- (-5 *4 (-562)) (-4 *5 (-1232 *4)) (-5 *2 (-639 *5))
- (-5 *1 (-690 *5)))))
-(((*1 *2 *3 *4 *5 *6 *7 *6)
- (|partial| -12
- (-5 *5
- (-2 (|:| |contp| *3)
- (|:| -1510 (-639 (-2 (|:| |irr| *10) (|:| -2762 (-562)))))))
- (-5 *6 (-639 *3)) (-5 *7 (-639 *8)) (-4 *8 (-845)) (-4 *3 (-306))
- (-4 *10 (-944 *3 *9 *8)) (-4 *9 (-788))
- (-5 *2
- (-2 (|:| |polfac| (-639 *10)) (|:| |correct| *3)
- (|:| |corrfact| (-639 (-1164 *3)))))
- (-5 *1 (-621 *8 *9 *3 *10)) (-5 *4 (-639 (-1164 *3))))))
-(((*1 *2 *1) (|partial| -12 (-4 *1 (-1007)) (-5 *2 (-857)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2835 *3) (|:| |coef1| (-777 *3))))
- (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-146))
- (-4 *3 (-306)) (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *1 (-972 *3 *4 *5 *6)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224)))
- (-5 *2 (-1030)) (-5 *1 (-742)))))
-(((*1 *1) (-5 *1 (-436))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-1150)) (-5 *5 (-683 (-224)))
- (-5 *2 (-1030)) (-5 *1 (-742)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
+ (-5 *1 (-175 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1112)) (-5 *1 (-838 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *3 *4 *4 *3 *3 *5)
+ (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-1164 *3))
+ (-4 *3 (-13 (-429 *6) (-27) (-1192)))
+ (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *2 (-2 (|:| -2929 *3) (|:| |coeff| *3)))
+ (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092))))
+ ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-406 (-1164 *3)))
+ (-4 *3 (-13 (-429 *6) (-27) (-1192)))
+ (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *2 (-2 (|:| -2929 *3) (|:| |coeff| *3)))
+ (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-362))
+ (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-5 *1 (-449 *4 *5 *6 *2))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-362))
(-5 *2
- (-2 (|:| |mval| (-683 *4)) (|:| |invmval| (-683 *4))
- (|:| |genIdeal| (-503 *4 *5 *6 *7))))
- (-5 *1 (-503 *4 *5 *6 *7)) (-4 *7 (-944 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-845)) (-4 *3 (-1092)))))
+ (-2 (|:| R (-683 *6)) (|:| A (-683 *6)) (|:| |Ainv| (-683 *6))))
+ (-5 *1 (-973 *6)) (-5 *3 (-683 *6)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
+ (-5 *2
+ (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
+ (|:| |success| (-112))))
+ (-5 *1 (-784)) (-5 *5 (-562)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
+ (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168))
+ (-4 *4 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-425 *4 *2)) (-4 *2 (-13 (-1192) (-29 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-146))
+ (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))))
+ (-5 *2 (-315 *5)) (-5 *1 (-586 *5)))))
(((*1 *1 *1 *1) (-4 *1 (-306))) ((*1 *1 *1 *1) (-5 *1 (-766)))
((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-114)) (-4 *4 (-1044)) (-5 *1 (-709 *4 *2))
- (-4 *2 (-642 *4))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-831 *2)) (-4 *2 (-1044)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-845)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-857)))
((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-639 (-406 *6))) (-5 *3 (-406 *6))
- (-4 *6 (-1232 *5)) (-4 *5 (-13 (-362) (-146) (-1033 (-562))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-566 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-554)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-362) (-301)
- (-10 -8 (-15 -4065 ((-1117 *3 (-608 $)) $))
- (-15 -4076 ((-1117 *3 (-608 $)) $))
- (-15 -4054 ($ (-1117 *3 (-608 $))))))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-168 *5)) (-4 *5 (-13 (-429 *4) (-997) (-1192)))
+ (-4 *4 (-13 (-554) (-845)))
+ (-4 *2 (-13 (-429 (-168 *4)) (-997) (-1192)))
+ (-5 *1 (-596 *4 *5 *2)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4))
+ (-5 *2 (-2 (|:| -4221 (-406 *5)) (|:| |poly| *3)))
+ (-5 *1 (-147 *4 *5 *3)) (-4 *3 (-1232 (-406 *5))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-817)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| *3) (|:| -1495 *4))))
- (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-887 *4)) (-4 *4 (-1092)) (-5 *2 (-112))
- (-5 *1 (-884 *4 *5)) (-4 *5 (-1092))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-887 *5)) (-4 *5 (-1092)) (-5 *2 (-112))
- (-5 *1 (-885 *5 *3)) (-4 *3 (-1207))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *6)) (-5 *4 (-887 *5)) (-4 *5 (-1092))
- (-4 *6 (-1207)) (-5 *2 (-112)) (-5 *1 (-885 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-114))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-301)) (-5 *3 (-1168)) (-5 *2 (-112))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-301)) (-5 *3 (-114)) (-5 *2 (-112))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-608 *4)) (-4 *4 (-845))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-608 *4)) (-4 *4 (-845))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1092)) (-5 *2 (-112)) (-5 *1 (-882 *5 *3 *4))
- (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 *6)) (-4 *6 (-881 *5)) (-4 *5 (-1092))
- (-5 *2 (-112)) (-5 *1 (-882 *5 *6 *4)) (-4 *4 (-610 (-887 *5))))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-1211)) (-4 *5 (-1232 *4))
- (-5 *2 (-2 (|:| |radicand| (-406 *5)) (|:| |deg| (-766))))
- (-5 *1 (-147 *4 *5 *3)) (-4 *3 (-1232 (-406 *5))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
+ (-12 (-5 *3 (-1150)) (-4 *4 (-13 (-306) (-146)))
+ (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788))
+ (-5 *2
+ (-639
+ (-2 (|:| |eqzro| (-639 *7)) (|:| |neqzro| (-639 *7))
+ (|:| |wcond| (-639 (-947 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1256 (-406 (-947 *4))))
+ (|:| -4291 (-639 (-1256 (-406 (-947 *4))))))))))
+ (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
+ (-12 (-5 *3 (-1150)) (-5 *4 (-562)) (-5 *5 (-683 (-224)))
+ (-5 *2 (-1030)) (-5 *1 (-752)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-845)) (-5 *2 (-639 *1))
+ (-4 *1 (-429 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3))
+ (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *2 (-639 *1)) (-4 *1 (-944 *3 *4 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044))
+ (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-639 *3))
+ (-5 *1 (-945 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-362)
+ (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $))
+ (-15 -4079 (*7 $))))))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-243 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-554))
+ (-4 *3 (-944 *7 *5 *6))
+ (-5 *2
+ (-2 (|:| -1300 (-766)) (|:| -4221 *3) (|:| |radicand| (-639 *3))))
+ (-5 *1 (-948 *5 *6 *7 *3 *8)) (-5 *4 (-766))
+ (-4 *8
+ (-13 (-362)
+ (-10 -8 (-15 -4053 ($ *3)) (-15 -4063 (*3 $)) (-15 -4079 (*3 $))))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-112))
+ (-5 *1 (-356 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-112))
+ (-5 *1 (-527 *4)))))
(((*1 *2 *1 *1)
(|partial| -12 (-5 *2 (-2 (|:| |lm| (-814 *3)) (|:| |rm| (-814 *3))))
(-5 *1 (-814 *3)) (-4 *3 (-845))))
((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-311)) (-5 *1 (-824)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-766)) (-4 *1 (-373 *3 *4)) (-4 *3 (-845))
+ (-4 *4 (-171))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-766)) (-4 *1 (-1277 *3 *4)) (-4 *3 (-845))
+ (-4 *4 (-1044)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-845)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-554) (-845) (-1033 (-562))))
- (-4 *5 (-429 *4)) (-5 *2 (-417 (-1164 (-406 (-562)))))
- (-5 *1 (-434 *4 *5 *3)) (-4 *3 (-1232 *5)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1207)) (-5 *1 (-181 *3 *2)) (-4 *2 (-668 *3)))))
+(((*1 *2)
+ (-12 (-4 *3 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-1261))
+ (-5 *1 (-432 *3 *4)) (-4 *4 (-429 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-362)) (-4 *6 (-1232 (-406 *2)))
- (-4 *2 (-1232 *5)) (-5 *1 (-214 *5 *2 *6 *3))
- (-4 *3 (-341 *5 *2 *6)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-451)) (-4 *4 (-815))
- (-14 *5 (-1168)) (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))))
-(((*1 *1) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-916)) (-5 *1 (-781)))))
+ (-12 (-5 *3 (-639 (-224))) (-5 *4 (-766)) (-5 *2 (-683 (-224)))
+ (-5 *1 (-304)))))
+(((*1 *2 *2 *3 *4 *5)
+ (-12 (-5 *2 (-639 *9)) (-5 *3 (-1 (-112) *9))
+ (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9))
+ (-4 *9 (-1058 *6 *7 *8)) (-4 *6 (-554)) (-4 *7 (-788))
+ (-4 *8 (-845)) (-5 *1 (-972 *6 *7 *8 *9)))))
(((*1 *2 *1) (-12 (-4 *1 (-1085 *3)) (-4 *3 (-1207)) (-5 *2 (-562)))))
-(((*1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-240)))))
-(((*1 *2)
- (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
- (-4 *4 (-1092)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4402)) (-4 *1 (-488 *4))
- (-4 *4 (-1207)) (-5 *2 (-112)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1148 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1044))
+ (-5 *3 (-406 (-562))) (-5 *1 (-1152 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1164 *1)) (-5 *4 (-1168)) (-4 *1 (-27))
+ (-5 *2 (-639 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1164 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-947 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-639 *1))
+ (-4 *1 (-29 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *2 (-639 *1)) (-4 *1 (-29 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-315 (-224))) (-5 *4 (-639 (-1168)))
+ (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-299)))))
(((*1 *1 *1 *2)
(|partial| -12 (-4 *1 (-165 *2)) (-4 *2 (-171)) (-4 *2 (-554))))
((*1 *1 *1 *2)
@@ -14608,47 +14578,52 @@
(-4 *5 (-237 *4 *2)) (-4 *6 (-237 *3 *2)) (-4 *2 (-554))))
((*1 *2 *2 *2)
(|partial| -12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-937)) (-5 *3 (-562)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-845)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-857)))
((*1 *2 *1 *1) (-12 (-4 *1 (-898 *3)) (-4 *3 (-1092)) (-5 *2 (-112))))
((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-78 FUNCTN))))
- (-5 *2 (-1030)) (-5 *1 (-743)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-766)) (-4 *1 (-325 *3 *4)) (-4 *3 (-1044))
+ (-4 *4 (-787)) (-4 *3 (-171)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-252 *4 *3 *5 *6)) (-4 *4 (-1044)) (-4 *3 (-845))
+ (-4 *5 (-265 *3)) (-4 *6 (-788)) (-5 *2 (-639 (-766)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845))
+ (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-639 (-766))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1044)) (-4 *2 (-681 *4 *5 *6))
+ (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1232 *4)) (-4 *5 (-372 *4))
+ (-4 *6 (-372 *4)))))
(((*1 *2 *3) (-12 (-5 *2 (-562)) (-5 *1 (-567 *3)) (-4 *3 (-1033 *2))))
((*1 *2 *1)
(-12 (-4 *1 (-1095 *3 *4 *2 *5 *6)) (-4 *3 (-1092)) (-4 *4 (-1092))
(-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-1044))))
+(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-490)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-348)) (-5 *3 (-562)) (-5 *2 (-1180 (-916) (-766))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562)))))
+ (-4 *5 (-1232 *4))
+ (-5 *2 (-639 (-2 (|:| |deg| (-766)) (|:| -3339 *5))))
+ (-5 *1 (-804 *4 *5 *3 *6)) (-4 *3 (-650 *5))
+ (-4 *6 (-650 (-406 *5))))))
+(((*1 *2)
+ (-12 (-4 *1 (-348))
+ (-5 *2 (-639 (-2 (|:| -1635 (-562)) (|:| -1300 (-562))))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
+ (-4 *5 (-372 *3)) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-4 *1 (-968 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-787))
- (-4 *5 (-845)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-322 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-130))
- (-4 *3 (-787)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-766)) (-5 *3 (-938 *4)) (-4 *1 (-1126 *4))
- (-4 *4 (-1044))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-766)) (-5 *4 (-938 (-224))) (-5 *2 (-1261))
- (-5 *1 (-1258)))))
+ (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
+ (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-554) (-845)))
- (-4 *2 (-13 (-429 (-168 *4)) (-997) (-1192)))
- (-5 *1 (-596 *4 *3 *2)) (-4 *3 (-13 (-429 *4) (-997) (-1192))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1261)) (-5 *1 (-1171)))))
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-639 (-683 (-562))))
+ (-5 *1 (-1102)))))
(((*1 *2 *1) (-12 (-4 *1 (-1085 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-416 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-766)) (-4 *5 (-1044)) (-4 *2 (-1232 *5))
+ (-5 *1 (-1250 *5 *2 *6 *3)) (-4 *6 (-650 *2)) (-4 *3 (-1247 *5)))))
(((*1 *1 *1 *2)
(-12 (-5 *2 (-916)) (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367))))
((*1 *2 *1) (-12 (-4 *1 (-328 *2)) (-4 *2 (-362))))
@@ -14660,162 +14635,192 @@
((*1 *2 *1)
(-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2))
(-4 *5 (-237 *3 *2)) (-4 *2 (-1044)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1606 *3)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-584 *3)) (-4 *3 (-544)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-947 *5)) (-4 *5 (-1044)) (-5 *2 (-246 *4 *5))
- (-5 *1 (-939 *4 *5)) (-14 *4 (-639 (-1168))))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4402)) (-4 *1 (-488 *4))
- (-4 *4 (-1207)) (-5 *2 (-112)))))
+(((*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258))))
+ ((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362))
+ (-5 *2
+ (-2 (|:| |ir| (-583 (-406 *6))) (|:| |specpart| (-406 *6))
+ (|:| |polypart| *6)))
+ (-5 *1 (-572 *5 *6)) (-5 *3 (-406 *6)))))
+(((*1 *2 *3) (-12 (-5 *3 (-406 (-562))) (-5 *2 (-224)) (-5 *1 (-304)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *1 (-59 *3)) (-4 *3 (-1207))))
+ ((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1207)) (-5 *1 (-59 *3)))))
(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-179))))
((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-310))))
((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-965))))
((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-989))))
((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1031))))
((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1066)))))
-(((*1 *1)
- (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766))
- (-4 *4 (-171)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-639 *5)) (-4 *5 (-171)) (-5 *1 (-135 *3 *4 *5))
- (-14 *3 (-562)) (-14 *4 (-766)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-647 (-406 *6))) (-5 *4 (-406 *6)) (-4 *6 (-1232 *5))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4))))
+ (-5 *1 (-805 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-647 (-406 *6))) (-4 *6 (-1232 *5))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-5 *2 (-2 (|:| -4291 (-639 (-406 *6))) (|:| -1767 (-683 *5))))
+ (-5 *1 (-805 *5 *6)) (-5 *4 (-639 (-406 *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-648 *6 (-406 *6))) (-5 *4 (-406 *6)) (-4 *6 (-1232 *5))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4))))
+ (-5 *1 (-805 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-648 *6 (-406 *6))) (-4 *6 (-1232 *5))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-5 *2 (-2 (|:| -4291 (-639 (-406 *6))) (|:| -1767 (-683 *5))))
+ (-5 *1 (-805 *5 *6)) (-5 *4 (-639 (-406 *6))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-647 *4)) (-4 *4 (-341 *5 *6 *7))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-4 *6 (-1232 *5)) (-4 *7 (-1232 (-406 *6)))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -4291 (-639 *4))))
+ (-5 *1 (-801 *5 *6 *7 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-938 *4))) (-5 *1 (-1156 *3 *4)) (-14 *3 (-916))
+ (-4 *4 (-1044)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-293 (-838 *3))) (-4 *3 (-13 (-27) (-1192) (-429 *5)))
+ (-4 *5 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *2
+ (-3 (-838 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-838 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-838 *3) "failed")))
+ "failed"))
+ (-5 *1 (-632 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-293 *3)) (-5 *5 (-1150))
+ (-4 *3 (-13 (-27) (-1192) (-429 *6)))
+ (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *2 (-838 *3)) (-5 *1 (-632 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-293 (-838 (-947 *5)))) (-4 *5 (-451))
+ (-5 *2
+ (-3 (-838 (-406 (-947 *5)))
+ (-2 (|:| |leftHandLimit| (-3 (-838 (-406 (-947 *5))) "failed"))
+ (|:| |rightHandLimit| (-3 (-838 (-406 (-947 *5))) "failed")))
+ "failed"))
+ (-5 *1 (-633 *5)) (-5 *3 (-406 (-947 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-293 (-406 (-947 *5)))) (-5 *3 (-406 (-947 *5)))
+ (-4 *5 (-451))
+ (-5 *2
+ (-3 (-838 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-838 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-838 *3) "failed")))
+ "failed"))
+ (-5 *1 (-633 *5))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-293 (-406 (-947 *6)))) (-5 *5 (-1150))
+ (-5 *3 (-406 (-947 *6))) (-4 *6 (-451)) (-5 *2 (-838 *3))
+ (-5 *1 (-633 *6)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1148 (-1148 *4))) (-5 *2 (-1148 *4)) (-5 *1 (-1152 *4))
- (-4 *4 (-38 (-406 (-562)))) (-4 *4 (-1044)))))
+ (-12 (-5 *3 (-766)) (-5 *2 (-1 (-1148 (-947 *4)) (-1148 (-947 *4))))
+ (-5 *1 (-1264 *4)) (-4 *4 (-362)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (-5 *2
- (-3 (|:| |continuous| "Continuous at the end points")
- (|:| |lowerSingular|
- "There is a singularity at the lower end point")
- (|:| |upperSingular|
- "There is a singularity at the upper end point")
- (|:| |bothSingular| "There are singularities at both end points")
- (|:| |notEvaluated| "End point continuity not yet evaluated")))
- (-5 *1 (-191)))))
-(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-959 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-554)) (-4 *3 (-1044))
- (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-847 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-554)) (-4 *5 (-1044))
- (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-848 *5 *3))
- (-4 *3 (-847 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-547))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-1102)))))
-(((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-554)) (-4 *2 (-451)) (-5 *1 (-964 *2 *3))
- (-4 *3 (-1232 *2)))))
+ (-12 (-5 *3 (-766)) (-5 *2 (-683 (-947 *4))) (-5 *1 (-1023 *4))
+ (-4 *4 (-1044)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |cd| (-1150)) (|:| -3253 (-1150))))
+ (-5 *1 (-817)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-855)) (-5 *2 (-685 (-1214))) (-5 *3 (-1214)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
((*1 *1 *2 *2) (-12 (-5 *1 (-293 *2)) (-4 *2 (-1207))))
((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-433))))
((*1 *1 *1 *1) (-5 *1 (-857)))
((*1 *2 *1 *1)
(-12 (-5 *2 (-112)) (-5 *1 (-1021 *3)) (-4 *3 (-1207)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *3 (-639 (-262)))
+ (-5 *1 (-260))))
+ ((*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-262))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-467))))
+ ((*1 *2 *1) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-467)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-997))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1095 *3 *2 *4 *5 *6)) (-4 *3 (-1092)) (-4 *4 (-1092))
(-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *2 (-1092)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-1232 *4)) (-5 *1 (-538 *4 *2 *5 *6))
- (-4 *4 (-306)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-766))))))
+ (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-639 (-639 *4)))) (-5 *2 (-639 (-639 *4)))
- (-5 *1 (-1178 *4)) (-4 *4 (-845)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-544))
- (-5 *2 (-406 (-562)))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-417 *3)) (-4 *3 (-544))
- (-4 *3 (-554))))
- ((*1 *2 *1) (|partial| -12 (-4 *1 (-544)) (-5 *2 (-406 (-562)))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-792 *3)) (-4 *3 (-171)) (-4 *3 (-544))
- (-5 *2 (-406 (-562)))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-828 *3)) (-4 *3 (-544))
- (-4 *3 (-1092))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-838 *3)) (-4 *3 (-544))
- (-4 *3 (-1092))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-992 *3)) (-4 *3 (-171)) (-4 *3 (-544))
- (-5 *2 (-406 (-562)))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *2 (-406 (-562))) (-5 *1 (-1003 *3))
- (-4 *3 (-1033 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-857)))))
-(((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259))))
- ((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))))
+ (-12 (-4 *1 (-890))
+ (-5 *3
+ (-2 (|:| |pde| (-639 (-315 (-224))))
+ (|:| |constraints|
+ (-639
+ (-2 (|:| |start| (-224)) (|:| |finish| (-224))
+ (|:| |grid| (-766)) (|:| |boundaryType| (-562))
+ (|:| |dStart| (-683 (-224))) (|:| |dFinish| (-683 (-224))))))
+ (|:| |f| (-639 (-639 (-315 (-224))))) (|:| |st| (-1150))
+ (|:| |tol| (-224))))
+ (-5 *2 (-1030)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-750)))))
+(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224)))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))))
+ (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *3 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-744)))))
+(((*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258))))
+ ((*1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-1258)))))
(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4402)) (-4 *1 (-488 *3)) (-4 *3 (-1207))
+ (-12 (|has| *1 (-6 -4403)) (-4 *1 (-488 *3)) (-4 *3 (-1207))
(-4 *3 (-1092)) (-5 *2 (-766))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4402)) (-4 *1 (-488 *4))
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4403)) (-4 *1 (-488 *4))
(-4 *4 (-1207)) (-5 *2 (-766)))))
(((*1 *2 *1 *3 *4)
(-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2835 *4)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 *5)) (-4 *5 (-362))
+ (-4 *5 (-554)) (-5 *2 (-1256 *5)) (-5 *1 (-634 *5 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 *5))
+ (-2234 (-4 *5 (-362))) (-4 *5 (-554)) (-5 *2 (-1256 (-406 *5)))
+ (-5 *1 (-634 *5 *4)))))
(((*1 *2 *1)
(-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207)) (-4 *4 (-372 *3))
(-4 *5 (-372 *3)) (-5 *2 (-639 *3))))
((*1 *2 *1)
- (-12 (|has| *1 (-6 -4402)) (-4 *1 (-488 *3)) (-4 *3 (-1207))
+ (-12 (|has| *1 (-6 -4403)) (-4 *1 (-488 *3)) (-4 *3 (-1207))
(-5 *2 (-639 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-341 *4 *3 *5)) (-4 *4 (-1211)) (-4 *3 (-1232 *4))
- (-4 *5 (-1232 (-406 *3))) (-5 *2 (-112))))
- ((*1 *2 *3)
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-639 *1)) (-4 *1 (-306)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-1211)) (-4 *5 (-1232 *3)) (-4 *6 (-1232 (-406 *5)))
+ (-5 *2 (-112)) (-5 *1 (-340 *4 *3 *5 *6)) (-4 *4 (-341 *3 *5 *6))))
+ ((*1 *2 *3 *3)
(-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
(-4 *5 (-1232 (-406 *4))) (-5 *2 (-112)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-119 *2)) (-4 *2 (-1207)))))
-(((*1 *2)
- (-12 (-5 *2 (-2 (|:| -2010 (-639 *3)) (|:| -3712 (-639 *3))))
- (-5 *1 (-1208 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-639 (-562))) (-5 *1 (-1102)) (-5 *3 (-562)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| -2320 (-1168)) (|:| -2694 *4))))
+ (-12 (-5 *2 (-639 (-2 (|:| -2319 (-1168)) (|:| -2693 *4))))
(-5 *1 (-884 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092))))
((*1 *2 *1)
(-12 (-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *5 (-1092)) (-4 *6 (-1092))
(-4 *7 (-1092)) (-5 *2 (-639 *1)) (-4 *1 (-1095 *3 *4 *5 *6 *7)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1 (-938 (-224)) (-938 (-224)))) (-5 *3 (-639 (-262)))
- (-5 *1 (-260))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1 (-938 (-224)) (-938 (-224)))) (-5 *1 (-262))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 (-480 *5 *6))) (-5 *3 (-480 *5 *6))
- (-14 *5 (-639 (-1168))) (-4 *6 (-451)) (-5 *2 (-1256 *6))
- (-5 *1 (-627 *5 *6)))))
-(((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5))
- (-4 *5 (-13 (-362) (-146) (-1033 (-562))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-406 *6)) (|:| |h| *6)
- (|:| |c1| (-406 *6)) (|:| |c2| (-406 *6)) (|:| -3355 *6)))
- (-5 *1 (-1011 *5 *6)) (-5 *3 (-406 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857))))
- ((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1 (-378))) (-5 *1 (-1035)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-750)))))
(((*1 *2 *3)
(|partial| -12
(-5 *3
(-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
(|:| |relerr| (-224))))
(-5 *2
(-2
@@ -14833,7 +14838,7 @@
(-3 (|:| |str| (-1148 (-224)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -1590
+ (|:| -2147
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -14841,146 +14846,202 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-557)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-639 (-639 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-639 (-3 (|:| |array| (-639 *3)) (|:| |scalar| (-1168)))))
+ (-5 *6 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1096))
+ (-5 *1 (-396))))
+ ((*1 *2 *3 *4 *5 *6 *3)
+ (-12 (-5 *5 (-639 (-639 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-639 (-3 (|:| |array| (-639 *3)) (|:| |scalar| (-1168)))))
+ (-5 *6 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1096))
+ (-5 *1 (-396))))
+ ((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *4 (-639 (-1168))) (-5 *5 (-1171)) (-5 *3 (-1168))
+ (-5 *2 (-1096)) (-5 *1 (-396)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
- ((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+ (-12 (-4 *4 (-451))
+ (-5 *2
+ (-639
+ (-2 (|:| |eigval| (-3 (-406 (-947 *4)) (-1157 (-1168) (-947 *4))))
+ (|:| |eigmult| (-766))
+ (|:| |eigvec| (-639 (-683 (-406 (-947 *4))))))))
+ (-5 *1 (-291 *4)) (-5 *3 (-683 (-406 (-947 *4)))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-590 *3)) (-14 *3 *2)))
((*1 *2 *1) (-12 (-4 *1 (-1092)) (-5 *2 (-1112)))))
+(((*1 *2) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1044)) (-5 *1 (-707 *3 *2)) (-4 *2 (-1232 *3)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3))
- (-4 *3 (-962)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1164 *5)) (-4 *5 (-451)) (-5 *2 (-639 *6))
- (-5 *1 (-537 *5 *6 *4)) (-4 *6 (-362)) (-4 *4 (-13 (-362) (-843)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-947 *5)) (-4 *5 (-451)) (-5 *2 (-639 *6))
- (-5 *1 (-537 *5 *6 *4)) (-4 *6 (-362)) (-4 *4 (-13 (-362) (-843))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 (-859 *5))) (-14 *5 (-639 (-1168))) (-4 *6 (-451))
- (-5 *2 (-639 (-639 (-246 *5 *6)))) (-5 *1 (-470 *5 *6 *7))
- (-5 *3 (-639 (-246 *5 *6))) (-4 *7 (-451)))))
+ (-12 (-4 *1 (-372 *3)) (-4 *3 (-1207)) (-4 *3 (-845)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-372 *4)) (-4 *4 (-1207))
+ (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-315 (-224))) (-5 *2 (-112)) (-5 *1 (-266)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *6 *5))
+ (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
+ (-4 *6 (-788)) (-5 *2 (-112)) (-5 *1 (-919 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-13 (-306) (-146)))
+ (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-112))
+ (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-857)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 (-766))
- (-14 *4 (-766)) (-4 *5 (-171)))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-938 *5)) (-5 *3 (-766)) (-4 *5 (-1044))
- (-5 *1 (-1156 *4 *5)) (-14 *4 (-916)))))
+ (-12 (-4 *3 (-1044)) (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)))))
(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857))))
((*1 *1 *1) (-5 *1 (-857)))
((*1 *1 *2)
(-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-1090 *3))))
((*1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *5 (-224))
- (-5 *2 (-1030)) (-5 *1 (-746)))))
-(((*1 *2 *2 *3)
- (|partial| -12
- (-5 *3 (-639 (-2 (|:| |func| *2) (|:| |pole| (-112)))))
- (-4 *2 (-13 (-429 *4) (-997))) (-4 *4 (-13 (-845) (-554)))
- (-5 *1 (-275 *4 *2)))))
-(((*1 *2 *3 *1 *4)
- (-12 (-5 *3 (-1132 *5 *6)) (-5 *4 (-1 (-112) *6 *6))
- (-4 *5 (-13 (-1092) (-34))) (-4 *6 (-13 (-1092) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1133 *5 *6)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-114)) (-4 *2 (-1092)) (-4 *2 (-845))
- (-5 *1 (-113 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-639 (-224)))) (-5 *1 (-921)))))
+(((*1 *1) (-5 *1 (-224))) ((*1 *1) (-5 *1 (-378))))
+(((*1 *2 *1) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-348)) (-5 *2 (-417 (-1164 (-1164 *4))))
- (-5 *1 (-1205 *4)) (-5 *3 (-1164 (-1164 *4))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-639 (-639 *3))) (-4 *3 (-1092)) (-4 *1 (-898 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787))
- (-5 *2 (-766))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092))
- (-5 *2 (-766))))
+ (-12
+ (-5 *3
+ (-639
+ (-2 (|:| -2172 (-766))
+ (|:| |eqns|
+ (-639
+ (-2 (|:| |det| *7) (|:| |rows| (-639 (-562)))
+ (|:| |cols| (-639 (-562))))))
+ (|:| |fgb| (-639 *7)))))
+ (-4 *7 (-944 *4 *6 *5)) (-4 *4 (-13 (-306) (-146)))
+ (-4 *5 (-13 (-845) (-610 (-1168)))) (-4 *6 (-788)) (-5 *2 (-766))
+ (-5 *1 (-919 *4 *5 *6 *7)))))
+(((*1 *1 *2 *2) (-12 (-5 *1 (-872 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-874 *2)) (-4 *2 (-1207))))
((*1 *2 *1)
- (-12 (-5 *2 (-766)) (-5 *1 (-730 *3 *4)) (-4 *3 (-1044))
- (-4 *4 (-721)))))
+ (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-639 (-938 *3))) (-4 *3 (-1044)) (-4 *1 (-1126 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-639 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-938 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
+ (-12 (-5 *3 (-1150)) (-5 *5 (-683 (-224))) (-5 *6 (-224))
+ (-5 *7 (-683 (-562))) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-816)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-151 *2 *3 *4)) (-14 *2 (-916)) (-4 *3 (-362))
+ (-14 *4 (-988 *2 *3))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *2 (-171)) (-5 *1 (-288 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1232 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
+ (-14 *6 (-1 (-3 *4 "failed") *4 *4))
+ (-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-366 *2)) (-4 *2 (-171)) (-4 *2 (-554))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-710 *2 *3 *4 *5 *6)) (-4 *2 (-171))
+ (-4 *3 (-23)) (-14 *4 (-1 *2 *2 *3))
+ (-14 *5 (-1 (-3 *3 "failed") *3 *3))
+ (-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
+ ((*1 *1 *1) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362))))
+ ((*1 *1) (-12 (-5 *1 (-713 *2)) (-4 *2 (-362))))
+ ((*1 *1 *1) (|partial| -4 *1 (-717)))
+ ((*1 *1 *1) (|partial| -4 *1 (-721)))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
+ (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
+ (-5 *1 (-771 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-4 *1 (-1061 *3 *2)) (-4 *3 (-13 (-843) (-362)))
+ (-4 *2 (-1232 *3))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))))
+(((*1 *2 *1) (-12 (-5 *1 (-961 *2)) (-4 *2 (-962)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *3 (-639 (-562)))
+ (-5 *1 (-878)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2))
- (-4 *4 (-13 (-845) (-554))))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-393)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-554)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
- (-5 *1 (-1197 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878))
- (-5 *3 (-639 (-562)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878))
- (-5 *3 (-639 (-562))))))
+ (-12 (-5 *3 (-1256 (-315 (-224)))) (-5 *2 (-1256 (-315 (-378))))
+ (-5 *1 (-304)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
+ (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-745)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-580)))))
(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-247)))))
-(((*1 *2)
- (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
- (-4 *4 (-1092)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 (-639 *2) *2 *2 *2)) (-4 *2 (-1092))
- (-5 *1 (-103 *2))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1092)) (-5 *1 (-103 *2)))))
-(((*1 *1 *1 *1) (-4 *1 (-544))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-412 *3 *4 *5 *6)) (-4 *6 (-1033 *4)) (-4 *3 (-306))
+ (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-4 *6 (-408 *4 *5))
+ (-14 *7 (-1256 *6)) (-5 *1 (-413 *3 *4 *5 *6 *7))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1256 *6)) (-4 *6 (-408 *4 *5)) (-4 *4 (-987 *3))
+ (-4 *5 (-1232 *4)) (-4 *3 (-306)) (-5 *1 (-413 *3 *4 *5 *6 *7))
+ (-14 *7 *2))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-683 (-406 (-562))))
- (-5 *2
- (-639
- (-2 (|:| |outval| *4) (|:| |outmult| (-562))
- (|:| |outvect| (-639 (-683 *4))))))
- (-5 *1 (-774 *4)) (-4 *4 (-13 (-362) (-843))))))
-(((*1 *1 *2 *3 *1)
- (-12 (-14 *4 (-639 (-1168))) (-4 *2 (-171))
- (-4 *3 (-237 (-3492 *4) (-766)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2466 *5) (|:| -1960 *3))
- (-2 (|:| -2466 *5) (|:| -1960 *3))))
- (-5 *1 (-460 *4 *2 *5 *3 *6 *7)) (-4 *5 (-845))
- (-4 *7 (-944 *2 *3 (-859 *4))))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-554)) (-4 *3 (-171))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -3928 (-639 *1))))
- (-4 *1 (-366 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-452 *3 *4 *5 *6))
- (|:| -3928 (-639 (-452 *3 *4 *5 *6)))))
- (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
-(((*1 *2 *1) (-12 (-4 *1 (-366 *2)) (-4 *2 (-171)))))
+ (-12 (-4 *5 (-362)) (-4 *7 (-1232 *5)) (-4 *4 (-719 *5 *7))
+ (-5 *2 (-2 (|:| -1767 (-683 *6)) (|:| |vec| (-1256 *5))))
+ (-5 *1 (-806 *5 *6 *7 *4 *3)) (-4 *6 (-650 *5)) (-4 *3 (-650 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-306)) (-4 *5 (-372 *4)) (-4 *6 (-372 *4))
+ (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
+ (-5 *1 (-1116 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6)))))
+(((*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1150)) (-5 *1 (-191))))
+ ((*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1150)) (-5 *1 (-299))))
+ ((*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-1150)) (-5 *1 (-304)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
+ (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-112)) (-5 *1 (-824)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562))
+ (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030))
+ (-5 *1 (-743)))))
(((*1 *1 *2)
(-12 (-5 *2 (-1256 *4)) (-4 *4 (-1207)) (-4 *1 (-237 *3 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-97)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-608 *5)) (-4 *5 (-429 *4)) (-4 *4 (-1033 (-562)))
- (-4 *4 (-13 (-845) (-554))) (-5 *2 (-1164 *5)) (-5 *1 (-32 *4 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-608 *1)) (-4 *1 (-1044)) (-4 *1 (-301))
- (-5 *2 (-1164 *1)))))
+(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921))))
+ ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-683 (-406 (-947 (-562)))))
- (-5 *2 (-683 (-315 (-562)))) (-5 *1 (-1026)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *3 *2))
- (-4 *2 (-13 (-27) (-1192) (-429 (-168 *3))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-1168)))))
-(((*1 *2 *2) (-12 (-5 *2 (-315 (-224))) (-5 *1 (-209)))))
+ (-12
+ (-5 *3
+ (-639 (-2 (|:| -1589 (-406 (-562))) (|:| -1603 (-406 (-562))))))
+ (-5 *2 (-639 (-224))) (-5 *1 (-304)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |polnum| (-777 *3)) (|:| |polden| *3) (|:| -3185 (-766))))
+ (-5 *1 (-777 *3)) (-4 *3 (-1044))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -3185 (-766))))
+ (-4 *1 (-1058 *3 *4 *5)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -2929 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-362)) (-4 *7 (-1232 *6))
+ (-5 *2 (-2 (|:| |answer| (-583 (-406 *7))) (|:| |a0| *6)))
+ (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-896 *2)) (-4 *2 (-1092))))
((*1 *1 *2) (-12 (-5 *1 (-896 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
- (-5 *2 (-683 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-362))
+ (-5 *2
+ (-2 (|:| A (-683 *5))
+ (|:| |eqs|
+ (-639
+ (-2 (|:| C (-683 *5)) (|:| |g| (-1256 *5)) (|:| -3339 *6)
+ (|:| |rh| *5))))))
+ (-5 *1 (-808 *5 *6)) (-5 *3 (-683 *5)) (-5 *4 (-1256 *5))
+ (-4 *6 (-650 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-362)) (-4 *6 (-650 *5))
+ (-5 *2 (-2 (|:| -1767 (-683 *6)) (|:| |vec| (-1256 *5))))
+ (-5 *1 (-808 *5 *6)) (-5 *3 (-683 *6)) (-5 *4 (-1256 *5)))))
(((*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-315 *4))
@@ -14988,16 +15049,15 @@
((*1 *2 *2)
(-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
(-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4402)) (-4 *1 (-488 *3)) (-4 *3 (-1207))
- (-4 *3 (-1092)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-900 *4)) (-4 *4 (-1092)) (-5 *2 (-112))
- (-5 *1 (-899 *4))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-916)) (-5 *2 (-112)) (-5 *1 (-1093 *4 *5)) (-14 *4 *3)
- (-14 *5 *3))))
-(((*1 *2 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1001)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
+ (-5 *2
+ (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
+ (|:| |success| (-112))))
+ (-5 *1 (-784)) (-5 *5 (-562)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-750)))))
(((*1 *1 *1)
(-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
(((*1 *2 *2)
@@ -15006,40 +15066,34 @@
(-503 (-406 (-562)) (-239 *4 (-766)) (-859 *3)
(-246 *3 (-406 (-562)))))
(-14 *3 (-639 (-1168))) (-14 *4 (-766)) (-5 *1 (-504 *3 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-554)) (-4 *3 (-1044))
- (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-847 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-554)) (-4 *5 (-1044))
- (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-848 *5 *3))
- (-4 *3 (-847 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
+(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171))))
+ ((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))))
+(((*1 *1) (-4 *1 (-34))) ((*1 *1) (-5 *1 (-290)))
+ ((*1 *1) (-5 *1 (-857)))
+ ((*1 *1)
+ (-12 (-4 *2 (-451)) (-4 *3 (-845)) (-4 *4 (-788))
+ (-5 *1 (-982 *2 *3 *4 *5)) (-4 *5 (-944 *2 *4 *3))))
+ ((*1 *1) (-5 *1 (-1077)))
+ ((*1 *1)
+ (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34)))
+ (-4 *3 (-13 (-1092) (-34)))))
+ ((*1 *1) (-5 *1 (-1171))) ((*1 *1) (-5 *1 (-1172))))
(((*1 *2 *1)
(-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-884 *4 *5)) (-5 *3 (-884 *4 *6)) (-4 *4 (-1092))
- (-4 *5 (-1092)) (-4 *6 (-660 *5)) (-5 *1 (-880 *4 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
- (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-1226 *3 *2))
- (-4 *2 (-1232 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-348))
- (-5 *2
- (-2 (|:| |cont| *5)
- (|:| -1510 (-639 (-2 (|:| |irr| *3) (|:| -2762 (-562)))))))
- (-5 *1 (-215 *5 *3)) (-4 *3 (-1232 *5)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788))
- (-5 *1 (-503 *4 *5 *6 *2)) (-4 *2 (-944 *4 *5 *6))))
- ((*1 *1 *1 *2)
- (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-944 *3 *4 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-639 (-2 (|:| -1635 (-1164 *6)) (|:| -1300 (-562)))))
+ (-4 *6 (-306)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-112))
+ (-5 *1 (-737 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044)))))
+(((*1 *1 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171))))
+ ((*1 *1 *1 *1) (-4 *1 (-472)))
+ ((*1 *1 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171))))
+ ((*1 *2 *2) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-878))))
+ ((*1 *1 *1) (-5 *1 (-966)))
+ ((*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))))
+(((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *1) (-12 (-5 *2 (-224)) (-5 *1 (-817)))))
(((*1 *2 *1) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-315 *4))
@@ -15049,7 +15103,9 @@
((*1 *2 *2)
(-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
(-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3))))))
-(((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
+(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
+ (-12 (-5 *3 (-1150)) (-5 *5 (-683 (-224))) (-5 *6 (-683 (-562)))
+ (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-752)))))
(((*1 *2 *3) (-12 (-5 *2 (-378)) (-5 *1 (-780 *3)) (-4 *3 (-610 *2))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-916)) (-5 *2 (-378)) (-5 *1 (-780 *3))
@@ -15072,74 +15128,57 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-315 *5)) (-5 *4 (-916)) (-4 *5 (-554)) (-4 *5 (-845))
(-4 *5 (-610 *2)) (-5 *2 (-378)) (-5 *1 (-780 *5)))))
-(((*1 *2 *3 *4 *4 *5 *3 *6)
- (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-639 *3)) (-5 *6 (-1164 *3))
- (-4 *3 (-13 (-429 *7) (-27) (-1192)))
- (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-558 *7 *3 *8)) (-4 *8 (-1092))))
- ((*1 *2 *3 *4 *4 *5 *4 *3 *6)
- (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-639 *3))
- (-5 *6 (-406 (-1164 *3))) (-4 *3 (-13 (-429 *7) (-27) (-1192)))
- (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-558 *7 *3 *8)) (-4 *8 (-1092)))))
-(((*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-406 (-562))) (-5 *1 (-304)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-451)) (-4 *3 (-845)) (-4 *3 (-1033 (-562)))
- (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-429 *3))
- (-4 *2
- (-13 (-362) (-301)
- (-10 -8 (-15 -4065 ((-1117 *3 (-608 $)) $))
- (-15 -4076 ((-1117 *3 (-608 $)) $))
- (-15 -4054 ($ (-1117 *3 (-608 $))))))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1256 (-639 (-2 (|:| -2534 *4) (|:| -2466 (-1112))))))
- (-4 *4 (-348)) (-5 *2 (-1261)) (-5 *1 (-527 *4)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168))
- (-14 *4 *2))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-750)))))
-(((*1 *1) (-5 *1 (-436))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-947 (-168 (-562))))) (-5 *2 (-639 (-168 *4)))
- (-5 *1 (-377 *4)) (-4 *4 (-13 (-362) (-843)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-639 (-406 (-947 (-168 (-562))))))
- (-5 *4 (-639 (-1168))) (-5 *2 (-639 (-639 (-168 *5))))
- (-5 *1 (-377 *5)) (-4 *5 (-13 (-362) (-843))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168))
- (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
- (-5 *1 (-799 *4 *2)) (-4 *2 (-13 (-29 *4) (-1192) (-954)))))
- ((*1 *1 *1 *1 *1) (-5 *1 (-857))) ((*1 *1 *1 *1) (-5 *1 (-857)))
- ((*1 *1 *1) (-5 *1 (-857)))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1148 *3)) (-5 *1 (-1152 *3)) (-4 *3 (-1044)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-900 (-562))) (-5 *4 (-562)) (-5 *2 (-683 *4))
- (-5 *1 (-1023 *5)) (-4 *5 (-1044))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-1023 *4))
- (-4 *4 (-1044))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-900 (-562)))) (-5 *4 (-562))
- (-5 *2 (-639 (-683 *4))) (-5 *1 (-1023 *5)) (-4 *5 (-1044))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-639 (-562)))) (-5 *2 (-639 (-683 (-562))))
- (-5 *1 (-1023 *4)) (-4 *4 (-1044)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *1) (-4 *1 (-348))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2))
+ (-4 *4 (-13 (-845) (-554))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-362)) (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3)))
+ (-5 *1 (-761 *3 *4)) (-4 *3 (-703 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-362)) (-4 *3 (-1044))
+ (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-847 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-362)) (-4 *5 (-1044))
+ (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-848 *5 *3))
+ (-4 *3 (-847 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1229 *5 *4)) (-4 *4 (-451)) (-4 *4 (-815))
+ (-14 *5 (-1168)) (-5 *2 (-562)) (-5 *1 (-1106 *4 *5)))))
+(((*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259))))
+ ((*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845))
+ (-5 *2 (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -1441 *1)))
+ (-4 *1 (-1058 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *2 (-2 (|:| -4221 *1) (|:| |gap| (-766)) (|:| -1441 *1)))
+ (-4 *1 (-1058 *3 *4 *5)))))
+(((*1 *1 *2 *2)
+ (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-360 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-5 *2 (-766)) (-5 *1 (-385 *4)) (-4 *4 (-1092))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-4 *2 (-23)) (-5 *1 (-643 *4 *2 *5))
+ (-4 *4 (-1092)) (-14 *5 *2)))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-5 *2 (-766)) (-5 *1 (-814 *4)) (-4 *4 (-845)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788))
+ (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
(((*1 *1 *1)
(-12 (-5 *1 (-338 *2 *3 *4)) (-14 *2 (-639 (-1168)))
(-14 *3 (-639 (-1168))) (-4 *4 (-386))))
@@ -15149,42 +15188,31 @@
((*1 *1 *2) (-12 (-5 *2 (-406 (-562))) (-4 *1 (-1007))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1007)) (-5 *2 (-916))))
((*1 *1 *1) (-4 *1 (-1007))))
-(((*1 *2 *2) (-12 (-5 *2 (-315 (-224))) (-5 *1 (-266)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
- (|:| |relerr| (-224))))
- (-5 *2 (-378)) (-5 *1 (-191)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2835 *4)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-362)) (-5 *1 (-761 *2 *3)) (-4 *2 (-703 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168))
- (-14 *4 *2))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -3860 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-362)) (-4 *7 (-1232 *6))
- (-5 *2
- (-3 (-2 (|:| |answer| (-406 *7)) (|:| |a0| *6))
- (-2 (|:| -3860 (-406 *7)) (|:| |coeff| (-406 *7))) "failed"))
- (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1256 *1)) (-4 *1 (-369 *4 *5)) (-4 *4 (-171))
- (-4 *5 (-1232 *4)) (-5 *2 (-683 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-171)) (-4 *5 (-1232 *4)) (-5 *2 (-683 *4))
- (-5 *1 (-407 *3 *4 *5)) (-4 *3 (-408 *4 *5))))
- ((*1 *2)
- (-12 (-4 *1 (-408 *3 *4)) (-4 *3 (-171)) (-4 *4 (-1232 *3))
- (-5 *2 (-683 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 *6)) (-5 *4 (-1168)) (-4 *6 (-429 *5))
+ (-4 *5 (-845)) (-5 *2 (-639 (-608 *6))) (-5 *1 (-571 *5 *6)))))
+(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378)))))
+(((*1 *2) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-105)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-451)) (-4 *3 (-845)) (-4 *4 (-788))
+ (-5 *1 (-982 *2 *3 *4 *5)) (-4 *5 (-944 *2 *4 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-562)) (-5 *1 (-315 *3)) (-4 *3 (-554)) (-4 *3 (-845)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1044))
+ (-14 *4 (-639 (-1168)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1207))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-222 *3 *4)) (-4 *3 (-13 (-1044) (-845)))
+ (-14 *4 (-639 (-1168)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-666 *3)) (-4 *3 (-845))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-671 *3)) (-4 *3 (-845))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-888 *3)) (-4 *3 (-845)))))
+(((*1 *2 *1) (-12 (-4 *1 (-668 *3)) (-4 *3 (-1207)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *2)) (-4 *2 (-171))))
+ ((*1 *2) (-12 (-4 *2 (-171)) (-5 *1 (-415 *3 *2)) (-4 *3 (-416 *2))))
+ ((*1 *2) (-12 (-4 *1 (-416 *2)) (-4 *2 (-171)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-639 (-48))) (-5 *2 (-417 *3)) (-5 *1 (-39 *3))
(-4 *3 (-1232 (-48)))))
@@ -15234,7 +15262,7 @@
(-4 *4
(-13 (-845)
(-10 -8 (-15 -4208 ((-1168) $))
- (-15 -2444 ((-3 $ "failed") (-1168))))))
+ (-15 -2443 ((-3 $ "failed") (-1168))))))
(-4 *5 (-788)) (-4 *7 (-554)) (-5 *2 (-417 *3))
(-5 *1 (-455 *4 *5 *6 *7 *3)) (-4 *6 (-554))
(-4 *3 (-944 *7 *5 *4))))
@@ -15284,7 +15312,7 @@
(-4 *5
(-13 (-845)
(-10 -8 (-15 -4208 ((-1168) $))
- (-15 -2444 ((-3 $ "failed") (-1168))))))
+ (-15 -2443 ((-3 $ "failed") (-1168))))))
(-4 *6 (-306)) (-5 *2 (-417 *3)) (-5 *1 (-725 *4 *5 *6 *3))
(-4 *3 (-944 (-947 *6) *4 *5))))
((*1 *2 *3)
@@ -15325,60 +15353,48 @@
((*1 *2 *1) (-12 (-5 *2 (-417 *1)) (-4 *1 (-1211))))
((*1 *2 *3)
(-12 (-5 *2 (-417 *3)) (-5 *1 (-1221 *3)) (-4 *3 (-1232 (-562))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7))))
- (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-378)) (-5 *1 (-1056)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-406 (-562))) (-5 *1 (-318 *3 *4 *5))
- (-4 *3 (-13 (-362) (-845))) (-14 *4 (-1168)) (-14 *5 *3))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845)) (-4 *2 (-451)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-559)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-868 (-961 *3) (-961 *3))) (-5 *1 (-961 *3))
- (-4 *3 (-962)))))
+ (-12 (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4)))
+ (-5 *2 (-2 (|:| |num| (-1256 *4)) (|:| |den| *4))))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
+ (-4 *4 (-845))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-1168))) (-5 *2 (-1261)) (-5 *1 (-1171))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1261))
- (-5 *1 (-1171))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *4 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1261))
- (-5 *1 (-1171)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-1168)) (-4 *4 (-1044)) (-4 *4 (-845))
- (-5 *2 (-2 (|:| |var| (-608 *1)) (|:| -1960 (-562))))
- (-4 *1 (-429 *4))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1044)) (-4 *4 (-845))
- (-5 *2 (-2 (|:| |var| (-608 *1)) (|:| -1960 (-562))))
- (-4 *1 (-429 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1104)) (-4 *3 (-845))
- (-5 *2 (-2 (|:| |var| (-608 *1)) (|:| -1960 (-562))))
- (-4 *1 (-429 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |val| (-887 *3)) (|:| -1960 (-766))))
- (-5 *1 (-887 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-5 *2 (-2 (|:| |var| *5) (|:| -1960 (-766))))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044))
- (-4 *7 (-944 *6 *4 *5))
- (-5 *2 (-2 (|:| |var| *5) (|:| -1960 (-562))))
- (-5 *1 (-945 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-362)
- (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $))
- (-15 -4076 (*7 $))))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-766)) (-4 *5 (-554))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))))
+ (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-1044))
+ (-5 *1 (-1152 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-562)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044))
+ (-14 *4 (-1168)) (-14 *5 *3))))
+(((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-683 *11)) (-5 *4 (-639 (-406 (-947 *8))))
+ (-5 *5 (-766)) (-5 *6 (-1150)) (-4 *8 (-13 (-306) (-146)))
+ (-4 *11 (-944 *8 *10 *9)) (-4 *9 (-13 (-845) (-610 (-1168))))
+ (-4 *10 (-788))
+ (-5 *2
+ (-2
+ (|:| |rgl|
+ (-639
+ (-2 (|:| |eqzro| (-639 *11)) (|:| |neqzro| (-639 *11))
+ (|:| |wcond| (-639 (-947 *8)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1256 (-406 (-947 *8))))
+ (|:| -4291 (-639 (-1256 (-406 (-947 *8))))))))))
+ (|:| |rgsz| (-562))))
+ (-5 *1 (-919 *8 *9 *10 *11)) (-5 *7 (-562)))))
+(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466))))
+ ((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-466))))
+ ((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-922)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *5 (-1086 *3)) (-4 *3 (-944 *7 *6 *4)) (-4 *6 (-788))
(-4 *4 (-845)) (-4 *7 (-554))
@@ -15413,118 +15429,65 @@
(-12 (-5 *4 (-1084 (-406 (-947 *5)))) (-5 *3 (-406 (-947 *5)))
(-4 *5 (-13 (-554) (-845) (-1033 (-562)))) (-5 *2 (-3 *3 (-315 *5)))
(-5 *1 (-1161 *5)))))
+(((*1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-224)) (-5 *1 (-225))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-168 (-224))) (-5 *1 (-225))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *2))
+ (-4 *2 (-429 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1131))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-681 *2 *3 *4)) (-4 *3 (-372 *2)) (-4 *4 (-372 *2))
+ (|has| *2 (-6 (-4405 "*"))) (-4 *2 (-1044))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-372 *2)) (-4 *5 (-372 *2)) (-4 *2 (-171))
+ (-5 *1 (-682 *2 *4 *5 *3)) (-4 *3 (-681 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1115 *3 *2 *4 *5)) (-4 *4 (-237 *3 *2))
+ (-4 *5 (-237 *3 *2)) (|has| *2 (-6 (-4405 "*"))) (-4 *2 (-1044)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-639 (-859 *5))) (-14 *5 (-639 (-1168))) (-4 *6 (-451))
+ (-5 *2
+ (-2 (|:| |dpolys| (-639 (-246 *5 *6)))
+ (|:| |coords| (-639 (-562)))))
+ (-5 *1 (-470 *5 *6 *7)) (-5 *3 (-639 (-246 *5 *6))) (-4 *7 (-451)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-1256 *1)) (-4 *1 (-341 *3 *4 *5)) (-4 *3 (-1211))
- (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-170))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1202 *3)) (-4 *3 (-969)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-406 (-562)))
- (-5 *1 (-432 *4 *3)) (-4 *3 (-429 *4))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-293 (-406 (-947 *5)))) (-5 *4 (-1168))
+ (-4 *5 (-13 (-306) (-845) (-146)))
+ (-5 *2 (-1157 (-639 (-315 *5)) (-639 (-293 (-315 *5)))))
+ (-5 *1 (-1121 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-608 *3)) (-4 *3 (-429 *5))
- (-4 *5 (-13 (-845) (-554) (-1033 (-562))))
- (-5 *2 (-1164 (-406 (-562)))) (-5 *1 (-432 *5 *3)))))
-(((*1 *2)
- (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-416 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-562)) (-5 *2 (-639 (-639 (-224)))) (-5 *1 (-1203)))))
+ (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168))
+ (-4 *5 (-13 (-306) (-845) (-146)))
+ (-5 *2 (-1157 (-639 (-315 *5)) (-639 (-293 (-315 *5)))))
+ (-5 *1 (-1121 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1150)) (-5 *1 (-1188))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-1188)))))
+(((*1 *2 *1) (-12 (-4 *1 (-526)) (-5 *2 (-685 (-1212))))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-385 *2)) (-4 *2 (-1092))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845)))))
+(((*1 *1) (-5 *1 (-112))) ((*1 *1) (-5 *1 (-613))))
+(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-869))))
+ ((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1164 *5)) (-4 *5 (-362)) (-5 *2 (-639 *6))
- (-5 *1 (-531 *5 *6 *4)) (-4 *6 (-362)) (-4 *4 (-13 (-362) (-843))))))
+ (-12 (-4 *5 (-1092)) (-4 *3 (-895 *5)) (-5 *2 (-1256 *3))
+ (-5 *1 (-686 *5 *3 *6 *4)) (-4 *6 (-372 *3))
+ (-4 *4 (-13 (-372 *5) (-10 -7 (-6 -4403)))))))
(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-562)) (-5 *1 (-567 *3)) (-4 *3 (-1033 *2)))))
-(((*1 *2 *3 *4 *3 *3)
- (-12 (-5 *3 (-293 *6)) (-5 *4 (-114)) (-4 *6 (-429 *5))
- (-4 *5 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52))
- (-5 *1 (-316 *5 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-293 *7)) (-5 *4 (-114)) (-5 *5 (-639 *7))
- (-4 *7 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535))))
- (-5 *2 (-52)) (-5 *1 (-316 *6 *7))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-639 (-293 *7))) (-5 *4 (-639 (-114))) (-5 *5 (-293 *7))
- (-4 *7 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535))))
- (-5 *2 (-52)) (-5 *1 (-316 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-639 (-293 *8))) (-5 *4 (-639 (-114))) (-5 *5 (-293 *8))
- (-5 *6 (-639 *8)) (-4 *8 (-429 *7))
- (-4 *7 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52))
- (-5 *1 (-316 *7 *8))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-639 *7)) (-5 *4 (-639 (-114))) (-5 *5 (-293 *7))
- (-4 *7 (-429 *6)) (-4 *6 (-13 (-845) (-554) (-610 (-535))))
- (-5 *2 (-52)) (-5 *1 (-316 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 (-114))) (-5 *6 (-639 (-293 *8)))
- (-4 *8 (-429 *7)) (-5 *5 (-293 *8))
- (-4 *7 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52))
- (-5 *1 (-316 *7 *8))))
- ((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-293 *5)) (-5 *4 (-114)) (-4 *5 (-429 *6))
- (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52))
- (-5 *1 (-316 *6 *5))))
- ((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-114)) (-5 *5 (-293 *3)) (-4 *3 (-429 *6))
- (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52))
- (-5 *1 (-316 *6 *3))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-114)) (-5 *5 (-293 *3)) (-4 *3 (-429 *6))
- (-4 *6 (-13 (-845) (-554) (-610 (-535)))) (-5 *2 (-52))
- (-5 *1 (-316 *6 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-114)) (-5 *5 (-293 *3)) (-5 *6 (-639 *3))
- (-4 *3 (-429 *7)) (-4 *7 (-13 (-845) (-554) (-610 (-535))))
- (-5 *2 (-52)) (-5 *1 (-316 *7 *3)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1044)))))
-(((*1 *1) (-5 *1 (-112))) ((*1 *1) (-5 *1 (-613))))
-(((*1 *1 *1) (-4 *1 (-1136))))
-(((*1 *1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-262)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-639 *1)) (-5 *3 (-639 *7)) (-4 *1 (-1064 *4 *5 *6 *7))
- (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1))
- (-4 *1 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1))
- (-4 *1 (-1064 *4 *5 *6 *3)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-362) (-843)))
- (-5 *2 (-639 (-2 (|:| -1510 (-639 *3)) (|:| -3964 *5))))
- (-5 *1 (-180 *5 *3)) (-4 *3 (-1232 (-168 *5)))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-362) (-843)))
- (-5 *2 (-639 (-2 (|:| -1510 (-639 *3)) (|:| -3964 *4))))
- (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-1207)) (-4 *2 (-845))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-372 *3)) (-4 *3 (-1207))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-963 *2)) (-4 *2 (-845))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1126 *2)) (-4 *2 (-1044))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-639 *1)) (-4 *1 (-1126 *3)) (-4 *3 (-1044))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-639 (-1156 *3 *4))) (-5 *1 (-1156 *3 *4))
- (-14 *3 (-916)) (-4 *4 (-1044))))
- ((*1 *1 *1 *1)
- (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))))
-(((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-3 *3 (-639 *1)))
- (-4 *1 (-1064 *4 *5 *6 *3)))))
+ (-12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-306)) (-5 *2 (-417 *3))
+ (-5 *1 (-737 *4 *5 *6 *3)) (-4 *3 (-944 *6 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-252 *3 *4 *5 *6)) (-4 *3 (-1044)) (-4 *4 (-845))
+ (-4 *5 (-265 *4)) (-4 *6 (-788)) (-5 *2 (-112)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *2) (-12 (-5 *2 (-639 (-315 (-224)))) (-5 *1 (-266)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1096)) (-5 *1 (-1172)))))
(((*1 *1 *2)
(-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-4 *1 (-1090 *3))))
((*1 *1) (-12 (-4 *1 (-1090 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-494)))))
(((*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-451))))
((*1 *1 *1 *1) (-4 *1 (-451)))
((*1 *2 *3)
@@ -15553,25 +15516,14 @@
((*1 *2 *2 *1)
(-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
(-4 *4 (-845)) (-4 *2 (-451)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| |lm| (-385 *3)) (|:| |mm| (-385 *3)) (|:| |rm| (-385 *3))))
- (-5 *1 (-385 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| |lm| (-814 *3)) (|:| |mm| (-814 *3)) (|:| |rm| (-814 *3))))
- (-5 *1 (-814 *3)) (-4 *3 (-845)))))
-(((*1 *2 *3 *2)
- (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3))
- (-4 *3 (-1232 (-168 *2)))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-362) (-843))) (-5 *1 (-180 *2 *3))
- (-4 *3 (-1232 (-168 *2))))))
+(((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1150)) (-5 *1 (-705)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-1 (-1164 (-947 *4)) (-947 *4)))
- (-5 *1 (-1264 *4)) (-4 *4 (-362)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *2)
+ (|:| |polj| *2)))
+ (-4 *5 (-788)) (-4 *2 (-944 *4 *5 *6)) (-5 *1 (-448 *4 *5 *6 *2))
+ (-4 *4 (-451)) (-4 *6 (-845)))))
(((*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1207))))
((*1 *1 *1) (-12 (-5 *1 (-666 *2)) (-4 *2 (-845))))
((*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845))))
@@ -15580,36 +15532,6 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3))
(-4 *3 (-1232 *2)))))
-(((*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1044)) (-14 *3 (-639 (-1168)))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-222 *2 *3)) (-4 *2 (-13 (-1044) (-845)))
- (-14 *3 (-639 (-1168)))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-381 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-1092))))
- ((*1 *1 *1)
- (-12 (-14 *2 (-639 (-1168))) (-4 *3 (-171))
- (-4 *5 (-237 (-3492 *2) (-766)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2466 *4) (|:| -1960 *5))
- (-2 (|:| -2466 *4) (|:| -1960 *5))))
- (-5 *1 (-460 *2 *3 *4 *5 *6 *7)) (-4 *4 (-845))
- (-4 *7 (-944 *3 *5 (-859 *2)))))
- ((*1 *1 *1) (-12 (-4 *1 (-508 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-845))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-554)) (-5 *1 (-619 *2 *3)) (-4 *3 (-1232 *2))))
- ((*1 *1 *1) (-12 (-4 *1 (-703 *2)) (-4 *2 (-1044))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-730 *2 *3)) (-4 *3 (-845)) (-4 *2 (-1044))
- (-4 *3 (-721))))
- ((*1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-841)))))
-(((*1 *1 *1 *1) (-5 *1 (-857))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-608 *1)) (-4 *1 (-429 *4)) (-4 *4 (-845))
(-4 *4 (-554)) (-5 *2 (-406 (-1164 *1)))))
@@ -15633,47 +15555,86 @@
(-5 *1 (-945 *5 *4 *6 *7 *3))
(-4 *3
(-13 (-362)
- (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $)))))))
+ (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $)))))))
((*1 *2 *3 *4 *2)
(-12 (-5 *2 (-1164 *3))
(-4 *3
(-13 (-362)
- (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $)))))
+ (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $)))))
(-4 *7 (-944 *6 *5 *4)) (-4 *5 (-788)) (-4 *4 (-845))
(-4 *6 (-1044)) (-5 *1 (-945 *5 *4 *6 *7 *3))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-1168)) (-4 *5 (-554))
(-5 *2 (-406 (-1164 (-406 (-947 *5))))) (-5 *1 (-1038 *5))
(-5 *3 (-406 (-947 *5))))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-947 (-562)))) (-5 *1 (-436))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-683 (-224))) (-5 *2 (-1096))
- (-5 *1 (-754))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-683 (-562))) (-5 *2 (-1096))
- (-5 *1 (-754)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044))))
- ((*1 *2)
- (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-403)) (-4 *3 (-1044)))))
-(((*1 *2 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-1044))))
- ((*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-444 *3)) (-4 *3 (-1044)))))
-(((*1 *2 *3 *2 *4 *5)
- (-12 (-5 *2 (-639 *3)) (-5 *5 (-916)) (-4 *3 (-1232 *4))
- (-4 *4 (-306)) (-5 *1 (-459 *4 *3)))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-766)) (-5 *1 (-777 *3)) (-4 *3 (-1044))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *1 (-958 *3 *2)) (-4 *2 (-130)) (-4 *3 (-554))
+ (-4 *3 (-1044)) (-4 *2 (-787))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-766)) (-5 *1 (-1164 *3)) (-4 *3 (-1044))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-966)) (-4 *2 (-130)) (-5 *1 (-1170 *3)) (-4 *3 (-554))
+ (-4 *3 (-1044))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-766)) (-5 *1 (-1229 *4 *3)) (-14 *4 (-1168))
+ (-4 *3 (-1044)))))
+(((*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1044)) (-14 *3 (-639 (-1168)))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-222 *2 *3)) (-4 *2 (-13 (-1044) (-845)))
+ (-14 *3 (-639 (-1168)))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-381 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-1092))))
+ ((*1 *1 *1)
+ (-12 (-14 *2 (-639 (-1168))) (-4 *3 (-171))
+ (-4 *5 (-237 (-3492 *2) (-766)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2464 *4) (|:| -1300 *5))
+ (-2 (|:| -2464 *4) (|:| -1300 *5))))
+ (-5 *1 (-460 *2 *3 *4 *5 *6 *7)) (-4 *4 (-845))
+ (-4 *7 (-944 *3 *5 (-859 *2)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-508 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-845))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-554)) (-5 *1 (-619 *2 *3)) (-4 *3 (-1232 *2))))
+ ((*1 *1 *1) (-12 (-4 *1 (-703 *2)) (-4 *2 (-1044))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-730 *2 *3)) (-4 *3 (-845)) (-4 *2 (-1044))
+ (-4 *3 (-721))))
+ ((*1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *2 (-845))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1279 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-841)))))
+(((*1 *1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
+ (-12 (-5 *4 (-683 (-224))) (-5 *5 (-683 (-562))) (-5 *3 (-562))
+ (-5 *2 (-1030)) (-5 *1 (-751)))))
+(((*1 *2 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-742)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-1044))
- (-5 *2 (-480 *4 *5)) (-5 *1 (-939 *4 *5)))))
-(((*1 *1 *1 *2 *2 *2 *2)
- (-12 (-5 *2 (-562)) (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044))
- (-4 *4 (-372 *3)) (-4 *5 (-372 *3)))))
+ (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1092)) (-4 *5 (-1092))
+ (-5 *2 (-1 *5 *4)) (-5 *1 (-677 *4 *5)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-916)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1273 *3 *4)) (-4 *3 (-845)) (-4 *4 (-1044))
+ (-5 *2 (-814 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-841)) (-5 *1 (-1279 *3 *2)) (-4 *3 (-1044)))))
+(((*1 *2 *1) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192)))))
+ ((*1 *1 *1 *1) (-4 *1 (-788))))
+(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1207)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-406 (-562))))) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-639 (-1086 (-378)))) (-5 *1 (-262)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-562)) (-5 *1 (-1189 *3)) (-4 *3 (-1044)))))
+ (-12 (-5 *3 (-562)) (-4 *4 (-788)) (-4 *5 (-845)) (-4 *2 (-1044))
+ (-5 *1 (-320 *4 *5 *2 *6)) (-4 *6 (-944 *2 *4 *5)))))
(((*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1207))))
((*1 *1 *1) (-12 (-5 *1 (-666 *2)) (-4 *2 (-845))))
((*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845))))
@@ -15682,89 +15643,177 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3))
(-4 *3 (-1232 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1148 (-639 (-562)))) (-5 *1 (-878)) (-5 *3 (-562)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-639
+ (-2
+ (|:| -2319
+ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (|:| -2693
+ (-2
+ (|:| |endPointContinuity|
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular|
+ "There are singularities at both end points")
+ (|:| |notEvaluated|
+ "End point continuity not yet evaluated")))
+ (|:| |singularitiesStream|
+ (-3 (|:| |str| (-1148 (-224)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2147
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite|
+ "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite|
+ "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated"))))))))
+ (-5 *1 (-557)))))
+(((*1 *2 *1) (-12 (-4 *1 (-843)) (-5 *2 (-562))))
+ ((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-900 *3)) (-4 *3 (-1092))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1061 *4 *3)) (-4 *4 (-13 (-843) (-362)))
+ (-4 *3 (-1232 *4)) (-5 *2 (-562))))
+ ((*1 *2 *3)
+ (|partial| -12
+ (-4 *4 (-13 (-554) (-845) (-1033 *2) (-635 *2) (-451)))
+ (-5 *2 (-562)) (-5 *1 (-1108 *4 *3))
+ (-4 *3 (-13 (-27) (-1192) (-429 *4)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-838 *3))
+ (-4 *3 (-13 (-27) (-1192) (-429 *6)))
+ (-4 *6 (-13 (-554) (-845) (-1033 *2) (-635 *2) (-451)))
+ (-5 *2 (-562)) (-5 *1 (-1108 *6 *3))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-1150))
+ (-4 *6 (-13 (-554) (-845) (-1033 *2) (-635 *2) (-451)))
+ (-5 *2 (-562)) (-5 *1 (-1108 *6 *3))
+ (-4 *3 (-13 (-27) (-1192) (-429 *6)))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-451)) (-5 *2 (-562))
+ (-5 *1 (-1109 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-838 (-406 (-947 *6))))
+ (-5 *3 (-406 (-947 *6))) (-4 *6 (-451)) (-5 *2 (-562))
+ (-5 *1 (-1109 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *3 (-406 (-947 *6))) (-5 *4 (-1168))
+ (-5 *5 (-1150)) (-4 *6 (-451)) (-5 *2 (-562)) (-5 *1 (-1109 *6))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-562)) (-5 *1 (-1189 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
+ (-5 *1 (-983 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-639 *7)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
+ (-5 *1 (-1099 *3 *4 *5 *6 *7)))))
(((*1 *2 *1)
(-12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-639 *1))
(-4 *1 (-944 *3 *4 *5)))))
-(((*1 *2 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *5 (-1168))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-639 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-639 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -3860 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1192) (-27) (-429 *8)))
- (-4 *8 (-13 (-451) (-845) (-146) (-1033 *3) (-635 *3)))
- (-5 *3 (-562))
- (-5 *2 (-2 (|:| |ans| *4) (|:| -1602 *4) (|:| |sol?| (-112))))
- (-5 *1 (-1008 *8 *4)))))
-(((*1 *2 *1)
- (-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171))
- (-14 *6
- (-1 (-112) (-2 (|:| -2466 *5) (|:| -1960 *2))
- (-2 (|:| -2466 *5) (|:| -1960 *2))))
- (-4 *2 (-237 (-3492 *3) (-766))) (-5 *1 (-460 *3 *4 *5 *2 *6 *7))
- (-4 *5 (-845)) (-4 *7 (-944 *4 *2 (-859 *3))))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-112)) (-5 *5 (-1094 (-766))) (-5 *6 (-766))
+ (-5 *2
+ (-2 (|:| |contp| (-562))
+ (|:| -2656 (-639 (-2 (|:| |irr| *3) (|:| -2794 (-562)))))))
+ (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *4)) (-4 *4 (-171))
+ (-5 *2 (-683 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-416 *3)) (-4 *3 (-171)) (-5 *2 (-683 *3)))))
(((*1 *2 *1) (-12 (-5 *2 (-639 (-608 *1))) (-4 *1 (-301)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-103 *3))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1092)))))
-(((*1 *1 *2)
+(((*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-845))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-845))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-562)) (-4 *1 (-281 *3)) (-4 *3 (-1207))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-562)) (-4 *1 (-281 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |mval| (-683 *3)) (|:| |invmval| (-683 *3))
- (|:| |genIdeal| (-503 *3 *4 *5 *6))))
- (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *1 (-503 *3 *4 *5 *6)) (-4 *6 (-944 *3 *4 *5)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1164 *1)) (-4 *1 (-1007)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-944 *4 *5 *6)) (-5 *2 (-639 (-639 *7)))
- (-5 *1 (-447 *4 *5 *6 *7)) (-5 *3 (-639 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-306) (-146))) (-4 *6 (-788))
- (-4 *7 (-845)) (-4 *8 (-944 *5 *6 *7)) (-5 *2 (-639 (-639 *8)))
- (-5 *1 (-447 *5 *6 *7 *8)) (-5 *3 (-639 *8)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562)))))
- (-4 *5 (-1232 *4)) (-5 *2 (-639 (-2 (|:| -2328 *5) (|:| -3680 *5))))
- (-5 *1 (-802 *4 *5 *3 *6)) (-4 *3 (-650 *5))
- (-4 *6 (-650 (-406 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562)))))
- (-4 *4 (-1232 *5)) (-5 *2 (-639 (-2 (|:| -2328 *4) (|:| -3680 *4))))
- (-5 *1 (-802 *5 *4 *3 *6)) (-4 *3 (-650 *4))
- (-4 *6 (-650 (-406 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-362) (-146) (-1033 (-406 (-562)))))
- (-4 *5 (-1232 *4)) (-5 *2 (-639 (-2 (|:| -2328 *5) (|:| -3680 *5))))
- (-5 *1 (-802 *4 *5 *6 *3)) (-4 *6 (-650 *5))
- (-4 *3 (-650 (-406 *5)))))
+ (-2
+ (|:| -2319
+ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (|:| -2693
+ (-2
+ (|:| |endPointContinuity|
+ (-3 (|:| |continuous| "Continuous at the end points")
+ (|:| |lowerSingular|
+ "There is a singularity at the lower end point")
+ (|:| |upperSingular|
+ "There is a singularity at the upper end point")
+ (|:| |bothSingular|
+ "There are singularities at both end points")
+ (|:| |notEvaluated|
+ "End point continuity not yet evaluated")))
+ (|:| |singularitiesStream|
+ (-3 (|:| |str| (-1148 (-224)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2147
+ (-3 (|:| |finite| "The range is finite")
+ (|:| |lowerInfinite|
+ "The bottom of range is infinite")
+ (|:| |upperInfinite| "The top of range is infinite")
+ (|:| |bothInfinite|
+ "Both top and bottom points are infinite")
+ (|:| |notEvaluated| "Range not yet evaluated")))))))
+ (-5 *1 (-557))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-766)) (-4 *1 (-689 *2)) (-4 *2 (-1092))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2
+ (|:| -2319
+ (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
+ (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
+ (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
+ (|:| |abserr| (-224)) (|:| |relerr| (-224))))
+ (|:| -2693
+ (-2 (|:| |stiffness| (-378)) (|:| |stability| (-378))
+ (|:| |expense| (-378)) (|:| |accuracy| (-378))
+ (|:| |intermediateResults| (-378))))))
+ (-5 *1 (-798))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562)))))
- (-4 *4 (-1232 *5)) (-5 *2 (-639 (-2 (|:| -2328 *4) (|:| -3680 *4))))
- (-5 *1 (-802 *5 *4 *6 *3)) (-4 *6 (-650 *4))
- (-4 *3 (-650 (-406 *4))))))
-(((*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-766)))))
-(((*1 *1) (-5 *1 (-140))) ((*1 *1 *1) (-5 *1 (-143)))
- ((*1 *1 *1) (-4 *1 (-1136))))
+ (-12 (-5 *2 (-1261)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
+ (-4 *4 (-1092)))))
+(((*1 *1 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)) (-4 *2 (-554))))
+ ((*1 *1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-554)))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-639 *6)) (-4 *1 (-944 *4 *5 *6)) (-4 *4 (-1044))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-766))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-944 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-5 *2 (-766)))))
+(((*1 *2)
+ (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-416 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1132 *2 *3)) (-4 *2 (-13 (-1092) (-34)))
+ (-4 *3 (-13 (-1092) (-34))))))
(((*1 *2 *1)
(-12 (-4 *3 (-1092))
(-4 *4 (-13 (-1044) (-881 *3) (-845) (-610 (-887 *3))))
(-5 *2 (-639 (-1068 *3 *4 *5))) (-5 *1 (-1069 *3 *4 *5))
(-4 *5 (-13 (-429 *4) (-881 *3) (-610 (-887 *3)))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168))
- (-14 *4 *2))))
+(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1266)))))
(((*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044))))
((*1 *2 *1)
(-12 (-4 *2 (-1044)) (-5 *1 (-50 *2 *3)) (-14 *3 (-639 (-1168)))))
@@ -15776,8 +15825,8 @@
((*1 *2 *1)
(-12 (-14 *3 (-639 (-1168))) (-4 *5 (-237 (-3492 *3) (-766)))
(-14 *6
- (-1 (-112) (-2 (|:| -2466 *4) (|:| -1960 *5))
- (-2 (|:| -2466 *4) (|:| -1960 *5))))
+ (-1 (-112) (-2 (|:| -2464 *4) (|:| -1300 *5))
+ (-2 (|:| -2464 *4) (|:| -1300 *5))))
(-4 *2 (-171)) (-5 *1 (-460 *3 *2 *4 *5 *6 *7)) (-4 *4 (-845))
(-4 *7 (-944 *2 *5 (-859 *3)))))
((*1 *2 *1) (-12 (-4 *1 (-508 *2 *3)) (-4 *3 (-845)) (-4 *2 (-1092))))
@@ -15794,34 +15843,47 @@
((*1 *1 *1 *2)
(-12 (-4 *1 (-1058 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
(-4 *2 (-845)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1030)))))
-(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693))))
- ((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-693)))))
(((*1 *2 *3 *1)
- (-12 (-4 *1 (-600 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1207))
- (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1256 *5)) (-4 *5 (-635 *4)) (-4 *4 (-554))
- (-5 *2 (-112)) (-5 *1 (-634 *4 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-971 *3 *4 *2 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845)) (-4 *5 (-1058 *3 *4 *2)))))
+ (-12 (|has| *1 (-6 -4403)) (-4 *1 (-488 *3)) (-4 *3 (-1207))
+ (-4 *3 (-1092)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-900 *4)) (-4 *4 (-1092)) (-5 *2 (-112))
+ (-5 *1 (-899 *4))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-916)) (-5 *2 (-112)) (-5 *1 (-1093 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-855)) (-5 *2 (-685 (-129))) (-5 *3 (-129)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-639 (-1168))) (-4 *5 (-554))
- (-5 *2 (-639 (-639 (-293 (-406 (-947 *5)))))) (-5 *1 (-765 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-554))
- (-5 *2 (-639 (-639 (-293 (-406 (-947 *4)))))) (-5 *1 (-765 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-683 *7))
- (-5 *5
- (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -3928 (-639 *6)))
- *7 *6))
- (-4 *6 (-362)) (-4 *7 (-650 *6))
+ (-12 (-4 *5 (-362)) (-4 *5 (-554))
(-5 *2
- (-2 (|:| |particular| (-3 (-1256 *6) "failed"))
- (|:| -3928 (-639 (-1256 *6)))))
- (-5 *1 (-808 *6 *7)) (-5 *4 (-1256 *6)))))
+ (-2 (|:| |minor| (-639 (-916))) (|:| -3339 *3)
+ (|:| |minors| (-639 (-639 (-916)))) (|:| |ops| (-639 *3))))
+ (-5 *1 (-90 *5 *3)) (-5 *4 (-916)) (-4 *3 (-650 *5)))))
+(((*1 *1) (-5 *1 (-1077))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-766)) (-5 *1 (-164 *3 *4))
+ (-4 *3 (-165 *4))))
+ ((*1 *2)
+ (-12 (-14 *4 *2) (-4 *5 (-1207)) (-5 *2 (-766))
+ (-5 *1 (-236 *3 *4 *5)) (-4 *3 (-237 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *4 (-845)) (-5 *2 (-766)) (-5 *1 (-428 *3 *4))
+ (-4 *3 (-429 *4))))
+ ((*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-543 *3)) (-4 *3 (-544))))
+ ((*1 *2) (-12 (-4 *1 (-758)) (-5 *2 (-766))))
+ ((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-766)) (-5 *1 (-791 *3 *4))
+ (-4 *3 (-792 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-986 *3 *4))
+ (-4 *3 (-987 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-766)) (-5 *1 (-991 *3 *4))
+ (-4 *3 (-992 *4))))
+ ((*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1006 *3)) (-4 *3 (-1007))))
+ ((*1 *2) (-12 (-4 *1 (-1044)) (-5 *2 (-766))))
+ ((*1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-1052 *3)) (-4 *3 (-1053)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
@@ -15838,31 +15900,26 @@
((*1 *2 *2)
(-12 (-5 *2 (-1148 *3)) (-4 *3 (-38 (-406 (-562))))
(-5 *1 (-1154 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-916)) (-4 *4 (-367)) (-4 *4 (-362)) (-5 *2 (-1164 *1))
- (-4 *1 (-328 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-5 *2 (-1164 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-171)) (-4 *3 (-362))
- (-4 *2 (-1232 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-1164 *4))
- (-5 *1 (-527 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1092)) (-4 *6 (-881 *5)) (-5 *2 (-880 *5 *6 (-639 *6)))
+ (-5 *1 (-882 *5 *6 *4)) (-5 *3 (-639 *6)) (-4 *4 (-610 (-887 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1092)) (-5 *2 (-639 (-293 *3))) (-5 *1 (-882 *5 *3 *4))
+ (-4 *3 (-1033 (-1168))) (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1092)) (-5 *2 (-639 (-293 (-947 *3))))
+ (-5 *1 (-882 *5 *3 *4)) (-4 *3 (-1044))
+ (-2234 (-4 *3 (-1033 (-1168)))) (-4 *3 (-881 *5))
+ (-4 *4 (-610 (-887 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1092)) (-5 *2 (-884 *5 *3)) (-5 *1 (-882 *5 *3 *4))
+ (-2234 (-4 *3 (-1033 (-1168)))) (-2234 (-4 *3 (-1044)))
+ (-4 *3 (-881 *5)) (-4 *4 (-610 (-887 *5))))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030))
+ (-5 *1 (-750)))))
(((*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-451))))
((*1 *1 *1 *1) (-4 *1 (-451))))
-(((*1 *1 *1) (-12 (-4 *1 (-650 *2)) (-4 *2 (-1044))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *4 (-171)) (-4 *5 (-372 *4))
- (-4 *6 (-372 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
- (-5 *1 (-682 *4 *5 *6 *3)) (-4 *3 (-681 *4 *5 *6))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-171)) (-4 *2 (-1044)) (-5 *1 (-709 *2 *3))
- (-4 *3 (-642 *2))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-171)) (-4 *2 (-1044)) (-5 *1 (-709 *2 *3))
- (-4 *3 (-642 *2))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-831 *2)) (-4 *2 (-171)) (-4 *2 (-1044))))
- ((*1 *1 *1) (-12 (-5 *1 (-831 *2)) (-4 *2 (-171)) (-4 *2 (-1044)))))
(((*1 *2 *3)
(-12 (-5 *2 (-168 (-378))) (-5 *1 (-780 *3)) (-4 *3 (-610 (-378)))))
((*1 *2 *3 *4)
@@ -15911,14 +15968,9 @@
(-12 (-5 *3 (-315 (-168 *5))) (-5 *4 (-916)) (-4 *5 (-554))
(-4 *5 (-845)) (-4 *5 (-610 (-378))) (-5 *2 (-168 (-378)))
(-5 *1 (-780 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-983 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1099 *4 *5 *6 *7 *3)) (-4 *3 (-1064 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-817)))))
(((*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787))))
((*1 *2 *1)
(-12 (-4 *1 (-381 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1092))))
@@ -15926,8 +15978,8 @@
(-12 (-14 *3 (-639 (-1168))) (-4 *4 (-171))
(-4 *6 (-237 (-3492 *3) (-766)))
(-14 *7
- (-1 (-112) (-2 (|:| -2466 *5) (|:| -1960 *6))
- (-2 (|:| -2466 *5) (|:| -1960 *6))))
+ (-1 (-112) (-2 (|:| -2464 *5) (|:| -1300 *6))
+ (-2 (|:| -2464 *5) (|:| -1300 *6))))
(-5 *2 (-708 *5 *6 *7)) (-5 *1 (-460 *3 *4 *5 *6 *7 *8))
(-4 *5 (-845)) (-4 *8 (-944 *4 *6 (-859 *3)))))
((*1 *2 *1)
@@ -15936,163 +15988,143 @@
((*1 *1 *1)
(-12 (-4 *1 (-968 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-787))
(-4 *4 (-845)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1044)) (-5 *1 (-1228 *3 *2)) (-4 *2 (-1232 *3)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-639 *3)) (-4 *3 (-1232 (-562))) (-5 *1 (-485 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *1) (-5 *1 (-436))))
+(((*1 *2 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1001)))))
+(((*1 *2 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-746)))))
+(((*1 *2 *2 *3) (-12 (-5 *2 (-562)) (-5 *3 (-766)) (-5 *1 (-559)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1232 *3)) (-4 *3 (-1044)) (-5 *2 (-1164 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1207))
+ (-4 *5 (-1207)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-239 *6 *7)) (-14 *6 (-766))
+ (-4 *7 (-1207)) (-4 *5 (-1207)) (-5 *2 (-239 *6 *5))
+ (-5 *1 (-238 *6 *7 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1207)) (-4 *5 (-1207))
+ (-4 *2 (-372 *5)) (-5 *1 (-370 *6 *4 *5 *2)) (-4 *4 (-372 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1092)) (-4 *5 (-1092))
+ (-4 *2 (-424 *5)) (-5 *1 (-422 *6 *4 *5 *2)) (-4 *4 (-424 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-639 *6)) (-4 *6 (-1207))
+ (-4 *5 (-1207)) (-5 *2 (-639 *5)) (-5 *1 (-637 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-953 *6)) (-4 *6 (-1207))
+ (-4 *5 (-1207)) (-5 *2 (-953 *5)) (-5 *1 (-952 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1148 *6)) (-4 *6 (-1207))
+ (-4 *3 (-1207)) (-5 *2 (-1148 *3)) (-5 *1 (-1146 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1256 *6)) (-4 *6 (-1207))
+ (-4 *5 (-1207)) (-5 *2 (-1256 *5)) (-5 *1 (-1255 *6 *5)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562))
+ (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 G)))) (-5 *2 (-1030))
+ (-5 *1 (-743)))))
(((*1 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
- (|:| |xpnt| (-562))))
- (-4 *4 (-13 (-1232 *3) (-554) (-10 -8 (-15 -1606 ($ $ $)))))
- (-4 *3 (-554)) (-5 *1 (-1235 *3 *4)))))
+ (-12 (-4 *3 (-13 (-554) (-845) (-1033 (-562)))) (-5 *1 (-187 *3 *2))
+ (-4 *2 (-13 (-27) (-1192) (-429 (-168 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-554) (-845) (-1033 (-562))))
+ (-5 *1 (-187 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 (-168 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-1196 *3 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168))
+ (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-1196 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))))
(((*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-628)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1232 *5)) (-4 *5 (-362))
- (-5 *2 (-2 (|:| -2451 (-417 *3)) (|:| |special| (-417 *3))))
- (-5 *1 (-722 *5 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-378)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
- ((*1 *1 *2) (-12 (-5 *2 (-378)) (-5 *1 (-262)))))
(((*1 *1)
- (-12 (-4 *1 (-403)) (-2236 (|has| *1 (-6 -4393)))
- (-2236 (|has| *1 (-6 -4385)))))
+ (-12 (-4 *1 (-403)) (-2234 (|has| *1 (-6 -4394)))
+ (-2234 (|has| *1 (-6 -4386)))))
((*1 *2 *1) (-12 (-4 *1 (-424 *2)) (-4 *2 (-1092)) (-4 *2 (-845))))
((*1 *2 *1) (-12 (-4 *1 (-825 *2)) (-4 *2 (-845))))
((*1 *1) (-4 *1 (-839))) ((*1 *1 *1 *1) (-4 *1 (-845))))
-(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-224)) (-5 *4 (-562))
- (-5 *5 (-3 (|:| |fn| (-387)) (|:| |fp| (-64 -3197))))
- (-5 *2 (-1030)) (-5 *1 (-743)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *1 (-643 *2 *3 *4)) (-4 *2 (-1092)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-362))
- (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-5 *1 (-449 *4 *5 *6 *2))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-362))
- (-5 *2
- (-2 (|:| R (-683 *6)) (|:| A (-683 *6)) (|:| |Ainv| (-683 *6))))
- (-5 *1 (-973 *6)) (-5 *3 (-683 *6)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-639 (-2 (|:| |val| (-639 *6)) (|:| -1501 *7))))
+ (-4 *6 (-1058 *3 *4 *5)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-983 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-639 (-2 (|:| |val| (-639 *6)) (|:| -1501 *7))))
+ (-4 *6 (-1058 *3 *4 *5)) (-4 *7 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-1099 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3 *3 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-528))))
+ ((*1 *1 *2) (-12 (-5 *2 (-387)) (-5 *1 (-528)))))
(((*1 *2 *1) (-12 (-4 *1 (-325 *2 *3)) (-4 *3 (-787)) (-4 *2 (-1044))))
((*1 *2 *1) (-12 (-4 *1 (-429 *2)) (-4 *2 (-845)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-845)) (-5 *2 (-639 *1))
- (-4 *1 (-429 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3))
- (-4 *3 (-1092))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1044)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *2 (-639 *1)) (-4 *1 (-944 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1044))
- (-4 *7 (-944 *6 *4 *5)) (-5 *2 (-639 *3))
- (-5 *1 (-945 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-362)
- (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $))
- (-15 -4076 (*7 $))))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-322 *3 *4)) (-4 *3 (-1092))
+ (-4 *4 (-130)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-554) (-845))) (-5 *2 (-168 *5))
+ (-5 *1 (-596 *4 *5 *3)) (-4 *5 (-13 (-429 *4) (-997) (-1192)))
+ (-4 *3 (-13 (-429 (-168 *4)) (-997) (-1192))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-639 (-224))) (-5 *4 (-766)) (-5 *2 (-683 (-224)))
- (-5 *1 (-304)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
- (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224)))
- (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-89 G))))
- (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-86 FCN)))) (-5 *3 (-224))
- (-5 *2 (-1030)) (-5 *1 (-744)))))
+ (-12 (-5 *3 (-639 *5)) (-5 *4 (-916)) (-4 *5 (-845))
+ (-5 *2 (-639 (-666 *5))) (-5 *1 (-666 *5)))))
(((*1 *2 *1)
(|partial| -12 (-5 *2 (-1 (-535) (-639 (-535)))) (-5 *1 (-114))))
((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-535) (-639 (-535)))) (-5 *1 (-114))))
((*1 *1) (-5 *1 (-576))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-639 (-639 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-639 (-3 (|:| |array| (-639 *3)) (|:| |scalar| (-1168)))))
- (-5 *6 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1096))
- (-5 *1 (-396))))
- ((*1 *2 *3 *4 *5 *6 *3)
- (-12 (-5 *5 (-639 (-639 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-639 (-3 (|:| |array| (-639 *3)) (|:| |scalar| (-1168)))))
- (-5 *6 (-639 (-1168))) (-5 *3 (-1168)) (-5 *2 (-1096))
- (-5 *1 (-396))))
- ((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *4 (-639 (-1168))) (-5 *5 (-1171)) (-5 *3 (-1168))
- (-5 *2 (-1096)) (-5 *1 (-396)))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-872 *2)) (-4 *2 (-1207))))
- ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-874 *2)) (-4 *2 (-1207))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1126 *3)) (-4 *3 (-1044)) (-5 *2 (-639 (-938 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-639 (-938 *3))) (-4 *3 (-1044)) (-4 *1 (-1126 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-639 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 (-938 *3))) (-4 *1 (-1126 *3)) (-4 *3 (-1044)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-580)))))
-(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-921))))
- ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1086 (-224))) (-5 *1 (-922))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171))))
- ((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-362)) (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3)))
- (-5 *1 (-761 *3 *4)) (-4 *3 (-703 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-362)) (-4 *3 (-1044))
- (-5 *2 (-2 (|:| -2097 *1) (|:| -2264 *1))) (-4 *1 (-847 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-362)) (-4 *5 (-1044))
- (-5 *2 (-2 (|:| -2097 *3) (|:| -2264 *3))) (-5 *1 (-848 *5 *3))
- (-4 *3 (-847 *5)))))
+(((*1 *2 *2 *3 *3 *4)
+ (-12 (-5 *4 (-766)) (-4 *3 (-554)) (-5 *1 (-964 *3 *2))
+ (-4 *2 (-1232 *3)))))
+(((*1 *2) (-12 (-4 *3 (-171)) (-5 *2 (-1256 *1)) (-4 *1 (-366 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
+ (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378)))
+ (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261))
+ (-5 *1 (-783)))))
+(((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259))))
+ ((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-378) (-378))) (-5 *4 (-378))
+ (-5 *2
+ (-2 (|:| -2533 *4) (|:| -3964 *4) (|:| |totalpts| (-562))
+ (|:| |success| (-112))))
+ (-5 *1 (-784)) (-5 *5 (-562)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
(((*1 *2 *1)
(-12 (-4 *1 (-325 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787))
(-5 *2 (-112))))
((*1 *2 *1) (-12 (-4 *1 (-429 *3)) (-4 *3 (-845)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-451)) (-4 *3 (-845)) (-4 *4 (-788))
- (-5 *1 (-982 *2 *3 *4 *5)) (-4 *5 (-944 *2 *4 *3)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-301)) (-5 *3 (-1168)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-301)) (-5 *2 (-112)))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-1181 *2)) (-4 *2 (-362)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3))
+ (-4 *3 (-1232 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1168)) (-5 *1 (-583 *2)) (-4 *2 (-1033 *3))
+ (-4 *2 (-362))))
+ ((*1 *1 *2 *2) (-12 (-5 *1 (-583 *2)) (-4 *2 (-362))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-626 *4 *2))
+ (-4 *2 (-13 (-429 *4) (-997) (-1192)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1084 *2)) (-4 *2 (-13 (-429 *4) (-997) (-1192)))
+ (-4 *4 (-13 (-845) (-554))) (-5 *1 (-626 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-954)) (-5 *2 (-1168))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1084 *1)) (-4 *1 (-954)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
+ (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-747)))))
(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-766)) (-4 *1 (-1232 *3)) (-4 *3 (-1044)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-1077))) (-5 *1 (-290)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-815)) (-14 *5 (-1168)) (-5 *2 (-639 (-1229 *5 *4)))
- (-5 *1 (-1106 *4 *5)) (-5 *3 (-1229 *5 *4)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1168)) (-5 *5 (-639 (-406 (-947 *6))))
- (-5 *3 (-406 (-947 *6)))
- (-4 *6 (-13 (-554) (-1033 (-562)) (-146)))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-568 *6)))))
-(((*1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1259))))
- ((*1 *2 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1259)))))
+ (-12 (-5 *2 (-1223 (-562))) (-4 *1 (-281 *3)) (-4 *3 (-1207))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-281 *3)) (-4 *3 (-1207)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-378)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
(((*1 *1 *1) (-4 *1 (-242)))
((*1 *1 *1)
(-12 (-4 *2 (-171)) (-5 *1 (-288 *2 *3 *4 *5 *6 *7))
@@ -16109,18 +16141,23 @@
(-14 *4 (-1 *2 *2 *3)) (-14 *5 (-1 (-3 *3 "failed") *3 *3))
(-14 *6 (-1 (-3 *2 "failed") *2 *2 *3))))
((*1 *1 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)) (-4 *2 (-362)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
-(((*1 *1) (-5 *1 (-436))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-554)) (-4 *3 (-1044))
+ (-5 *2 (-2 (|:| -3380 *1) (|:| -1441 *1))) (-4 *1 (-847 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-554)) (-4 *5 (-1044))
+ (-5 *2 (-2 (|:| -3380 *3) (|:| -1441 *3))) (-5 *1 (-848 *5 *3))
+ (-4 *3 (-847 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-916)) (-5 *2 (-1164 *4)) (-5 *1 (-356 *4))
+ (-4 *4 (-348)))))
(((*1 *2 *1) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1187)))))
-(((*1 *2 *2 *2 *2 *3)
- (-12 (-4 *3 (-554)) (-5 *1 (-964 *3 *2)) (-4 *2 (-1232 *3)))))
(((*1 *2 *1)
(-12
(-5 *2
(-639
(-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
- (|:| -1590 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
(|:| |relerr| (-224)))))
(-5 *1 (-557))))
((*1 *2 *1)
@@ -16135,61 +16172,56 @@
(|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
(|:| |abserr| (-224)) (|:| |relerr| (-224)))))
(-5 *1 (-798)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-683 (-562))) (-5 *3 (-639 (-562))) (-5 *1 (-1102)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
- (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
- (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *1 *2) (-12 (-5 *1 (-685 *2)) (-4 *2 (-609 (-857))))))
+(((*1 *1 *1) (-12 (-5 *1 (-961 *2)) (-4 *2 (-962)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2)
+ (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
+ (-4 *3 (-366 *4))))
+ ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-451))
- (-5 *2
- (-639
- (-2 (|:| |eigval| (-3 (-406 (-947 *4)) (-1157 (-1168) (-947 *4))))
- (|:| |geneigvec| (-639 (-683 (-406 (-947 *4))))))))
- (-5 *1 (-291 *4)) (-5 *3 (-683 (-406 (-947 *4)))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1148 *2)) (-4 *2 (-306)) (-5 *1 (-173 *2)))))
+ (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-191))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-299))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1086 (-838 (-224)))) (-5 *2 (-224)) (-5 *1 (-304)))))
(((*1 *2 *3 *1)
(|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1092)) (-4 *4 (-1092))
- (-5 *2 (-2 (|:| -2320 *3) (|:| -2694 *4))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-1023 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-639 (-683 *3))) (-4 *3 (-1044)) (-5 *1 (-1023 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-1023 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-639 (-683 *3))) (-4 *3 (-1044)) (-5 *1 (-1023 *3)))))
-(((*1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-824)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-1005 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-170)))))
+ (-5 *2 (-2 (|:| -2319 *3) (|:| -2693 *4))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-639 (-562))) (-5 *3 (-683 (-562))) (-5 *1 (-1102)))))
+(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-746)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-417 *2)) (-4 *2 (-554)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-884 *4 *5)) (-5 *3 (-884 *4 *6)) (-4 *4 (-1092))
+ (-4 *5 (-1092)) (-4 *6 (-660 *5)) (-5 *1 (-880 *4 *5 *6)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 (-562)))))
- (-5 *1 (-360 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 (-766)))))
- (-5 *1 (-385 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| -1635 *3) (|:| -1960 (-562)))))
- (-5 *1 (-417 *3)) (-4 *3 (-554))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-639 (-2 (|:| |gen| *3) (|:| -3430 (-766)))))
- (-5 *1 (-814 *3)) (-4 *3 (-845)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-168 (-224)) (-168 (-224)))) (-5 *4 (-1086 (-224)))
- (-5 *5 (-112)) (-5 *2 (-1258)) (-5 *1 (-256)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-639 (-562))) (-5 *1 (-1102)) (-5 *3 (-562)))))
-(((*1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
-(((*1 *2 *1 *2) (-12 (-5 *1 (-1021 *2)) (-4 *2 (-1207)))))
+ (-12 (-4 *2 (-703 *3)) (-5 *1 (-822 *2 *3)) (-4 *3 (-1044)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-639 *5) *6))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-406 (-562))))) (-4 *6 (-1232 *5))
+ (-5 *2 (-639 (-2 (|:| |poly| *6) (|:| -3339 *3))))
+ (-5 *1 (-804 *5 *6 *3 *7)) (-4 *3 (-650 *6))
+ (-4 *7 (-650 (-406 *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-639 *5) *6))
+ (-4 *5 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-4 *6 (-1232 *5))
+ (-5 *2 (-639 (-2 (|:| |poly| *6) (|:| -3339 (-648 *6 (-406 *6))))))
+ (-5 *1 (-807 *5 *6)) (-5 *3 (-648 *6 (-406 *6))))))
(((*1 *2 *1 *3 *3 *2)
(-12 (-5 *3 (-562)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1207))
(-4 *4 (-372 *2)) (-4 *5 (-372 *2))))
((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4403)) (-4 *1 (-287 *3 *2)) (-4 *3 (-1092))
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-287 *3 *2)) (-4 *3 (-1092))
(-4 *2 (-1207)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1150)) (-5 *3 (-639 (-262))) (-5 *1 (-260))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-262)))))
+(((*1 *2 *1) (-12 (-5 *2 (-766)) (-5 *1 (-128)))))
(((*1 *2 *1) (-12 (-4 *1 (-243 *2)) (-4 *2 (-1207))))
((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1088))))
((*1 *2 *1)
@@ -16269,41 +16301,35 @@
((*1 *1 *2)
(-12 (-5 *2 (-1148 (-2 (|:| |k| (-766)) (|:| |c| *3))))
(-4 *3 (-1044)) (-4 *1 (-1247 *3)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1164 *1)) (-5 *3 (-1168)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1164 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-947 *1)) (-4 *1 (-27))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1168)) (-4 *1 (-29 *3)) (-4 *3 (-13 (-845) (-554)))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-13 (-845) (-554)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1164 *2)) (-5 *4 (-1168)) (-4 *2 (-429 *5))
- (-5 *1 (-32 *5 *2)) (-4 *5 (-13 (-845) (-554)))))
- ((*1 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1164 *1)) (-5 *3 (-916)) (-4 *1 (-1007))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-1164 *1)) (-5 *3 (-916)) (-5 *4 (-857))
- (-4 *1 (-1007))))
- ((*1 *1 *2 *3)
- (|partial| -12 (-5 *3 (-916)) (-4 *4 (-13 (-843) (-362)))
- (-4 *1 (-1061 *4 *2)) (-4 *2 (-1232 *4)))))
-(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
- (-12 (-5 *4 (-562))
- (-5 *6
- (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4335 (-378))))
- (-5 *7 (-1 (-1261) (-1256 *5) (-1256 *5) (-378)))
- (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261))
- (-5 *1 (-783))))
- ((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
- (-12 (-5 *4 (-562))
- (-5 *6
- (-2 (|:| |try| (-378)) (|:| |did| (-378)) (|:| -4335 (-378))))
- (-5 *7 (-1 (-1261) (-1256 *5) (-1256 *5) (-378)))
- (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261))
- (-5 *1 (-783)))))
-(((*1 *2)
- (-12
- (-5 *2 (-2 (|:| -3712 (-639 (-1168))) (|:| -2010 (-639 (-1168)))))
- (-5 *1 (-1209)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-32 *3 *4))
+ (-4 *4 (-429 *3))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-766)) (-5 *1 (-114))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-114))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *4))
+ (-4 *4 (-429 *3))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-114)) (-5 *1 (-162))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *4))
+ (-4 *4 (-13 (-429 *3) (-997)))))
+ ((*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-300 *3)) (-4 *3 (-301))))
+ ((*1 *2 *2) (-12 (-4 *1 (-301)) (-5 *2 (-114))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *4 (-845)) (-5 *1 (-428 *3 *4))
+ (-4 *3 (-429 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-430 *3 *4))
+ (-4 *4 (-429 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-608 *3)) (-4 *3 (-845))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-114)) (-4 *3 (-13 (-845) (-554))) (-5 *1 (-626 *3 *4))
+ (-4 *4 (-13 (-429 *3) (-997) (-1192)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1014)))))
+(((*1 *2 *1) (-12 (-5 *2 (-639 (-608 *1))) (-4 *1 (-301)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-306)) (-4 *4 (-372 *3)) (-4 *5 (-372 *3))
+ (-5 *1 (-1116 *3 *4 *5 *2)) (-4 *2 (-681 *3 *4 *5)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1168))
(-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
@@ -16341,22 +16367,9 @@
((*1 *1 *2 *3)
(-12 (-5 *2 (-406 (-562))) (-4 *4 (-1044)) (-4 *1 (-1239 *4 *3))
(-4 *3 (-1216 *4)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-325 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787))
- (-4 *2 (-451))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-341 *2 *3 *4)) (-4 *2 (-1211)) (-4 *3 (-1232 *2))
- (-4 *4 (-1232 (-406 *3)))))
- ((*1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-451))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-944 *3 *4 *2)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *2 (-845)) (-4 *3 (-451))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-944 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-451))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-306)) (-4 *3 (-554)) (-5 *1 (-1155 *3 *2))
- (-4 *2 (-1232 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1095 *3 *4 *5 *6 *7)) (-4 *3 (-1092)) (-4 *4 (-1092))
+ (-4 *5 (-1092)) (-4 *6 (-1092)) (-4 *7 (-1092)) (-5 *2 (-112)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1 *5)) (-4 *5 (-1092)) (-5 *2 (-1 *5 *4))
(-5 *1 (-677 *4 *5)) (-4 *4 (-1092))))
@@ -16368,40 +16381,36 @@
(-12 (-4 *1 (-1273 *3 *2)) (-4 *3 (-845)) (-4 *2 (-1044))))
((*1 *2 *1)
(-12 (-4 *2 (-1044)) (-5 *1 (-1279 *2 *3)) (-4 *3 (-841)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1164 *2)) (-4 *2 (-944 (-406 (-947 *6)) *5 *4))
- (-5 *1 (-727 *5 *4 *6 *2)) (-4 *5 (-788))
- (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $)))))
- (-4 *6 (-554)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-608 *1))) (-4 *1 (-301)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *6 (-554)) (-4 *2 (-944 *3 *5 *4))
- (-5 *1 (-727 *5 *4 *6 *2)) (-5 *3 (-406 (-947 *6))) (-4 *5 (-788))
- (-4 *4 (-13 (-845) (-10 -8 (-15 -4208 ((-1168) $))))))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-562)) (-4 *1 (-1216 *4)) (-4 *4 (-1044)) (-4 *4 (-554))
- (-5 *2 (-406 (-947 *4)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-562)) (-4 *1 (-1216 *4)) (-4 *4 (-1044)) (-4 *4 (-554))
- (-5 *2 (-406 (-947 *4))))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-1256 *5)) (-5 *3 (-766)) (-5 *4 (-1112)) (-4 *5 (-348))
- (-5 *1 (-527 *5)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-639 (-608 *5))) (-5 *3 (-1168)) (-4 *5 (-429 *4))
- (-4 *4 (-845)) (-5 *1 (-571 *4 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1112)) (-5 *1 (-329)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-406 (-562)))
+ (-4 *4 (-13 (-554) (-845) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-276 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))))
+(((*1 *1 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-639 *1)) (-4 *1 (-1058 *4 *5 *6)) (-4 *4 (-1044))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1200 *4 *5 *6 *3)) (-4 *4 (-554)) (-4 *5 (-788))
+ (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-916)) (-4 *1 (-739 *3)) (-4 *3 (-171)))))
(((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1207))
(-4 *4 (-372 *3)) (-4 *5 (-372 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4403)) (-4 *1 (-488 *3))
+ (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4404)) (-4 *1 (-488 *3))
(-4 *3 (-1207)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-916)) (-5 *2 (-467)) (-5 *1 (-1257)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 (-329))) (-5 *1 (-329)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1179 (-639 *4))) (-4 *4 (-845))
- (-5 *2 (-639 (-639 *4))) (-5 *1 (-1178 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-562)) (-5 *1 (-921)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-766)) (-5 *1 (-103 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-362)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5)) (-5 *2 (-112)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1168))
(-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
@@ -16438,21 +16447,41 @@
(-4 *3 (-1247 *4))))
((*1 *2 *1)
(-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1216 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-857)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -1603 *6) (|:| |sol?| (-112))) (-562)
+ *6))
+ (-4 *6 (-362)) (-4 *7 (-1232 *6))
+ (-5 *2
+ (-3 (-2 (|:| |answer| (-406 *7)) (|:| |a0| *6))
+ (-2 (|:| -2929 (-406 *7)) (|:| |coeff| (-406 *7))) "failed"))
+ (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-13 (-554) (-146))) (-5 *1 (-1226 *3 *2))
+ (-4 *2 (-1232 *3)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-766)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-788)) (-4 *7 (-944 *4 *5 *6)) (-4 *4 (-451)) (-4 *6 (-845))
+ (-5 *2 (-112)) (-5 *1 (-448 *4 *5 *6 *7)))))
(((*1 *1 *1 *2)
(-12 (-5 *2 (-562)) (-4 *1 (-1085 *3)) (-4 *3 (-1207)))))
(((*1 *1 *1 *2)
(-12
(-5 *2
- (-2 (|:| -3562 (-639 (-857))) (|:| -3659 (-639 (-857)))
- (|:| |presup| (-639 (-857))) (|:| -2074 (-639 (-857)))
+ (-2 (|:| -1923 (-639 (-857))) (|:| -1593 (-639 (-857)))
+ (|:| |presup| (-639 (-857))) (|:| -3142 (-639 (-857)))
(|:| |args| (-639 (-857)))))
(-5 *1 (-1168))))
((*1 *1 *1 *2) (-12 (-5 *2 (-639 (-639 (-857)))) (-5 *1 (-1168)))))
(((*1 *2) (-12 (-5 *2 (-639 *3)) (-5 *1 (-1076 *3)) (-4 *3 (-131)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
- (-5 *1 (-175 *3)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-766)) (-4 *5 (-554))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-964 *5 *3)) (-4 *3 (-1232 *5)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-857) (-857))) (-5 *1 (-114))))
((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-857) (-639 (-857)))) (-5 *1 (-114))))
((*1 *2 *1)
@@ -16462,7 +16491,7 @@
(-4 *3
(-13 (-845)
(-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 (*2 $))
- (-15 -1966 (*2 $)))))))
+ (-15 -1359 (*2 $)))))))
((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-393))))
((*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-393))))
((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-501))))
@@ -16470,13 +16499,27 @@
((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1187))))
((*1 *2 *1 *3) (-12 (-5 *3 (-562)) (-5 *2 (-1261)) (-5 *1 (-1187)))))
(((*1 *2 *1) (-12 (-4 *1 (-969)) (-5 *2 (-1086 (-224))))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-526)) (-5 *3 (-128)) (-5 *2 (-766)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1096)) (-5 *1 (-279)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-173 (-406 (-562)))) (-5 *1 (-117 *3)) (-14 *3 (-562))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *3 (-1148 *2)) (-4 *2 (-306)) (-5 *1 (-173 *2))))
+ ((*1 *1 *2) (-12 (-5 *2 (-406 *3)) (-4 *3 (-306)) (-5 *1 (-173 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-173 (-562))) (-5 *1 (-760 *3)) (-4 *3 (-403))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-173 (-406 (-562)))) (-5 *1 (-866 *3)) (-14 *3 (-562))))
+ ((*1 *2 *1)
+ (-12 (-14 *3 (-562)) (-5 *2 (-173 (-406 (-562))))
+ (-5 *1 (-867 *3 *4)) (-4 *4 (-864 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-766)) (-4 *6 (-1092)) (-4 *3 (-895 *6))
+ (-5 *2 (-683 *3)) (-5 *1 (-686 *6 *3 *7 *4)) (-4 *7 (-372 *3))
+ (-4 *4 (-13 (-372 *6) (-10 -7 (-6 -4403)))))))
(((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4402)) (-4 *1 (-150 *2)) (-4 *2 (-1207))
+ (-12 (|has| *1 (-6 -4403)) (-4 *1 (-150 *2)) (-4 *2 (-1207))
(-4 *2 (-1092))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4402)) (-4 *1 (-150 *3))
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4403)) (-4 *1 (-150 *3))
(-4 *3 (-1207))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-668 *3)) (-4 *3 (-1207))))
@@ -16488,29 +16531,18 @@
((*1 *1 *2 *1)
(-12 (-5 *2 (-1132 *3 *4)) (-4 *3 (-13 (-1092) (-34)))
(-4 *4 (-13 (-1092) (-34))) (-5 *1 (-1133 *3 *4)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))
- (-5 *1 (-1065 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *1 *1) (-5 *1 (-224))) ((*1 *1 *1) (-5 *1 (-378)))
+ ((*1 *1) (-5 *1 (-378))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-2 (|:| -1635 (-1164 *6)) (|:| -1300 (-562)))))
+ (-4 *6 (-306)) (-4 *4 (-788)) (-4 *5 (-845)) (-5 *2 (-562))
+ (-5 *1 (-737 *4 *5 *6 *7)) (-4 *7 (-944 *6 *4 *5)))))
(((*1 *2 *3 *1)
(|partial| -12 (-4 *1 (-606 *3 *2)) (-4 *3 (-1092)) (-4 *2 (-1092)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-554)) (-4 *4 (-987 *3)) (-5 *1 (-141 *3 *4 *2))
- (-4 *2 (-372 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-554)) (-4 *5 (-987 *4)) (-4 *2 (-372 *4))
- (-5 *1 (-502 *4 *5 *2 *3)) (-4 *3 (-372 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-683 *5)) (-4 *5 (-987 *4)) (-4 *4 (-554))
- (-5 *2 (-683 *4)) (-5 *1 (-687 *4 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-554)) (-4 *4 (-987 *3)) (-5 *1 (-1225 *3 *4 *2))
- (-4 *2 (-1232 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
+ (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))
+ (-5 *2 (-2 (|:| -1449 (-639 *6)) (|:| -3315 (-639 *6)))))))
(((*1 *2 *3)
(-12 (-5 *3 (-1168))
(-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
@@ -16556,29 +16588,39 @@
(-5 *2 (-52)) (-5 *1 (-458 *7 *3))))
((*1 *2 *1)
(-12 (-4 *1 (-1218 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-1247 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-381 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1092))
- (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1256 (-639 (-2 (|:| -2534 *4) (|:| -2466 (-1112))))))
- (-4 *4 (-348)) (-5 *2 (-683 *4)) (-5 *1 (-345 *4)))))
+(((*1 *2)
+ (|partial| -12 (-4 *3 (-554)) (-4 *3 (-171))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -4291 (-639 *1))))
+ (-4 *1 (-366 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-452 *3 *4 *5 *6))
+ (|:| -4291 (-639 (-452 *3 *4 *5 *6)))))
+ (-5 *1 (-452 *3 *4 *5 *6)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
+(((*1 *2)
+ (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-916)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-348))
+ (-5 *2
+ (-2 (|:| |cont| *5)
+ (|:| -2656 (-639 (-2 (|:| |irr| *3) (|:| -2794 (-562)))))))
+ (-5 *1 (-215 *5 *3)) (-4 *3 (-1232 *5)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-224)) (|:| |xend| (-224))
- (|:| |fn| (-1256 (-315 (-224)))) (|:| |yinit| (-639 (-224)))
- (|:| |intvals| (-639 (-224))) (|:| |g| (-315 (-224)))
- (|:| |abserr| (-224)) (|:| |relerr| (-224))))
- (-5 *2 (-378)) (-5 *1 (-204)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-441 *3)) (-4 *3 (-1232 (-562))))))
(((*1 *2 *1) (-12 (-5 *2 (-769)) (-5 *1 (-52)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
- (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-766)) (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2355 *4)))
+ (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
(((*1 *2 *1) (-12 (-4 *1 (-950)) (-5 *2 (-1086 (-224)))))
((*1 *2 *1) (-12 (-4 *1 (-969)) (-5 *2 (-1086 (-224))))))
-(((*1 *2 *3) (-12 (-5 *3 (-947 (-224))) (-5 *2 (-224)) (-5 *1 (-304)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-5 *1 (-485 *2)) (-4 *2 (-1232 (-562))))))
(((*1 *2 *1 *3 *4)
(-12 (-5 *3 (-938 (-224))) (-5 *4 (-869)) (-5 *2 (-1261))
(-5 *1 (-467))))
@@ -16596,7 +16638,7 @@
((*1 *2 *3 *3 *3 *3)
(-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203)) (-5 *3 (-224)))))
(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4402)) (-4 *1 (-150 *2)) (-4 *2 (-1207))
+ (-12 (|has| *1 (-6 -4403)) (-4 *1 (-150 *2)) (-4 *2 (-1207))
(-4 *2 (-1092)))))
(((*1 *1 *2 *2 *3)
(-12 (-5 *2 (-766)) (-4 *3 (-1207)) (-4 *1 (-57 *3 *4 *5))
@@ -16615,24 +16657,10 @@
((*1 *1) (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044))))
((*1 *1 *1) (-5 *1 (-1168))) ((*1 *1) (-5 *1 (-1168)))
((*1 *1) (-5 *1 (-1187))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-451)) (-4 *7 (-788)) (-4 *8 (-845))
- (-4 *3 (-1058 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-639 *4))
- (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))))
- (-5 *1 (-1062 *6 *7 *8 *3 *4)) (-4 *4 (-1064 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-639 *4))
- (|:| |todo| (-639 (-2 (|:| |val| (-639 *3)) (|:| -1495 *4))))))
- (-5 *1 (-1137 *5 *6 *7 *3 *4)) (-4 *4 (-1101 *5 *6 *7 *3)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-639 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-1102)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-947 *5)) (-4 *5 (-1044)) (-5 *2 (-480 *4 *5))
+ (-5 *1 (-939 *4 *5)) (-14 *4 (-639 (-1168))))))
+(((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
(((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-766)) (-4 *1 (-735 *4 *5)) (-4 *4 (-1044))
(-4 *5 (-845)) (-5 *2 (-947 *4))))
@@ -16646,17 +16674,22 @@
(-12 (-5 *3 (-766)) (-4 *1 (-1247 *4)) (-4 *4 (-1044))
(-5 *2 (-947 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-639 (-947 *4))) (-4 *4 (-451)) (-5 *2 (-112))
- (-5 *1 (-359 *4 *5)) (-14 *5 (-639 (-1168)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-775 *4 (-859 *5)))) (-4 *4 (-451))
- (-14 *5 (-639 (-1168))) (-5 *2 (-112)) (-5 *1 (-624 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
- (-5 *1 (-175 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1184 *4 *5))
- (-4 *4 (-1092)) (-4 *5 (-1092)))))
+ (-12 (-4 *4 (-27))
+ (-4 *4 (-13 (-362) (-146) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-4 *5 (-1232 *4)) (-5 *2 (-639 (-647 (-406 *5))))
+ (-5 *1 (-651 *4 *5)) (-5 *3 (-647 (-406 *5))))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-639 *6)) (-4 *6 (-845)) (-4 *4 (-362)) (-4 *5 (-788))
+ (-5 *1 (-503 *4 *5 *6 *2)) (-4 *2 (-944 *4 *5 *6))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *3 (-362)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *1 (-503 *3 *4 *5 *2)) (-4 *2 (-944 *3 *4 *5)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-362) (-843)))
+ (-5 *2 (-2 (|:| |start| *3) (|:| -2656 (-417 *3))))
+ (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1150)) (-5 *3 (-818)) (-5 *1 (-817)))))
(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-170))))
((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1257))))
((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-1258)))))
@@ -16680,46 +16713,34 @@
(-4 *4 (-1092))))
((*1 *1) (-12 (-4 *1 (-987 *2)) (-4 *2 (-544)) (-4 *2 (-554)))))
(((*1 *1 *2 *2 *1) (-12 (-5 *1 (-641 *2)) (-4 *2 (-1092)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-639 (-293 *4))) (-5 *1 (-623 *3 *4 *5)) (-4 *3 (-845))
- (-4 *4 (-13 (-171) (-712 (-406 (-562))))) (-14 *5 (-916)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| -3931 *1) (|:| -4389 *1) (|:| |associate| *1)))
- (-4 *1 (-554)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-516)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-5 *2 (-766)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-416 *4)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-639 (-2 (|:| -2320 *3) (|:| -2694 *4))))
+ (-12 (-5 *2 (-639 (-2 (|:| -2319 *3) (|:| -2693 *4))))
(-4 *3 (-1092)) (-4 *4 (-1092)) (-4 *1 (-1183 *3 *4))))
((*1 *1) (-12 (-4 *1 (-1183 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
-(((*1 *1) (-5 *1 (-436))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-857)) (-5 *1 (-389 *3 *4 *5)) (-14 *3 (-766))
- (-14 *4 (-766)) (-4 *5 (-171)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-650 *3)) (-4 *3 (-1044)) (-4 *3 (-362))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-766)) (-5 *4 (-1 *5 *5)) (-4 *5 (-362))
- (-5 *1 (-653 *5 *2)) (-4 *2 (-650 *5)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-362)) (-5 *1 (-284 *3 *2)) (-4 *2 (-1247 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-857)) (-5 *2 (-1261)) (-5 *1 (-1130))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-639 (-857))) (-5 *2 (-1261)) (-5 *1 (-1130)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1606 *3)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362))
- (-4 *7 (-1232 (-406 *6)))
- (-5 *2 (-2 (|:| |answer| *3) (|:| -3288 *3)))
- (-5 *1 (-560 *5 *6 *7 *3)) (-4 *3 (-341 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362))
- (-5 *2
- (-2 (|:| |answer| (-406 *6)) (|:| -3288 (-406 *6))
- (|:| |specpart| (-406 *6)) (|:| |polypart| *6)))
- (-5 *1 (-561 *5 *6)) (-5 *3 (-406 *6)))))
+ (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1092)) (-4 *4 (-1092))
+ (-4 *6 (-1092)) (-5 *2 (-1 *6 *5)) (-5 *1 (-678 *5 *4 *6)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-971 *4 *5 *6 *3)) (-4 *4 (-1044)) (-4 *5 (-788))
+ (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6)) (-4 *4 (-554))
+ (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
+(((*1 *1 *1) (-12 (-5 *1 (-293 *2)) (-4 *2 (-21)) (-4 *2 (-1207)))))
+(((*1 *2 *3) (-12 (-5 *3 (-938 *2)) (-5 *1 (-977 *2)) (-4 *2 (-1044)))))
+(((*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-133)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4))))
+ ((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
+ (-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-112)))))
+(((*1 *2 *1 *3 *2)
+ (-12 (-5 *3 (-766)) (-5 *1 (-212 *4 *2)) (-14 *4 (-916))
+ (-4 *2 (-1092)))))
(((*1 *1 *1) (-12 (-5 *1 (-671 *2)) (-4 *2 (-845))))
((*1 *1 *1) (-12 (-5 *1 (-814 *2)) (-4 *2 (-845))))
((*1 *1 *1) (-12 (-5 *1 (-888 *2)) (-4 *2 (-845))))
@@ -16828,49 +16849,68 @@
((*1 *2 *1 *3)
(-12 (-4 *1 (-1234 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-787))
(|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1148 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1156 *2 *3)) (-14 *2 (-916)) (-4 *3 (-1044)))))
-(((*1 *2 *1 *3 *2)
- (-12 (-5 *3 (-766)) (-5 *1 (-212 *4 *2)) (-14 *4 (-916))
- (-4 *2 (-1092)))))
-(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-639 (-1022 *5 *6 *7 *3))) (-5 *1 (-1022 *5 *6 *7 *3))
- (-4 *3 (-1058 *5 *6 *7))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-639 *6)) (-4 *1 (-1064 *3 *4 *5 *6)) (-4 *3 (-451))
- (-4 *4 (-788)) (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-1064 *3 *4 *5 *2)) (-4 *3 (-451)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5))))
- ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-5 *2 (-639 (-1138 *5 *6 *7 *3))) (-5 *1 (-1138 *5 *6 *7 *3))
- (-4 *3 (-1058 *5 *6 *7)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *2 (-1058 *4 *5 *6)) (-5 *1 (-771 *4 *5 *6 *2 *3))
- (-4 *3 (-1064 *4 *5 *6 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-639 (-1164 *7))) (-5 *3 (-1164 *7))
+ (-4 *7 (-944 *5 *6 *4)) (-4 *5 (-904)) (-4 *6 (-788))
+ (-4 *4 (-845)) (-5 *1 (-901 *5 *6 *4 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1164 *1)) (-5 *4 (-1168)) (-4 *1 (-27))
+ (-5 *2 (-639 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1164 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-947 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-639 *1))
+ (-4 *1 (-29 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-845) (-554))) (-5 *2 (-639 *1)) (-4 *1 (-29 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-246 *4 *5)) (-14 *4 (-639 (-1168))) (-4 *5 (-451))
+ (-5 *2 (-480 *4 *5)) (-5 *1 (-627 *4 *5)))))
+(((*1 *2)
+ (-12 (-5 *2 (-406 (-947 *3))) (-5 *1 (-452 *3 *4 *5 *6))
+ (-4 *3 (-554)) (-4 *3 (-171)) (-14 *4 (-916))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-1256 (-683 *3))))))
(((*1 *2 *3)
(-12 (-4 *4 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
(-5 *2 (-639 *4)) (-5 *1 (-1120 *3 *4)) (-4 *3 (-1232 *4))))
((*1 *2 *3 *3)
(-12 (-4 *3 (-13 (-362) (-10 -8 (-15 ** ($ $ (-406 (-562)))))))
(-5 *2 (-639 *3)) (-5 *1 (-1120 *4 *3)) (-4 *4 (-1232 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1184 *3 *4)) (-4 *3 (-1092))
- (-4 *4 (-1092)))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-845)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *3 *4 *4 *5 *3 *6)
+ (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-639 *3)) (-5 *6 (-1164 *3))
+ (-4 *3 (-13 (-429 *7) (-27) (-1192)))
+ (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-558 *7 *3 *8)) (-4 *8 (-1092))))
+ ((*1 *2 *3 *4 *4 *5 *4 *3 *6)
+ (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-639 *3))
+ (-5 *6 (-406 (-1164 *3))) (-4 *3 (-13 (-429 *7) (-27) (-1192)))
+ (-4 *7 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-558 *7 *3 *8)) (-4 *8 (-1092)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1092)) (-4 *5 (-1092))
- (-4 *6 (-1092)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-678 *4 *5 *6)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-642 *3)) (-4 *3 (-1044))
- (-5 *1 (-709 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1044)) (-5 *1 (-831 *3)))))
+ (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348))
+ (-4 *2
+ (-13 (-401)
+ (-10 -7 (-15 -4053 (*2 *4)) (-15 -3549 ((-916) *2))
+ (-15 -4291 ((-1256 *2) (-916))) (-15 -4144 (*2 *2)))))
+ (-5 *1 (-355 *2 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-683 *5))) (-5 *4 (-1256 *5)) (-4 *5 (-306))
+ (-4 *5 (-1044)) (-5 *2 (-683 *5)) (-5 *1 (-1024 *5)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1005 *3)) (-4 *3 (-1207)) (-5 *2 (-562)))))
+(((*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
(((*1 *2 *1)
(-12 (-4 *1 (-600 *3 *2)) (-4 *3 (-1092)) (-4 *3 (-845))
(-4 *2 (-1207))))
@@ -16896,54 +16936,37 @@
((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-562)) (-4 *1 (-1047 *4 *5 *2 *6 *7))
(-4 *6 (-237 *5 *2)) (-4 *7 (-237 *4 *2)) (-4 *2 (-1044)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2835 *4)))
- (-5 *1 (-964 *4 *3)) (-4 *3 (-1232 *4)))))
+(((*1 *2) (-12 (-5 *2 (-639 (-1150))) (-5 *1 (-1259)))))
(((*1 *1 *2 *2) (-12 (-4 *1 (-165 *2)) (-4 *2 (-171)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-639 (-887 *3))) (-5 *1 (-887 *3))
- (-4 *3 (-1092)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1239 *3 *4)) (-4 *3 (-1044)) (-4 *4 (-1216 *3))
+ (-5 *2 (-406 (-562))))))
(((*1 *2 *2) (-12 (-5 *1 (-676 *2)) (-4 *2 (-1092)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-777 *2)) (-4 *2 (-1044))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)))))
-(((*1 *2 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *3 *4 *4 *5 *5 *3 *4 *4
- *4 *6 *4)
- (-12 (-5 *4 (-562)) (-5 *5 (-683 (-224))) (-5 *6 (-669 (-224)))
- (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-745)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-639 *3)) (-4 *3 (-944 *4 *6 *5)) (-4 *4 (-451))
- (-4 *5 (-845)) (-4 *6 (-788)) (-5 *1 (-982 *4 *5 *6 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-448 *4 *5 *6 *2)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1058 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-788))
- (-4 *4 (-845)) (-4 *2 (-451)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1211)) (-4 *5 (-1232 *4))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
+ ((*1 *2) (-12 (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1164 *9)) (-5 *4 (-639 *7)) (-5 *5 (-639 *8))
+ (-4 *7 (-845)) (-4 *8 (-1044)) (-4 *9 (-944 *8 *6 *7))
+ (-4 *6 (-788)) (-5 *2 (-1164 *8)) (-5 *1 (-320 *6 *7 *8 *9)))))
+(((*1 *2 *3) (-12 (-5 *3 (-224)) (-5 *2 (-406 (-562))) (-5 *1 (-304)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-429 *4)) (-5 *1 (-157 *4 *2))
+ (-4 *4 (-13 (-845) (-554))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451))
+ (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *1 (-972 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-916))
(-5 *2
- (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-406 *5))
- (|:| |c2| (-406 *5)) (|:| |deg| (-766))))
- (-5 *1 (-147 *4 *5 *3)) (-4 *3 (-1232 (-406 *5))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-983 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-788))
- (-4 *5 (-845)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-112))
- (-5 *1 (-1099 *4 *5 *6 *7 *8)) (-4 *8 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1200 *3 *4 *5 *6)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *6 (-1058 *3 *4 *5)) (-5 *2 (-112)))))
+ (-3 (-1164 *4)
+ (-1256 (-639 (-2 (|:| -2533 *4) (|:| -2464 (-1112)))))))
+ (-5 *1 (-345 *4)) (-4 *4 (-348)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-639 (-938 (-224)))))
+ (-5 *2 (-639 (-1086 (-224)))) (-5 *1 (-923)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-639 (-1168))) (-5 *3 (-1168)) (-5 *1 (-535))))
((*1 *2 *3 *2)
@@ -16971,37 +16994,29 @@
(-4 *3 (-1232 *2))))
((*1 *2 *1 *3)
(-12 (-4 *1 (-1234 *2 *3)) (-4 *3 (-787))
- (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -4054 (*2 (-1168))))
+ (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -4053 (*2 (-1168))))
(-4 *2 (-1044)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-788)) (-4 *6 (-845)) (-4 *7 (-554))
- (-4 *3 (-944 *7 *5 *6))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1092)) (-4 *6 (-1092))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-678 *4 *5 *6)) (-4 *4 (-1092)))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *4 (-224))
(-5 *2
- (-2 (|:| -1960 (-766)) (|:| -4221 *3) (|:| |radicand| (-639 *3))))
- (-5 *1 (-948 *5 *6 *7 *3 *8)) (-5 *4 (-766))
- (-4 *8
- (-13 (-362)
- (-10 -8 (-15 -4054 ($ *3)) (-15 -4065 (*3 $)) (-15 -4076 (*3 $))))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1164 *1)) (-5 *4 (-1168)) (-4 *1 (-27))
- (-5 *2 (-639 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1164 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-947 *1)) (-4 *1 (-27)) (-5 *2 (-639 *1))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *2 (-639 *1))
- (-4 *1 (-29 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *2 (-639 *1)) (-4 *1 (-29 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-315 (-224))) (-5 *4 (-639 (-1168)))
- (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-1148 (-224))) (-5 *1 (-299)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-766)) (-4 *5 (-1044)) (-4 *2 (-1232 *5))
- (-5 *1 (-1250 *5 *2 *6 *3)) (-4 *6 (-650 *2)) (-4 *3 (-1247 *5)))))
+ (-2 (|:| |brans| (-639 (-639 (-938 *4))))
+ (|:| |xValues| (-1086 *4)) (|:| |yValues| (-1086 *4))))
+ (-5 *1 (-152)) (-5 *3 (-639 (-639 (-938 *4)))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-766)) (-4 *1 (-1273 *3 *4)) (-4 *3 (-845))
+ (-4 *4 (-1044)) (-4 *4 (-171))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1273 *2 *3)) (-4 *2 (-845)) (-4 *3 (-1044))
+ (-4 *3 (-171)))))
+(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171))))
+ ((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-171)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3729 (-639 (-224)))))
+ (-2 (|:| |lfn| (-639 (-315 (-224)))) (|:| -3730 (-639 (-224)))))
(-5 *2 (-639 (-1168))) (-5 *1 (-266))))
((*1 *2 *3)
(-12 (-5 *3 (-1164 *7)) (-4 *7 (-944 *6 *4 *5)) (-4 *4 (-788))
@@ -17023,7 +17038,7 @@
(-5 *1 (-945 *4 *5 *6 *7 *3))
(-4 *3
(-13 (-362)
- (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $)))))))
+ (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $)))))))
((*1 *2 *1)
(-12 (-5 *2 (-1094 (-1168))) (-5 *1 (-961 *3)) (-4 *3 (-962))))
((*1 *2 *1)
@@ -17035,42 +17050,32 @@
((*1 *2 *3)
(-12 (-5 *3 (-406 (-947 *4))) (-4 *4 (-554)) (-5 *2 (-639 (-1168)))
(-5 *1 (-1038 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-766)) (-5 *2 (-683 (-947 *4))) (-5 *1 (-1023 *4))
- (-4 *4 (-1044)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 *5)) (-4 *5 (-362))
- (-4 *5 (-554)) (-5 *2 (-1256 *5)) (-5 *1 (-634 *5 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1256 *4)) (-4 *4 (-635 *5))
- (-2236 (-4 *5 (-362))) (-4 *5 (-554)) (-5 *2 (-1256 (-406 *5)))
- (-5 *1 (-634 *5 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-372 *3)) (-4 *3 (-1207)) (-4 *3 (-845)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-372 *4)) (-4 *4 (-1207))
- (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-816)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-135 *2 *3 *4)) (-14 *2 (-562)) (-14 *3 (-766))
- (-4 *4 (-171))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1168)) (-4 *4 (-13 (-845) (-554))) (-5 *1 (-157 *4 *2))
- (-4 *2 (-429 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1084 *2)) (-4 *2 (-429 *4)) (-4 *4 (-13 (-845) (-554)))
- (-5 *1 (-157 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1084 *1)) (-4 *1 (-159))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-159)) (-5 *2 (-1168))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-464 *2 *3)) (-4 *2 (-171)) (-4 *3 (-23))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-5 *1 (-1276 *3 *4)) (-4 *3 (-845))
- (-4 *4 (-171)))))
-(((*1 *2)
- (-12 (-4 *4 (-171)) (-5 *2 (-112)) (-5 *1 (-365 *3 *4))
- (-4 *3 (-366 *4))))
- ((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-362) (-146) (-1033 (-562))))
+ (-4 *5 (-1232 *4)) (-5 *2 (-639 (-406 *5))) (-5 *1 (-1011 *4 *5))
+ (-5 *3 (-406 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-451)) (-4 *3 (-845)) (-4 *3 (-1033 (-562)))
+ (-4 *3 (-554)) (-5 *1 (-41 *3 *2)) (-4 *2 (-429 *3))
+ (-4 *2
+ (-13 (-362) (-301)
+ (-10 -8 (-15 -4063 ((-1117 *3 (-608 $)) $))
+ (-15 -4079 ((-1117 *3 (-608 $)) $))
+ (-15 -4053 ($ (-1117 *3 (-608 $))))))))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12
+ (-4 *4 (-13 (-146) (-27) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-4 *5 (-1232 *4)) (-5 *2 (-1164 (-406 *5))) (-5 *1 (-611 *4 *5))
+ (-5 *3 (-406 *5))))
+ ((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-417 *6) *6)) (-4 *6 (-1232 *5))
+ (-4 *5 (-13 (-146) (-27) (-1033 (-562)) (-1033 (-406 (-562)))))
+ (-5 *2 (-1164 (-406 *6))) (-5 *1 (-611 *5 *6)) (-5 *3 (-406 *6)))))
+(((*1 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259))))
+ ((*1 *2 *2) (-12 (-5 *2 (-916)) (-5 *1 (-1259)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-938 *3)) (-4 *3 (-13 (-362) (-1192) (-997)))
+ (-5 *1 (-175 *3)))))
(((*1 *1 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-1207)) (-4 *2 (-845))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-372 *3)) (-4 *3 (-1207))))
@@ -17079,26 +17084,29 @@
((*1 *2 *1 *3)
(-12 (-4 *4 (-1044)) (-4 *5 (-788)) (-4 *3 (-845))
(-4 *6 (-1058 *4 *5 *3))
- (-5 *2 (-2 (|:| |under| *1) (|:| -4014 *1) (|:| |upper| *1)))
+ (-5 *2 (-2 (|:| |under| *1) (|:| -3870 *1) (|:| |upper| *1)))
(-4 *1 (-971 *4 *5 *3 *6)))))
-(((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-306)) (-4 *6 (-372 *5)) (-4 *4 (-372 *5))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3928 (-639 *4))))
- (-5 *1 (-1116 *5 *6 *4 *3)) (-4 *3 (-681 *5 *6 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-335 *5 *6 *7 *8)) (-4 *5 (-429 *4)) (-4 *6 (-1232 *5))
- (-4 *7 (-1232 (-406 *6))) (-4 *8 (-341 *5 *6 *7))
- (-4 *4 (-13 (-845) (-554) (-1033 (-562)))) (-5 *2 (-112))
- (-5 *1 (-906 *4 *5 *6 *7 *8))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-909 *3)) (-4 *3 (-306)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4404)) (-4 *1 (-1244 *2)) (-4 *2 (-1207)))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-584 *2)) (-4 *2 (-544)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-112)) (-5 *5 (-562)) (-4 *6 (-362)) (-4 *6 (-367))
+ (-4 *6 (-1044)) (-5 *2 (-639 (-639 (-683 *6)))) (-5 *1 (-1024 *6))
+ (-5 *3 (-639 (-683 *6)))))
((*1 *2 *3)
- (-12 (-5 *3 (-335 (-406 (-562)) *4 *5 *6))
- (-4 *4 (-1232 (-406 (-562)))) (-4 *5 (-1232 (-406 *4)))
- (-4 *6 (-341 (-406 (-562)) *4 *5)) (-5 *2 (-112))
- (-5 *1 (-907 *4 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857))))
- ((*1 *1 *1 *1) (-5 *1 (-857))))
+ (-12 (-4 *4 (-362)) (-4 *4 (-367)) (-4 *4 (-1044))
+ (-5 *2 (-639 (-639 (-683 *4)))) (-5 *1 (-1024 *4))
+ (-5 *3 (-639 (-683 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-362)) (-4 *5 (-367)) (-4 *5 (-1044))
+ (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5))
+ (-5 *3 (-639 (-683 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-916)) (-4 *5 (-362)) (-4 *5 (-367)) (-4 *5 (-1044))
+ (-5 *2 (-639 (-639 (-683 *5)))) (-5 *1 (-1024 *5))
+ (-5 *3 (-639 (-683 *5))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1112)) (-5 *2 (-112)) (-5 *1 (-816)))))
(((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1164 (-406 (-1164 *2)))) (-5 *4 (-608 *2))
(-4 *2 (-13 (-429 *5) (-27) (-1192)))
@@ -17115,36 +17123,52 @@
(-4 *6 (-1044))
(-4 *2
(-13 (-362)
- (-10 -8 (-15 -4054 ($ *7)) (-15 -4065 (*7 $)) (-15 -4076 (*7 $)))))
+ (-10 -8 (-15 -4053 ($ *7)) (-15 -4063 (*7 $)) (-15 -4079 (*7 $)))))
(-5 *1 (-945 *5 *4 *6 *7 *2)) (-4 *7 (-944 *6 *5 *4))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-406 (-1164 (-406 (-947 *5))))) (-5 *4 (-1168))
(-5 *2 (-406 (-947 *5))) (-5 *1 (-1038 *5)) (-4 *5 (-554)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-781)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1256 (-639 (-2 (|:| -2533 *4) (|:| -2464 (-1112))))))
+ (-4 *4 (-348)) (-5 *2 (-1261)) (-5 *1 (-527 *4)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1148 (-2 (|:| |k| (-562)) (|:| |c| *3))))
- (-5 *1 (-592 *3)) (-4 *3 (-1044)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-1 (-583 *3) *3 (-1168)))
- (-5 *6
- (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
- (-1168)))
- (-4 *3 (-283)) (-4 *3 (-625)) (-4 *3 (-1033 *4)) (-4 *3 (-429 *7))
- (-5 *4 (-1168)) (-4 *7 (-610 (-887 (-562)))) (-4 *7 (-451))
- (-4 *7 (-881 (-562))) (-4 *7 (-845)) (-5 *2 (-583 *3))
- (-5 *1 (-571 *7 *3)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-975 *2)) (-4 *2 (-1044))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-938 (-224))) (-5 *1 (-1203))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1254 *2)) (-4 *2 (-1207)) (-4 *2 (-1044)))))
+ (-12 (-4 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-362)) (-4 *4 (-1232 *3))
+ (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5))
+ (-5 *2 (-412 *4 (-406 *4) *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1256 *6)) (-4 *6 (-13 (-408 *4 *5) (-1033 *4)))
+ (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-4 *3 (-306))
+ (-5 *1 (-412 *3 *4 *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-362))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1148 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
(((*1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-329)))))
-(((*1 *2 *2 *2 *3 *3)
- (-12 (-5 *3 (-766)) (-4 *4 (-1044)) (-5 *1 (-1228 *4 *2))
- (-4 *2 (-1232 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-639 *1)) (-4 *1 (-301))))
- ((*1 *1 *1) (-4 *1 (-301)))
- ((*1 *1 *2) (-12 (-5 *2 (-639 (-857))) (-5 *1 (-857))))
- ((*1 *1 *1) (-5 *1 (-857))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-1282 *5 *6 *7))
+ (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-947 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2 (-639 (-1041 *5 *6))) (-5 *1 (-1282 *5 *6 *7))
+ (-14 *6 (-639 (-1168))) (-14 *7 (-639 (-1168)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-947 *4)))
+ (-4 *4 (-13 (-843) (-306) (-146) (-1017)))
+ (-5 *2 (-639 (-1041 *4 *5))) (-5 *1 (-1282 *4 *5 *6))
+ (-14 *5 (-639 (-1168))) (-14 *6 (-639 (-1168))))))
+(((*1 *2 *3 *4 *4 *5)
+ (|partial| -12 (-5 *4 (-608 *3)) (-5 *5 (-639 *3))
+ (-4 *3 (-13 (-429 *6) (-27) (-1192)))
+ (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-639 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-564 *6 *3 *7)) (-4 *7 (-1092)))))
(((*1 *2)
(-12 (-14 *4 *2) (-4 *5 (-1207)) (-5 *2 (-766))
(-5 *1 (-236 *3 *4 *5)) (-4 *3 (-237 *4 *5))))
@@ -17171,13 +17195,16 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-843) (-362))) (-5 *1 (-1054 *2 *3))
(-4 *3 (-1232 *2)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-253 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
- (-12 (-5 *6 (-639 (-112))) (-5 *7 (-683 (-224)))
- (-5 *8 (-683 (-562))) (-5 *3 (-562)) (-5 *4 (-224)) (-5 *5 (-112))
- (-5 *2 (-1030)) (-5 *1 (-749)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-715)) (-5 *2 (-916))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-717)) (-5 *2 (-766)))))
+(((*1 *2 *3 *4 *5 *3 *6 *3)
+ (-12 (-5 *3 (-562)) (-5 *5 (-168 (-224))) (-5 *6 (-1150))
+ (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *1 *1) (-4 *1 (-172)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-363 *2 *3)) (-4 *2 (-1092)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-279)))))
+(((*1 *1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-766)) (-4 *1 (-1058 *3 *4 *5)) (-4 *3 (-1044))
+ (-4 *4 (-788)) (-4 *5 (-845)) (-4 *3 (-554)))))
(((*1 *1 *2 *3)
(-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1044)) (-4 *3 (-787))))
((*1 *1 *2 *3)
@@ -17187,8 +17214,8 @@
(-12 (-5 *3 (-708 *5 *6 *7)) (-4 *5 (-845))
(-4 *6 (-237 (-3492 *4) (-766)))
(-14 *7
- (-1 (-112) (-2 (|:| -2466 *5) (|:| -1960 *6))
- (-2 (|:| -2466 *5) (|:| -1960 *6))))
+ (-1 (-112) (-2 (|:| -2464 *5) (|:| -1300 *6))
+ (-2 (|:| -2464 *5) (|:| -1300 *6))))
(-14 *4 (-639 (-1168))) (-4 *2 (-171))
(-5 *1 (-460 *4 *2 *5 *6 *7 *8)) (-4 *8 (-944 *2 *6 (-859 *4)))))
((*1 *1 *2 *3)
@@ -17218,54 +17245,66 @@
((*1 *1 *1 *2 *3)
(-12 (-4 *1 (-968 *4 *3 *2)) (-4 *4 (-1044)) (-4 *3 (-787))
(-4 *2 (-845)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1148 *3)) (-4 *3 (-1044)) (-5 *1 (-1152 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1248 *2 *3 *4)) (-4 *2 (-1044)) (-14 *3 (-1168))
+ (-14 *4 *2))))
+(((*1 *2 *2) (-12 (-5 *2 (-378)) (-5 *1 (-97)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-608 *4)) (-5 *1 (-607 *3 *4)) (-4 *3 (-845))
- (-4 *4 (-845)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-554)) (-5 *2 (-639 *3)) (-5 *1 (-964 *4 *3))
- (-4 *3 (-1232 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-833))) (-5 *1 (-139)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1202 *3)) (-4 *3 (-969)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *3 *3 *4 *5 *5 *5 *5 *5 *5 *6 *6 *6 *3 *3 *5
- *7 *3 *8)
- (-12 (-5 *5 (-683 (-224))) (-5 *6 (-112)) (-5 *7 (-683 (-562)))
- (-5 *8 (-3 (|:| |fn| (-387)) (|:| |fp| (-65 QPHESS))))
- (-5 *3 (-562)) (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-748)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1148 (-406 *3))) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-143)))))
+ (-12 (-5 *3 (-1256 (-315 (-224))))
+ (-5 *2
+ (-2 (|:| |additions| (-562)) (|:| |multiplications| (-562))
+ (|:| |exponentiations| (-562)) (|:| |functionCalls| (-562))))
+ (-5 *1 (-304)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-845) (-451))) (-5 *1 (-1198 *3 *2))
+ (-4 *2 (-13 (-429 *3) (-1192))))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-747)))))
+(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
+ (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224)))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-224))
+ (-5 *2 (-1030)) (-5 *1 (-750))))
+ ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
+ (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224)))
+ (-5 *6 (-3 (|:| |fn| (-387)) (|:| |fp| (-67 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-387)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-387))
+ (-5 *4 (-224)) (-5 *2 (-1030)) (-5 *1 (-750)))))
(((*1 *1) (-12 (-5 *1 (-639 *2)) (-4 *2 (-1207)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092))
- (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-562) (-562))) (-5 *1 (-360 *3)) (-4 *3 (-1092))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-766) (-766))) (-5 *1 (-385 *3)) (-4 *3 (-1092))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
+ (-5 *1 (-643 *3 *4 *5)) (-4 *3 (-1092)))))
(((*1 *1) (-5 *1 (-290))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-362) (-146) (-1033 (-562))))
- (-4 *5 (-1232 *4)) (-5 *2 (-639 (-406 *5))) (-5 *1 (-1011 *4 *5))
- (-5 *3 (-406 *5)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378)))
+ (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261))
+ (-5 *1 (-783))))
+ ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
+ (-12 (-5 *4 (-562)) (-5 *6 (-1 (-1261) (-1256 *5) (-1256 *5) (-378)))
+ (-5 *3 (-1256 (-378))) (-5 *5 (-378)) (-5 *2 (-1261))
+ (-5 *1 (-783)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-348)) (-4 *2 (-1044)) (-5 *1 (-707 *2 *3))
+ (-4 *3 (-1232 *2)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-334 *3 *4 *5 *6)) (-4 *3 (-362)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5))
- (-5 *2 (-412 *4 (-406 *4) *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1256 *6)) (-4 *6 (-13 (-408 *4 *5) (-1033 *4)))
- (-4 *4 (-987 *3)) (-4 *5 (-1232 *4)) (-4 *3 (-306))
- (-5 *1 (-412 *3 *4 *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-639 *6)) (-4 *6 (-944 *3 *4 *5)) (-4 *3 (-362))
- (-4 *4 (-788)) (-4 *5 (-845)) (-5 *1 (-503 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-792 *2)) (-4 *2 (-171)))))
-(((*1 *2)
- (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-416 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-857)))))
-(((*1 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259))))
- ((*1 *2 *2) (-12 (-5 *2 (-869)) (-5 *1 (-1259)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
- (-5 *4 (-683 (-1164 *8))) (-4 *5 (-1044)) (-4 *8 (-1044))
- (-4 *6 (-1232 *5)) (-5 *2 (-683 *6)) (-5 *1 (-500 *5 *6 *7 *8))
- (-4 *7 (-1232 *6)))))
+ (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
+(((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-766)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1257))))
+ ((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-766)) (-5 *4 (-916)) (-5 *2 (-1261)) (-5 *1 (-1258)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-467)) (-5 *3 (-639 (-262))) (-5 *1 (-1257))))
+ ((*1 *1 *1) (-5 *1 (-1257))))
(((*1 *2 *3 *4 *2)
(-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-642 *5)) (-4 *5 (-1044))
(-5 *1 (-53 *5 *2 *3)) (-4 *3 (-847 *5))))
@@ -17275,1090 +17314,1052 @@
((*1 *2 *3 *2 *2 *4 *5)
(-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1044))
(-5 *1 (-848 *2 *3)) (-4 *3 (-847 *2)))))
-(((*1 *2 *3 *2 *2)
- (-12 (-5 *2 (-639 (-480 *4 *5))) (-5 *3 (-859 *4))
- (-14 *4 (-639 (-1168))) (-4 *5 (-451)) (-5 *1 (-627 *4 *5)))))
-(((*1 *1) (-5 *1 (-1056))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -1545 (-683 (-406 (-947 *4))))
- (|:| |vec| (-639 (-406 (-947 *4)))) (|:| -2173 (-766))
- (|:| |rows| (-639 (-562))) (|:| |cols| (-639 (-562)))))
- (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
- (-4 *6 (-788))
- (-5 *2
- (-2 (|:| |partsol| (-1256 (-406 (-947 *4))))
- (|:| -3928 (-639 (-1256 (-406 (-947 *4)))))))
- (-5 *1 (-919 *4 *5 *6 *7)) (-4 *7 (-944 *4 *6 *5)))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-562)) (-5 *1 (-1181 *2)) (-4 *2 (-362)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-817)))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-639 (-639 (-224)))) (-5 *4 (-224))
- (-5 *2 (-639 (-938 *4))) (-5 *1 (-1203)) (-5 *3 (-938 *4)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-5 *1 (-173 *3)) (-4 *3 (-306))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-562)) (-4 *1 (-668 *3)) (-4 *3 (-1207))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-766)) (-4 *1 (-735 *3 *4)) (-4 *3 (-1044))
- (-4 *4 (-845))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-864 *3)) (-5 *2 (-562))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-639 *3)) (-4 *1 (-975 *3)) (-4 *3 (-1044))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-639 *1)) (-5 *3 (-639 *7)) (-4 *1 (-1064 *4 *5 *6 *7))
- (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *7 (-1058 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-639 *7)) (-4 *7 (-1058 *4 *5 *6)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-5 *2 (-639 *1))
- (-4 *1 (-1064 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-639 *1)) (-4 *1 (-1064 *4 *5 *6 *3)) (-4 *4 (-451))
- (-4 *5 (-788)) (-4 *6 (-845)) (-4 *3 (-1058 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-451)) (-4 *5 (-788)) (-4 *6 (-845))
- (-4 *3 (-1058 *4 *5 *6)) (-5 *2 (-639 *1))
- (-4 *1 (-1064 *4 *5 *6 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1200 *3 *4 *5 *2)) (-4 *3 (-554)) (-4 *4 (-788))
- (-4 *5 (-845)) (-4 *2 (-1058 *3 *4 *5))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5))
- (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
- (-5 *1 (-1269 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-639 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1058 *5 *6 *7)) (-4 *5 (-554))
- (-4 *6 (-788)) (-4 *7 (-845)) (-5 *1 (-1269 *5 *6 *7 *8)))))
-(((*1 *1 *1) (-4 *1 (-142)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-157 *3 *2))
- (-4 *2 (-429 *3))))
- ((*1 *2 *2) (-12 (-5 *1 (-158 *2)) (-4 *2 (-544)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-451)) (-4 *6 (-788)) (-4 *7 (-845))
- (-4 *3 (-1058 *5 *6 *7))
- (-5 *2 (-639 (-2 (|:| |val| (-112)) (|:| -1495 *4))))
- (-5 *1 (-1100 *5 *6 *7 *3 *4)) (-4 *4 (-1064 *5 *6 *7 *3)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-916)) (-5 *2 (-1261)) (-5 *1 (-213 *4))
+ (-4 *4
+ (-13 (-845)
+ (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 (*2 $))
+ (-15 -1359 (*2 $)))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1261)) (-5 *1 (-213 *3))
+ (-4 *3
+ (-13 (-845)
+ (-10 -8 (-15 -2343 ((-1150) $ (-1168))) (-15 -1479 (*2 $))
+ (-15 -1359 (*2 $)))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1261)) (-5 *1 (-501)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-916)) (-5 *4 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1257)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-1168))
+ (-4 *4 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-618 *4 *2)) (-4 *2 (-13 (-1192) (-954) (-29 *4))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451))
+ (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *1 (-972 *3 *4 *5 *6)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-750)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
+ (-5 *1 (-750)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-847 *2)) (-4 *2 (-1044)) (-4 *2 (-362)))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-766)) (-4 *5 (-362)) (-5 *2 (-406 *6))
+ (-5 *1 (-862 *5 *4 *6)) (-4 *4 (-1247 *5)) (-4 *6 (-1232 *5))))
+ ((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-766)) (-5 *4 (-1248 *5 *6 *7)) (-4 *5 (-362))
+ (-14 *6 (-1168)) (-14 *7 *5) (-5 *2 (-406 (-1229 *6 *5)))
+ (-5 *1 (-863 *5 *6 *7))))
+ ((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-766)) (-5 *4 (-1248 *5 *6 *7)) (-4 *5 (-362))
+ (-14 *6 (-1168)) (-14 *7 *5) (-5 *2 (-406 (-1229 *6 *5)))
+ (-5 *1 (-863 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-529 *3)) (-4 *3 (-13 (-721) (-25))))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-683 *3)) (-4 *3 (-1044)) (-5 *1 (-684 *3)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-562)) (-4 *6 (-788)) (-4 *7 (-845)) (-4 *8 (-306))
- (-4 *9 (-944 *8 *6 *7))
- (-5 *2 (-2 (|:| -4380 (-1164 *9)) (|:| |polval| (-1164 *8))))
- (-5 *1 (-737 *6 *7 *8 *9)) (-5 *3 (-1164 *9)) (-5 *4 (-1164 *8)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-639 *5)) (-4 *5 (-429 *4)) (-4 *4 (-13 (-845) (-554)))
- (-5 *2 (-857)) (-5 *1 (-32 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-683 (-406 (-947 (-562)))))
- (-5 *2
- (-639
- (-2 (|:| |radval| (-315 (-562))) (|:| |radmult| (-562))
- (|:| |radvect| (-639 (-683 (-315 (-562))))))))
- (-5 *1 (-1026)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-828 *3)) (-4 *3 (-1092))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-838 *3)) (-4 *3 (-1092)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-639 (-766))) (-5 *3 (-112)) (-5 *1 (-1156 *4 *5))
- (-14 *4 (-916)) (-4 *5 (-1044)))))
-(((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-817)))))
-(((*1 *1 *1) (-5 *1 (-1056))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| -1588 (-406 (-562))) (|:| -1602 (-406 (-562)))))
- (-5 *2 (-406 (-562))) (-5 *1 (-1015 *4)) (-4 *4 (-1232 (-562))))))
+(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1223 (-562))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-639 *2)) (-4 *2 (-944 *4 *5 *6)) (-4 *4 (-451))
+ (-4 *5 (-788)) (-4 *6 (-845)) (-5 *1 (-448 *4 *5 *6 *2)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-1092)) (-5 *1 (-995 *3)))))
+(((*1 *1 *1) (-12 (-5 *1 (-173 *2)) (-4 *2 (-306))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562))))
+ ((*1 *1 *1) (-12 (-4 *1 (-668 *2)) (-4 *2 (-1207))))
+ ((*1 *1 *1) (-4 *1 (-864 *2)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-968 *2 *3 *4)) (-4 *2 (-1044)) (-4 *3 (-787))
+ (-4 *4 (-845)))))
+(((*1 *1) (-5 *1 (-436))))
+(((*1 *2 *3 *4 *4 *2 *2 *2)
+ (-12 (-5 *2 (-562))
+ (-5 *3
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-766)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-788)) (-4 *4 (-944 *5 *6 *7)) (-4 *5 (-451)) (-4 *7 (-845))
+ (-5 *1 (-448 *5 *6 *7 *4)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4)
+ (-12 (-5 *3 (-683 (-224))) (-5 *4 (-562)) (-5 *2 (-1030))
+ (-5 *1 (-751)))))
+(((*1 *2 *3 *4 *4 *3 *5)
+ (-12 (-5 *4 (-608 *3)) (-5 *5 (-1164 *3))
+ (-4 *3 (-13 (-429 *6) (-27) (-1192)))
+ (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *2 (-583 *3)) (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092))))
+ ((*1 *2 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *4 (-608 *3)) (-5 *5 (-406 (-1164 *3)))
+ (-4 *3 (-13 (-429 *6) (-27) (-1192)))
+ (-4 *6 (-13 (-451) (-1033 (-562)) (-845) (-146) (-635 (-562))))
+ (-5 *2 (-583 *3)) (-5 *1 (-558 *6 *3 *7)) (-4 *7 (-1092)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-639 *2)) (-4 *2 (-1092)) (-4 *2 (-1207)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *4 (-362)) (-5 *2 (-639 (-1148 *4))) (-5 *1 (-284 *4 *5))
- (-5 *3 (-1148 *4)) (-4 *5 (-1247 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-1184 *4 *5))
- (-4 *4 (-1092)) (-4 *5 (-1092)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -2835 *3) (|:| |coef1| (-777 *3)) (|:| |coef2| (-777 *3))))
- (-5 *1 (-777 *3)) (-4 *3 (-554)) (-4 *3 (-1044)))))
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-1170 (-406 (-562))))
+ (-5 *1 (-189)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-435)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1148 *4)) (-5 *3 (-562)) (-4 *4 (-1044))
+ (-5 *1 (-1152 *4))))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-562)) (-5 *1 (-1248 *3 *4 *5)) (-4 *3 (-1044))
+ (-14 *4 (-1168)) (-14 *5 *3))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-877 *2)) (-4 *2 (-1207)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-562)) (|has| *1 (-6 -4404)) (-4 *1 (-1244 *3))
+ (-4 *3 (-1207)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-4 *5 (-1211)) (-4 *6 (-1232 *5))
- (-4 *7 (-1232 (-406 *6))) (-5 *2 (-639 (-947 *5)))
- (-5 *1 (-340 *4 *5 *6 *7)) (-4 *4 (-341 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-4 *1 (-341 *4 *5 *6)) (-4 *4 (-1211))
- (-4 *5 (-1232 *4)) (-4 *6 (-1232 (-406 *5))) (-4 *4 (-362))
- (-5 *2 (-639 (-947 *4))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-681 *3 *4 *5)) (-4 *3 (-1044)) (-4 *4 (-372 *3))
- (-4 *5 (-372 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1047 *3 *4 *5 *6 *7)) (-4 *5 (-1044))
- (-4 *6 (-237 *4 *5)) (-4 *7 (-237 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-4 *6 (-1232 *9)) (-4 *7 (-788)) (-4 *8 (-845)) (-4 *9 (-306))
- (-4 *10 (-944 *9 *7 *8))
- (-5 *2
- (-2 (|:| |deter| (-639 (-1164 *10)))
- (|:| |dterm|
- (-639 (-639 (-2 (|:| -2734 (-766)) (|:| |pcoef| *10)))))
- (|:| |nfacts| (-639 *6)) (|:| |nlead| (-639 *10))))
- (-5 *1 (-773 *6 *7 *8 *9 *10)) (-5 *3 (-1164 *10)) (-5 *4 (-639 *6))
- (-5 *5 (-639 *10)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-112))
- (-4 *6 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-4 *3 (-13 (-27) (-1192) (-429 *6) (-10 -8 (-15 -4054 ($ *7)))))
- (-4 *7 (-843))
- (-4 *8
- (-13 (-1234 *3 *7) (-362) (-1192)
- (-10 -8 (-15 -4029 ($ $)) (-15 -2667 ($ $)))))
- (-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1150)) (|:| |prob| (-1150))))))
- (-5 *1 (-421 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1150)) (-4 *9 (-978 *8))
- (-14 *10 (-1168)))))
+ (-12 (-4 *4 (-362)) (-5 *2 (-639 *3)) (-5 *1 (-940 *4 *3))
+ (-4 *3 (-1232 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-406 (-947 (-168 (-562))))) (-5 *2 (-639 (-168 *4)))
+ (-5 *1 (-377 *4)) (-4 *4 (-13 (-362) (-843)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-639 (-406 (-947 (-168 (-562))))))
+ (-5 *4 (-639 (-1168))) (-5 *2 (-639 (-639 (-168 *5))))
+ (-5 *1 (-377 *5)) (-4 *5 (-13 (-362) (-843))))))
(((*1 *1 *2 *3 *4)
(-12 (-5 *2 (-1168)) (-5 *3 (-433)) (-4 *5 (-845))
(-5 *1 (-1098 *5 *4)) (-4 *4 (-429 *5)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-168 (-224))) (-5 *5 (-562)) (-5 *6 (-1150))
- (-5 *3 (-224)) (-5 *2 (-1030)) (-5 *1 (-753)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1256 *5)) (-4 *5 (-787)) (-5 *2 (-112))
- (-5 *1 (-840 *4 *5)) (-14 *4 (-766)))))
-(((*1 *1 *2 *3 *3 *3 *4)
- (-12 (-4 *4 (-362)) (-4 *3 (-1232 *4)) (-4 *5 (-1232 (-406 *3)))
- (-4 *1 (-334 *4 *3 *5 *2)) (-4 *2 (-341 *4 *3 *5))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *3 (-562)) (-4 *2 (-362)) (-4 *4 (-1232 *2))
- (-4 *5 (-1232 (-406 *4))) (-4 *1 (-334 *2 *4 *5 *6))
- (-4 *6 (-341 *2 *4 *5))))
- ((*1 *1 *2 *2)
- (-12 (-4 *2 (-362)) (-4 *3 (-1232 *2)) (-4 *4 (-1232 (-406 *3)))
- (-4 *1 (-334 *2 *3 *4 *5)) (-4 *5 (-341 *2 *3 *4))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-362)) (-4 *4 (-1232 *3)) (-4 *5 (-1232 (-406 *4)))
- (-4 *1 (-334 *3 *4 *5 *2)) (-4 *2 (-341 *3 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-412 *4 (-406 *4) *5 *6)) (-4 *4 (-1232 *3))
- (-4 *5 (-1232 (-406 *4))) (-4 *6 (-341 *3 *4 *5)) (-4 *3 (-362))
- (-4 *1 (-334 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-562))) (-5 *1 (-274)))))
-(((*1 *2 *2) (-12 (-5 *2 (-683 (-315 (-562)))) (-5 *1 (-1026)))))
-(((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *3 (-639 *8)) (-5 *4 (-639 (-887 *6)))
- (-5 *5 (-1 (-884 *6 *8) *8 (-887 *6) (-884 *6 *8))) (-4 *6 (-1092))
- (-4 *8 (-13 (-1044) (-610 (-887 *6)) (-1033 *7)))
- (-5 *2 (-884 *6 *8)) (-4 *7 (-13 (-1044) (-845)))
- (-5 *1 (-936 *6 *7 *8)))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-887 *4)) (-4 *4 (-1092)) (-5 *1 (-885 *4 *3))
- (-4 *3 (-1207))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-562)) (-5 *4 (-683 (-224))) (-5 *2 (-1030))
- (-5 *1 (-747)))))
-(((*1 *2 *1) (-12 (-4 *1 (-348)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-112))
- (-5 *1 (-356 *4)))))
-(((*1 *2) (-12 (-4 *1 (-366 *3)) (-4 *3 (-171)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
- (-4 *2 (-13 (-429 *3) (-997))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1150))
- (-4 *4 (-13 (-451) (-845) (-1033 (-562)) (-635 (-562))))
- (-5 *2 (-112)) (-5 *1 (-223 *4 *5)) (-4 *5 (-13 (-1192) (-29 *4))))))
-(((*1 *1 *2) (-12 (-5 *1 (-226 *2)) (-4 *2 (-13 (-362) (-1192))))))
+ (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-639 *7)) (|:| |badPols| (-639 *7))))
+ (-5 *1 (-972 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-554)) (-4 *5 (-788)) (-4 *6 (-845))
+ (-4 *7 (-1058 *4 *5 *6))
+ (-5 *2 (-639 (-2 (|:| -1449 *1) (|:| -3315 (-639 *7)))))
+ (-5 *3 (-639 *7)) (-4 *1 (-1200 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-962)))))
+(((*1 *2 *3) (-12 (-5 *3 (-766)) (-5 *2 (-1261)) (-5 *1 (-378))))
+ ((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-378)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-1084 (-947 (-562)))) (-5 *3 (-947 (-562)))
+ (-5 *1 (-329))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1084 (-947 (-562)))) (-5 *1 (-329)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819)))))
+(((*1 *1 *2) (-12 (-5 *2 (-639 *3)) (-4 *3 (-845)) (-5 *1 (-126 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-899 (-562))) (-5 *1 (-912))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-899 (-562))) (-5 *1 (-912)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1168))
+ (-4 *4 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))))
+ (-5 *1 (-555 *4 *2)) (-4 *2 (-13 (-27) (-1192) (-429 *4))))))
(((*1 *2 *2 *3)
(-12 (-5 *3 (-1168))
- (-4 *4 (-13 (-306) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *1 (-425 *4 *2)) (-4 *2 (-13 (-1192) (-29 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-406 (-947 *5))) (-5 *4 (-1168)) (-4 *5 (-146))
- (-4 *5 (-13 (-451) (-1033 (-562)) (-845) (-635 (-562))))
- (-5 *2 (-315 *5)) (-5 *1 (-586 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-328 *3)) (-4 *3 (-362)) (-4 *3 (-367)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1164 *4)) (-4 *4 (-348)) (-5 *2 (-112))
- (-5 *1 (-356 *4))))
+ (-4 *4 (-13 (-845) (-306) (-1033 (-562)) (-635 (-562)) (-146)))
+ (-5 *1 (-799 *4 *2)) (-4 *2 (-13 (-29 *4) (-1192) (-954)))))
+ ((*1 *1 *1 *1 *1) (-5 *1 (-857))) ((*1 *1 *1 *1) (-5 *1 (-857)))
+ ((*1 *1 *1) (-5 *1 (-857)))
((*1 *2 *3)
- (-12 (-5 *3 (-1256 *4)) (-4 *4 (-348)) (-5 *2 (-112))
- (-5 *1 (-527 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1148 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1044))
- (-5 *3 (-406 (-562))) (-5 *1 (-1152 *4)))))
+ (-12 (-5 *2 (-1148 *3)) (-5 *1 (-1152 *3)) (-4 *3 (-1044)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1232 *5)) (-4 *5 (-362))
+ (|partial| -12 (-5 *4 (-1168)) (-4 *5 (-610 (-887 (-562))))
+ (-4 *5 (-881 (-562)))
+ (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562))))
+ (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
+ (-5 *1 (-565 *5 *3)) (-4 *3 (-625))
+ (-4 *3 (-13 (-27) (-1192) (-429 *5)))))
+ ((*1 *2 *2 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-1168)) (-5 *4 (-838 *2)) (-4 *2 (-1131))
+ (-4 *2 (-13 (-27) (-1192) (-429 *5)))
+ (-4 *5 (-610 (-887 (-562)))) (-4 *5 (-881 (-562)))
+ (-4 *5 (-13 (-845) (-1033 (-562)) (-451) (-635 (-562))))
+ (-5 *1 (-565 *5 *2)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
+ (-4 *6 (-788)) (-4 *7 (-944 *4 *6 *5))
(-5 *2
- (-2 (|:| |ir| (-583 (-406 *6))) (|:| |specpart| (-406 *6))
- (|:| |polypart| *6)))
- (-5 *1 (-572 *5 *6)) (-5 *3 (-406 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |cd| (-1150)) (|:| -3254 (-1150))))
- (-5 *1 (-817)))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-639 *1)) (-4 *1 (-306)))))
-(((*1 *2) (-12 (-4 *1 (-1039 *2)) (-4 *2 (-23)))))
-(((*1 *2 *1) (-12 (-4 *1 (-552 *2)) (-4 *2 (-13 (-403) (-1192))))))
+ (-2 (|:| |sysok| (-112)) (|:| |z0| (-639 *7)) (|:| |n0| (-639 *7))))
+ (-5 *1 (-919 *4 *5 *6 *7)) (-5 *3 (-639 *7)))))
+(((*1 *2) (-12 (-5 *2 (-1139 (-1150))) (-5 *1 (-390)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-362)) (-4 *7 (-1232 *5)) (-4 *4 (-719 *5 *7))
- (-5 *2 (-2 (|:| -1545 (-683 *6)) (|:| |vec| (-1256 *5))))
- (-5 *1 (-806 *5 *6 *7 *4 *3)) (-4 *6 (-650 *5)) (-4 *3 (-650 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
-(((*1 *1 *1 *1) (-5 *1 (-857))))
-(((*1 *1 *2 *2)
- (-12 (-5 *2 (-639 (-562))) (-5 *1 (-999 *3)) (-14 *3 (-562)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1256 *1)) (-4 *1 (-366 *2)) (-4 *2 (-171))))
- ((*1 *2) (-12 (-4 *2 (-171)) (-5 *1 (-415 *3 *2)) (-4 *3 (-416 *2))))
- ((*1 *2) (-12 (-4 *1 (-416 *2)) (-4 *2 (-171)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-322 *3 *4)) (-4 *3 (-1092))
- (-4 *4 (-130))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-360 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-385 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1092)) (-5 *1 (-643 *3 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1168)) (-5 *6 (-639 (-608 *3)))
- (-5 *5 (-608 *3)) (-4 *3 (-13 (-27) (-1192) (-429 *7)))
- (-4 *7 (-13 (-451) (-845) (-146) (-1033 (-562)) (-635 (-562))))
- (-5 *2 (-2 (|:| -3860 *3) (|:| |coeff| *3)))
- (-5 *1 (-555 *7 *3)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1150)) (-5 *1 (-1188)))))
-(((*1 *2 *2) (-12 (-5 *1 (-584 *2)) (-4 *2 (-544)))))
-(((*1 *2 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1150)) (-5 *3 (-562)) (-5 *1 (-1056)))))
-(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
- (-12 (-5 *3 (-562)) (-5 *5 (-683 (-224))) (-5 *4 (-224))
- (-5 *2 (-1030)) (-5 *1 (-750)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1150)) (-5 *2 (-1261)) (-5 *1 (-435)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-1084 (-947 (-562)))) (-5 *3 (-947 (-562)))
- (-5 *1 (-329))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1084 (-947 (-562)))) (-5 *1 (-329)))))
+ (-12 (-5 *2 (-639 (-168 *4))) (-5 *1 (-154 *3 *4))
+ (-4 *3 (-1232 (-168 (-562)))) (-4 *4 (-13 (-362) (-843)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-639 (-168 *4)))
+ (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *4 (-13 (-362) (-843))) (-5 *2 (-639 (-168 *4)))
+ (-5 *1 (-180 *4 *3)) (-4 *3 (-1232 (-168 *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1256 (-683 *4))) (-4 *4 (-171))
+ (-5 *2 (-1256 (-683 (-947 *4)))) (-5 *1 (-188 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-554)) (-5 *2 (-639 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-416 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-683 (-406 (-947 (-562))))) (-5 *2 (-639 (-315 (-562))))
+ (-5 *1 (-1026)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-315 (-224))) (-5 *2 (-315 (-378))) (-5 *1 (-304)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-900 (-562))) (-5 *4 (-562)) (-5 *2 (-683 *4))
+ (-5 *1 (-1023 *5)) (-4 *5 (-1044))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-562))) (-5 *2 (-683 (-562))) (-5 *1 (-1023 *4))
+ (-4 *4 (-1044))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-639 (-900 (-562)))) (-5 *4 (-562))
+ (-5 *2 (-639 (-683 *4))) (-5 *1 (-1023 *5)) (-4 *5 (-1044))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 (-639 (-562)))) (-5 *2 (-639 (-683 (-562))))
+ (-5 *1 (-1023 *4)) (-4 *4 (-1044)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1030)) (-5 *3 (-1168)) (-5 *1 (-266)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-845) (-554))) (-5 *1 (-275 *3 *2))
(-4 *2 (-13 (-429 *3) (-997))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1168)) (-5 *3 (-378)) (-5 *1 (-1056)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-766)) (-4 *4 (-348)) (-5 *1 (-215 *4 *2))
- (-4 *2 (-1232 *4))))
- ((*1 *2 *2 *3 *2 *3)
- (-12 (-5 *3 (-562)) (-5 *1 (-690 *2)) (-4 *2 (-1232 *3)))))
-(((*1 *1 *1 *1) (-4 *1 (-544))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))))
+(((*1 *2 *3) (-12 (-5 *3 (-916)) (-5 *2 (-1150)) (-5 *1 (-781)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-978 *2)) (-4 *2 (-1192)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1256 *5)) (-4 *5 (-787)) (-5 *2 (-112))
+ (-5 *1 (-840 *4 *5)) (-14 *4 (-766)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
+ (-4 *6 (-788)) (-5 *2 (-406 (-947 *4))) (-5 *1 (-919 *4 *5 *6 *3))
+ (-4 *3 (-944 *4 *6 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-683 *7)) (-4 *7 (-944 *4 *6 *5))
+ (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
+ (-4 *6 (-788)) (-5 *2 (-683 (-406 (-947 *4))))
+ (-5 *1 (-919 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-639 *7)) (-4 *7 (-944 *4 *6 *5))
+ (-4 *4 (-13 (-306) (-146))) (-4 *5 (-13 (-845) (-610 (-1168))))
+ (-4 *6 (-788)) (-5 *2 (-639 (-406 (-947 *4))))
+ (-5 *1 (-919 *4 *5 *6 *7)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-639 (-52))) (-5 *1 (-887 *3)) (-4 *3 (-1092)))))
+(((*1 *2 *2) (-12 (-5 *2 (-315 (-224))) (-5 *1 (-266)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1150)) (-5 *1 (-114)))))
+(((*1 *1 *1) (-4 *1 (-1053)))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1234 *3 *2)) (-4 *3 (-1044)) (-4 *2 (-787)))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-429 *3) (-997))) (-5 *1 (-275 *3 *2))
+ (-4 *3 (-13 (-845) (-554))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-165 *3)) (-4 *3 (-171)) (-4 *3 (-544))
- (-5 *2 (-406 (-562)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-406 (-562))) (-5 *1 (-417 *3)) (-4 *3 (-544))
- (-4 *3 (-554))))
- ((*1 *2 *1) (-12 (-4 *1 (-544)) (-5 *2 (-406 (-562)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-792 *3)) (-4 *3 (-171)) (-4 *3 (-544))
- (-5 *2 (-406 (-562)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-406 (-562))) (-5 *1 (-828 *3)) (-4 *3 (-544))
- (-4 *3 (-1092))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-406 (-562))) (-5 *1 (-838 *3)) (-4 *3 (-544))
- (-4 *3 (-1092))))
+ (-12 (-5 *2 (-1241 *3 *4 *5)) (-5 *1 (-318 *3 *4 *5))
+ (-4 *3 (-13 (-362) (-845))) (-14 *4 (-1168)) (-14 *5 *3)))
+ ((*1 *2 *1) (-12 (-4 *1 (-403)) (-5 *2 (-562))))
+ ((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-417 *3)) (-4 *3 (-554))))
+ ((*1 *2 *1) (-12 (-5 *2 (-562)) (-5 *1 (-693))))
((*1 *2 *1)
- (-12 (-4 *1 (-992 *3)) (-4 *3 (-171)) (-4 *3 (-544))
- (-5 *2 (-406 (-562)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-406 (-562))) (-5 *1 (-1003 *3)) (-4 *3 (-1033 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-639 (-1168))) (-5 *1 (-1172)))))
+ (-12 (-4 *2 (-1092)) (-5 *1 (-708 *3 *2 *4)) (-4 *3 (-845))
+ (-14 *4
+ (-1 (-112) (-2 (|:| -2464 *3) (|:| -1300 *2))
+ (-2 (|:| -2464 *3) (|:| -1300 *2)))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-639 *6)) (-4 *6 (-1058 *3 *4 *5)) (-4 *3 (-451))
+ (-4 *3 (-554)) (-4 *4 (-788)) (-4 *5 (-845))
+ (-5 *1 (-972 *3 *4 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-766)) (-5 *1 (-129)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-224)) (-5 *4 (-562)) (-5 *2 (-1030)) (-5 *1 (-753)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1148 *3)) (-5 *1 (-173 *3)) (-4 *3 (-306)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-683 *1)) (-4 *1 (-348)) (-5 *2 (-1256 *1))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-683 *1)) (-4 *1 (-144)) (-4 *1 (-904))
- (-5 *2 (-1256 *1)))))
-((-1289 . 735379) (-1290 . 735318) (-1291 . 734605) (-1292 . 734571)
- (-1293 . 734385) (-1294 . 734308) (-1295 . 734222) (-1296 . 734115)
- (-1297 . 733947) (-1298 . 733878) (-1299 . 733747) (-1300 . 733660)
- (-1301 . 733605) (-1302 . 733541) (-1303 . 733247) (-1304 . 732877)
- (-1305 . 732682) (-1306 . 732599) (-1307 . 732565) (-1308 . 732494)
- (-1309 . 732282) (-1310 . 732213) (-1311 . 732161) (-1312 . 732093)
- (-1313 . 731999) (-1314 . 731777) (-1315 . 731654) (-1316 . 731383)
- (-1317 . 731038) (-1318 . 730969) (-1319 . 730799) (-1320 . 730692)
- (-1321 . 730625) (-1322 . 730481) (-1323 . 730353) (-1324 . 730181)
- (-1325 . 730116) (-1326 . 729836) (-1327 . 729769) (-1328 . 729710)
- (-1329 . 728952) (-1330 . 728836) (-1331 . 728698) (-1332 . 728579)
- (-1333 . 728087) (-1334 . 727678) (-1335 . 727431) (-1336 . 727079)
- (-1337 . 726917) (-1338 . 726804) (-1339 . 726674) (-1340 . 726597)
- (-1341 . 726441) (-1342 . 726409) (-1343 . 726357) (-1344 . 726233)
- (-1345 . 726093) (-1346 . 725880) (-1347 . 725754) (-1348 . 725504)
- (-1349 . 725427) (-1350 . 725033) (-1351 . 724857) (-1352 . 724481)
- (-1353 . 723283) (-1354 . 723141) (-1355 . 723088) (-1356 . 723014)
- (-1357 . 722566) (-1358 . 722537) (-1359 . 722398) (-1360 . 722007)
- (-1361 . 721778) (-1362 . 721677) (-1363 . 721625) (-1364 . 721530)
- (-1365 . 721475) (-1366 . 720997) (-1367 . 720818) (-1368 . 720790)
- (-1369 . 720679) (-1370 . 720626) (-1371 . 720574) (-1372 . 720491)
- (-1373 . 720211) (-1374 . 720137) (-1375 . 720078) (-1376 . 719975)
- (-1377 . 719879) (-1378 . 718250) (-1379 . 718142) (-1380 . 717937)
- (-1381 . 717878) (-1382 . 716874) (-1383 . 716704) (-1384 . 716596)
- (-1385 . 716543) (-1386 . 716347) (-1387 . 715970) (-1388 . 715858)
- (-1389 . 715790) (-1390 . 714924) (-1391 . 714833) (-1392 . 714399)
- (-1393 . 714188) (-1394 . 714154) (-1395 . 713723) (-1396 . 713565)
- (-1397 . 712955) (-1398 . 712902) (-1399 . 712711) (-1400 . 712392)
- (-1401 . 712290) (-1402 . 710916) (-1403 . 710771) (-1404 . 710197)
- (-1405 . 709870) (-1406 . 709194) (-1407 . 708748) (-1408 . 708106)
- (-1409 . 707873) (-1410 . 707760) (-1411 . 707674) (-1412 . 707530)
- (-1413 . 707386) (-1414 . 707179) (-1415 . 707021) (-1416 . 706965)
- (-1417 . 706866) (-1418 . 706808) (-1419 . 706658) (-1420 . 706226)
- (-1421 . 705613) (-1422 . 705431) (-1423 . 705358) (-1424 . 705215)
- (-1425 . 705157) (-1426 . 705064) (-1427 . 704773) (-1428 . 704721)
- (-1429 . 704560) (-1430 . 703900) (-1431 . 703799) (-1432 . 703721)
- (-1433 . 699723) (-1434 . 699296) (-1435 . 698845) (-1436 . 698715)
- (-1437 . 698570) (-1438 . 698488) (-1439 . 698278) (-1440 . 698165)
- (-1441 . 698137) (-1442 . 698071) (-1443 . 697869) (-1444 . 697816)
- (-1445 . 697710) (-1446 . 697558) (-1447 . 697496) (-1448 . 696846)
- (-1449 . 696728) (-1450 . 696569) (-1451 . 696453) (-1452 . 696354)
- (-1453 . 696092) (-1454 . 695666) (-1455 . 695576) (-1456 . 695016)
- (-1457 . 694928) (-1458 . 694158) (-1459 . 694059) (-1460 . 693421)
- (-1461 . 693347) (-1462 . 693229) (-1463 . 693120) (-1464 . 693027)
- (-1465 . 692976) (-1466 . 692684) (-1467 . 692543) (-1468 . 692424)
- (-1469 . 690586) (-1470 . 690477) (-1471 . 690037) (-1472 . 689947)
- (-1473 . 689722) (-1474 . 689652) (-1475 . 689053) (-1476 . 688990)
- (-1477 . 688920) (-1478 . 688860) (-1479 . 688106) (-1480 . 688007)
- (-1481 . 687936) (-1482 . 687658) (-1483 . 687581) (-1484 . 687528)
- (-1485 . 686018) (-1486 . 685966) (-1487 . 685854) (-1488 . 685795)
- (-1489 . 685724) (-1490 . 685497) (-1491 . 685372) (-1492 . 685256)
- (-1493 . 685015) (-1494 . 684822) (-1495 . 684760) (-1496 . 684556)
- (-1497 . 684140) (-1498 . 683545) (-1499 . 681997) (-1500 . 681887)
- (-1501 . 681344) (-1502 . 680566) (-1503 . 677639) (-1504 . 677265)
- (-1505 . 677033) (-1506 . 676973) (-1507 . 676924) (-1508 . 676841)
- (-1509 . 676695) (-1510 . 676243) (-1511 . 676188) (-1512 . 676104)
- (-1513 . 676047) (-1514 . 675725) (-1515 . 675587) (-1516 . 675508)
- (-1517 . 675266) (-1518 . 675087) (-1519 . 674997) (-1520 . 674402)
- (-1521 . 674314) (-1522 . 674253) (-1523 . 674225) (-1524 . 674143)
- (-1525 . 673407) (-1526 . 673290) (-1527 . 672964) (-1528 . 672829)
- (-1529 . 672769) (-1530 . 672682) (-1531 . 672602) (-1532 . 672375)
- (-1533 . 672252) (-1534 . 672090) (-1535 . 671679) (-1536 . 671571)
- (-1537 . 671229) (-1538 . 671160) (-1539 . 670707) (-1540 . 670104)
- (-1541 . 669923) (-1542 . 669678) (-1543 . 669612) (-1544 . 669365)
- (-1545 . 669261) (-1546 . 668654) (-1547 . 668527) (-1548 . 668168)
- (-1549 . 668072) (-1550 . 667906) (-1551 . 667628) (-1552 . 667499)
- (-1553 . 667331) (-1554 . 667279) (-1555 . 667044) (-1556 . 667016)
- (-1557 . 666909) (-1558 . 666826) (-1559 . 666742) (-1560 . 666098)
- (-1561 . 665747) (-1562 . 663615) (-1563 . 663031) (-1564 . 662944)
- (-1565 . 662569) (-1566 . 661995) (-1567 . 661391) (-1568 . 661263)
- (-1569 . 661148) (-1570 . 661050) (-1571 . 660951) (-1572 . 660898)
- (-1573 . 659726) (-1574 . 659553) (-1575 . 659340) (-1576 . 659254)
- (-1577 . 659202) (-1578 . 658314) (-1579 . 657934) (-1580 . 657867)
- (-1581 . 657631) (-1582 . 657458) (-1583 . 657396) (-1584 . 657112)
- (-1585 . 656591) (-1586 . 656476) (-1587 . 656392) (-1588 . 656054)
- (-1589 . 655970) (-1590 . 655831) (-1591 . 655745) (-1592 . 655686)
- (-1593 . 655556) (-1594 . 655426) (-1595 . 655302) (-1596 . 655165)
- (-1597 . 654994) (-1598 . 654734) (-1599 . 653326) (-1600 . 653292)
- (-1601 . 652155) (-1602 . 651817) (-1603 . 651699) (-1604 . 651494)
- (-1605 . 651203) (-1606 . 650101) (-1607 . 650046) (-1608 . 649917)
- (-1609 . 649757) (-1610 . 649219) (-1611 . 648873) (-1612 . 648250)
- (-1613 . 648148) (-1614 . 648116) (-1615 . 648063) (-1616 . 648004)
- (-1617 . 646153) (-1618 . 646067) (-1619 . 645918) (-1620 . 645834)
- (-1621 . 645739) (-1622 . 645447) (-1623 . 645326) (-1624 . 645195)
- (-1625 . 643725) (-1626 . 643565) (-1627 . 643474) (-1628 . 642399)
- (-1629 . 642119) (-1630 . 642024) (-1631 . 641894) (-1632 . 641822)
- (-1633 . 641750) (-1634 . 641536) (-1635 . 636022) (-1636 . 635689)
- (-1637 . 635359) (-1638 . 635186) (-1639 . 635033) (-1640 . 634903)
- (-1641 . 634693) (-1642 . 634634) (-1643 . 634242) (-1644 . 633768)
- (-1645 . 633425) (-1646 . 633110) (-1647 . 633082) (-1648 . 632966)
- (-1649 . 632887) (-1650 . 632714) (-1651 . 632572) (-1652 . 632270)
- (-1653 . 632196) (-1654 . 631392) (-1655 . 630471) (-1656 . 630397)
- (-1657 . 629942) (-1658 . 629671) (-1659 . 629472) (-1660 . 629360)
- (-1661 . 629207) (-1662 . 629061) (-1663 . 628977) (-1664 . 628691)
- (-1665 . 628512) (-1666 . 628332) (-1667 . 628246) (-1668 . 628177)
- (-1669 . 627861) (-1670 . 627512) (-1671 . 627341) (-1672 . 627228)
- (-1673 . 627169) (-1674 . 627106) (-1675 . 626828) (-1676 . 626707)
- (-1677 . 626461) (-1678 . 626326) (-1679 . 626246) (-1680 . 626191)
- (-1681 . 625783) (-1682 . 625490) (-1683 . 625273) (-1684 . 625220)
- (-1685 . 625186) (-1686 . 625003) (-1687 . 624909) (-1688 . 624856)
- (-1689 . 624667) (-1690 . 624532) (-1691 . 624399) (-1692 . 624336)
- (-1693 . 624224) (-1694 . 623945) (-1695 . 623862) (-1696 . 623740)
- (-1697 . 623674) (-1698 . 623570) (-1699 . 623504) (-1700 . 623327)
- (-1701 . 623136) (-1702 . 623002) (-1703 . 622787) (-1704 . 622664)
- (-1705 . 622551) (-1706 . 622352) (-1707 . 622057) (-1708 . 621962)
- (-1709 . 621843) (-1710 . 621706) (-1711 . 620410) (-1712 . 620337)
- (-1713 . 620246) (-1714 . 619933) (-1715 . 619588) (-1716 . 619299)
- (-1717 . 619183) (-1718 . 619100) (-1719 . 618848) (-1720 . 618629)
- (-1721 . 618479) (-1722 . 618386) (-1723 . 618147) (-1724 . 618046)
- (-1725 . 617994) (-1726 . 617177) (-1727 . 617059) (-1728 . 616914)
- (-1729 . 616861) (-1730 . 616723) (-1731 . 616451) (-1732 . 616351)
- (-1733 . 616277) (-1734 . 616221) (-1735 . 616162) (-1736 . 615876)
- (-1737 . 615796) (-1738 . 615741) (-1739 . 615168) (-1740 . 615032)
- (-1741 . 614916) (-1742 . 614821) (-1743 . 614511) (-1744 . 614387)
- (-1745 . 614260) (-1746 . 614190) (-1747 . 614060) (-1748 . 613634)
- (-1749 . 613525) (-1750 . 613430) (-1751 . 613373) (-1752 . 613303)
- (-1753 . 613136) (-1754 . 612935) (-1755 . 612838) (-1756 . 612657)
- (-1757 . 612447) (-1758 . 612252) (-1759 . 612021) (-1760 . 611955)
- (-1761 . 611818) (-1762 . 610957) (-1763 . 610833) (-1764 . 610739)
- (-1765 . 610689) (-1766 . 610617) (-1767 . 610549) (-1768 . 610483)
- (-1769 . 610347) (-1770 . 610184) (-1771 . 609997) (-1772 . 609910)
- (-1773 . 609747) (-1774 . 609638) (-1775 . 609448) (-1776 . 608793)
- (-1777 . 608684) (-1778 . 608575) (-1779 . 608200) (-1780 . 607985)
- (-1781 . 607878) (-1782 . 607815) (-1783 . 607587) (-1784 . 607278)
- (-1785 . 607119) (-1786 . 606947) (-1787 . 606850) (-1788 . 606762)
- (-1789 . 606508) (-1790 . 606376) (-1791 . 606348) (-1792 . 606222)
- (-1793 . 606044) (-1794 . 605913) (-1795 . 605850) (-1796 . 605399)
- (-1797 . 605087) (-1798 . 605000) (-1799 . 604966) (-1800 . 604612)
- (-1801 . 604560) (-1802 . 604423) (-1803 . 604293) (-1804 . 604222)
- (-1805 . 604145) (-1806 . 604088) (-1807 . 603986) (-1808 . 603818)
- (-1809 . 603784) (-1810 . 603735) (-1811 . 603638) (-1812 . 603510)
- (-1813 . 603440) (-1814 . 603291) (-1815 . 603217) (-1816 . 603006)
- (-1817 . 602252) (-1818 . 602143) (-1819 . 601998) (-1820 . 601825)
- (-1821 . 601495) (-1822 . 601461) (-1823 . 601278) (-1824 . 601250)
- (-1825 . 601179) (-1826 . 601124) (-1827 . 601025) (-1828 . 600931)
- (-1829 . 600692) (-1830 . 600398) (-1831 . 600297) (-1832 . 600202)
- (-1833 . 600023) (-1834 . 599868) (-1835 . 598682) (-1836 . 598633)
- (-1837 . 598510) (-1838 . 598459) (-1839 . 598280) (-1840 . 598183)
- (-1841 . 598024) (-1842 . 597892) (-1843 . 597532) (-1844 . 597409)
- (-1845 . 597315) (-1846 . 597156) (-1847 . 597024) (-1848 . 595842)
- (-1849 . 595615) (-1850 . 595556) (-1851 . 595103) (-1852 . 594999)
- (-1853 . 594895) (-1854 . 594837) (-1855 . 592056) (-1856 . 591956)
- (-1857 . 591857) (-1858 . 591789) (-1859 . 589583) (-1860 . 589395)
- (-1861 . 589267) (-1862 . 589196) (-1863 . 589087) (-1864 . 589007)
- (-1865 . 588837) (-1866 . 588488) (-1867 . 588278) (-1868 . 588035)
- (-1869 . 587934) (-1870 . 587574) (-1871 . 587522) (-1872 . 587050)
- (-1873 . 586828) (-1874 . 586773) (-1875 . 586382) (-1876 . 586230)
- (-1877 . 585945) (-1878 . 585838) (-1879 . 585764) (-1880 . 585483)
- (-1881 . 585291) (-1882 . 585125) (-1883 . 585026) (-1884 . 584967)
- (-1885 . 584501) (-1886 . 584360) (-1887 . 584307) (-1888 . 584150)
- (-1889 . 583834) (-1890 . 583775) (-1891 . 583545) (-1892 . 583489)
- (-1893 . 583308) (-1894 . 583235) (-1895 . 583012) (-1896 . 582938)
- (-1897 . 582815) (-1898 . 582749) (-1899 . 582625) (-1900 . 580356)
- (-1901 . 580249) (-1902 . 579548) (-1903 . 579197) (-1904 . 579141)
- (-1905 . 578814) (-1906 . 578735) (-1907 . 578633) (-1908 . 578536)
- (-1909 . 578450) (-1910 . 578397) (-1911 . 578332) (-1912 . 578102)
- (-1913 . 577986) (-1914 . 577714) (-1915 . 577457) (-1916 . 577332)
- (-1917 . 576910) (-1918 . 576851) (-1919 . 576747) (-1920 . 576586)
- (-1921 . 576043) (-1922 . 575946) (-1923 . 575699) (-1924 . 575643)
- (-1925 . 575505) (-1926 . 575450) (-1927 . 575163) (-1928 . 575040)
- (-1929 . 574602) (-1930 . 574194) (-1931 . 574001) (-1932 . 573927)
- (-1933 . 573875) (-1934 . 573788) (-1935 . 573754) (-1936 . 573651)
- (-1937 . 573550) (-1938 . 573169) (-1939 . 572841) (-1940 . 572753)
- (-1941 . 572565) (-1942 . 572477) (-1943 . 571628) (-1944 . 571561)
- (-1945 . 571511) (-1946 . 571387) (-1947 . 571313) (-1948 . 571264)
- (-1949 . 571109) (-1950 . 570948) (-1951 . 570868) (-1952 . 570569)
- (-1953 . 570488) (-1954 . 570349) (-1955 . 566728) (-1956 . 566629)
- (-1957 . 566391) (-1958 . 566171) (-1959 . 566091) (-1960 . 565610)
- (-1961 . 565542) (-1962 . 565155) (-1963 . 565039) (-1964 . 564945)
- (-1965 . 564863) (-1966 . 564441) (-1967 . 564367) (-1968 . 564257)
- (-1969 . 563719) (-1970 . 563578) (-1971 . 563505) (-1972 . 563397)
- (-1973 . 563339) (-1974 . 563146) (-1975 . 563051) (-1976 . 562968)
- (-1977 . 562459) (-1978 . 562385) (-1979 . 562254) (-1980 . 562144)
- (-1981 . 561986) (-1982 . 561454) (-1983 . 561348) (-1984 . 560753)
- (-1985 . 560043) (-1986 . 559800) (-1987 . 559661) (-1988 . 559438)
- (-1989 . 559323) (-1990 . 559177) (-1991 . 559118) (-1992 . 558977)
- (-1993 . 558870) (-1994 . 558757) (-1995 . 558193) (-1996 . 558042)
- (-1997 . 557922) (-1998 . 557794) (-1999 . 557650) (-2000 . 557546)
- (-2001 . 557460) (-2002 . 557371) (-2003 . 557285) (-2004 . 557013)
- (-2005 . 556720) (-2006 . 556524) (-2007 . 556387) (-2008 . 556265)
- (-2009 . 556092) (-2010 . 556035) (-2011 . 555872) (-2012 . 555775)
- (-2013 . 555648) (-2014 . 555547) (-2015 . 555453) (-2016 . 555166)
- (-2017 . 555094) (-2018 . 553517) (-2019 . 553488) (-2020 . 553438)
- (-2021 . 553109) (-2022 . 552961) (-2023 . 552859) (-2024 . 552788)
- (-2025 . 552514) (-2026 . 552420) (-2027 . 552313) (-2028 . 552204)
- (-2029 . 552176) (-2030 . 552090) (-2031 . 551972) (-2032 . 551817)
- (-2033 . 551673) (-2034 . 551557) (-2035 . 551463) (-2036 . 551308)
- (-2037 . 551171) (-2038 . 550991) (-2039 . 550896) (-2040 . 550522)
- (-2041 . 550469) (-2042 . 549860) (-2043 . 549753) (-2044 . 549571)
- (-2045 . 549468) (-2046 . 549409) (-2047 . 549220) (-2048 . 549167)
- (-2049 . 549086) (-2050 . 548607) (-2051 . 548503) (-2052 . 548299)
- (-2053 . 548246) (-2054 . 547873) (-2055 . 547737) (-2056 . 547600)
- (-2057 . 547493) (-2058 . 547422) (-2059 . 547308) (-2060 . 547236)
- (-2061 . 546934) (-2062 . 546634) (-2063 . 546524) (-2064 . 546440)
- (-2065 . 546303) (-2066 . 546202) (-2067 . 546086) (-2068 . 546001)
- (-2069 . 545919) (-2070 . 545870) (-2071 . 545727) (-2072 . 545644)
- (-2073 . 545467) (-2074 . 545433) (-2075 . 545258) (-2076 . 544795)
- (-2077 . 544679) (-2078 . 544505) (-2079 . 544178) (-2080 . 543743)
- (-2081 . 543636) (-2082 . 543566) (-2083 . 543442) (-2084 . 543132)
- (-2085 . 542882) (-2086 . 542644) (-2087 . 542473) (-2088 . 542122)
- (-2089 . 542065) (-2090 . 541907) (-2091 . 541747) (-2092 . 541641)
- (-2093 . 541543) (-2094 . 541313) (-2095 . 541199) (-2096 . 540702)
- (-2097 . 540452) (-2098 . 540379) (-2099 . 540250) (-2100 . 540157)
- (-2101 . 539952) (-2102 . 539864) (-2103 . 539207) (-2104 . 538878)
- (-2105 . 538547) (-2106 . 537964) (-2107 . 537851) (-2108 . 537333)
- (-2109 . 537228) (-2110 . 537164) (-2111 . 537093) (-2112 . 537041)
- (-2113 . 536580) (-2114 . 536512) (-2115 . 536444) (-2116 . 536171)
- (-2117 . 536092) (-2118 . 536018) (-2119 . 535722) (-2120 . 535515)
- (-2121 . 535451) (-2122 . 535295) (-2123 . 535139) (-2124 . 535067)
- (-2125 . 534954) (-2126 . 534774) (-2127 . 534637) (-2128 . 534563)
- (-2129 . 534503) (-2130 . 534413) (-2131 . 534314) (-2132 . 534124)
- (-2133 . 534023) (-2134 . 533958) (-2135 . 533780) (-2136 . 533703)
- (-2137 . 533583) (-2138 . 533510) (-2139 . 533082) (-2140 . 532804)
- (-2141 . 532700) (-2142 . 532569) (-2143 . 532102) (-2144 . 531944)
- (-2145 . 531867) (-2146 . 531784) (-2147 . 531567) (-2148 . 531460)
- (-2149 . 531348) (-2150 . 531203) (-2151 . 531150) (-2152 . 530925)
- (-2153 . 530894) (-2154 . 530839) (-2155 . 530768) (-2156 . 530675)
- (-2157 . 530566) (-2158 . 530435) (-2159 . 530383) (-2160 . 530206)
- (-2161 . 529808) (-2162 . 529714) (-2163 . 529321) (-2164 . 529217)
- (-2165 . 528788) (-2166 . 527476) (-2167 . 527161) (-2168 . 526932)
- (-2169 . 526876) (-2170 . 526449) (-2171 . 525847) (-2172 . 522548)
- (-2173 . 521298) (-2174 . 521133) (-2175 . 520928) (-2176 . 519819)
- (-2177 . 519758) (-2178 . 519696) (-2179 . 519664) (-2180 . 519484)
- (-2181 . 519371) (-2182 . 519272) (-2183 . 519171) (-2184 . 519091)
- (-2185 . 518785) (-2186 . 518632) (-2187 . 518462) (-2188 . 518338)
- (-2189 . 518194) (-2190 . 517963) (-2191 . 517892) (-2192 . 517825)
- (-2193 . 517684) (-2194 . 517589) (-2195 . 517520) (-2196 . 517167)
- (-2197 . 517060) (-2198 . 516883) (-2199 . 516704) (-2200 . 516258)
- (-2201 . 515193) (-2202 . 515165) (-2203 . 515066) (-2204 . 515039)
- (-2205 . 514941) (-2206 . 514596) (-2207 . 514438) (-2208 . 514337)
- (-2209 . 514254) (-2210 . 514151) (-2211 . 513899) (-2212 . 513826)
- (-2213 . 513728) (-2214 . 513509) (-2215 . 513344) (-2216 . 513263)
- (-2217 . 512961) (-2218 . 512859) (-2219 . 512807) (-2220 . 512736)
- (-2221 . 512179) (-2222 . 512079) (-2223 . 511991) (-2224 . 511939)
- (-2225 . 511887) (-2226 . 511780) (-2227 . 511494) (-2228 . 511276)
- (-2229 . 511037) (-2230 . 510984) (-2231 . 510689) (-2232 . 510399)
- (-2233 . 510284) (-2234 . 510218) (-2235 . 509918) (-2236 . 509801)
- (-2237 . 509695) (-2238 . 509643) (-2239 . 509585) (-2240 . 509533)
- (-2241 . 509481) (-2242 . 509422) (-2243 . 509370) (-2244 . 509320)
- (-2245 . 508928) (-2246 . 508831) (-2247 . 507048) (-2248 . 506940)
- (-2249 . 506806) (-2250 . 506712) (-2251 . 506630) (-2252 . 506522)
- (-2253 . 506367) (-2254 . 506265) (-2255 . 506168) (-2256 . 505850)
- (-2257 . 505687) (-2258 . 505589) (-2259 . 505538) (-2260 . 504861)
- (-2261 . 504652) (-2262 . 504515) (-2263 . 504427) (-2264 . 504219)
- (-2265 . 504121) (-2266 . 504047) (-2267 . 503862) (-2268 . 503624)
- (-2269 . 503571) (-2270 . 503458) (-2271 . 503364) (-2272 . 503263)
- (-2273 . 503160) (-2274 . 503053) (-2275 . 502999) (-2276 . 499663)
- (-2277 . 498287) (-2278 . 498166) (-2279 . 498025) (-2280 . 497628)
- (-2281 . 497575) (-2282 . 497507) (-2283 . 497479) (-2284 . 497393)
- (-2285 . 497163) (-2286 . 496992) (-2287 . 496895) (-2288 . 496839)
- (-2289 . 495537) (-2290 . 495407) (-2291 . 495248) (-2292 . 495090)
- (-2293 . 494986) (-2294 . 494739) (-2295 . 494628) (-2296 . 494556)
- (-2297 . 494378) (-2298 . 494344) (-2299 . 494295) (-2300 . 494047)
- (-2301 . 493967) (-2302 . 493307) (-2303 . 493234) (-2304 . 491266)
- (-2305 . 491009) (-2306 . 490958) (-2307 . 490581) (-2308 . 490547)
- (-2309 . 490441) (-2310 . 490238) (-2311 . 490029) (-2312 . 489698)
- (-2313 . 489552) (-2314 . 489486) (-2315 . 489345) (-2316 . 489249)
- (-2317 . 489142) (-2318 . 488255) (-2319 . 488146) (-2320 . 487992)
- (-2321 . 486136) (-2322 . 486053) (-2323 . 485932) (-2324 . 485880)
- (-2325 . 485851) (-2326 . 485763) (-2327 . 485685) (-2328 . 485354)
- (-2329 . 485271) (-2330 . 485194) (-2331 . 485166) (-2332 . 484713)
- (-2333 . 484639) (-2334 . 484568) (-2335 . 484486) (-2336 . 484427)
- (-2337 . 484323) (-2338 . 483987) (-2339 . 483860) (-2340 . 483753)
- (-2341 . 483701) (-2342 . 483621) (-2343 . 478508) (-2344 . 478474)
- (-2345 . 478159) (-2346 . 478091) (-2347 . 478063) (-2348 . 477977)
- (-2349 . 477907) (-2350 . 477775) (-2351 . 477648) (-2352 . 476468)
- (-2353 . 476361) (-2354 . 475967) (-2355 . 475912) (-2356 . 475745)
- (-2357 . 475627) (-2358 . 475548) (-2359 . 475491) (-2360 . 475393)
- (-2361 . 475283) (-2362 . 475150) (-2363 . 474990) (-2364 . 474881)
- (-2365 . 474853) (-2366 . 474679) (-2367 . 474651) (-2368 . 474447)
- (-2369 . 474319) (-2370 . 474228) (-2371 . 474075) (-2372 . 474044)
- (-2373 . 473962) (-2374 . 473896) (-2375 . 473819) (-2376 . 473747)
- (-2377 . 473677) (-2378 . 472870) (-2379 . 472733) (-2380 . 472575)
- (-2381 . 472329) (-2382 . 472181) (-2383 . 472078) (-2384 . 471977)
- (-2385 . 471898) (-2386 . 471625) (-2387 . 471497) (-2388 . 471396)
- (-2389 . 471298) (-2390 . 471232) (-2391 . 471173) (-2392 . 471120)
- (-2393 . 471023) (-2394 . 470874) (-2395 . 470845) (-2396 . 470674)
- (-2397 . 470554) (-2398 . 470108) (-2399 . 469959) (-2400 . 469621)
- (-2401 . 469526) (-2402 . 468920) (-2403 . 468772) (-2404 . 468634)
- (-2405 . 468512) (-2406 . 468255) (-2407 . 467913) (-2408 . 467840)
- (-2409 . 467779) (-2410 . 467576) (-2411 . 466034) (-2412 . 465888)
- (-2413 . 465789) (-2414 . 465638) (-2415 . 465081) (-2416 . 464957)
- (-2417 . 464838) (-2418 . 464502) (-2419 . 464474) (-2420 . 464405)
- (-2421 . 464302) (-2422 . 464247) (-2423 . 464116) (-2424 . 463974)
- (-2425 . 463922) (-2426 . 463474) (-2427 . 463396) (-2428 . 463255)
- (-2429 . 463050) (-2430 . 462802) (-2431 . 462723) (-2432 . 462637)
- (-2433 . 462585) (-2434 . 462443) (-2435 . 462312) (-2436 . 462275)
- (-2437 . 462201) (-2438 . 461322) (-2439 . 461212) (-2440 . 461135)
- (-2441 . 461052) (-2442 . 460923) (-2443 . 460705) (-2444 . 460216)
- (-2445 . 460117) (-2446 . 459978) (-2447 . 459753) (-2448 . 459670)
- (-2449 . 459599) (-2450 . 459547) (-2451 . 459469) (-2452 . 459335)
- (-2453 . 459089) (-2454 . 458970) (-2455 . 458267) (-2456 . 458077)
- (-2457 . 458045) (-2458 . 457863) (-2459 . 457806) (-2460 . 457755)
- (-2461 . 457644) (-2462 . 457464) (-2463 . 457391) (-2464 . 457011)
- (-2465 . 456808) (-2466 . 456481) (-2467 . 456357) (-2468 . 456205)
- (-2469 . 456123) (-2470 . 456016) (-2471 . 455920) (-2472 . 455537)
- (-2473 . 455442) (-2474 . 455332) (-2475 . 455251) (-2476 . 455150)
- (-2477 . 454992) (-2478 . 454921) (-2479 . 454868) (-2480 . 454771)
- (-2481 . 454720) (-2482 . 454480) (-2483 . 454337) (-2484 . 454025)
- (-2485 . 453907) (-2486 . 453824) (-2487 . 453754) (-2488 . 453680)
- (-2489 . 453573) (-2490 . 453420) (-2491 . 453353) (-2492 . 453200)
- (-2493 . 453148) (-2494 . 452787) (-2495 . 452582) (-2496 . 452278)
- (-2497 . 452198) (-2498 . 451807) (-2499 . 451649) (-2500 . 451575)
- (-2501 . 451390) (-2502 . 451189) (-2503 . 450935) (-2504 . 450898)
- (-2505 . 450827) (-2506 . 450297) (-2507 . 450203) (-2508 . 450109)
- (-2509 . 449994) (-2510 . 449855) (-2511 . 449513) (-2512 . 449427)
- (-2513 . 449353) (-2514 . 448874) (-2515 . 448786) (-2516 . 448402)
- (-2517 . 448330) (-2518 . 448277) (-2519 . 448117) (-2520 . 447825)
- (-2521 . 447610) (-2522 . 446792) (-2523 . 446704) (-2524 . 446560)
- (-2525 . 446508) (-2526 . 446456) (-2527 . 446346) (-2528 . 446196)
- (-2529 . 445707) (-2530 . 445619) (-2531 . 445504) (-2532 . 445183)
- (-2533 . 442920) (-2534 . 442608) (-2535 . 442558) (-2536 . 442289)
- (-2537 . 442145) (-2538 . 441493) (-2539 . 441335) (-2540 . 441171)
- (-2541 . 441020) (-2542 . 440802) (-2543 . 440451) (-2544 . 440372)
- (-2545 . 440251) (-2546 . 440217) (-2547 . 440144) (-2548 . 439777)
- (-2549 . 439721) (-2550 . 439606) (-2551 . 439166) (-2552 . 438963)
- (-2553 . 438782) (-2554 . 438550) (-2555 . 438436) (-2556 . 438291)
- (-2557 . 438100) (-2558 . 438016) (-2559 . 437958) (-2560 . 437752)
- (-2561 . 437260) (-2562 . 436724) (-2563 . 436530) (-2564 . 436421)
- (-2565 . 435777) (-2566 . 435678) (-2567 . 435515) (-2568 . 435438)
- (-2569 . 435383) (-2570 . 435309) (-2571 . 435223) (-2572 . 435138)
- (-2573 . 434611) (-2574 . 434559) (-2575 . 434311) (-2576 . 434259)
- (-2577 . 434138) (-2578 . 432957) (-2579 . 432096) (-2580 . 431938)
- (-2581 . 431765) (-2582 . 431711) (-2583 . 431602) (-2584 . 431384)
- (-2585 . 430880) (-2586 . 430547) (-2587 . 430155) (-2588 . 429894)
- (-2589 . 429634) (-2590 . 429434) (-2591 . 429325) (-2592 . 429251)
- (-2593 . 429112) (-2594 . 428967) (-2595 . 428807) (-2596 . 428688)
- (-2597 . 428575) (-2598 . 428432) (-2599 . 428344) (-2600 . 428230)
- (-2601 . 428007) (-2602 . 427521) (-2603 . 427455) (-2604 . 427355)
- (-2605 . 427063) (-2606 . 426945) (-2607 . 426555) (-2608 . 426423)
- (-2609 . 426350) (-2610 . 426032) (-2611 . 425979) (-2612 . 425929)
- (-2613 . 425872) (-2614 . 425767) (-2615 . 425552) (-2616 . 425480)
- (-2617 . 425378) (-2618 . 425189) (-2619 . 425048) (-2620 . 424947)
- (-2621 . 424764) (-2622 . 424337) (-2623 . 424085) (-2624 . 424018)
- (-2625 . 423877) (-2626 . 423641) (-2627 . 423588) (-2628 . 423486)
- (-2629 . 423433) (-2630 . 423366) (-2631 . 421934) (-2632 . 421828)
- (-2633 . 421589) (-2634 . 421391) (-2635 . 420551) (-2636 . 420499)
- (-2637 . 420209) (-2638 . 419915) (-2639 . 419737) (-2640 . 419545)
- (-2641 . 419461) (-2642 . 419322) (-2643 . 419209) (-2644 . 419090)
- (-2645 . 419035) (-2646 . 419007) (-2647 . 418955) (-2648 . 418736)
- (-2649 . 418592) (-2650 . 418563) (-2651 . 418457) (-2652 . 417939)
- (-2653 . 417887) (-2654 . 417781) (-2655 . 417701) (-2656 . 417641)
- (-2657 . 417555) (-2658 . 417412) (-2659 . 417334) (-2660 . 417222)
- (-2661 . 416968) (-2662 . 416650) (-2663 . 416546) (-2664 . 416473)
- (-2665 . 416423) (-2666 . 416300) (-2667 . 409301) (-2668 . 409224)
- (-2669 . 409033) (-2670 . 408959) (-2671 . 408844) (-2672 . 408450)
- (-2673 . 408232) (-2674 . 408146) (-2675 . 407984) (-2676 . 407709)
- (-2677 . 407484) (-2678 . 407396) (-2679 . 407262) (-2680 . 407115)
- (-2681 . 407013) (-2682 . 406780) (-2683 . 406752) (-2684 . 406699)
- (-2685 . 406647) (-2686 . 406532) (-2687 . 406448) (-2688 . 406329)
- (-2689 . 406187) (-2690 . 406101) (-2691 . 405958) (-2692 . 405498)
- (-2693 . 405367) (-2694 . 404165) (-2695 . 404096) (-2696 . 403962)
- (-2697 . 403575) (-2698 . 403462) (-2699 . 403216) (-2700 . 403130)
- (-2701 . 402965) (-2702 . 402888) (-2703 . 402744) (-2704 . 402577)
- (-2705 . 402494) (-2706 . 402254) (-2707 . 401390) (-2708 . 401277)
- (-2709 . 401031) (-2710 . 400862) (-2711 . 400699) (-2712 . 400601)
- (-2713 . 400521) (-2714 . 400492) (-2715 . 400439) (-2716 . 400231)
- (-2717 . 399842) (-2718 . 399731) (-2719 . 399644) (-2720 . 399567)
- (-2721 . 399508) (-2722 . 399459) (-2723 . 399250) (-2724 . 398654)
- (-2725 . 398605) (-2726 . 398372) (-2727 . 398076) (-2728 . 398024)
- (-2729 . 397578) (-2730 . 397434) (-2731 . 397378) (-2732 . 397308)
- (-2733 . 396998) (-2734 . 396887) (-2735 . 396813) (-2736 . 396464)
- (-2737 . 396404) (-2738 . 396345) (-2739 . 396221) (-2740 . 396168)
- (-2741 . 395909) (-2742 . 395837) (-2743 . 395455) (-2744 . 395423)
- (-2745 . 395270) (-2746 . 395158) (-2747 . 395055) (-2748 . 394954)
- (-2749 . 394900) (-2750 . 394788) (-2751 . 394733) (-2752 . 394625)
- (-2753 . 394314) (-2754 . 394217) (-2755 . 394186) (-2756 . 394053)
- (-2757 . 393942) (-2758 . 393578) (-2759 . 393550) (-2760 . 393458)
- (-2761 . 393300) (-2762 . 393192) (-2763 . 392804) (-2764 . 392523)
- (-2765 . 392340) (-2766 . 391813) (-2767 . 391183) (-2768 . 390796)
- (-2769 . 389979) (-2770 . 389824) (-2771 . 389606) (-2772 . 389234)
- (-2773 . 389107) (-2774 . 389075) (-2775 . 389018) (-2776 . 388615)
- (-2777 . 388549) (-2778 . 388496) (-2779 . 388441) (-2780 . 388376)
- (-2781 . 388323) (-2782 . 388251) (-2783 . 388005) (-2784 . 387910)
- (-2785 . 387781) (-2786 . 387682) (-2787 . 387464) (-2788 . 387257)
- (-2789 . 387095) (-2790 . 387009) (-2791 . 386778) (-2792 . 386526)
- (-2793 . 386102) (-2794 . 385917) (-2795 . 385808) (-2796 . 385777)
- (-2797 . 385724) (-2798 . 385277) (-2799 . 384860) (-2800 . 384662)
- (-2801 . 384170) (-2802 . 383963) (-2803 . 383059) (-2804 . 382957)
- (-2805 . 382828) (-2806 . 382775) (-2807 . 382678) (-2808 . 382590)
- (-2809 . 382432) (-2810 . 382339) (-2811 . 382286) (-2812 . 382233)
- (-2813 . 382039) (-2814 . 381886) (-2815 . 381800) (-2816 . 381693)
- (-2817 . 381640) (-2818 . 381512) (-2819 . 381317) (-2820 . 381145)
- (-2821 . 381035) (-2822 . 380964) (-2823 . 380842) (-2824 . 380493)
- (-2825 . 380341) (-2826 . 380261) (-2827 . 380156) (-2828 . 379961)
- (-2829 . 379910) (-2830 . 379840) (-2831 . 379785) (-2832 . 379406)
- (-2833 . 378593) (-2834 . 378536) (-2835 . 378149) (-2836 . 378048)
- (-2837 . 377829) (-2838 . 377663) (-2839 . 377460) (-2840 . 377404)
- (-2841 . 377305) (-2842 . 377231) (-2843 . 377142) (-2844 . 377043)
- (-2845 . 376756) (-2846 . 376615) (-2847 . 376517) (-2848 . 376344)
- (-2849 . 376191) (-2850 . 376033) (-2851 . 375863) (-2852 . 375047)
- (-2853 . 374968) (-2854 . 374722) (-2855 . 374603) (-2856 . 374466)
- (-2857 . 374326) (-2858 . 374083) (-2859 . 374031) (-2860 . 373915)
- (-2861 . 373796) (-2862 . 373744) (-2863 . 373526) (-2864 . 373382)
- (-2865 . 373289) (-2866 . 373002) (-2867 . 372939) (-2868 . 372874)
- (-2869 . 372734) (-2870 . 372682) (-2871 . 372553) (-2872 . 372501)
- (-2873 . 372374) (-2874 . 371966) (-2875 . 371813) (-2876 . 370725)
- (-2877 . 370635) (-2878 . 370479) (-2879 . 370294) (-2880 . 370138)
- (-2881 . 370041) (-2882 . 369971) (-2883 . 369866) (-2884 . 369632)
- (-2885 . 369199) (-2886 . 369092) (-2887 . 368968) (-2888 . 368718)
- (-2889 . 368605) (-2890 . 368078) (-2891 . 367966) (-2892 . 367892)
- (-2893 . 367721) (-2894 . 367619) (-2895 . 367542) (-2896 . 367459)
- (-2897 . 367382) (-2898 . 367089) (-2899 . 367036) (-2900 . 366977)
- (-2901 . 366685) (-2902 . 366616) (-2903 . 366192) (-2904 . 366048)
- (-2905 . 365960) (-2906 . 365775) (-2907 . 365096) (-2908 . 364885)
- (-2909 . 364829) (-2910 . 364076) (-2911 . 363869) (-2912 . 363753)
- (-2913 . 363699) (-2914 . 363607) (-2915 . 363501) (-2916 . 363449)
- (-2917 . 363344) (-2918 . 363261) (-2919 . 363173) (-2920 . 363087)
- (-2921 . 361814) (-2922 . 361759) (-2923 . 361643) (-2924 . 361097)
- (-2925 . 360807) (-2926 . 360715) (-2927 . 360654) (-2928 . 360539)
- (-2929 . 360484) (-2930 . 360418) (-2931 . 360365) (-2932 . 360114)
- (-2933 . 359951) (-2934 . 359878) (-2935 . 359637) (-2936 . 359063)
- (-2937 . 358971) (-2938 . 358905) (-2939 . 358715) (-2940 . 358653)
- (-2941 . 358601) (-2942 . 358408) (-2943 . 358295) (-2944 . 358073)
- (-2945 . 357987) (-2946 . 357910) (-2947 . 357827) (-2948 . 357733)
- (-2949 . 357534) (-2950 . 357451) (-2951 . 357291) (-2952 . 357044)
- (-2953 . 356863) (-2954 . 356747) (-2955 . 356494) (-2956 . 356406)
- (-2957 . 356205) (-2958 . 356152) (-2959 . 356020) (-2960 . 355752)
- (-2961 . 355696) (-2962 . 355611) (-2963 . 355526) (-2964 . 355452)
- (-2965 . 355327) (-2966 . 355156) (-2967 . 354775) (-2968 . 354697)
- (-2969 . 354449) (-2970 . 354276) (-2971 . 354129) (-2972 . 354097)
- (-2973 . 353980) (-2974 . 353675) (-2975 . 353587) (-2976 . 353510)
- (-2977 . 353476) (-2978 . 352789) (-2979 . 352605) (-2980 . 352477)
- (-2981 . 352399) (-2982 . 352175) (-2983 . 351978) (-2984 . 351567)
- (-2985 . 351454) (-2986 . 351301) (-2987 . 351149) (-2988 . 350462)
- (-2989 . 350304) (-2990 . 350218) (-2991 . 350110) (-2992 . 350050)
- (-2993 . 349772) (-2994 . 349663) (-2995 . 349613) (-2996 . 349544)
- (-2997 . 349458) (-2998 . 349268) (-2999 . 349172) (-3000 . 349062)
- (-3001 . 348487) (-3002 . 348360) (-3003 . 348237) (-3004 . 348160)
- (-3005 . 347756) (-3006 . 347659) (-3007 . 347455) (-3008 . 347245)
- (-3009 . 346878) (-3010 . 346688) (-3011 . 346494) (-3012 . 346332)
- (-3013 . 346149) (-3014 . 345574) (-3015 . 345083) (-3016 . 344954)
- (-3017 . 344877) (-3018 . 344501) (-3019 . 344406) (-3020 . 343852)
- (-3021 . 343546) (-3022 . 343469) (-3023 . 342894) (-3024 . 342770)
- (-3025 . 342511) (-3026 . 342294) (-3027 . 342217) (-3028 . 342140)
- (-3029 . 342006) (-3030 . 341899) (-3031 . 341805) (-3032 . 341696)
- (-3033 . 341122) (-3034 . 341026) (-3035 . 340376) (-3036 . 340214)
- (-3037 . 340027) (-3038 . 339971) (-3039 . 339901) (-3040 . 339702)
- (-3041 . 339616) (-3042 . 339563) (-3043 . 339379) (-3044 . 338805)
- (-3045 . 338529) (-3046 . 338227) (-3047 . 338172) (-3048 . 337570)
- (-3049 . 337442) (-3050 . 337183) (-3051 . 337056) (-3052 . 336932)
- (-3053 . 336881) (-3054 . 336683) (-3055 . 336109) (-3056 . 336057)
- (-3057 . 335894) (-3058 . 335787) (-3059 . 335465) (-3060 . 335038)
- (-3061 . 334923) (-3062 . 334823) (-3063 . 334571) (-3064 . 334514)
- (-3065 . 334256) (-3066 . 333682) (-3067 . 333602) (-3068 . 333450)
- (-3069 . 332686) (-3070 . 332506) (-3071 . 332424) (-3072 . 332136)
- (-3073 . 332084) (-3074 . 331935) (-3075 . 331854) (-3076 . 331761)
- (-3077 . 331443) (-3078 . 330869) (-3079 . 330800) (-3080 . 330734)
- (-3081 . 330484) (-3082 . 330391) (-3083 . 330175) (-3084 . 330141)
- (-3085 . 330033) (-3086 . 329815) (-3087 . 329685) (-3088 . 329578)
- (-3089 . 329355) (-3090 . 329181) (-3091 . 329128) (-3092 . 329031)
- (-3093 . 328948) (-3094 . 328896) (-3095 . 328819) (-3096 . 328666)
- (-3097 . 328279) (-3098 . 327938) (-3099 . 327846) (-3100 . 327733)
- (-3101 . 327594) (-3102 . 327473) (-3103 . 327421) (-3104 . 327114)
- (-3105 . 326705) (-3106 . 326408) (-3107 . 326292) (-3108 . 326173)
- (-3109 . 326117) (-3110 . 325845) (-3111 . 325654) (-3112 . 325313)
- (-3113 . 325242) (-3114 . 324410) (-3115 . 324327) (-3116 . 324173)
- (-3117 . 324145) (-3118 . 324071) (-3119 . 323903) (-3120 . 323715)
- (-3121 . 323508) (-3122 . 323423) (-3123 . 323353) (-3124 . 323143)
- (-3125 . 323072) (-3126 . 322580) (-3127 . 322442) (-3128 . 322272)
- (-3129 . 322093) (-3130 . 321897) (-3131 . 321860) (-3132 . 321753)
- (-3133 . 321569) (-3134 . 321345) (-3135 . 321243) (-3136 . 321148)
- (-3137 . 321044) (-3138 . 320942) (-3139 . 320729) (-3140 . 320594)
- (-3141 . 320508) (-3142 . 320411) (-3143 . 320155) (-3144 . 320082)
- (-3145 . 320016) (-3146 . 319909) (-3147 . 319800) (-3148 . 319189)
- (-3149 . 319071) (-3150 . 318754) (-3151 . 318680) (-3152 . 318505)
- (-3153 . 318449) (-3154 . 318368) (-3155 . 318215) (-3156 . 318137)
- (-3157 . 318057) (-3158 . 317956) (-3159 . 317853) (-3160 . 317697)
- (-3161 . 317616) (-3162 . 317397) (-3163 . 317183) (-3164 . 317120)
- (-3165 . 316841) (-3166 . 316746) (-3167 . 316690) (-3168 . 316563)
- (-3169 . 316376) (-3170 . 316310) (-3171 . 315153) (-3172 . 314884)
- (-3173 . 314706) (-3174 . 314610) (-3175 . 314485) (-3176 . 314418)
- (-3177 . 314283) (-3178 . 314078) (-3179 . 314008) (-3180 . 313949)
- (-3181 . 313894) (-3182 . 313372) (-3183 . 313268) (-3184 . 313174)
- (-3185 . 312963) (-3186 . 312833) (-3187 . 312674) (-3188 . 312591)
- (-3189 . 312427) (-3190 . 312245) (-3191 . 311715) (-3192 . 311655)
- (-3193 . 311311) (-3194 . 311131) (-3195 . 311030) (-3196 . 310980)
- (-3197 . 310902) (-3198 . 310711) (-3199 . 310553) (-3200 . 310487)
- (-3201 . 309571) (-3202 . 309492) (-3203 . 309411) (-3204 . 309244)
- (-3205 . 309064) (-3206 . 308713) (-3207 . 308594) (-3208 . 308374)
- (-3209 . 308251) (-3210 . 308129) (-3211 . 308046) (-3212 . 307987)
- (-3213 . 307920) (-3214 . 307876) (-3215 . 307700) (-3216 . 307648)
- (-3217 . 307574) (-3218 . 306989) (-3219 . 306438) (-3220 . 306191)
- (-3221 . 306078) (-3222 . 305946) (-3223 . 304828) (-3224 . 304596)
- (-3225 . 304513) (-3226 . 304461) (-3227 . 304324) (-3228 . 304267)
- (-3229 . 303999) (-3230 . 303889) (-3231 . 303714) (-3232 . 303608)
- (-3233 . 303511) (-3234 . 303389) (-3235 . 303260) (-3236 . 303181)
- (-3237 . 303129) (-3238 . 303011) (-3239 . 302873) (-3240 . 302839)
- (-3241 . 302593) (-3242 . 302435) (-3243 . 302384) (-3244 . 302311)
- (-3245 . 302163) (-3246 . 301524) (-3247 . 301443) (-3248 . 301391)
- (-3249 . 301076) (-3250 . 301012) (-3251 . 300912) (-3252 . 300029)
- (-3253 . 299864) (-3254 . 299096) (-3255 . 299012) (-3256 . 298849)
- (-3257 . 298704) (-3258 . 298433) (-3259 . 298355) (-3260 . 298295)
- (-3261 . 297974) (-3262 . 297918) (-3263 . 297557) (-3264 . 297484)
- (-3265 . 296892) (-3266 . 296820) (-3267 . 296674) (-3268 . 296595)
- (-3269 . 296500) (-3270 . 295953) (-3271 . 295831) (-3272 . 295722)
- (-3273 . 295591) (-3274 . 295463) (-3275 . 295285) (-3276 . 295135)
- (-3277 . 295010) (-3278 . 294707) (-3279 . 294574) (-3280 . 294259)
- (-3281 . 294123) (-3282 . 294049) (-3283 . 293909) (** . 290820)
- (-3285 . 290661) (-3286 . 290588) (-3287 . 290511) (-3288 . 290333)
- (-3289 . 290072) (-3290 . 290044) (-3291 . 289914) (-3292 . 289752)
- (-3293 . 289558) (-3294 . 289144) (-3295 . 289113) (-3296 . 288772)
- (-3297 . 288616) (-3298 . 288512) (-3299 . 288403) (-3300 . 288129)
- (-3301 . 288004) (-3302 . 287897) (-3303 . 287655) (-3304 . 287585)
- (-3305 . 287371) (-3306 . 287301) (-3307 . 287158) (-3308 . 287039)
- (-3309 . 286894) (-3310 . 286753) (-3311 . 286581) (-3312 . 286507)
- (-3313 . 286419) (-3314 . 286333) (-3315 . 286281) (-3316 . 286107)
- (-3317 . 285899) (-3318 . 285310) (-3319 . 285236) (-3320 . 284629)
- (-3321 . 284546) (-3322 . 284358) (-3323 . 284258) (-3324 . 284184)
- (-3325 . 284074) (-3326 . 283712) (-3327 . 283494) (-3328 . 283348)
- (-3329 . 283295) (-3330 . 283158) (-3331 . 283087) (-3332 . 282979)
- (-3333 . 282772) (-3334 . 282546) (-3335 . 282476) (-3336 . 282422)
- (-3337 . 282267) (-3338 . 281917) (-3339 . 281787) (-3340 . 281714)
- (-3341 . 281642) (-3342 . 281486) (-3343 . 281267) (-3344 . 281166)
- (-3345 . 281094) (-3346 . 280855) (-3347 . 280504) (-3348 . 280007)
- (-3349 . 279874) (-3350 . 279631) (-3351 . 279579) (-3352 . 279522)
- (-3353 . 279442) (-3354 . 279341) (-3355 . 279268) (-3356 . 279164)
- (-3357 . 277386) (-3358 . 277137) (-3359 . 277056) (-3360 . 276962)
- (-3361 . 276907) (-3362 . 276792) (-3363 . 276041) (-3364 . 275985)
- (-3365 . 275832) (-3366 . 275643) (-3367 . 275499) (-3368 . 275427)
- (-3369 . 275273) (-3370 . 275165) (-3371 . 275077) (-3372 . 274599)
- (-3373 . 274380) (-3374 . 274125) (-3375 . 273967) (-3376 . 272882)
- (-3377 . 272601) (-3378 . 272487) (-3379 . 272372) (-3380 . 272294)
- (-3381 . 272086) (-3382 . 271972) (-3383 . 271462) (-9 . 271434)
- (-3385 . 271330) (-3386 . 271068) (-3387 . 271002) (-3388 . 270880)
- (-3389 . 270705) (-3390 . 270499) (-3391 . 270411) (-3392 . 270163)
- (-3393 . 270110) (-3394 . 269957) (-8 . 269929) (-3396 . 269799)
- (-3397 . 269746) (-3398 . 269636) (-3399 . 269414) (-3400 . 269294)
- (-3401 . 269060) (-3402 . 268829) (-3403 . 268776) (-3404 . 268681)
- (-7 . 268653) (-3406 . 268565) (-3407 . 268183) (-3408 . 268095)
- (-3409 . 267992) (-3410 . 267818) (-3411 . 267749) (-3412 . 267693)
- (-3413 . 267351) (-3414 . 267016) (-3415 . 266922) (-3416 . 266804)
- (-3417 . 266697) (-3418 . 266645) (-3419 . 266395) (-3420 . 266185)
- (-3421 . 266096) (-3422 . 266043) (-3423 . 265928) (-3424 . 265757)
- (-3425 . 265633) (-3426 . 265249) (-3427 . 265016) (-3428 . 264881)
- (-3429 . 264762) (-3430 . 263550) (-3431 . 263479) (-3432 . 263332)
- (-3433 . 263272) (-3434 . 263189) (-3435 . 263103) (-3436 . 262825)
- (-3437 . 262725) (-3438 . 262180) (-3439 . 262118) (-3440 . 262041)
- (-3441 . 261654) (-3442 . 261583) (-3443 . 261418) (-3444 . 261312)
- (-3445 . 261102) (-3446 . 261005) (-3447 . 260927) (-3448 . 260483)
- (-3449 . 260317) (-3450 . 260203) (-3451 . 260051) (-3452 . 259974)
- (-3453 . 259903) (-3454 . 259482) (-3455 . 259146) (-3456 . 258969)
- (-3457 . 258844) (-3458 . 258778) (-3459 . 258694) (-3460 . 258549)
- (-3461 . 258471) (-3462 . 258332) (-3463 . 257974) (-3464 . 257894)
- (-3465 . 257841) (-3466 . 257771) (-3467 . 256041) (-3468 . 255855)
- (-3469 . 255697) (-3470 . 255471) (-3471 . 255342) (-3472 . 255128)
- (-3473 . 253947) (-3474 . 253853) (-3475 . 253768) (-3476 . 253646)
- (-3477 . 253505) (-3478 . 253120) (-3479 . 252843) (-3480 . 252626)
- (-3481 . 252527) (-3482 . 252455) (-3483 . 252355) (-3484 . 252019)
- (-3485 . 251915) (-3486 . 251810) (-3487 . 251215) (-3488 . 250669)
- (-3489 . 250562) (-3490 . 250203) (-3491 . 250078) (-3492 . 249711)
- (-3493 . 249660) (-3494 . 248694) (-3495 . 248642) (-3496 . 248427)
- (-3497 . 248367) (-3498 . 248339) (-3499 . 248221) (-3500 . 247962)
- (-3501 . 247854) (-3502 . 247717) (-3503 . 247591) (-3504 . 247532)
- (-3505 . 247449) (-3506 . 247383) (-3507 . 247218) (-3508 . 246848)
- (-3509 . 246796) (-3510 . 246717) (-3511 . 246668) (-3512 . 246580)
- (-3513 . 246437) (-3514 . 246213) (-3515 . 246094) (-3516 . 246038)
- (-3517 . 245784) (-3518 . 245071) (-3519 . 244823) (-3520 . 244659)
- (-3521 . 244523) (-3522 . 244424) (-3523 . 244328) (-3524 . 244206)
- (-3525 . 243196) (-3526 . 242695) (-3527 . 242576) (-3528 . 241506)
- (-3529 . 240341) (-3530 . 240150) (-3531 . 240088) (-3532 . 239981)
- (-3533 . 239865) (-3534 . 239782) (-3535 . 239615) (-3536 . 239080)
- (-3537 . 238908) (-3538 . 238644) (-3539 . 238273) (-3540 . 238171)
- (-3541 . 238119) (-3542 . 237872) (-3543 . 237675) (-3544 . 237581)
- (-3545 . 237286) (-3546 . 237119) (-3547 . 236975) (-3548 . 236860)
- (-3549 . 236778) (-3550 . 236590) (-3551 . 236504) (-3552 . 236381)
- (-3553 . 236181) (-3554 . 236126) (-3555 . 236074) (-3556 . 235587)
- (-3557 . 235420) (-3558 . 235300) (-3559 . 235154) (-3560 . 234989)
- (-3561 . 234582) (-3562 . 234548) (-3563 . 234275) (-3564 . 234150)
- (-3565 . 233998) (-3566 . 233830) (-3567 . 233590) (-3568 . 233296)
- (-3569 . 233193) (-3570 . 233055) (-3571 . 233000) (-3572 . 232896)
- (-3573 . 232650) (-3574 . 232562) (-3575 . 232459) (-3576 . 232316)
- (-3577 . 232250) (-3578 . 232129) (-3579 . 231969) (-3580 . 230707)
- (-3581 . 230192) (-3582 . 230110) (-3583 . 230055) (-3584 . 229398)
- (-3585 . 229235) (-3586 . 228964) (-3587 . 228611) (-3588 . 228502)
- (-3589 . 228418) (-3590 . 228153) (-3591 . 228038) (-3592 . 227920)
- (-3593 . 226728) (-3594 . 226605) (-3595 . 226477) (-3596 . 226207)
- (-3597 . 226102) (-3598 . 223988) (-3599 . 223935) (-3600 . 223459)
- (-3601 . 223115) (-3602 . 222993) (-3603 . 222627) (-3604 . 222520)
- (-3605 . 222330) (-3606 . 221911) (-3607 . 221837) (-3608 . 221742)
- (-3609 . 220778) (-3610 . 220616) (-3611 . 220502) (-3612 . 219700)
- (-3613 . 219593) (-3614 . 219475) (-3615 . 219319) (-3616 . 219212)
- (-3617 . 219082) (-3618 . 218890) (-3619 . 218799) (-3620 . 218653)
- (-3621 . 218621) (-3622 . 218483) (-3623 . 218281) (-3624 . 218228)
- (-3625 . 218177) (-3626 . 218143) (-3627 . 217408) (-3628 . 217356)
- (-3629 . 217271) (-3630 . 217157) (-3631 . 217073) (-3632 . 216989)
- (-3633 . 216885) (-3634 . 216778) (-3635 . 216514) (-3636 . 216444)
- (-3637 . 216334) (-3638 . 216249) (-3639 . 216139) (-3640 . 216005)
- (-3641 . 215331) (-3642 . 214958) (-3643 . 214857) (-3644 . 214691)
- (-3645 . 214536) (-3646 . 214106) (-3647 . 214035) (-3648 . 213905)
- (-3649 . 213713) (-3650 . 213640) (-3651 . 213121) (-3652 . 212854)
- (-3653 . 212799) (-3654 . 212703) (-3655 . 212632) (-3656 . 212467)
- (-3657 . 212360) (-3658 . 212237) (-3659 . 212136) (-3660 . 212068)
- (-3661 . 212008) (-3662 . 211388) (-3663 . 211317) (-3664 . 211216)
- (-3665 . 210937) (-3666 . 210621) (-3667 . 210439) (-3668 . 209223)
- (-3669 . 209143) (-3670 . 209044) (-3671 . 208891) (-3672 . 208839)
- (-3673 . 208683) (-3674 . 208050) (-3675 . 207699) (-3676 . 207626)
- (-3677 . 207508) (-3678 . 207480) (-3679 . 207285) (-3680 . 207058)
- (-3681 . 207006) (-3682 . 206822) (-3683 . 206749) (-3684 . 206406)
- (-3685 . 206257) (-3686 . 206201) (-3687 . 206142) (-3688 . 206068)
- (-3689 . 205737) (-3690 . 205494) (-3691 . 205434) (-3692 . 205346)
- (-3693 . 205233) (-3694 . 205021) (-3695 . 204938) (-3696 . 204140)
- (-3697 . 203974) (-3698 . 203905) (-3699 . 203863) (-3700 . 203784)
- (-3701 . 203686) (-3702 . 203627) (-3703 . 203509) (-3704 . 203407)
- (-3705 . 203320) (-3706 . 203236) (-3707 . 203159) (-3708 . 203081)
- (-3709 . 203002) (-3710 . 202835) (-3711 . 202617) (-3712 . 202560)
- (-3713 . 202477) (-3714 . 202322) (-3715 . 202169) (-3716 . 202054)
- (-3717 . 201716) (-3718 . 201645) (-3719 . 201427) (-3720 . 201353)
- (-3721 . 201285) (-3722 . 201197) (-3723 . 201079) (-3724 . 201000)
- (-3725 . 200811) (-3726 . 200726) (-3727 . 200652) (-3728 . 200514)
- (-3729 . 200389) (-3730 . 200231) (-3731 . 200148) (-3732 . 200096)
- (-3733 . 200008) (-3734 . 199904) (-3735 . 199849) (-3736 . 199731)
- (-3737 . 199624) (-3738 . 199405) (-3739 . 199063) (-3740 . 198925)
- (-3741 . 198826) (-3742 . 198703) (-3743 . 198623) (-3744 . 198533)
- (-3745 . 198481) (-3746 . 198430) (-3747 . 198137) (-3748 . 198004)
- (-3749 . 197756) (-3750 . 197679) (-3751 . 197591) (-3752 . 197449)
- (-3753 . 197365) (-3754 . 197222) (-3755 . 197142) (-3756 . 197033)
- (-3757 . 196447) (-3758 . 196388) (-3759 . 196335) (-3760 . 196213)
- (-3761 . 196114) (-3762 . 195789) (-3763 . 195659) (-3764 . 195444)
- (-3765 . 195394) (-3766 . 195342) (-3767 . 195199) (-3768 . 195053)
- (-3769 . 194888) (-3770 . 194364) (-3771 . 194266) (-3772 . 194234)
- (-3773 . 194146) (-3774 . 194037) (-3775 . 193916) (-3776 . 193819)
- (-3777 . 193696) (-3778 . 193543) (-3779 . 193384) (-3780 . 193313)
- (-3781 . 193212) (-3782 . 193139) (-3783 . 193071) (-3784 . 192955)
- (-3785 . 192903) (-3786 . 192847) (-3787 . 192777) (-3788 . 192710)
- (-3789 . 191837) (-3790 . 191775) (-3791 . 191335) (-3792 . 191262)
- (-3793 . 191059) (-3794 . 190901) (-3795 . 190679) (-3796 . 190427)
- (-3797 . 190175) (-3798 . 190062) (-3799 . 189871) (-3800 . 189757)
- (-3801 . 189683) (-3802 . 189609) (-3803 . 189413) (-3804 . 189345)
- (-3805 . 189252) (-3806 . 189129) (-3807 . 188495) (-3808 . 188276)
- (-3809 . 188248) (-3810 . 188182) (-3811 . 188022) (-3812 . 187536)
- (-3813 . 187378) (-3814 . 187275) (-3815 . 187203) (-3816 . 187075)
- (-3817 . 186830) (-3818 . 186454) (-3819 . 186067) (-3820 . 185960)
- (-3821 . 185704) (-3822 . 185528) (-3823 . 185457) (-3824 . 185401)
- (-3825 . 185292) (-3826 . 184294) (-3827 . 184242) (-3828 . 184171)
- (-3829 . 184047) (-3830 . 183921) (-3831 . 183809) (-3832 . 183756)
- (-3833 . 183700) (-3834 . 183544) (-3835 . 183481) (-3836 . 183397)
- (-3837 . 183157) (-3838 . 182975) (-3839 . 182816) (-3840 . 182744)
- (-3841 . 182646) (-3842 . 182419) (-3843 . 182171) (-3844 . 182094)
- (-3845 . 182045) (-3846 . 181964) (-3847 . 181908) (-3848 . 181515)
- (-3849 . 181407) (-3850 . 181048) (-3851 . 180893) (-3852 . 180732)
- (-3853 . 180585) (-3854 . 180548) (-3855 . 180476) (-3856 . 180380)
- (-3857 . 180055) (-3858 . 179984) (-3859 . 179915) (-3860 . 179860)
- (-3861 . 179753) (-3862 . 179675) (-3863 . 179538) (-3864 . 179363)
- (-3865 . 179273) (-3866 . 179170) (-3867 . 178939) (-3868 . 178885)
- (-3869 . 178790) (-3870 . 178722) (-3871 . 178672) (-3872 . 178616)
- (-3873 . 178318) (-3874 . 178223) (-3875 . 178122) (-3876 . 177918)
- (-3877 . 177790) (-3878 . 177511) (-3879 . 177008) (-3880 . 176856)
- (-3881 . 176755) (-3882 . 176659) (-3883 . 176606) (-3884 . 176442)
- (-3885 . 176281) (-3886 . 176178) (-3887 . 175862) (-3888 . 175637)
- (-3889 . 175308) (-3890 . 175231) (-3891 . 173891) (-3892 . 173797)
- (-3893 . 173715) (-3894 . 173527) (-3895 . 173475) (-3896 . 173362)
- (-3897 . 173106) (-3898 . 172997) (-3899 . 172924) (-3900 . 172542)
- (-3901 . 172104) (-3902 . 171884) (-3903 . 171770) (-3904 . 171470)
- (-3905 . 171283) (-3906 . 169695) (-3907 . 169525) (-3908 . 169377)
- (-3909 . 169284) (-3910 . 169198) (-3911 . 169111) (-3912 . 169058)
- (-3913 . 169001) (-3914 . 168918) (-3915 . 168865) (-3916 . 168735)
- (-3917 . 168636) (-3918 . 168584) (-3919 . 168278) (-3920 . 168249)
- (-3921 . 168221) (-3922 . 167639) (-3923 . 167519) (-3924 . 167399)
- (-3925 . 166914) (-3926 . 166815) (-3927 . 166758) (-3928 . 165892)
- (-3929 . 165691) (-3930 . 165660) (-3931 . 165471) (-3932 . 161311)
- (-3933 . 161177) (-3934 . 160441) (-3935 . 160347) (-3936 . 160288)
- (-3937 . 160121) (-3938 . 160035) (-3939 . 159872) (-3940 . 159806)
- (-3941 . 159711) (-3942 . 159638) (-3943 . 159576) (-3944 . 159509)
- (-3945 . 159334) (-3946 . 159232) (-3947 . 159158) (-3948 . 159052)
- (-3949 . 158935) (-3950 . 158851) (-3951 . 158633) (-3952 . 158527)
- (-3953 . 158351) (-3954 . 158208) (-3955 . 157999) (-3956 . 157796)
- (-3957 . 157743) (-3958 . 157572) (-3959 . 157520) (-3960 . 157383)
- (-3961 . 152045) (-3962 . 151992) (-3963 . 151563) (-3964 . 151254)
- (-3965 . 151166) (-3966 . 151087) (-3967 . 149641) (-3968 . 149494)
- (-3969 . 149319) (-3970 . 149288) (-3971 . 149122) (-3972 . 148979)
- (-3973 . 148825) (-3974 . 148603) (-3975 . 148532) (-3976 . 148435)
- (-3977 . 148184) (-3978 . 148131) (-3979 . 148051) (-3980 . 147967)
- (-3981 . 147692) (-3982 . 146664) (-3983 . 146478) (-3984 . 146394)
- (-3985 . 146251) (-3986 . 146167) (-3987 . 145969) (-3988 . 145910)
- (-3989 . 145603) (-3990 . 145505) (-3991 . 145439) (-3992 . 145352)
- (-3993 . 145115) (-3994 . 145081) (-3995 . 144747) (-3996 . 144523)
- (-3997 . 144468) (-3998 . 144338) (-3999 . 144120) (-4000 . 143377)
- (-4001 . 143311) (-4002 . 143173) (-4003 . 143083) (-4004 . 143006)
- (-4005 . 142908) (-4006 . 142838) (-4007 . 142761) (-4008 . 142689)
- (-4009 . 142592) (-4010 . 142446) (-4011 . 142390) (-4012 . 141998)
- (-4013 . 141918) (-4014 . 141818) (-4015 . 141688) (-4016 . 141630)
- (-4017 . 141231) (-4018 . 140634) (-4019 . 140491) (-4020 . 140372)
- (-4021 . 140228) (-4022 . 140151) (-4023 . 139952) (-4024 . 139738)
- (-4025 . 139685) (-4026 . 139571) (-4027 . 139505) (-4028 . 139360)
- (-4029 . 137198) (-4030 . 137083) (-4031 . 136987) (-4032 . 136829)
- (-4033 . 136573) (-4034 . 136207) (-4035 . 136155) (-4036 . 136095)
- (-4037 . 135923) (-4038 . 135780) (-4039 . 135682) (-4040 . 135608)
- (-4041 . 135521) (-4042 . 135436) (-4043 . 135350) (-4044 . 135231)
- (-4045 . 135091) (-4046 . 135063) (-4047 . 134788) (-4048 . 130246)
- (-4049 . 130197) (-12 . 130025) (-4051 . 129902) (-4052 . 129768)
- (-4053 . 129588) (-4054 . 110874) (-4055 . 110778) (-4056 . 110634)
- (-4057 . 110542) (-4058 . 110489) (-4059 . 110423) (-4060 . 110270)
- (-4061 . 110089) (-4062 . 110018) (-4063 . 109925) (-4064 . 109817)
- (-4065 . 109116) (-4066 . 106295) (-4067 . 106140) (-4068 . 105985)
- (-4069 . 104700) (-4070 . 104633) (-4071 . 104492) (-4072 . 104267)
- (-4073 . 104143) (-4074 . 103402) (-4075 . 103261) (-4076 . 102583)
- (-4077 . 102404) (-4078 . 102311) (-4079 . 102168) (-4080 . 102136)
- (-4081 . 101856) (-4082 . 101670) (-4083 . 101526) (-4084 . 101267)
- (-4085 . 100958) (-4086 . 100880) (-4087 . 100139) (-4088 . 99893)
- (-4089 . 99750) (-4090 . 99637) (-4091 . 99216) (-4092 . 99143)
- (-4093 . 98940) (-4094 . 98862) (-4095 . 98608) (-4096 . 97738)
- (-4097 . 97050) (-4098 . 96969) (-4099 . 96774) (-4100 . 96509)
- (-4101 . 96455) (-4102 . 96242) (-4103 . 96210) (-4104 . 95925)
- (-4105 . 95829) (-4106 . 95741) (-4107 . 95445) (-4108 . 94869)
- (-4109 . 94816) (-4110 . 94728) (-4111 . 94676) (-4112 . 94604)
- (-4113 . 94497) (-4114 . 94339) (-4115 . 94148) (-4116 . 94041)
- (-4117 . 93932) (-4118 . 93853) (-4119 . 93277) (-4120 . 92945)
- (-4121 . 92614) (-4122 . 92448) (-4123 . 92268) (-4124 . 92198)
- (-4125 . 92005) (-4126 . 91952) (-4127 . 91897) (-4128 . 91817)
- (-4129 . 91599) (-4130 . 91023) (-4131 . 90970) (-4132 . 90817)
- (-4133 . 90500) (-4134 . 90358) (-4135 . 90270) (-4136 . 89602)
- (-4137 . 89571) (-4138 . 88885) (-4139 . 88816) (-4140 . 88746)
- (-4141 . 88439) (-4142 . 88078) (-4143 . 87925) (-4144 . 87857)
- (-4145 . 87440) (-4146 . 87336) (-4147 . 87227) (-4148 . 87111)
- (-4149 . 86954) (-4150 . 86466) (-4151 . 85780) (-4152 . 71666)
- (-4153 . 71611) (* . 67065) (-4155 . 63002) (-4156 . 62833)
- (-4157 . 62410) (-4158 . 62163) (-4159 . 62003) (-4160 . 61902)
- (-4161 . 61744) (-4162 . 61583) (-4163 . 61069) (-4164 . 60668)
- (-4165 . 59919) (-4166 . 59265) (-4167 . 59237) (-4168 . 59151)
- (-4169 . 59080) (-4170 . 58940) (-4171 . 58773) (-4172 . 58701)
- (-4173 . 58604) (-4174 . 58030) (-4175 . 57962) (-4176 . 57710)
- (-4177 . 57394) (-4178 . 57342) (-4179 . 57290) (-4180 . 57222)
- (-4181 . 57119) (-4182 . 56545) (-4183 . 56452) (-4184 . 56349)
- (-4185 . 56282) (-4186 . 56175) (-4187 . 55792) (-4188 . 55740)
- (-4189 . 55617) (-4190 . 55473) (-4191 . 55375) (-4192 . 54871)
- (-4193 . 54645) (-4194 . 54577) (-4195 . 54003) (-4196 . 53887)
- (-4197 . 53792) (-4198 . 53519) (-4199 . 51174) (-4200 . 49870)
- (-4201 . 49784) (-4202 . 49598) (-4203 . 49396) (-4204 . 49343)
- (-4205 . 49269) (-4206 . 49121) (-4207 . 48434) (-4208 . 44768)
- (-4209 . 44664) (-4210 . 44612) (-4211 . 44469) (-4212 . 44342)
- (-4213 . 44062) (-4214 . 43919) (-4215 . 43841) (-4216 . 43749)
- (-4217 . 43503) (-4218 . 43387) (-4219 . 43314) (-4220 . 42987)
- (-4221 . 42629) (-4222 . 42379) (-4223 . 42247) (-4224 . 42174)
- (-4225 . 41717) (-4226 . 41636) (-4227 . 41584) (-4228 . 41429)
- (-4229 . 41288) (-4230 . 41013) (-4231 . 40884) (-4232 . 40799)
- (-4233 . 40355) (-4234 . 40284) (-4235 . 40022) (-4236 . 39917)
- (-4237 . 39831) (-4238 . 39710) (-4239 . 39573) (-4240 . 39449)
- (-4241 . 39276) (-4242 . 38280) (-4243 . 38176) (-4244 . 38047)
- (-4245 . 37913) (-4246 . 37686) (-4247 . 35828) (-4248 . 35512)
- (-4249 . 35332) (-4250 . 35168) (-4251 . 35066) (-4252 . 34887)
- (-4253 . 34719) (-4254 . 34598) (-4255 . 34438) (-4256 . 34272)
- (-4257 . 34157) (-4258 . 33999) (-4259 . 33946) (-4260 . 33860)
- (-4261 . 33683) (-4262 . 33581) (-4263 . 33507) (-4264 . 32986)
- (-4265 . 32888) (-4266 . 32645) (-4267 . 32585) (-4268 . 32535)
- (-4269 . 32416) (-4270 . 32250) (-4271 . 32011) (-4272 . 31953)
- (-4273 . 31893) (-4274 . 31735) (-4275 . 31606) (-4276 . 31556)
- (-4277 . 31500) (-4278 . 31428) (-4279 . 30828) (-4280 . 30614)
- (-4281 . 30361) (-4282 . 30287) (-4283 . 30205) (-4284 . 29992)
- (-4285 . 29911) (-4286 . 29478) (-4287 . 29366) (-4288 . 29224)
- (-4289 . 28927) (-4290 . 28770) (-4291 . 28690) (-4292 . 28530)
- (-4293 . 28474) (-4294 . 28395) (-4295 . 28333) (-4296 . 28209)
- (-4297 . 28024) (-4298 . 27946) (-4299 . 27917) (-4300 . 25502)
- (-4301 . 25350) (-4302 . 25284) (-4303 . 24903) (-4304 . 24819)
- (-4305 . 24729) (-4306 . 24596) (-4307 . 24220) (-4308 . 24077)
- (-4309 . 23716) (-4310 . 23573) (-4311 . 23374) (-4312 . 23308)
- (-4313 . 23136) (-4314 . 23035) (-4315 . 22910) (-4316 . 22344)
- (-4317 . 22250) (-4318 . 22022) (-4319 . 21939) (-4320 . 21720)
- (-4321 . 21522) (-4322 . 21165) (-4323 . 21007) (-4324 . 20835)
- (-4325 . 20617) (-4326 . 20318) (-4327 . 20237) (-4328 . 19671)
- (-4329 . 19146) (-4330 . 18955) (-4331 . 18623) (-4332 . 18538)
- (-4333 . 18402) (-4334 . 18259) (-4335 . 18203) (-4336 . 18134)
- (-4337 . 17962) (-4338 . 17764) (-4339 . 17543) (-4340 . 17344)
- (-4341 . 17288) (-4342 . 17154) (-4343 . 17056) (-4344 . 16929)
- (-4345 . 16633) (-4346 . 16506) (-4347 . 16334) (-4348 . 16024)
- (-4349 . 15995) (-4350 . 15850) (-4351 . 6288) (-4352 . 6148)
- (-4353 . 6082) (-4354 . 5956) (-4355 . 5847) (-4356 . 5588)
- (-4357 . 5346) (-4358 . 4835) (-4359 . 4783) (-4360 . 4713)
- (-4361 . 4569) (-4362 . 4486) (-4363 . 4341) (-4364 . 4286)
- (-4365 . 3048) (-4366 . 2852) (-4367 . 2787) (-4368 . 2735)
- (-4369 . 2657) (-4370 . 2605) (-4371 . 2552) (-4372 . 2364)
- (-4373 . 2226) (-4374 . 1924) (-4375 . 1887) (-4376 . 927)
- (-4377 . 646) (-4378 . 618) (-4379 . 522) (-4380 . 424) (-4381 . 322)
- (-4382 . 30)) \ No newline at end of file
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1168)) (|:| |fn| (-315 (-224)))
+ (|:| -2147 (-1086 (-838 (-224)))) (|:| |abserr| (-224))
+ (|:| |relerr| (-224))))
+ (-5 *2 (-378)) (-5 *1 (-191)))))
+(((*1 *2) (-12 (-5 *2 (-1261)) (-5 *1 (-557)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-947 (-406 (-562)))) (-5 *4 (-1168))
+ (-5 *5 (-1086 (-838 (-224)))) (-5 *2 (-639 (-224))) (-5 *1 (-299)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1170 (-406 (-562)))) (-5 *1 (-189)) (-5 *3 (-562)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-1150)) (-5 *2 (-378)) (-5 *1 (-781)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-592 *2)) (-4 *2 (-38 (-406 (-562)))) (-4 *2 (-1044)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-639 *6) "failed") (-562) *6 *6)) (-4 *6 (-362))
+ (-4 *7 (-1232 *6))
+ (-5 *2 (-2 (|:| |answer| (-583 (-406 *7))) (|:| |a0| *6)))
+ (-5 *1 (-572 *6 *7)) (-5 *3 (-406 *7)))))
+((-1289 . 735386) (-1290 . 735300) (-1291 . 735220) (-1292 . 735136)
+ (-1293 . 734991) (-1294 . 734941) (-1295 . 734731) (-1296 . 734657)
+ (-1297 . 734563) (-1298 . 734511) (-1299 . 734348) (-1300 . 733867)
+ (-1301 . 733763) (-1302 . 733572) (-1303 . 733516) (-1304 . 733457)
+ (-1305 . 733375) (-1306 . 732768) (-1307 . 732652) (-1308 . 732586)
+ (-1309 . 732518) (-1310 . 732434) (-1311 . 732327) (-1312 . 732255)
+ (-1313 . 731781) (-1314 . 731698) (-1315 . 731590) (-1316 . 731495)
+ (-1317 . 731376) (-1318 . 730989) (-1319 . 730931) (-1320 . 730667)
+ (-1321 . 730067) (-1322 . 729724) (-1323 . 729536) (-1324 . 729381)
+ (-1325 . 729308) (-1326 . 729256) (-1327 . 729088) (-1328 . 728972)
+ (-1329 . 728902) (-1330 . 728696) (-1331 . 728482) (-1332 . 728363)
+ (-1333 . 728048) (-1334 . 727948) (-1335 . 727846) (-1336 . 727784)
+ (-1337 . 727566) (-1338 . 727497) (-1339 . 727403) (-1340 . 727326)
+ (-1341 . 726834) (-1342 . 726724) (-1343 . 726471) (-1344 . 726443)
+ (-1345 . 726125) (-1346 . 726051) (-1347 . 725907) (-1348 . 725840)
+ (-1349 . 725763) (-1350 . 725681) (-1351 . 725596) (-1352 . 725060)
+ (-1353 . 724986) (-1354 . 724870) (-1355 . 724760) (-1356 . 724597)
+ (-1357 . 724422) (-1358 . 724329) (-1359 . 723907) (-1360 . 723516)
+ (-1361 . 723406) (-1362 . 723212) (-1363 . 723130) (-1364 . 723056)
+ (-1365 . 722977) (-1366 . 722879) (-1367 . 722517) (-1368 . 722489)
+ (-1369 . 722202) (-1370 . 722149) (-1371 . 721611) (-1372 . 721477)
+ (-1373 . 721368) (-1374 . 721155) (-1375 . 721104) (-1376 . 720931)
+ (-1377 . 719302) (-1378 . 719165) (-1379 . 719102) (-1380 . 718996)
+ (-1381 . 718855) (-1382 . 717851) (-1383 . 717478) (-1384 . 716834)
+ (-1385 . 716781) (-1386 . 716700) (-1387 . 716222) (-1388 . 716080)
+ (-1389 . 715214) (-1390 . 715143) (-1391 . 714466) (-1392 . 714401)
+ (-1393 . 714317) (-1394 . 714244) (-1395 . 713813) (-1396 . 713714)
+ (-1397 . 713613) (-1398 . 713180) (-1399 . 712878) (-1400 . 712699)
+ (-1401 . 711325) (-1402 . 711217) (-1403 . 711008) (-1404 . 710790)
+ (-1405 . 710650) (-1406 . 709974) (-1407 . 709528) (-1408 . 709420)
+ (-1409 . 709254) (-1410 . 709091) (-1411 . 708979) (-1412 . 708927)
+ (-1413 . 708853) (-1414 . 708646) (-1415 . 708509) (-1416 . 708453)
+ (-1417 . 708347) (-1418 . 708289) (-1419 . 708231) (-1420 . 707799)
+ (-1421 . 707186) (-1422 . 707031) (-1423 . 706954) (-1424 . 706812)
+ (-1425 . 706586) (-1426 . 705782) (-1427 . 705694) (-1428 . 705403)
+ (-1429 . 705227) (-1430 . 705098) (-1431 . 704668) (-1432 . 704475)
+ (-1433 . 700477) (-1434 . 700050) (-1435 . 699949) (-1436 . 699894)
+ (-1437 . 699597) (-1438 . 699545) (-1439 . 699471) (-1440 . 699401)
+ (-1441 . 699193) (-1442 . 699050) (-1443 . 698848) (-1444 . 698753)
+ (-1445 . 698679) (-1446 . 698617) (-1447 . 697967) (-1448 . 697849)
+ (-1449 . 697690) (-1450 . 697619) (-1451 . 697462) (-1452 . 697408)
+ (-1453 . 697137) (-1454 . 696928) (-1455 . 696502) (-1456 . 696428)
+ (-1457 . 696301) (-1458 . 695531) (-1459 . 695432) (-1460 . 694794)
+ (-1461 . 694711) (-1462 . 694593) (-1463 . 694463) (-1464 . 694377)
+ (-1465 . 694326) (-1466 . 694246) (-1467 . 694047) (-1468 . 693892)
+ (-1469 . 693484) (-1470 . 691646) (-1471 . 691461) (-1472 . 691371)
+ (-1473 . 691168) (-1474 . 691083) (-1475 . 690484) (-1476 . 690292)
+ (-1477 . 689783) (-1478 . 689723) (-1479 . 688969) (-1480 . 688809)
+ (-1481 . 688738) (-1482 . 688460) (-1483 . 688383) (-1484 . 688145)
+ (-1485 . 688033) (-1486 . 687683) (-1487 . 686173) (-1488 . 686020)
+ (-1489 . 685967) (-1490 . 685893) (-1491 . 685666) (-1492 . 685593)
+ (-1493 . 685066) (-1494 . 685010) (-1495 . 684839) (-1496 . 684786)
+ (-1497 . 684370) (-1498 . 684217) (-1499 . 682669) (-1500 . 682539)
+ (-1501 . 682477) (-1502 . 681389) (-1503 . 678462) (-1504 . 678088)
+ (-1505 . 678036) (-1506 . 677905) (-1507 . 677673) (-1508 . 677154)
+ (-1509 . 677075) (-1510 . 676929) (-1511 . 676856) (-1512 . 676743)
+ (-1513 . 676691) (-1514 . 676601) (-1515 . 676463) (-1516 . 676215)
+ (-1517 . 676057) (-1518 . 676004) (-1519 . 675949) (-1520 . 675887)
+ (-1521 . 675292) (-1522 . 675231) (-1523 . 675137) (-1524 . 674851)
+ (-1525 . 674115) (-1526 . 674043) (-1527 . 673887) (-1528 . 673750)
+ (-1529 . 673218) (-1530 . 673166) (-1531 . 673070) (-1532 . 672996)
+ (-1533 . 672872) (-1534 . 672710) (-1535 . 672531) (-1536 . 672312)
+ (-1537 . 672211) (-1538 . 672026) (-1539 . 671973) (-1540 . 671902)
+ (-1541 . 671796) (-1542 . 671615) (-1543 . 671494) (-1544 . 671309)
+ (-1545 . 671208) (-1546 . 671122) (-1547 . 670995) (-1548 . 670892)
+ (-1549 . 670795) (-1550 . 670366) (-1551 . 670088) (-1552 . 670036)
+ (-1553 . 669441) (-1554 . 669276) (-1555 . 668095) (-1556 . 668017)
+ (-1557 . 667947) (-1558 . 667840) (-1559 . 667771) (-1560 . 667127)
+ (-1561 . 667055) (-1562 . 666967) (-1563 . 664835) (-1564 . 664748)
+ (-1565 . 664641) (-1566 . 663931) (-1567 . 663357) (-1568 . 662496)
+ (-1569 . 662467) (-1570 . 662228) (-1571 . 662149) (-1572 . 661833)
+ (-1573 . 660661) (-1574 . 660607) (-1575 . 660394) (-1576 . 660289)
+ (-1577 . 660194) (-1578 . 659951) (-1579 . 659793) (-1580 . 659670)
+ (-1581 . 657255) (-1582 . 657193) (-1583 . 657022) (-1584 . 656788)
+ (-1585 . 656673) (-1586 . 656322) (-1587 . 654946) (-1588 . 653500)
+ (-1589 . 653162) (-1590 . 653023) (-1591 . 652964) (-1592 . 652909)
+ (-1593 . 652808) (-1594 . 652635) (-1595 . 652483) (-1596 . 652362)
+ (-1597 . 652255) (-1598 . 652108) (-1599 . 652074) (-1600 . 650937)
+ (-1601 . 650440) (-1602 . 649032) (-1603 . 648694) (-1604 . 648471)
+ (-1605 . 648403) (-1606 . 647301) (-1607 . 647172) (-1608 . 647118)
+ (-1609 . 647052) (-1610 . 646965) (-1611 . 646832) (-1612 . 646691)
+ (-1613 . 646516) (-1614 . 646392) (-1615 . 646339) (-1616 . 646224)
+ (-1617 . 646164) (-1618 . 646055) (-1619 . 645674) (-1620 . 645594)
+ (-1621 . 645344) (-1622 . 644947) (-1623 . 644704) (-1624 . 644673)
+ (-1625 . 643203) (-1626 . 643057) (-1627 . 642437) (-1628 . 642219)
+ (-1629 . 642135) (-1630 . 641908) (-1631 . 641742) (-1632 . 641690)
+ (-1633 . 641637) (-1634 . 641524) (-1635 . 636010) (-1636 . 635815)
+ (-1637 . 635744) (-1638 . 635240) (-1639 . 635150) (-1640 . 635027)
+ (-1641 . 634970) (-1642 . 634902) (-1643 . 634759) (-1644 . 634367)
+ (-1645 . 633840) (-1646 . 633480) (-1647 . 633397) (-1648 . 633064)
+ (-1649 . 632963) (-1650 . 632830) (-1651 . 632419) (-1652 . 632307)
+ (-1653 . 632279) (-1654 . 632199) (-1655 . 631278) (-1656 . 631124)
+ (-1657 . 630669) (-1658 . 630617) (-1659 . 630583) (-1660 . 630304)
+ (-1661 . 630043) (-1662 . 629959) (-1663 . 629583) (-1664 . 629475)
+ (-1665 . 629401) (-1666 . 629221) (-1667 . 629135) (-1668 . 629031)
+ (-1669 . 628809) (-1670 . 628460) (-1671 . 627988) (-1672 . 627875)
+ (-1673 . 627615) (-1674 . 627299) (-1675 . 627228) (-1676 . 627085)
+ (-1677 . 626743) (-1678 . 626663) (-1679 . 626492) (-1680 . 626421)
+ (-1681 . 626199) (-1682 . 625999) (-1683 . 625817) (-1684 . 625605)
+ (-1685 . 625244) (-1686 . 625191) (-1687 . 625122) (-1688 . 624985)
+ (-1689 . 624891) (-1690 . 624789) (-1691 . 624692) (-1692 . 624637)
+ (-1693 . 624568) (-1694 . 623352) (-1695 . 623243) (-1696 . 623190)
+ (-1697 . 622991) (-1698 . 622538) (-1699 . 622145) (-1700 . 622088)
+ (-1701 . 622035) (-1702 . 621820) (-1703 . 621743) (-1704 . 621352)
+ (-1705 . 621278) (-1706 . 621087) (-1707 . 621007) (-1708 . 620955)
+ (-1709 . 620836) (-1710 . 620770) (-1711 . 620502) (-1712 . 619899)
+ (-1713 . 618603) (-1714 . 618499) (-1715 . 618419) (-1716 . 618130)
+ (-1717 . 618047) (-1718 . 617762) (-1719 . 617694) (-1720 . 617475)
+ (-1721 . 617156) (-1722 . 617063) (-1723 . 616824) (-1724 . 616723)
+ (-1725 . 616478) (-1726 . 616368) (-1727 . 615939) (-1728 . 615855)
+ (-1729 . 615717) (-1730 . 615640) (-1731 . 615533) (-1732 . 615238)
+ (-1733 . 614966) (-1734 . 614885) (-1735 . 614791) (-1736 . 614689)
+ (-1737 . 614564) (-1738 . 614498) (-1739 . 613186) (-1740 . 613080)
+ (-1741 . 612787) (-1742 . 611759) (-1743 . 611449) (-1744 . 611305)
+ (-1745 . 611231) (-1746 . 611009) (-1747 . 610908) (-1748 . 610482)
+ (-1749 . 610337) (-1750 . 610280) (-1751 . 610186) (-1752 . 609939)
+ (-1753 . 609842) (-1754 . 609613) (-1755 . 609529) (-1756 . 609476)
+ (-1757 . 609266) (-1758 . 609108) (-1759 . 608827) (-1760 . 608712)
+ (-1761 . 608481) (-1762 . 607620) (-1763 . 607046) (-1764 . 606923)
+ (-1765 . 606851) (-1766 . 606623) (-1767 . 606519) (-1768 . 606463)
+ (-1769 . 606341) (-1770 . 606259) (-1771 . 606172) (-1772 . 605980)
+ (-1773 . 605909) (-1774 . 605746) (-1775 . 605475) (-1776 . 605148)
+ (-1777 . 605065) (-1778 . 604458) (-1779 . 604329) (-1780 . 603902)
+ (-1781 . 603795) (-1782 . 603742) (-1783 . 603576) (-1784 . 603388)
+ (-1785 . 603229) (-1786 . 603176) (-1787 . 603079) (-1788 . 602734)
+ (-1789 . 602092) (-1790 . 601873) (-1791 . 601514) (-1792 . 600912)
+ (-1793 . 600833) (-1794 . 600761) (-1795 . 600683) (-1796 . 600584)
+ (-1797 . 600498) (-1798 . 600411) (-1799 . 600377) (-1800 . 600280)
+ (-1801 . 600047) (-1802 . 599978) (-1803 . 599780) (-1804 . 599684)
+ (-1805 . 599632) (-1806 . 596333) (-1807 . 596196) (-1808 . 595950)
+ (-1809 . 595891) (-1810 . 595794) (-1811 . 595671) (-1812 . 595620)
+ (-1813 . 595450) (-1814 . 595337) (-1815 . 595242) (-1816 . 595076)
+ (-1817 . 594911) (-1818 . 594793) (-1819 . 594703) (-1820 . 594530)
+ (-1821 . 594423) (-1822 . 593957) (-1823 . 593757) (-1824 . 593517)
+ (-1825 . 593449) (-1826 . 593363) (-1827 . 593234) (-1828 . 593096)
+ (-1829 . 592891) (-1830 . 592762) (-1831 . 592659) (-1832 . 592592)
+ (-1833 . 592449) (-1834 . 592308) (-1835 . 592253) (-1836 . 591067)
+ (-1837 . 590923) (-1838 . 590807) (-1839 . 590639) (-1840 . 590605)
+ (-1841 . 589496) (-1842 . 589397) (-1843 . 589166) (-1844 . 589022)
+ (-1845 . 588710) (-1846 . 588657) (-1847 . 587475) (-1848 . 587423)
+ (-1849 . 587328) (-1850 . 587184) (-1851 . 586949) (-1852 . 586888)
+ (-1853 . 586730) (-1854 . 586512) (-1855 . 586458) (-1856 . 586291)
+ (-1857 . 586084) (-1858 . 585927) (-1859 . 583721) (-1860 . 583603)
+ (-1861 . 583475) (-1862 . 583202) (-1863 . 583174) (-1864 . 583142)
+ (-1865 . 583091) (-1866 . 582996) (-1867 . 582789) (-1868 . 582703)
+ (-1869 . 582387) (-1870 . 582196) (-1871 . 582076) (-1872 . 581993)
+ (-1873 . 581821) (-1874 . 581663) (-1875 . 581511) (-1876 . 581404)
+ (-1877 . 581331) (-1878 . 581151) (-1879 . 581083) (-1880 . 580921)
+ (-1881 . 580735) (-1882 . 580676) (-1883 . 580615) (-1884 . 580541)
+ (-1885 . 580395) (-1886 . 580330) (-1887 . 580231) (-1888 . 580148)
+ (-1889 . 580000) (-1890 . 579887) (-1891 . 579801) (-1892 . 579751)
+ (-1893 . 579528) (-1894 . 579326) (-1895 . 579096) (-1896 . 578931)
+ (-1897 . 578824) (-1898 . 578544) (-1899 . 578394) (-1900 . 578310)
+ (-1901 . 578211) (-1902 . 577572) (-1903 . 577516) (-1904 . 577285)
+ (-1905 . 577146) (-1906 . 577090) (-1907 . 576937) (-1908 . 576530)
+ (-1909 . 576477) (-1910 . 576295) (-1911 . 576228) (-1912 . 575976)
+ (-1913 . 575678) (-1914 . 575327) (-1915 . 575226) (-1916 . 575145)
+ (-1917 . 575029) (-1918 . 574970) (-1919 . 574741) (-1920 . 574682)
+ (-1921 . 574501) (-1922 . 574434) (-1923 . 574400) (-1924 . 574326)
+ (-1925 . 574253) (-1926 . 573669) (-1927 . 573617) (-1928 . 573537)
+ (-1929 . 573442) (-1930 . 573018) (-1931 . 572945) (-1932 . 572820)
+ (-1933 . 572062) (-1934 . 571909) (-1935 . 571766) (-1936 . 571618)
+ (-1937 . 571243) (-1938 . 570937) (-1939 . 570622) (-1940 . 570437)
+ (-1941 . 570336) (-1942 . 569487) (-1943 . 569429) (-1944 . 569355)
+ (-1945 . 569303) (-1946 . 569151) (-1947 . 569047) (-1948 . 568931)
+ (-1949 . 568327) (-1950 . 568174) (-1951 . 568110) (-1952 . 567906)
+ (-1953 . 567797) (-1954 . 564176) (-1955 . 564124) (-1956 . 564001)
+ (-1957 . 563833) (-1958 . 563628) (-1959 . 563490) (-1960 . 563397)
+ (-1961 . 563227) (-1962 . 563099) (-1963 . 562999) (-1964 . 562871)
+ (-1965 . 562840) (-1966 . 562766) (-1967 . 562656) (-1968 . 562164)
+ (-1969 . 562098) (-1970 . 561794) (-1971 . 561500) (-1972 . 561357)
+ (-1973 . 561305) (-1974 . 561190) (-1975 . 561066) (-1976 . 560183)
+ (-1977 . 559736) (-1978 . 559457) (-1979 . 559347) (-1980 . 559220)
+ (-1981 . 559096) (-1982 . 558993) (-1983 . 558602) (-1984 . 558441)
+ (-1985 . 558032) (-1986 . 557867) (-1987 . 557769) (-1988 . 557657)
+ (-1989 . 557513) (-1990 . 557010) (-1991 . 556593) (-1992 . 556435)
+ (-1993 . 554166) (-1994 . 553886) (-1995 . 553748) (-1996 . 553501)
+ (-1997 . 552841) (-1998 . 552757) (-1999 . 552658) (-2000 . 552590)
+ (-2001 . 552359) (-2002 . 552207) (-2003 . 552009) (-2004 . 551657)
+ (-2005 . 551550) (-2006 . 551476) (-2007 . 551421) (-2008 . 551278)
+ (-2009 . 551200) (-2010 . 551147) (-2011 . 551076) (-2012 . 550913)
+ (-2013 . 550421) (-2014 . 550320) (-2015 . 549869) (-2016 . 549168)
+ (-2017 . 549064) (-2018 . 548879) (-2019 . 548717) (-2020 . 548639)
+ (-2021 . 548466) (-2022 . 548399) (-2023 . 548254) (-2024 . 548047)
+ (-2025 . 547951) (-2026 . 547705) (-2027 . 547354) (-2028 . 547108)
+ (-2029 . 546907) (-2030 . 546777) (-2031 . 546664) (-2032 . 546520)
+ (-2033 . 546434) (-2034 . 546339) (-2035 . 546068) (-2036 . 545164)
+ (-2037 . 545000) (-2038 . 544944) (-2039 . 544814) (-2040 . 544726)
+ (-2041 . 544472) (-2042 . 544356) (-2043 . 544211) (-2044 . 544159)
+ (-2045 . 544090) (-2046 . 544012) (-2047 . 543910) (-2048 . 543749)
+ (-2049 . 543667) (-2050 . 543340) (-2051 . 543303) (-2052 . 543200)
+ (-2053 . 543127) (-2054 . 542971) (-2055 . 542083) (-2056 . 542023)
+ (-2057 . 541670) (-2058 . 541567) (-2059 . 541438) (-2060 . 541359)
+ (-2061 . 541149) (-2062 . 541078) (-2063 . 540935) (-2064 . 540685)
+ (-2065 . 540653) (-2066 . 540273) (-2067 . 540166) (-2068 . 539845)
+ (-2069 . 539792) (-2070 . 539476) (-2071 . 539374) (-2072 . 539261)
+ (-2073 . 539195) (-2074 . 538665) (-2075 . 538533) (-2076 . 538481)
+ (-2077 . 538414) (-2078 . 538358) (-2079 . 538181) (-2080 . 538084)
+ (-2081 . 537859) (-2082 . 537762) (-2083 . 537668) (-2084 . 537640)
+ (-2085 . 537519) (-2086 . 537446) (-2087 . 537322) (-2088 . 537265)
+ (-2089 . 537029) (-2090 . 536850) (-2091 . 536489) (-2092 . 536160)
+ (-2093 . 536072) (-2094 . 535978) (-2095 . 535892) (-2096 . 535732)
+ (-2097 . 535275) (-2098 . 535135) (-2099 . 535069) (-2100 . 534896)
+ (-2101 . 534824) (-2102 . 534378) (-2103 . 534301) (-2104 . 534143)
+ (-2105 . 534090) (-2106 . 533975) (-2107 . 532713) (-2108 . 532632)
+ (-2109 . 532348) (-2110 . 531283) (-2111 . 531137) (-2112 . 531044)
+ (-2113 . 529704) (-2114 . 529639) (-2115 . 529557) (-2116 . 529418)
+ (-2117 . 529366) (-2118 . 528845) (-2119 . 528817) (-2120 . 528738)
+ (-2121 . 528644) (-2122 . 528591) (-2123 . 528361) (-2124 . 528306)
+ (-2125 . 527964) (-2126 . 527809) (-2127 . 527701) (-2128 . 527617)
+ (-2129 . 527522) (-2130 . 527423) (-2131 . 527370) (-2132 . 527288)
+ (-2133 . 527016) (-2134 . 526930) (-2135 . 526273) (-2136 . 526132)
+ (-2137 . 525927) (-2138 . 525843) (-2139 . 525816) (-2140 . 525269)
+ (-2141 . 525081) (-2142 . 524887) (-2143 . 524630) (-2144 . 524467)
+ (-2145 . 524393) (-2146 . 524118) (-2147 . 523979) (-2148 . 523881)
+ (-2149 . 523759) (-2150 . 523707) (-2151 . 523554) (-2152 . 523523)
+ (-2153 . 523398) (-2154 . 522919) (-2155 . 522648) (-2156 . 522519)
+ (-2157 . 522433) (-2158 . 522088) (-2159 . 521979) (-2160 . 521893)
+ (-2161 . 521780) (-2162 . 521358) (-2163 . 521270) (-2164 . 520917)
+ (-2165 . 520832) (-2166 . 520517) (-2167 . 520387) (-2168 . 520256)
+ (-2169 . 520098) (-2170 . 519991) (-2171 . 519735) (-2172 . 518485)
+ (-2173 . 518381) (-2174 . 517997) (-2175 . 517888) (-2176 . 517444)
+ (-2177 . 517382) (-2178 . 517252) (-2179 . 517151) (-2180 . 517023)
+ (-2181 . 516970) (-2182 . 516861) (-2183 . 516700) (-2184 . 516616)
+ (-2185 . 516544) (-2186 . 516473) (-2187 . 516390) (-2188 . 516266)
+ (-2189 . 516138) (-2190 . 515960) (-2191 . 515819) (-2192 . 515746)
+ (-2193 . 515203) (-2194 . 514938) (-2195 . 514885) (-2196 . 514780)
+ (-2197 . 514643) (-2198 . 514540) (-2199 . 514390) (-2200 . 514195)
+ (-2201 . 513813) (-2202 . 513563) (-2203 . 513466) (-2204 . 513306)
+ (-2205 . 512114) (-2206 . 512028) (-2207 . 511857) (-2208 . 511605)
+ (-2209 . 511480) (-2210 . 511308) (-2211 . 510870) (-2212 . 510476)
+ (-2213 . 510229) (-2214 . 509937) (-2215 . 509814) (-2216 . 509755)
+ (-2217 . 509634) (-2218 . 509524) (-2219 . 509304) (-2220 . 509044)
+ (-2221 . 508741) (-2222 . 508668) (-2223 . 508613) (-2224 . 508542)
+ (-2225 . 508486) (-2226 . 508271) (-2227 . 508143) (-2228 . 508006)
+ (-2229 . 507836) (-2230 . 507738) (-2231 . 507624) (-2232 . 507506)
+ (-2233 . 507373) (-2234 . 507256) (-2235 . 507192) (-2236 . 507121)
+ (-2237 . 507016) (-2238 . 506878) (-2239 . 506060) (-2240 . 506008)
+ (-2241 . 505884) (-2242 . 505679) (-2243 . 505460) (-2244 . 505145)
+ (-2245 . 505048) (-2246 . 504748) (-2247 . 504399) (-2248 . 504344)
+ (-2249 . 504256) (-2250 . 502142) (-2251 . 501969) (-2252 . 501804)
+ (-2253 . 501652) (-2254 . 501516) (-2255 . 501329) (-2256 . 501232)
+ (-2257 . 500945) (-2258 . 500892) (-2259 . 500748) (-2260 . 499752)
+ (-2261 . 499699) (-2262 . 499618) (-2263 . 499544) (-2264 . 499446)
+ (-2265 . 499366) (-2266 . 497778) (-2267 . 497655) (-2268 . 497603)
+ (-2269 . 497127) (-2270 . 497023) (-2271 . 496917) (-2272 . 496615)
+ (-2273 . 496510) (-2274 . 496370) (-2275 . 496200) (-2276 . 492864)
+ (-2277 . 492426) (-2278 . 492082) (-2279 . 492030) (-2280 . 491901)
+ (-2281 . 491749) (-2282 . 491554) (-2283 . 491452) (-2284 . 491293)
+ (-2285 . 491122) (-2286 . 490974) (-2287 . 490852) (-2288 . 490742)
+ (-2289 . 490608) (-2290 . 490492) (-2291 . 490440) (-2292 . 490347)
+ (-2293 . 490274) (-2294 . 490027) (-2295 . 489976) (-2296 . 489942)
+ (-2297 . 489908) (-2298 . 489542) (-2299 . 489392) (-2300 . 489165)
+ (-2301 . 489066) (-2302 . 488989) (-2303 . 488432) (-2304 . 488362)
+ (-2305 . 488276) (-2306 . 488242) (-2307 . 488193) (-2308 . 488003)
+ (-2309 . 487514) (-2310 . 487198) (-2311 . 486936) (-2312 . 486758)
+ (-2313 . 486658) (-2314 . 486571) (-2315 . 486516) (-2316 . 486388)
+ (-2317 . 486300) (-2318 . 485881) (-2319 . 485727) (-2320 . 485547)
+ (-2321 . 485457) (-2322 . 485404) (-2323 . 485025) (-2324 . 484955)
+ (-2325 . 484881) (-2326 . 484560) (-2327 . 484396) (-2328 . 484065)
+ (-2329 . 483505) (-2330 . 483286) (-2331 . 482955) (-2332 . 482142)
+ (-2333 . 482085) (-2334 . 481936) (-2335 . 481877) (-2336 . 481782)
+ (-2337 . 479519) (-2338 . 479417) (-2339 . 479329) (-2340 . 479115)
+ (-2341 . 478532) (-2342 . 478449) (-2343 . 473336) (-2344 . 473279)
+ (-2345 . 473205) (-2346 . 472241) (-2347 . 472191) (-2348 . 472121)
+ (-2349 . 471989) (-2350 . 471810) (-2351 . 471736) (-2352 . 471623)
+ (-2353 . 471560) (-2354 . 471507) (-2355 . 471120) (-2356 . 470909)
+ (-2357 . 470830) (-2358 . 470773) (-2359 . 470652) (-2360 . 470543)
+ (-2361 . 470448) (-2362 . 469930) (-2363 . 469829) (-2364 . 469699)
+ (-2365 . 468945) (-2366 . 467403) (-2367 . 467303) (-2368 . 467143)
+ (-2369 . 467112) (-2370 . 467019) (-2371 . 466963) (-2372 . 466858)
+ (-2373 . 466639) (-2374 . 466540) (-2375 . 466431) (-2376 . 466285)
+ (-2377 . 465949) (-2378 . 465783) (-2379 . 465491) (-2380 . 465364)
+ (-2381 . 465300) (-2382 . 464994) (-2383 . 464828) (-2384 . 464683)
+ (-2385 . 464584) (-2386 . 464480) (-2387 . 464365) (-2388 . 464224)
+ (-2389 . 464153) (-2390 . 463966) (-2391 . 463636) (-2392 . 463485)
+ (-2393 . 463380) (-2394 . 463222) (-2395 . 463103) (-2396 . 463051)
+ (-2397 . 462985) (-2398 . 462898) (-2399 . 462785) (-2400 . 462647)
+ (-2401 . 462613) (-2402 . 462018) (-2403 . 461461) (-2404 . 461408)
+ (-2405 . 461299) (-2406 . 460838) (-2407 . 460660) (-2408 . 460469)
+ (-2409 . 460392) (-2410 . 460209) (-2411 . 460085) (-2412 . 459539)
+ (-2413 . 459453) (-2414 . 459013) (-2415 . 458945) (-2416 . 458849)
+ (-2417 . 458790) (-2418 . 458676) (-2419 . 458607) (-2420 . 458504)
+ (-2421 . 458476) (-2422 . 458357) (-2423 . 458250) (-2424 . 458025)
+ (-2425 . 457900) (-2426 . 457832) (-2427 . 457758) (-2428 . 457709)
+ (-2429 . 457630) (-2430 . 457559) (-2431 . 457200) (-2432 . 456864)
+ (-2433 . 456684) (-2434 . 456614) (-2435 . 456341) (-2436 . 456132)
+ (-2437 . 456065) (-2438 . 455869) (-2439 . 455792) (-2440 . 455764)
+ (-2441 . 455709) (-2442 . 455584) (-2443 . 455095) (-2444 . 455025)
+ (-2445 . 454962) (-2446 . 454757) (-2447 . 454678) (-2448 . 454610)
+ (-2449 . 454014) (-2450 . 453936) (-2451 . 453837) (-2452 . 453782)
+ (-2453 . 453663) (-2454 . 453612) (-2455 . 453419) (-2456 . 453349)
+ (-2457 . 453279) (-2458 . 453205) (-2459 . 452972) (-2460 . 452879)
+ (-2461 . 452785) (-2462 . 452654) (-2463 . 451688) (-2464 . 451361)
+ (-2465 . 451308) (-2466 . 451209) (-2467 . 451150) (-2468 . 450854)
+ (-2469 . 450558) (-2470 . 449924) (-2471 . 449685) (-2472 . 449633)
+ (-2473 . 449491) (-2474 . 449436) (-2475 . 449383) (-2476 . 449328)
+ (-2477 . 449121) (-2478 . 449069) (-2479 . 448850) (-2480 . 448556)
+ (-2481 . 448262) (-2482 . 448210) (-2483 . 447995) (-2484 . 447915)
+ (-2485 . 447863) (-2486 . 447793) (-2487 . 447729) (-2488 . 447207)
+ (-2489 . 447179) (-2490 . 446733) (-2491 . 446363) (-2492 . 446002)
+ (-2493 . 445901) (-2494 . 445841) (-2495 . 445393) (-2496 . 445313)
+ (-2497 . 445095) (-2498 . 444983) (-2499 . 444827) (-2500 . 444723)
+ (-2501 . 444657) (-2502 . 444513) (-2503 . 444418) (-2504 . 444390)
+ (-2505 . 444312) (-2506 . 444259) (-2507 . 444148) (-2508 . 444089)
+ (-2509 . 443995) (-2510 . 443839) (-2511 . 443783) (-2512 . 443623)
+ (-2513 . 443444) (-2514 . 443326) (-2515 . 443185) (-2516 . 443032)
+ (-2517 . 442980) (-2518 . 442909) (-2519 . 442698) (-2520 . 442626)
+ (-2521 . 442140) (-2522 . 442070) (-2523 . 441915) (-2524 . 441710)
+ (-2525 . 441451) (-2526 . 441134) (-2527 . 441009) (-2528 . 440896)
+ (-2529 . 440766) (-2530 . 440651) (-2531 . 440493) (-2532 . 440183)
+ (-2533 . 439871) (-2534 . 439822) (-2535 . 439574) (-2536 . 439466)
+ (-2537 . 439324) (-2538 . 439208) (-2539 . 439049) (-2540 . 438869)
+ (-2541 . 438766) (-2542 . 438655) (-2543 . 438532) (-2544 . 438446)
+ (-2545 . 438309) (-2546 . 438221) (-2547 . 437980) (-2548 . 437897)
+ (-2549 . 437760) (-2550 . 437686) (-2551 . 437614) (-2552 . 437563)
+ (-2553 . 437511) (-2554 . 437385) (-2555 . 436717) (-2556 . 436586)
+ (-2557 . 436393) (-2558 . 436229) (-2559 . 436155) (-2560 . 436027)
+ (-2561 . 435678) (-2562 . 435499) (-2563 . 435440) (-2564 . 435298)
+ (-2565 . 435211) (-2566 . 435142) (-2567 . 435059) (-2568 . 434855)
+ (-2569 . 434673) (-2570 . 434613) (-2571 . 434553) (-2572 . 434177)
+ (-2573 . 434080) (-2574 . 433997) (-2575 . 433866) (-2576 . 433796)
+ (-2577 . 433516) (-2578 . 432921) (-2579 . 432831) (-2580 . 432301)
+ (-2581 . 432177) (-2582 . 431790) (-2583 . 431631) (-2584 . 431594)
+ (-2585 . 431528) (-2586 . 431136) (-2587 . 430775) (-2588 . 430665)
+ (-2589 . 430605) (-2590 . 430506) (-2591 . 430453) (-2592 . 430346)
+ (-2593 . 430201) (-2594 . 430069) (-2595 . 429995) (-2596 . 429830)
+ (-2597 . 429677) (-2598 . 429487) (-2599 . 428944) (-2600 . 428600)
+ (-2601 . 428114) (-2602 . 427855) (-2603 . 427599) (-2604 . 427239)
+ (-2605 . 426869) (-2606 . 425990) (-2607 . 425922) (-2608 . 425144)
+ (-2609 . 424964) (-2610 . 424863) (-2611 . 424687) (-2612 . 424615)
+ (-2613 . 424492) (-2614 . 424413) (-2615 . 424303) (-2616 . 423886)
+ (-2617 . 423826) (-2618 . 423761) (-2619 . 423660) (-2620 . 423278)
+ (-2621 . 423207) (-2622 . 423113) (-2623 . 423030) (-2624 . 422981)
+ (-2625 . 422877) (-2626 . 422828) (-2627 . 422650) (-2628 . 422459)
+ (-2629 . 422427) (-2630 . 422318) (-2631 . 422159) (-2632 . 422030)
+ (-2633 . 421887) (-2634 . 421778) (-2635 . 421695) (-2636 . 421537)
+ (-2637 . 421460) (-2638 . 421307) (-2639 . 420309) (-2640 . 420177)
+ (-2641 . 419959) (-2642 . 419735) (-2643 . 419578) (-2644 . 419432)
+ (-2645 . 419312) (-2646 . 419260) (-2647 . 419194) (-2648 . 419091)
+ (-2649 . 419062) (-2650 . 418956) (-2651 . 418729) (-2652 . 418630)
+ (-2653 . 418511) (-2654 . 418023) (-2655 . 417963) (-2656 . 417511)
+ (-2657 . 416595) (-2658 . 416522) (-2659 . 416451) (-2660 . 416350)
+ (-2661 . 416291) (-2662 . 416235) (-2663 . 416096) (-2664 . 416041)
+ (-2665 . 415986) (-2666 . 415558) (-2667 . 415479) (-2668 . 415288)
+ (-2669 . 415164) (-2670 . 415110) (-2671 . 414716) (-2672 . 414263)
+ (-2673 . 414038) (-2674 . 413784) (-2675 . 413615) (-2676 . 413390)
+ (-2677 . 413306) (-2678 . 413225) (-2679 . 412947) (-2680 . 412835)
+ (-2681 . 412709) (-2682 . 412681) (-2683 . 412628) (-2684 . 412524)
+ (-2685 . 411811) (-2686 . 411728) (-2687 . 411305) (-2688 . 411248)
+ (-2689 . 411081) (-2690 . 410977) (-2691 . 410865) (-2692 . 410810)
+ (-2693 . 409608) (-2694 . 409504) (-2695 . 409433) (-2696 . 409185)
+ (-2697 . 408938) (-2698 . 408692) (-2699 . 408370) (-2700 . 408239)
+ (-2701 . 408059) (-2702 . 408006) (-2703 . 407898) (-2704 . 407840)
+ (-2705 . 407676) (-2706 . 407624) (-2707 . 407464) (-2708 . 407218)
+ (-2709 . 407139) (-2710 . 406788) (-2711 . 406321) (-2712 . 406265)
+ (-2713 . 405954) (-2714 . 403173) (-2715 . 403039) (-2716 . 402903)
+ (-2717 . 402802) (-2718 . 402691) (-2719 . 402449) (-2720 . 402291)
+ (-2721 . 402071) (-2722 . 401915) (-2723 . 401818) (-2724 . 401769)
+ (-2725 . 401669) (-2726 . 401570) (-2727 . 401324) (-2728 . 401166)
+ (-2729 . 400987) (-2730 . 400910) (-2731 . 400787) (-2732 . 400703)
+ (-2733 . 400570) (-2734 . 400471) (-2735 . 400375) (-2736 . 399672)
+ (-2737 . 399511) (-2738 . 399452) (-2739 . 399362) (-2740 . 399240)
+ (-2741 . 399157) (-2742 . 399046) (-2743 . 398806) (-2744 . 398738)
+ (-2745 . 398626) (-2746 . 398504) (-2747 . 398314) (-2748 . 397800)
+ (-2749 . 397712) (-2750 . 397495) (-2751 . 397412) (-2752 . 397253)
+ (-2753 . 396889) (-2754 . 396858) (-2755 . 396670) (-2756 . 396638)
+ (-2757 . 396137) (-2758 . 395483) (-2759 . 395455) (-2760 . 395396)
+ (-2761 . 395289) (-2762 . 395261) (-2763 . 395189) (-2764 . 395070)
+ (-2765 . 394942) (-2766 . 394760) (-2767 . 394130) (-2768 . 394102)
+ (-2769 . 394020) (-2770 . 393908) (-2771 . 393841) (-2772 . 393743)
+ (-2773 . 393651) (-2774 . 393594) (-2775 . 393523) (-2776 . 392453)
+ (-2777 . 392396) (-2778 . 392310) (-2779 . 392236) (-2780 . 392119)
+ (-2781 . 392075) (-2782 . 391930) (-2783 . 391772) (-2784 . 391545)
+ (-2785 . 391436) (-2786 . 391385) (-2787 . 390220) (-2788 . 390149)
+ (-2789 . 390090) (-2790 . 389764) (-2791 . 389588) (-2792 . 389535)
+ (-2793 . 389287) (-2794 . 389179) (-2795 . 389099) (-2796 . 389046)
+ (-2797 . 388935) (-2798 . 388744) (-2799 . 388604) (-2800 . 388469)
+ (-2801 . 388417) (-2802 . 388192) (-2803 . 387804) (-2804 . 387727)
+ (-2805 . 387557) (-2806 . 387450) (-2807 . 387270) (-2808 . 387103)
+ (-2809 . 387043) (-2810 . 386988) (-2811 . 386403) (-2812 . 386354)
+ (-2813 . 386073) (-2814 . 385724) (-2815 . 385608) (-2816 . 385535)
+ (-2817 . 385463) (-2818 . 385392) (-2819 . 385145) (-2820 . 384962)
+ (-2821 . 384881) (-2822 . 384759) (-2823 . 384549) (-2824 . 384466)
+ (-2825 . 384086) (-2826 . 383989) (-2827 . 383876) (-2828 . 383783)
+ (-2829 . 383390) (-2830 . 382863) (-2831 . 382620) (-2832 . 382417)
+ (-2833 . 381882) (-2834 . 381814) (-2835 . 381682) (-2836 . 381573)
+ (-2837 . 381465) (-2838 . 381078) (-2839 . 380977) (-2840 . 380878)
+ (-2841 . 380706) (-2842 . 380582) (-2843 . 380330) (-2844 . 380043)
+ (-2845 . 379912) (-2846 . 378794) (-2847 . 378435) (-2848 . 377618)
+ (-2849 . 377354) (-2850 . 376538) (-2851 . 376386) (-2852 . 376070)
+ (-2853 . 375838) (-2854 . 375786) (-2855 . 375631) (-2856 . 375476)
+ (-2857 . 375340) (-2858 . 374969) (-2859 . 374887) (-2860 . 374835)
+ (-2861 . 374752) (-2862 . 374575) (-2863 . 374357) (-2864 . 374196)
+ (-2865 . 374080) (-2866 . 373973) (-2867 . 373871) (-2868 . 373819)
+ (-2869 . 373421) (-2870 . 373369) (-2871 . 373222) (-2872 . 372850)
+ (-2873 . 372755) (-2874 . 372703) (-2875 . 372607) (-2876 . 372539)
+ (-2877 . 372502) (-2878 . 372375) (-2879 . 372251) (-2880 . 372095)
+ (-2881 . 371712) (-2882 . 371465) (-2883 . 371362) (-2884 . 370929)
+ (-2885 . 370876) (-2886 . 370784) (-2887 . 370752) (-2888 . 370680)
+ (-2889 . 370553) (-2890 . 370458) (-2891 . 370261) (-2892 . 370168)
+ (-2893 . 370055) (-2894 . 369974) (-2895 . 369571) (-2896 . 369475)
+ (-2897 . 369405) (-2898 . 369311) (-2899 . 369201) (-2900 . 369134)
+ (-2901 . 368655) (-2902 . 368516) (-2903 . 368191) (-2904 . 368125)
+ (-2905 . 367995) (-2906 . 367316) (-2907 . 367209) (-2908 . 367105)
+ (-2909 . 366984) (-2910 . 366777) (-2911 . 366706) (-2912 . 366653)
+ (-2913 . 366544) (-2914 . 366334) (-2915 . 366207) (-2916 . 365824)
+ (-2917 . 365620) (-2918 . 365313) (-2919 . 365244) (-2920 . 365189)
+ (-2921 . 365094) (-2922 . 365005) (-2923 . 363825) (-2924 . 363773)
+ (-2925 . 363476) (-2926 . 363423) (-2927 . 363331) (-2928 . 363266)
+ (-2929 . 363211) (-2930 . 363141) (-2931 . 363034) (-2932 . 362981)
+ (-2933 . 362858) (-2934 . 362742) (-2935 . 362650) (-2936 . 362277)
+ (-2937 . 362110) (-2938 . 361995) (-2939 . 361601) (-2940 . 361549)
+ (-2941 . 361405) (-2942 . 361292) (-2943 . 361206) (-2944 . 361070)
+ (-2945 . 360951) (-2946 . 360899) (-2947 . 360847) (-2948 . 360646)
+ (-2949 . 360591) (-2950 . 360420) (-2951 . 360322) (-2952 . 360185)
+ (-2953 . 360129) (-2954 . 360041) (-2955 . 359935) (-2956 . 359838)
+ (-2957 . 359714) (-2958 . 359547) (-2959 . 359279) (-2960 . 359053)
+ (-2961 . 358946) (-2962 . 358674) (-2963 . 358594) (-2964 . 358490)
+ (-2965 . 358309) (-2966 . 358191) (-2967 . 357958) (-2968 . 357767)
+ (-2969 . 357696) (-2970 . 357641) (-2971 . 357555) (-2972 . 357457)
+ (-2973 . 357262) (-2974 . 357188) (-2975 . 357053) (-2976 . 356873)
+ (-2977 . 356186) (-2978 . 356072) (-2979 . 355731) (-2980 . 355588)
+ (-2981 . 355481) (-2982 . 355284) (-2983 . 355174) (-2984 . 355108)
+ (-2985 . 355012) (-2986 . 354893) (-2987 . 354206) (-2988 . 354081)
+ (-2989 . 354003) (-2990 . 353931) (-2991 . 353860) (-2992 . 353641)
+ (-2993 . 353363) (-2994 . 353230) (-2995 . 353059) (-2996 . 352922)
+ (-2997 . 352732) (-2998 . 352661) (-2999 . 352569) (-3000 . 351994)
+ (-3001 . 351867) (-3002 . 351565) (-3003 . 351482) (-3004 . 351370)
+ (-3005 . 351028) (-3006 . 350824) (-3007 . 350664) (-3008 . 350540)
+ (-3009 . 350350) (-3010 . 350203) (-3011 . 350150) (-3012 . 349769)
+ (-3013 . 349194) (-3014 . 349040) (-3015 . 348740) (-3016 . 348641)
+ (-3017 . 348387) (-3018 . 348278) (-3019 . 348184) (-3020 . 348101)
+ (-3021 . 348035) (-3022 . 347460) (-3023 . 347382) (-3024 . 347354)
+ (-3025 . 347244) (-3026 . 346926) (-3027 . 346803) (-3028 . 346555)
+ (-3029 . 346505) (-3030 . 346419) (-3031 . 346391) (-3032 . 346238)
+ (-3033 . 345664) (-3034 . 345590) (-3035 . 345506) (-3036 . 345416)
+ (-3037 . 345312) (-3038 . 345138) (-3039 . 345070) (-3040 . 344496)
+ (-3041 . 344315) (-3042 . 344037) (-3043 . 343864) (-3044 . 343588)
+ (-3045 . 343451) (-3046 . 343283) (-3047 . 343231) (-3048 . 343158)
+ (-3049 . 343130) (-3050 . 343064) (-3051 . 342993) (-3052 . 342893)
+ (-3053 . 342746) (-3054 . 342172) (-3055 . 342071) (-3056 . 341883)
+ (-3057 . 341832) (-3058 . 341782) (-3059 . 341355) (-3060 . 341262)
+ (-3061 . 341126) (-3062 . 340581) (-3063 . 340377) (-3064 . 340345)
+ (-3065 . 339771) (-3066 . 339686) (-3067 . 339570) (-3068 . 339447)
+ (-3069 . 339154) (-3070 . 339072) (-3071 . 338955) (-3072 . 338792)
+ (-3073 . 338711) (-3074 . 338649) (-3075 . 338521) (-3076 . 338413)
+ (-3077 . 337839) (-3078 . 337769) (-3079 . 337684) (-3080 . 337551)
+ (-3081 . 330552) (-3082 . 330461) (-3083 . 330274) (-3084 . 330197)
+ (-3085 . 329979) (-3086 . 329824) (-3087 . 329519) (-3088 . 329309)
+ (-3089 . 329227) (-3090 . 328979) (-3091 . 328902) (-3092 . 328515)
+ (-3093 . 328438) (-3094 . 328329) (-3095 . 328241) (-3096 . 328088)
+ (-3097 . 327935) (-3098 . 327780) (-3099 . 327706) (-3100 . 327635)
+ (-3101 . 327586) (-3102 . 327498) (-3103 . 327446) (-3104 . 327256)
+ (-3105 . 326847) (-3106 . 326765) (-3107 . 326694) (-3108 . 326617)
+ (-3109 . 325332) (-3110 . 325217) (-3111 . 324725) (-3112 . 324582)
+ (-3113 . 323750) (-3114 . 323608) (-3115 . 322953) (-3116 . 322788)
+ (-3117 . 322722) (-3118 . 322655) (-3119 . 322621) (-3120 . 322414)
+ (-3121 . 322331) (-3122 . 322193) (-3123 . 322109) (-3124 . 321891)
+ (-3125 . 321782) (-3126 . 321676) (-3127 . 321599) (-3128 . 321415)
+ (-3129 . 321274) (-3130 . 321097) (-3131 . 320927) (-3132 . 320841)
+ (-3133 . 320698) (-3134 . 320596) (-3135 . 320386) (-3136 . 320277)
+ (-3137 . 320149) (-3138 . 320077) (-3139 . 319864) (-3140 . 319639)
+ (-3141 . 319460) (-3142 . 319426) (-3143 . 318840) (-3144 . 318678)
+ (-3145 . 318581) (-3146 . 318206) (-3147 . 317595) (-3148 . 317525)
+ (-3149 . 317447) (-3150 . 317323) (-3151 . 317148) (-3152 . 316952)
+ (-3153 . 316677) (-3154 . 316618) (-3155 . 316403) (-3156 . 316325)
+ (-3157 . 315518) (-3158 . 315294) (-3159 . 315153) (-3160 . 315116)
+ (-3161 . 314653) (-3162 . 314600) (-3163 . 314512) (-3164 . 314233)
+ (-3165 . 314126) (-3166 . 313989) (-3167 . 313810) (-3168 . 313366)
+ (-3169 . 312955) (-3170 . 311798) (-3171 . 311529) (-3172 . 311422)
+ (-3173 . 311306) (-3174 . 311172) (-3175 . 311050) (-3176 . 310915)
+ (-3177 . 310852) (-3178 . 310694) (-3179 . 310528) (-3180 . 310435)
+ (-3181 . 310322) (-3182 . 310138) (-3183 . 309964) (-3184 . 309817)
+ (-3185 . 309718) (-3186 . 309490) (-3187 . 309244) (-3188 . 309130)
+ (-3189 . 308987) (-3190 . 308834) (-3191 . 308507) (-3192 . 308283)
+ (-3193 . 308181) (-3194 . 307856) (-3195 . 307806) (-3196 . 307728)
+ (-3197 . 307419) (-3198 . 307271) (-3199 . 307119) (-3200 . 307087)
+ (-3201 . 306935) (-3202 . 306840) (-3203 . 306607) (-3204 . 306172)
+ (-3205 . 306042) (-3206 . 305923) (-3207 . 305837) (-3208 . 305665)
+ (-3209 . 305588) (-3210 . 305485) (-3211 . 305205) (-3212 . 305047)
+ (-3213 . 304995) (-3214 . 304888) (-3215 . 304784) (-3216 . 304710)
+ (-3217 . 304495) (-3218 . 303944) (-3219 . 303856) (-3220 . 303749)
+ (-3221 . 303648) (-3222 . 303577) (-3223 . 303391) (-3224 . 303305)
+ (-3225 . 303197) (-3226 . 303095) (-3227 . 303025) (-3228 . 302910)
+ (-3229 . 302860) (-3230 . 302685) (-3231 . 302431) (-3232 . 302352)
+ (-3233 . 301931) (-3234 . 301787) (-3235 . 301679) (-3236 . 301555)
+ (-3237 . 301420) (-3238 . 301368) (-3239 . 301284) (-3240 . 301038)
+ (-3241 . 300604) (-3242 . 300472) (-3243 . 300199) (-3244 . 299863)
+ (-3245 . 299554) (-3246 . 299494) (-3247 . 299298) (-3248 . 298988)
+ (-3249 . 298902) (-3250 . 298783) (-3251 . 298640) (-3252 . 298612)
+ (-3253 . 297844) (-3254 . 297667) (-3255 . 297539) (-3256 . 297461)
+ (-3257 . 297352) (-3258 . 296975) (-3259 . 296725) (-3260 . 296628)
+ (-3261 . 296486) (-3262 . 296340) (-3263 . 296267) (-3264 . 296141)
+ (-3265 . 295549) (-3266 . 295448) (-3267 . 295323) (-3268 . 295273)
+ (-3269 . 295027) (-3270 . 294789) (-3271 . 294533) (-3272 . 294368)
+ (-3273 . 294282) (-3274 . 294104) (-3275 . 294038) (-3276 . 293940)
+ (-3277 . 293871) (-3278 . 293728) (-3279 . 293557) (-3280 . 293484)
+ (-3281 . 293341) (-3282 . 292817) (** . 289728) (-3284 . 289597)
+ (-3285 . 289513) (-3286 . 289447) (-3287 . 289361) (-3288 . 289248)
+ (-3289 . 288788) (-3290 . 288722) (-3291 . 288371) (-3292 . 288343)
+ (-3293 . 288245) (-3294 . 288214) (-3295 . 288058) (-3296 . 287995)
+ (-3297 . 287936) (-3298 . 287791) (-3299 . 287695) (-3300 . 287274)
+ (-3301 . 287167) (-3302 . 287009) (-3303 . 286878) (-3304 . 286846)
+ (-3305 . 286395) (-3306 . 286317) (-3307 . 286264) (-3308 . 286191)
+ (-3309 . 286081) (-3310 . 285909) (-3311 . 285749) (-3312 . 285640)
+ (-3313 . 285571) (-3314 . 285483) (-3315 . 285309) (-3316 . 285101)
+ (-3317 . 284789) (-3318 . 284650) (-3319 . 284553) (-3320 . 284430)
+ (-3321 . 284227) (-3322 . 284121) (-3323 . 284003) (-3324 . 283869)
+ (-3325 . 283760) (-3326 . 283542) (-3327 . 283396) (-3328 . 283343)
+ (-3329 . 282989) (-3330 . 282840) (-3331 . 282787) (-3332 . 282710)
+ (-3333 . 282632) (-3334 . 282184) (-3335 . 281867) (-3336 . 281769)
+ (-3337 . 281648) (-3338 . 281261) (-3339 . 281105) (-3340 . 281053)
+ (-3341 . 279323) (-3342 . 279294) (-3343 . 278890) (-3344 . 278636)
+ (-3345 . 278607) (-3346 . 278533) (-3347 . 278303) (-3348 . 278206)
+ (-3349 . 278093) (-3350 . 277917) (-3351 . 277816) (-3352 . 277645)
+ (-3353 . 277508) (-3354 . 277435) (-3355 . 277186) (-3356 . 277000)
+ (-3357 . 276903) (-3358 . 276033) (-3359 . 275919) (-3360 . 275860)
+ (-3361 . 275685) (-3362 . 275599) (-3363 . 275440) (-3364 . 275384)
+ (-3365 . 275008) (-3366 . 274878) (-3367 . 274720) (-3368 . 274600)
+ (-3369 . 274390) (-3370 . 274309) (-3371 . 273812) (-3372 . 273756)
+ (-3373 . 273591) (-3374 . 273520) (-3375 . 273449) (-3376 . 273223)
+ (-3377 . 272777) (-3378 . 272582) (-3379 . 272215) (-3380 . 271965)
+ (-3381 . 271884) (-3382 . 271783) (-3383 . 271706) (-9 . 271678)
+ (-3385 . 271601) (-3386 . 271472) (-3387 . 271323) (-3388 . 271129)
+ (-3389 . 271075) (-3390 . 271002) (-3391 . 270849) (-3392 . 270705)
+ (-3393 . 270632) (-3394 . 270479) (-8 . 270451) (-3396 . 270394)
+ (-3397 . 270056) (-3398 . 269842) (-3399 . 269629) (-3400 . 269467)
+ (-3401 . 269389) (-3402 . 269260) (-3403 . 269192) (-3404 . 269025)
+ (-7 . 268997) (-3406 . 268895) (-3407 . 268801) (-3408 . 268706)
+ (-3409 . 268523) (-3410 . 268491) (-3411 . 268422) (-3412 . 268342)
+ (-3413 . 268249) (-3414 . 268166) (-3415 . 268050) (-3416 . 267947)
+ (-3417 . 267779) (-3418 . 267694) (-3419 . 267088) (-3420 . 266597)
+ (-3421 . 266312) (-3422 . 266260) (-3423 . 266055) (-3424 . 265954)
+ (-3425 . 265714) (-3426 . 265330) (-3427 . 265234) (-3428 . 265112)
+ (-3429 . 264964) (-3430 . 263752) (-3431 . 263623) (-3432 . 263527)
+ (-3433 . 263467) (-3434 . 263379) (-3435 . 263276) (-3436 . 263220)
+ (-3437 . 262356) (-3438 . 262297) (-3439 . 262156) (-3440 . 262034)
+ (-3441 . 261957) (-3442 . 261869) (-3443 . 261713) (-3444 . 261056)
+ (-3445 . 260986) (-3446 . 260873) (-3447 . 260810) (-3448 . 260425)
+ (-3449 . 260168) (-3450 . 259872) (-3451 . 259496) (-3452 . 259167)
+ (-3453 . 259086) (-3454 . 258917) (-3455 . 258850) (-3456 . 258572)
+ (-3457 . 258230) (-3458 . 257953) (-3459 . 257865) (-3460 . 257770)
+ (-3461 . 257708) (-3462 . 257350) (-3463 . 257187) (-3464 . 257107)
+ (-3465 . 256986) (-3466 . 256916) (-3467 . 256843) (-3468 . 256626)
+ (-3469 . 256574) (-3470 . 256020) (-3471 . 255961) (-3472 . 255867)
+ (-3473 . 254686) (-3474 . 254246) (-3475 . 254148) (-3476 . 253902)
+ (-3477 . 253841) (-3478 . 253742) (-3479 . 253670) (-3480 . 253364)
+ (-3481 . 253223) (-3482 . 253114) (-3483 . 253034) (-3484 . 252961)
+ (-3485 . 252826) (-3486 . 252623) (-3487 . 252551) (-3488 . 252393)
+ (-3489 . 252316) (-3490 . 252209) (-3491 . 252113) (-3492 . 251746)
+ (-3493 . 251543) (-3494 . 251514) (-3495 . 251459) (-3496 . 251268)
+ (-3497 . 251144) (-3498 . 250494) (-3499 . 250381) (-3500 . 250328)
+ (-3501 . 250106) (-3502 . 249698) (-3503 . 247920) (-3504 . 247690)
+ (-3505 . 247583) (-3506 . 247324) (-3507 . 247162) (-3508 . 246598)
+ (-3509 . 246546) (-3510 . 246338) (-3511 . 246086) (-3512 . 245793)
+ (-3513 . 245705) (-3514 . 245624) (-3515 . 245527) (-3516 . 245418)
+ (-3517 . 245201) (-3518 . 245014) (-3519 . 244863) (-3520 . 244611)
+ (-3521 . 244222) (-3522 . 244128) (-3523 . 243911) (-3524 . 243855)
+ (-3525 . 242845) (-3526 . 242632) (-3527 . 242553) (-3528 . 242476)
+ (-3529 . 242420) (-3530 . 242300) (-3531 . 242174) (-3532 . 242112)
+ (-3533 . 242057) (-3534 . 242004) (-3535 . 241837) (-3536 . 240535)
+ (-3537 . 240203) (-3538 . 240126) (-3539 . 240056) (-3540 . 239928)
+ (-3541 . 239789) (-3542 . 239690) (-3543 . 239575) (-3544 . 239541)
+ (-3545 . 239411) (-3546 . 239244) (-3547 . 239110) (-3548 . 238779)
+ (-3549 . 238635) (-3550 . 238436) (-3551 . 238276) (-3552 . 238123)
+ (-3553 . 237940) (-3554 . 237781) (-3555 . 237030) (-3556 . 236543)
+ (-3557 . 236377) (-3558 . 236270) (-3559 . 236166) (-3560 . 236080)
+ (-3561 . 235961) (-3562 . 235909) (-3563 . 235636) (-3564 . 235478)
+ (-3565 . 235384) (-3566 . 235231) (-3567 . 234991) (-3568 . 234905)
+ (-3569 . 234852) (-3570 . 234696) (-3571 . 234583) (-3572 . 234394)
+ (-3573 . 234205) (-3574 . 234101) (-3575 . 234042) (-3576 . 233899)
+ (-3577 . 233810) (-3578 . 233626) (-3579 . 232993) (-3580 . 232850)
+ (-3581 . 232715) (-3582 . 232200) (-3583 . 232056) (-3584 . 231945)
+ (-3585 . 231653) (-3586 . 231569) (-3587 . 231267) (-3588 . 231181)
+ (-3589 . 231093) (-3590 . 230742) (-3591 . 230627) (-3592 . 230509)
+ (-3593 . 230437) (-3594 . 230304) (-3595 . 230232) (-3596 . 229962)
+ (-3597 . 229893) (-3598 . 229695) (-3599 . 229640) (-3600 . 229368)
+ (-3601 . 229295) (-3602 . 229181) (-3603 . 229118) (-3604 . 229011)
+ (-3605 . 228857) (-3606 . 228679) (-3607 . 228620) (-3608 . 228196)
+ (-3609 . 227903) (-3610 . 227301) (-3611 . 227183) (-3612 . 226960)
+ (-3613 . 226603) (-3614 . 226554) (-3615 . 226442) (-3616 . 226335)
+ (-3617 . 226205) (-3618 . 226097) (-3619 . 225953) (-3620 . 225646)
+ (-3621 . 225545) (-3622 . 225349) (-3623 . 225221) (-3624 . 225193)
+ (-3625 . 225127) (-3626 . 224969) (-3627 . 224690) (-3628 . 224442)
+ (-3629 . 224354) (-3630 . 224256) (-3631 . 224168) (-3632 . 224116)
+ (-3633 . 223857) (-3634 . 223720) (-3635 . 223525) (-3636 . 223425)
+ (-3637 . 223207) (-3638 . 223127) (-3639 . 223044) (-3640 . 222566)
+ (-3641 . 221892) (-3642 . 221826) (-3643 . 221641) (-3644 . 221514)
+ (-3645 . 221392) (-3646 . 221208) (-3647 . 220916) (-3648 . 220617)
+ (-3649 . 219957) (-3650 . 219835) (-3651 . 219616) (-3652 . 219349)
+ (-3653 . 219138) (-3654 . 219051) (-3655 . 218927) (-3656 . 218754)
+ (-3657 . 218681) (-3658 . 218563) (-3659 . 218482) (-3660 . 218416)
+ (-3661 . 218343) (-3662 . 218088) (-3663 . 218032) (-3664 . 217998)
+ (-3665 . 217941) (-3666 . 217890) (-3667 . 217500) (-3668 . 217157)
+ (-3669 . 216632) (-3670 . 216528) (-3671 . 216370) (-3672 . 214402)
+ (-3673 . 214068) (-3674 . 213315) (-3675 . 213117) (-3676 . 212954)
+ (-3677 . 212805) (-3678 . 212673) (-3679 . 212482) (-3680 . 212255)
+ (-3681 . 212203) (-3682 . 212137) (-3683 . 211052) (-3684 . 210795)
+ (-3685 . 210571) (-3686 . 210455) (-3687 . 210403) (-3688 . 210306)
+ (-3689 . 210233) (-3690 . 210177) (-3691 . 209845) (-3692 . 209668)
+ (-3693 . 209387) (-3694 . 209336) (-3695 . 209281) (-3696 . 209227)
+ (-3697 . 209061) (-3698 . 208898) (-3699 . 208771) (-3700 . 208712)
+ (-3701 . 208394) (-3702 . 208309) (-3703 . 208118) (-3704 . 208004)
+ (-3705 . 207627) (-3706 . 207535) (-3707 . 207405) (-3708 . 207298)
+ (-3709 . 207197) (-3710 . 207144) (-3711 . 207070) (-3712 . 206934)
+ (-3713 . 206828) (-3714 . 206694) (-3715 . 206579) (-3716 . 206464)
+ (-3717 . 206358) (-3718 . 206140) (-3719 . 206046) (-3720 . 205724)
+ (-3721 . 205674) (-3722 . 205343) (-3723 . 205200) (-3724 . 205122)
+ (-3725 . 204919) (-3726 . 204796) (-3727 . 204744) (-3728 . 204606)
+ (-3729 . 203863) (-3730 . 203738) (-3731 . 203623) (-3732 . 203336)
+ (-3733 . 203093) (-3734 . 203036) (-3735 . 202967) (-3736 . 202849)
+ (-3737 . 202641) (-3738 . 202528) (-3739 . 202319) (-3740 . 202181)
+ (-3741 . 202115) (-3742 . 202010) (-3743 . 201930) (-3744 . 201830)
+ (-3745 . 201758) (-3746 . 201698) (-3747 . 201593) (-3748 . 201395)
+ (-3749 . 201281) (-3750 . 201082) (-3751 . 201005) (-3752 . 200674)
+ (-3753 . 200536) (-3754 . 200453) (-3755 . 200373) (-3756 . 200264)
+ (-3757 . 200012) (-3758 . 198435) (-3759 . 198220) (-3760 . 198132)
+ (-3761 . 197911) (-3762 . 197616) (-3763 . 197470) (-3764 . 196960)
+ (-3765 . 196872) (-3766 . 196782) (-3767 . 196725) (-3768 . 196696)
+ (-3769 . 196583) (-3770 . 196511) (-3771 . 196312) (-3772 . 196217)
+ (-3773 . 196113) (-3774 . 196047) (-3775 . 195949) (-3776 . 195863)
+ (-3777 . 195740) (-3778 . 195587) (-3779 . 195329) (-3780 . 195279)
+ (-3781 . 195177) (-3782 . 194965) (-3783 . 194909) (-3784 . 194772)
+ (-3785 . 194510) (-3786 . 194369) (-3787 . 194299) (-3788 . 193026)
+ (-3789 . 192153) (-3790 . 192070) (-3791 . 191990) (-3792 . 191661)
+ (-3793 . 191472) (-3794 . 191314) (-3795 . 191180) (-3796 . 191107)
+ (-3797 . 191041) (-3798 . 190945) (-3799 . 190890) (-3800 . 190818)
+ (-3801 . 190744) (-3802 . 190596) (-3803 . 190444) (-3804 . 190303)
+ (-3805 . 189505) (-3806 . 189382) (-3807 . 189284) (-3808 . 189193)
+ (-3809 . 189086) (-3810 . 188964) (-3811 . 188867) (-3812 . 188751)
+ (-3813 . 188649) (-3814 . 187885) (-3815 . 187816) (-3816 . 187715)
+ (-3817 . 187588) (-3818 . 187343) (-3819 . 187030) (-3820 . 186855)
+ (-3821 . 185968) (-3822 . 185822) (-3823 . 185276) (-3824 . 185220)
+ (-3825 . 185040) (-3826 . 184969) (-3827 . 184786) (-3828 . 184744)
+ (-3829 . 184448) (-3830 . 184103) (-3831 . 183897) (-3832 . 183788)
+ (-3833 . 183732) (-3834 . 183442) (-3835 . 183379) (-3836 . 183091)
+ (-3837 . 182817) (-3838 . 182635) (-3839 . 182556) (-3840 . 182129)
+ (-3841 . 182002) (-3842 . 181886) (-3843 . 181798) (-3844 . 179942)
+ (-3845 . 179550) (-3846 . 179489) (-3847 . 179433) (-3848 . 179381)
+ (-3849 . 179287) (-3850 . 179189) (-3851 . 178937) (-3852 . 178627)
+ (-3853 . 178544) (-3854 . 177831) (-3855 . 177583) (-3856 . 177500)
+ (-3857 . 177420) (-3858 . 177305) (-3859 . 177198) (-3860 . 177049)
+ (-3861 . 176982) (-3862 . 176923) (-3863 . 176748) (-3864 . 176719)
+ (-3865 . 176598) (-3866 . 176346) (-3867 . 176312) (-3868 . 176259)
+ (-3869 . 176204) (-3870 . 176104) (-3871 . 175995) (-3872 . 175902)
+ (-3873 . 175761) (-3874 . 175643) (-3875 . 175498) (-3876 . 175287)
+ (-3877 . 175157) (-3878 . 175007) (-3879 . 174955) (-3880 . 174769)
+ (-3881 . 174639) (-3882 . 174573) (-3883 . 174545) (-3884 . 174227)
+ (-3885 . 174174) (-3886 . 174072) (-3887 . 173836) (-3888 . 164274)
+ (-3889 . 164240) (-3890 . 164163) (-3891 . 164062) (-3892 . 164009)
+ (-3893 . 163980) (-3894 . 163922) (-3895 . 163869) (-3896 . 163800)
+ (-3897 . 163714) (-3898 . 163661) (-3899 . 163574) (-3900 . 163434)
+ (-3901 . 163276) (-3902 . 163224) (-3903 . 163136) (-3904 . 163026)
+ (-3905 . 162627) (-3906 . 162376) (-3907 . 162258) (-3908 . 162192)
+ (-3909 . 162090) (-3910 . 162006) (-3911 . 161940) (-3912 . 161330)
+ (-3913 . 160513) (-3914 . 160291) (-3915 . 160213) (-3916 . 159616)
+ (-3917 . 159453) (-3918 . 159401) (-3919 . 159151) (-3920 . 158996)
+ (-3921 . 158919) (-3922 . 158866) (-3923 . 158740) (-3924 . 158620)
+ (-3925 . 158502) (-3926 . 158419) (-3927 . 158299) (-3928 . 158226)
+ (-3929 . 158083) (-3930 . 158052) (-3931 . 157936) (-3932 . 157843)
+ (-3933 . 157765) (-3934 . 157698) (-3935 . 157589) (-3936 . 157444)
+ (-3937 . 157210) (-3938 . 157133) (-3939 . 156892) (-3940 . 156815)
+ (-3941 . 156599) (-3942 . 156505) (-3943 . 156426) (-3944 . 154994)
+ (-3945 . 154735) (-3946 . 154633) (-3947 . 154605) (-3948 . 154552)
+ (-3949 . 154435) (-3950 . 154204) (-3951 . 153990) (-3952 . 153416)
+ (-3953 . 153261) (-3954 . 153227) (-3955 . 153060) (-3956 . 152954)
+ (-3957 . 152712) (-3958 . 152659) (-3959 . 152559) (-3960 . 147221)
+ (-3961 . 146768) (-3962 . 146715) (-3963 . 146649) (-3964 . 146340)
+ (-3965 . 146203) (-3966 . 146095) (-3967 . 145856) (-3968 . 145638)
+ (-3969 . 145127) (-3970 . 145053) (-3971 . 144979) (-3972 . 144884)
+ (-3973 . 144694) (-3974 . 144580) (-3975 . 144450) (-3976 . 144199)
+ (-3977 . 144019) (-3978 . 143821) (-3979 . 143764) (-3980 . 143712)
+ (-3981 . 143437) (-3982 . 143251) (-3983 . 143195) (-3984 . 143107)
+ (-3985 . 143036) (-3986 . 142970) (-3987 . 142908) (-3988 . 142813)
+ (-3989 . 142706) (-3990 . 142623) (-3991 . 141783) (-3992 . 141713)
+ (-3993 . 141476) (-3994 . 141417) (-3995 . 141335) (-3996 . 140953)
+ (-3997 . 140760) (-3998 . 140615) (-3999 . 140241) (-4000 . 140018)
+ (-4001 . 139966) (-4002 . 139811) (-4003 . 139667) (-4004 . 139590)
+ (-4005 . 139502) (-4006 . 139216) (-4007 . 139112) (-4008 . 139035)
+ (-4009 . 138920) (-4010 . 138698) (-4011 . 138524) (-4012 . 138471)
+ (-4013 . 138181) (-4014 . 138028) (-4015 . 137945) (-4016 . 137849)
+ (-4017 . 137730) (-4018 . 137650) (-4019 . 137547) (-4020 . 137211)
+ (-4021 . 137067) (-4022 . 136990) (-4023 . 136791) (-4024 . 136738)
+ (-4025 . 136129) (-4026 . 135791) (-4027 . 135497) (-4028 . 135352)
+ (-4029 . 133190) (-4030 . 133135) (-4031 . 132961) (-4032 . 132834)
+ (-4033 . 132751) (-4034 . 132593) (-4035 . 132486) (-4036 . 132389)
+ (-4037 . 132217) (-4038 . 132157) (-4039 . 131979) (-4040 . 131908)
+ (-4041 . 131821) (-4042 . 131766) (-4043 . 131193) (-4044 . 131086)
+ (-4045 . 131030) (-4046 . 130774) (-4047 . 130680) (-4048 . 126138)
+ (-4049 . 126055) (-12 . 125883) (-4051 . 125701) (-4052 . 125509)
+ (-4053 . 106795) (-4054 . 106577) (-4055 . 106381) (-4056 . 106329)
+ (-4057 . 106185) (-4058 . 105843) (-4059 . 105752) (-4060 . 105386)
+ (-4061 . 105187) (-4062 . 105135) (-4063 . 104434) (-4064 . 101613)
+ (-4065 . 101510) (-4066 . 101426) (-4067 . 101352) (-4068 . 101287)
+ (-4069 . 100996) (-4070 . 100916) (-4071 . 100833) (-4072 . 100498)
+ (-4073 . 100446) (-4074 . 99705) (-4075 . 99646) (-4076 . 99578)
+ (-4077 . 99191) (-4078 . 99052) (-4079 . 98374) (-4080 . 98322)
+ (-4081 . 98267) (-4082 . 98124) (-4083 . 98030) (-4084 . 97771)
+ (-4085 . 97737) (-4086 . 97577) (-4087 . 96836) (-4088 . 96647)
+ (-4089 . 96306) (-4090 . 96218) (-4091 . 96105) (-4092 . 96027)
+ (-4093 . 95867) (-4094 . 95769) (-4095 . 95651) (-4096 . 95336)
+ (-4097 . 95089) (-4098 . 94401) (-4099 . 94282) (-4100 . 94017)
+ (-4101 . 93899) (-4102 . 93847) (-4103 . 93309) (-4104 . 93202)
+ (-4105 . 93021) (-4106 . 92953) (-4107 . 92879) (-4108 . 92303)
+ (-4109 . 92250) (-4110 . 91842) (-4111 . 91787) (-4112 . 91708)
+ (-4113 . 91601) (-4114 . 91548) (-4115 . 91202) (-4116 . 91174)
+ (-4117 . 91089) (-4118 . 91037) (-4119 . 90921) (-4120 . 90345)
+ (-4121 . 90152) (-4122 . 90124) (-4123 . 89935) (-4124 . 89747)
+ (-4125 . 89124) (-4126 . 88871) (-4127 . 88785) (-4128 . 88535)
+ (-4129 . 88449) (-4130 . 87873) (-4131 . 87799) (-4132 . 87747)
+ (-4133 . 87662) (-4134 . 87524) (-4135 . 87422) (-4136 . 87303)
+ (-4137 . 87272) (-4138 . 87184) (-4139 . 86498) (-4140 . 86446)
+ (-4141 . 86139) (-4142 . 85920) (-4143 . 85846) (-4144 . 85544)
+ (-4145 . 85512) (-4146 . 85424) (-4147 . 85163) (-4148 . 85047)
+ (-4149 . 84907) (-4150 . 84706) (-4151 . 84020) (-4152 . 69906)
+ (-4153 . 69819) (* . 65273) (-4155 . 61210) (-4156 . 61066)
+ (-4157 . 60908) (-4158 . 60871) (-4159 . 60812) (-4160 . 60760)
+ (-4161 . 60630) (-4162 . 60229) (-4163 . 60176) (-4164 . 60148)
+ (-4165 . 59399) (-4166 . 59365) (-4167 . 59282) (-4168 . 58764)
+ (-4169 . 57804) (-4170 . 55953) (-4171 . 55901) (-4172 . 55739)
+ (-4173 . 55464) (-4174 . 55332) (-4175 . 54758) (-4176 . 54655)
+ (-4177 . 54374) (-4178 . 54288) (-4179 . 54181) (-4180 . 53987)
+ (-4181 . 53938) (-4182 . 53882) (-4183 . 53308) (-4184 . 53205)
+ (-4185 . 53104) (-4186 . 52835) (-4187 . 52673) (-4188 . 52577)
+ (-4189 . 52428) (-4190 . 52142) (-4191 . 51728) (-4192 . 51224)
+ (-4193 . 51101) (-4194 . 51016) (-4195 . 50442) (-4196 . 50061)
+ (-4197 . 49947) (-4198 . 49803) (-4199 . 47458) (-4200 . 46154)
+ (-4201 . 46056) (-4202 . 45972) (-4203 . 45631) (-4204 . 45413)
+ (-4205 . 45279) (-4206 . 44592) (-4207 . 44507) (-4208 . 40841)
+ (-4209 . 40513) (-4210 . 39861) (-4211 . 39059) (-4212 . 38957)
+ (-4213 . 38862) (-4214 . 38623) (-4215 . 38519) (-4216 . 38427)
+ (-4217 . 38339) (-4218 . 38232) (-4219 . 38074) (-4220 . 37747)
+ (-4221 . 37389) (-4222 . 37097) (-4223 . 36805) (-4224 . 36752)
+ (-4225 . 36643) (-4226 . 36614) (-4227 . 36411) (-4228 . 36223)
+ (-4229 . 36105) (-4230 . 35941) (-4231 . 35820) (-4232 . 35525)
+ (-4233 . 35251) (-4234 . 35195) (-4235 . 35167) (-4236 . 35079)
+ (-4237 . 34817) (-4238 . 34661) (-4239 . 34510) (-4240 . 34379)
+ (-4241 . 34089) (-4242 . 33964) (-4243 . 33890) (-4244 . 33308)
+ (-4245 . 33241) (-4246 . 33049) (-4247 . 32831) (-4248 . 30973)
+ (-4249 . 30866) (-4250 . 30706) (-4251 . 30617) (-4252 . 30502)
+ (-4253 . 30382) (-4254 . 30214) (-4255 . 30164) (-4256 . 30073)
+ (-4257 . 29722) (-4258 . 29545) (-4259 . 29060) (-4260 . 28969)
+ (-4261 . 28727) (-4262 . 28661) (-4263 . 28562) (-4264 . 28488)
+ (-4265 . 27967) (-4266 . 27843) (-4267 . 27764) (-4268 . 27618)
+ (-4269 . 27516) (-4270 . 26441) (-4271 . 26371) (-4272 . 26071)
+ (-4273 . 25930) (-4274 . 25831) (-4275 . 25757) (-4276 . 25636)
+ (-4277 . 25604) (-4278 . 25506) (-4279 . 25226) (-4280 . 25120)
+ (-4281 . 24906) (-4282 . 24808) (-4283 . 24751) (-4284 . 24702)
+ (-4285 . 24564) (-4286 . 24530) (-4287 . 24287) (-4288 . 24192)
+ (-4289 . 24122) (-4290 . 24070) (-4291 . 23204) (-4292 . 23031)
+ (-4293 . 22876) (-4294 . 22803) (-4295 . 22601) (-4296 . 22541)
+ (-4297 . 22411) (-4298 . 22268) (-4299 . 22210) (-4300 . 22009)
+ (-4301 . 21856) (-4302 . 21695) (-4303 . 21642) (-4304 . 21275)
+ (-4305 . 21225) (-4306 . 21153) (-4307 . 21101) (-4308 . 20982)
+ (-4309 . 20824) (-4310 . 20635) (-4311 . 20579) (-4312 . 20436)
+ (-4313 . 20356) (-4314 . 20184) (-4315 . 20133) (-4316 . 18935)
+ (-4317 . 18816) (-4318 . 18250) (-4319 . 18178) (-4320 . 18119)
+ (-4321 . 17974) (-4322 . 17804) (-4323 . 13644) (-4324 . 13610)
+ (-4325 . 13311) (-4326 . 13139) (-4327 . 13024) (-4328 . 12882)
+ (-4329 . 12716) (-4330 . 12150) (-4331 . 11936) (-4332 . 11884)
+ (-4333 . 11743) (-4334 . 11664) (-4335 . 11530) (-4336 . 11474)
+ (-4337 . 11393) (-4338 . 11221) (-4339 . 10781) (-4340 . 10046)
+ (-4341 . 9807) (-4342 . 9474) (-4343 . 9400) (-4344 . 9350)
+ (-4345 . 9104) (-4346 . 8368) (-4347 . 8229) (-4348 . 8057)
+ (-4349 . 8005) (-4350 . 7802) (-4351 . 7744) (-4352 . 7414)
+ (-4353 . 7326) (-4354 . 6934) (-4355 . 6840) (-4356 . 6721)
+ (-4357 . 6622) (-4358 . 6537) (-4359 . 6356) (-4360 . 6296)
+ (-4361 . 6123) (-4362 . 6037) (-4363 . 4254) (-4364 . 4195)
+ (-4365 . 4058) (-4366 . 2820) (-4367 . 2582) (-4368 . 2468)
+ (-4369 . 2236) (-4370 . 2078) (-4371 . 1925) (-4372 . 1873)
+ (-4373 . 1765) (-4374 . 1598) (-4375 . 1458) (-4376 . 1238)
+ (-4377 . 1124) (-4378 . 1040) (-4379 . 911) (-4380 . 883)
+ (-4381 . 753) (-4382 . 619) (-4383 . 30)) \ No newline at end of file